Merge pull request #26706 from nextcloud/Valdnet-patch-7
l10n: Spelling unification
This commit is contained in:
commit
7e8ddcd38f
|
@ -45,7 +45,7 @@ class SMB extends Backend {
|
|||
->setIdentifier('smb')
|
||||
->addIdentifierAlias('\OC\Files\Storage\SMB')// legacy compat
|
||||
->setStorageClass('\OCA\Files_External\Lib\Storage\SMB')
|
||||
->setText($l->t('SMB / CIFS'))
|
||||
->setText($l->t('SMB/CIFS'))
|
||||
->addParameters([
|
||||
new DefinitionParameter('host', $l->t('Host')),
|
||||
new DefinitionParameter('share', $l->t('Share')),
|
||||
|
|
|
@ -43,7 +43,7 @@ class SMB_OC extends Backend {
|
|||
$this
|
||||
->setIdentifier('\OC\Files\Storage\SMB_OC')
|
||||
->setStorageClass('\OCA\Files_External\Lib\Storage\SMB')
|
||||
->setText($l->t('SMB / CIFS using OC login'))
|
||||
->setText($l->t('SMB/CIFS using OC login'))
|
||||
->addParameters([
|
||||
new DefinitionParameter('host', $l->t('Host')),
|
||||
(new DefinitionParameter('username_as_share', $l->t('Username as share')))
|
||||
|
|
|
@ -159,9 +159,9 @@ OCA = OCA || {};
|
|||
if(message === 'Bad search filter') {
|
||||
message = t('user_ldap', 'The search filter is invalid, probably due to syntax issues like uneven number of opened and closed brackets. Please revise.');
|
||||
} else if(message === 'connection error') {
|
||||
message = t('user_ldap', 'A connection error to LDAP / AD occurred, please check host, port and credentials.');
|
||||
message = t('user_ldap', 'A connection error to LDAP/AD occurred, please check host, port and credentials.');
|
||||
} else if(message === 'missing placeholder') {
|
||||
message = t('user_ldap', 'The "%uid" placeholder is missing. It will be replaced with the login name when querying LDAP / AD.');
|
||||
message = t('user_ldap', 'The "%uid" placeholder is missing. It will be replaced with the login name when querying LDAP/AD.');
|
||||
}
|
||||
}
|
||||
OC.Notification.showTemporary(message, {isHTML: isHtml});
|
||||
|
|
|
@ -131,7 +131,7 @@ OCA = OCA || {};
|
|||
if( key === 'ldap_userfilter_groups'
|
||||
&& message === 'memberOf is not supported by the server'
|
||||
) {
|
||||
message = t('user_ldap', 'The group box was disabled, because the LDAP / AD server does not support memberOf.');
|
||||
message = t('user_ldap', 'The group box was disabled, because the LDAP/AD server does not support memberOf.');
|
||||
}
|
||||
return message;
|
||||
}
|
||||
|
|
|
@ -55,13 +55,13 @@ class Section implements IIconSection {
|
|||
}
|
||||
|
||||
/**
|
||||
* returns the translated name as it should be displayed, e.g. 'LDAP / AD
|
||||
* returns the translated name as it should be displayed, e.g. 'LDAP/AD
|
||||
* integration'. Use the L10N service to translate it.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getName() {
|
||||
return $this->l->t('LDAP / AD integration');
|
||||
return $this->l->t('LDAP/AD integration');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -5,16 +5,16 @@
|
|||
</p>
|
||||
<p>
|
||||
<label for="ldap_loginfilter_username">
|
||||
<?php p($l->t('LDAP / AD Username:'));?>
|
||||
<?php p($l->t('LDAP/AD Username:'));?>
|
||||
</label>
|
||||
|
||||
<input type="checkbox" id="ldap_loginfilter_username"
|
||||
title="<?php p($l->t('Allows login against the LDAP / AD username, which is either "uid" or "sAMAccountName" and will be detected.'));?>"
|
||||
title="<?php p($l->t('Allows login against the LDAP/AD username, which is either "uid" or "sAMAccountName" and will be detected.'));?>"
|
||||
name="ldap_loginfilter_username" value="1" />
|
||||
</p>
|
||||
<p>
|
||||
<label for="ldap_loginfilter_email">
|
||||
<?php p($l->t('LDAP / AD Email Address:'));?>
|
||||
<?php p($l->t('LDAP/AD Email Address:'));?>
|
||||
</label>
|
||||
|
||||
<input type="checkbox" id="ldap_loginfilter_email"
|
||||
|
|
|
@ -55,7 +55,7 @@ style('user_ldap', 'settings');
|
|||
?>
|
||||
|
||||
<form id="ldap" class="section" action="#" method="post">
|
||||
<h2><?php p($l->t('LDAP / AD integration')); ?></h2>
|
||||
<h2><?php p($l->t('LDAP/AD integration')); ?></h2>
|
||||
|
||||
<div id="ldapSettings">
|
||||
<ul>
|
||||
|
|
|
@ -58,10 +58,10 @@ class SectionTest extends TestCase {
|
|||
$this->l
|
||||
->expects($this->once())
|
||||
->method('t')
|
||||
->with('LDAP / AD integration')
|
||||
->willReturn('LDAP / AD integration');
|
||||
->with('LDAP/AD integration')
|
||||
->willReturn('LDAP/AD integration');
|
||||
|
||||
$this->assertSame('LDAP / AD integration', $this->section->getName());
|
||||
$this->assertSame('LDAP/AD integration', $this->section->getName());
|
||||
}
|
||||
|
||||
public function testGetPriority() {
|
||||
|
|
Loading…
Reference in New Issue