Hi While updating the the fr & eo translations of Vim, I noticed that several strings have disappeared from the src/po/* files.
For example, string "E264: Python: Error initialising I/O objects" is missing from src/po/fr.po after I do: $ cd src/po ; make fr File src/po/Makefile does not scan src/if_py_both.h which contains strings that need translations. Attached patch fixes it. Regards -- Dominique -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php
diff -r e8a81e381ad2 src/po/Makefile --- a/src/po/Makefile Thu Aug 05 22:08:47 2010 +0200 +++ b/src/po/Makefile Fri Aug 06 21:07:12 2010 +0200 @@ -251,10 +251,10 @@ # NOTE: If you get an error for gvimext.cpp not found, you need to unpack the # extra archive. # -$(PACKAGE).pot: ../*.c ../if_perl.xs ../GvimExt/gvimext.cpp ../globals.h +$(PACKAGE).pot: ../*.c ../if_perl.xs ../GvimExt/gvimext.cpp ../globals.h ../if_py_both.h cd ..; $(XGETTEXT) --default-domain=$(PACKAGE) \ --add-comments --keyword=_ --keyword=N_ \ - *.c if_perl.xs GvimExt/gvimext.cpp globals.h + *.c if_perl.xs GvimExt/gvimext.cpp globals.h if_py_both.h mv -f ../$(PACKAGE).po $(PACKAGE).pot update-po: $(LANGUAGES)
