Skip to content

Commit

Permalink
fix plurals
Browse files Browse the repository at this point in the history
  • Loading branch information
cconard96 committed Feb 11, 2025
1 parent a261afe commit 08e183e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/AuthMail.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public function rawSearchOptions()

$tab[] = [
'id' => 'common',
'name' => __('Email server')
'name' => _n('Email server', 'Email servers', 1)
];

$tab[] = [
Expand Down
2 changes: 1 addition & 1 deletion src/RuleRight.php
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ public function getCriterias()

$criterias['MAIL_SERVER']['table'] = 'glpi_authmails';
$criterias['MAIL_SERVER']['field'] = 'name';
$criterias['MAIL_SERVER']['name'] = __('Email server');
$criterias['MAIL_SERVER']['name'] = _n('Email server', 'Email servers', 1);
$criterias['MAIL_SERVER']['linkfield'] = '';
$criterias['MAIL_SERVER']['type'] = 'dropdown';
$criterias['MAIL_SERVER']['virtual'] = true;
Expand Down

0 comments on commit 08e183e

Please sign in to comment.