Product SiteDocumentation Site

2.5. 査読

注意

Since F12, the composed live image has been available to download for reviewing and correcting software translation in User Interface. This live image is composed around a week before Fedora XX Software Translation Deadline and made available by Deadline date. This image should include all latest translation submitted at this point.
ソフトウェアの一部の形で自分が作業した翻訳を査読したい場合は、次の手順に従います:
  1. 査読を行いたいパッケージのディレクトリに移動します。例えば、
    cd ~/myproject/system-config-printer/
    
  2. -o オプションを付けて msgfmt を使い、.po ファイルを .mo ファイルに変換します:
    msgfmt -o system-config-printer.mo ja.po
    
  3. root ユーザーで /usr/share/locale/lang/LC_MESSAGES/ にある既存の .mo ファイルを上書きします。
    先に、既存ファイルをバックアップします:
    su -
    
    cp /usr/share/locale/ja/LC_MESSAGES/system-config-printer.mo system-config-printer.mo-backup
    
    査読用に変換されたファイルを移動します。
    mv system-config-printer.mo /usr/share/locale/ja/LC_MESSAGES/
    
    root ユーザーから抜け出します。
    exit
    
  4. アプリケーションの一部の形で翻訳された文字列とパッケージを査読します:
    LANG=ja_JP.UTF-8 system-config-printer
    
翻訳されたパッケージに関連するアプリケーションが翻訳文字列を使用して実行されます。