Verified Commit 4faa165b authored by dockx thibault's avatar dockx thibault
Browse files

:ambulance: Fix(Core) - Fixes transifex wrong strings

Re-phrases some string within the source code of core.
Showing with 8 additions and 8 deletions
+8 -8
...@@ -63,7 +63,7 @@ class pluginsManager extends simplePlugin ...@@ -63,7 +63,7 @@ class pluginsManager extends simplePlugin
$div = new divSelectBox('rows'.$id); $div = new divSelectBox('rows'.$id);
$smarty = get_smarty(); $smarty = get_smarty();
$div->setHeight(300); $div->setHeight(300);
$div->setHeaders([_('Nom'), _('Description'), _('Version'),_('Authors'),_('Status'),_('Origin'),_('Provider'),_('Support URL')]); $div->setHeaders([_('Name'), _('Description'), _('Version'),_('Authors'),_('Status'),_('Origin'),_('Provider'),_('Support URL')]);
while ($plugin = $ldap->fetch()) { while ($plugin = $ldap->fetch()) {
$fields = [ $fields = [
......
...@@ -27,7 +27,7 @@ class mailTemplate extends simplePlugin ...@@ -27,7 +27,7 @@ class mailTemplate extends simplePlugin
{ {
return [ return [
'plShortName' => _('Mail Template'), 'plShortName' => _('Mail Template'),
'plDescription' => _('Mail Tempmlate'), 'plDescription' => _('Mail Template'),
'plObjectClass' => ['fdMailTemplate'], 'plObjectClass' => ['fdMailTemplate'],
'plFilter' => '(objectClass=fdMailTemplate)', 'plFilter' => '(objectClass=fdMailTemplate)',
'plObjectType' => ['mailTemplate' => [ 'plObjectType' => ['mailTemplate' => [
......
...@@ -62,10 +62,10 @@ class tasksGranular extends simplePlugin ...@@ -62,10 +62,10 @@ class tasksGranular extends simplePlugin
new HiddenAttribute('fdTasksGranularRef', TRUE, '', '', 'Type', 'Reference towards a required CN (mail template E.g'), new HiddenAttribute('fdTasksGranularRef', TRUE, '', '', 'Type', 'Reference towards a required CN (mail template E.g'),
new MailAttribute( new MailAttribute(
_('Email'), _('Email'),
_('Email address which will be sent to'), 'fdTasksGranularMail', TRUE), _('Email address to which messages will be sent'), 'fdTasksGranularMail', TRUE),
new MailAttribute( new MailAttribute(
_('Email'), _('Email'),
_('Email address which will be sent from'), 'fdTasksGranularMailFrom', TRUE), _('Email address from which emails will be sent'), 'fdTasksGranularMailFrom', TRUE),
new DateTimeAttribute( new DateTimeAttribute(
_('Schedule'), '', _('Schedule'), '',
'fdTasksGranularSchedule', FALSE 'fdTasksGranularSchedule', FALSE
......
...@@ -58,7 +58,7 @@ class tasksMail extends simplePlugin ...@@ -58,7 +58,7 @@ class tasksMail extends simplePlugin
] ]
], ],
'From Component' => [ 'From Component' => [
'name' => _('Sender Address'), 'name' => _('Sender email address'),
'attrs' => [ 'attrs' => [
new MailAttribute( new MailAttribute(
_('Sender email address'), _('Sender email address'),
......
...@@ -40,7 +40,7 @@ class mailTemplateConfig extends multiPluginSection ...@@ -40,7 +40,7 @@ class mailTemplateConfig extends multiPluginSection
'name' => _('Mail Template'), 'name' => _('Mail Template'),
'attrs' => [ 'attrs' => [
new StringAttribute( new StringAttribute(
_('Mail Template RDN'), _('Branch in which Directory Base, mails templates will be stored'), _('Mail Template RDN'), _('Branch in which mails templates will be stored'),
'fdMailTemplateRDN', TRUE, 'fdMailTemplateRDN', TRUE,
'ou=mailTemplate' 'ou=mailTemplate'
), ),
......
...@@ -38,7 +38,7 @@ class tasksConfig extends simplePlugin ...@@ -38,7 +38,7 @@ class tasksConfig extends simplePlugin
'name' => _('Tasks Configuration'), 'name' => _('Tasks Configuration'),
'attrs' => [ 'attrs' => [
new StringAttribute( new StringAttribute(
_('Tasks RDN'), _('Branch in which Directory Base, Tasks will be stored'), _('Tasks RDN'), _('Branch in which Tasks will be stored'),
'fdTasksRDN', TRUE, 'fdTasksRDN', TRUE,
'ou=tasks' 'ou=tasks'
), ),
...@@ -52,7 +52,7 @@ class tasksConfig extends simplePlugin ...@@ -52,7 +52,7 @@ class tasksConfig extends simplePlugin
'fdTasksConfLastExecTime', FALSE, '', FALSE, '' 'fdTasksConfLastExecTime', FALSE, '', FALSE, ''
), ),
new IntAttribute( new IntAttribute(
_('Maximum number of e-mails processed per time'), _('Select max e-mails to be proccesse'), _('Maximum number of e-mails processed per time'), _('Select max emails to be proccessed'),
'fdTasksConfMaxEmails', FALSE, '', FALSE, '' 'fdTasksConfMaxEmails', FALSE, '', FALSE, ''
), ),
new IntAttribute( new IntAttribute(
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment