summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-02-01 17:26:55 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2015-02-01 17:26:55 +0100
commit4ecf1f85bee6fc89bc3c7a8620f6c32b749d4acb (patch)
tree1abb0e51d8a36efc287d4637b748e4468fd7c649
parenta3067b3b9fe1ef3287440d132681b9ff46031219 (diff)
parent9beb033a9f4a0177918c5452ce177176eddddd34 (diff)
downloadnextcloud-server-4ecf1f85bee6fc89bc3c7a8620f6c32b749d4acb.tar.gz
nextcloud-server-4ecf1f85bee6fc89bc3c7a8620f6c32b749d4acb.zip
Merge pull request #13810 from owncloud/tdomain
fix trusted domain localization
-rw-r--r--settings/js/admin.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/js/admin.js b/settings/js/admin.js
index d00d083407f..face18beef0 100644
--- a/settings/js/admin.js
+++ b/settings/js/admin.js
@@ -3,9 +3,9 @@ $(document).ready(function(){
// Hack to add a trusted domain
if (params.trustDomain) {
- OC.dialogs.confirm(t('core', 'Are you really sure you want add "{domain}" as trusted domain?',
+ OC.dialogs.confirm(t('settings', 'Are you really sure you want add "{domain}" as trusted domain?',
{domain: params.trustDomain}),
- t('core', 'Add trusted domain'), function(answer) {
+ t('settings', 'Add trusted domain'), function(answer) {
if(answer) {
$.ajax({
type: 'POST',