mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-20 09:08:42 +02:00
25 lines
836 B
PHP
25 lines
836 B
PHP
<?php
|
|
/**
|
|
* Localized data
|
|
*
|
|
* @copyright Copyright (C) 2013 Combodo
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
Dict::Add('EN US', 'English', 'English', array(
|
|
|
|
'Menu:ConfigEditor' => 'Configuration',
|
|
'config-edit-title' => 'Configuration File Editor',
|
|
'config-edit-intro' => 'Be very cautious when editing the configuration file.',
|
|
'config-apply' => 'Apply',
|
|
'config-apply-title' => 'Apply (Ctrl+S)',
|
|
'config-cancel' => 'Reset',
|
|
'config-saved' => 'Successfully recorded.',
|
|
'config-confirm-cancel' => 'Your changes will be lost.',
|
|
'config-no-change' => 'No change: the file has been left unchanged.',
|
|
'config-reverted' => 'The configuration has been reverted.',
|
|
'config-parse-error' => 'Line %2$d: %1$s.<br/>The file has NOT been updated.',
|
|
'config-current-line' => 'Editing line: %1$s',
|
|
));
|
|
?>
|