Commit a3459b32acf9109f06e18d63ddb95ecc23386f5c

Authored by Perry Werneck
1 parent 04903bea

Updating translation.

locale/pt_BR.po
... ... @@ -5,8 +5,8 @@ msgid ""
5 5 msgstr ""
6 6 "Project-Id-Version: pw3270 5.0\n"
7 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 10 "Last-Translator: Perry Werneck <perry.werneck@gmail.com>\n"
11 11 "Language-Team: Português <>\n"
12 12 "Language: pt_BR\n"
... ... @@ -265,6 +265,11 @@ msgstr &quot;Adiciona conteúdo do arquivo origem ao final do arquivo destino.&quot;
265 265 msgid "Application name"
266 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 273 #: 10keypad.xml:85
269 274 msgid "Attn"
270 275 msgstr "Attn"
... ...
locale/pw3270.pot
... ... @@ -9,7 +9,7 @@ msgstr &quot;&quot;
9 9 "#-#-#-#-# pw3270.pot (PACKAGE VERSION) #-#-#-#-#\n"
10 10 "Project-Id-Version: PACKAGE VERSION\n"
11 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 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14 14 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15 15 "Language-Team: LANGUAGE <LL@li.org>\n"
... ... @@ -288,6 +288,11 @@ msgstr &quot;&quot;
288 288 msgid "Application name"
289 289 msgstr ""
290 290  
  291 +#: main.c:427
  292 +#, c-format
  293 +msgid "Application name set to \"%s\""
  294 +msgstr ""
  295 +
291 296 #: 10keypad.xml:85
292 297 msgid "Attn"
293 298 msgstr ""
... ...
src/pw3270/main.c
... ... @@ -424,7 +424,7 @@ int main(int argc, char *argv[])
424 424 if(app_name)
425 425 {
426 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 429 #ifdef _WIN32
430 430 else
... ...