diff options
author | Robert Ancell <robert.ancell@canonical.com> | 2013-01-08 15:49:56 +1300 |
---|---|---|
committer | Robert Ancell <robert.ancell@canonical.com> | 2013-01-08 15:49:56 +1300 |
commit | 6895fc9d21b0f9bf4c9a1ce08d1dddf8d01061cc (patch) | |
tree | 088ae004e118e8a807c3437aebffe0ba877a88c9 | |
parent | a7252957d1baef65f5bee15e34d8bcc06a543c83 (diff) | |
download | ayatana-indicator-bluetooth-6895fc9d21b0f9bf4c9a1ce08d1dddf8d01061cc.tar.gz ayatana-indicator-bluetooth-6895fc9d21b0f9bf4c9a1ce08d1dddf8d01061cc.tar.bz2 ayatana-indicator-bluetooth-6895fc9d21b0f9bf4c9a1ce08d1dddf8d01061cc.zip |
Use ellipses in labels
-rw-r--r-- | po/ca.po | 12 | ||||
-rw-r--r-- | po/es.po | 12 | ||||
-rw-r--r-- | src/indicator-bluetooth-service.vala | 12 |
3 files changed, 18 insertions, 18 deletions
@@ -26,7 +26,7 @@ msgid "Visible" msgstr "" #: ../src/indicator-bluetooth-service.vala:111 -msgid "Bluetooth Settings..." +msgid "Bluetooth Settings…" msgstr "" #: ../src/indicator-bluetooth-service.vala:253 @@ -34,21 +34,21 @@ msgid "Connection" msgstr "" #: ../src/indicator-bluetooth-service.vala:276 -msgid "Send files..." +msgid "Send files…" msgstr "" #: ../src/indicator-bluetooth-service.vala:284 -msgid "Browse files..." +msgid "Browse files…" msgstr "" #: ../src/indicator-bluetooth-service.vala:293 -msgid "Keyboard Settings..." +msgid "Keyboard Settings…" msgstr "" #: ../src/indicator-bluetooth-service.vala:301 -msgid "Mouse and Touchpad Settings..." +msgid "Mouse and Touchpad Settings…" msgstr "" #: ../src/indicator-bluetooth-service.vala:310 -msgid "Sound Settings..." +msgid "Sound Settings…" msgstr "" @@ -26,7 +26,7 @@ msgid "Visible" msgstr "Visible" #: ../src/indicator-bluetooth-service.vala:111 -msgid "Bluetooth Settings..." +msgid "Bluetooth Settings…" msgstr "Configuración de Bluetooth…" #: ../src/indicator-bluetooth-service.vala:253 @@ -34,21 +34,21 @@ msgid "Connection" msgstr "Conexión" #: ../src/indicator-bluetooth-service.vala:276 -msgid "Send files..." +msgid "Send files…" msgstr "Enviar archivos…" #: ../src/indicator-bluetooth-service.vala:284 -msgid "Browse files..." +msgid "Browse files…" msgstr "Examinar archivos…" #: ../src/indicator-bluetooth-service.vala:293 -msgid "Keyboard Settings..." +msgid "Keyboard Settings…" msgstr "Configuración del teclado…" #: ../src/indicator-bluetooth-service.vala:301 -msgid "Mouse and Touchpad Settings..." +msgid "Mouse and Touchpad Settings…" msgstr "Configuración del ratón y touchpad…" #: ../src/indicator-bluetooth-service.vala:310 -msgid "Sound Settings..." +msgid "Sound Settings…" msgstr "Configuración de sonido…" diff --git a/src/indicator-bluetooth-service.vala b/src/indicator-bluetooth-service.vala index ee8dd2a..fb20423 100644 --- a/src/indicator-bluetooth-service.vala +++ b/src/indicator-bluetooth-service.vala @@ -108,7 +108,7 @@ public class BluetoothIndicator menu.child_append (sep); settings_item = new Dbusmenu.Menuitem (); - settings_item.property_set (Dbusmenu.MENUITEM_PROP_LABEL, _("Bluetooth Settings...")); + settings_item.property_set (Dbusmenu.MENUITEM_PROP_LABEL, _("Bluetooth Settings…")); settings_item.item_activated.connect (() => { show_control_center ("bluetooth"); }); menu.child_append (settings_item); @@ -273,7 +273,7 @@ private class BluetoothMenuItem : Dbusmenu.Menuitem if (can_send) { var send_item = new Dbusmenu.Menuitem (); - send_item.property_set (Dbusmenu.MENUITEM_PROP_LABEL, _("Send files...")); + send_item.property_set (Dbusmenu.MENUITEM_PROP_LABEL, _("Send files…")); send_item.item_activated.connect (() => { GnomeBluetooth.send_to_address (address, alias); }); child_append (send_item); } @@ -281,7 +281,7 @@ private class BluetoothMenuItem : Dbusmenu.Menuitem if (can_browse) { var browse_item = new Dbusmenu.Menuitem (); - browse_item.property_set (Dbusmenu.MENUITEM_PROP_LABEL, _("Browse files...")); + browse_item.property_set (Dbusmenu.MENUITEM_PROP_LABEL, _("Browse files…")); browse_item.item_activated.connect (() => { GnomeBluetooth.browse_address (null, address, Gdk.CURRENT_TIME, null); }); child_append (browse_item); } @@ -290,7 +290,7 @@ private class BluetoothMenuItem : Dbusmenu.Menuitem { case GnomeBluetooth.Type.KEYBOARD: var keyboard_item = new Dbusmenu.Menuitem (); - keyboard_item.property_set (Dbusmenu.MENUITEM_PROP_LABEL, _("Keyboard Settings...")); + keyboard_item.property_set (Dbusmenu.MENUITEM_PROP_LABEL, _("Keyboard Settings…")); keyboard_item.item_activated.connect (() => { show_control_center ("keyboard"); }); child_append (keyboard_item); break; @@ -298,7 +298,7 @@ private class BluetoothMenuItem : Dbusmenu.Menuitem case GnomeBluetooth.Type.MOUSE: case GnomeBluetooth.Type.TABLET: var mouse_item = new Dbusmenu.Menuitem (); - mouse_item.property_set (Dbusmenu.MENUITEM_PROP_LABEL, _("Mouse and Touchpad Settings...")); + mouse_item.property_set (Dbusmenu.MENUITEM_PROP_LABEL, _("Mouse and Touchpad Settings…")); mouse_item.item_activated.connect (() => { show_control_center ("mouse"); }); child_append (mouse_item); break; @@ -307,7 +307,7 @@ private class BluetoothMenuItem : Dbusmenu.Menuitem case GnomeBluetooth.Type.HEADPHONES: case GnomeBluetooth.Type.OTHER_AUDIO: var sound_item = new Dbusmenu.Menuitem (); - sound_item.property_set (Dbusmenu.MENUITEM_PROP_LABEL, _("Sound Settings...")); + sound_item.property_set (Dbusmenu.MENUITEM_PROP_LABEL, _("Sound Settings…")); sound_item.item_activated.connect (() => { show_control_center ("sound"); }); child_append (sound_item); break; |