I18n fix: Mark forgotten strings for translation.

These are allowed regardless of string freeze because the strings are already
in the program and are untranslated so far. So marking them for translation
will only improve the situation but not introduce new strings into the
program in general.

Spotted by Mark Haanen.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19068 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Christian Stimming
2010-04-23 21:19:28 +00:00
parent b3524ebb39
commit 30194b9d42

View File

@@ -189,12 +189,12 @@ static guint gnc_plugin_page_invoice_n_actions = G_N_ELEMENTS (gnc_plugin_page_i
static GtkRadioActionEntry radio_entries [] =
{
{ "SortStandardAction", NULL, N_("_Standard"), NULL, "Keep normal invoice order", BY_STANDARD },
{ "SortDateAction", NULL, N_("_Date"), NULL, "Sort by date", BY_DATE },
{ "SortDateEntryAction", NULL, N_("Date of _Entry"), NULL, "Sort by the date of entry", BY_DATE_ENTERED },
{ "SortQuantityAction", NULL, N_("_Quantity"), NULL, "Sort by quantity", BY_QTY },
{ "SortPriceAction", NULL, N_("_Price"), NULL, "Sort by price", BY_PRICE },
{ "SortDescriptionAction", NULL, N_("Descri_ption"), NULL, "Sort by description", BY_DESC },
{ "SortStandardAction", NULL, N_("_Standard"), NULL, N_("Keep normal invoice order"), BY_STANDARD },
{ "SortDateAction", NULL, N_("_Date"), NULL, N_("Sort by date"), BY_DATE },
{ "SortDateEntryAction", NULL, N_("Date of _Entry"), NULL, N_("Sort by the date of entry"), BY_DATE_ENTERED },
{ "SortQuantityAction", NULL, N_("_Quantity"), NULL, N_("Sort by quantity"), BY_QTY },
{ "SortPriceAction", NULL, N_("_Price"), NULL, N_("Sort by price"), BY_PRICE },
{ "SortDescriptionAction", NULL, N_("Descri_ption"), NULL, N_("Sort by description"), BY_DESC },
};
static guint n_radio_entries = G_N_ELEMENTS (radio_entries);