This commit is contained in:
2024-04-21 14:42:52 +02:00
parent 4b69674ede
commit 8a25f53c99
10700 changed files with 55767 additions and 14201 deletions

View File

@ -0,0 +1,22 @@
<?php
return array(
'does_not_exist' => '部门不存在',
'department_already_exists' => '在此公司地理位置已存在同名的部门。 或许可以为该部门选择一个更特别的名称。 ',
'assoc_users' => '该位置下关联的还有其他用户,目前不能删除,请更新该用户的信息之后,再尝试删除。 ',
'create' => array(
'error' => '部门没有创建,请重试。',
'success' => '部门创建成功。'
),
'update' => array(
'error' => '部门没有更新,请重试',
'success' => '部门更新成功。'
),
'delete' => array(
'confirm' => '你确定要删除这个部门吗?',
'error' => '删除部门有一个问题。请再试一次。',
'success' => '已成功删除该部门。'
)
);

View File

@ -0,0 +1,11 @@
<?php
return array(
'id' => '编号',
'name' => '部门名称',
'manager' => '领导',
'location' => '位置',
'create' => '创建部门',
'update' => '更新部门',
);