eventlog: rename All Projects to Summary

This commit is contained in:
Hylke Bons 2012-05-27 14:20:35 +01:00
parent 2b9d6934dd
commit 39e24c1b0e
3 changed files with 3 additions and 3 deletions

View file

@ -194,7 +194,7 @@ namespace SparkleShare {
ListStore store = new ListStore (typeof (string));
store.AppendValues (_("All Projects"));
store.AppendValues (_("Summary"));
store.AppendValues ("---");
this.combo_box.Model = store;

View file

@ -252,7 +252,7 @@ namespace SparkleShare {
this.popup_button.Font = NSFontManager.SharedFontManager.FontWithFamily
("Lucida Grande", NSFontTraitMask.Condensed, 0, NSFont.SmallSystemFontSize);
this.popup_button.AddItem ("All Projects");
this.popup_button.AddItem ("Summary");
this.popup_button.Menu.AddItem (NSMenuItem.SeparatorItem);
int row = 2;

View file

@ -207,7 +207,7 @@ namespace SparkleShare {
};
ComboBoxItem item = new ComboBoxItem () {
Content = "All Projects"
Content = "Summary"
};
this.combo_box.Items.Add (item);