aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorVolkan Gezer <wakeup@users.noreply.github.com>2014-06-28 14:44:37 +0200
committerVolkan Gezer <wakeup@users.noreply.github.com>2014-06-28 14:44:37 +0200
commitd918e5a68c4b08312db3309772da497fca60251b (patch)
tree7f4e5acaa62b464f49ed73cf60daa0b0144c43f8 /apps
parentd5462fdb50bc9f1d4726369b8922d34f33405d14 (diff)
parent11788c9579386eb1fc34b8686c440cead8c63de3 (diff)
downloadnextcloud-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.js4
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);
}
};
})();