]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/internat/readme.txt
Compile fix for --without-zlib --enable-compat26.
[wxWidgets.git] / samples / internat / readme.txt
index b8fd6fea186cd7333f102e86a41030dbadd437e6..c2330b670779aa54aa9c546c9f601c807bb1f805 100644 (file)
@@ -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/<language>.po ./wxstd.po
+   cp ../../locale/<language>.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 ..