mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
String i18n improvements.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12258 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
57afed226c
commit
899ab41470
@ -94,10 +94,10 @@ static GtkActionEntry gnc_plugin_actions [] = {
|
||||
N_("Create a new file"),
|
||||
G_CALLBACK (gnc_main_window_cmd_file_new) },
|
||||
{ "FileOpenAction", GTK_STOCK_OPEN, N_("_Open..."), NULL,
|
||||
NULL,
|
||||
N_("Open an existing GnuCash file"),
|
||||
G_CALLBACK (gnc_main_window_cmd_file_open) },
|
||||
{ "FileSaveAction", GTK_STOCK_SAVE, N_("_Save"), "<control>s",
|
||||
NULL,
|
||||
N_("Save the current file"),
|
||||
G_CALLBACK (gnc_main_window_cmd_file_save) },
|
||||
{ "FileSaveAsAction", GTK_STOCK_SAVE_AS, N_("Save _As..."), "<shift><control>s",
|
||||
NULL,
|
||||
@ -361,7 +361,7 @@ gnc_main_window_cmd_file_qsf_import (GtkAction *action, GncMainWindowActionData
|
||||
g_return_if_fail (data != NULL);
|
||||
|
||||
gnc_window_set_progressbar_window(GNC_WINDOW(data->window));
|
||||
file_select = gtk_file_selection_new("Select the QSF file to import into GnuCash");
|
||||
file_select = gtk_file_selection_new(_("Select the QSF file to import into GnuCash"));
|
||||
g_signal_connect (G_OBJECT (GTK_FILE_SELECTION (file_select)->ok_button),
|
||||
"clicked", G_CALLBACK (qsf_file_select_ok), (gpointer) file_select);
|
||||
g_signal_connect_swapped (G_OBJECT (GTK_FILE_SELECTION (file_select)->cancel_button),
|
||||
|
@ -107,7 +107,7 @@ gnc_style_sheet_dialog_create(StyleSheetDialog * ss,
|
||||
GtkWidget * window;
|
||||
gchar * title;
|
||||
|
||||
title = g_strdup_printf("HTML Style Sheet Properties: %s", name);
|
||||
title = g_strdup_printf(_("HTML Style Sheet Properties: %s"), name);
|
||||
ssinfo->odialog = gnc_options_dialog_new(title);
|
||||
ssinfo->odb = gnc_option_db_new(scm_options);
|
||||
ssinfo->stylesheet = sheet_info;
|
||||
|
Loading…
Reference in New Issue
Block a user