aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2020-08-28 08:47:01 +0200
committerGitHub <noreply@github.com>2020-08-28 08:47:01 +0200
commit286bf2b84ffda4c5878026b28aa2bdd0ef75b54a (patch)
tree7c07408808ab3a49b218214851fb6eb1c3f41ef8 /apps/files
parent40e233915173dfd5d0fc614166ffcb3e4b1e0fb5 (diff)
parentef44404c127018c5569cd636d15a74c808f05459 (diff)
downloadnextcloud-server-286bf2b84ffda4c5878026b28aa2bdd0ef75b54a.tar.gz
nextcloud-server-286bf2b84ffda4c5878026b28aa2bdd0ef75b54a.zip
Merge pull request #22463 from nextcloud/Valdnet-patch-3
l10n: Add a period at the end of the sentence
Diffstat (limited to 'apps/files')
-rw-r--r--apps/files/js/files.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js
index cdc1c70ffc5..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'}
);