Merge PR 4657 into language-change

This commit is contained in:
DerLinkman
2022-10-20 10:58:51 +02:00
parent b503271aba
commit a334f33b35
60 changed files with 1511 additions and 156 deletions

View File

@@ -26,7 +26,7 @@ if(empty($targetLang)) {
}
// load master lang
$masterLang = file_get_contents(__DIR__.'/../data/web/lang/lang.en.json');
$masterLang = file_get_contents(__DIR__.'/../data/web/lang/lang.en-gb.json');
$masterLang = json_decode($masterLang, true);
// load target lang

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env ruby
MASTER="en"
MASTER="en-gb"
DIR = "#{__dir__}/.."