mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 16:14:18 -08:00
18 lines
567 B
PHP
Executable file
18 lines
567 B
PHP
Executable file
<?php
|
|
|
|
return array(
|
|
|
|
|
|
'update' => array(
|
|
'error' => '更新过程中出现了问题。',
|
|
'success' => '设置配置信息更新成功。'
|
|
),
|
|
'backup' => array(
|
|
'delete_confirm' => '你确定你想要删除该备份文件? 此操作无法撤消。 ',
|
|
'file_deleted' => '备份文件已成功删除。 ',
|
|
'generated' => '成功地创建了一个新的备份文件。',
|
|
'file_not_found' => '在服务器上找不到备份文件。',
|
|
),
|
|
|
|
);
|