[gnome-shell/gbsneto/new-lock-screen-part2: 28/36] unlockDialog: Use just the counter to format notifications
- From: Florian Müllner <fmuellner src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/gbsneto/new-lock-screen-part2: 28/36] unlockDialog: Use just the counter to format notifications
- Date: Mon, 10 Feb 2020 22:33:27 +0000 (UTC)
commit 05c918dc1aa3db30b1030496979ae54e09761a57
Author: Georges Basile Stavracas Neto <georges stavracas gmail com>
Date: Fri Nov 29 16:05:12 2019 -0300
unlockDialog: Use just the counter to format notifications
https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/872
js/ui/unlockDialog.js | 11 ++---------
1 file changed, 2 insertions(+), 9 deletions(-)
---
diff --git a/js/ui/unlockDialog.js b/js/ui/unlockDialog.js
index 2aaaf4de1b..9335e015e9 100644
--- a/js/ui/unlockDialog.js
+++ b/js/ui/unlockDialog.js
@@ -71,13 +71,6 @@ var NotificationsBox = GObject.registerClass({
this.visible = this._notificationBox.visible;
}
- _makeNotificationCountText(count, isChat) {
- if (isChat)
- return ngettext('%d new message', '%d new messages', count).format(count);
- else
- return ngettext('%d new notification', '%d new notifications', count).format(count);
- }
-
_makeNotificationSource(source, box) {
let sourceActor = new MessageTray.SourceActor(source, SUMMARY_ICON_SIZE);
box.add_child(sourceActor);
@@ -93,7 +86,7 @@ var NotificationsBox = GObject.registerClass({
let count = source.unseenCount;
let countLabel = new St.Label({
- text: this._makeNotificationCountText(count, source.isChat),
+ text: `${count}`,
style_class: 'unlock-dialog-notification-count-text',
});
textBox.add(countLabel);
@@ -239,7 +232,7 @@ var NotificationsBox = GObject.registerClass({
this._showSource(source, obj, obj.sourceBox);
} else {
let count = source.unseenCount;
- obj.countLabel.text = this._makeNotificationCountText(count, source.isChat);
+ obj.countLabel.text = `${count}`;
}
obj.sourceBox.visible = obj.visible && (source.unseenCount > 0);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]