From: Valdnet <47037905+Valdnet@users.noreply.github.com> Date: Thu, 27 Aug 2020 19:51:25 +0000 (+0200) Subject: Add the missing parenthesis X-Git-Tag: v20.0.0beta3~31^2~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d89e02c805b4f1cf383c74cdf9eb128b6cee842d;p=nextcloud-server.git Add the missing parenthesis --- diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 5481ece055c..d3c676f3658 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -181,7 +181,7 @@ } } else if (usedSpacePercent > 90) { if (owner !== OC.getCurrentUser().uid) { - OC.Notification.show(t('files', 'Storage of {owner} is almost full ({usedSpacePercent}%).', + OC.Notification.show(t('files', 'Storage of {owner} is almost full ({usedSpacePercent}%).)', { usedSpacePercent: usedSpacePercent, owner: ownerDisplayName @@ -192,18 +192,18 @@ ); } else if (mountType === 'group') { OC.Notification.show(t('files', - 'This group folder is almost full ({usedSpacePercent}%).', + 'This group folder is almost full ({usedSpacePercent}%).)', {usedSpacePercent: usedSpacePercent}), {type : 'error'} ); } else if (mountType === 'external') { OC.Notification.show(t('files', - 'This external storage is almost full ({usedSpacePercent}%).', + 'This external storage is almost full ({usedSpacePercent}%).)', {usedSpacePercent: usedSpacePercent}), {type : 'error'} ); } else { - OC.Notification.show(t('files', 'Your storage is almost full ({usedSpacePercent}%).', + OC.Notification.show(t('files', 'Your storage is almost full ({usedSpacePercent}%).)', {usedSpacePercent: usedSpacePercent}), {type : 'error'} );