mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
23 lines
865 B
PHP
23 lines
865 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
|
|
'update' => array(
|
|
'error' => '更新过程中出现了问题。',
|
|
'success' => '设置配置信息更新成功。'
|
|
),
|
|
'backup' => array(
|
|
'delete_confirm' => '你确定你想要删除该备份文件? 此操作无法撤消。 ',
|
|
'file_deleted' => '备份文件已成功删除。 ',
|
|
'generated' => '成功地创建了一个新的备份文件。',
|
|
'file_not_found' => '在服务器上找不到备份文件。',
|
|
),
|
|
'purge' => array(
|
|
'error' => 'An error has occurred while purging. ',
|
|
'validation_failed' => 'Your purge confirmation is incorrect. Please type the word "DELETE" in the confirmation box.',
|
|
'success' => 'Deleted records successfully purged.'
|
|
),
|
|
|
|
);
|