Add Italian translation and synchronize locale files

This commit is contained in:
Frédéric Guillot
2014-08-19 12:45:03 -07:00
parent 9bfb6c4c4b
commit c4ddc8031f
11 changed files with 536 additions and 74 deletions

View File

@@ -42,21 +42,19 @@ class Config extends Base
*/
public function getLanguages()
{
$languages = array(
// Sorted by value
return array(
'de_DE' => 'Deutsch',
'en_US' => 'English',
'es_ES' => 'Español',
'fr_FR' => 'Français',
'it_IT' => 'Italiano',
'pl_PL' => 'Polski',
'pt_BR' => 'Português (Brasil)',
'fi_FI' => 'Suomi',
'sv_SE' => 'Svenska',
'zh_CN' => '中文(简体)',
'fi_FI' => 'Suomi',
);
asort($languages);
return $languages;
}
/**