Browse Source

Mention friendly alternatives to msginit

Remi Rampin 5 years ago
parent
commit
78b1f6e3ba
1 changed files with 3 additions and 2 deletions
  1. 3 2
      tutorials/i18n/localization_using_gettext.rst

+ 3 - 2
tutorials/i18n/localization_using_gettext.rst

@@ -96,10 +96,12 @@ while in the ``locale`` directory:
 
 
     msginit --no-translator --input=messages.pot --locale=fr
     msginit --no-translator --input=messages.pot --locale=fr
 
 
-
 The command above will create a file named ``fr.po`` in the same directory
 The command above will create a file named ``fr.po`` in the same directory
 as the PO template.
 as the PO template.
 
 
+Alternatively, you can do that graphically using Poedit, or by uploading the
+POT file to your web platform of choice.
+
 Loading a messages file in Godot
 Loading a messages file in Godot
 --------------------------------
 --------------------------------
 
 
@@ -125,7 +127,6 @@ automatically using the ``msgmerge`` tool:
     # The order matters: specify the message file *then* the PO template!
     # The order matters: specify the message file *then* the PO template!
     msgmerge --update --backup=none fr.po messages.pot
     msgmerge --update --backup=none fr.po messages.pot
 
 
-
 If you want to keep a backup of the original message file (which would be
 If you want to keep a backup of the original message file (which would be
 saved as ``fr.po~`` in this example), remove the ``--backup=none`` argument.
 saved as ``fr.po~`` in this example), remove the ``--backup=none`` argument.