From 9ba78ce04a446b4d1d1a59de0987619811d90af4 Mon Sep 17 00:00:00 2001 From: Gustavo Padovan Date: Tue, 9 Apr 2013 15:25:56 -0300 Subject: [PATCH] Bluetooth: Use "Passkey" instead of "PIN" Passkey is the proper name to be used when we are pairing with a Bluetooth 2.1+ device. PIN are only used for older devices which is not the case here, the message is only shown when dealing with 2.1+ devices. https://bugzilla.gnome.org/show_bug.cgi?id=697661 --- 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 001f8d4ba..f4610c723 100644 --- a/js/ui/status/bluetooth.js +++ b/js/ui/status/bluetooth.js @@ -363,7 +363,7 @@ const ConfirmNotification = new Lang.Class({ this._applet = applet; this._devicePath = device_path; this.addBody(_("Device %s wants to pair with this computer").format(long_name)); - this.addBody(_("Please confirm whether the PIN '%06d' matches the one on the device.").format(pin)); + this.addBody(_("Please confirm whether the Passkey '%06d' matches the one on the device.").format(pin)); /* Translators: this is the verb, not the noun */ this.addButton('matches', _("Matches"));