commited features for showroom release

This commit is contained in:
Bachir Soussi Chiadmi
2016-12-10 18:30:03 +01:00
parent 026a9bc241
commit 138b68ac98
36 changed files with 2694 additions and 969 deletions

View File

@@ -10,19 +10,6 @@
function translations_locale_default_languages() {
$languages = array();
// Exported language: cs.
$languages['cs'] = array(
'language' => 'cs',
'name' => 'Czech',
'native' => 'Čeština',
'direction' => 0,
'enabled' => 1,
'plurals' => 3,
'formula' => '(((($n%10)==1)&&(($n%100)!=11))?(0):((((($n%10)>=2)&&(($n%10)<=4))&&((($n%100)<10)||(($n%100)>=20)))?(1):2))',
'domain' => '',
'prefix' => 'cs',
'weight' => 0,
);
// Exported language: en.
$languages['en'] = array(
'language' => 'en',
@@ -49,18 +36,5 @@ function translations_locale_default_languages() {
'prefix' => 'fr',
'weight' => -9,
);
// Exported language: zh-hans.
$languages['zh-hans'] = array(
'language' => 'zh-hans',
'name' => 'Chinese, Simplified',
'native' => '简体中文',
'direction' => 0,
'enabled' => 1,
'plurals' => 2,
'formula' => '($n!=1)',
'domain' => '',
'prefix' => 'zh-hans',
'weight' => 0,
);
return $languages;
}