X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/15d06954409b3f50342b35354b642396a4779b84..60f0cf4e12e88d39764e107ee9949f6a52552e53:/samples/internat/readme.txt?ds=sidebyside diff --git a/samples/internat/readme.txt b/samples/internat/readme.txt index b8fd6fea18..c2330b6707 100644 --- a/samples/internat/readme.txt +++ b/samples/internat/readme.txt @@ -47,20 +47,20 @@ A. First of all, you will need the GNU gettext tools (see the next question). xgettext -C -n -k_ -kwxPLURAL:1,2 -kwxTRANSLATE -o internat.po ../internat.cpp # .po file for wxWindows might be generated in the same way. An already - # generated wxstd.po as well as translations for some languages can be + # generated wxstd.pot as well as translations for some languages can be # found in the locale directory. - cp ../../locale/.po ./wxstd.po + cp ../../locale/.po ./wxstd.pot - or - - cp ../../locale/wxstd.po . + cp ../../locale/wxstd.pot . # now edit the files and do translate strings (this isn't done by gettext) - # you can use another editor if you wish :-) No need to edit wxstd.po if you + # you can use another editor if you wish :-) No need to edit wxstd.pot if you # already got a translated one. - vi internat.po wxstd.po + vi internat.po wxstd.pot # create the message catalog files msgfmt -o internat.mo internat.po - msgfmt -o wxstd.mo wxstd.po + msgfmt -o wxstd.mo wxstd.pot # run the sample to test it cd ..