mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-06-07 09:54:27 +02:00
HU and IT translation updates
This commit is contained in:
parent
5cae2bffb2
commit
c137fc5e79
66 changed files with 530 additions and 558 deletions
|
@ -9,34 +9,30 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-11 18:52+0100\n"
|
||||
"PO-Revision-Date: 2018-03-19 13:19+0000\n"
|
||||
"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
|
||||
"Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-23 11:17+0000\n"
|
||||
"Last-Translator: fabrixxm <fabrix.xm@gmail.com>, 2014-2015,2018\n"
|
||||
"Language-Team: Italian (http://app.transifex.com/Friendica/friendica/language/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#: pageheader.php:53
|
||||
#: pageheader.php:36
|
||||
msgid "\"pageheader\" Settings"
|
||||
msgstr "Impostazioni \"Intestazione pagina\""
|
||||
|
||||
#: pageheader.php:54
|
||||
#: pageheader.php:37
|
||||
msgid "Message"
|
||||
msgstr "Messaggio"
|
||||
|
||||
#: pageheader.php:54
|
||||
#: pageheader.php:37
|
||||
msgid ""
|
||||
"Message to display on every page on this server (or put a pageheader.html "
|
||||
"file in your docroot)"
|
||||
msgstr "Il messaggio da mostrare su ogni pagina di questo server (puoi anche aggiungere un file pageheader.html nella root)"
|
||||
|
||||
#: pageheader.php:55
|
||||
#: pageheader.php:38
|
||||
msgid "Save Settings"
|
||||
msgstr "Salva Impostazioni"
|
||||
|
||||
#: pageheader.php:69
|
||||
msgid "pageheader Settings saved."
|
||||
msgstr "Impostazioni \"Intestazione pagina\" salvate."
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
if(! function_exists("string_plural_select_it")) {
|
||||
function string_plural_select_it($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
if ($n == 1) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else { return 2; }
|
||||
}}
|
||||
$a->strings['"pageheader" Settings'] = 'Impostazioni "Intestazione pagina"';
|
||||
$a->strings['Message'] = 'Messaggio';
|
||||
$a->strings['Message to display on every page on this server (or put a pageheader.html file in your docroot)'] = 'Il messaggio da mostrare su ogni pagina di questo server (puoi anche aggiungere un file pageheader.html nella root)';
|
||||
$a->strings['Save Settings'] = 'Salva Impostazioni';
|
||||
$a->strings['pageheader Settings saved.'] = 'Impostazioni "Intestazione pagina" salvate.';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue