Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValdnet <47037905+Valdnet@users.noreply.github.com>2020-08-27 19:55:47 +0300
committerGitHub <noreply@github.com>2020-08-27 19:55:47 +0300
commitdc8f63bb0b9c370fb5d43a1de1a5a4ee576fca7d (patch)
tree95fea2b253276d06c2dd256b4df2988a8dd680bd /apps/files/js/files.js
parentabdb201c04b12d4684e0439cb4c596dd52b7c9c0 (diff)
l10n: Add a period at the end of the sentence
Diffstat (limited to 'apps/files/js/files.js')
-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'}
);