Merge pull request #8712 from owncloud/l10n-fully-translatable-webdav
fully translatable user_webdav
This commit is contained in:
commit
51602f67e0
4 changed files with 5 additions and 5 deletions
|
@ -90,7 +90,7 @@ var LdapConfiguration = {
|
|||
);
|
||||
}
|
||||
$('#ldap_serverconfig_chooser option:selected').removeAttr('selected');
|
||||
var html = '<option value="'+result.configPrefix+'" selected="selected">'+t('user_ldap','{nbServer}. Server', {nbServer: $('#ldap_serverconfig_chooser option').length})+'</option>';
|
||||
var html = '<option value="'+result.configPrefix+'" selected="selected">'+t('user_ldap','{nthServer}. Server', {nthServer: $('#ldap_serverconfig_chooser option').length})+'</option>';
|
||||
$('#ldap_serverconfig_chooser option:last').before(html);
|
||||
LdapWizard.init();
|
||||
} else {
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<button class="ldap_action_test_connection" name="ldap_action_test_connection">
|
||||
<?php p($l->t('Test Configuration'));?>
|
||||
</button>
|
||||
<a href="<?php p($theme->getDocBaseUrl()); ?>/server/7.0/admin_manual/configuration/auth_ldap.html"
|
||||
<a href="<?php p(\OC_Helper::linkToDocs('admin-ldap')); ?>"
|
||||
target="_blank">
|
||||
<img src="<?php print_unescaped(OCP\Util::imagePath('', 'actions/info.png')); ?>"
|
||||
style="height:1.75ex" />
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<button class="ldap_action_continue" name="ldap_action_continue" type="button">
|
||||
<?php p($l->t('Continue'));?>
|
||||
</button>
|
||||
<a href="<?php p($theme->getDocBaseUrl()); ?>/server/7.0/admin_manual/configuration/auth_ldap.html"
|
||||
<a href="<?php p(\OC_Helper::linkToDocs('admin-ldap')); ?>"
|
||||
target="_blank">
|
||||
<img src="<?php print_unescaped(OCP\Util::imagePath('', 'actions/info.png')); ?>"
|
||||
style="height:1.75ex" />
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<form id="webdavauth" class="section" action="#" method="post">
|
||||
<h2><?php p($l->t('WebDAV Authentication'));?></h2>
|
||||
<p><label for="webdav_url"><?php p($l->t('Address: '));?><input type="url" placeholder="https://example.com/webdav" id="webdav_url" name="webdav_url" value="<?php p($_['webdav_url']); ?>"></label>
|
||||
<p><label for="webdav_url"><?php p($l->t('Address:').' ');?><input type="url" placeholder="https://example.com/webdav" id="webdav_url" name="webdav_url" value="<?php p($_['webdav_url']); ?>"></label>
|
||||
<input type="hidden" name="requesttoken" value="<?php p($_['requesttoken']) ?>" id="requesttoken">
|
||||
<input type="submit" value="Save" />
|
||||
<input type="submit" value="<?php p($l->t('Save')); ?>" />
|
||||
<br /><?php p($l->t('The user credentials will be sent to this address. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials.')); ?>
|
||||
</form>
|
||||
|
|
Loading…
Reference in a new issue