diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-02-15 15:51:55 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-02-15 15:51:55 +0100 |
commit | 925de78cec848b293266450f9b5dde85f3a9af8f (patch) | |
tree | 71d6dce3e59afb2acc74a3747ee656c0b2a02914 /apps/user_ldap/templates/settings.php | |
parent | 92a36ca8b81c48565e98204e1bfdd05a23ff8bbd (diff) | |
download | nextcloud-server-925de78cec848b293266450f9b5dde85f3a9af8f.tar.gz nextcloud-server-925de78cec848b293266450f9b5dde85f3a9af8f.zip |
Join split translated strings
Diffstat (limited to 'apps/user_ldap/templates/settings.php')
-rw-r--r-- | apps/user_ldap/templates/settings.php | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/apps/user_ldap/templates/settings.php b/apps/user_ldap/templates/settings.php index 43f87c076d7..a882e5b7548 100644 --- a/apps/user_ldap/templates/settings.php +++ b/apps/user_ldap/templates/settings.php @@ -5,13 +5,10 @@ <li><a href="#ldapSettings-2">Advanced</a></li> </ul> <?php if(OCP\App::isEnabled('user_webdavauth')) { - echo '<p class="ldapwarning">'.$l->t('<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible.' - .' You may experience unexpected behaviour.' - .' Please ask your system administrator to disable one of them.').'</p>'; + echo '<p class="ldapwarning">'.$l->t('<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them.').'</p>'; } if(!function_exists('ldap_connect')) { - echo '<p class="ldapwarning">'.$l->t('<b>Warning:</b> The PHP LDAP module is not installed,' - .' the backend will not work. Please ask your system administrator to install it.').'</p>'; + echo '<p class="ldapwarning">'.$l->t('<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it.').'</p>'; } ?> <fieldset id="ldapSettings-1"> @@ -25,16 +22,14 @@ </p> <p><label for="ldap_host"><?php echo $l->t('Host');?></label> <input type="text" id="ldap_host" name="ldap_host" data-default="<?php echo $_['ldap_host_default']; ?>" - title="<?php echo $l->t('You can omit the protocol, except you require SSL.' - .' Then start with ldaps://');?>"></p> + title="<?php echo $l->t('You can omit the protocol, except you require SSL. Then start with ldaps://');?>"></p> <p><label for="ldap_base"><?php echo $l->t('Base DN');?></label> <textarea id="ldap_base" name="ldap_base" placeholder="<?php echo $l->t('One Base DN per line');?>" title="<?php echo $l->t('You can specify Base DN for users and groups in the Advanced tab');?>" data-default="<?php echo $_['ldap_base_default']; ?>" ></textarea></p> <p><label for="ldap_dn"><?php echo $l->t('User DN');?></label> <input type="text" id="ldap_dn" name="ldap_dn" data-default="<?php echo $_['ldap_dn_default']; ?>" - title="<?php echo $l->t('The DN of the client user with which the bind shall be done,' - .' e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty.');?>" /></p> + title="<?php echo $l->t('The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty.');?>" /></p> <p><label for="ldap_agent_password"><?php echo $l->t('Password');?></label> <input type="password" id="ldap_agent_password" name="ldap_agent_password" data-default="<?php echo $_['ldap_agent_password_default']; ?>" @@ -42,8 +37,7 @@ <p><label for="ldap_login_filter"><?php echo $l->t('User Login Filter');?></label> <input type="text" id="ldap_login_filter" name="ldap_login_filter" data-default="<?php echo $_['ldap_login_filter_default']; ?>" - title="<?php echo $l->t('Defines the filter to apply, when login is attempted.' - .' %%uid replaces the username in the login action.');?>" /> + title="<?php echo $l->t('Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action.');?>" /> <br /><small><?php echo $l->t('use %%uid placeholder, e.g. "uid=%%uid"');?></small></p> <p><label for="ldap_userlist_filter"><?php echo $l->t('User List Filter');?></label> <input type="text" id="ldap_userlist_filter" name="ldap_userlist_filter" |