mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-22 08:57:17 -06:00
Mark budget strings for i18n
Remove obsolete budget glade dialogs git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12208 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
9a29f2db78
commit
e58ec5bcf9
2
AUTHORS
2
AUTHORS
@ -229,7 +229,7 @@ Robby Stephenson <robby.stephenson@usa.net> register & file history patches
|
||||
Michael T. Garrison Stuber <garrisonstuber@bellsouth.net> report patch
|
||||
Bartek Szady <bszx@bszxdomain.edu.eu.org> engine and build system patches
|
||||
Herbert Thoma <tma@iis.fhg.de> gnome register & euro support patches
|
||||
Tor Harald Thorland <linux@strigen.com> Norwegian translation
|
||||
Tor Harald Thorland <linux@strigen.com> testing, Norwegian translation
|
||||
James A. Treacy <treacy@debian.org> doc patch
|
||||
Arnold Troeger <troeger@samart.co.th> Mandrake packager
|
||||
Diane Trout <detrout@earthlink.net> scheme QIF import patch
|
||||
|
@ -25,7 +25,7 @@
|
||||
#include "config.h"
|
||||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include <glib/gi18n.h>
|
||||
#include "gnc-tree-model-budget.h"
|
||||
#include "gnc-budget.h"
|
||||
#include "gnc-ui-util.h"
|
||||
@ -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 (
|
||||
"Name", renderer, "text", BUDGET_NAME_COLUMN, NULL);
|
||||
N_("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 (
|
||||
"Description", renderer, "text", BUDGET_DESCRIPTION_COLUMN, NULL);
|
||||
N_("Description"), renderer, "text", BUDGET_DESCRIPTION_COLUMN, NULL);
|
||||
gtk_tree_view_append_column (tv, column);
|
||||
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -216,7 +216,7 @@ gnc_budget_gui_select_budget(QofBook *book)
|
||||
gboolean ok;
|
||||
|
||||
dlg = GTK_DIALOG(gtk_dialog_new_with_buttons(
|
||||
"Select a Budget", NULL, GTK_DIALOG_MODAL,
|
||||
N_("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