From 8e56adb5530c6e86464cd14b6614654166eb1718 Mon Sep 17 00:00:00 2001 From: Sergey Alyoshin Date: Sun, 8 Feb 2015 15:39:16 +0300 Subject: [PATCH] Add missed strings to translation --- tvp-git-helper/tgh-branch-dialog.c | 2 +- tvp-git-helper/tgh-file-selection-dialog.c | 2 +- tvp-git-helper/tgh-status-dialog.c | 4 ++-- tvp-svn-helper/tsh-status-dialog.c | 8 ++++---- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/tvp-git-helper/tgh-branch-dialog.c b/tvp-git-helper/tgh-branch-dialog.c index 6028f26..dbdb47b 100644 --- a/tvp-git-helper/tgh-branch-dialog.c +++ b/tvp-git-helper/tgh-branch-dialog.c @@ -107,7 +107,7 @@ tgh_branch_dialog_init (TghBranchDialog *dialog) renderer = gtk_cell_renderer_toggle_new (); gtk_cell_renderer_toggle_set_radio (GTK_CELL_RENDERER_TOGGLE(renderer), TRUE); gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (tree_view), - -1, ("Active"), + -1, _("Active"), renderer, "active", COLUMN_ACTIVE, NULL); diff --git a/tvp-git-helper/tgh-file-selection-dialog.c b/tvp-git-helper/tgh-file-selection-dialog.c index b23ecc5..129a30c 100644 --- a/tvp-git-helper/tgh-file-selection-dialog.c +++ b/tvp-git-helper/tgh-file-selection-dialog.c @@ -96,7 +96,7 @@ tgh_file_selection_dialog_init (TghFileSelectionDialog *dialog) renderer = gtk_cell_renderer_text_new (); gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (tree_view), - -1, ("State"), renderer, + -1, _("State"), renderer, "text", COLUMN_STAT, NULL); diff --git a/tvp-git-helper/tgh-status-dialog.c b/tvp-git-helper/tgh-status-dialog.c index db06e1a..f52e332 100644 --- a/tvp-git-helper/tgh-status-dialog.c +++ b/tvp-git-helper/tgh-status-dialog.c @@ -94,7 +94,7 @@ tgh_status_dialog_init (TghStatusDialog *dialog) renderer = gtk_cell_renderer_toggle_new (); gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (tree_view), - -1, ("Commit"), + -1, _("Commit"), renderer, "active", COLUMN_ADDED, NULL); @@ -106,7 +106,7 @@ tgh_status_dialog_init (TghStatusDialog *dialog) renderer = gtk_cell_renderer_text_new (); gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (tree_view), - -1, ("State"), + -1, _("State"), renderer, "text", COLUMN_STAT, NULL); diff --git a/tvp-svn-helper/tsh-status-dialog.c b/tvp-svn-helper/tsh-status-dialog.c index 8d2cf10..6dc53ea 100644 --- a/tvp-svn-helper/tsh-status-dialog.c +++ b/tvp-svn-helper/tsh-status-dialog.c @@ -120,25 +120,25 @@ tsh_status_dialog_init (TshStatusDialog *dialog) renderer = gtk_cell_renderer_text_new (); gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (tree_view), - -1, ("State"), + -1, _("State"), renderer, "text", COLUMN_TEXT_STAT, NULL); renderer = gtk_cell_renderer_text_new (); gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (tree_view), - -1, ("Prop state"), + -1, _("Prop state"), renderer, "text", COLUMN_PROP_STAT, NULL); renderer = gtk_cell_renderer_text_new (); gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (tree_view), - -1, ("Repo state"), + -1, _("Repo state"), renderer, "text", COLUMN_REPO_TEXT_STAT, NULL); renderer = gtk_cell_renderer_text_new (); gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (tree_view), - -1, ("Repo prop state"), + -1, _("Repo prop state"), renderer, "text", COLUMN_REPO_PROP_STAT, NULL); -- 1.9.1