aboutsummaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
authorVolkan Gezer <volkangezer@gmail.com>2015-02-01 16:06:12 +0100
committerVolkan Gezer <volkangezer@gmail.com>2015-02-01 16:06:12 +0100
commit9beb033a9f4a0177918c5452ce177176eddddd34 (patch)
tree1abb0e51d8a36efc287d4637b748e4468fd7c649 /settings
parenta3067b3b9fe1ef3287440d132681b9ff46031219 (diff)
downloadnextcloud-server-9beb033a9f4a0177918c5452ce177176eddddd34.tar.gz
nextcloud-server-9beb033a9f4a0177918c5452ce177176eddddd34.zip
fix trusted domain localization
Diffstat (limited to 'settings')
-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',