mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
23 lines
912 B
PHP
23 lines
912 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
|
|
'update' => array(
|
|
'error' => 'Ocorreu um erro ao atualizar. ',
|
|
'success' => 'Configurações atualizadas com sucesso.'
|
|
),
|
|
'backup' => array(
|
|
'delete_confirm' => 'Tem a certeza que pretende eliminar o ficheiro de backup? Não poderá reverter a acção. ',
|
|
'file_deleted' => 'Ficheiro de backup eliminado com sucesso. ',
|
|
'generated' => 'Ficheiro de backup criado com sucesso.',
|
|
'file_not_found' => 'O ficheiro de backup não foi encontrado no servidor.',
|
|
),
|
|
'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.'
|
|
),
|
|
|
|
);
|