On Montag, 9. Dezember 2024 05:23:15 Mitteleuropäische Normalzeit Jasem Mutlaq wrote: > In KStars previous release, we migrated away from I18N_NOOP and used ki18n. > With KStars 3.7.3 release, we don't see errors about using an empty domain > and our users were able to switch languages successfully in KStars. > > With our latest release, our users alerted us that switching language no > longer works. The output is filled with these messages: > > kf.i18n: KLocalizedString: Using an empty domain, fix the code. msgid: > "unnamed" msgid_plural: "" msgctxt: "" > kf.i18n: KLocalizedString: Using an empty domain, fix the code. msgid: > "unnamed object" msgid_plural: "" msgctxt: "" > kf.i18n: KLocalizedString: Using an empty domain, fix the code. msgid: > "star" msgid_plural: "" msgctxt: "" > kf.i18n: KLocalizedString: Using an empty domain, fix the code. msgid: > "unnamed" msgid_plural: "" msgctxt: > > The domain is set correctly in main.cpp > > So what did change in KDE Frameworks that would have caused this? > > The code for the above error messages is in here (among other places): > > https://invent.kde.org/education/kstars/-/blob/master/kstars/skyobjects/skyo > bject.h?ref_type=heads#L22
You are doing ``` namespace { const auto emptyString = QStringLiteral(); const auto unnamedString = ki18n("unnamed").toString(); const auto unnamedObjectString = ki18n("unnamed object").toString(); const auto starString = ki18n("star").toString(); } ``` This doesn't work because the translation happens (and fails) long before the main function. You have to use kli18n("unnamed") to create a KLazyLocalizedString and you have to call .toString() on those objects where you use them. Regards, Ingo
signature.asc
Description: This is a digitally signed message part.