diff options
author | Valdnet <47037905+Valdnet@users.noreply.github.com> | 2020-08-27 22:07:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-27 22:07:45 +0200 |
commit | ef44404c127018c5569cd636d15a74c808f05459 (patch) | |
tree | 95fea2b253276d06c2dd256b4df2988a8dd680bd /apps | |
parent | d89e02c805b4f1cf383c74cdf9eb128b6cee842d (diff) | |
download | nextcloud-server-ef44404c127018c5569cd636d15a74c808f05459.tar.gz nextcloud-server-ef44404c127018c5569cd636d15a74c808f05459.zip |
Removing the added parentheses
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/js/files.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js index d3c676f3658..5481ece055c 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'} ); |