Skip to content
Snippets Groups Projects
Commit 4ecf1f85 authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #13810 from owncloud/tdomain

fix trusted domain localization
parents a3067b3b 9beb033a
No related branches found
No related tags found
No related merge requests found
...@@ -3,9 +3,9 @@ $(document).ready(function(){ ...@@ -3,9 +3,9 @@ $(document).ready(function(){
// Hack to add a trusted domain // Hack to add a trusted domain
if (params.trustDomain) { 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}), {domain: params.trustDomain}),
t('core', 'Add trusted domain'), function(answer) { t('settings', 'Add trusted domain'), function(answer) {
if(answer) { if(answer) {
$.ajax({ $.ajax({
type: 'POST', type: 'POST',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment