Merge pull request #26706 from nextcloud/Valdnet-patch-7

l10n: Spelling unification
This commit is contained in:
Joas Schilling 2021-05-31 17:21:16 +02:00 committed by GitHub
commit 7e8ddcd38f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 14 additions and 14 deletions

View File

@ -45,7 +45,7 @@ class SMB extends Backend {
->setIdentifier('smb') ->setIdentifier('smb')
->addIdentifierAlias('\OC\Files\Storage\SMB')// legacy compat ->addIdentifierAlias('\OC\Files\Storage\SMB')// legacy compat
->setStorageClass('\OCA\Files_External\Lib\Storage\SMB') ->setStorageClass('\OCA\Files_External\Lib\Storage\SMB')
->setText($l->t('SMB / CIFS')) ->setText($l->t('SMB/CIFS'))
->addParameters([ ->addParameters([
new DefinitionParameter('host', $l->t('Host')), new DefinitionParameter('host', $l->t('Host')),
new DefinitionParameter('share', $l->t('Share')), new DefinitionParameter('share', $l->t('Share')),

View File

@ -43,7 +43,7 @@ class SMB_OC extends Backend {
$this $this
->setIdentifier('\OC\Files\Storage\SMB_OC') ->setIdentifier('\OC\Files\Storage\SMB_OC')
->setStorageClass('\OCA\Files_External\Lib\Storage\SMB') ->setStorageClass('\OCA\Files_External\Lib\Storage\SMB')
->setText($l->t('SMB / CIFS using OC login')) ->setText($l->t('SMB/CIFS using OC login'))
->addParameters([ ->addParameters([
new DefinitionParameter('host', $l->t('Host')), new DefinitionParameter('host', $l->t('Host')),
(new DefinitionParameter('username_as_share', $l->t('Username as share'))) (new DefinitionParameter('username_as_share', $l->t('Username as share')))

View File

@ -159,9 +159,9 @@ OCA = OCA || {};
if(message === 'Bad search filter') { 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.'); 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') { } 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') { } 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}); OC.Notification.showTemporary(message, {isHTML: isHtml});

View File

@ -131,7 +131,7 @@ OCA = OCA || {};
if( key === 'ldap_userfilter_groups' if( key === 'ldap_userfilter_groups'
&& message === 'memberOf is not supported by the server' && 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; return message;
} }

View File

@ -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. * integration'. Use the L10N service to translate it.
* *
* @return string * @return string
*/ */
public function getName() { public function getName() {
return $this->l->t('LDAP / AD integration'); return $this->l->t('LDAP/AD integration');
} }
/** /**

View File

@ -5,16 +5,16 @@
</p> </p>
<p> <p>
<label for="ldap_loginfilter_username"> <label for="ldap_loginfilter_username">
<?php p($l->t('LDAP / AD Username:'));?> <?php p($l->t('LDAP/AD Username:'));?>
</label> </label>
<input type="checkbox" id="ldap_loginfilter_username" <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" /> name="ldap_loginfilter_username" value="1" />
</p> </p>
<p> <p>
<label for="ldap_loginfilter_email"> <label for="ldap_loginfilter_email">
<?php p($l->t('LDAP / AD Email Address:'));?> <?php p($l->t('LDAP/AD Email Address:'));?>
</label> </label>
<input type="checkbox" id="ldap_loginfilter_email" <input type="checkbox" id="ldap_loginfilter_email"

View File

@ -55,7 +55,7 @@ style('user_ldap', 'settings');
?> ?>
<form id="ldap" class="section" action="#" method="post"> <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"> <div id="ldapSettings">
<ul> <ul>

View File

@ -58,10 +58,10 @@ class SectionTest extends TestCase {
$this->l $this->l
->expects($this->once()) ->expects($this->once())
->method('t') ->method('t')
->with('LDAP / AD integration') ->with('LDAP/AD integration')
->willReturn('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() { public function testGetPriority() {