Commit a3459b32acf9109f06e18d63ddb95ecc23386f5c
1 parent
04903bea
Exists in
master
and in
5 other branches
Updating translation.
Showing
3 changed files
with
14 additions
and
4 deletions
Show diff stats
locale/pt_BR.po
| @@ -5,8 +5,8 @@ msgid "" | @@ -5,8 +5,8 @@ msgid "" | ||
| 5 | msgstr "" | 5 | msgstr "" |
| 6 | "Project-Id-Version: pw3270 5.0\n" | 6 | "Project-Id-Version: pw3270 5.0\n" |
| 7 | "Report-Msgid-Bugs-To: \n" | 7 | "Report-Msgid-Bugs-To: \n" |
| 8 | -"POT-Creation-Date: 2019-05-29 17:05-0300\n" | ||
| 9 | -"PO-Revision-Date: 2019-05-29 17:08-0300\n" | 8 | +"POT-Creation-Date: 2019-05-29 17:12-0300\n" |
| 9 | +"PO-Revision-Date: 2019-05-29 17:12-0300\n" | ||
| 10 | "Last-Translator: Perry Werneck <perry.werneck@gmail.com>\n" | 10 | "Last-Translator: Perry Werneck <perry.werneck@gmail.com>\n" |
| 11 | "Language-Team: Português <>\n" | 11 | "Language-Team: Português <>\n" |
| 12 | "Language: pt_BR\n" | 12 | "Language: pt_BR\n" |
| @@ -265,6 +265,11 @@ msgstr "Adiciona conteúdo do arquivo origem ao final do arquivo destino." | @@ -265,6 +265,11 @@ msgstr "Adiciona conteúdo do arquivo origem ao final do arquivo destino." | ||
| 265 | msgid "Application name" | 265 | msgid "Application name" |
| 266 | msgstr "Nome da aplicação" | 266 | msgstr "Nome da aplicação" |
| 267 | 267 | ||
| 268 | +#: main.c:427 | ||
| 269 | +#, c-format | ||
| 270 | +msgid "Application name set to \"%s\"" | ||
| 271 | +msgstr "Nome da aplicação definido para \"%s\"" | ||
| 272 | + | ||
| 268 | #: 10keypad.xml:85 | 273 | #: 10keypad.xml:85 |
| 269 | msgid "Attn" | 274 | msgid "Attn" |
| 270 | msgstr "Attn" | 275 | msgstr "Attn" |
locale/pw3270.pot
| @@ -9,7 +9,7 @@ msgstr "" | @@ -9,7 +9,7 @@ msgstr "" | ||
| 9 | "#-#-#-#-# pw3270.pot (PACKAGE VERSION) #-#-#-#-#\n" | 9 | "#-#-#-#-# pw3270.pot (PACKAGE VERSION) #-#-#-#-#\n" |
| 10 | "Project-Id-Version: PACKAGE VERSION\n" | 10 | "Project-Id-Version: PACKAGE VERSION\n" |
| 11 | "Report-Msgid-Bugs-To: \n" | 11 | "Report-Msgid-Bugs-To: \n" |
| 12 | -"POT-Creation-Date: 2019-05-29 17:05-0300\n" | 12 | +"POT-Creation-Date: 2019-05-29 17:12-0300\n" |
| 13 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | 13 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
| 14 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | 14 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
| 15 | "Language-Team: LANGUAGE <LL@li.org>\n" | 15 | "Language-Team: LANGUAGE <LL@li.org>\n" |
| @@ -288,6 +288,11 @@ msgstr "" | @@ -288,6 +288,11 @@ msgstr "" | ||
| 288 | msgid "Application name" | 288 | msgid "Application name" |
| 289 | msgstr "" | 289 | msgstr "" |
| 290 | 290 | ||
| 291 | +#: main.c:427 | ||
| 292 | +#, c-format | ||
| 293 | +msgid "Application name set to \"%s\"" | ||
| 294 | +msgstr "" | ||
| 295 | + | ||
| 291 | #: 10keypad.xml:85 | 296 | #: 10keypad.xml:85 |
| 292 | msgid "Attn" | 297 | msgid "Attn" |
| 293 | msgstr "" | 298 | msgstr "" |
src/pw3270/main.c
| @@ -424,7 +424,7 @@ int main(int argc, char *argv[]) | @@ -424,7 +424,7 @@ int main(int argc, char *argv[]) | ||
| 424 | if(app_name) | 424 | if(app_name) |
| 425 | { | 425 | { |
| 426 | g_set_application_name(app_name); | 426 | g_set_application_name(app_name); |
| 427 | - g_message("Application name set to \"%s\"",app_name); | 427 | + g_message( _( "Application name set to \"%s\"" ), app_name); |
| 428 | } | 428 | } |
| 429 | #ifdef _WIN32 | 429 | #ifdef _WIN32 |
| 430 | else | 430 | else |