From 5dc0ee8cf18c2c4cab95f03d3bfef3cb5d7eba1f Mon Sep 17 00:00:00 2001 From: Thomas SERVUC Date: Thu, 24 Oct 2019 23:45:37 +0200 Subject: [PATCH] Improvement : Review commands and MD syntax --- HowToTranslate.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/HowToTranslate.md b/HowToTranslate.md index 092b827..f06e8b4 100644 --- a/HowToTranslate.md +++ b/HowToTranslate.md @@ -23,7 +23,7 @@ The next step is to generate the .po files with the following command (change 'e ``` msginit --input=po/gfx_curses.pot --locale=es_AR --output=po/es_AR/gfx_curses.po msginit --input=po/gfx_terminal.pot --locale=es_AR --output=po/es_AR/gfx_terminal.po -msginit --input=po/highscore.pot --locale=es_AR --output=po/es_AR/gfx_highscore.po +msginit --input=po/highscore.pot --locale=es_AR --output=po/es_AR/highscore.po ``` ### Translation @@ -39,15 +39,15 @@ for example: Nwe should create the directory where we'll place the .mo files (change es_AR by your language standard name): ``` -mkdir 18n/es_AR/LC_MESSAGES +mkdir -p 18n/es_AR/LC_MESSAGES ``` The last step is to generate the .mo file: ``` -msgfmt --output-file=/18n/es_AR/LC_MESSAGES/gfx_curses.mo po/es_AR/gfx_curses.po -msgfmt --output-file=/18n/es_AR/LC_MESSAGES/gfx_terminal.mo po/es_AR/gfx_terminal.po -msgfmt --output-file=/18n/es_AR/LC_MESSAGES/highscore.mo po/es_AR/highscore.po +msgfmt --output-file=18n/es_AR/LC_MESSAGES/gfx_curses.mo po/es_AR/gfx_curses.po +msgfmt --output-file=18n/es_AR/LC_MESSAGES/gfx_terminal.mo po/es_AR/gfx_terminal.po +msgfmt --output-file=18n/es_AR/LC_MESSAGES/highscore.mo po/es_AR/highscore.po ``` -##And this is it! +## And this is it!