Hi,
in the about dialog of kexi are two untranslatable strings.
kexi/core/kexiaboutdata.cpp:
static const char *description =
I18N_NOOP("Database creation for
everyone")
#ifndef CUSTOM_VERSION
#ifdef KEXI_STANDALONE
"nn" I18N_NOOP("This is standalone
version of the application
distributed outside of KOffice suite.")
#else
"nn" I18N_NOOP("This application
version is distributed with KOffice
suite.")
#endif
#endif
This is the definition of one string
("foonnbar1" or "foonnbar2"), but
scripty extracts the two single strings "foo" and
"bar1"/ "bar2" to kexi.pot.
So the translation of "foonbar1" or
"foonnbar2" is not found in the
message catalogue.
Fix:
Either define I18N_NOOP("foonnbar1") and
I18N_NOOP("foonnbar2") -> two
fuzzy messages for the translators
or use the existing translation and concat
18N_NOOP("foo") and 18N_NOOP("bar")
in KAboutData* Kexi::createAboutData()
Burkhard Lück
_______________________________________________
koffice-devel mailing list
koffice-devel kde.org
h
ttps://mail.kde.org/mailman/listinfo/koffice-devel
|