aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kconfig/kxgettext.c
diff options
context:
space:
mode:
authorSam Ravnborg <sam@ravnborg.org>2007-06-10 20:38:27 +0200
committerSam Ravnborg <sam@ravnborg.org>2007-07-16 21:15:53 +0200
commitb70e325cfe824ea0f6a1666b8b8db986e99c9603 (patch)
tree96f4be83537b3daa37c42a96c688550c435ea13f /scripts/kconfig/kxgettext.c
parentkbuild: add support for squashing uid/gid in gen_initramfs_list.sh (diff)
downloadlinux-dev-b70e325cfe824ea0f6a1666b8b8db986e99c9603.tar.xz
linux-dev-b70e325cfe824ea0f6a1666b8b8db986e99c9603.zip
kconfig: fix update-po-config
Massimo Maiurana <maiurana@gmail.com> reported that update-po-config was broken: 1) spelling errors in Makefile so arch/um failed 2) UTF-8 was not supported The following patch address the above problems. kxgettext now append the output to the .pot file generated by xgettext - so we have a header. In all places UFT-8 is specifed so we now flawlessly support UTF-8. The Kconfig files had an empty string in a few cases - these are now supressed in kxgettext. With this the translators can now pick up where they left and get it all translated. There are ~11000 strings to be translated... Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Cc: Massimo Maiurana <maiurana@gmail.com> Cc: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Diffstat (limited to '')
-rw-r--r--scripts/kconfig/kxgettext.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/kconfig/kxgettext.c b/scripts/kconfig/kxgettext.c
index abee55ca6174..11f7dab94715 100644
--- a/scripts/kconfig/kxgettext.c
+++ b/scripts/kconfig/kxgettext.c
@@ -212,7 +212,9 @@ void menu__xgettext(void)
struct message *m = message__list;
while (m != NULL) {
- message__print_gettext_msgid_msgstr(m);
+ /* skip empty lines ("") */
+ if (strlen(m->msg) > sizeof("\"\""))
+ message__print_gettext_msgid_msgstr(m);
m = m->next;
}
}