summaryrefslogtreecommitdiff
path: root/app/Model/Config.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-08-17 16:18:38 -0700
committerFrédéric Guillot <fred@kanboard.net>2014-08-17 16:18:38 -0700
commit995a1a262a2f86bbaaa5d8b78569a2111bde4124 (patch)
tree99e4c290f8b278a33566caa8855baad6c300ea5c /app/Model/Config.php
parente468f3c558dcf1c992309fe8382b91b01c2dab6a (diff)
Locales list show native translation of the available languages (pull-request #155)
Diffstat (limited to 'app/Model/Config.php')
-rw-r--r--app/Model/Config.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/app/Model/Config.php b/app/Model/Config.php
index 9ba2187a..173a6d83 100644
--- a/app/Model/Config.php
+++ b/app/Model/Config.php
@@ -43,15 +43,15 @@ class Config extends Base
public function getLanguages()
{
$languages = array(
- 'de_DE' => t('German'),
- 'en_US' => t('English'),
- 'es_ES' => t('Spanish'),
- 'fr_FR' => t('French'),
- 'pl_PL' => t('Polish'),
- 'pt_BR' => t('Portuguese (Brazilian)'),
- 'sv_SE' => t('Swedish'),
- 'zh_CN' => t('Chinese (Simplified)'),
- 'fi_FI' => t('Finnish'),
+ 'de_DE' => 'Deutsch',
+ 'en_US' => 'English',
+ 'es_ES' => 'Español',
+ 'fr_FR' => 'Français',
+ 'pl_PL' => 'Polski',
+ 'pt_BR' => 'Português (Brasil)',
+ 'sv_SE' => 'Svenska',
+ 'zh_CN' => '中文(简体)',
+ 'fi_FI' => 'Suomi',
);
asort($languages);