diff options
author | Volkan Gezer <wakeup@users.noreply.github.com> | 2014-06-28 14:44:37 +0200 |
---|---|---|
committer | Volkan Gezer <wakeup@users.noreply.github.com> | 2014-06-28 14:44:37 +0200 |
commit | d918e5a68c4b08312db3309772da497fca60251b (patch) | |
tree | 7f4e5acaa62b464f49ed73cf60daa0b0144c43f8 /apps | |
parent | d5462fdb50bc9f1d4726369b8922d34f33405d14 (diff) | |
parent | 11788c9579386eb1fc34b8686c440cead8c63de3 (diff) | |
download | nextcloud-server-d918e5a68c4b08312db3309772da497fca60251b.tar.gz nextcloud-server-d918e5a68c4b08312db3309772da497fca60251b.zip |
Merge pull request #9278 from owncloud/l10n-servershare-dialog
fix server share dialog title
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/js/external.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/js/external.js b/apps/files_sharing/js/external.js index a142819b112..1eb447da896 100644 --- a/apps/files_sharing/js/external.js +++ b/apps/files_sharing/js/external.js @@ -43,10 +43,10 @@ }; if (!passwordProtected) { OC.dialogs.confirm(t('files_sharing', 'Add {name} from {owner}@{remote}', {name: name, owner: owner, remote: remoteClean}) - , 'Add Share', callback, true); + , t('files_sharing','Add Share'), callback, true); } else { OC.dialogs.prompt(t('files_sharing', 'Add {name} from {owner}@{remote}', {name: name, owner: owner, remote: remoteClean}) - , 'Add Share', callback, true, 'Password', true); + , t('files_sharing','Add Share'), callback, true, t('files_sharing','Password'), true); } }; })(); |