Product SiteDocumentation Site

3.2. Obtaining and Translating Projects

Now that you have prepared a directory structure, you can download a file to translate. You may need to communicate with other translators in your language team to avoid conflict. If you are not sure, please contact your language coordinator.
  1. Visit your language page such as http://translate.fedoraproject.org/languages/ja/, and select a target release. The interface will redirect you to a page for that release, such as http://translate.fedoraproject.org/languages/ja/collection/fedora/fedora-12/.
  2. Scroll down the page to find the table of all projects available for that release. Use the arrow download icon labeled Download ja.po or similar next to each project to download the po file to the directory you created in the previous section.
  3. Since the file name to commit follows the name convention of lang.po, change the name of the downloaded file. The following example uses the Japanese locale for the po file:
    ls ~/myproject/comps/
    comps.HEAD.ja.po
    mv ~/myproject/comps/comps.HEAD.ja.po ja.po
    ls ~/myproject/comps/
    ja.po
    
  4. Now the file is ready for translation. Translate the po file for your language in a po editor such as Lokalize or gtranslator.
  5. Check the integrity of your file before you commit it.
    msgfmt -cvo /dev/null ja.po
    

Važno

If any error message appears, correct it before commit.