From f9b7625790bd3bbabd4fbf298fdffadba01fd6aa Mon Sep 17 00:00:00 2001 From: Valdnet <47037905+Valdnet@users.noreply.github.com> Date: Mon, 12 Apr 2021 11:54:30 +0200 Subject: l10n: Unify spelling Spelling unification in Nextcloud applications. --- apps/files/js/files.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'apps') diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 6dbd87c1e2e..4de3fb4352f 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -162,24 +162,24 @@ mountPoint = $('#usedSpacePercent').data('mount-point'); if (usedSpacePercent > 98) { if (owner !== OC.getCurrentUser().uid) { - OC.Notification.show(t('files', 'Storage of {owner} is full, files can not be updated or synced anymore!', + OC.Notification.show(t('files', 'Storage of {owner} is full, files cannot be updated or synced anymore!', {owner: ownerDisplayName}), {type: 'error'} ); } else if (mountType === 'group') { OC.Notification.show(t('files', - 'Group folder "{mountPoint}" is full, files can not be updated or synced anymore!', + 'Group folder "{mountPoint}" is full, files cannot be updated or synced anymore!', {mountPoint: mountPoint}), {type: 'error'} ); } else if (mountType === 'external') { OC.Notification.show(t('files', - 'External storage "{mountPoint}" is full, files can not be updated or synced anymore!', + 'External storage "{mountPoint}" is full, files cannot be updated or synced anymore!', {mountPoint: mountPoint}), {type : 'error'} ); } else { OC.Notification.show(t('files', - 'Your storage is full, files can not be updated or synced anymore!'), + 'Your storage is full, files cannot be updated or synced anymore!'), {type: 'error'} ); } -- cgit v1.2.3