Merge pull request #13810 from owncloud/tdomain

fix trusted domain localization
This commit is contained in:
Thomas Müller 2015-02-01 17:26:55 +01:00
commit 4ecf1f85be
1 changed files with 2 additions and 2 deletions

View File

@ -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',