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
$div = new divSelectBox('rows'.$id);
$smarty = get_smarty();
$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()) {
$fields = [
......
......@@ -27,7 +27,7 @@ class mailTemplate extends simplePlugin
{
return [
'plShortName' => _('Mail Template'),
'plDescription' => _('Mail Tempmlate'),
'plDescription' => _('Mail Template'),
'plObjectClass' => ['fdMailTemplate'],
'plFilter' => '(objectClass=fdMailTemplate)',
'plObjectType' => ['mailTemplate' => [
......
......@@ -62,10 +62,10 @@ class tasksGranular extends simplePlugin
new HiddenAttribute('fdTasksGranularRef', TRUE, '', '', 'Type', 'Reference towards a required CN (mail template E.g'),
new MailAttribute(
_('Email'),
_('Email address which will be sent to'), 'fdTasksGranularMail', TRUE),
_('Email address to which messages will be sent'), 'fdTasksGranularMail', TRUE),
new MailAttribute(
_('Email'),
_('Email address which will be sent from'), 'fdTasksGranularMailFrom', TRUE),
_('Email address from which emails will be sent'), 'fdTasksGranularMailFrom', TRUE),
new DateTimeAttribute(
_('Schedule'), '',
'fdTasksGranularSchedule', FALSE
......
......@@ -58,7 +58,7 @@ class tasksMail extends simplePlugin
]
],
'From Component' => [
'name' => _('Sender Address'),
'name' => _('Sender email address'),
'attrs' => [
new MailAttribute(
_('Sender email address'),
......
......@@ -40,7 +40,7 @@ class mailTemplateConfig extends multiPluginSection
'name' => _('Mail Template'),
'attrs' => [
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,
'ou=mailTemplate'
),
......
......@@ -38,7 +38,7 @@ class tasksConfig extends simplePlugin
'name' => _('Tasks Configuration'),
'attrs' => [
new StringAttribute(
_('Tasks RDN'), _('Branch in which Directory Base, Tasks will be stored'),
_('Tasks RDN'), _('Branch in which Tasks will be stored'),
'fdTasksRDN', TRUE,
'ou=tasks'
),
......@@ -52,7 +52,7 @@ class tasksConfig extends simplePlugin
'fdTasksConfLastExecTime', FALSE, '', FALSE, ''
),
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, ''
),
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