mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
*really* mark strings for runtime translation, not just translatable.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12223 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
6d6f37af00
commit
d48e61963e
@ -93,13 +93,13 @@ gnc_tree_view_budget_set_model(GtkTreeView *tv, GtkTreeModel *tm)
|
||||
/* column for name */
|
||||
renderer = gtk_cell_renderer_text_new ();
|
||||
column = gtk_tree_view_column_new_with_attributes (
|
||||
N_("Name"), renderer, "text", BUDGET_NAME_COLUMN, NULL);
|
||||
_("Name"), renderer, "text", BUDGET_NAME_COLUMN, NULL);
|
||||
gtk_tree_view_append_column (tv, column);
|
||||
|
||||
/* column for description */
|
||||
renderer = gtk_cell_renderer_text_new ();
|
||||
column = gtk_tree_view_column_new_with_attributes (
|
||||
N_("Description"), renderer, "text", BUDGET_DESCRIPTION_COLUMN, NULL);
|
||||
_("Description"), renderer, "text", BUDGET_DESCRIPTION_COLUMN, NULL);
|
||||
gtk_tree_view_append_column (tv, column);
|
||||
|
||||
}
|
||||
|
@ -216,7 +216,7 @@ gnc_budget_gui_select_budget(QofBook *book)
|
||||
gboolean ok;
|
||||
|
||||
dlg = GTK_DIALOG(gtk_dialog_new_with_buttons(
|
||||
N_("Select a Budget"), NULL, GTK_DIALOG_MODAL,
|
||||
_("Select a Budget"), NULL, GTK_DIALOG_MODAL,
|
||||
GTK_STOCK_OK, GTK_RESPONSE_OK,
|
||||
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, NULL));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user