← Back to team overview

ayatana-commits team mailing list archive

[Branch ~indicator-applet-developers/evolution-indicator/trunk] Rev 48: modified:

 

------------------------------------------------------------
revno: 48
committer: Neil Jagdish Patel <neil.patel@xxxxxxxxxxxxx>
branch nick: trunk
timestamp: Thu 2009-09-10 17:20:09 +0100
message:
  modified:
    src/evolution-indicator.c
      - Update the names to be lowercase
modified:
  src/evolution-indicator.c


--
lp:evolution-indicator
https://code.launchpad.net/~indicator-applet-developers/evolution-indicator/trunk

Your team ayatana-commits is subscribed to branch lp:evolution-indicator.
To unsubscribe from this branch go to https://code.launchpad.net/~indicator-applet-developers/evolution-indicator/trunk/+edit-subscription.
=== modified file 'src/evolution-indicator.c'
--- src/evolution-indicator.c	2009-09-09 21:03:10 +0000
+++ src/evolution-indicator.c	2009-09-10 16:20:09 +0000
@@ -805,7 +805,7 @@
     gtk_widget_show (frame);
 
     label1 = gtk_label_new (" ");
-    str1 = g_strdup_printf (markup, _("When New Mail Arri_ves In"));
+    str1 = g_strdup_printf (markup, _("When new mail arri_ves nn"));
     gtk_label_set_markup_with_mnemonic (GTK_LABEL (label1), str1);
     g_free (str1);
 
@@ -813,8 +813,8 @@
 
     combo = gtk_combo_box_new_text ();
     gtk_combo_box_append_text (GTK_COMBO_BOX (combo),
-                               n_accounts > 1 ? _("Any Inbox") : _("Inbox"));
-    gtk_combo_box_append_text (GTK_COMBO_BOX (combo), _("Any Folder"));
+                               n_accounts > 1 ? _("any Inbox") : _("Inbox"));
+    gtk_combo_box_append_text (GTK_COMBO_BOX (combo), _("any Folder"));
     gtk_combo_box_set_active (GTK_COMBO_BOX (combo), 
                               only_inbox ? 0 : 1);
     g_signal_connect (combo, "changed", G_CALLBACK (on_combo_changed), NULL);