]> source.dussan.org Git - nextcloud-server.git/commitdiff
Removing the added parentheses 22463/head
authorValdnet <47037905+Valdnet@users.noreply.github.com>
Thu, 27 Aug 2020 20:07:45 +0000 (22:07 +0200)
committerGitHub <noreply@github.com>
Thu, 27 Aug 2020 20:07:45 +0000 (22:07 +0200)
apps/files/js/files.js

index d3c676f36589bf5d753fcea5d8bcc30558e336f8..5481ece055c6aea52f18ac5b19285b59018325dc 100644 (file)
                                }
                        } 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
                                        );
                                } 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'}
                                        );