translations
This commit is contained in:
parent
49ac5ae7f5
commit
1142b54ea4
|
@ -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"),
|
||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
@ -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>
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue