From 33e8d0b5b073fd10a0707071e98a68aae29df51e Mon Sep 17 00:00:00 2001 From: liyang Date: Tue, 19 Nov 2024 15:58:41 +0800 Subject: [PATCH] * [task#132856] add system browse lang. --- module/system/lang/de.php | 4 ++++ module/system/lang/en.php | 4 ++++ module/system/lang/fr.php | 4 ++++ module/system/lang/zh-cn.php | 4 ++++ 4 files changed, 16 insertions(+) diff --git a/module/system/lang/de.php b/module/system/lang/de.php index 3e9035cb03..937d0f746a 100644 --- a/module/system/lang/de.php +++ b/module/system/lang/de.php @@ -35,6 +35,10 @@ $lang->system->children = 'Included applications'; $lang->system->latestRelease = 'Latest version'; $lang->system->status = 'Status'; +$lang->system->statusList = array(); +$lang->system->statusList['active'] = 'Active'; +$lang->system->statusList['inactive'] = 'Inactive'; + /* LDAP */ $lang->system->LDAP = new stdclass; $lang->system->LDAP->info = 'LDAP information'; diff --git a/module/system/lang/en.php b/module/system/lang/en.php index 3e9035cb03..937d0f746a 100644 --- a/module/system/lang/en.php +++ b/module/system/lang/en.php @@ -35,6 +35,10 @@ $lang->system->children = 'Included applications'; $lang->system->latestRelease = 'Latest version'; $lang->system->status = 'Status'; +$lang->system->statusList = array(); +$lang->system->statusList['active'] = 'Active'; +$lang->system->statusList['inactive'] = 'Inactive'; + /* LDAP */ $lang->system->LDAP = new stdclass; $lang->system->LDAP->info = 'LDAP information'; diff --git a/module/system/lang/fr.php b/module/system/lang/fr.php index 3e9035cb03..937d0f746a 100644 --- a/module/system/lang/fr.php +++ b/module/system/lang/fr.php @@ -35,6 +35,10 @@ $lang->system->children = 'Included applications'; $lang->system->latestRelease = 'Latest version'; $lang->system->status = 'Status'; +$lang->system->statusList = array(); +$lang->system->statusList['active'] = 'Active'; +$lang->system->statusList['inactive'] = 'Inactive'; + /* LDAP */ $lang->system->LDAP = new stdclass; $lang->system->LDAP->info = 'LDAP information'; diff --git a/module/system/lang/zh-cn.php b/module/system/lang/zh-cn.php index 061ac1f34d..5e1d4f7e80 100644 --- a/module/system/lang/zh-cn.php +++ b/module/system/lang/zh-cn.php @@ -35,6 +35,10 @@ $lang->system->children = '包含应用'; $lang->system->latestRelease = '最新版本号'; $lang->system->status = '状态'; +$lang->system->statusList = array(); +$lang->system->statusList['active'] = '已上架'; +$lang->system->statusList['inactive'] = '已下架'; + /* LDAP */ $lang->system->LDAP = new stdclass; $lang->system->LDAP->info = 'LDAP信息';