Add SslInfoDlg as a nice way to show information about an SSL connection
[quassel.git] / po / README.Translations
index be8cb78..91a6185 100644 (file)
@@ -17,11 +17,16 @@ NOTE: Remember to remove X-Virgin-Header line if you want to preserve your heade
 
 Qt itself does not use the *.po files, but a compact binary format (*.qm). 
 These files will automatically be generated at build time. By default, all
-languages will be built. To select languages, add -DLINGUAS="<languages>"
-to your cmake call, where <languages> is a space-separated list of language
-codes as explained above.
+languages will be built. To select languages, use environment variable LINGUAS
+to specify superset of languages you want to build in. As you can see in
+example there we will build only Czech German and French translations.
+EXAMPLE:
+$ export LINGUAS="cs de fr"
+$ cmake /path/to/source
 
 NOTE: You'll need lconvert installed with your Qt in order to generate
       translation files. Some distributions don't package that tool;
       in that case you won't get translations.
 
+Regenerating .pot file:
+lupdate ../src -ts quassel.ts && lconvert -i quassel.ts -o quassel.po && rm quassel.ts && mv quassel.po quassel.pot