ajout app

This commit is contained in:
2024-04-17 20:22:30 +02:00
parent cc017cfc5e
commit f9d05a2fd3
8025 changed files with 729805 additions and 0 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' => '更新部门',
);