bluetooth: add translation hints

A couple of translations were hard to translate.

https://bugzilla.gnome.org/show_bug.cgi?id=638351
This commit is contained in:
Stéphane Démurget 2012-11-19 17:49:57 +01:00
parent b121c25184
commit 989d0a5682

View File

@ -353,6 +353,7 @@ const ConfirmNotification = new Lang.Class({
_init: function(source, applet, device_path, name, long_name, pin) { _init: function(source, applet, device_path, name, long_name, pin) {
this.parent(source, this.parent(source,
_("Bluetooth"), _("Bluetooth"),
/* Translators: argument is the device short name */
_("Pairing confirmation for %s").format(name), _("Pairing confirmation for %s").format(name),
{ customContent: true }); { customContent: true });
this.setResident(true); this.setResident(true);
@ -362,6 +363,7 @@ const ConfirmNotification = new Lang.Class({
this.addBody(_("Device %s wants to pair with this computer").format(long_name)); 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 PIN '%06d' matches the one on the device.").format(pin));
/* Translators: this is the verb, not the noun */
this.addButton('matches', _("Matches")); this.addButton('matches', _("Matches"));
this.addButton('does-not-match', _("Does not match")); this.addButton('does-not-match', _("Does not match"));