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

github.com/nextcloud/notifications.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2016-07-22 12:02:38 +0300
committerMorris Jobke <hey@morrisjobke.de>2016-07-22 12:02:38 +0300
commit9fd4540fdfe5e6a7974d7b0330de004892ed2bca (patch)
tree63f1cfc776aba18ab452087bd6c8aadc48c65f63 /js/notification.js
parent02335e4dbcf91367361f1dd4270d4b5057cc3b82 (diff)
No need to translate ellipsis
Diffstat (limited to 'js/notification.js')
-rw-r--r--js/notification.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/notification.js b/js/notification.js
index 0beb171..8cf42d5 100644
--- a/js/notification.js
+++ b/js/notification.js
@@ -86,7 +86,7 @@
} else {
message = message.substring(0, 120);
}
- message += t('notifications', '…');
+ message += '…';
}
message = escapeHTML(message);