aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorVolkan Gezer <volkangezer@gmail.com>2014-06-28 01:54:51 +0200
committerVolkan Gezer <volkangezer@gmail.com>2014-06-28 01:54:51 +0200
commit11788c9579386eb1fc34b8686c440cead8c63de3 (patch)
treefacd71aa67ac0945c51185cd072eed7a3009d0b9 /apps
parent75222501ee50672dfdd9d8f51cefea7c8e047616 (diff)
downloadnextcloud-server-11788c9579386eb1fc34b8686c440cead8c63de3.tar.gz
nextcloud-server-11788c9579386eb1fc34b8686c440cead8c63de3.zip
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);
}
};
})();