Angus Leeming <[EMAIL PROTECTED]> writes: | Michael Schmitt wrote: | | > Hello, | > | > file "default.ui" contains 15 items (mostly related to mathed) that are | > commented out. Unfortunately, these entries appear in the po files :-( | > | > Are there any plans to reactivate these items in the future? If not, I | > suggest removing them, since they cause some overhead for the translators. | > | > Kind regards, | > | > Michael | | Alternatively, be more flexible and change the RE used in po/Makefile.in.in. | | $(srcdir)/default_ui_l10n.pot: $(top_srcdir)/lib/ui/default.ui | awk ' \ | - /Submenu/ { \ | + /^[ ]*Submenu/ { \ | | Ditto for the /Item/ match. | (The [] expression contains a single 'space' and a single 'tab' character.)
then [[:space:]] should be used. -- Lgb