l10n: Unify spelling

Spelling unification in Nextcloud applications.
This commit is contained in:
Valdnet 2021-04-12 11:54:30 +02:00 committed by Morris Jobke
parent d27aecebc0
commit f9b7625790
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68

View File

@ -162,24 +162,24 @@
mountPoint = $('#usedSpacePercent').data('mount-point'); mountPoint = $('#usedSpacePercent').data('mount-point');
if (usedSpacePercent > 98) { if (usedSpacePercent > 98) {
if (owner !== OC.getCurrentUser().uid) { 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'} {owner: ownerDisplayName}), {type: 'error'}
); );
} else if (mountType === 'group') { } else if (mountType === 'group') {
OC.Notification.show(t('files', 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}), {mountPoint: mountPoint}),
{type: 'error'} {type: 'error'}
); );
} else if (mountType === 'external') { } else if (mountType === 'external') {
OC.Notification.show(t('files', 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}), {mountPoint: mountPoint}),
{type : 'error'} {type : 'error'}
); );
} else { } else {
OC.Notification.show(t('files', 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'} {type: 'error'}
); );
} }