diff options
author | Valdnet <47037905+Valdnet@users.noreply.github.com> | 2020-08-27 21:51:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-27 21:51:25 +0200 |
commit | d89e02c805b4f1cf383c74cdf9eb128b6cee842d (patch) | |
tree | 483ec7d1d2e1e4f9e2ab78d55932ecd196109eda /apps/files/js | |
parent | dc8f63bb0b9c370fb5d43a1de1a5a4ee576fca7d (diff) | |
download | nextcloud-server-d89e02c805b4f1cf383c74cdf9eb128b6cee842d.tar.gz nextcloud-server-d89e02c805b4f1cf383c74cdf9eb128b6cee842d.zip |
Add the missing parenthesis
Diffstat (limited to 'apps/files/js')
-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 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'} ); |