diff options
author | ArthurHoaro <arthur@hoa.ro> | 2020-09-03 08:46:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-03 08:46:47 +0200 |
commit | 9e6371a6fd2e581790c93a04e0cb2699b8aa0911 (patch) | |
tree | 708182d26bc41889589d8359390eb44dc422c8a3 | |
parent | 0a286f6946f6e13c865cd80b2c347725b88821d0 (diff) | |
parent | 8af1d2da60a80f87cdc90ef308353dced34a43e9 (diff) | |
download | Shaarli-9e6371a6fd2e581790c93a04e0cb2699b8aa0911.tar.gz Shaarli-9e6371a6fd2e581790c93a04e0cb2699b8aa0911.tar.zst Shaarli-9e6371a6fd2e581790c93a04e0cb2699b8aa0911.zip |
Merge pull request #1520 from ArthurHoaro/fix/jp-language
-rw-r--r-- | application/Languages.php | 3 | ||||
-rw-r--r-- | inc/languages/jp/LC_MESSAGES/shaarli.po (renamed from inc/languages/ja/LC_MESSAGES/shaarli.po) | 0 | ||||
-rw-r--r-- | tests/front/controller/admin/ConfigureControllerTest.php | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/application/Languages.php b/application/Languages.php index 5cda802e..d83e0765 100644 --- a/application/Languages.php +++ b/application/Languages.php | |||
@@ -179,9 +179,10 @@ class Languages | |||
179 | { | 179 | { |
180 | return [ | 180 | return [ |
181 | 'auto' => t('Automatic'), | 181 | 'auto' => t('Automatic'), |
182 | 'de' => t('German'), | ||
182 | 'en' => t('English'), | 183 | 'en' => t('English'), |
183 | 'fr' => t('French'), | 184 | 'fr' => t('French'), |
184 | 'de' => t('German'), | 185 | 'jp' => t('Japanese'), |
185 | ]; | 186 | ]; |
186 | } | 187 | } |
187 | } | 188 | } |
diff --git a/inc/languages/ja/LC_MESSAGES/shaarli.po b/inc/languages/jp/LC_MESSAGES/shaarli.po index b420bb51..b420bb51 100644 --- a/inc/languages/ja/LC_MESSAGES/shaarli.po +++ b/inc/languages/jp/LC_MESSAGES/shaarli.po | |||
diff --git a/tests/front/controller/admin/ConfigureControllerTest.php b/tests/front/controller/admin/ConfigureControllerTest.php index f2f84bac..612f20f1 100644 --- a/tests/front/controller/admin/ConfigureControllerTest.php +++ b/tests/front/controller/admin/ConfigureControllerTest.php | |||
@@ -62,7 +62,7 @@ class ConfigureControllerTest extends TestCase | |||
62 | static::assertSame('privacy.hide_public_links', $assignedVariables['hide_public_links']); | 62 | static::assertSame('privacy.hide_public_links', $assignedVariables['hide_public_links']); |
63 | static::assertSame('api.enabled', $assignedVariables['api_enabled']); | 63 | static::assertSame('api.enabled', $assignedVariables['api_enabled']); |
64 | static::assertSame('api.secret', $assignedVariables['api_secret']); | 64 | static::assertSame('api.secret', $assignedVariables['api_secret']); |
65 | static::assertCount(4, $assignedVariables['languages']); | 65 | static::assertCount(5, $assignedVariables['languages']); |
66 | static::assertArrayHasKey('gd_enabled', $assignedVariables); | 66 | static::assertArrayHasKey('gd_enabled', $assignedVariables); |
67 | static::assertSame('thumbnails.mode', $assignedVariables['thumbnails_mode']); | 67 | static::assertSame('thumbnails.mode', $assignedVariables['thumbnails_mode']); |
68 | } | 68 | } |