diff options
author | Sebastien Bacher <seb128@ubuntu.com> | 2010-03-15 15:56:09 +0100 |
---|---|---|
committer | Sebastien Bacher <seb128@ubuntu.com> | 2010-03-15 15:56:09 +0100 |
commit | 65e9d7ec10a2fa57c7e123f3733d2bd385f4d657 (patch) | |
tree | fea46c57bd3388e4bc61b99911d03a0fffe65e5e /src/dbus-menu-manager.c | |
parent | 14de667d2f8301da93739931b2d8e8ea4fe4afa4 (diff) | |
parent | c865edaf8a55627fec5cb85dbb77296e193ad342 (diff) | |
download | ayatana-indicator-sound-65e9d7ec10a2fa57c7e123f3733d2bd385f4d657.tar.gz ayatana-indicator-sound-65e9d7ec10a2fa57c7e123f3733d2bd385f4d657.tar.bz2 ayatana-indicator-sound-65e9d7ec10a2fa57c7e123f3733d2bd385f4d657.zip |
releasing version 0.1.3.1-0ubuntu2
Diffstat (limited to 'src/dbus-menu-manager.c')
-rw-r--r-- | src/dbus-menu-manager.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dbus-menu-manager.c b/src/dbus-menu-manager.c index 38ed727..1628a59 100644 --- a/src/dbus-menu-manager.c +++ b/src/dbus-menu-manager.c @@ -117,7 +117,7 @@ void dbus_menu_manager_update_mute_ui(gboolean incoming_mute_value) b_all_muted = incoming_mute_value; dbusmenu_menuitem_property_set(mute_all_menuitem, DBUSMENU_MENUITEM_PROP_LABEL, - _(b_all_muted == FALSE ? "Mute All" : "Unmute")); + b_all_muted == FALSE ? _("Mute All") : _("Unmute")); } @@ -191,7 +191,7 @@ static void rebuild_sound_menu(DbusmenuMenuitem *root, SoundServiceDbus *service { // Mute button mute_all_menuitem = dbusmenu_menuitem_new(); - dbusmenu_menuitem_property_set(mute_all_menuitem, DBUSMENU_MENUITEM_PROP_LABEL, _(b_all_muted == FALSE ? "Mute All" : "Unmute")); + dbusmenu_menuitem_property_set(mute_all_menuitem, DBUSMENU_MENUITEM_PROP_LABEL, b_all_muted == FALSE ? _("Mute All") : _("Unmute")); g_signal_connect(G_OBJECT(mute_all_menuitem), DBUSMENU_MENUITEM_SIGNAL_ITEM_ACTIVATED, G_CALLBACK(set_global_mute_from_ui), NULL); dbusmenu_menuitem_property_set_bool(mute_all_menuitem, DBUSMENU_MENUITEM_PROP_ENABLED, b_sink_available); @@ -230,7 +230,7 @@ static void set_global_mute_from_ui() toggle_global_mute(b_all_muted); dbusmenu_menuitem_property_set(mute_all_menuitem, DBUSMENU_MENUITEM_PROP_LABEL, - _(b_all_muted == FALSE ? "Mute All" : "Unmute")); + b_all_muted == FALSE ? _("Mute All") : _("Unmute")); } |