aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArunprakash <arunp@novell.com>2005-08-06 19:39:33 +0800
committerAhmed Sarfraaz <sarfraaz@src.gnome.org>2005-08-06 19:39:33 +0800
commit87181e49948f57a6ff160328d66a716d43d830a4 (patch)
treec99b86b4e6cd3f4fb94d403bd3d8e4a882adba95
parent9319129336e305a49f14bf7cefd2d560d74b8d69 (diff)
downloadgsoc2013-evolution-87181e49948f57a6ff160328d66a716d43d830a4.tar
gsoc2013-evolution-87181e49948f57a6ff160328d66a716d43d830a4.tar.gz
gsoc2013-evolution-87181e49948f57a6ff160328d66a716d43d830a4.tar.bz2
gsoc2013-evolution-87181e49948f57a6ff160328d66a716d43d830a4.tar.lz
gsoc2013-evolution-87181e49948f57a6ff160328d66a716d43d830a4.tar.xz
gsoc2013-evolution-87181e49948f57a6ff160328d66a716d43d830a4.tar.zst
gsoc2013-evolution-87181e49948f57a6ff160328d66a716d43d830a4.zip
Marked strings for translation that were left out. Same.
2005-08-05 Arunprakash <arunp@novell.com> * exchange-folder-size-display.c (exchange_folder_size_display) : Marked strings for translation that were left out. * exchange-operations.c (exchange_operations_cta_add_node_to_tree) (exchange_operations_cta_select_node_from) : Same. svn path=/trunk/; revision=30016
-rw-r--r--plugins/exchange-operations/ChangeLog7
-rw-r--r--plugins/exchange-operations/exchange-folder-size-display.c4
-rw-r--r--plugins/exchange-operations/exchange-operations.c4
3 files changed, 11 insertions, 4 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog
index 5dd379de5b..85259e9c9d 100644
--- a/plugins/exchange-operations/ChangeLog
+++ b/plugins/exchange-operations/ChangeLog
@@ -1,3 +1,10 @@
+2005-08-05 Arunprakash <arunp@novell.com>
+
+ * exchange-folder-size-display.c (exchange_folder_size_display) :
+ Marked strings for translation that were left out.
+ * exchange-operations.c (exchange_operations_cta_add_node_to_tree)
+ (exchange_operations_cta_select_node_from) : Same.
+
2005-08-03 Shakti Sen <shprasad@blr.novell.com>
* exchange-folder.c (org_gnome_exchange_folder_ab_unsubscribe)
diff --git a/plugins/exchange-operations/exchange-folder-size-display.c b/plugins/exchange-operations/exchange-folder-size-display.c
index b35af71075..14ca5e3054 100644
--- a/plugins/exchange-operations/exchange-folder-size-display.c
+++ b/plugins/exchange-operations/exchange-folder-size-display.c
@@ -132,11 +132,11 @@ exchange_folder_size_display (GtkListStore *model, GtkWidget *parent)
gtk_tree_sortable_set_sort_column_id (sortable, COLUMN_SIZE, GTK_SORT_DESCENDING);
column = gtk_tree_view_column_new_with_attributes (
- ("Folder Name"), gtk_cell_renderer_text_new (), "text", COLUMN_NAME, NULL);
+ _("Folder Name"), gtk_cell_renderer_text_new (), "text", COLUMN_NAME, NULL);
gtk_tree_view_append_column (GTK_TREE_VIEW (table),
column);
- col_name = g_strdup_printf ("%s (KB)", ("Folder Size"));
+ col_name = g_strdup_printf ("%s (KB)", _("Folder Size"));
column = gtk_tree_view_column_new_with_attributes (
col_name, gtk_cell_renderer_text_new (), "text", COLUMN_SIZE, NULL);
g_free (col_name);
diff --git a/plugins/exchange-operations/exchange-operations.c b/plugins/exchange-operations/exchange-operations.c
index 9f822183c5..80eb50f4b7 100644
--- a/plugins/exchange-operations/exchange-operations.c
+++ b/plugins/exchange-operations/exchange-operations.c
@@ -112,7 +112,7 @@ exchange_operations_cta_add_node_to_tree (GtkTreeStore *store, GtkTreeIter *pare
if (!strcmp (nodename, "personal") && !parent) {
/* FIXME: Don't hardcode this */
- strcpy (nodename, "Personal Folders");
+ strcpy (nodename, _("Personal Folders"));
}
found = FALSE;
@@ -155,7 +155,7 @@ exchange_operations_cta_select_node_from_tree (GtkTreeStore *store, GtkTreeIter
if (!strcmp (nodename, "personal") && !parent) {
/* FIXME: Don't hardcode this */
- strcpy (nodename, "Personal Folders");
+ strcpy (nodename, _("Personal Folders"));
}
status = gtk_tree_model_iter_children (GTK_TREE_MODEL (store), &iter, parent);