1
0
mirror of https://github.com/anope/anope.git synced 2026-07-05 08:53:12 +02:00

BUILD : 1.7.10 (836) BUGS : NOTES : Added italian translations for all modpack modules

git-svn-id: svn://svn.anope.org/anope/trunk@836 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@589 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b
2005-06-27 15:39:41 +00:00
parent e530d7e814
commit 89249b2383
9 changed files with 179 additions and 5 deletions
+16 -2
View File
@@ -168,7 +168,7 @@ void my_add_languages(void)
"Syntax: APPENDTOPIC channel text\n"
};
/* Dutch */
/* Dutch (NL) */
char *langtable_nl[] = {
/* LNG_CHAN_HELP */
" APPENDTOPIC Voeg tekst aan een kanaal onderwerp toe",
@@ -181,6 +181,7 @@ void my_add_languages(void)
"Gebruik: APPENDTOPIC kanaal tekst\n"
};
/* German (DE) */
char *langtable_de[] = {
/* LNG_CHAN_HELP */
" APPENDTOPIC Fühgt ein Text zu ein Channel Topic ein",
@@ -192,7 +193,7 @@ void my_add_languages(void)
"Syntax: APPENDTOPIC Channel Text\n"
};
/* Portuguese */
/* Portuguese (PT) */
char *langtable_pt[] = {
/* LNG_CHAN_HELP */
" APPENDTOPIC Adiciona texto ao tópico de um canal",
@@ -204,10 +205,23 @@ void my_add_languages(void)
"Sintaxe: APPENDTOPIC canal texto\n"
};
/* Italian (IT) */
char *langtable_it[] = {
/* LNG_CHAN_HELP */
" APPENDTOPIC Aggiunge del testo al topic di un canale",
/* LNG_CHAN_HELP_APPENDTOPIC */
"Questo comando permette agli utenti di aggiungere del testo ad un topic di un canale\n"
"già impostato. Se TOPICLOCK è attivato, il topic viene aggiornato e il nuovo topic\n"
"viene bloccato.",
/* LNG_APPENDTOPIC_SYNTAX */
"Sintassi: APPENDTOPIC canale testo\n"
};
moduleInsertLanguage(LANG_EN_US, LNG_NUM_STRINGS, langtable_en_us);
moduleInsertLanguage(LANG_NL, LNG_NUM_STRINGS, langtable_nl);
moduleInsertLanguage(LANG_DE, LNG_NUM_STRINGS, langtable_de);
moduleInsertLanguage(LANG_PT, LNG_NUM_STRINGS, langtable_pt);
moduleInsertLanguage(LANG_IT, LNG_NUM_STRINGS, langtable_it);
}
/* EOF */