diff options
author | Volkan Gezer <volkangezer@gmail.com> | 2014-12-08 21:40:15 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-12-10 08:23:03 +0100 |
commit | 5fcc3401e250d381a07883f6533a8f846a792c7e (patch) | |
tree | bf3a8a79fca86331f2cf431516c967312d5d265e /apps/files_external/js | |
parent | 60b2dd6ab4870a9ea331303afb62294451cb7e43 (diff) | |
download | nextcloud-server-5fcc3401e250d381a07883f6533a8f846a792c7e.tar.gz nextcloud-server-5fcc3401e250d381a07883f6533a8f846a792c7e.zip |
translated saved message in files external
Diffstat (limited to 'apps/files_external/js')
-rw-r--r-- | apps/files_external/js/settings.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index 3f166f53df7..7ea82f4bcb3 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -452,14 +452,14 @@ $(document).ready(function() { OC.AppConfig.setValue('files_external', 'allow_user_mounting', 'no'); $('#userMountingBackends').addClass('hidden'); } - OC.msg.finishedSaving('#userMountingMsg', {status: 'success', data: {message: t('settings', 'Saved')}}); + OC.msg.finishedSaving('#userMountingMsg', {status: 'success', data: {message: t('files_external', 'Saved')}}); }); $('input[name="allowUserMountingBackends\\[\\]"]').bind('change', function() { OC.msg.startSaving('#userMountingMsg'); var userMountingBackends = $('input[name="allowUserMountingBackends\\[\\]"]:checked').map(function(){return $(this).val();}).get(); OC.AppConfig.setValue('files_external', 'user_mounting_backends', userMountingBackends.join()); - OC.msg.finishedSaving('#userMountingMsg', {status: 'success', data: {message: t('settings', 'Saved')}}); + OC.msg.finishedSaving('#userMountingMsg', {status: 'success', data: {message: t('files_external', 'Saved')}}); // disable allowUserMounting if(userMountingBackends.length === 0) { |