translations

This commit is contained in:
Roland Gruber 2016-08-29 19:44:58 +02:00
parent 49ac5ae7f5
commit 1142b54ea4
7 changed files with 2935 additions and 2564 deletions

View File

@ -217,8 +217,8 @@ $helpArray = array (
"Text" => _('Path to SSH key file to connect to lamdaemon server. If empty then password authentication with the person\'s password who is logged into LAM will be used.')),
'286' => array ("Headline" => _('SSH key password'),
"Text" => _('Password to unlock SSH key file.')),
'287' => array ("Headline" => _('License'),
"Text" => _('Please enter your license key.')),
'287' => array ("Headline" => _('Licence'),
"Text" => _('Please enter your licence key.')),
// 300 - 399
// profile editor, file upload
"301" => array ("Headline" => _("RDN identifier"),

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -132,7 +132,7 @@ echo $_SESSION['header'];
StatusMessage('WARN', 'The config file is not writable.', 'Your changes cannot be saved until you make the file writable for the webserver user.');
}
if (!empty($_GET['invalidLicense'])) {
StatusMessage('WARN', _('Invalid license'), _('Please setup your license data.'));
StatusMessage('WARN', _('Invalid licence'), _('Please setup your licence data.'));
}
?>
<br>

View File

@ -301,9 +301,9 @@ if (!$cfg->isWritable()) {
// license
if (isLAMProVersion()) {
$container->addElement(new htmlSubTitle(_('License')), true);
$container->addElement(new htmlSubTitle(_('Licence')), true);
$licenseTable = new htmlTable();
$licenseTable->addElement(new htmlTableExtendedInputTextarea('license', implode("\n", $cfg->getLicenseLines()), 50, 10, _('License'), '287'));
$licenseTable->addElement(new htmlTableExtendedInputTextarea('license', implode("\n", $cfg->getLicenseLines()), 50, 10, _('Licence'), '287'));
$container->addElement($licenseTable, true);
$container->addElement(new htmlSpacer(null, '10px'), true);