Merge pull request #12708 from owncloud/l10nsaved
translated saved message in files external
This commit is contained in:
commit
9ca8b864e2
|
@ -468,14 +468,14 @@ $(document).ready(function() {
|
||||||
OC.AppConfig.setValue('files_external', 'allow_user_mounting', 'no');
|
OC.AppConfig.setValue('files_external', 'allow_user_mounting', 'no');
|
||||||
$('#userMountingBackends').addClass('hidden');
|
$('#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() {
|
$('input[name="allowUserMountingBackends\\[\\]"]').bind('change', function() {
|
||||||
OC.msg.startSaving('#userMountingMsg');
|
OC.msg.startSaving('#userMountingMsg');
|
||||||
var userMountingBackends = $('input[name="allowUserMountingBackends\\[\\]"]:checked').map(function(){return $(this).val();}).get();
|
var userMountingBackends = $('input[name="allowUserMountingBackends\\[\\]"]:checked').map(function(){return $(this).val();}).get();
|
||||||
OC.AppConfig.setValue('files_external', 'user_mounting_backends', userMountingBackends.join());
|
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
|
// disable allowUserMounting
|
||||||
if(userMountingBackends.length === 0) {
|
if(userMountingBackends.length === 0) {
|
||||||
|
|
Loading…
Reference in New Issue