[gnumeric] Set gettext context
- From: Marek Černocký <mcernocky src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnumeric] Set gettext context
- Date: Thu, 10 Mar 2011 11:42:14 +0000 (UTC)
commit e9016a0141413efefe54330658d7bfa8992a65f2
Author: Marek Ä?ernocký <marek manet cz>
Date: Thu Mar 10 12:39:40 2011 +0100
Set gettext context
src/sheet-object-graph.c | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/src/sheet-object-graph.c b/src/sheet-object-graph.c
index 7d02b64..fc5a222 100644
--- a/src/sheet-object-graph.c
+++ b/src/sheet-object-graph.c
@@ -745,8 +745,10 @@ sheet_object_graph_guru (WBCGtk *wbcg, GogGraph *graph,
gtk_table_attach (GTK_TABLE (custom), w, 0, 1, 0, 1, GTK_FILL, GTK_FILL, 0, 0);
w = gtk_combo_box_new_text ();
gtk_combo_box_append_text (GTK_COMBO_BOX (w), _("Auto"));
- gtk_combo_box_append_text (GTK_COMBO_BOX (w), _("Columns"));
- gtk_combo_box_append_text (GTK_COMBO_BOX (w), _("Rows"));
+ /*Translators: Series as "Columns"*/
+ gtk_combo_box_append_text (GTK_COMBO_BOX (w), C_("graph", "Columns"));
+ /*Translators: Series as "Rows"*/
+ gtk_combo_box_append_text (GTK_COMBO_BOX (w), C_("graph", "Rows"));
gtk_combo_box_set_active (GTK_COMBO_BOX (w), 0);
g_signal_connect (G_OBJECT (w), "changed", G_CALLBACK (cb_selection_mode_changed), data);
gtk_table_attach (GTK_TABLE (custom), w, 1, 2, 0, 1, GTK_FILL, GTK_FILL, 0, 0);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]