diff --git a/make-gnucash-potfiles.in b/make-gnucash-potfiles.in index 6565baa7bc..129b8319f4 100644 --- a/make-gnucash-potfiles.in +++ b/make-gnucash-potfiles.in @@ -11,7 +11,7 @@ use strict; use File::Basename; my @cvsignores = `find src -name '.cvsignore'`; -my @cfiles = `find src -name '*.c'`; +my @possible_files = `find src -name '*.c' -o -name '*.glade'`; chomp(my $cwd = `pwd`); @@ -41,9 +41,9 @@ print "# List of files which containing translatable strings.\n"; print "# This file was generated by ../make-gnucash-potfiles.in.\n"; print "\n"; -foreach my $cfile (@cfiles) { - chomp($cfile); - my ($name, $path) = fileparse($cfile); +foreach my $file (@possible_files) { + chomp($file); + my ($name, $path) = fileparse($file); $path =~ s/^\.\///; next if $ignores{$path . $name}; diff --git a/po/POTFILES.in b/po/POTFILES.in index 8eac4ee73e..47f216730e 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -98,6 +98,7 @@ src/gnome-utils/gnc-date-delta.c src/gnome-utils/gnc-frequency.c src/gnome-utils/gtkselect.c src/gnome-utils/print-session.c +src/gnome-utils/gnc-mdi-utils.c src/network-utils/gnc-gpg.c src/network-utils/gnc-http.c src/network-utils/gncmod-network-utils.c @@ -169,22 +170,22 @@ src/gnc-module/test/mod-baz/gnc-mod-baz.c src/gnc-module/test/mod-foo/foo.c src/gnc-module/test/mod-foo/gnc-mod-foo.c src/gnc-module/gnc-module.c -src/gnome/glade/account_strings.c -src/gnome/glade/commodity_strings.c -src/gnome/glade/fincalc_strings.c -src/gnome/glade/find_strings.c -src/gnome/glade/help_strings.c -src/gnome/glade/newuser_strings.c -src/gnome/glade/price_strings.c -src/gnome/glade/print_strings.c -src/gnome/glade/progress_strings.c -src/gnome/glade/register_strings.c -src/gnome/glade/report_strings.c -src/gnome/glade/sched-xact_strings.c -src/gnome/glade/stocks_strings.c -src/gnome/glade/tax_strings.c -src/gnome/glade/transfer_strings.c -src/gnome/glade/userpass_strings.c +src/gnome/glade/account.glade +src/gnome/glade/commodity.glade +src/gnome/glade/fincalc.glade +src/gnome/glade/find.glade +src/gnome/glade/help.glade +src/gnome/glade/newuser.glade +src/gnome/glade/print.glade +src/gnome/glade/price.glade +src/gnome/glade/progress.glade +src/gnome/glade/register.glade +src/gnome/glade/report.glade +src/gnome/glade/stocks.glade +src/gnome/glade/sched-xact.glade +src/gnome/glade/tax.glade +src/gnome/glade/transfer.glade +src/gnome/glade/userpass.glade src/gnome/dialog-account.c src/gnome/dialog-column-view.c src/gnome/dialog-commodities.c @@ -229,7 +230,7 @@ src/guile/guile-util.c src/import-export/qif-import/dialog-account-picker.c src/import-export/qif-import/druid-qif-import.c src/import-export/qif-import/gncmod-qif-import.c -src/import-export/qif-import/qif_strings.c +src/import-export/qif-import/qif.glade src/import-export/qif-io-core/gncmod-qifiocore.c src/optional/swig/gnucash-swig-defines.c src/optional/swig/helperfuncs.c @@ -244,6 +245,7 @@ src/register/ledger-core/split-register-model-save.c src/register/ledger-core/split-register-model.c src/register/ledger-core/split-register-util.c src/register/ledger-core/split-register.c +src/register/ledger-core/test/test-link-module.c src/register/register-core/QuickFill.c src/register/register-core/basiccell.c src/register/register-core/cell-factory.c @@ -260,6 +262,7 @@ src/register/register-core/table-control.c src/register/register-core/table-html.c src/register/register-core/table-layout.c src/register/register-core/table-model.c +src/register/register-core/test/test-link-module.c src/register/register-gnome/combocell-gnome.c src/register/register-gnome/datecell-gnome.c src/register/register-gnome/gncmod-register-gnome.c @@ -276,12 +279,11 @@ src/register/register-gnome/gnucash-style.c src/register/register-gnome/pricecell-gnome.c src/register/register-gnome/quickfillcell-gnome.c src/register/register-gnome/table-gnome.c +src/register/register-gnome/test/test-link-module.c src/report/locale-specific/us/gncmod-locale-reports-us.c src/report/report-system/test/test-link-module.c src/report/report-system/gncmod-report-system.c +src/report/report-system/gnc-report.c src/report/standard-reports/gncmod-standard-reports.c src/report/stylesheets/gncmod-stylesheets.c src/report/utility-reports/gncmod-utility-reports.c -# files added by xml-i18n-prepare -src/gnome/gnucash.desktop.in -src/gnome/gnucash.keys.in diff --git a/src/gnome/glade/Makefile.am b/src/gnome/glade/Makefile.am index 3450ccd81c..fd095cbbb9 100644 --- a/src/gnome/glade/Makefile.am +++ b/src/gnome/glade/Makefile.am @@ -17,22 +17,4 @@ glade_DATA = \ userpass.glade \ sched-xact.glade -STRING_FILES = \ - account_strings.c \ - commodity_strings.c \ - fincalc_strings.c \ - find_strings.c \ - help_strings.c \ - newuser_strings.c \ - price_strings.c \ - print_strings.c \ - progress_strings.c \ - register_strings.c \ - report_strings.c \ - stocks_strings.c \ - tax_strings.c \ - transfer_strings.c \ - userpass_strings.c \ - sched-xact_strings.c - -EXTRA_DIST = $(glade_DATA) $(STRING_FILES) +EXTRA_DIST = $(glade_DATA) diff --git a/src/gnome/glade/account.glade b/src/gnome/glade/account.glade index 8a677bd0ab..00082510b3 100644 --- a/src/gnome/glade/account.glade +++ b/src/gnome/glade/account.glade @@ -14,8 +14,6 @@ False False False - True - account_strings.c diff --git a/src/gnome/glade/account_strings.c b/src/gnome/glade/account_strings.c deleted file mode 100644 index 2d15459917..0000000000 --- a/src/gnome/glade/account_strings.c +++ /dev/null @@ -1,67 +0,0 @@ -/* - * Translatable strings file generated by Glade. - * Add this file to your project's POTFILES.in. - * DO NOT compile it as part of your application. - */ - -gchar *s = N_("New Account"); -gchar *s = N_("Account Information"); -gchar *s = N_("Account Name:"); -gchar *s = N_("Description:"); -gchar *s = N_("Commodity:"); -gchar *s = N_("Account Code:"); -gchar *s = N_("Account Type"); -gchar *s = N_("label812"); -gchar *s = N_("Parent Account"); -gchar *s = N_("Price Quote Source"); -gchar *s = N_("Get Online Quotes"); -gchar *s = N_("The source for price quotes:"); -gchar *s = N_("Timezone for these quotes:"); -gchar *s = N_("Notes"); -gchar *s = N_("Tax Related"); -gchar *s = N_("General Information"); -gchar *s = N_("Balance Information"); -gchar *s = N_("Balance:"); -gchar *s = N_("Date:"); -gchar *s = N_("Transfer Type"); -gchar *s = N_("Use Opening Balances Equity account"); -gchar *s = N_("Select Transfer Account"); -gchar *s = N_("Transfer Account"); -gchar *s = N_("Opening Balance"); -gchar *s = N_("New Account Hierarchy Setup"); -gchar *s = N_("New Account Hierarchy Setup"); -gchar *s = N_("This druid will help you create a set of GnuCash \n" - "accounts for your assets (such as investments, \n" - "checking or savings accounts), liabilities (such \n" - "as loans) and different kinds of income and \n" - "expenses you might have. \n" - "\n" - "Click 'Cancel' if you do not wish to create any \n" - "new accounts now."); -gchar *s = N_("Choose Currency"); -gchar *s = N_("Please choose the currency to use for new accounts."); -gchar *s = N_("Choose accounts to create"); -gchar *s = N_("Select categories that correspond to the ways that you will use GnuCash. \n" - "Each category you select will cause several accounts to be created. \n" - "Select the categories that are relevant to you. You can always create \n" - "additional accounts by hand later."); -gchar *s = N_("Account Types"); -gchar *s = N_("Description"); -gchar *s = N_("Select All"); -gchar *s = N_("Clear All"); -gchar *s = N_("Detailed Description"); -gchar *s = N_("Accounts"); -gchar *s = N_("Enter opening balances"); -gchar *s = N_("If you would like an account to have an opening balance, click on the account\n" - "and enter the starting balance in the box on the right. All accounts except Equity\n" - "accounts may have an opening balance."); -gchar *s = N_("Account Name"); -gchar *s = N_("Type"); -gchar *s = N_("Opening Balance"); -gchar *s = N_("Opening Balance"); -gchar *s = N_("Finish Account Setup"); -gchar *s = N_("Press `Finish' to create your new accounts.\n" - "\n" - "Press `Back' to review your selections.\n" - "\n" - "Press `Cancel' to close this dialog without creating any new accounts."); diff --git a/src/gnome/glade/commodity.glade b/src/gnome/glade/commodity.glade index 574a5ef49c..89210edb3a 100644 --- a/src/gnome/glade/commodity.glade +++ b/src/gnome/glade/commodity.glade @@ -14,8 +14,6 @@ False False False - True - commodity_strings.c diff --git a/src/gnome/glade/commodity_strings.c b/src/gnome/glade/commodity_strings.c deleted file mode 100644 index cf11f681fe..0000000000 --- a/src/gnome/glade/commodity_strings.c +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Translatable strings file generated by Glade. - * Add this file to your project's POTFILES.in. - * DO NOT compile it as part of your application. - */ - -gchar *s = N_("Select currency/security "); -gchar *s = N_("New..."); -gchar *s = N_("Type:"); -gchar *s = N_("Currency/security:"); -gchar *s = N_("New Currency/Security"); -gchar *s = N_("Full name:"); -gchar *s = N_("Symbol/abbreviation:"); -gchar *s = N_("Type:"); -gchar *s = N_("CUSIP or other code:"); -gchar *s = N_("Fraction traded:"); -gchar *s = N_("Enter the full name of the commodity. Example: US Dollars"); -gchar *s = N_("Enter the ticker symbol or currency code for the commodity. Example: USD"); -gchar *s = N_("Enter the type of commodity. For stocks, this is often an exchange on which the stock is traded. You can choose an existing type from the list or enter a new type with the keyboard."); -gchar *s = N_("Enter a unique code used to identify the commodity. Or, you may safely leave this field blank."); -gchar *s = N_("1 /"); -gchar *s = N_("Enter the smallest fraction of the commodity which can be traded. For stocks which can only be traded in whole numbers, enter 1."); -gchar *s = N_("Import currency and stock information"); -gchar *s = N_("Import currency and stock information "); -gchar *s = N_("The file you are loading is from an older version of GnuCash. \n" - "Information about currencies, stocks, and mutual funds needs to\n" - "be updated for the new version. \n" - "\n" - "This dialog will prompt you for some additional information about \n" - "each currency, stock, and mutual fund that appear in your\n" - "accounts. After you have entered this information, you can\n" - "update your accounts for the new version of GnuCash.\n" - "\n" - "Hit \"Cancel\" now to stop loading the file. "); -gchar *s = N_("Update your accounts with the new information"); -gchar *s = N_("Click \"Finish\" to update your accounts to use the new \n" - "information you have entered.\n" - "\n" - "Click \"Cancel\" to cancel the file-loading process. \n" - "\n" - "Click \"Back\" to review your currency selections."); -gchar *s = N_("Commodities"); -gchar *s = N_("Commodities"); -gchar *s = N_("Show National Currencies"); -gchar *s = N_("Type"); -gchar *s = N_("Symbol"); -gchar *s = N_("Name"); -gchar *s = N_("Code"); -gchar *s = N_("Fraction"); -gchar *s = N_("Add a new price."); -gchar *s = N_("Add"); -gchar *s = N_("Remove the current price"); -gchar *s = N_("Remove"); -gchar *s = N_("Edit"); diff --git a/src/gnome/glade/fincalc.glade b/src/gnome/glade/fincalc.glade index a0cdef1958..93007454e7 100644 --- a/src/gnome/glade/fincalc.glade +++ b/src/gnome/glade/fincalc.glade @@ -14,8 +14,6 @@ False False False - True - fincalc_strings.c @@ -152,6 +150,7 @@ Clear the entry True + GTK_RELIEF_NORMAL 0 False @@ -165,6 +164,7 @@ payment_periods_calc_button True + GTK_RELIEF_NORMAL 0 False @@ -236,6 +236,7 @@ Clear the entry True + GTK_RELIEF_NORMAL 0 False @@ -249,6 +250,7 @@ interest_rate_calc_button True + GTK_RELIEF_NORMAL 0 False @@ -320,6 +322,7 @@ Clear the entry True + GTK_RELIEF_NORMAL 0 False @@ -333,6 +336,7 @@ present_value_calc_button True + GTK_RELIEF_NORMAL 0 False @@ -404,6 +408,7 @@ Clear the entry True + GTK_RELIEF_NORMAL 0 False @@ -417,6 +422,7 @@ periodic_payment_calc_button True + GTK_RELIEF_NORMAL 0 False @@ -488,6 +494,7 @@ Clear the entry True + GTK_RELIEF_NORMAL 0 False @@ -501,6 +508,7 @@ future_value_calc_button True + GTK_RELIEF_NORMAL 0 False diff --git a/src/gnome/glade/fincalc_strings.c b/src/gnome/glade/fincalc_strings.c deleted file mode 100644 index 7d76e639dc..0000000000 --- a/src/gnome/glade/fincalc_strings.c +++ /dev/null @@ -1,89 +0,0 @@ -/* - * Translatable strings file generated by Glade. - * Add this file to your project's POTFILES.in. - * DO NOT compile it as part of your application. - */ - -gchar *s = N_("Financial Calculator"); -gchar *s = N_("Schedule"); -gchar *s = N_("Payment Periods"); -gchar *s = N_("Clear the entry"); -gchar *s = N_("Clear"); -gchar *s = N_("Calculate"); -gchar *s = N_("Interest Rate"); -gchar *s = N_("Clear the entry"); -gchar *s = N_("Clear"); -gchar *s = N_("Calculate"); -gchar *s = N_("Present Value"); -gchar *s = N_("Clear the entry"); -gchar *s = N_("Clear"); -gchar *s = N_("Calculate"); -gchar *s = N_("Periodic Payment"); -gchar *s = N_("Clear the entry"); -gchar *s = N_("Clear"); -gchar *s = N_("Calculate"); -gchar *s = N_("Future Value"); -gchar *s = N_("Clear the entry"); -gchar *s = N_("Clear"); -gchar *s = N_("Calculate"); -gchar *s = N_("Compounding:"); -gchar *s = N_("Payments:"); -gchar *s = N_("Annual\n" - "Semi-annual\n" - "Tri-annual\n" - "Quarterly\n" - "Bi-monthly\n" - "Monthly\n" - "Semi-monthly\n" - "Bi-weekly\n" - "Weekly\n" - "Daily (360)\n" - "Daily (365)\n" - ""); -gchar *s = N_("Annual\n" - "Semi-annual\n" - "Tri-annual\n" - "Quarterly\n" - "Bi-monthly\n" - "Monthly\n" - "Semi-monthly\n" - "Bi-weekly\n" - "Weekly\n" - "Daily (360)\n" - "Daily (365)\n" - ""); -gchar *s = N_("End of Period Payments"); -gchar *s = N_("Beginning of Period Payments"); -gchar *s = N_("Discrete Compounding"); -gchar *s = N_("Continuous Compounding"); -gchar *s = N_("Payment Total:"); -gchar *s = N_("total"); -gchar *s = N_("Account Information"); -gchar *s = N_("Effective Date:"); -gchar *s = N_("Initial Payment:"); -gchar *s = N_("Compounding:"); -gchar *s = N_("Payments:"); -gchar *s = N_("Annual\n" - "Semi-annual\n" - "Tri-annual\n" - "Quarterly\n" - "Bi-monthly\n" - "Monthly\n" - "Semi-monthly\n" - "Bi-weekly\n" - "Weekly\n" - "Daily (360)\n" - "Daily (365)\n" - ""); -gchar *s = N_("Annual\n" - "Semi-annual\n" - "Tri-annual\n" - "Quarterly\n" - "Bi-monthly\n" - "Monthly\n" - "Semi-monthly\n" - "Bi-weekly\n" - "Weekly\n" - "Daily (360)\n" - "Daily (365)\n" - ""); diff --git a/src/gnome/glade/find.glade b/src/gnome/glade/find.glade index 5495913bd2..e040341dcf 100644 --- a/src/gnome/glade/find.glade +++ b/src/gnome/glade/find.glade @@ -14,8 +14,6 @@ False False False - True - find_strings.c diff --git a/src/gnome/glade/find_strings.c b/src/gnome/glade/find_strings.c deleted file mode 100644 index 27f863648b..0000000000 --- a/src/gnome/glade/find_strings.c +++ /dev/null @@ -1,89 +0,0 @@ -/* - * Translatable strings file generated by Glade. - * Add this file to your project's POTFILES.in. - * DO NOT compile it as part of your application. - */ - -gchar *s = N_("Find Transactions"); -gchar *s = N_("Find"); -gchar *s = N_("Match Accounts"); -gchar *s = N_("Find transactions affecting"); -gchar *s = N_("All\n" - "Any\n" - "None\n" - ""); -gchar *s = N_("selected accounts:"); -gchar *s = N_("Account"); -gchar *s = N_("Match Date"); -gchar *s = N_("Find transactions occurring in the date range:"); -gchar *s = N_("Starting "); -gchar *s = N_("Ending "); -gchar *s = N_("Date"); -gchar *s = N_("Match Description"); -gchar *s = N_("Find transactions whose Description contains:"); -gchar *s = N_("Case sensitive"); -gchar *s = N_("Regular expression"); -gchar *s = N_("Description"); -gchar *s = N_("Match Description"); -gchar *s = N_("Find transactions whose Number contains:"); -gchar *s = N_("Case sensitive"); -gchar *s = N_("Regular expression"); -gchar *s = N_("Number"); -gchar *s = N_("Match Amount"); -gchar *s = N_("Find "); -gchar *s = N_("Credit or Debit\n" - "Credit\n" - "Debit\n" - ""); -gchar *s = N_("splits having amounts of:"); -gchar *s = N_("At least\n" - "At most \n" - "Exactly\n" - ""); -gchar *s = N_("Amount"); -gchar *s = N_("Match Memo"); -gchar *s = N_("Find splits whose Memo contains:"); -gchar *s = N_("Case sensitive"); -gchar *s = N_("Regular expression"); -gchar *s = N_("Memo"); -gchar *s = N_("Match number of shares"); -gchar *s = N_("Find securities transactions of:"); -gchar *s = N_("At least\n" - "At most\n" - "Exactly\n" - ""); -gchar *s = N_("shares"); -gchar *s = N_("Shares"); -gchar *s = N_("Match share price"); -gchar *s = N_("Find securities transactions with share price of:"); -gchar *s = N_("At least\n" - "At most\n" - "Exactly\n" - ""); -gchar *s = N_("Price"); -gchar *s = N_("Match Action"); -gchar *s = N_("Find transactions whose Action contains:"); -gchar *s = N_("Case sensitive"); -gchar *s = N_("Regular expression"); -gchar *s = N_("Action"); -gchar *s = N_("Match Cleared state"); -gchar *s = N_("Find transactions whose Cleared status is:"); -gchar *s = N_("Not cleared (n)"); -gchar *s = N_("Cleared (c)"); -gchar *s = N_("Reconciled (y)"); -gchar *s = N_("Cleared"); -gchar *s = N_("Match Balance state"); -gchar *s = N_("Find transactions whose Balance status is:"); -gchar *s = N_("Balanced"); -gchar *s = N_("Not Balanced"); -gchar *s = N_("Balance"); -gchar *s = N_("Match transaction tags (CURRENTLY INOPERABLE)"); -gchar *s = N_("Find transactions with the tag:"); -gchar *s = N_("Case sensitive"); -gchar *s = N_("Regular expression"); -gchar *s = N_("Tags"); -gchar *s = N_("Type of search"); -gchar *s = N_("New search"); -gchar *s = N_("Refine current search"); -gchar *s = N_("Add results to current search"); -gchar *s = N_("Delete results from current search"); diff --git a/src/gnome/glade/help_strings.c b/src/gnome/glade/help_strings.c deleted file mode 100644 index a67efd7fc6..0000000000 --- a/src/gnome/glade/help_strings.c +++ /dev/null @@ -1,16 +0,0 @@ -/* - * Translatable strings file generated by Glade. - * Add this file to your project's POTFILES.in. - * DO NOT compile it as part of your application. - */ - -gchar *s = N_("GnuCash Help"); -gchar *s = N_("Help Topics"); -gchar *s = N_("Topics"); -gchar *s = N_("Search GnuCash Help"); -gchar *s = N_("Search Term:"); -gchar *s = N_("Type a single term into the box and hit 'search'. At the moment, this search engine does not support complex searches, just single words."); -gchar *s = N_("Search"); -gchar *s = N_("Help"); -gchar *s = N_("Search results"); -gchar *s = N_("Search"); diff --git a/src/gnome/glade/newuser.glade b/src/gnome/glade/newuser.glade index a50e367e31..d8c48d7776 100644 --- a/src/gnome/glade/newuser.glade +++ b/src/gnome/glade/newuser.glade @@ -14,8 +14,6 @@ False False False - True - newuser_strings.c diff --git a/src/gnome/glade/newuser_strings.c b/src/gnome/glade/newuser_strings.c deleted file mode 100644 index 20c16be58e..0000000000 --- a/src/gnome/glade/newuser_strings.c +++ /dev/null @@ -1,13 +0,0 @@ -/* - * Translatable strings file generated by Glade. - * Add this file to your project's POTFILES.in. - * DO NOT compile it as part of your application. - */ - -gchar *s = N_("Welcome to GnuCash 1.6!"); -gchar *s = N_("Create a new set of accounts"); -gchar *s = N_("Import my QIF files"); -gchar *s = N_("Open the new user tutorial"); -gchar *s = N_("Canceling"); -gchar *s = N_("Uncheck if you do not want this dialog to run if you start GnuCash up again. "); -gchar *s = N_("Run dialog for new user again?"); diff --git a/src/gnome/glade/price_strings.c b/src/gnome/glade/price_strings.c deleted file mode 100644 index d96d35aced..0000000000 --- a/src/gnome/glade/price_strings.c +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Translatable strings file generated by Glade. - * Add this file to your project's POTFILES.in. - * DO NOT compile it as part of your application. - */ - -gchar *s = N_("Price Editor"); -gchar *s = N_("Prices"); -gchar *s = N_("Commodity"); -gchar *s = N_("Currency"); -gchar *s = N_("Date"); -gchar *s = N_("Source"); -gchar *s = N_("Type"); -gchar *s = N_("Price"); -gchar *s = N_("Sort by Commodity"); -gchar *s = N_("Sort by Date"); -gchar *s = N_("Add a new price."); -gchar *s = N_("Add"); -gchar *s = N_("Remove the current price"); -gchar *s = N_("Remove"); -gchar *s = N_("Remove prices older than a user-entered date"); -gchar *s = N_("Remove Old..."); -gchar *s = N_("Edit the current price."); -gchar *s = N_("Edit"); -gchar *s = N_("Get new online quotes for stock accounts."); -gchar *s = N_("Get Quotes"); -gchar *s = N_("Price Editor"); -gchar *s = N_("Price Information"); -gchar *s = N_("Commodity:"); -gchar *s = N_("Currency:"); -gchar *s = N_("Date:"); -gchar *s = N_("Source:"); -gchar *s = N_("Type:"); -gchar *s = N_("Price:"); -gchar *s = N_("Bid\n" - "Ask\n" - "Last\n" - "Net Asset Value\n" - "Unknown\n" - ""); diff --git a/src/gnome/glade/print.glade b/src/gnome/glade/print.glade index 4c3eb8351d..58015d405e 100644 --- a/src/gnome/glade/print.glade +++ b/src/gnome/glade/print.glade @@ -14,8 +14,6 @@ False False False - True - print_strings.c diff --git a/src/gnome/glade/print_strings.c b/src/gnome/glade/print_strings.c deleted file mode 100644 index 34ae67a24b..0000000000 --- a/src/gnome/glade/print_strings.c +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Translatable strings file generated by Glade. - * Add this file to your project's POTFILES.in. - * DO NOT compile it as part of your application. - */ - -gchar *s = N_("Print Check"); -gchar *s = N_("Check format:"); -gchar *s = N_("Check position:"); -gchar *s = N_("Date format:"); -gchar *s = N_("Quicken/QuickBooks (tm) US-Letter\n" - "Custom\n" - ""); -gchar *s = N_("Top\n" - "Middle\n" - "Bottom\n" - "Custom\n" - ""); -gchar *s = N_("December 31, 2000\n" - "31 December, 2000\n" - "Dec 31, 2000\n" - "31 Dec, 2000\n" - "12/31/2000\n" - "12/31/00\n" - "31/12/2000\n" - "31/12/00\n" - "Custom\n" - ""); -gchar *s = N_("Options"); -gchar *s = N_("Custom check format"); -gchar *s = N_("Payee:"); -gchar *s = N_("Date:"); -gchar *s = N_("Amount (words):"); -gchar *s = N_("Amount (numbers):"); -gchar *s = N_("Memo:"); -gchar *s = N_("Check position:"); -gchar *s = N_("Date format:"); -gchar *s = N_("Units:"); -gchar *s = N_("x"); -gchar *s = N_("Inches\n" - "Centimeters\n" - "Millimeters\n" - "Points\n" - ""); -gchar *s = N_("y"); -gchar *s = N_(" "); -gchar *s = N_(" "); -gchar *s = N_("Custom format"); diff --git a/src/gnome/glade/progress.glade b/src/gnome/glade/progress.glade index d70457eb13..cb17a5de87 100644 --- a/src/gnome/glade/progress.glade +++ b/src/gnome/glade/progress.glade @@ -14,8 +14,6 @@ False False False - True - progress_strings.c @@ -95,6 +93,7 @@ True True GNOME_STOCK_BUTTON_OK + GTK_RELIEF_NORMAL @@ -104,6 +103,7 @@ True True GNOME_STOCK_BUTTON_CANCEL + GTK_RELIEF_NORMAL diff --git a/src/gnome/glade/progress_strings.c b/src/gnome/glade/progress_strings.c deleted file mode 100644 index d6b8b388ba..0000000000 --- a/src/gnome/glade/progress_strings.c +++ /dev/null @@ -1,9 +0,0 @@ -/* - * Translatable strings file generated by Glade. - * Add this file to your project's POTFILES.in. - * DO NOT compile it as part of your application. - */ - -gchar *s = N_("Working..."); -gchar *s = N_("Heading"); -gchar *s = N_("%P %%"); diff --git a/src/gnome/glade/register.glade b/src/gnome/glade/register.glade index a2f2a1d4a0..a742608705 100644 --- a/src/gnome/glade/register.glade +++ b/src/gnome/glade/register.glade @@ -14,8 +14,6 @@ False False False - True - register_strings.c diff --git a/src/gnome/glade/register_strings.c b/src/gnome/glade/register_strings.c deleted file mode 100644 index b2af11dd5b..0000000000 --- a/src/gnome/glade/register_strings.c +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Translatable strings file generated by Glade. - * Add this file to your project's POTFILES.in. - * DO NOT compile it as part of your application. - */ - -gchar *s = N_("Duplicate Transaction"); -gchar *s = N_("Transaction Information"); -gchar *s = N_("Date:"); -gchar *s = N_("Num:"); diff --git a/src/gnome/glade/report.glade b/src/gnome/glade/report.glade index 6df9c5935f..f8b0fec45a 100644 --- a/src/gnome/glade/report.glade +++ b/src/gnome/glade/report.glade @@ -14,8 +14,6 @@ False False False - True - report_strings.c @@ -291,6 +289,7 @@ new_button True + GTK_RELIEF_NORMAL 0 True @@ -303,6 +302,7 @@ delete_button True + GTK_RELIEF_NORMAL 0 True @@ -427,6 +427,7 @@ Fri, 23 Mar 2001 21:37:59 GMT + GTK_RELIEF_NORMAL 0 False @@ -445,6 +446,7 @@ Fri, 23 Mar 2001 21:38:06 GMT + GTK_RELIEF_NORMAL 0 False @@ -480,6 +482,7 @@ Fri, 23 Mar 2001 21:38:13 GMT + GTK_RELIEF_NORMAL 0 False @@ -498,6 +501,7 @@ Fri, 23 Mar 2001 21:38:19 GMT + GTK_RELIEF_NORMAL 0 False @@ -533,6 +537,7 @@ Sat, 24 Mar 2001 17:51:58 GMT + GTK_RELIEF_NORMAL 0 False diff --git a/src/gnome/glade/report_strings.c b/src/gnome/glade/report_strings.c deleted file mode 100644 index 2ce8c0eed4..0000000000 --- a/src/gnome/glade/report_strings.c +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Translatable strings file generated by Glade. - * Add this file to your project's POTFILES.in. - * DO NOT compile it as part of your application. - */ - -gchar *s = N_("New Style Sheet"); -gchar *s = N_("New style sheet info"); -gchar *s = N_("Name:"); -gchar *s = N_("Style sheet template:"); -gchar *s = N_("HTML Style Sheets"); -gchar *s = N_("Style sheets"); -gchar *s = N_("label847668"); -gchar *s = N_("New..."); -gchar *s = N_("Delete"); -gchar *s = N_("Style sheet options"); -gchar *s = N_("Available reports"); -gchar *s = N_(" "); -gchar *s = N_("Add >>"); -gchar *s = N_("<< Remove"); -gchar *s = N_("Move up"); -gchar *s = N_("Move down"); -gchar *s = N_("Size..."); -gchar *s = N_("Report"); -gchar *s = N_("Cols"); -gchar *s = N_("Rows"); -gchar *s = N_("Report Size"); -gchar *s = N_("Enter report row/column span"); -gchar *s = N_("Row span:"); -gchar *s = N_("Column span:"); diff --git a/src/gnome/glade/sched-xact_strings.c b/src/gnome/glade/sched-xact_strings.c deleted file mode 100644 index 6c49cab06c..0000000000 --- a/src/gnome/glade/sched-xact_strings.c +++ /dev/null @@ -1,415 +0,0 @@ -/* - * Translatable strings file generated by Glade. - * Add this file to your project's POTFILES.in. - * DO NOT compile it as part of your application. - */ - -gchar *s = N_("Edit Scheduled Transaction"); -gchar *s = N_("Name:"); -gchar *s = N_("Creation Options"); -gchar *s = N_("Conditional on splits not having variables"); -gchar *s = N_("Create Automatically"); -gchar *s = N_("Notify me when created"); -gchar *s = N_("Create "); -gchar *s = N_(" days in advance"); -gchar *s = N_("Remind me "); -gchar *s = N_(" days in advance"); -gchar *s = N_("Recurrence Frequency"); -gchar *s = N_("End"); -gchar *s = N_("No End"); -gchar *s = N_("End Date: "); -gchar *s = N_("Number of Occurrences:"); -gchar *s = N_("Template Transaction"); -gchar *s = N_("Record"); -gchar *s = N_("REPLACEME with the Register control box"); -gchar *s = N_("This window should never be realized."); -gchar *s = N_("Frequency:"); -gchar *s = N_("None"); -gchar *s = N_("Once"); -gchar *s = N_("Daily"); -gchar *s = N_("Daily [M-F]"); -gchar *s = N_("Weekly"); -gchar *s = N_("Bi-Weekly"); -gchar *s = N_("Semi-Monthly"); -gchar *s = N_("Monthly"); -gchar *s = N_("Quarterly"); -gchar *s = N_("Tri-Anually"); -gchar *s = N_("Semi-Yearly"); -gchar *s = N_("Yearly"); -gchar *s = N_("Start Date:"); -gchar *s = N_("Not scheduled"); -gchar *s = N_("None"); -gchar *s = N_("Select occurrence date above."); -gchar *s = N_("Once"); -gchar *s = N_("Every "); -gchar *s = N_("days."); -gchar *s = N_("Example"); -gchar *s = N_("Daily"); -gchar *s = N_("Every "); -gchar *s = N_("weeks."); -gchar *s = N_("Example"); -gchar *s = N_("Daily [M-F]"); -gchar *s = N_("Every"); -gchar *s = N_("weeks."); -gchar *s = N_("Days"); -gchar *s = N_("Sunday"); -gchar *s = N_("Monday"); -gchar *s = N_("Tuesday"); -gchar *s = N_("Wednesday"); -gchar *s = N_("Thursday"); -gchar *s = N_("Friday"); -gchar *s = N_("Saturday"); -gchar *s = N_("Example"); -gchar *s = N_("Weekly"); -gchar *s = N_("Select initial date, above."); -gchar *s = N_("Bi-Weekly"); -gchar *s = N_("Every"); -gchar *s = N_("months."); -gchar *s = N_("First on the:"); -gchar *s = N_("1st"); -gchar *s = N_("2nd"); -gchar *s = N_("3rd"); -gchar *s = N_("4th"); -gchar *s = N_("5th"); -gchar *s = N_("6th"); -gchar *s = N_("7th"); -gchar *s = N_("8th"); -gchar *s = N_("9th"); -gchar *s = N_("10th"); -gchar *s = N_("11th"); -gchar *s = N_("12th"); -gchar *s = N_("13th"); -gchar *s = N_("14th"); -gchar *s = N_("15th"); -gchar *s = N_("16th"); -gchar *s = N_("17th"); -gchar *s = N_("18th"); -gchar *s = N_("19th"); -gchar *s = N_("20th"); -gchar *s = N_("21st"); -gchar *s = N_("22nd"); -gchar *s = N_("23rd"); -gchar *s = N_("24th"); -gchar *s = N_("25th"); -gchar *s = N_("26th"); -gchar *s = N_("27th"); -gchar *s = N_("28th"); -gchar *s = N_("[29th]"); -gchar *s = N_("[30th]"); -gchar *s = N_("[31st]"); -gchar *s = N_("[last day]"); -gchar *s = N_("then on the:"); -gchar *s = N_("1st"); -gchar *s = N_("2nd"); -gchar *s = N_("3rd"); -gchar *s = N_("4th"); -gchar *s = N_("5th"); -gchar *s = N_("6th"); -gchar *s = N_("7th"); -gchar *s = N_("8th"); -gchar *s = N_("9th"); -gchar *s = N_("10th"); -gchar *s = N_("11th"); -gchar *s = N_("12th"); -gchar *s = N_("13th"); -gchar *s = N_("14th"); -gchar *s = N_("15th"); -gchar *s = N_("16th"); -gchar *s = N_("17th"); -gchar *s = N_("18th"); -gchar *s = N_("19th"); -gchar *s = N_("20th"); -gchar *s = N_("21st"); -gchar *s = N_("22nd"); -gchar *s = N_("23rd"); -gchar *s = N_("24th"); -gchar *s = N_("25th"); -gchar *s = N_("26th"); -gchar *s = N_("27th"); -gchar *s = N_("28th"); -gchar *s = N_("[29th]"); -gchar *s = N_("[30th]"); -gchar *s = N_("[31st]"); -gchar *s = N_("[last day]"); -gchar *s = N_("Example"); -gchar *s = N_("Semi-Monthly"); -gchar *s = N_("Every "); -gchar *s = N_("months."); -gchar *s = N_("On the"); -gchar *s = N_("1st"); -gchar *s = N_("2nd"); -gchar *s = N_("3rd"); -gchar *s = N_("4th"); -gchar *s = N_("5th"); -gchar *s = N_("6th"); -gchar *s = N_("7th"); -gchar *s = N_("8th"); -gchar *s = N_("9th"); -gchar *s = N_("10th"); -gchar *s = N_("11th"); -gchar *s = N_("12th"); -gchar *s = N_("13th"); -gchar *s = N_("14th"); -gchar *s = N_("15th"); -gchar *s = N_("16th"); -gchar *s = N_("17th"); -gchar *s = N_("18th"); -gchar *s = N_("19th"); -gchar *s = N_("20th"); -gchar *s = N_("21st"); -gchar *s = N_("22nd"); -gchar *s = N_("23rd"); -gchar *s = N_("24th"); -gchar *s = N_("25th"); -gchar *s = N_("26th"); -gchar *s = N_("27th"); -gchar *s = N_("28th"); -gchar *s = N_("[29th]"); -gchar *s = N_("[30th]"); -gchar *s = N_("[31st]"); -gchar *s = N_("[last day]"); -gchar *s = N_("Example"); -gchar *s = N_("Monthly"); -gchar *s = N_("Occuring in"); -gchar *s = N_("Jan, Apr, Jul, Oct"); -gchar *s = N_("Feb, May, Aug, Nov"); -gchar *s = N_("Mar, Jun, Sep, Dec"); -gchar *s = N_("On the"); -gchar *s = N_("1st"); -gchar *s = N_("2nd"); -gchar *s = N_("3rd"); -gchar *s = N_("4th"); -gchar *s = N_("5th"); -gchar *s = N_("6th"); -gchar *s = N_("7th"); -gchar *s = N_("8th"); -gchar *s = N_("9th"); -gchar *s = N_("10th"); -gchar *s = N_("11th"); -gchar *s = N_("12th"); -gchar *s = N_("13th"); -gchar *s = N_("14th"); -gchar *s = N_("15th"); -gchar *s = N_("16th"); -gchar *s = N_("17th"); -gchar *s = N_("18th"); -gchar *s = N_("19th"); -gchar *s = N_("20th"); -gchar *s = N_("21st"); -gchar *s = N_("22nd"); -gchar *s = N_("23rd"); -gchar *s = N_("24th"); -gchar *s = N_("25th"); -gchar *s = N_("26th"); -gchar *s = N_("27th"); -gchar *s = N_("28th"); -gchar *s = N_("[29th]"); -gchar *s = N_("[30th]"); -gchar *s = N_("[31st]"); -gchar *s = N_("[last day]"); -gchar *s = N_("Quarterly"); -gchar *s = N_("Occuring in"); -gchar *s = N_("Jan, May, Sep"); -gchar *s = N_("Feb, Apr, Oct"); -gchar *s = N_("Mar, Jun, Nov"); -gchar *s = N_("Apr, Jul, Dec"); -gchar *s = N_("On the"); -gchar *s = N_("1st"); -gchar *s = N_("2nd"); -gchar *s = N_("3rd"); -gchar *s = N_("4th"); -gchar *s = N_("5th"); -gchar *s = N_("6th"); -gchar *s = N_("7th"); -gchar *s = N_("8th"); -gchar *s = N_("9th"); -gchar *s = N_("10th"); -gchar *s = N_("11th"); -gchar *s = N_("12th"); -gchar *s = N_("13th"); -gchar *s = N_("14th"); -gchar *s = N_("15th"); -gchar *s = N_("16th"); -gchar *s = N_("17th"); -gchar *s = N_("18th"); -gchar *s = N_("19th"); -gchar *s = N_("20th"); -gchar *s = N_("21st"); -gchar *s = N_("22nd"); -gchar *s = N_("23rd"); -gchar *s = N_("24th"); -gchar *s = N_("25th"); -gchar *s = N_("26th"); -gchar *s = N_("27th"); -gchar *s = N_("28th"); -gchar *s = N_("[29th]"); -gchar *s = N_("[30th]"); -gchar *s = N_("[31st]"); -gchar *s = N_("[last day]"); -gchar *s = N_("Tri-Yearly"); -gchar *s = N_("Occuring in"); -gchar *s = N_("Jan, Jul"); -gchar *s = N_("Feb, Aug"); -gchar *s = N_("Mar, Sep"); -gchar *s = N_("Apr, Oct"); -gchar *s = N_("May, Nov"); -gchar *s = N_("Jun, Dec"); -gchar *s = N_("On the"); -gchar *s = N_("1st"); -gchar *s = N_("2nd"); -gchar *s = N_("3rd"); -gchar *s = N_("4th"); -gchar *s = N_("5th"); -gchar *s = N_("6th"); -gchar *s = N_("7th"); -gchar *s = N_("8th"); -gchar *s = N_("9th"); -gchar *s = N_("10th"); -gchar *s = N_("11th"); -gchar *s = N_("12th"); -gchar *s = N_("13th"); -gchar *s = N_("14th"); -gchar *s = N_("15th"); -gchar *s = N_("16th"); -gchar *s = N_("17th"); -gchar *s = N_("18th"); -gchar *s = N_("19th"); -gchar *s = N_("20th"); -gchar *s = N_("21st"); -gchar *s = N_("22nd"); -gchar *s = N_("23rd"); -gchar *s = N_("24th"); -gchar *s = N_("25th"); -gchar *s = N_("26th"); -gchar *s = N_("27th"); -gchar *s = N_("28th"); -gchar *s = N_("[29th]"); -gchar *s = N_("[30th]"); -gchar *s = N_("[31st]"); -gchar *s = N_("[last day]"); -gchar *s = N_("Semi-Yearly"); -gchar *s = N_("Every"); -gchar *s = N_("year(s)."); -gchar *s = N_("Month"); -gchar *s = N_("January"); -gchar *s = N_("February"); -gchar *s = N_("March"); -gchar *s = N_("April"); -gchar *s = N_("May"); -gchar *s = N_("June"); -gchar *s = N_("July"); -gchar *s = N_("August"); -gchar *s = N_("September"); -gchar *s = N_("October"); -gchar *s = N_("November"); -gchar *s = N_("December"); -gchar *s = N_("Day"); -gchar *s = N_("1st"); -gchar *s = N_("2nd"); -gchar *s = N_("3rd"); -gchar *s = N_("4th"); -gchar *s = N_("5th"); -gchar *s = N_("6th"); -gchar *s = N_("7th"); -gchar *s = N_("8th"); -gchar *s = N_("9th"); -gchar *s = N_("10th"); -gchar *s = N_("11th"); -gchar *s = N_("12th"); -gchar *s = N_("13th"); -gchar *s = N_("14th"); -gchar *s = N_("15th"); -gchar *s = N_("16th"); -gchar *s = N_("17th"); -gchar *s = N_("18th"); -gchar *s = N_("19th"); -gchar *s = N_("20th"); -gchar *s = N_("21st"); -gchar *s = N_("22nd"); -gchar *s = N_("23rd"); -gchar *s = N_("24th"); -gchar *s = N_("25th"); -gchar *s = N_("26th"); -gchar *s = N_("27th"); -gchar *s = N_("28th"); -gchar *s = N_("[29th]"); -gchar *s = N_("[30th]"); -gchar *s = N_("[31st]"); -gchar *s = N_("[last day]"); -gchar *s = N_("Yearly"); -gchar *s = N_("Scheduled Transactions"); -gchar *s = N_("Name"); -gchar *s = N_("Frequency"); -gchar *s = N_("Next"); -gchar *s = N_("New"); -gchar *s = N_("Edit"); -gchar *s = N_("Delete"); -gchar *s = N_("Since Last Run..."); -gchar *s = N_("Next run date..."); -gchar *s = N_("To-create..."); -gchar *s = N_("Name"); -gchar *s = N_("Date"); -gchar *s = N_("Variable"); -gchar *s = N_("Value"); -gchar *s = N_("What should this be?"); -gchar *s = N_("Since Last Run..."); -gchar *s = N_("Auto-created, notification requested..."); -gchar *s = N_("...Replace with GL..."); -gchar *s = N_("Name"); -gchar *s = N_("Date"); -gchar *s = N_("To-create..."); -gchar *s = N_("Name"); -gchar *s = N_("Date"); -gchar *s = N_("Ready?"); -gchar *s = N_("Variables"); -gchar *s = N_("Value"); -gchar *s = N_("Variable"); -gchar *s = N_("Edit Scheduled Transaction"); -gchar *s = N_("Name:"); -gchar *s = N_("Conditional on splits not having variables"); -gchar *s = N_("Create Automatically"); -gchar *s = N_("Notify me when created"); -gchar *s = N_("Create "); -gchar *s = N_(" days in advance"); -gchar *s = N_("Remind me "); -gchar *s = N_(" days in advance"); -gchar *s = N_("Creation Options"); -gchar *s = N_("No End"); -gchar *s = N_("End Date: "); -gchar *s = N_("Number of Occurances:"); -gchar *s = N_("End"); -gchar *s = N_("Recurrence Frequency"); -gchar *s = N_("Recurrance Frequency"); -gchar *s = N_("Record"); -gchar *s = N_("REPLACEME with the Register control box"); -gchar *s = N_("Template Transactions"); -gchar *s = N_("Reminders"); -gchar *s = N_("The listed Scheduled Transactions are to-be created soon. \n" - "Select any which you would\n" - "like to create now, and click\n" - "\"OK\" to create them."); -gchar *s = N_("Reminders..."); -gchar *s = N_("Name"); -gchar *s = N_("Next Date"); -gchar *s = N_("Days"); -gchar *s = N_("Obsolete Scheduled Transactions"); -gchar *s = N_("Select All"); -gchar *s = N_("Unselect All"); -gchar *s = N_("The following scheduled transactions have expired.\n" - "Select those you wish to delete."); -gchar *s = N_("Name"); -gchar *s = N_("Frequency"); -gchar *s = N_("Ended On"); -gchar *s = N_("Make Scheduled transaction"); -gchar *s = N_("Advanced..."); -gchar *s = N_("Name:"); -gchar *s = N_("Frequency:"); -gchar *s = N_("Daily"); -gchar *s = N_("Weekly"); -gchar *s = N_("Monthly"); -gchar *s = N_("Quarterly"); -gchar *s = N_("Anually"); -gchar *s = N_("End "); -gchar *s = N_("Never End"); -gchar *s = N_("End Date:"); -gchar *s = N_("Number Of Occurrences:"); diff --git a/src/gnome/glade/stocks.glade b/src/gnome/glade/stocks.glade index 2e6c6d6a95..5e26955b6a 100644 --- a/src/gnome/glade/stocks.glade +++ b/src/gnome/glade/stocks.glade @@ -14,8 +14,6 @@ False False False - True - stocks_strings.c diff --git a/src/gnome/glade/stocks_strings.c b/src/gnome/glade/stocks_strings.c deleted file mode 100644 index ddc76bfd1c..0000000000 --- a/src/gnome/glade/stocks_strings.c +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Translatable strings file generated by Glade. - * Add this file to your project's POTFILES.in. - * DO NOT compile it as part of your application. - */ - -gchar *s = N_("Stock Split"); -gchar *s = N_("This druid will help you record a stock split or stock merger."); -gchar *s = N_("Stock Account"); -gchar *s = N_("Select the account for which you want to record a stock split or merger."); -gchar *s = N_("Account"); -gchar *s = N_("Symbol"); -gchar *s = N_("Shares"); -gchar *s = N_("Stock Split Details"); -gchar *s = N_("Enter the date and the number of shares you gained or lost from the stock split or merger.\n" - "For stock mergers (negative splits) use a negative value for the share distribution.\n" - "You can also enter a description of the transaction, or accept the default one."); -gchar *s = N_("Date:"); -gchar *s = N_("Share Distribution:"); -gchar *s = N_("Description:"); -gchar *s = N_("Stock Split"); -gchar *s = N_("If you want to record a stock price for the split, enter it below.\n" - "You may safely leave it blank."); -gchar *s = N_("New Price:"); -gchar *s = N_("Currency:"); -gchar *s = N_("Cash In Lieu"); -gchar *s = N_("If you received a cash disbursement as a result of the stock split,\n" - "enter the details of that payment here. Otherwise, just click `Next'."); -gchar *s = N_("Cash Amount:"); -gchar *s = N_("Memo:"); -gchar *s = N_("Cash In Lieu"); -gchar *s = N_("Income Account"); -gchar *s = N_("Asset Account"); -gchar *s = N_("If you are finished creating the stock split or merger, press `Finish'.\n" - "You may also press `Back' to review your choices, or `Cancel' to\n" - "quit without making any changes."); diff --git a/src/gnome/glade/tax.glade b/src/gnome/glade/tax.glade index 2ed7163f47..c73e4bdcb0 100644 --- a/src/gnome/glade/tax.glade +++ b/src/gnome/glade/tax.glade @@ -14,8 +14,6 @@ False False False - True - tax_strings.c @@ -229,6 +227,7 @@ 3 True + GTK_RELIEF_NORMAL 0 False diff --git a/src/gnome/glade/tax_strings.c b/src/gnome/glade/tax_strings.c deleted file mode 100644 index d421ac8576..0000000000 --- a/src/gnome/glade/tax_strings.c +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Translatable strings file generated by Glade. - * Add this file to your project's POTFILES.in. - * DO NOT compile it as part of your application. - */ - -gchar *s = N_("Tax Information"); -gchar *s = N_("Accounts"); -gchar *s = N_("Income"); -gchar *s = N_("Expense"); -gchar *s = N_("Accounts Selected:"); -gchar *s = N_("0"); -gchar *s = N_("Select Subaccounts"); -gchar *s = N_("Tax Information"); -gchar *s = N_("Tax Related"); -gchar *s = N_("TXF Categories"); -gchar *s = N_("Form"); -gchar *s = N_("Description"); -gchar *s = N_("Payer Name Source"); -gchar *s = N_("Current Account"); -gchar *s = N_("Parent Account"); diff --git a/src/gnome/glade/transfer.glade b/src/gnome/glade/transfer.glade index 707037e55f..d3a6537e00 100644 --- a/src/gnome/glade/transfer.glade +++ b/src/gnome/glade/transfer.glade @@ -14,8 +14,6 @@ False False False - True - transfer_strings.c diff --git a/src/gnome/glade/transfer_strings.c b/src/gnome/glade/transfer_strings.c deleted file mode 100644 index 498a5561e6..0000000000 --- a/src/gnome/glade/transfer_strings.c +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Translatable strings file generated by Glade. - * Add this file to your project's POTFILES.in. - * DO NOT compile it as part of your application. - */ - -gchar *s = N_("Transfer Funds"); -gchar *s = N_("Transfer Information"); -gchar *s = N_("Amount:"); -gchar *s = N_("Num:"); -gchar *s = N_("Description:"); -gchar *s = N_("Memo:"); -gchar *s = N_("Date:"); -gchar *s = N_("Transfer From"); -gchar *s = N_("Currency:"); -gchar *s = N_(" "); -gchar *s = N_("Show Income/Expense"); -gchar *s = N_("Transfer To"); -gchar *s = N_("Currency:"); -gchar *s = N_(" "); -gchar *s = N_("Show Income/Expense"); -gchar *s = N_("Currency Transfer"); -gchar *s = N_("Exchange Rate:"); -gchar *s = N_("To Amount:"); diff --git a/src/gnome/glade/userpass.glade b/src/gnome/glade/userpass.glade index 3ca0deae06..b44a12fb7c 100644 --- a/src/gnome/glade/userpass.glade +++ b/src/gnome/glade/userpass.glade @@ -14,8 +14,6 @@ False False False - True - userpass_strings.c diff --git a/src/gnome/glade/userpass_strings.c b/src/gnome/glade/userpass_strings.c deleted file mode 100644 index e90efc4653..0000000000 --- a/src/gnome/glade/userpass_strings.c +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Translatable strings file generated by Glade. - * Add this file to your project's POTFILES.in. - * DO NOT compile it as part of your application. - */ - -gchar *s = N_("Username and Password"); -gchar *s = N_("Enter your username and password"); -gchar *s = N_("Username:"); -gchar *s = N_("Password:"); diff --git a/src/import-export/qif-import/Makefile.am b/src/import-export/qif-import/Makefile.am index 2f8f05f0ba..f7c2e9a048 100644 --- a/src/import-export/qif-import/Makefile.am +++ b/src/import-export/qif-import/Makefile.am @@ -37,8 +37,6 @@ gncscm_DATA = \ gladedir = ${GNC_GLADE_DIR} glade_DATA = qif.glade -STRING_FILES = qif_strings.c - CFLAGS = @CFLAGS@ ${G_WRAP_COMPILE_ARGS} INCLUDES = \ @@ -57,7 +55,6 @@ EXTRA_DIST = \ .cvsignore \ ${gncscm_DATA} \ ${glade_DATA} \ - ${STRING_FILES} \ file-format.txt guile-strings.c: ${gncscm_DATA} diff --git a/src/import-export/qif-import/qif.glade b/src/import-export/qif-import/qif.glade index aa48f4b252..ce25c2e596 100644 --- a/src/import-export/qif-import/qif.glade +++ b/src/import-export/qif-import/qif.glade @@ -14,8 +14,6 @@ False False False - True - qif_strings.c diff --git a/src/import-export/qif-import/qif_strings.c b/src/import-export/qif-import/qif_strings.c deleted file mode 100644 index d6f4074ad0..0000000000 --- a/src/import-export/qif-import/qif_strings.c +++ /dev/null @@ -1,176 +0,0 @@ -/* - * Translatable strings file generated by Glade. - * Add this file to your project's POTFILES.in. - * DO NOT compile it as part of your application. - */ - -gchar *s = N_("Select Account"); -gchar *s = N_("Select or add a GnuCash account"); -gchar *s = N_("Account"); -gchar *s = N_("New?"); -gchar *s = N_("New Account (child of selected) ..."); -gchar *s = N_("QIF Import"); -gchar *s = N_("Import QIF files"); -gchar *s = N_("GnuCash can import financial data from QIF (Quicken \n" - "Interchange Format) files written by Quicken/QuickBooks,\n" - "MS Money, Moneydance, and many other programs. \n" - "\n" - "The import process has several steps. Your GnuCash\n" - "accounts will not be changed until you click \"Finish\"\n" - "at the end of the process. \n" - "\n" - "Click \"Next\" to start loading your QIF data, or \"Cancel\"\n" - "to abort the process. "); -gchar *s = N_("Select a QIF file to load"); -gchar *s = N_("Please select a file to load. When you click \"Next\", the file will be loaded\n" - "and analyzed. You may need to answer some questions about the account(s)\n" - "in the file.\n" - "\n" - "You will have the opportunity to load as many files as you wish, so don't \n" - "worry if your data is in multiple files. \n" - ""); -gchar *s = N_("QIF Filename:"); -gchar *s = N_("Select..."); -gchar *s = N_("Set a date format for this QIF file"); -gchar *s = N_("The QIF file format does not specify which order the day, month, and \n" - "year components of a date are printed. In most cases, it is possible \n" - "to automatically determine which format is in use in a particular file.\n" - "However, in the file you have just imported there exist more than one\n" - "possible format that fits the data. \n" - "\n" - "Please select a date format for the file. QIF files created by European\n" - "software are likely to be in \"d-m-y\" or day-month-year format, where\n" - "US QIF files are likely to be \"m-d-y\" or month-year-day. \n" - ""); -gchar *s = N_("Click \"Back\" to cancel the loading of this file and choose another."); -gchar *s = N_("Set the default QIF account name"); -gchar *s = N_("The QIF file that you just loaded appears to contain transactions for just \n" - "one account, but the file does not specify a name for that account. \n" - "\n" - "Please enter a name for the account. If the file was exported from another\n" - "accounting program, you should use the same account name that was used \n" - "in that program.\n" - ""); -gchar *s = N_("Account name:"); -gchar *s = N_("Click \"Back\" to cancel the loading of this file and choose another."); -gchar *s = N_("QIF files you have loaded"); -gchar *s = N_("QIF Files"); -gchar *s = N_("label827"); -gchar *s = N_("Click \"Load another file\" if you have more data to import at this time.\n" - "Do this if you have saved your accounts to separate QIF files.\n" - "\n" - "Click \"Next\" to finish loading files and move to the next step \n" - "of the QIF import process. "); -gchar *s = N_("Load another file"); -gchar *s = N_("Unload selected file"); -gchar *s = N_("Accounts and stock holdings"); -gchar *s = N_("On the next page, the accounts in your QIF files and any stocks or mutual funds\n" - "you own will be matched with GnuCash accounts. If a GnuCash account already\n" - "exists with the same name, or a similar name and compatible type, that account\n" - "will be used as a match; otherwise, GnuCash will create a new account with the\n" - "same name and type as the QIF account. If you do not like the suggested\n" - "GnuCash account, click to change it.\n" - "\n" - "Note that GnuCash will be creating many accounts that did not exist on your\n" - "other personal finance program, including a separate account for each stock\n" - "you own, separate accounts for the brokerage commissions, special \"Equity\"\n" - "accounts (subaccounts of Retained Earnings, by default) which are the source\n" - "of your opening balances, etc. All of these accounts will appear on the next \n" - "page so you can change them if you want to, but it is safe to leave them alone.\n" - ""); -gchar *s = N_("Match QIF accounts with GnuCash accounts"); -gchar *s = N_("QIF account name"); -gchar *s = N_("GnuCash account name"); -gchar *s = N_("New?"); -gchar *s = N_("Click \"Next\" to check matchings for QIF categories. "); -gchar *s = N_("Income and Expense categories"); -gchar *s = N_("GnuCash uses separate Income and Expense accounts rather than categories\n" - "to classify your transactions. Each of the categories in your QIF file will be \n" - "converted to a GnuCash account. \n" - "\n" - "On the next page, you will have an opportunity to look at the suggested matches\n" - "between QIF categories and GnuCash accounts. You may change matches \n" - "that you do not like by clicking on the line containing the category name.\n" - "\n" - "If you change your mind later, you can reorganize the account structure safely\n" - "within GnuCash."); -gchar *s = N_("Match QIF categories with GnuCash accounts"); -gchar *s = N_("QIF category name"); -gchar *s = N_("GnuCash account name"); -gchar *s = N_("New?"); -gchar *s = N_("Click \"Next\" to enter information about the currency used in your QIF files."); -gchar *s = N_("Payees and memos"); -gchar *s = N_("QIF files downloaded from banks and other financial institutions may not have\n" - "information about Accounts and Categories which would allow them to be\n" - "correctly assigned to GnuCash accounts. \n" - "\n" - "In the following page, you will see the text that appears in the Payee and \n" - "Memo fields of transactions with no QIF Account or Category. By default\n" - "these transactions are assigned to the 'Unspecified' account in GnuCash.\n" - "If you select a different account, it will be remembered for future QIF \n" - "files. "); -gchar *s = N_("Match payees/memos to GnuCash accounts"); -gchar *s = N_("QIF payee/memo"); -gchar *s = N_("GnuCash account name"); -gchar *s = N_("New?"); -gchar *s = N_("Enter the currency used for new accounts"); -gchar *s = N_("The QIF importer cannot currently handle multi-currency QIF files. All the \n" - "accounts in the QIF file(s) you are importing must be denominated in the\n" - "same currency. This limitation should be removed soon.\n" - "\n" - "Select the currency to use for transactions imported from your QIF files:\n" - ""); -gchar *s = N_("Click \"Next\" to enter information about stocks and\n" - "mutual funds in the imported data."); -gchar *s = N_("Tradable commodities"); -gchar *s = N_("In the next pages, you will be asked to provide information about stocks, \n" - "mutual funds, and other tradable commodities that appear in the QIF file(s)\n" - "you are importing. GnuCash requires more information about tradable \n" - "commodities than the QIF format can represent. \n" - "\n" - "Each stock, mutual fund, or other commodity must have a type, which is the \n" - "exchange or listing that it is found on (NASDAQ, NYSE, US Mutual Funds, \n" - "etc), a full name, and an abbreviation.\n" - "\n" - "Check to see if there is an existing Type that is appropriate; if not, you can\n" - "enter a new Type name by hand in the box. Make sure that the abbreviation\n" - "you enter matches the ticker symbol used for the commodity on the exchange\n" - "or listing for its type."); -gchar *s = N_("Match duplicate transactions"); -gchar *s = N_("If you are importing a QIF file downloaded from a bank or other financial\n" - "institution, some of the information in the QIF file may duplicate information\n" - "already in your GnuCash accounts. GnuCash will try to detect duplicates \n" - "of existing transactions. \n" - "\n" - "On the next page, you will be asked to confirm that an existing transaction\n" - "matches an imported transaction. Imported transactions are shown on the\n" - "left side of the page, and possible matches for the selected left-hand\n" - "transaction are shown to the right. There may be several old transactions \n" - "that could match an imported transaction; you will be able to select the \n" - "correct one by clicking in the \"Dup?\" column of the correct transaction.\n" - "\n" - "You can control the rules used by GnuCash to find duplicate transactions \n" - "in the \"QIF Import\" section of the GnuCash Preferences dialog.\n" - "\n" - "Click \"Next\" to find duplicate transactions. "); -gchar *s = N_("Select possible duplicates"); -gchar *s = N_("Imported transactions with duplicates"); -gchar *s = N_("Date"); -gchar *s = N_("Description"); -gchar *s = N_("Amount"); -gchar *s = N_("Possible duplicates for selected new transaction"); -gchar *s = N_("Date"); -gchar *s = N_("Description"); -gchar *s = N_("Amount"); -gchar *s = N_("Dup?"); -gchar *s = N_("Update your GnuCash accounts"); -gchar *s = N_("Click \"Finish\" to import data from the staging area and update\n" - "your GnuCash accounts. The account and category matching\n" - "information you have entered will be saved and used for\n" - "defaults the next time you use the QIF import facility. \n" - "\n" - "Click \"Back\" to review your account and category matchings,\n" - "to change currency and security settings for new accounts, \n" - "or to add more files to the staging area.\n" - "\n" - "Click \"Cancel\" to abort the QIF import process.");