Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update .po and strip down untranslated entries. #11507

Closed
wants to merge 3 commits into from
Closed

Update .po and strip down untranslated entries. #11507

wants to merge 3 commits into from

Commits on Jan 14, 2014

  1. Update .po and strip down untranslated entries.

    This work is done by execute these commands manually:
    
    $ po4a --copyright-holder="The Rust Project Developers" \
        --package-name="Rust" \
        --package-version="0.10-pre" \
        -M UTF-8 -L UTF-8 \
        doc/po4a.conf
    $ for f in doc/po/**/*.po; do
    >   msgattrib --translated $f -o $f.strip
    >   if [ -e $f.strip ]; then
    >       mv $f.strip $f
    >   else
    >       rm $f
    >   fi
    > done
    
    It should be managed by the build system automatically to use in our
    translation workflow, but I've not yet done that.
    
    Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
    omasanori committed Jan 14, 2014
    Configuration menu
    Copy the full SHA
    7297157 View commit details
    Browse the repository at this point in the history
  2. Add notes for translators.

    Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
    omasanori committed Jan 14, 2014
    Configuration menu
    Copy the full SHA
    1ba61b9 View commit details
    Browse the repository at this point in the history
  3. Note that translation workflow is WIP now.

    Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
    omasanori committed Jan 14, 2014
    5 Configuration menu
    Copy the full SHA
    006d169 View commit details
    Browse the repository at this point in the history