From fdb732c8c236efcf41caeb4f0092ae3d87ca1739 Mon Sep 17 00:00:00 2001 From: Giovanni Campagna Date: Thu, 3 Oct 2013 14:26:12 +0200 Subject: [PATCH] Bluetooth: fix ngettext call https://bugzilla.gnome.org/show_bug.cgi?id=709043 --- js/ui/status/bluetooth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/status/bluetooth.js b/js/ui/status/bluetooth.js index 6c9e4064a..c808d103b 100644 --- a/js/ui/status/bluetooth.js +++ b/js/ui/status/bluetooth.js @@ -55,7 +55,7 @@ const Indicator = new Lang.Class({ this._item.actor.visible = on; if (on) - this._item.status.text = ngettext("%d Connected Device", "%d Connected Devices").format(nDevices); + this._item.status.text = ngettext("%d Connected Device", "%d Connected Devices", nDevices).format(nDevices); }, _ensureSource: function() {