gnucash master: Multiple changes pushed
John Ralls
jralls at code.gnucash.org
Tue Apr 7 17:45:10 EDT 2015
Updated via https://github.com/Gnucash/gnucash/commit/c97ab473 (commit)
via https://github.com/Gnucash/gnucash/commit/1d6fd557 (commit)
via https://github.com/Gnucash/gnucash/commit/f717e091 (commit)
via https://github.com/Gnucash/gnucash/commit/2b91724d (commit)
via https://github.com/Gnucash/gnucash/commit/4032a99a (commit)
from https://github.com/Gnucash/gnucash/commit/6e76a87f (commit)
commit c97ab47379fec012ee955d55d56d1fc275ef8b75
Merge: 6e76a87 1d6fd55
Author: John Ralls <jralls at ceridwen.us>
Date: Tue Apr 7 14:36:01 2015 -0700
Merge branch 'maint'
commit 1d6fd557676936cf719e435b53c8e6de15303889
Author: John Ralls <jralls at ceridwen.us>
Date: Fri Apr 3 13:57:27 2015 -0700
Bug 747300 - SQL backend missing from most recent DMG?
Fix configure.ac so that ${prefix}/lib/dbd is searched for modules.
Use gnc_path_get_libdir() to check for modules in the event that
$GNC_DBD_DIR is either empty or wrong and the path compiled into libdbi
itself is invalid. This applies mostly to Mac as other OSes tend to
leave their binaries where configure installs them.
diff --git a/configure.ac b/configure.ac
index 761f3fc..752f8f2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -617,7 +617,7 @@ then
if test $? -eq 0; then
EXTRA_SEARCH_LIBS="$(pkg-config --variable=libdir dbi)/dbd"
else
- EXTRA_SEARCH_LIBS="/usr/lib/dbd:/usr/lib64/dbd:${libdir}/dbd:$(prefix)/lib/dbd"
+ EXTRA_SEARCH_LIBS="/usr/lib/dbd:/usr/lib64/dbd:${libdir}/dbd:${prefix}/lib/dbd"
fi]]
)
case $host_os in
@@ -633,12 +633,14 @@ then
export LIBS="$lt_cv_dlopen_libs $LIBS"
;;
esac
- export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$EXTRA_SEARCH_LIBS"
- AC_MSG_CHECKING([Looking for at least one supported DBD module])
- AC_RUN_IFELSE([AC_LANG_PROGRAM([$LDINC],
+ old_ld_library_path="$LD_LIBRARY_PATH"
+ LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$EXTRA_SEARCH_LIBS"
+ AC_MSG_NOTICE([Search Path $(LD_LIBRARY_PATH)])
+ AC_MSG_CHECKING([Looking for at least one supported DBD module])
+ AC_RUN_IFELSE([AC_LANG_PROGRAM([$LDINC],
[[if (!$lt_cv_dlopen("libdbdsqlite3.$LDEXT"$LDFUNCARGS)) return -1;
]])],AC_MSG_RESULT([SQLite3]),
- AC_RUN_IFELSE([AC_LANG_PROGRAM([$LDINC],
+ AC_RUN_IFELSE([AC_LANG_PROGRAM([$LDINC],
[[if (!$lt_cv_dlopen("libdbdmysql.$LDEXT"$LDFUNCARGS)) return -1;
]])],AC_MSG_RESULT([MySql]),
AC_RUN_IFELSE([AC_LANG_PROGRAM([$LDINC],
@@ -661,6 +663,7 @@ to the configure argument list and run it again.
LIBDBI_LIBS=-ldbi
_COMPONENTS="$_COMPONENTS dbi"
LIBS=$saved_libs
+ LD_LIBRARY_PATH="$old_ld_library_path"
else
AC_MSG_ERROR([
diff --git a/src/backend/dbi/gnc-backend-dbi.c b/src/backend/dbi/gnc-backend-dbi.c
index 4903a12..6733de3 100644
--- a/src/backend/dbi/gnc-backend-dbi.c
+++ b/src/backend/dbi/gnc-backend-dbi.c
@@ -48,6 +48,7 @@
#include "gnc-uri-utils.h"
#include "gnc-filepath-utils.h"
+#include <gnc-path.h>
#include "gnc-locale-utils.h"
#include "gnc-backend-dbi.h"
@@ -1883,13 +1884,25 @@ gnc_module_init_backend_dbi(void)
}
/* dbi_initialize returns -1 in case of errors */
- #if HAVE_LIBDBI_R
+#if HAVE_LIBDBI_R
if (dbi_instance)
return;
num_drivers = dbi_initialize_r( driver_dir, &dbi_instance );
- #else
+#else
num_drivers = dbi_initialize( driver_dir );
- #endif
+#endif
+ if ( num_drivers <= 0 )
+ {
+ gchar *dir = g_build_filename(gnc_path_get_libdir(), "dbd", NULL);
+#if HAVE_LIBDBI_R
+ if (dbi_instance)
+ return;
+ num_drivers = dbi_initialize_r( dir, &dbi_instance );
+#else
+ num_drivers = dbi_initialize( dir );
+#endif
+ g_free (dir);
+ }
if ( num_drivers <= 0 )
{
PWARN( "No DBD drivers found\n" );
commit f717e0914697f27c37531f036195ebf5ee9d7baa
Author: Joe Hansen <joedalton2 at yahoo.dk>
Date: Fri Apr 3 20:58:38 2015 +0200
Updated Danish translation
From the translation project
diff --git a/po/da.po b/po/da.po
index 8aaf149..4ce4fe0 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,6 +12,7 @@
# account code -> kontonummer (ikke kontokode)
# account register -> kontokassekladde (eller er det en »engelsk« fejl og skulle
# bare have været register.
+# accounting -> regnskabs (accounting period -> regnskabsperiode)
# Balance Sheet -> statusopgørelse (nb konventionsliste har kontoudtog, før var
# oversættelsen saldoark) men er det ikke en statusopgørelse
# (måske bare status eller balance?)
@@ -91,10 +92,10 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: gnucash 2.6.5\n"
+"Project-Id-Version: gnucash 2.6.6\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-18 09:09-0800\n"
-"PO-Revision-Date: 2015-03-29 22:41+0200\n"
+"POT-Creation-Date: 2015-03-30 13:18-0700\n"
+"PO-Revision-Date: 2015-04-03 22:41+0200\n"
"Last-Translator: Joe Hansen <joedalton2 at yahoo.dk>\n"
"Language-Team: Danish <dansk at dansk-gruppen.dk>\n"
"Language: da\n"
@@ -103,25707 +104,23086 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../src/app-utils/gnc-exp-parser.c:609
-msgid "Illegal variable in expression."
-msgstr "Ugyldig variabel i udtryk."
+#. Business options
+#: ../src/app-utils/app-utils.scm:302
+#: ../src/business/business-gnome/gncmod-business-gnome.c:117
+msgid "Business"
+msgstr "Forretning"
-#: ../src/app-utils/gnc-exp-parser.c:620
-msgid "Unbalanced parenthesis"
-msgstr "Uparrede paranteser"
+#: ../src/app-utils/app-utils.scm:303
+#: ../src/business/business-gnome/dialog-customer.c:923
+#: ../src/business/business-gnome/dialog-vendor.c:726
+#: ../src/report/business-reports/taxinvoice.eguile.scm:159
+msgid "Company Name"
+msgstr "Firmanavn"
-#: ../src/app-utils/gnc-exp-parser.c:622
-msgid "Stack overflow"
-msgstr "Stakoverløb"
+#: ../src/app-utils/app-utils.scm:304
+msgid "Company Address"
+msgstr "Firmaets adresse"
-#: ../src/app-utils/gnc-exp-parser.c:624
-msgid "Stack underflow"
-msgstr "Stakunderløb"
+#: ../src/app-utils/app-utils.scm:305
+msgid "Company ID"
+msgstr "Firma-id"
-#: ../src/app-utils/gnc-exp-parser.c:626
-msgid "Undefined character"
-msgstr "Udefineret tegn"
+#: ../src/app-utils/app-utils.scm:306
+msgid "Company Phone Number"
+msgstr "Firmaets telefonnummer"
-#: ../src/app-utils/gnc-exp-parser.c:628
-msgid "Not a variable"
-msgstr "Ikke en variabel"
+#: ../src/app-utils/app-utils.scm:307
+msgid "Company Fax Number"
+msgstr "Firmaets faxnummer"
-#: ../src/app-utils/gnc-exp-parser.c:630
-msgid "Not a defined function"
-msgstr "Ikke en defineret funktion"
+#: ../src/app-utils/app-utils.scm:308
+msgid "Company Website URL"
+msgstr "Firmaets internetside"
-#: ../src/app-utils/gnc-exp-parser.c:632
-msgid "Out of memory"
-msgstr "Hukommelse opbrugt"
+#: ../src/app-utils/app-utils.scm:309
+msgid "Company Email Address"
+msgstr "Firmaets e-post-adresse"
-#: ../src/app-utils/gnc-exp-parser.c:634
-msgid "Numeric error"
-msgstr "Talfejl"
+#: ../src/app-utils/app-utils.scm:310
+msgid "Company Contact Person"
+msgstr "Firmaets kontaktperson"
-#. Translators: This and the following strings appear on
-#. * the account tab if the Tax Info column is displayed,
-#. * i.e. if the user wants to record the tax form number
-#. * and location on that tax form which corresponds to this
-#. * gnucash account. For the US Income Tax support in
-#. * gnucash, each tax code that can be assigned to an
-#. * account generally corresponds to a specific line number
-#. * on a paper form and each form has a unique
-#. * identification (e.g., Form 1040, Schedule A).
-#: ../src/app-utils/gnc-ui-util.c:339
-msgid "Tax-related but has no tax code"
-msgstr "Relateret til skat men har ingen skattekode"
+#: ../src/app-utils/business-prefs.scm:24
+#, fuzzy
+msgid "Counters"
+msgstr "Retur"
-#: ../src/app-utils/gnc-ui-util.c:353
-msgid "Tax entity type not specified"
-msgstr "Skatteentitetens type er ikke specificeret"
+#: ../src/app-utils/business-prefs.scm:31
+msgid "Customer number format"
+msgstr "Kundenummerformat"
-#: ../src/app-utils/gnc-ui-util.c:430
-#, c-format
-msgid "Tax type %s: invalid code %s for account type"
-msgstr "Skattetype %s: Ugyldig kode %s for kontotype"
+#: ../src/app-utils/business-prefs.scm:32
+msgid "Customer number"
+msgstr "Kundenummer"
-#: ../src/app-utils/gnc-ui-util.c:434
-#, c-format
-msgid "Not tax-related; tax type %s: invalid code %s for account type"
-msgstr "Ikke relateret til skat; skattetype %s: Ugyldig kode %s for kontotype"
+#: ../src/app-utils/business-prefs.scm:33
+msgid "The format string to use for generating customer numbers. This is a printf-style format string."
+msgstr "Formatstrengen at bruge til oprettelse af kundenumre. Dette er en formatsstreng i printf-stil."
-#: ../src/app-utils/gnc-ui-util.c:447
-#, c-format
-msgid "Invalid code %s for tax type %s"
-msgstr "Ugyldig kode %s for skattetype %s"
+#: ../src/app-utils/business-prefs.scm:34
+msgid "The previous customer number generated. This number will be incremented to generate the next customer number."
+msgstr "Det forrige kundenummer oprettet. Dette nummer vil blive trinvist øget for at oprette det næste kundenummer."
-#: ../src/app-utils/gnc-ui-util.c:451
-#, c-format
-msgid "Not tax-related; invalid code %s for tax type %s"
-msgstr "Ikke relateret til skat; ugyldig kode %s for skattetype %s"
+#: ../src/app-utils/business-prefs.scm:35
+msgid "Employee number format"
+msgstr "Medarbejdernummerformat"
-#: ../src/app-utils/gnc-ui-util.c:469
-#, c-format
-msgid "No form: code %s, tax type %s"
-msgstr ""
+#: ../src/app-utils/business-prefs.scm:36
+msgid "Employee number"
+msgstr "Medarbejdernummer"
-#: ../src/app-utils/gnc-ui-util.c:473
-#, c-format
-msgid "Not tax-related; no form: code %s, tax type %s"
-msgstr ""
+#: ../src/app-utils/business-prefs.scm:37
+msgid "The format string to use for generating employee numbers. This is a printf-style format string."
+msgstr "Formatstrengen at bruge til oprettelse af medarbejdernummer. Dette er en formatstreng i printf-stil."
-#: ../src/app-utils/gnc-ui-util.c:490
-#: ../src/app-utils/gnc-ui-util.c:505
-#, c-format
-msgid "No description: form %s, code %s, tax type %s"
-msgstr ""
+#: ../src/app-utils/business-prefs.scm:38
+msgid "The previous employee number generated. This number will be incremented to generate the next employee number."
+msgstr "Det forrige medarbejdernummer oprettet. Dette nummer vil blive trinvist øget for at oprette det næste medarbejdernummer."
-#: ../src/app-utils/gnc-ui-util.c:494
-#: ../src/app-utils/gnc-ui-util.c:509
-#, c-format
-msgid "Not tax-related; no description: form %s, code %s, tax type %s"
-msgstr ""
+#: ../src/app-utils/business-prefs.scm:39
+msgid "Invoice number format"
+msgstr "Fakturanummerformat"
-#: ../src/app-utils/gnc-ui-util.c:532
-#, c-format
-msgid "Not tax-related; %s%s: %s (code %s, tax type %s)"
-msgstr "Ikke relateret til skat; %s%s: %s (kode %s, skattetype %s)"
+#: ../src/app-utils/business-prefs.scm:40
+msgid "Invoice number"
+msgstr "Fakturanummer"
-#: ../src/app-utils/gnc-ui-util.c:579
-#, c-format
-msgid "(Tax-related subaccounts: %d)"
-msgstr "(Underkonti relateret til skat: %d)"
+#: ../src/app-utils/business-prefs.scm:41
+msgid "The format string to use for generating invoice numbers. This is a printf-style format string."
+msgstr "Formatstrengen at bruge for oprettelse af fakturanumre. Dette er en formatstreng i printf-stil."
-#. Translators: For the following strings, the single letters
-#. after the colon are abbreviations of the word before the
-#. colon. You should only translate the letter *after* the colon.
-#: ../src/app-utils/gnc-ui-util.c:616
-msgid "not cleared:n"
-msgstr "i"
+#: ../src/app-utils/business-prefs.scm:42
+msgid "The previous invoice number generated. This number will be incremented to generate the next invoice number."
+msgstr "Det forrige fakturanummer oprettet. Dette nummer vil blive trinvist øget for at oprette det næste fakturanummer."
-#. Translators: Please only translate the letter *after* the colon.
-#: ../src/app-utils/gnc-ui-util.c:619
-msgid "cleared:c"
-msgstr "s"
+#: ../src/app-utils/business-prefs.scm:43
+msgid "Bill number format"
+msgstr "Regningsnummerformat"
-#. Translators: Please only translate the letter *after* the colon.
-#: ../src/app-utils/gnc-ui-util.c:622
-msgid "reconciled:y"
-msgstr "a"
+#: ../src/app-utils/business-prefs.scm:44
+msgid "Bill number"
+msgstr "Regningsnummer"
-#. Translators: Please only translate the letter *after* the colon.
-#: ../src/app-utils/gnc-ui-util.c:625
-msgid "frozen:f"
-msgstr "f"
+#: ../src/app-utils/business-prefs.scm:45
+msgid "The format string to use for generating bill numbers. This is a printf-style format string."
+msgstr "Formatstrengen at bruge for oprettelse af regningsnumre. Dette er en formatstreng i printf-stil."
-#. Translators: Please only translate the letter *after* the colon.
-#: ../src/app-utils/gnc-ui-util.c:628
-msgid "void:v"
-msgstr "u"
+#: ../src/app-utils/business-prefs.scm:46
+msgid "The previous bill number generated. This number will be incremented to generate the next bill number."
+msgstr "Det forrige regningsnummer oprettet. Dette nummer vil blive trinvist øget for at oprette det næste regningsnummer."
-#: ../src/app-utils/gnc-ui-util.c:669
-msgid "Opening Balances"
-msgstr "Ã
bningssaldi"
+#: ../src/app-utils/business-prefs.scm:47
+msgid "Expense voucher number format"
+msgstr "Udgiftsbilagsnummerformat"
-#. src/import-export/qif-imp/qif-dialog-utils.scm
-#. src/report/business-reports/balsheet-eg.eguile.scm
-#. src/report/standard-reports/balance-sheet.scm
-#: ../src/app-utils/gnc-ui-util.c:672
-#: ../intl-scm/guile-strings.c:334
-#: ../intl-scm/guile-strings.c:338
-#: ../intl-scm/guile-strings.c:526
-#: ../intl-scm/guile-strings.c:2874
-msgid "Retained Earnings"
-msgstr "Overført resultat"
+#: ../src/app-utils/business-prefs.scm:48
+msgid "Expense voucher number"
+msgstr "Udgiftsbilagsnummer"
-# Jeg kender ikke det korrekte regnskabsord for equity.
-# Dette er mit bedste bud
-# (optræder flere steder) CH
-#. src/import-export/qif-imp/qif-dialog-utils.scm
-#. src/report/standard-reports/balance-sheet.scm
-#. src/report/standard-reports/budget-balance-sheet.scm
-#: ../src/app-utils/gnc-ui-util.c:744
-#: ../src/engine/Account.c:3951
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2959
-#: ../src/register/ledger-core/split-register.c:2497
-#: ../intl-scm/guile-strings.c:332
-#: ../intl-scm/guile-strings.c:336
-#: ../intl-scm/guile-strings.c:2872
-#: ../intl-scm/guile-strings.c:3000
-msgid "Equity"
-msgstr "Udligning"
+#: ../src/app-utils/business-prefs.scm:49
+msgid "The format string to use for generating expense voucher numbers. This is a printf-style format string."
+msgstr "Formatstrengen at bruge for at oprette udgiftsbilagsnumre. Dette er en formatstreng i printf-stil."
-#: ../src/app-utils/gnc-ui-util.c:799
-#: ../src/gnome/assistant-hierarchy.c:956
-#: ../src/gnome-utils/dialog-account.c:304
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:35
-msgid "Opening Balance"
-msgstr "Ã
bningssaldo"
+#: ../src/app-utils/business-prefs.scm:50
+msgid "The previous expense voucher number generated. This number will be incremented to generate the next voucher number."
+msgstr "Det forrige udgiftsbilagsnummer oprettet. Dette nummer vil blive trinvist øget for at oprette det næste bilagsnummer."
-#. src/report/standard-reports/general-journal.scm
-#. src/report/standard-reports/register.scm
-#. src/report/standard-reports/transaction.scm
-#. src/report/standard-reports/trial-balance.scm
-#: ../src/app-utils/guile-util.c:906
-#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:8
-#: ../src/gnome/gnc-plugin-page-register2.c:2466
-#: ../src/gnome/gnc-plugin-page-register.c:2631
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3199
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3204
-#: ../src/register/ledger-core/split-register.c:2316
-#: ../intl-scm/guile-strings.c:3548
-#: ../intl-scm/guile-strings.c:4096
-#: ../intl-scm/guile-strings.c:4464
-#: ../intl-scm/guile-strings.c:4956
-msgid "Debit"
-msgstr "Debet"
+#: ../src/app-utils/business-prefs.scm:51
+msgid "Job number format"
+msgstr "Jobnummerformat"
-#. src/report/standard-reports/general-journal.scm
-#. src/report/standard-reports/register.scm
-#. src/report/standard-reports/transaction.scm
-#. src/report/standard-reports/trial-balance.scm
-#: ../src/app-utils/guile-util.c:937
-#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:9
-#: ../src/gnome/gnc-plugin-page-register2.c:2463
-#: ../src/gnome/gnc-plugin-page-register.c:2627
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2898
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2917
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2935
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3118
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3123
-#: ../src/register/ledger-core/split-register.c:2339
-#: ../src/register/ledger-core/split-register.c:2436
-#: ../src/register/ledger-core/split-register.c:2455
-#: ../src/register/ledger-core/split-register.c:2473
-#: ../intl-scm/guile-strings.c:3550
-#: ../intl-scm/guile-strings.c:4098
-#: ../intl-scm/guile-strings.c:4466
-#: ../intl-scm/guile-strings.c:4958
-msgid "Credit"
-msgstr "Kredit"
+#: ../src/app-utils/business-prefs.scm:52
+#: ../src/report/business-reports/invoice.scm:780
+msgid "Job number"
+msgstr "Jobnummer"
-#: ../src/app-utils/option-util.c:1685
-#, c-format
-msgid ""
-"There is a problem with option %s:%s.\n"
-"%s"
-msgstr ""
-"Der er et problem med tilvalg %s:%s.\n"
-"%s"
+#: ../src/app-utils/business-prefs.scm:53
+msgid "The format string to use for generating job numbers. This is a printf-style format string."
+msgstr "Formatstrengen at bruge for oprettelse af jobnumre. Dette er en formatstreng i printf-stil."
-#: ../src/bin/gnucash-bin.c:96
-msgid "Show GnuCash version"
-msgstr "Vis GnuCash's version"
+#: ../src/app-utils/business-prefs.scm:54
+msgid "The previous job number generated. This number will be incremented to generate the next job number."
+msgstr "Det forrige jobnummer oprettet. Dette nummer vil blive trinvist øget for at oprette det næste jobnummer."
-#: ../src/bin/gnucash-bin.c:101
-msgid "Enable debugging mode: increasing logging to provide deep detail."
-msgstr "SlÃ¥ fejlsøgningstilstand til: Ãger logning for at fÃ¥ flere detaljer."
+#: ../src/app-utils/business-prefs.scm:55
+msgid "Order number format"
+msgstr "Ordrenummerformat"
-#: ../src/bin/gnucash-bin.c:106
-msgid "Enable extra/development/debugging features."
-msgstr "Slå ekstra/udvikling/fejlsøgningsegenskaber til."
+#: ../src/app-utils/business-prefs.scm:56
+msgid "Order number"
+msgstr "Ordrenummer"
-#: ../src/bin/gnucash-bin.c:111
-msgid "Log level overrides, of the form \"log.ger.path={debug,info,warn,crit,error}\""
-msgstr ""
+#: ../src/app-utils/business-prefs.scm:57
+msgid "The format string to use for generating order numbers. This is a printf-style format string."
+msgstr "Formatstregnen at bruge for at oprette ordrenumre. Dette er en formatstreng i printf-stil."
-#: ../src/bin/gnucash-bin.c:117
-msgid "File to log into; defaults to \"/tmp/gnucash.trace\"; can be \"stderr\" or \"stdout\"."
-msgstr ""
+#: ../src/app-utils/business-prefs.scm:58
+msgid "The previous order number generated. This number will be incremented to generate the next order number."
+msgstr "Det forrige ordrenummer oprettet. Dette nummer vil blive trinvist øget for at oprette det næste ordrenummer."
-#: ../src/bin/gnucash-bin.c:123
-msgid "Do not load the last file opened"
-msgstr "Indlæs ikke den sidst åbnede fil"
+#: ../src/app-utils/business-prefs.scm:59
+msgid "Vendor number format"
+msgstr "Leverandørnummerformat"
-#: ../src/bin/gnucash-bin.c:127
-msgid "Set the prefix for gsettings schemas for gsettings queries. This can be useful to have a different settings tree while debugging."
-msgstr ""
+#: ../src/app-utils/business-prefs.scm:60
+msgid "Vendor number"
+msgstr "Leverandørnummer"
-#. Translators: Argument description for autohelp; see
-#. http://developer.gnome.org/doc/API/2.0/glib/glib-Commandline-option-parser.html
-#: ../src/bin/gnucash-bin.c:130
-msgid "GSETTINGSPREFIX"
-msgstr ""
+#: ../src/app-utils/business-prefs.scm:61
+msgid "The format string to use for generating vendor numbers. This is a printf-style format string."
+msgstr "Formatstrengen at bruge for oprettelse af leverandørnumre. Dette er en formatstreng i printf-stil."
-#: ../src/bin/gnucash-bin.c:134
-msgid "Add price quotes to given GnuCash datafile"
-msgstr "Tilføj pristilbud til en given GnuCash-datafil"
+#: ../src/app-utils/business-prefs.scm:62
+msgid "The previous vendor number generated. This number will be incremented to generate the next vendor number."
+msgstr "Det forrige leverandørnummer oprettet. Dette nummer vil blive trinvist øget for at oprette det næste leverandørnummer."
-#. Translators: Argument description for autohelp; see
-#. http://developer.gnome.org/doc/API/2.0/glib/glib-Commandline-option-parser.html
-#: ../src/bin/gnucash-bin.c:137
-msgid "FILE"
-msgstr "FIL"
+#: ../src/app-utils/business-prefs.scm:72
+msgid "The name of your business."
+msgstr "Din forretnings navn."
-#: ../src/bin/gnucash-bin.c:141
-msgid "Regular expression determining which namespace commodities will be retrieved"
-msgstr ""
+#: ../src/app-utils/business-prefs.scm:77
+msgid "The address of your business."
+msgstr "Din forretnings adresse."
-#. Translators: Argument description for autohelp; see
-#. http://developer.gnome.org/doc/API/2.0/glib/glib-Commandline-option-parser.html
-#: ../src/bin/gnucash-bin.c:144
-msgid "REGEXP"
-msgstr ""
+#: ../src/app-utils/business-prefs.scm:82
+msgid "The contact person to print on invoices."
+msgstr "Den kontaktperson der skal anføres på fakturaer."
-#: ../src/bin/gnucash-bin.c:147
-msgid "[datafile]"
-msgstr "[datafil]"
+#: ../src/app-utils/business-prefs.scm:87
+msgid "The phone number of your business."
+msgstr "Din forretnings telefonnummer."
-#: ../src/bin/gnucash-bin.c:157
-msgid "This is a development version. It may or may not work."
-msgstr "Dette er en udviklingsversion. Den virker muligvis ikke ordentligt."
+#: ../src/app-utils/business-prefs.scm:92
+msgid "The fax number of your business."
+msgstr "Din forretnings faxnummer."
-#: ../src/bin/gnucash-bin.c:158
-msgid "Report bugs and other problems to gnucash-devel at gnucash.org"
-msgstr "Meld fejl og andre problemer til gnucash-devel at gnucash.org."
+#: ../src/app-utils/business-prefs.scm:97
+msgid "The email address of your business."
+msgstr "Din forretnings e-postadresse."
-#: ../src/bin/gnucash-bin.c:159
-msgid "You can also lookup and file bug reports at http://bugzilla.gnome.org"
-msgstr "Du kan også finde og anmelde fejlrapporter på http://bugzilla.gnome.org"
+#: ../src/app-utils/business-prefs.scm:102
+msgid "The URL address of your website."
+msgstr "URL-adressen på din internetside."
-#: ../src/bin/gnucash-bin.c:160
-msgid "To find the last stable version, please refer to http://www.gnucash.org"
-msgstr "For at finde den sidste stabile version, så gå venligst til http://www.gnucash.org"
+# ' forkert på engelsk?
+#: ../src/app-utils/business-prefs.scm:107
+msgid "The ID for your company (eg 'Tax-ID: 00-000000)."
+msgstr "Id'et på dit firma (f.eks. tax-id: 00-000000)."
-#: ../src/bin/gnucash-bin.c:379
-msgid "- GnuCash personal and small business finance management"
-msgstr "- GnuCash - finanshåndtering for personer og små virksomheder"
+#: ../src/app-utils/business-prefs.scm:112
+msgid "Default Customer TaxTable"
+msgstr "Standard for kundeskattetabel"
-#: ../src/bin/gnucash-bin.c:385
-#: ../src/bin/gnucash-bin.c:764
-#, c-format
-msgid ""
-"%s\n"
-"Run '%s --help' to see a full list of available command line options.\n"
-msgstr ""
-"%s\n"
-"Kør »%s --help« for at se den fulde liste over tilgængelige indstillinger for kommandolinjen.\n"
+#: ../src/app-utils/business-prefs.scm:113
+msgid "The default tax table to apply to customers."
+msgstr "Standardskattetabellen som bruges på kunder."
-#: ../src/bin/gnucash-bin.c:398
-#, c-format
-msgid "GnuCash %s development version"
-msgstr "GnuCash %s udviklingsversion"
+#: ../src/app-utils/business-prefs.scm:118
+msgid "Default Vendor TaxTable"
+msgstr "Standardskattetabel for leverandør"
-#. Translators: 1st %s is a fixed message, which is translated independently;
-#. 2nd %s is the scm type (svn/svk/git/bzr);
-#. 3rd %s is the scm revision number;
-#. 4th %s is the build date
-#. Development version
-#. Translators: 1st %s is a fixed message, which is translated independently;
-#. 2nd %s is the scm type (svn/svk/git/bzr);
-#. 3rd %s is the scm revision number;
-#. 4th %s is the build date
-#: ../src/bin/gnucash-bin.c:404
-#: ../src/gnome-utils/gnc-main-window.c:4392
-#, c-format
-msgid ""
-"%s\n"
-"This copy was built from %s rev %s on %s."
-msgstr ""
-"%s\n"
-"Denne kopi blev bygget ud fra %s rev %s fra den %s."
+#: ../src/app-utils/business-prefs.scm:119
+msgid "The default tax table to apply to vendors."
+msgstr "Standardskattetabel til anvendelse på leverandører."
-#: ../src/bin/gnucash-bin.c:410
-#, c-format
-msgid "GnuCash %s"
-msgstr "GnuCash %s"
+#: ../src/app-utils/business-prefs.scm:124
+msgid "Fancy Date Format"
+msgstr "Smart datoformat"
-#. Translators: 1st %s is a fixed message, which is translated independently;
-#. 2nd %s is the scm (svn/svk/git/bzr) revision number;
-#. 3rd %s is the build date
-#: ../src/bin/gnucash-bin.c:415
-#: ../src/gnome-utils/gnc-main-window.c:4399
-#, c-format
-msgid ""
-"%s\n"
-"This copy was built from rev %s on %s."
-msgstr ""
-"%s\n"
-"Denne kopi blev bygget fra rev %s fra den %s."
+#: ../src/app-utils/business-prefs.scm:125
+msgid "The default date format used for fancy printed dates."
+msgstr "Standarddatoformatet brugt til smarte udskrevne datoer."
-#: ../src/bin/gnucash-bin.c:516
-msgid "No quotes retrieved. Finance::Quote isn't installed properly.\n"
-msgstr ""
+#: ../src/app-utils/business-prefs.scm:133
+msgid "Check to have trading accounts used for transactions involving more than one currency or commodity."
+msgstr "Kontroller for at der er anvendt handelskonti for transaktioner, der involverer mere end en valuta eller vare."
-#. Install Price Quote Sources
-#: ../src/bin/gnucash-bin.c:599
-msgid "Checking Finance::Quote..."
-msgstr "Kontrollerer Finance::Quote ..."
+#: ../src/app-utils/business-prefs.scm:139
+msgid "Choose the number of days after which transactions will be read-only and cannot be edited anymore. This threshold is marked by a red line in the account register windows. If zero, all transactions can be edited and none are read-only."
+msgstr "Vælg antallet af dage hvorefter transaktioner vil være skrivebeskyttet og ikke længere kan redigeres. Denne tærskel markeres med en rød linje i kassekladdevinduet. Hvis nul, kan alle transaktioner redigeres og ingen er skrivebeskyttet."
-#: ../src/bin/gnucash-bin.c:607
-msgid "Loading data..."
-msgstr "Indlæser data..."
+#: ../src/app-utils/business-prefs.scm:150
+msgid "Check to have split action field used in registers for 'Num' field in place of transaction number; transaction number shown as 'T-Num' on second line of register. Has corresponding effect on business features, reporting and imports/exports."
+msgstr "Kontroller for at have del handling-feltet brugt i kassekladder for »Num«-feltet i stedet for transaktionsnummeret; transaktionsnummer vises som »T-Num« på den anden linje af kladden. Har tilsvarende effekt på forrentingsfunktioner, rapportering og import/eksport."
-#: ../src/bin/gnucash-bin.c:765
-msgid ""
-"Error: could not initialize graphical user interface and option add-price-quotes was not set.\n"
-" Perhaps you need to set the $DISPLAY environment variable ?"
-msgstr ""
-"Fejl: Kunne ikke initialisere grafisk brugergrænseflade og indstillingen add-price-quotes var\n"
-" ikke angivet. Måske du skal angive miljøvariablen $DISPLAY?"
+#: ../src/app-utils/business-prefs.scm:158
+msgid "Budget to be used when none has been otherwise specified."
+msgstr "Budget som bruges når et budget ellers ikke er specificeret."
+
+#: ../src/app-utils/date-utilities.scm:122
+#: ../src/report/standard-reports/account-piecharts.scm:470
+#: ../src/report/standard-reports/cash-flow.scm:206
+#: ../src/report/standard-reports/category-barchart.scm:460
+#: ../src/report/standard-reports/daily-reports.scm:484
+#: ../src/report/standard-reports/equity-statement.scm:346
+#: ../src/report/standard-reports/income-statement.scm:474
+#: ../src/report/standard-reports/net-barchart.scm:320
+#: ../src/report/standard-reports/net-linechart.scm:357
+#: ../src/report/standard-reports/price-scatter.scm:202
+#: ../src/report/standard-reports/trial-balance.scm:390
+msgid "%s to %s"
+msgstr "%s til %s"
-#: ../src/business/business-gnome/business-gnome-utils.c:73
-#: ../src/business/business-gnome/business-gnome-utils.c:260
-#: ../src/business/business-gnome/dialog-invoice.c:1306
-#: ../src/business/business-gnome/dialog-invoice.c:1384
-#: ../src/gnome-utils/gnc-general-select.c:214
-msgid "Select..."
-msgstr "Vælg ..."
+#: ../src/app-utils/date-utilities.scm:832
+#: ../src/gnome-utils/gnc-period-select.c:75
+msgid "Start of this year"
+msgstr "Starten af dette år"
-#: ../src/business/business-gnome/business-gnome-utils.c:77
-#: ../src/gnome-utils/gnc-general-select.c:216
-msgid "Edit..."
-msgstr "Rediger ..."
+#: ../src/app-utils/date-utilities.scm:835
+msgid "First day of the current calendar year."
+msgstr "Første dag i det nuværende kalenderår."
-#. src/app-utils/prefs.scm
-#. src/report/business-reports/customer-summary.scm
-#. src/report/business-reports/easy-invoice.scm
-#. src/report/business-reports/fancy-invoice.scm
-#. src/report/business-reports/invoice.scm
-#. src/report/business-reports/job-report.scm
-#: ../src/business/business-gnome/business-gnome-utils.c:219
-#: ../src/business/business-gnome/dialog-invoice.c:2342
-#: ../src/business/business-gnome/dialog-invoice.c:2518
-#: ../src/business/business-gnome/dialog-invoice.c:2519
-#: ../src/business/business-gnome/dialog-invoice.c:3160
-#: ../src/engine/gncInvoice.c:971
-#: ../src/gnome-search/dialog-search.c:1019
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3098
-#: ../src/plugins/bi_import/gtkbuilder/dialog-bi-import-gui.glade.h:3
-#: ../intl-scm/guile-strings.c:300
-#: ../intl-scm/guile-strings.c:720
-#: ../intl-scm/guile-strings.c:932
-#: ../intl-scm/guile-strings.c:1142
-#: ../intl-scm/guile-strings.c:1324
-#: ../intl-scm/guile-strings.c:1428
-msgid "Bill"
-msgstr "Regning"
+#: ../src/app-utils/date-utilities.scm:839
+#: ../src/gnome-utils/gnc-period-select.c:91
+msgid "End of this year"
+msgstr "Slutning af dette år"
-#: ../src/business/business-gnome/business-gnome-utils.c:222
-#: ../src/business/business-gnome/dialog-invoice.c:2347
-#: ../src/business/business-gnome/dialog-invoice.c:2525
-#: ../src/business/business-gnome/dialog-invoice.c:2526
-msgid "Voucher"
-msgstr "Bilag"
+#: ../src/app-utils/date-utilities.scm:842
+msgid "Last day of the current calendar year."
+msgstr "Sidste dag i det nuværende kalenderår."
-#. src/app-utils/prefs.scm
-#. src/report/business-reports/customer-summary.scm
-#. src/report/business-reports/easy-invoice.scm
-#. src/report/business-reports/fancy-invoice.scm
-#. src/report/business-reports/invoice.scm
-#. src/report/business-reports/job-report.scm
-#. src/report/business-reports/taxinvoice.eguile.scm
-#. src/report/business-reports/taxinvoice.scm
-#. src/report/standard-reports/register.scm
-#: ../src/business/business-gnome/business-gnome-utils.c:225
-#: ../src/business/business-gnome/dialog-invoice.c:3172
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:383
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:1
-#: ../src/engine/gncInvoice.c:969
-#: ../src/gnome-search/dialog-search.c:1035
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2932
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3173
-#: ../src/plugins/bi_import/gtkbuilder/dialog-bi-import-gui.glade.h:5
-#: ../src/register/ledger-core/split-register.c:2470
-#: ../src/report/report-gnome/gnc-plugin-page-report.c:1698
-#: ../intl-scm/guile-strings.c:272
-#: ../intl-scm/guile-strings.c:718
-#: ../intl-scm/guile-strings.c:930
-#: ../intl-scm/guile-strings.c:1140
-#: ../intl-scm/guile-strings.c:1322
-#: ../intl-scm/guile-strings.c:1424
-#: ../intl-scm/guile-strings.c:1426
-#: ../intl-scm/guile-strings.c:1614
-#: ../intl-scm/guile-strings.c:1776
-#: ../intl-scm/guile-strings.c:4210
-msgid "Invoice"
-msgstr "Faktura"
+#: ../src/app-utils/date-utilities.scm:846
+#: ../src/gnome-utils/gnc-period-select.c:76
+msgid "Start of previous year"
+msgstr "Starten af forrige år"
-#. This array contains all of the different strings for different column types.
-#. src/report/standard-reports/transaction.scm
-#: ../src/business/business-gnome/business-gnome-utils.c:448
-#: ../src/engine/Recurrence.c:478
-#: ../src/engine/Recurrence.c:668
-#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:4
-#: ../src/import-export/csv-imp/gnc-csv-model.c:44
-#: ../intl-scm/guile-strings.c:4506
-#: ../intl-scm/guile-strings.c:4532
-#: ../intl-scm/guile-strings.c:4588
-#: ../intl-scm/guile-strings.c:4648
-#: ../intl-scm/guile-strings.c:4774
-#: ../intl-scm/guile-strings.c:4790
-msgid "None"
-msgstr "Ingen"
+#: ../src/app-utils/date-utilities.scm:849
+msgid "First day of the previous calendar year."
+msgstr "Første dag i det forrige kalenderår."
-#: ../src/business/business-gnome/business-gnome-utils.c:564
-#: ../src/gnome/assistant-hierarchy.c:864
-msgid "Yes"
-msgstr "Ja"
+#: ../src/app-utils/date-utilities.scm:853
+#: ../src/gnome-utils/gnc-period-select.c:92
+msgid "End of previous year"
+msgstr "Slutningen af forrige år"
-#: ../src/business/business-gnome/business-gnome-utils.c:566
-#: ../src/gnome/assistant-hierarchy.c:867
-msgid "No"
-msgstr "Nej"
+#: ../src/app-utils/date-utilities.scm:856
+msgid "Last day of the previous calendar year."
+msgstr "Sidste dag i det forrige kalenderår."
-#: ../src/business/business-gnome/business-gnome-utils.c:568
-msgid "Use Global"
-msgstr "Anvend global"
+#: ../src/app-utils/date-utilities.scm:860
+msgid "Start of next year"
+msgstr "Starten af næste år"
-#: ../src/business/business-gnome/business-urls.c:68
-#: ../src/business/business-gnome/business-urls.c:199
-#: ../src/gnome/top-level.c:218
-#, c-format
-msgid "Badly formed URL %s"
-msgstr "Ugyldigt udformede URL %s"
+#: ../src/app-utils/date-utilities.scm:863
+msgid "First day of the next calendar year."
+msgstr "Første dag i det næste kalenderår."
-#: ../src/business/business-gnome/business-urls.c:73
-#: ../src/business/business-gnome/business-urls.c:222
-#: ../src/business/business-gnome/business-urls.c:228
-#: ../src/business/business-gnome/business-urls.c:295
-#: ../src/gnome/top-level.c:91
-#, c-format
-msgid "Bad URL: %s"
-msgstr "Ugyldig URL: %s"
+#: ../src/app-utils/date-utilities.scm:867
+msgid "End of next year"
+msgstr "Slutning af næste år"
-#: ../src/business/business-gnome/business-urls.c:82
-#, c-format
-msgid "No such entity: %s"
-msgstr "Ingen sådan entitet: %s"
+#: ../src/app-utils/date-utilities.scm:870
+msgid "Last day of the next calendar year."
+msgstr "Sidste dag i det næste kalenderår."
-#. =================================================================
-#: ../src/business/business-gnome/business-urls.c:170
-#, c-format
-msgid "No such owner entity: %s"
-msgstr "Ingen sådan ejerentitet: %s"
+#: ../src/app-utils/date-utilities.scm:874
+msgid "Start of accounting period"
+msgstr "Regnskabsperiodens start"
-#: ../src/business/business-gnome/business-urls.c:279
-#, c-format
-msgid "Entity type does not match %s: %s"
-msgstr "Entitettypen matcher ikke %s: %s"
+#: ../src/app-utils/date-utilities.scm:877
+msgid "First day of the accounting period, as set in the global preferences."
+msgstr "Første dag for regnskabsperioden, som angivet under globale præferencer."
-#: ../src/business/business-gnome/business-urls.c:289
-#, c-format
-msgid "Bad URL %s"
-msgstr "Ugyldig URL %s"
+#: ../src/app-utils/date-utilities.scm:881
+msgid "End of accounting period"
+msgstr "Regnskabsperiodens slutning"
-#: ../src/business/business-gnome/business-urls.c:302
-#, c-format
-msgid "No such Account entity: %s"
-msgstr "Ingen sådan kontoentitet: %s"
+#: ../src/app-utils/date-utilities.scm:884
+msgid "Last day of the accounting period, as set in the global preferences."
+msgstr "Sidste dag for regnskabsperioden, som angivet under globale præferencer."
-#: ../src/business/business-gnome/dialog-billterms.c:265
-msgid "Discount days cannot be more than due days."
-msgstr ""
+#: ../src/app-utils/date-utilities.scm:888
+#: ../src/gnome-utils/gnc-period-select.c:71
+msgid "Start of this month"
+msgstr "Starten af denne måned"
-#: ../src/business/business-gnome/dialog-billterms.c:324
-msgid "You must provide a name for this Billing Term."
-msgstr "Du skal angive et navn for denne regningsbetingelse."
+#: ../src/app-utils/date-utilities.scm:891
+msgid "First day of the current month."
+msgstr "Første dag i nuværende måned."
-#: ../src/business/business-gnome/dialog-billterms.c:331
-#, c-format
-msgid "You must provide a unique name for this Billing Term. Your choice \"%s\" is already in use."
-msgstr "Du skal angive et unikt navn for denne regningsbetingelse. Dit valg »%s« er allerede i brug."
+#: ../src/app-utils/date-utilities.scm:895
+#: ../src/gnome-utils/gnc-period-select.c:87
+msgid "End of this month"
+msgstr "Slutningen af denne måned"
-#. src/report/standard-reports/price-scatter.scm
-#: ../src/business/business-gnome/dialog-billterms.c:527
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:17
-#: ../src/gnome-utils/gnc-date-delta.c:216
-#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:19
-#: ../intl-scm/guile-strings.c:4030
-msgid "Days"
-msgstr "Dage"
+#: ../src/app-utils/date-utilities.scm:898
+msgid "Last day of the current month."
+msgstr "Sidste dag i nuværende måned."
-# http://en.wiktionary.org/wiki/proximo
-#: ../src/business/business-gnome/dialog-billterms.c:530
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:25
-msgid "Proximo"
-msgstr "Proximo"
+#: ../src/app-utils/date-utilities.scm:902
+#: ../src/gnome-utils/gnc-period-select.c:72
+msgid "Start of previous month"
+msgstr "Starten af forrige måned"
-#. src/report/business-reports/customer-summary.scm
-#. src/report/business-reports/job-report.scm
-#. src/report/business-reports/owner-report.scm
-#: ../src/business/business-gnome/dialog-billterms.c:533
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:26
-#: ../intl-scm/guile-strings.c:686
-#: ../intl-scm/guile-strings.c:1382
-#: ../intl-scm/guile-strings.c:1526
-#: ../intl-scm/guile-strings.c:1530
-msgid "Unknown"
-msgstr "Ukendt"
+#: ../src/app-utils/date-utilities.scm:905
+msgid "First day of the previous month."
+msgstr "Første dag i forrige måned."
-#: ../src/business/business-gnome/dialog-billterms.c:662
-#, c-format
-msgid "Term \"%s\" is in use. You cannot delete it."
-msgstr "Betingelsen »%s« er i brug. Du kan ikke slette den."
-
-#: ../src/business/business-gnome/dialog-billterms.c:668
-#: ../src/gnome-utils/dialog-tax-table.c:571
-#, c-format
-msgid "Are you sure you want to delete \"%s\"?"
-msgstr "Er du sikker på, at du ønsker at slette »%s«?"
+#: ../src/app-utils/date-utilities.scm:909
+#: ../src/gnome-utils/gnc-period-select.c:88
+msgid "End of previous month"
+msgstr "Slutningen af forrige måned"
-#: ../src/business/business-gnome/dialog-choose-owner.c:75
-msgid "This transaction needs to be assigned to a Customer. Please choose the Customer below."
-msgstr "Denne transaktion skal have oplysning om en kunde. Vælg venligst kunden nedenfor."
+#: ../src/app-utils/date-utilities.scm:912
+msgid "Last day of previous month."
+msgstr "Sidste dag i forrige måned."
-#: ../src/business/business-gnome/dialog-choose-owner.c:82
-msgid "This transaction needs to be assigned to a Vendor. Please choose the Vendor below."
-msgstr "Denne transaktion skal have oplysning om en leverandør. Vælg venligst leverandøren nedenfor."
+#: ../src/app-utils/date-utilities.scm:916
+msgid "Start of next month"
+msgstr "Start på næste måned"
-#: ../src/business/business-gnome/dialog-customer.c:329
-msgid ""
-"You must enter a company name. If this customer is an individual (and not a company) you should enter the same value for:\n"
-"Identification - Company Name, and\n"
-"Payment Address - Name."
-msgstr ""
-"Du skal indtaste et firmanavn. Hvis denne kunde er en person (og ikke et firma) bør du indtaste den samme værdi for:\n"
-"Identifikation - Firmanavn, og\n"
-"Betalingsadresse - Navn."
+#: ../src/app-utils/date-utilities.scm:919
+msgid "First day of the next month."
+msgstr "Første dag i næste måned."
-#: ../src/business/business-gnome/dialog-customer.c:341
-msgid "You must enter a billing address."
-msgstr "Du skal angive en faktureringsadresse."
+#: ../src/app-utils/date-utilities.scm:923
+msgid "End of next month"
+msgstr "Slutningen af næste måned"
-#: ../src/business/business-gnome/dialog-customer.c:351
-msgid "Discount percentage must be between 0-100 or you must leave it blank."
-msgstr "Rabatprocent skal være mellem 0 og 100 eller den skal efterlades uudfyldt."
+#: ../src/app-utils/date-utilities.scm:926
+msgid "Last day of next month."
+msgstr "Sidste dag i næste måned."
-#: ../src/business/business-gnome/dialog-customer.c:356
-msgid "Credit must be a positive amount or you must leave it blank."
-msgstr "Kredit skal være et positivt beløb ellers skal du lade den være tom."
+#: ../src/app-utils/date-utilities.scm:930
+msgid "Start of current quarter"
+msgstr "Starten af nuværende kvartal"
-#: ../src/business/business-gnome/dialog-customer.c:432
-#: ../src/business/business-gnome/dialog-employee.c:313
-#: ../src/business/business-gnome/dialog-job.c:238
-#: ../src/business/business-gnome/dialog-vendor.c:299
-#: ../src/gnome-utils/dialog-account.c:1424
-msgid "<No name>"
-msgstr "<Intet navn>"
+#: ../src/app-utils/date-utilities.scm:933
+msgid "First day of the current quarterly accounting period."
+msgstr "Første dag i den nuværende kvartalsmæssige regnskabsperiode."
-#: ../src/business/business-gnome/dialog-customer.c:439
-msgid "Edit Customer"
-msgstr "Rediger kunde"
+#: ../src/app-utils/date-utilities.scm:937
+msgid "End of current quarter"
+msgstr "Slutningen af nuværende kvartal"
-#: ../src/business/business-gnome/dialog-customer.c:441
-#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:1
-#: ../src/gnome-search/dialog-search.c:1025
-msgid "New Customer"
-msgstr "Ny kunde"
+#: ../src/app-utils/date-utilities.scm:940
+msgid "Last day of the current quarterly accounting period."
+msgstr "Sidste dag i den nuværende kvartalsmæssige regnskabsperiode."
-#: ../src/business/business-gnome/dialog-customer.c:903
-msgid "View/Edit Customer"
-msgstr "Vis/rediger kunde"
+#: ../src/app-utils/date-utilities.scm:944
+#: ../src/gnome-utils/gnc-period-select.c:74
+msgid "Start of previous quarter"
+msgstr "Start af forrige kvartal"
-#: ../src/business/business-gnome/dialog-customer.c:904
-msgid "Customer's Jobs"
-msgstr "Kundes job"
+#: ../src/app-utils/date-utilities.scm:947
+msgid "First day of the previous quarterly accounting period."
+msgstr "Første dag for den forrige kvartalsmæssige regnskabsperiode."
-#. { N_("Customer's Orders"), order_customer_cb, NULL, TRUE},
-#: ../src/business/business-gnome/dialog-customer.c:906
-msgid "Customer's Invoices"
-msgstr "Kundes fakturaer"
+#: ../src/app-utils/date-utilities.scm:951
+#: ../src/gnome-utils/gnc-period-select.c:90
+msgid "End of previous quarter"
+msgstr "Slutningen af forrige kvartal."
-#: ../src/business/business-gnome/dialog-customer.c:907
-#: ../src/business/business-gnome/dialog-employee.c:712
-#: ../src/business/business-gnome/dialog-invoice.c:2926
-#: ../src/business/business-gnome/dialog-invoice.c:2935
-#: ../src/business/business-gnome/dialog-invoice.c:2946
-#: ../src/business/business-gnome/dialog-invoice.c:3199
-#: ../src/business/business-gnome/dialog-job.c:549
-#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:1
-msgid "Process Payment"
-msgstr "Gennemfør betaling"
+#: ../src/app-utils/date-utilities.scm:954
+msgid "Last day of previous quarterly accounting period."
+msgstr "Sidste dag for forrige kvartalsmæssige regnskabsperiode."
-#: ../src/business/business-gnome/dialog-customer.c:917
-msgid "Shipping Contact"
-msgstr "Forsendelsesoplysninger"
+#: ../src/app-utils/date-utilities.scm:958
+msgid "Start of next quarter"
+msgstr "Starten af næste kvartal"
-#: ../src/business/business-gnome/dialog-customer.c:919
-#: ../src/business/business-gnome/dialog-vendor.c:722
-msgid "Billing Contact"
-msgstr "Faktureringsoplysninger"
+#: ../src/app-utils/date-utilities.scm:961
+msgid "First day of the next quarterly accounting period."
+msgstr "Første dag for næste kvartalsmæssige regnskabsperiode."
-#: ../src/business/business-gnome/dialog-customer.c:921
-msgid "Customer ID"
-msgstr "Kunde-id"
+#: ../src/app-utils/date-utilities.scm:965
+msgid "End of next quarter"
+msgstr "Slutningen af næste kvartal"
-#. src/app-utils/app-utils.scm
-#. src/report/business-reports/taxinvoice.eguile.scm
-#: ../src/business/business-gnome/dialog-customer.c:923
-#: ../src/business/business-gnome/dialog-vendor.c:726
-#: ../intl-scm/guile-strings.c:4
-#: ../intl-scm/guile-strings.c:1616
-msgid "Company Name"
-msgstr "Firmanavn"
+#: ../src/app-utils/date-utilities.scm:968
+msgid "Last day of next quarterly accounting period."
+msgstr "Sidste dag for næste kvartalsmæssige regnskabsperiode."
-#: ../src/business/business-gnome/dialog-customer.c:930
-#: ../src/business/business-gnome/dialog-vendor.c:733
-msgid "Contact"
-msgstr "Kontakt"
+#. CY Strings
+#: ../src/app-utils/date-utilities.scm:972
+#: ../src/gnome-utils/gnc-cell-renderer-date.c:164
+#: ../src/gnome-utils/gnc-period-select.c:70
+#: ../src/gnome-utils/gnc-period-select.c:86
+msgid "Today"
+msgstr "I dag"
-#. src/report/business-reports/aging.scm
-#. src/report/business-reports/owner-report.scm
-#: ../src/business/business-gnome/dialog-customer.c:932
-#: ../src/business/business-gnome/dialog-invoice.c:3071
-#: ../src/business/business-gnome/dialog-invoice.c:3212
-#: ../src/business/business-gnome/dialog-job.c:575
-#: ../src/business/business-gnome/dialog-order.c:885
-#: ../src/business/business-gnome/dialog-vendor.c:735
-#: ../intl-scm/guile-strings.c:496
-#: ../intl-scm/guile-strings.c:1490
-msgid "Company"
-msgstr "Firma"
+#: ../src/app-utils/date-utilities.scm:974
+msgid "The current date."
+msgstr "Den nuværende dato."
-#: ../src/business/business-gnome/dialog-customer.c:934
-#: ../src/business/business-gnome/dialog-employee.c:734
-#: ../src/business/business-gnome/dialog-job.c:579
-#: ../src/business/business-gnome/dialog-vendor.c:737
-msgid "ID #"
-msgstr "Id #"
+#: ../src/app-utils/date-utilities.scm:978
+msgid "One Month Ago"
+msgstr "En måned siden"
-#: ../src/business/business-gnome/dialog-customer.c:957
-msgid "Find Customer"
-msgstr "Find kunde"
+#: ../src/app-utils/date-utilities.scm:980
+msgid "One Month Ago."
+msgstr "En måned siden."
-#: ../src/business/business-gnome/dialog-date-close.c:75
-msgid "No Account selected. Please try again."
-msgstr "Ingen konto valgt. Forsøg venligst igen."
+#: ../src/app-utils/date-utilities.scm:984
+msgid "One Week Ago"
+msgstr "En uge siden"
-#: ../src/business/business-gnome/dialog-date-close.c:82
-msgid "Placeholder account selected. Please try again."
-msgstr "Sumkonto valgt. Forsøg venligst igen."
+#: ../src/app-utils/date-utilities.scm:986
+msgid "One Week Ago."
+msgstr "En uge siden."
-#: ../src/business/business-gnome/dialog-employee.c:225
-msgid "You must enter a username."
-msgstr "Du skal indtaste et brugernavn."
+#: ../src/app-utils/date-utilities.scm:990
+msgid "Three Months Ago"
+msgstr "Tre måneder siden"
-#: ../src/business/business-gnome/dialog-employee.c:230
-msgid "You must enter the employee's name."
-msgstr "Du skal indtaste medarbejderens navn."
+#: ../src/app-utils/date-utilities.scm:992
+msgid "Three Months Ago."
+msgstr "Tre måneder siden."
-#: ../src/business/business-gnome/dialog-employee.c:239
-msgid "You must enter an address."
-msgstr "Du skal indtaste en adresse."
+#: ../src/app-utils/date-utilities.scm:996
+msgid "Six Months Ago"
+msgstr "Seks måneder siden"
-#: ../src/business/business-gnome/dialog-employee.c:320
-msgid "Edit Employee"
-msgstr "Rediger medarbejder"
+#: ../src/app-utils/date-utilities.scm:998
+msgid "Six Months Ago."
+msgstr "Seks måneder siden."
-#: ../src/business/business-gnome/dialog-employee.c:322
-#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:1
-#: ../src/gnome-search/dialog-search.c:1029
-msgid "New Employee"
-msgstr "Ny medarbejder"
+#: ../src/app-utils/date-utilities.scm:1001
+msgid "One Year Ago"
+msgstr "Et år siden"
-#: ../src/business/business-gnome/dialog-employee.c:710
-msgid "View/Edit Employee"
-msgstr "Vis/rediger medarbejder"
+#: ../src/app-utils/date-utilities.scm:1003
+msgid "One Year Ago."
+msgstr "Et år siden."
-#: ../src/business/business-gnome/dialog-employee.c:711
-msgid "Expense Vouchers"
-msgstr "Udgiftsbilag"
+#: ../src/app-utils/date-utilities.scm:1007
+msgid "One Month Ahead"
+msgstr "En måned frem"
-#: ../src/business/business-gnome/dialog-employee.c:721
-msgid "Employee ID"
-msgstr "Medarbejder-id"
+#: ../src/app-utils/date-utilities.scm:1009
+msgid "One Month Ahead."
+msgstr "En måned frem."
-#: ../src/business/business-gnome/dialog-employee.c:723
-msgid "Employee Username"
-msgstr "Medarbejderbrugernavn"
+#: ../src/app-utils/date-utilities.scm:1013
+msgid "One Week Ahead"
+msgstr "En uge frem"
-#: ../src/business/business-gnome/dialog-employee.c:725
-#: ../src/business/business-gnome/dialog-invoice.c:3051
-msgid "Employee Name"
-msgstr "Medarbejdernavn"
+#: ../src/app-utils/date-utilities.scm:1015
+msgid "One Week Ahead."
+msgstr "En uge frem."
-#: ../src/business/business-gnome/dialog-employee.c:732
-#: ../src/gnome-utils/gtkbuilder/dialog-file-access.glade.h:6
-msgid "Username"
-msgstr "Brugernavn"
+#: ../src/app-utils/date-utilities.scm:1019
+msgid "Three Months Ahead"
+msgstr "Tre måneder frem"
-#. src/report/business-reports/aging.scm
-#: ../src/business/business-gnome/dialog-employee.c:736
-#: ../src/gnome/dialog-sx-editor2.c:1757
-#: ../src/gnome/dialog-sx-editor.c:1787
-#: ../src/gnome/dialog-tax-info.c:1150
-#: ../src/gnome-utils/gnc-dense-cal.c:337
-#: ../src/gnome-utils/gnc-tree-model-budget.c:96
-#: ../src/gnome-utils/gnc-tree-view-commodity.c:396
-#: ../src/gnome-utils/gnc-tree-view-sx-list.c:163
-#: ../src/gnome-utils/gtkbuilder/gnc-date-format.glade.h:8
-#: ../intl-scm/guile-strings.c:460
-msgid "Name"
-msgstr "Navn"
+#: ../src/app-utils/date-utilities.scm:1021
+msgid "Three Months Ahead."
+msgstr "Tre måneder frem."
-#: ../src/business/business-gnome/dialog-employee.c:758
-msgid "Find Employee"
-msgstr "Find medarbejder"
+#: ../src/app-utils/date-utilities.scm:1025
+msgid "Six Months Ahead"
+msgstr "Seks måneder frem"
-#. Translators: In this context,
-#. * 'Billing information' maps to the
-#. * label in the frame and means
-#. * e.g. customer i.e. the company being
-#. * invoiced.
-#: ../src/business/business-gnome/dialog-invoice.c:386
-#: ../src/business/business-gnome/dialog-order.c:181
-msgid "You need to supply Billing Information."
-msgstr ""
+#: ../src/app-utils/date-utilities.scm:1027
+msgid "Six Months Ahead."
+msgstr "Seks måneder frem."
-#: ../src/business/business-gnome/dialog-invoice.c:579
-msgid "Are you sure you want to delete the selected entry?"
-msgstr "Er du sikker på, at du vil slette den valgte post?"
+#: ../src/app-utils/date-utilities.scm:1030
+msgid "One Year Ahead"
+msgstr "Et år frem"
-#: ../src/business/business-gnome/dialog-invoice.c:581
-msgid "This entry is attached to an order and will be deleted from that as well!"
-msgstr ""
+#: ../src/app-utils/date-utilities.scm:1032
+msgid "One Year Ahead."
+msgstr "Et år frem."
-#. src/report/business-reports/aging.scm
-#. src/report/business-reports/easy-invoice.scm
-#. src/report/business-reports/fancy-invoice.scm
-#. src/report/business-reports/invoice.scm
-#. src/report/business-reports/job-report.scm
-#. src/report/business-reports/owner-report.scm
-#. src/report/business-reports/taxinvoice.eguile.scm
-#: ../src/business/business-gnome/dialog-invoice.c:691
-#: ../src/business/business-gnome/dialog-invoice.c:2980
-#: ../src/business/business-gnome/dialog-invoice.c:3014
-#: ../src/business/business-gnome/dialog-invoice.c:3048
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2836
-#: ../src/register/ledger-core/split-register-model.c:231
-#: ../intl-scm/guile-strings.c:488
-#: ../intl-scm/guile-strings.c:846
-#: ../intl-scm/guile-strings.c:1156
-#: ../intl-scm/guile-strings.c:1338
-#: ../intl-scm/guile-strings.c:1360
-#: ../intl-scm/guile-strings.c:1472
-#: ../intl-scm/guile-strings.c:1580
-#: ../intl-scm/guile-strings.c:1630
-msgid "Due Date"
-msgstr "Forfaldsdato"
+#: ../src/app-utils/gnc-exp-parser.c:609
+msgid "Illegal variable in expression."
+msgstr "Ugyldig variabel i udtryk."
-#. src/report/business-reports/aging.scm
-#. src/report/business-reports/owner-report.scm
-#: ../src/business/business-gnome/dialog-invoice.c:692
-#: ../intl-scm/guile-strings.c:492
-#: ../intl-scm/guile-strings.c:1584
-msgid "Post Date"
-msgstr "Bogføringsdato"
+#: ../src/app-utils/gnc-exp-parser.c:620
+msgid "Unbalanced parenthesis"
+msgstr "Uparrede paranteser"
-#: ../src/business/business-gnome/dialog-invoice.c:693
-msgid "Post to Account"
-msgstr "Bogfør på konto"
+#: ../src/app-utils/gnc-exp-parser.c:622
+msgid "Stack overflow"
+msgstr "Stakoverløb"
-#: ../src/business/business-gnome/dialog-invoice.c:694
-msgid "Accumulate Splits?"
-msgstr ""
+#: ../src/app-utils/gnc-exp-parser.c:624
+msgid "Stack underflow"
+msgstr "Stakunderløb"
-#: ../src/business/business-gnome/dialog-invoice.c:787
-msgid "The Invoice must have at least one Entry."
-msgstr ""
+#: ../src/app-utils/gnc-exp-parser.c:626
+msgid "Undefined character"
+msgstr "Udefineret tegn"
-#: ../src/business/business-gnome/dialog-invoice.c:807
-msgid "Do you really want to post the invoice?"
-msgstr "Er du sikker på, at du vil bogføre fakturaen?"
+#: ../src/app-utils/gnc-exp-parser.c:628
+msgid "Not a variable"
+msgstr "Ikke en variabel"
-#. Fill in the conversion prices with feedback from the user
-#: ../src/business/business-gnome/dialog-invoice.c:822
-msgid "One or more of the entries are for accounts different from the invoice/bill currency. You will be asked a conversion rate for each."
-msgstr ""
+#: ../src/app-utils/gnc-exp-parser.c:630
+msgid "Not a defined function"
+msgstr "Ikke en defineret funktion"
-#: ../src/business/business-gnome/dialog-invoice.c:947
-msgid "The post action was canceled because not all exchange rates were given."
-msgstr "Bogføringshandlingen blev afbrudt da ikke alle vekselkurser var angivet."
+#: ../src/app-utils/gnc-exp-parser.c:632
+msgid "Out of memory"
+msgstr "Hukommelse opbrugt"
-#: ../src/business/business-gnome/dialog-invoice.c:1216
-#: ../src/gnome/window-reconcile2.c:1142
-#: ../src/gnome/window-reconcile.c:1142
-msgid "Total:"
-msgstr "Total:"
+#: ../src/app-utils/gnc-exp-parser.c:634
+msgid "Numeric error"
+msgstr "Talfejl"
-#: ../src/business/business-gnome/dialog-invoice.c:1222
-msgid "Subtotal:"
-msgstr "Delsum:"
+#. Translators: This and the following strings appear on
+#. * the account tab if the Tax Info column is displayed,
+#. * i.e. if the user wants to record the tax form number
+#. * and location on that tax form which corresponds to this
+#. * gnucash account. For the US Income Tax support in
+#. * gnucash, each tax code that can be assigned to an
+#. * account generally corresponds to a specific line number
+#. * on a paper form and each form has a unique
+#. * identification (e.g., Form 1040, Schedule A).
+#: ../src/app-utils/gnc-ui-util.c:339
+msgid "Tax-related but has no tax code"
+msgstr "Relateret til skat men har ingen skattekode"
-#: ../src/business/business-gnome/dialog-invoice.c:1223
-msgid "Tax:"
-msgstr "Skat:"
+#: ../src/app-utils/gnc-ui-util.c:353
+msgid "Tax entity type not specified"
+msgstr "Skatteentitetens type er ikke specificeret"
-#: ../src/business/business-gnome/dialog-invoice.c:1227
-msgid "Total Cash:"
-msgstr "Samlet beløb:"
+#: ../src/app-utils/gnc-ui-util.c:430
+#, c-format
+msgid "Tax type %s: invalid code %s for account type"
+msgstr "Skattetype %s: Ugyldig kode %s for kontotype"
-#: ../src/business/business-gnome/dialog-invoice.c:1228
-msgid "Total Charge:"
-msgstr "Samlet betaling:"
+#: ../src/app-utils/gnc-ui-util.c:434
+#, c-format
+msgid "Not tax-related; tax type %s: invalid code %s for account type"
+msgstr "Ikke relateret til skat; skattetype %s: Ugyldig kode %s for kontotype"
-#. Set the type label
-#. src/report/business-reports/easy-invoice.scm
-#. src/report/business-reports/fancy-invoice.scm
-#. src/report/business-reports/invoice.scm
-#: ../src/business/business-gnome/dialog-invoice.c:1697
-#: ../src/business/business-gnome/dialog-payment.c:972
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:22
-#: ../src/engine/gncInvoice.c:977
-#: ../intl-scm/guile-strings.c:936
-#: ../intl-scm/guile-strings.c:938
-#: ../intl-scm/guile-strings.c:940
-#: ../intl-scm/guile-strings.c:1146
-#: ../intl-scm/guile-strings.c:1148
-#: ../intl-scm/guile-strings.c:1150
-#: ../intl-scm/guile-strings.c:1328
-#: ../intl-scm/guile-strings.c:1330
-#: ../intl-scm/guile-strings.c:1332
-msgid "Credit Note"
-msgstr "Kreditnota"
+#: ../src/app-utils/gnc-ui-util.c:447
+#, c-format
+msgid "Invalid code %s for tax type %s"
+msgstr "Ugyldig kode %s for skattetype %s"
-#: ../src/business/business-gnome/dialog-invoice.c:1896
-#: ../src/business/business-gnome/dialog-invoice.c:1915
-#: ../src/business/business-gnome/dialog-invoice.c:1934
-msgid "New Credit Note"
-msgstr "Ny kreditnota"
+#: ../src/app-utils/gnc-ui-util.c:451
+#, c-format
+msgid "Not tax-related; invalid code %s for tax type %s"
+msgstr "Ikke relateret til skat; ugyldig kode %s for skattetype %s"
-#: ../src/business/business-gnome/dialog-invoice.c:1897
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:275
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:21
-#: ../src/gnome-search/dialog-search.c:1037
-msgid "New Invoice"
-msgstr "Ny faktura"
+#: ../src/app-utils/gnc-ui-util.c:469
+#, c-format
+msgid "No form: code %s, tax type %s"
+msgstr "Ingen formular: kode %s, skattetype %s"
-#: ../src/business/business-gnome/dialog-invoice.c:1902
-#: ../src/business/business-gnome/dialog-invoice.c:1921
-#: ../src/business/business-gnome/dialog-invoice.c:1940
-msgid "Edit Credit Note"
-msgstr "Rediger kreditnota"
+#: ../src/app-utils/gnc-ui-util.c:473
+#, c-format
+msgid "Not tax-related; no form: code %s, tax type %s"
+msgstr "Ikke relateret til skat; ingen formular: kode %s, skattetype %s"
-#: ../src/business/business-gnome/dialog-invoice.c:1903
-msgid "Edit Invoice"
-msgstr "Rediger faktura"
+#: ../src/app-utils/gnc-ui-util.c:490 ../src/app-utils/gnc-ui-util.c:505
+#, c-format
+msgid "No description: form %s, code %s, tax type %s"
+msgstr "Ingen beskrivelse: formular %s, kode %s, skattetype %s"
-#: ../src/business/business-gnome/dialog-invoice.c:1906
-#: ../src/business/business-gnome/dialog-invoice.c:1925
-#: ../src/business/business-gnome/dialog-invoice.c:1944
-msgid "View Credit Note"
-msgstr "Vis kreditnota"
+#: ../src/app-utils/gnc-ui-util.c:494 ../src/app-utils/gnc-ui-util.c:509
+#, c-format
+msgid "Not tax-related; no description: form %s, code %s, tax type %s"
+msgstr "Ikke relateret til skat; ingen beskrivelse: formular %s, kode %s, skattetype %s"
-#: ../src/business/business-gnome/dialog-invoice.c:1907
-msgid "View Invoice"
-msgstr "Vis faktura"
+#: ../src/app-utils/gnc-ui-util.c:532
+#, c-format
+msgid "Not tax-related; %s%s: %s (code %s, tax type %s)"
+msgstr "Ikke relateret til skat; %s%s: %s (kode %s, skattetype %s)"
-#: ../src/business/business-gnome/dialog-invoice.c:1916
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:274
-#: ../src/gnome-search/dialog-search.c:1021
-msgid "New Bill"
-msgstr "Ny regning"
+#: ../src/app-utils/gnc-ui-util.c:579
+#, c-format
+msgid "(Tax-related subaccounts: %d)"
+msgstr "(Underkonti relateret til skat: %d)"
-#: ../src/business/business-gnome/dialog-invoice.c:1922
-msgid "Edit Bill"
-msgstr "Rediger regning"
+#. Translators: For the following strings, the single letters
+#. after the colon are abbreviations of the word before the
+#. colon. You should only translate the letter *after* the colon.
+#: ../src/app-utils/gnc-ui-util.c:616
+msgid "not cleared:n"
+msgstr "i"
-#: ../src/business/business-gnome/dialog-invoice.c:1926
-msgid "View Bill"
-msgstr "Vis regning"
+#. Translators: Please only translate the letter *after* the colon.
+#: ../src/app-utils/gnc-ui-util.c:619
+msgid "cleared:c"
+msgstr "s"
-#: ../src/business/business-gnome/dialog-invoice.c:1935
-#: ../src/gnome-search/dialog-search.c:1033
-msgid "New Expense Voucher"
-msgstr "Nyt udgiftsbilag"
+#. Translators: Please only translate the letter *after* the colon.
+#: ../src/app-utils/gnc-ui-util.c:622
+msgid "reconciled:y"
+msgstr "a"
-#: ../src/business/business-gnome/dialog-invoice.c:1941
-msgid "Edit Expense Voucher"
-msgstr "Rediger udgiftsbilag"
+#. Translators: Please only translate the letter *after* the colon.
+#: ../src/app-utils/gnc-ui-util.c:625
+msgid "frozen:f"
+msgstr "f"
-#: ../src/business/business-gnome/dialog-invoice.c:1945
-msgid "View Expense Voucher"
-msgstr "Vis udgiftsbilag"
+#. Translators: Please only translate the letter *after* the colon.
+#: ../src/app-utils/gnc-ui-util.c:628
+msgid "void:v"
+msgstr "u"
-#: ../src/business/business-gnome/dialog-invoice.c:2341
-#: ../src/business/business-gnome/dialog-invoice.c:2517
-msgid "Bill Information"
-msgstr "Fakturasoplysninger"
+#: ../src/app-utils/gnc-ui-util.c:669
+msgid "Opening Balances"
+msgstr "Ã
bningssaldi"
-#: ../src/business/business-gnome/dialog-invoice.c:2343
-#: ../src/business/business-gnome/dialog-invoice.c:2520
-#: ../src/business/business-gnome/dialog-invoice.c:3021
-msgid "Bill ID"
-msgstr "Regnings-id"
+#: ../src/app-utils/gnc-ui-util.c:672
+#: ../src/import-export/qif-imp/qif-dialog-utils.scm:53
+#: ../src/import-export/qif-imp/qif-dialog-utils.scm:57
+#: ../src/report/business-reports/balsheet-eg.eguile.scm:200
+#: ../src/report/standard-reports/balance-sheet.scm:673
+msgid "Retained Earnings"
+msgstr "Overført resultat"
-#: ../src/business/business-gnome/dialog-invoice.c:2346
-#: ../src/business/business-gnome/dialog-invoice.c:2524
-msgid "Voucher Information"
-msgstr "Bilagsoplysninger"
+# Jeg kender ikke det korrekte regnskabsord for equity.
+# Dette er mit bedste bud
+# (optræder flere steder) CH
+#: ../src/app-utils/gnc-ui-util.c:744 ../src/engine/Account.c:3951
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2959
+#: ../src/import-export/qif-imp/qif-dialog-utils.scm:52
+#: ../src/import-export/qif-imp/qif-dialog-utils.scm:56
+#: ../src/register/ledger-core/split-register.c:2497
+#: ../src/report/standard-reports/balance-sheet.scm:661
+#: ../src/report/standard-reports/budget-balance-sheet.scm:812
+msgid "Equity"
+msgstr "Udligning"
-#: ../src/business/business-gnome/dialog-invoice.c:2348
-#: ../src/business/business-gnome/dialog-invoice.c:2527
-#: ../src/business/business-gnome/dialog-invoice.c:3055
-msgid "Voucher ID"
-msgstr "Bilags-id"
+#: ../src/app-utils/gnc-ui-util.c:799 ../src/gnome/assistant-hierarchy.c:956
+#: ../src/gnome-utils/dialog-account.c:304
+#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:35
+msgid "Opening Balance"
+msgstr "Ã
bningssaldo"
-#: ../src/business/business-gnome/dialog-invoice.c:2824
-msgid "Date of duplicated entries"
-msgstr "Dato for duplikerede poster"
+#: ../src/app-utils/guile-util.c:906
+#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:8
+#: ../src/gnome/gnc-plugin-page-register2.c:2466
+#: ../src/gnome/gnc-plugin-page-register.c:2631
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3199
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3204
+#: ../src/register/ledger-core/split-register.c:2316
+#: ../src/report/standard-reports/general-journal.scm:88
+#: ../src/report/standard-reports/register.scm:373
+#: ../src/report/standard-reports/transaction.scm:461
+#: ../src/report/standard-reports/trial-balance.scm:658
+msgid "Debit"
+msgstr "Debet"
-#: ../src/business/business-gnome/dialog-invoice.c:2859
-msgid "Do you really want to post these invoices?"
-msgstr "Er du sikker på, at du vil bogføre disse fakturaer?"
+#: ../src/app-utils/guile-util.c:937
+#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:9
+#: ../src/gnome/gnc-plugin-page-register2.c:2463
+#: ../src/gnome/gnc-plugin-page-register.c:2627
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2898
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2917
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2935
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3118
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3123
+#: ../src/register/ledger-core/split-register.c:2339
+#: ../src/register/ledger-core/split-register.c:2436
+#: ../src/register/ledger-core/split-register.c:2455
+#: ../src/register/ledger-core/split-register.c:2473
+#: ../src/report/standard-reports/general-journal.scm:89
+#: ../src/report/standard-reports/register.scm:375
+#: ../src/report/standard-reports/transaction.scm:463
+#: ../src/report/standard-reports/trial-balance.scm:661
+msgid "Credit"
+msgstr "Kredit"
-#: ../src/business/business-gnome/dialog-invoice.c:2925
-msgid "View/Edit Invoice"
-msgstr "Vis/rediger faktura"
+#: ../src/app-utils/option-util.c:1685
+#, c-format
+msgid ""
+"There is a problem with option %s:%s.\n"
+"%s"
+msgstr ""
+"Der er et problem med tilvalg %s:%s.\n"
+"%s"
-#: ../src/business/business-gnome/dialog-invoice.c:2927
-#: ../src/business/business-gnome/dialog-invoice.c:2936
-#: ../src/business/business-gnome/dialog-invoice.c:2947
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:261
-#: ../src/gnome/gnc-plugin-page-register2.c:480
-#: ../src/gnome/gnc-plugin-page-register.c:483
-msgid "Duplicate"
-msgstr "Dublet"
+#: ../src/app-utils/prefs.scm:63
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3184
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3191
+msgid "Funds In"
+msgstr "Beløb ind"
-#: ../src/business/business-gnome/dialog-invoice.c:2928
-#: ../src/business/business-gnome/dialog-invoice.c:2937
-#: ../src/business/business-gnome/dialog-invoice.c:2948
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:265
-msgid "Post"
-msgstr "Bogfør"
-
-#: ../src/business/business-gnome/dialog-invoice.c:2929
-#: ../src/business/business-gnome/dialog-invoice.c:2938
-#: ../src/business/business-gnome/dialog-invoice.c:2949
-msgid "Printable Report"
-msgstr "Rapport til udskrivning"
-
-#: ../src/business/business-gnome/dialog-invoice.c:2934
-#: ../src/business/business-gnome/dialog-invoice.c:3198
-msgid "View/Edit Bill"
-msgstr "Vis/rediger regning"
-
-#. Translators: The terms 'Voucher' and 'Expense Voucher' are used
-#. interchangeably in gnucash and mean the same thing.
-#: ../src/business/business-gnome/dialog-invoice.c:2945
-msgid "View/Edit Voucher"
-msgstr "Vis/rediger bilag"
-
-#: ../src/business/business-gnome/dialog-invoice.c:2959
-msgid "Invoice Owner"
-msgstr "Fakturaejer"
-
-#. src/report/business-reports/easy-invoice.scm
-#. src/report/business-reports/fancy-invoice.scm
-#. src/report/business-reports/invoice.scm
-#: ../src/business/business-gnome/dialog-invoice.c:2962
-#: ../intl-scm/guile-strings.c:888
-#: ../intl-scm/guile-strings.c:1070
-#: ../intl-scm/guile-strings.c:1280
-msgid "Invoice Notes"
-msgstr "Fakturabemærkninger"
-
-#. src/report/business-reports/easy-invoice.scm
-#. src/report/business-reports/fancy-invoice.scm
-#. src/report/business-reports/invoice.scm
-#: ../src/business/business-gnome/dialog-invoice.c:2965
-#: ../src/business/business-gnome/dialog-invoice.c:2999
-#: ../src/business/business-gnome/dialog-invoice.c:3033
-#: ../src/business/business-gnome/dialog-invoice.c:3062
-#: ../src/business/business-gnome/dialog-job.c:562
-#: ../src/business/business-gnome/dialog-job.c:573
-#: ../src/business/business-gnome/dialog-order.c:883
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:11
-#: ../src/business/business-gnome/gtkbuilder/dialog-job.glade.h:6
-#: ../intl-scm/guile-strings.c:882
-#: ../intl-scm/guile-strings.c:950
-#: ../intl-scm/guile-strings.c:1064
-#: ../intl-scm/guile-strings.c:1274
-msgid "Billing ID"
-msgstr "Regnings-id"
-
-#: ../src/business/business-gnome/dialog-invoice.c:2968
-#: ../src/business/business-gnome/dialog-invoice.c:3002
-#: ../src/business/business-gnome/dialog-invoice.c:3036
-msgid "Is Paid?"
-msgstr "Er betalt?"
-
-#: ../src/business/business-gnome/dialog-invoice.c:2971
-#: ../src/business/business-gnome/dialog-invoice.c:3005
-#: ../src/business/business-gnome/dialog-invoice.c:3039
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:5
-#: ../src/gnome/dialog-find-transactions2.c:125
-#: ../src/gnome/dialog-find-transactions.c:124
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2820
-msgid "Date Posted"
-msgstr "Dato bogført"
-
-#: ../src/business/business-gnome/dialog-invoice.c:2974
-#: ../src/business/business-gnome/dialog-invoice.c:3008
-#: ../src/business/business-gnome/dialog-invoice.c:3042
-msgid "Is Posted?"
-msgstr "Er bogført?"
-
-#: ../src/business/business-gnome/dialog-invoice.c:2977
-#: ../src/business/business-gnome/dialog-invoice.c:3011
-#: ../src/business/business-gnome/dialog-invoice.c:3045
-#: ../src/business/business-gnome/dialog-order.c:872
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:4
-#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:3
-msgid "Date Opened"
-msgstr "Dato åbnet"
-
-#: ../src/business/business-gnome/dialog-invoice.c:2983
-#: ../src/business/business-gnome/dialog-invoice.c:3017
-msgid "Company Name "
-msgstr "Firmanavn "
-
-#: ../src/business/business-gnome/dialog-invoice.c:2987
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:3
-msgid "Invoice ID"
-msgstr "Faktura-id"
-
-#: ../src/business/business-gnome/dialog-invoice.c:2993
-msgid "Bill Owner"
-msgstr "Regningsejer"
-
-#: ../src/business/business-gnome/dialog-invoice.c:2996
-msgid "Bill Notes"
-msgstr "Bemærkninger til regning"
-
-#: ../src/business/business-gnome/dialog-invoice.c:3027
-msgid "Voucher Owner"
-msgstr "Bilagsejer"
-
-#: ../src/business/business-gnome/dialog-invoice.c:3030
-msgid "Voucher Notes"
-msgstr "Bemærkninger til bilag"
-
-#. src/report/business-reports/customer-summary.scm
-#. src/report/business-reports/job-report.scm
-#. src/report/business-reports/owner-report.scm
-#. src/report/standard-reports/account-summary.scm
-#. src/report/standard-reports/sx-summary.scm
-#: ../src/business/business-gnome/dialog-invoice.c:3064
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:2
-#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:7
-#: ../src/gnome/dialog-lot-viewer.c:831
-#: ../src/gnome/dialog-tax-info.c:1189
-#: ../src/gnome-utils/gnc-tree-view-account.c:732
-#: ../src/gnome-utils/gnc-tree-view-owner.c:403
-#: ../src/gnome-utils/gnc-tree-view-price.c:449
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2972
-#: ../src/import-export/csv-exp/csv-transactions-export.c:421
-#: ../src/register/ledger-core/split-register-model.c:346
-#: ../intl-scm/guile-strings.c:658
-#: ../intl-scm/guile-strings.c:1364
-#: ../intl-scm/guile-strings.c:1476
-#: ../intl-scm/guile-strings.c:2560
-#: ../intl-scm/guile-strings.c:4314
-msgid "Type"
-msgstr "Type"
-
-#: ../src/business/business-gnome/dialog-invoice.c:3066
-#: ../src/register/ledger-core/split-register-model.c:300
-msgid "Paid"
-msgstr "Betalt"
-
-#: ../src/business/business-gnome/dialog-invoice.c:3069
-msgid "Posted"
-msgstr "Bogført"
-
-#. src/report/business-reports/easy-invoice.scm
-#: ../src/business/business-gnome/dialog-invoice.c:3074
-#: ../src/business/business-gnome/dialog-invoice.c:3214
-#: ../intl-scm/guile-strings.c:946
-msgid "Due"
-msgstr "Forfalden"
-
-#: ../src/business/business-gnome/dialog-invoice.c:3076
-#: ../src/business/business-gnome/dialog-order.c:890
-#: ../src/gnome/dialog-lot-viewer.c:837
-msgid "Opened"
-msgstr "Ã
bnet"
-
-#. src/report/standard-reports/general-journal.scm
-#. src/report/standard-reports/general-ledger.scm
-#. src/report/standard-reports/register.scm
-#. src/report/standard-reports/transaction.scm
-#: ../src/business/business-gnome/dialog-invoice.c:3078
-#: ../src/business/business-gnome/dialog-order.c:892
-#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:19
-#: ../src/gnome/dialog-lot-viewer.c:914
-#: ../src/gnome/reconcile-view.c:377
-#: ../src/import-export/csv-imp/gnc-csv-model.c:46
-#: ../src/register/ledger-core/split-register-model.c:246
-#: ../src/register/ledger-core/split-register-model.c:266
-#: ../intl-scm/guile-strings.c:3556
-#: ../intl-scm/guile-strings.c:3584
-#: ../intl-scm/guile-strings.c:4070
-#: ../intl-scm/guile-strings.c:4122
-#: ../intl-scm/guile-strings.c:4364
-#: ../intl-scm/guile-strings.c:4368
-#: ../intl-scm/guile-strings.c:4444
-#: ../intl-scm/guile-strings.c:4708
-msgid "Num"
-msgstr "Nr."
-
-#: ../src/business/business-gnome/dialog-invoice.c:3159
-msgid "Find Bill"
-msgstr "Find regning"
-
-#: ../src/business/business-gnome/dialog-invoice.c:3165
-msgid "Find Expense Voucher"
-msgstr "Find udgiftsbilag"
-
-#. src/report/business-reports/easy-invoice.scm
-#. src/report/business-reports/fancy-invoice.scm
-#. src/report/business-reports/invoice.scm
-#: ../src/business/business-gnome/dialog-invoice.c:3166
-#: ../src/gnome-search/dialog-search.c:1031
-#: ../intl-scm/guile-strings.c:934
-#: ../intl-scm/guile-strings.c:1144
-#: ../intl-scm/guile-strings.c:1326
-msgid "Expense Voucher"
-msgstr "Udgiftsbilag"
-
-#: ../src/business/business-gnome/dialog-invoice.c:3171
-msgid "Find Invoice"
-msgstr "Find faktura"
-
-#. Translators: This abbreviation is the column heading for
-#. the condition "Is this invoice a Credit Note?"
-#: ../src/business/business-gnome/dialog-invoice.c:3208
-msgid "CN?"
-msgstr ""
-
-#. src/report/business-reports/customer-summary.scm
-#. src/report/business-reports/job-report.scm
-#. src/report/business-reports/owner-report.scm
-#. src/report/report-system/options-utilities.scm
-#. src/report/standard-reports/general-journal.scm
-#. src/report/standard-reports/general-ledger.scm
-#. src/report/standard-reports/register.scm
-#. src/report/standard-reports/transaction.scm
-#: ../src/business/business-gnome/dialog-invoice.c:3210
-#: ../src/gnome/dialog-lot-viewer.c:926
-#: ../src/gnome/reconcile-view.c:370
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2992
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3004
-#: ../src/import-export/aqb/dialog-ab.glade.h:34
-#: ../src/import-export/import-main-matcher.c:484
-#: ../src/import-export/import-match-picker.c:345
-#: ../src/import-export/import-match-picker.c:385
-#: ../src/import-export/qif-imp/assistant-qif-import.c:3501
-#: ../src/import-export/qif-imp/assistant-qif-import.c:3538
-#: ../intl-scm/guile-strings.c:662
-#: ../intl-scm/guile-strings.c:1368
-#: ../intl-scm/guile-strings.c:1484
-#: ../intl-scm/guile-strings.c:2262
-#: ../intl-scm/guile-strings.c:3566
-#: ../intl-scm/guile-strings.c:3606
-#: ../intl-scm/guile-strings.c:4164
-#: ../intl-scm/guile-strings.c:4214
-#: ../intl-scm/guile-strings.c:4396
-#: ../intl-scm/guile-strings.c:4462
-#: ../intl-scm/guile-strings.c:4568
-#: ../intl-scm/guile-strings.c:4624
-#: ../intl-scm/guile-strings.c:4770
-msgid "Amount"
-msgstr "Beløb"
-
-#. Translators: %d is the number of bills due. This is a
-#. ngettext(3) message.
-#: ../src/business/business-gnome/dialog-invoice.c:3264
-#, c-format
-msgid "The following bill is due:"
-msgid_plural "The following %d bills are due:"
-msgstr[0] "Den følgende regning er forfalden:"
-msgstr[1] "De følgende %d regninger er forfaldne:"
-
-#: ../src/business/business-gnome/dialog-invoice.c:3269
-msgid "Due Bills Reminder"
-msgstr "PÃ¥mindelse om forfaldne regninger"
-
-#: ../src/business/business-gnome/dialog-job.c:135
-msgid "The Job must be given a name."
-msgstr "Jobbet skal have et navn."
-
-#: ../src/business/business-gnome/dialog-job.c:145
-msgid "You must choose an owner for this job."
-msgstr "Du skal vælge en ejer for dette job."
-
-#: ../src/business/business-gnome/dialog-job.c:245
-msgid "Edit Job"
-msgstr "Rediger job"
-
-#: ../src/business/business-gnome/dialog-job.c:247
-#: ../src/gnome-search/dialog-search.c:1041
-msgid "New Job"
-msgstr "Nyt job"
-
-#: ../src/business/business-gnome/dialog-job.c:547
-msgid "View/Edit Job"
-msgstr "Vis/rediger job"
-
-#: ../src/business/business-gnome/dialog-job.c:548
-msgid "View Invoices"
-msgstr "Vis fakturaer"
-
-#: ../src/business/business-gnome/dialog-job.c:558
-msgid "Owner's Name"
-msgstr "Ejers navn"
-
-#: ../src/business/business-gnome/dialog-job.c:560
-msgid "Only Active?"
-msgstr "Kun aktive?"
-
-#: ../src/business/business-gnome/dialog-job.c:564
-#: ../src/business/business-gnome/gtkbuilder/dialog-job.glade.h:2
-msgid "Job Number"
-msgstr "Jobnummer"
-
-#: ../src/business/business-gnome/dialog-job.c:566
-#: ../src/business/business-gnome/dialog-job.c:577
-#: ../src/business/business-gnome/gtkbuilder/dialog-job.glade.h:3
-msgid "Job Name"
-msgstr "Jobnavn"
-
-#: ../src/business/business-gnome/dialog-job.c:628
-msgid "Find Job"
-msgstr "Find job"
-
-#: ../src/business/business-gnome/dialog-order.c:171
-msgid "The Order must be given an ID."
-msgstr "Ordren skal have et id."
-
-#: ../src/business/business-gnome/dialog-order.c:277
-msgid "The Order must have at least one Entry."
-msgstr "Ordren skal have mindst en post."
-
-#. Damn; yes. Well, ask the user to make sure they REALLY want to
-#. * close this order!
-#.
-#: ../src/business/business-gnome/dialog-order.c:299
-msgid "This order contains entries that have not been invoiced. Are you sure you want to close it out before you invoice all the entries?"
-msgstr "Denne ordre indeholder poster som endnu ikke er blevet faktureret. Er du sikker på, at du vil lukke den, før alle poster er blevet faktureret?"
-
-#. Ok, we can close this. Ask for verification and set the closed date
-#: ../src/business/business-gnome/dialog-order.c:308
-msgid "Do you really want to close the order?"
-msgstr "Er du sikker på, at du vil lukke ordren?"
-
-#: ../src/business/business-gnome/dialog-order.c:309
-msgid "Close Date"
-msgstr "Lukningsdato"
-
-#: ../src/business/business-gnome/dialog-order.c:857
-msgid "View/Edit Order"
-msgstr "Vis/rediger ordre"
-
-#: ../src/business/business-gnome/dialog-order.c:866
-msgid "Order Notes"
-msgstr "Ordrebemærkninger"
-
-#: ../src/business/business-gnome/dialog-order.c:868
-#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:13
-msgid "Date Closed"
-msgstr "Dato lukket"
-
-#: ../src/business/business-gnome/dialog-order.c:870
-msgid "Is Closed?"
-msgstr "Er lukket?"
-
-#: ../src/business/business-gnome/dialog-order.c:874
-msgid "Owner Name "
-msgstr "Ejernavn "
-
-#: ../src/business/business-gnome/dialog-order.c:876
-#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:2
-msgid "Order ID"
-msgstr "Ordre-id"
-
-#: ../src/business/business-gnome/dialog-order.c:888
-#: ../src/gnome/dialog-lot-viewer.c:847
-msgid "Closed"
-msgstr "Lukket"
-
-#: ../src/business/business-gnome/dialog-order.c:946
-msgid "Find Order"
-msgstr "Find ordre"
-
-#: ../src/business/business-gnome/dialog-payment.c:184
-msgid "You must enter a valid account name for posting."
-msgstr "Du skal indtaste et gyldigt kontonavn for bogføring."
-
-#: ../src/business/business-gnome/dialog-payment.c:192
-msgid "You must select a company for payment processing."
-msgstr "Du skal vælge et firma til betalingsprocessen."
-
-#: ../src/business/business-gnome/dialog-payment.c:213
-msgid "You must select a transfer account from the account tree."
-msgstr "Du skal vælge en overførselskonto fra kontotræet."
-
-#: ../src/business/business-gnome/dialog-payment.c:404
-msgid "Pre-Payment"
-msgstr "Forudbetaling"
-
-#: ../src/business/business-gnome/dialog-payment.c:678
-msgid "The transfer and post accounts are associated with different currencies. Please specify the conversion rate."
-msgstr "Overførsel- og bogføringskonti er forbundet med forskellige valutaer. Angiv venligst konverteringsforholdet."
-
-#: ../src/business/business-gnome/dialog-payment.c:1070
-#, c-format
-msgid "You have no valid \"Post To\" accounts. Please create an account of type \"%s\" before you continue to process this payment. Perhaps you want to create an Invoice or Bill first?"
-msgstr "Du har ingen gyldige »Bogfør på«-konti. Opret venligst en konto af typen »%s« før du fortsætter med at behandle denne betaling. Måske du først skal oprette en faktura eller regning?"
-
-#: ../src/business/business-gnome/dialog-vendor.c:214
-msgid ""
-"You must enter a company name. If this vendor is an individual (and not a company) you should enter the same value for:\n"
-"Identification - Company Name, and\n"
-"Payment Address - Name."
-msgstr ""
-"Du skal indtaste et firmanavn. Hvis denne leverandør er en person (og ikke et firma) skal du indtaste den samme værdi for:\n"
-"Identifikation - firmanavn og\n"
-"Betalingsadresse - navn."
-
-#: ../src/business/business-gnome/dialog-vendor.c:226
-msgid "You must enter a payment address."
-msgstr "Du skal indtaste en betalingsadresse."
-
-#: ../src/business/business-gnome/dialog-vendor.c:306
-msgid "Edit Vendor"
-msgstr "Rediger leverandør"
-
-#: ../src/business/business-gnome/dialog-vendor.c:308
-#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:1
-#: ../src/gnome-search/dialog-search.c:1057
-msgid "New Vendor"
-msgstr "Ny leverandør"
-
-#: ../src/business/business-gnome/dialog-vendor.c:708
-msgid "View/Edit Vendor"
-msgstr "Vis/Rediger leverandør"
-
-#: ../src/business/business-gnome/dialog-vendor.c:709
-msgid "Vendor's Jobs"
-msgstr "Leverandørs job"
-
-#. { N_("Vendor Orders"), order_vendor_cb, NULL, TRUE},
-#: ../src/business/business-gnome/dialog-vendor.c:711
-msgid "Vendor's Bills"
-msgstr "Leverandørs regninger"
-
-#: ../src/business/business-gnome/dialog-vendor.c:712
-msgid "Pay Bill"
-msgstr "Betal regning"
-
-#: ../src/business/business-gnome/dialog-vendor.c:724
-msgid "Vendor ID"
-msgstr "Leverandør-id"
-
-#: ../src/business/business-gnome/dialog-vendor.c:759
-msgid "Find Vendor"
-msgstr "Find leverandør"
-
-#. * @}
-#. For the grep-happy:
-#. * KVP-OPTION-PATH
-#. * OPTION-SECTION-ACCOUNTS
-#. * OPTION-NAME-TRADING-ACCOUNTS
-#. * OPTION-NAME-AUTO-READONLY-DAYS
-#. * OPTION-NAME_NUM-FIELD-SOURCE
-#. * OPTION-SECTION-BUDGETING
-#. * OPTION-NAME-DEFAULT-BUDGET
-#.
-#. src/app-utils/app-utils.scm
-#: ../src/business/business-gnome/gncmod-business-gnome.c:117
-#: ../intl-scm/guile-strings.c:2
-msgid "Business"
-msgstr "Forretning"
-
-#. Toplevel
-#. Extensions Menu
-#. src/report/report-system/report.scm
-#: ../src/business/business-gnome/gnc-plugin-business.c:150
-#: ../src/business/business-gnome/gnc-plugin-business.c:290
-#: ../intl-scm/guile-strings.c:2316
-msgid "_Business"
-msgstr "_Forretning"
-
-#. Customer submenu
-#: ../src/business/business-gnome/gnc-plugin-business.c:153
-msgid "_Customer"
-msgstr "_Kunde"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:155
-msgid "Customers Overview"
-msgstr "Kundeoverblik"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:156
-msgid "Open a Customer overview page"
-msgstr "Ã
bn vinduet Kundeoverblik"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:160
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:161
-msgid "_New Customer..."
-msgstr "_Ny kunde..."
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:161
-msgid "Open the New Customer dialog"
-msgstr "Ã
bn vinduet Ny kunde"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:165
-msgid "_Find Customer..."
-msgstr "_Find kunde..."
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:166
-msgid "Open the Find Customer dialog"
-msgstr "Ã
bn vinduet Find kunde"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:170
-#: ../src/business/business-gnome/gnc-plugin-business.c:304
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:192
-msgid "New _Invoice..."
-msgstr "Ny _faktura..."
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:171
-#: ../src/business/business-gnome/gnc-plugin-business.c:305
-msgid "Open the New Invoice dialog"
-msgstr "Ã
bn vinduet Ny faktura"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:175
-msgid "Find In_voice..."
-msgstr "Find fakt_ura..."
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:176
-msgid "Open the Find Invoice dialog"
-msgstr "Ã
bn vinduet Find faktura"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:180
-#: ../src/business/business-gnome/gnc-plugin-business.c:223
-msgid "New _Job..."
-msgstr "Nyt _job..."
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:181
-#: ../src/business/business-gnome/gnc-plugin-business.c:224
-msgid "Open the New Job dialog"
-msgstr "Ã
bn vinduet Nyt job"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:185
-#: ../src/business/business-gnome/gnc-plugin-business.c:228
-msgid "Find Jo_b..."
-msgstr "Find jo_b..."
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:186
-#: ../src/business/business-gnome/gnc-plugin-business.c:229
-msgid "Open the Find Job dialog"
-msgstr "Ã
bn vinduet Find job"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:190
-#: ../src/business/business-gnome/gnc-plugin-business.c:233
-#: ../src/business/business-gnome/gnc-plugin-business.c:266
-msgid "_Process Payment..."
-msgstr "_Behandl betaling..."
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:191
-#: ../src/business/business-gnome/gnc-plugin-business.c:234
-#: ../src/business/business-gnome/gnc-plugin-business.c:267
-msgid "Open the Process Payment dialog"
-msgstr "Ã
bn vinduet Behandl betaling"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:197
-msgid "Vendors Overview"
-msgstr "Leverandøroverblik"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:198
-msgid "Open a Vendor overview page"
-msgstr "Ã
bn vinduet Leverandøroverblik"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:201
-msgid "_Vendor"
-msgstr "_Leverandør"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:203
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:156
-msgid "_New Vendor..."
-msgstr "_Ny leverandør..."
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:204
-msgid "Open the New Vendor dialog"
-msgstr "Ã
bn vinduet Ny leverandør"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:208
-msgid "_Find Vendor..."
-msgstr "_Find leverandør..."
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:209
-msgid "Open the Find Vendor dialog"
-msgstr "Ã
bn vinduet Find ny leverandør"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:213
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:187
-msgid "New _Bill..."
-msgstr "Ny _Regning..."
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:214
-msgid "Open the New Bill dialog"
-msgstr "Ã
bn vinduet Ny regning"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:218
-msgid "Find Bi_ll..."
-msgstr "Find regn_ing..."
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:219
-msgid "Open the Find Bill dialog"
-msgstr "Ã
bn vinduet Find regning"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:240
-msgid "Employees Overview"
-msgstr "Medarbejderoverblik"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:241
-msgid "Open a Employee overview page"
-msgstr "Ã
bn vinduet Medarbejderoverblik"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:244
-msgid "_Employee"
-msgstr "M_edarbejder"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:246
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:166
-msgid "_New Employee..."
-msgstr "_Ny medarbejder..."
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:247
-msgid "Open the New Employee dialog"
-msgstr "Ã
bn vinduet Ny medarbejder"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:251
-msgid "_Find Employee..."
-msgstr "_Find medarbejder..."
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:252
-msgid "Open the Find Employee dialog"
-msgstr "Ã
bn vinduet Find medarbejder"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:256
-msgid "New _Expense Voucher..."
-msgstr "Nyt _udgiftsbilag..."
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:257
-msgid "Open the New Expense Voucher dialog"
-msgstr "Ã
bn vinduet Nyt udgiftsbilag"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:261
-msgid "Find Expense _Voucher..."
-msgstr "Find _udgiftsbilag..."
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:262
-msgid "Open the Find Expense Voucher dialog"
-msgstr "Ã
bn vinduet Find udgiftsbilag"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:273
-msgid "Sales _Tax Table"
-msgstr "_Skattetabel for salg"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:274
-msgid "View and edit the list of Sales Tax Tables (GST/VAT)"
-msgstr "Vis og rediger listen af salgsskattetabeller (GST/VAT)"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:278
-msgid "_Billing Terms Editor"
-msgstr "Redigering af fakturerings_betingelser"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:279
-msgid "View and edit the list of Billing Terms"
-msgstr "Vis og rediger listen af faktureringsbetingelser"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:283
-msgid "Bills _Due Reminder"
-msgstr "PÃ¥mindelse om forfal_dne regninger"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:284
-msgid "Open the Bills Due Reminder dialog"
-msgstr "Ã
bn vinduet for påmindelse om forfaldne regninger"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:287
-msgid "E_xport"
-msgstr "E_ksporter"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:292
-#: ../src/business/business-gnome/gnc-plugin-business.c:293
-msgid "Test Search Dialog"
-msgstr "Testsøgningsvindue"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:297
-#: ../src/business/business-gnome/gnc-plugin-business.c:298
-msgid "Initialize Test Data"
-msgstr "Initialiser testdata"
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:311
-msgid "Assign as payment..."
-msgstr "Tildel som betaling ..."
-
-#: ../src/business/business-gnome/gnc-plugin-business.c:312
-msgid "Assign the selected transaction as payment"
-msgstr "Tildel den valgte transaktion som betaling"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:98
-msgid "Sort _Order"
-msgstr "Sorterings_orden"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:102
-#: ../src/gnome/gnc-plugin-page-account-tree.c:165
-msgid "New _Account..."
-msgstr "Ny _konto..."
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:103
-msgid "Create a new account"
-msgstr "Opret en ny konto"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:107
-msgid "Print Invoice"
-msgstr "Udskriv faktura"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:108
-msgid "Make a printable invoice"
-msgstr "Opret en udskriftsvenlig faktura"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:114
-msgid "_Cut"
-msgstr "_Klip"
-
-# kopi eller kopier
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:119
-msgid "Copy"
-msgstr "Kopi"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:124
-#: ../src/gnome/gnc-plugin-page-register2.c:236
-#: ../src/gnome/gnc-plugin-page-register.c:241
-#: ../src/gnome-utils/gnc-main-window.c:315
-#: ../src/report/report-gnome/gnc-plugin-page-report.c:1028
-msgid "_Paste"
-msgstr "_Indsæt"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:129
-msgid "_Edit Invoice"
-msgstr "R_ediger faktura"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:130
-msgid "Edit this invoice"
-msgstr "Redigér denne faktura"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:134
-msgid "_Duplicate Invoice"
-msgstr "_Dupliker faktura"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:135
-msgid "Create a new invoice as a duplicate of the current one"
-msgstr "Opret en ny faktura som en duplikat af den aktuelle"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:139
-msgid "_Post Invoice"
-msgstr "_Bogfør faktura"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:140
-msgid "Post this Invoice to your Chart of Accounts"
-msgstr "Lås denne faktura på kontoplanen"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:144
-msgid "_Unpost Invoice"
-msgstr "_Ã
bn faktura"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:145
-msgid "Unpost this Invoice and make it editable"
-msgstr "Ã
bn denne faktura og gør den redigerbar"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:151
-msgid "_Enter"
-msgstr "_Retur"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:152
-msgid "Record the current entry"
-msgstr "Gem den aktuelle post"
-
-#. Add the Cancel button for the matcher
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:156
-#: ../src/gnome/window-reconcile2.c:2166
-#: ../src/gnome/window-reconcile.c:2166
-#: ../src/import-export/csv-imp/assistant-csv-trans-import.c:1470
-msgid "_Cancel"
-msgstr "_Annullér"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:157
-msgid "Cancel the current entry"
-msgstr "Afbryd den aktuelle post"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:161
-#: ../src/gnome/gnc-plugin-page-sx-list.c:158
-#: ../src/gnome/window-reconcile2.c:2208
-#: ../src/gnome/window-reconcile.c:2208
-msgid "_Delete"
-msgstr "_Slet"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:162
-msgid "Delete the current entry"
-msgstr "Slet den nuværende post"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:166
-msgid "_Blank"
-msgstr "_Tom"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:167
-msgid "Move to the blank entry at the bottom of the Invoice"
-msgstr "Flyt til den tomme post i slutningen af fakturaen"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:171
-msgid "Dup_licate Entry"
-msgstr "_Duplikatpost"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:172
-msgid "Make a copy of the current entry"
-msgstr "Lav en kopi af den nuværende post"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:176
-msgid "Move Entry _Up"
-msgstr "Flyt post _op"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:177
-msgid "Move the current entry one row upwards"
-msgstr "Flyt den nuværende post en række op"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:181
-msgid "Move Entry Do_wn"
-msgstr "Flyt post _ned"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:182
-msgid "Move the current entry one row downwards"
-msgstr "Flyt den nuværende post en række ned"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:188
-msgid "New _Invoice"
-msgstr "Ny _faktura"
-
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:189
-msgid "Create a new invoice for the same owner as the current one"
-msgstr "Opret en ny faktura for den samme ejer som den aktuelle"
+#: ../src/app-utils/prefs.scm:64
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3133
+#: ../src/import-export/csv-imp/gnc-csv-model.c:50
+msgid "Deposit"
+msgstr "Indsæt"
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:193
-msgid "_Pay Invoice"
-msgstr "_Betal faktura"
+#: ../src/app-utils/prefs.scm:65
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3138
+msgid "Receive"
+msgstr "Modtag"
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:194
-msgid "Enter a payment for the owner of this Invoice"
-msgstr "Indtast en betaling for ejeren af denne faktura"
+#. set per book option
+#. Mark the transaction as a payment
+#: ../src/app-utils/prefs.scm:66 ../src/app-utils/prefs.scm:74
+#: ../src/app-utils/prefs.scm:92
+#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:17
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:131
+#: ../src/engine/gncOwner.c:765 ../src/engine/gncOwner.c:800
+#: ../src/engine/gncOwner.c:825 ../src/engine/gncOwner.c:838
+#: ../src/gnome/assistant-loan.c:1836 ../src/gnome/assistant-loan.c:2744
+#: ../src/gnome/assistant-loan.c:2806 ../src/gnome/assistant-loan.c:2819
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2887
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2928
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2933
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2944
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3093
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3179
+#: ../src/register/ledger-core/split-register.c:2425
+#: ../src/register/ledger-core/split-register.c:2466
+#: ../src/register/ledger-core/split-register.c:2471
+#: ../src/register/ledger-core/split-register.c:2482
+#: ../src/report/business-reports/customer-summary.scm:222
+#: ../src/report/business-reports/customer-summary.scm:223
+#: ../src/report/business-reports/owner-report.scm:345
+msgid "Payment"
+msgstr "Betaling"
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:200
-msgid "_Company Report"
-msgstr "_Firmarapport"
+#: ../src/app-utils/prefs.scm:67 ../src/app-utils/prefs.scm:85
+#: ../src/app-utils/prefs.scm:93 ../src/app-utils/prefs.scm:94
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2889
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2903
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2939
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2950
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2983
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3065
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3143
+#: ../src/register/ledger-core/split-register.c:2427
+#: ../src/register/ledger-core/split-register.c:2441
+#: ../src/register/ledger-core/split-register.c:2477
+#: ../src/register/ledger-core/split-register.c:2488
+#: ../src/register/ledger-core/split-register.c:2521
+msgid "Increase"
+msgstr "Forøg"
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:201
-msgid "Open a company report window for the owner of this Invoice"
-msgstr "Ã
bn et firmarapportvindue for ejeren af denne faktura"
+#: ../src/app-utils/prefs.scm:68 ../src/app-utils/prefs.scm:76
+#: ../src/app-utils/prefs.scm:77 ../src/app-utils/prefs.scm:84
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2890
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2904
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2940
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2951
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2984
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3058
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3150
+#: ../src/register/ledger-core/split-register.c:2428
+#: ../src/register/ledger-core/split-register.c:2442
+#: ../src/register/ledger-core/split-register.c:2478
+#: ../src/register/ledger-core/split-register.c:2489
+#: ../src/register/ledger-core/split-register.c:2522
+msgid "Decrease"
+msgstr "Sænk"
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:209
-msgid "_Standard"
-msgstr "_Standard"
+#: ../src/app-utils/prefs.scm:69 ../src/app-utils/prefs.scm:70
+#: ../src/app-utils/prefs.scm:71
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2905
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2909
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2916
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2924
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2941
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2952
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2957
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2964
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2985
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3168
+#: ../src/register/ledger-core/split-register.c:2443
+#: ../src/register/ledger-core/split-register.c:2447
+#: ../src/register/ledger-core/split-register.c:2454
+#: ../src/register/ledger-core/split-register.c:2462
+#: ../src/register/ledger-core/split-register.c:2479
+#: ../src/register/ledger-core/split-register.c:2490
+#: ../src/register/ledger-core/split-register.c:2495
+#: ../src/register/ledger-core/split-register.c:2523
+msgid "Buy"
+msgstr "Køb"
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:209
-msgid "Keep normal invoice order"
-msgstr "Behold normal fakturarækkefølge"
+#: ../src/app-utils/prefs.scm:72 ../src/app-utils/prefs.scm:83
+#: ../src/business/business-ledger/gncEntryLedgerLoad.c:135
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:532
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:1130
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2886
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3070
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3156
+#: ../src/register/ledger-core/split-register.c:2424
+#: ../src/report/standard-reports/register.scm:826
+msgid "Charge"
+msgstr "Afgift"
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:210
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:29
-msgid "_Date"
-msgstr "_Dato"
+#: ../src/app-utils/prefs.scm:73 ../src/engine/Account.c:3950
+#: ../src/engine/gncInvoice.c:973
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3161
+#: ../src/report/business-reports/customer-summary.scm:462
+#: ../src/report/business-reports/customer-summary.scm:847
+#: ../src/report/standard-reports/net-barchart.scm:351
+#: ../src/report/standard-reports/net-barchart.scm:413
+#: ../src/report/standard-reports/net-linechart.scm:389
+#: ../src/report/standard-reports/net-linechart.scm:462
+msgid "Expense"
+msgstr "Omkostning"
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:210
-msgid "Sort by date"
-msgstr "Sortér efter dato"
+#. page / name / orderkey / tooltip / default
+#: ../src/app-utils/prefs.scm:75
+#: ../src/business/business-gnome/business-gnome-utils.c:225
+#: ../src/business/business-gnome/dialog-invoice.c:3172
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:383
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:1
+#: ../src/engine/gncInvoice.c:969 ../src/gnome-search/dialog-search.c:1069
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2932
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3173
+#: ../src/plugins/bi_import/gtkbuilder/dialog-bi-import-gui.glade.h:5
+#: ../src/register/ledger-core/split-register.c:2470
+#: ../src/report/business-reports/customer-summary.scm:509
+#: ../src/report/business-reports/easy-invoice.scm:692
+#: ../src/report/business-reports/fancy-invoice.scm:791
+#: ../src/report/business-reports/invoice.scm:658
+#: ../src/report/business-reports/job-report.scm:423
+#: ../src/report/business-reports/job-report.scm:427
+#: ../src/report/business-reports/taxinvoice.eguile.scm:114
+#: ../src/report/business-reports/taxinvoice.scm:203
+#: ../src/report/report-gnome/gnc-plugin-page-report.c:1698
+#: ../src/report/standard-reports/register.scm:813
+msgid "Invoice"
+msgstr "Faktura"
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:211
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:31
-msgid "Date of _Entry"
-msgstr "_Indtastningsdato"
+#: ../src/app-utils/prefs.scm:80
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3103
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3110
+msgid "Funds Out"
+msgstr "Beløb ud"
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:211
-msgid "Sort by the date of entry"
-msgstr "Sorter efter indtastningsdato"
+#: ../src/app-utils/prefs.scm:81
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3048
+#: ../src/import-export/csv-imp/gnc-csv-model.c:51
+msgid "Withdrawal"
+msgstr "Udtræk"
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:212
-msgid "_Quantity"
-msgstr "_Kvantitet"
+#: ../src/app-utils/prefs.scm:82
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3053
+msgid "Spend"
+msgstr "Forbrug"
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:212
-msgid "Sort by quantity"
-msgstr "Sorter efter kvantiet"
+#: ../src/app-utils/prefs.scm:86 ../src/app-utils/prefs.scm:87
+#: ../src/app-utils/prefs.scm:88
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2906
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2910
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2921
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2925
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2942
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2953
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2958
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2965
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2986
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3088
+#: ../src/register/ledger-core/split-register.c:2444
+#: ../src/register/ledger-core/split-register.c:2448
+#: ../src/register/ledger-core/split-register.c:2459
+#: ../src/register/ledger-core/split-register.c:2463
+#: ../src/register/ledger-core/split-register.c:2480
+#: ../src/register/ledger-core/split-register.c:2491
+#: ../src/register/ledger-core/split-register.c:2496
+#: ../src/register/ledger-core/split-register.c:2524
+msgid "Sell"
+msgstr "Sælg"
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:213
-#: ../src/gnome-utils/gnc-tree-util-split-reg.c:1163
-#: ../src/gnome-utils/gnc-tree-util-split-reg.c:1165
-#: ../src/register/ledger-core/split-register.c:1934
-#: ../src/register/ledger-core/split-register.c:1937
-msgid "_Price"
-msgstr "_Pris"
+#: ../src/app-utils/prefs.scm:89 ../src/engine/Account.c:3949
+#: ../src/engine/Scrub.c:393 ../src/gnome/gnc-budget-view.c:353
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2975
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3076
+#: ../src/import-export/qif-imp/qif-dialog-utils.scm:13
+#: ../src/import-export/qif-imp/qif-dialog-utils.scm:19
+#: ../src/import-export/qif-imp/qif-dialog-utils.scm:28
+#: ../src/import-export/qif-imp/qif-dialog-utils.scm:34
+#: ../src/import-export/qif-imp/qif-dialog-utils.scm:40
+#: ../src/import-export/qif-imp/qif-dialog-utils.scm:46
+#: ../src/register/ledger-core/split-register.c:2513
+#: ../src/report/report-system/report-utilities.scm:117
+#: ../src/report/standard-reports/advanced-portfolio.scm:1078
+#: ../src/report/standard-reports/net-barchart.scm:351
+#: ../src/report/standard-reports/net-barchart.scm:413
+#: ../src/report/standard-reports/net-linechart.scm:389
+#: ../src/report/standard-reports/net-linechart.scm:462
+msgid "Income"
+msgstr "Indtægt"
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:213
-msgid "Sort by price"
-msgstr "Sorter efter pris"
+#: ../src/app-utils/prefs.scm:90
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2945
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3081
+#: ../src/register/ledger-core/split-register.c:2483
+msgid "Rebate"
+msgstr "Rabat"
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:214
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:41
-msgid "Descri_ption"
-msgstr "_Beskrivelse"
+#: ../src/app-utils/prefs.scm:91
+#: ../src/business/business-gnome/business-gnome-utils.c:219
+#: ../src/business/business-gnome/dialog-invoice.c:2342
+#: ../src/business/business-gnome/dialog-invoice.c:2518
+#: ../src/business/business-gnome/dialog-invoice.c:2519
+#: ../src/business/business-gnome/dialog-invoice.c:3160
+#: ../src/engine/gncInvoice.c:971 ../src/gnome-search/dialog-search.c:1053
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3098
+#: ../src/plugins/bi_import/gtkbuilder/dialog-bi-import-gui.glade.h:3
+#: ../src/report/business-reports/customer-summary.scm:513
+#: ../src/report/business-reports/easy-invoice.scm:710
+#: ../src/report/business-reports/fancy-invoice.scm:809
+#: ../src/report/business-reports/invoice.scm:679
+#: ../src/report/business-reports/job-report.scm:431
+msgid "Bill"
+msgstr "Regning"
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:214
-msgid "Sort by description"
-msgstr "Sortér efter beskrivelse"
+#: ../src/bin/gnucash-bin.c:96
+msgid "Show GnuCash version"
+msgstr "Vis GnuCash's version"
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:258
-#: ../src/gnome/gnc-plugin-page-register2.c:477
-#: ../src/gnome/gnc-plugin-page-register.c:480
-msgid "Enter"
-msgstr "Retur"
+#: ../src/bin/gnucash-bin.c:101
+msgid "Enable debugging mode: increasing logging to provide deep detail."
+msgstr "SlÃ¥ fejlsøgningstilstand til: Ãger logning for at fÃ¥ flere detaljer."
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:259
-#: ../src/gnome/gnc-plugin-page-register2.c:478
-#: ../src/gnome/gnc-plugin-page-register.c:481
-#: ../src/gnome-utils/gnc-cell-renderer-date.c:158
-msgid "Cancel"
-msgstr "Annullér"
+#: ../src/bin/gnucash-bin.c:106
+msgid "Enable extra/development/debugging features."
+msgstr "Slå ekstra/udvikling/fejlsøgningsegenskaber til."
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:260
-#: ../src/gnome/gnc-plugin-page-account-tree.c:345
-#: ../src/gnome/gnc-plugin-page-budget.c:177
-#: ../src/gnome/gnc-plugin-page-register2.c:479
-#: ../src/gnome/gnc-plugin-page-register.c:482
-msgid "Delete"
-msgstr "Slet"
+#: ../src/bin/gnucash-bin.c:111
+msgid "Log level overrides, of the form \"log.ger.path={debug,info,warn,crit,error}\""
+msgstr ""
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:262
-#: ../src/gnome/gnc-plugin-page-register2.c:486
-msgid "Up"
-msgstr "Op"
+#: ../src/bin/gnucash-bin.c:117
+msgid "File to log into; defaults to \"/tmp/gnucash.trace\"; can be \"stderr\" or \"stdout\"."
+msgstr ""
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:263
-#: ../src/gnome/gnc-plugin-page-register2.c:487
-msgid "Down"
-msgstr "Ned"
+#: ../src/bin/gnucash-bin.c:123
+msgid "Do not load the last file opened"
+msgstr "Indlæs ikke den sidst åbnede fil"
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:264
-#: ../src/gnome/gnc-plugin-page-register2.c:483
-#: ../src/gnome/gnc-plugin-page-register.c:486
-msgid "Blank"
-msgstr "Tom"
+#: ../src/bin/gnucash-bin.c:127
+msgid "Set the prefix for gsettings schemas for gsettings queries. This can be useful to have a different settings tree while debugging."
+msgstr ""
-#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:266
-msgid "Unpost"
-msgstr "Ã
bn"
+#. Translators: Argument description for autohelp; see
+#. http://developer.gnome.org/doc/API/2.0/glib/glib-Commandline-option-parser.html
+#: ../src/bin/gnucash-bin.c:130
+msgid "GSETTINGSPREFIX"
+msgstr ""
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:141
-msgid "E_dit Vendor"
-msgstr "R_ediger leverandør"
+#: ../src/bin/gnucash-bin.c:134
+msgid "Add price quotes to given GnuCash datafile"
+msgstr "Tilføj pristilbud til en given GnuCash-datafil"
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:142
-msgid "Edit the selected vendor"
-msgstr "Rediger den valgte leverandør"
+#. Translators: Argument description for autohelp; see
+#. http://developer.gnome.org/doc/API/2.0/glib/glib-Commandline-option-parser.html
+#: ../src/bin/gnucash-bin.c:137
+msgid "FILE"
+msgstr "FIL"
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:146
-msgid "E_dit Customer"
-msgstr "Re_diger kunde"
+#: ../src/bin/gnucash-bin.c:141
+msgid "Regular expression determining which namespace commodities will be retrieved"
+msgstr ""
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:147
-msgid "Edit the selected customer"
-msgstr "Rediger den valgte kunde"
+#. Translators: Argument description for autohelp; see
+#. http://developer.gnome.org/doc/API/2.0/glib/glib-Commandline-option-parser.html
+#: ../src/bin/gnucash-bin.c:144
+msgid "REGEXP"
+msgstr ""
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:151
-msgid "E_dit Employee"
-msgstr "Re_diger medarbejder"
+#: ../src/bin/gnucash-bin.c:147
+msgid "[datafile]"
+msgstr "[datafil]"
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:152
-msgid "Edit the selected employee"
-msgstr "Rediger den valgte medarbejder"
+#: ../src/bin/gnucash-bin.c:157
+msgid "This is a development version. It may or may not work."
+msgstr "Dette er en udviklingsversion. Den virker muligvis ikke ordentligt."
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:157
-msgid "Create a new vendor"
-msgstr "Opret en ny leverandør"
+#: ../src/bin/gnucash-bin.c:158
+msgid "Report bugs and other problems to gnucash-devel at gnucash.org"
+msgstr "Meld fejl og andre problemer til gnucash-devel at gnucash.org."
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:162
-msgid "Create a new customer"
-msgstr "Opret en ny kunde"
+#: ../src/bin/gnucash-bin.c:159
+msgid "You can also lookup and file bug reports at http://bugzilla.gnome.org"
+msgstr "Du kan også finde og anmelde fejlrapporter på http://bugzilla.gnome.org"
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:167
-msgid "Create a new employee"
-msgstr "Opret en ny medarbejder"
+#: ../src/bin/gnucash-bin.c:160
+msgid "To find the last stable version, please refer to http://www.gnucash.org"
+msgstr "For at finde den sidste stabile version, så gå venligst til http://www.gnucash.org"
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:173
-msgid "_Delete Owner..."
-msgstr "_Slet ejer ..."
+#: ../src/bin/gnucash-bin.c:379
+msgid "- GnuCash personal and small business finance management"
+msgstr "- GnuCash - finanshåndtering for personer og små virksomheder"
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:174
-msgid "Delete selected owner"
-msgstr "Slet den valgte ejer"
+#: ../src/bin/gnucash-bin.c:385 ../src/bin/gnucash-bin.c:764
+#, c-format
+msgid ""
+"%s\n"
+"Run '%s --help' to see a full list of available command line options.\n"
+msgstr ""
+"%s\n"
+"Kør »%s --help« for at se den fulde liste over tilgængelige indstillinger for kommandolinjen.\n"
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:181
-#: ../src/gnome/gnc-plugin-page-account-tree.c:231
-#: ../src/gnome/gnc-plugin-page-budget.c:157
-#: ../src/gnome/gnc-plugin-page-register2.c:319
-#: ../src/gnome/gnc-plugin-page-register.c:333
-#: ../src/gnome-utils/gnc-main-window.c:332
-msgid "_Filter By..."
-msgstr "_Filtrer efter ..."
+#: ../src/bin/gnucash-bin.c:398
+#, c-format
+msgid "GnuCash %s development version"
+msgstr "GnuCash %s udviklingsversion"
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:188
-msgid "Create a new bill"
-msgstr "Opret en ny regning"
+#. Translators: 1st %s is a fixed message, which is translated independently;
+#. 2nd %s is the scm type (svn/svk/git/bzr);
+#. 3rd %s is the scm revision number;
+#. 4th %s is the build date
+#. Development version
+#. Translators: 1st %s is a fixed message, which is translated independently;
+#. 2nd %s is the scm type (svn/svk/git/bzr);
+#. 3rd %s is the scm revision number;
+#. 4th %s is the build date
+#: ../src/bin/gnucash-bin.c:404 ../src/gnome-utils/gnc-main-window.c:4393
+#, c-format
+msgid ""
+"%s\n"
+"This copy was built from %s rev %s on %s."
+msgstr ""
+"%s\n"
+"Denne kopi blev bygget ud fra %s rev %s fra den %s."
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:193
-msgid "Create a new invoice"
-msgstr "Opret en ny faktura"
+#: ../src/bin/gnucash-bin.c:410
+#, c-format
+msgid "GnuCash %s"
+msgstr "GnuCash %s"
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:197
-msgid "New _Voucher..."
-msgstr "Nyt _bilag ..."
+#. Translators: 1st %s is a fixed message, which is translated independently;
+#. 2nd %s is the scm (svn/svk/git/bzr) revision number;
+#. 3rd %s is the build date
+#: ../src/bin/gnucash-bin.c:415 ../src/gnome-utils/gnc-main-window.c:4400
+#, c-format
+msgid ""
+"%s\n"
+"This copy was built from rev %s on %s."
+msgstr ""
+"%s\n"
+"Denne kopi blev bygget fra rev %s fra den %s."
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:198
-msgid "Create a new voucher"
-msgstr "Opret et nyt bilag"
+#: ../src/bin/gnucash-bin.c:516
+msgid "No quotes retrieved. Finance::Quote isn't installed properly.\n"
+msgstr ""
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:202
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:277
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:897
-msgid "Vendor Listing"
-msgstr "Leverandørliste"
+#. Install Price Quote Sources
+#: ../src/bin/gnucash-bin.c:599
+msgid "Checking Finance::Quote..."
+msgstr "Kontrollerer Finance::Quote ..."
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:203
-msgid "Show vendor aging overview for all vendors"
-msgstr "Vis overblik over leverandøralder for alle leverandører"
+#: ../src/bin/gnucash-bin.c:607
+msgid "Loading data..."
+msgstr "Indlæser data..."
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:207
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:278
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:903
-msgid "Customer Listing"
-msgstr "Kundeliste"
+#: ../src/bin/gnucash-bin.c:765
+msgid ""
+"Error: could not initialize graphical user interface and option add-price-quotes was not set.\n"
+" Perhaps you need to set the $DISPLAY environment variable ?"
+msgstr ""
+"Fejl: Kunne ikke initialisere grafisk brugergrænseflade og indstillingen add-price-quotes var\n"
+" ikke angivet. Måske du skal angive miljøvariablen $DISPLAY?"
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:208
-msgid "Show customer aging overview for all customers"
-msgstr "Vis overblik over kundealder for alle kunder"
+#: ../src/business/business-gnome/business-gnome-utils.c:73
+#: ../src/business/business-gnome/business-gnome-utils.c:260
+#: ../src/business/business-gnome/dialog-invoice.c:1306
+#: ../src/business/business-gnome/dialog-invoice.c:1384
+#: ../src/gnome-utils/gnc-general-select.c:214
+msgid "Select..."
+msgstr "Vælg ..."
-#. src/report/business-reports/job-report.scm
-#. src/report/business-reports/owner-report.scm
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:212
-#: ../intl-scm/guile-strings.c:1446
-#: ../intl-scm/guile-strings.c:1598
-msgid "Vendor Report"
-msgstr "Leverandørrapport"
+#: ../src/business/business-gnome/business-gnome-utils.c:77
+#: ../src/gnome-utils/gnc-general-select.c:216
+msgid "Edit..."
+msgstr "Rediger ..."
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:213
-msgid "Show vendor report"
-msgstr "Vis leverandørrapport"
+#: ../src/business/business-gnome/business-gnome-utils.c:222
+#: ../src/business/business-gnome/dialog-invoice.c:2347
+#: ../src/business/business-gnome/dialog-invoice.c:2525
+#: ../src/business/business-gnome/dialog-invoice.c:2526
+msgid "Voucher"
+msgstr "Bilag"
-#. src/report/business-reports/job-report.scm
-#. src/report/business-reports/owner-report.scm
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:217
-#: ../intl-scm/guile-strings.c:1438
-#: ../intl-scm/guile-strings.c:1596
-msgid "Customer Report"
-msgstr "Kunderapport"
+#. This array contains all of the different strings for different column types.
+#: ../src/business/business-gnome/business-gnome-utils.c:448
+#: ../src/engine/Recurrence.c:478 ../src/engine/Recurrence.c:668
+#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:4
+#: ../src/import-export/csv-imp/gnc-csv-model.c:44
+#: ../src/report/standard-reports/transaction.scm:685
+#: ../src/report/standard-reports/transaction.scm:722
+#: ../src/report/standard-reports/transaction.scm:777
+#: ../src/report/standard-reports/transaction.scm:839
+#: ../src/report/standard-reports/transaction.scm:987
+#: ../src/report/standard-reports/transaction.scm:997
+msgid "None"
+msgstr "Ingen"
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:218
-msgid "Show customer report"
-msgstr "Vis kunderapport"
+#: ../src/business/business-gnome/business-gnome-utils.c:564
+#: ../src/gnome/assistant-hierarchy.c:864
+msgid "Yes"
+msgstr "Ja"
-#. src/report/business-reports/job-report.scm
-#. src/report/business-reports/owner-report.scm
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:222
-#: ../intl-scm/guile-strings.c:1450
-#: ../intl-scm/guile-strings.c:1600
-msgid "Employee Report"
-msgstr "Medarbejderrapport"
+#: ../src/business/business-gnome/business-gnome-utils.c:566
+#: ../src/gnome/assistant-hierarchy.c:867
+msgid "No"
+msgstr "Nej"
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:223
-msgid "Show employee report"
-msgstr "Vis medarbejderrapport"
+#: ../src/business/business-gnome/business-gnome-utils.c:568
+msgid "Use Global"
+msgstr "Anvend global"
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:268
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:269
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:270
-#: ../src/gnome/gnc-plugin-page-account-tree.c:343
-#: ../src/gnome/gtkbuilder/dialog-commodities.glade.h:7
-msgid "Edit"
-msgstr "Redigér"
+#: ../src/business/business-gnome/business-urls.c:68
+#: ../src/business/business-gnome/business-urls.c:199
+#: ../src/gnome/top-level.c:218
+#, c-format
+msgid "Badly formed URL %s"
+msgstr "Ugyldigt udformede URL %s"
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:271
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:272
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:273
-#: ../src/gnome/gnc-plugin-page-account-tree.c:344
-msgid "New"
-msgstr "Ny"
+#: ../src/business/business-gnome/business-urls.c:73
+#: ../src/business/business-gnome/business-urls.c:222
+#: ../src/business/business-gnome/business-urls.c:228
+#: ../src/business/business-gnome/business-urls.c:295
+#: ../src/gnome/top-level.c:91
+#, c-format
+msgid "Bad URL: %s"
+msgstr "Ugyldig URL: %s"
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:276
-msgid "New Voucher"
-msgstr "Nyt bilag"
+#: ../src/business/business-gnome/business-urls.c:82
+#, c-format
+msgid "No such entity: %s"
+msgstr "Ingen sådan entitet: %s"
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:433
-msgid "Owners"
-msgstr "Ejere"
+#. =================================================================
+#: ../src/business/business-gnome/business-urls.c:170
+#, c-format
+msgid "No such owner entity: %s"
+msgstr "Ingen sådan ejerentitet: %s"
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:608
-msgid "Customers"
-msgstr "Kunder"
+#: ../src/business/business-gnome/business-urls.c:279
+#, c-format
+msgid "Entity type does not match %s: %s"
+msgstr "Entitettypen matcher ikke %s: %s"
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:612
-msgid "Jobs"
-msgstr "Job"
+#: ../src/business/business-gnome/business-urls.c:289
+#, c-format
+msgid "Bad URL %s"
+msgstr "Ugyldig URL %s"
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:616
-msgid "Vendors"
-msgstr "Leverandører"
+#: ../src/business/business-gnome/business-urls.c:302
+#, c-format
+msgid "No such Account entity: %s"
+msgstr "Ingen sådan kontoentitet: %s"
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:620
-msgid "Employees"
-msgstr "Medarbejdere"
+#: ../src/business/business-gnome/dialog-billterms.c:265
+msgid "Discount days cannot be more than due days."
+msgstr ""
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:1059
-#: ../src/gnome/gnc-plugin-page-account-tree.c:1175
-msgid "(no name)"
-msgstr "(intet navn)"
+#: ../src/business/business-gnome/dialog-billterms.c:324
+msgid "You must provide a name for this Billing Term."
+msgstr "Du skal angive et navn for denne regningsbetingelse."
-#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:1067
+#: ../src/business/business-gnome/dialog-billterms.c:331
#, c-format
-msgid ""
-"The owner %s will be deleted.\n"
-"Are you sure you want to do this?"
-msgstr ""
-"Ejeren %s vil blive slettet.\n"
-"Er du sikker på, at du ønsker dette?"
+msgid "You must provide a unique name for this Billing Term. Your choice \"%s\" is already in use."
+msgstr "Du skal angive et unikt navn for denne regningsbetingelse. Dit valg »%s« er allerede i brug."
-#. * @}
-#. * @}
-#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:1
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:41
-#: ../src/gnome/gschemas/org.gnucash.dialogs.commodities.gschema.xml.in.in.h:2
-#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:1
-#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:9
-#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:1
-#: ../src/gnome/gschemas/org.gnucash.dialogs.totd.gschema.xml.in.in.h:2
-#: ../src/import-export/aqb/gschemas/org.gnucash.dialogs.import.hbci.gschema.xml.in.in.h:1
-#: ../src/import-export/csv-exp/gschemas/org.gnucash.dialogs.export.csv.gschema.xml.in.in.h:1
-#: ../src/import-export/csv-imp/gschemas/org.gnucash.dialogs.import.csv.gschema.xml.in.in.h:1
-#: ../src/import-export/gschemas/org.gnucash.dialogs.import.generic.gschema.xml.in.in.h:17
-#: ../src/import-export/qif-imp/gschemas/org.gnucash.dialogs.import.qif.gschema.xml.in.in.h:4
-msgid "Last window position and size"
-msgstr "Sidste vinduesposition og -størrelse"
+#: ../src/business/business-gnome/dialog-billterms.c:527
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:17
+#: ../src/gnome-utils/gnc-date-delta.c:216
+#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:19
+#: ../src/report/standard-reports/price-scatter.scm:228
+msgid "Days"
+msgstr "Dage"
-#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:2
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:42
-#: ../src/gnome/gschemas/org.gnucash.dialogs.commodities.gschema.xml.in.in.h:3
-#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:2
-#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:10
-#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:2
-#: ../src/gnome/gschemas/org.gnucash.dialogs.totd.gschema.xml.in.in.h:3
-#: ../src/import-export/aqb/gschemas/org.gnucash.dialogs.import.hbci.gschema.xml.in.in.h:2
-#: ../src/import-export/csv-exp/gschemas/org.gnucash.dialogs.export.csv.gschema.xml.in.in.h:2
-#: ../src/import-export/csv-imp/gschemas/org.gnucash.dialogs.import.csv.gschema.xml.in.in.h:2
-#: ../src/import-export/gschemas/org.gnucash.dialogs.import.generic.gschema.xml.in.in.h:18
-#: ../src/import-export/qif-imp/gschemas/org.gnucash.dialogs.import.qif.gschema.xml.in.in.h:5
-msgid "This setting describes the size and position of the window when it was last closed. The numbers are the X and Y coordinates of the top left corner of the window followed by the width and height of the window."
-msgstr "Denne indstilling beskriver størrelsen og placeringen af vinduet sidst det blev lukket. Tallene er x- og y-koordinater fra det øverste venstre hjørne af vinduet efterfulgt af bredden og højden af vinduet."
+# http://en.wiktionary.org/wiki/proximo
+#: ../src/business/business-gnome/dialog-billterms.c:530
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:25
+msgid "Proximo"
+msgstr "Proximo"
-#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:3
-#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:4
-msgid "Search only in active items"
-msgstr "Søg kun i aktive poster"
+#: ../src/business/business-gnome/dialog-billterms.c:533
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:26
+#: ../src/report/business-reports/customer-summary.scm:224
+#: ../src/report/business-reports/job-report.scm:255
+#: ../src/report/business-reports/owner-report.scm:341
+#: ../src/report/business-reports/owner-report.scm:346
+msgid "Unknown"
+msgstr "Ukendt"
-#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:4
-msgid "If active, only the 'active' items in the current class will be searched. Otherwise all items in the current class will be searched."
-msgstr "Hvis aktiv, vil kun de »aktive« enheder i den aktuelle klasse blive gennemsøgt. Ellers vil alle enheder i den aktuelle klasse blive gennemsøgt."
+#: ../src/business/business-gnome/dialog-billterms.c:662
+#, c-format
+msgid "Term \"%s\" is in use. You cannot delete it."
+msgstr "Betingelsen »%s« er i brug. Du kan ikke slette den."
-#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:5
-msgid "Is tax included in this type of business entry?"
-msgstr "Er skat inkluderet i denne type forretningspost?"
+#: ../src/business/business-gnome/dialog-billterms.c:668
+#: ../src/gnome-utils/dialog-tax-table.c:571
+#, c-format
+msgid "Are you sure you want to delete \"%s\"?"
+msgstr "Er du sikker på, at du ønsker at slette »%s«?"
-#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:6
-msgid "If set to active then tax is included by default in entries of this type. This setting is inherited by new customers and vendors."
-msgstr "Hvis aktiv, så er skat inkluderet som standard i poster af denne type. Denne indstilling arves af nye kunder og leverandører."
+#: ../src/business/business-gnome/dialog-choose-owner.c:75
+msgid "This transaction needs to be assigned to a Customer. Please choose the Customer below."
+msgstr "Denne transaktion skal have oplysning om en kunde. Vælg venligst kunden nedenfor."
-#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:7
-msgid "Auto pay when posting."
-msgstr "Automatisk betaling ved bogføring"
+#: ../src/business/business-gnome/dialog-choose-owner.c:82
+msgid "This transaction needs to be assigned to a Vendor. Please choose the Vendor below."
+msgstr "Denne transaktion skal have oplysning om en leverandør. Vælg venligst leverandøren nedenfor."
-#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:8
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:26
-msgid "At post time, automatically attempt to pay customer documents with outstanding pre-payments and counter documents. The pre-payments and documents obviously have to be against the same customer. Counter documents are documents with opposite sign. For example for an invoice, customer credit notes and negative invoices are considered counter documents."
+#: ../src/business/business-gnome/dialog-customer.c:329
+msgid ""
+"You must enter a company name. If this customer is an individual (and not a company) you should enter the same value for:\n"
+"Identification - Company Name, and\n"
+"Payment Address - Name."
msgstr ""
+"Du skal indtaste et firmanavn. Hvis denne kunde er en person (og ikke et firma) bør du indtaste den samme værdi for:\n"
+"Identifikation - Firmanavn, og\n"
+"Betalingsadresse - Navn."
-#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:9
-msgid "Enable extra toolbar buttons for business"
-msgstr "Aktiver ekstra værktøjslinjeknapper for forretning"
+#: ../src/business/business-gnome/dialog-customer.c:341
+msgid "You must enter a billing address."
+msgstr "Du skal angive en faktureringsadresse."
-#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:10
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:22
-msgid "If active, extra toolbar buttons for common business functions are shown as well. Otherwise they are not shown."
-msgstr "Hvis aktiv, bliver ekstra værktøjslinjeknapper for gængse forretningsfunktioner også vist. Eller vises de ikke."
+#: ../src/business/business-gnome/dialog-customer.c:351
+msgid "Discount percentage must be between 0-100 or you must leave it blank."
+msgstr "Rabatprocent skal være mellem 0 og 100 eller den skal efterlades uudfyldt."
-#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:11
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:23
-msgid "The invoice report to be used for printing."
-msgstr "Fakturarapporten der skal bruges til udskrivning."
+#: ../src/business/business-gnome/dialog-customer.c:356
+msgid "Credit must be a positive amount or you must leave it blank."
+msgstr "Kredit skal være et positivt beløb ellers skal du lade den være tom."
-#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:12
-msgid "The name of the report to be used for invoice printing."
-msgstr "Navnet på rapporten der skal bruges til fakturaudskrivning."
+#: ../src/business/business-gnome/dialog-customer.c:432
+#: ../src/business/business-gnome/dialog-employee.c:313
+#: ../src/business/business-gnome/dialog-job.c:238
+#: ../src/business/business-gnome/dialog-vendor.c:299
+#: ../src/gnome-utils/dialog-account.c:1424
+msgid "<No name>"
+msgstr "<Intet navn>"
-#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:13
-msgid "Open new invoice in new window"
-msgstr "Ã
bn ny faktura i nyt vindue"
+#: ../src/business/business-gnome/dialog-customer.c:439
+msgid "Edit Customer"
+msgstr "Rediger kunde"
-#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:14
-msgid "If active, each new invoice will be opened in a new window. Otherwise a new invoice will be opened as a tab in the main window."
-msgstr "Hvis aktiv, vil hver ny faktura blive åbnet i et nyt vindue. Ellers vil en ny faktura blive åbnet som en fane i hovedvinduet."
+#: ../src/business/business-gnome/dialog-customer.c:441
+#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:1
+#: ../src/gnome-search/dialog-search.c:1059
+msgid "New Customer"
+msgstr "Ny kunde"
-#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:15
-msgid "Accumulate multiple splits into one"
-msgstr "Akkumuler flere opdelinger til en"
+#: ../src/business/business-gnome/dialog-customer.c:903
+msgid "View/Edit Customer"
+msgstr "Vis/rediger kunde"
-#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:16
-msgid "If this field is active then multiple entries in an invoice that transfer to the same account will be accumulated into a single split. This field can be overridden per invoice in the Posting dialog."
-msgstr "Hvis dette felt er aktivt, så vil flere poster på en faktura som overføres til den samme konto blive akkumuleret til et enkelt beløb. Dette felt kan overskrives per faktura i Bogføringsdialogen."
+#: ../src/business/business-gnome/dialog-customer.c:904
+msgid "Customer's Jobs"
+msgstr "Kundes job"
-#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:17
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:28
-msgid "At post time, automatically attempt to pay vendor documents with outstanding pre-payments and counter documents. The pre-payments and documents obviously have to be against the same vendor. Counter documents are documents with opposite sign. For example for a bill, vendor credit notes and negative bills are considered counter documents."
-msgstr ""
+#. { N_("Customer's Orders"), order_customer_cb, NULL, TRUE},
+#: ../src/business/business-gnome/dialog-customer.c:906
+msgid "Customer's Invoices"
+msgstr "Kundes fakturaer"
-#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:18
-msgid "Show bills due reminder at startup"
-msgstr "Vis påmindelse af forfaldne regninger ved opstart"
+#: ../src/business/business-gnome/dialog-customer.c:907
+#: ../src/business/business-gnome/dialog-employee.c:712
+#: ../src/business/business-gnome/dialog-invoice.c:2926
+#: ../src/business/business-gnome/dialog-invoice.c:2935
+#: ../src/business/business-gnome/dialog-invoice.c:2946
+#: ../src/business/business-gnome/dialog-invoice.c:3199
+#: ../src/business/business-gnome/dialog-job.c:549
+#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:1
+msgid "Process Payment"
+msgstr "Gennemfør betaling"
-#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:19
-msgid "If active, at startup GnuCash will check to see whether any bills will become due soon. If so, it will present the user with a reminder dialog. The definition of \"soon\" is controlled by the \"Days in Advance\" setting. Otherwise GnuCash does not check for due bills."
-msgstr "Hvis aktiv vil GnuCash ved opstart undersøge om der er nogen regninger der snart er forfaldne. Hvis det er tilfældet, hvis brugeren blive præsenteret for et påmindelsesvindue. Definitionen på »snart« kontrolleres af indstilingen »Dage i fremtiden«. Ellers vil GnuCash ikke lede efter forfaldne regninger."
+#: ../src/business/business-gnome/dialog-customer.c:917
+msgid "Shipping Contact"
+msgstr "Forsendelsesoplysninger"
-#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:20
-msgid "Show bills due within this many days"
-msgstr "Vis regninger der er forfaldne indenfor følgende antal dage"
+#: ../src/business/business-gnome/dialog-customer.c:919
+#: ../src/business/business-gnome/dialog-vendor.c:722
+msgid "Billing Contact"
+msgstr "Faktureringsoplysninger"
-#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:21
-msgid "This field defines the number of days in advance that GnuCash will check for due bills. Its value is only used if the \"Notify when due\" setting is active."
-msgstr ""
+#: ../src/business/business-gnome/dialog-customer.c:921
+msgid "Customer ID"
+msgstr "Kunde-id"
-#. src/report/business-reports/invoice.scm
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:1
-#: ../src/report/report-gnome/gnc-plugin-page-report.c:1690
-#: ../intl-scm/guile-strings.c:1352
-msgid "Printable Invoice"
-msgstr "Faktura der kan udskrives"
+#: ../src/business/business-gnome/dialog-customer.c:930
+#: ../src/business/business-gnome/dialog-vendor.c:733
+msgid "Contact"
+msgstr "Kontakt"
-#. src/report/business-reports/taxinvoice.eguile.scm
-#. src/report/business-reports/taxinvoice.scm
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:2
-#: ../src/report/report-gnome/gnc-plugin-page-report.c:1691
-#: ../intl-scm/guile-strings.c:1636
-#: ../intl-scm/guile-strings.c:1640
-#: ../intl-scm/guile-strings.c:1816
-#: ../intl-scm/guile-strings.c:1818
-msgid "Tax Invoice"
-msgstr "Skatteopgørelse"
+#. FALL THROUGH
+#: ../src/business/business-gnome/dialog-customer.c:932
+#: ../src/business/business-gnome/dialog-invoice.c:3071
+#: ../src/business/business-gnome/dialog-invoice.c:3212
+#: ../src/business/business-gnome/dialog-job.c:575
+#: ../src/business/business-gnome/dialog-order.c:885
+#: ../src/business/business-gnome/dialog-vendor.c:735
+#: ../src/report/business-reports/aging.scm:464
+#: ../src/report/business-reports/owner-report.scm:73
+msgid "Company"
+msgstr "Firma"
-#. src/report/business-reports/easy-invoice.scm
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:3
-#: ../src/report/report-gnome/gnc-plugin-page-report.c:1692
-#: ../intl-scm/guile-strings.c:956
-msgid "Easy Invoice"
-msgstr "Nem faktura"
+#: ../src/business/business-gnome/dialog-customer.c:934
+#: ../src/business/business-gnome/dialog-employee.c:734
+#: ../src/business/business-gnome/dialog-job.c:579
+#: ../src/business/business-gnome/dialog-vendor.c:737
+msgid "ID #"
+msgstr "Id #"
-#. src/report/business-reports/fancy-invoice.scm
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:4
-#: ../src/report/report-gnome/gnc-plugin-page-report.c:1693
-#: ../intl-scm/guile-strings.c:1166
-msgid "Fancy Invoice"
-msgstr "Smart faktura"
+#: ../src/business/business-gnome/dialog-customer.c:957
+msgid "Find Customer"
+msgstr "Find kunde"
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:5
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:3
-#: ../src/import-export/dialog-import.glade.h:1
-#: ../src/import-export/qif-imp/dialog-account-picker.glade.h:1
-msgid "Preferences"
-msgstr "Indstillinger"
+#: ../src/business/business-gnome/dialog-date-close.c:75
+msgid "No Account selected. Please try again."
+msgstr "Ingen konto valgt. Forsøg venligst igen."
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:6
-msgid "<b>Invoices</b>"
-msgstr "<b>Fakturaer</b>"
+#: ../src/business/business-gnome/dialog-date-close.c:82
+msgid "Placeholder account selected. Please try again."
+msgstr "Sumkonto valgt. Forsøg venligst igen."
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:7
-msgid "Ta_x included"
-msgstr "_Skat er inkluderet"
+#: ../src/business/business-gnome/dialog-employee.c:225
+msgid "You must enter a username."
+msgstr "Du skal indtaste et brugernavn."
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:8
-msgid "Whether tax is included by default in entries on Bills. This setting is inherited by new customers and vendors."
-msgstr "Om skat, som standard, er inkluderet i posterne på regninger. Denne indstilling nedarves til nye kunder og leverandører."
+#: ../src/business/business-gnome/dialog-employee.c:230
+msgid "You must enter the employee's name."
+msgstr "Du skal indtaste medarbejderens navn."
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:9
-msgid "How many days in the future to warn about Bills coming due."
-msgstr ""
+#: ../src/business/business-gnome/dialog-employee.c:239
+msgid "You must enter an address."
+msgstr "Du skal indtaste en adresse."
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:10
-msgid "_Days in advance:"
-msgstr "_Dage forud:"
+#: ../src/business/business-gnome/dialog-employee.c:320
+msgid "Edit Employee"
+msgstr "Rediger medarbejder"
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:11
-msgid "_Notify when due"
-msgstr "Giv besked _når forfalden"
+#: ../src/business/business-gnome/dialog-employee.c:322
+#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:1
+#: ../src/gnome-search/dialog-search.c:1063
+msgid "New Employee"
+msgstr "Ny medarbejder"
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:12
-msgid "Whether to display the list of Bills Due at startup."
-msgstr "Om listen over forfaldne regninger skal vises ved opstart."
+#: ../src/business/business-gnome/dialog-employee.c:710
+msgid "View/Edit Employee"
+msgstr "Vis/rediger medarbejder"
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:13
-msgid "<b>Bills</b>"
-msgstr "<b>Regninger</b>"
+#: ../src/business/business-gnome/dialog-employee.c:711
+msgid "Expense Vouchers"
+msgstr "Udgiftsbilag"
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:14
-msgid "_Tax included"
-msgstr "Ska_t inkluderet"
+#: ../src/business/business-gnome/dialog-employee.c:721
+msgid "Employee ID"
+msgstr "Medarbejder-id"
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:15
-msgid "Whether tax is included by default in entries on Invoices. This setting is inherited by new customers and vendors."
-msgstr "Om skat, som standard, er inkludereret i posterne på fakturaer. Denne indstilling nedarves til nye kunder og leverandører."
+#: ../src/business/business-gnome/dialog-employee.c:723
+msgid "Employee Username"
+msgstr "Medarbejderbrugernavn"
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:16
-msgid "_Accumulate splits on post"
-msgstr ""
+#: ../src/business/business-gnome/dialog-employee.c:725
+#: ../src/business/business-gnome/dialog-invoice.c:3051
+msgid "Employee Name"
+msgstr "Medarbejdernavn"
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:17
-msgid "Whether multiple entries in an invoice which transfer to the same account should be accumulated into a single split by default. This setting can be changed in the Post dialog."
-msgstr ""
+#: ../src/business/business-gnome/dialog-employee.c:732
+#: ../src/gnome-utils/gtkbuilder/dialog-file-access.glade.h:6
+msgid "Username"
+msgstr "Brugernavn"
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:18
-msgid "_Open in new window"
-msgstr "_Ã
bn i nyt vindue"
+#: ../src/business/business-gnome/dialog-employee.c:736
+#: ../src/gnome/dialog-sx-editor2.c:1757 ../src/gnome/dialog-sx-editor.c:1787
+#: ../src/gnome/dialog-tax-info.c:1150 ../src/gnome-utils/gnc-dense-cal.c:337
+#: ../src/gnome-utils/gnc-tree-model-budget.c:96
+#: ../src/gnome-utils/gnc-tree-view-commodity.c:396
+#: ../src/gnome-utils/gnc-tree-view-sx-list.c:163
+#: ../src/gnome-utils/gtkbuilder/gnc-date-format.glade.h:8
+#: ../src/report/business-reports/aging.scm:353
+msgid "Name"
+msgstr "Navn"
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:19
-msgid "If checked, each invoice will be opened in its own top level window. If clear, the invoice will be opened in the current window."
+#: ../src/business/business-gnome/dialog-employee.c:758
+msgid "Find Employee"
+msgstr "Find medarbejder"
+
+#. Translators: In this context,
+#. * 'Billing information' maps to the
+#. * label in the frame and means
+#. * e.g. customer i.e. the company being
+#. * invoiced.
+#: ../src/business/business-gnome/dialog-invoice.c:386
+#: ../src/business/business-gnome/dialog-order.c:181
+msgid "You need to supply Billing Information."
msgstr ""
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:20
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:59
-msgid "<b>General</b>"
-msgstr "<b>Generelt</b>"
-
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:21
-msgid "Enable extra _buttons"
-msgstr "Aktiver ekstra _knapper"
-
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:24
-msgid "Report for printing:"
-msgstr "Rapport for udskrivning:"
+#: ../src/business/business-gnome/dialog-invoice.c:579
+msgid "Are you sure you want to delete the selected entry?"
+msgstr "Er du sikker på, at du vil slette den valgte post?"
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:25
-msgid "Auto pay on post_ing"
-msgstr "Automatisk betaling ved _bogføring"
+#: ../src/business/business-gnome/dialog-invoice.c:581
+msgid "This entry is attached to an order and will be deleted from that as well!"
+msgstr ""
-#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:27
-msgid "Auto _pay on posting"
-msgstr "Automatisk _betaling ved bogføring"
+#: ../src/business/business-gnome/dialog-invoice.c:691
+#: ../src/business/business-gnome/dialog-invoice.c:2980
+#: ../src/business/business-gnome/dialog-invoice.c:3014
+#: ../src/business/business-gnome/dialog-invoice.c:3048
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2836
+#: ../src/register/ledger-core/split-register-model.c:231
+#: ../src/report/business-reports/aging.scm:393
+#: ../src/report/business-reports/easy-invoice.scm:304
+#: ../src/report/business-reports/fancy-invoice.scm:898
+#: ../src/report/business-reports/invoice.scm:725
+#: ../src/report/business-reports/job-report.scm:44
+#: ../src/report/business-reports/owner-report.scm:51
+#: ../src/report/business-reports/owner-report.scm:570
+#: ../src/report/business-reports/taxinvoice.eguile.scm:243
+msgid "Due Date"
+msgstr "Forfaldsdato"
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:1
-msgid "Cancel your changes"
-msgstr "Fortryd dine ændringer"
+#. Should be using standard label for due date?
+#: ../src/business/business-gnome/dialog-invoice.c:692
+#: ../src/report/business-reports/aging.scm:394
+#: ../src/report/business-reports/owner-report.scm:571
+msgid "Post Date"
+msgstr "Bogføringsdato"
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:2
-msgid "Commit this Billing Term"
-msgstr "Registrer denne betalingsbetingelse"
+#: ../src/business/business-gnome/dialog-invoice.c:693
+msgid "Post to Account"
+msgstr "Bogfør på konto"
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:3
-msgid "<b>Term Definition</b>"
-msgstr "<b>Definition for betingelse</b>"
+#: ../src/business/business-gnome/dialog-invoice.c:694
+msgid "Accumulate Splits?"
+msgstr ""
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:4
-msgid "De_scription:"
-msgstr "Be_skrivelse:"
+#: ../src/business/business-gnome/dialog-invoice.c:787
+msgid "The Invoice must have at least one Entry."
+msgstr ""
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:5
-msgid "The description of the Billing Term, printed on invoices"
-msgstr "Beskrivelsen af betalingsbetingelse, som udskrives på fakturaer"
+#: ../src/business/business-gnome/dialog-invoice.c:807
+msgid "Do you really want to post the invoice?"
+msgstr "Er du sikker på, at du vil bogføre fakturaen?"
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:6
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:12
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:3
-msgid "_Type:"
-msgstr "_Type:"
+#. Fill in the conversion prices with feedback from the user
+#: ../src/business/business-gnome/dialog-invoice.c:822
+msgid "One or more of the entries are for accounts different from the invoice/bill currency. You will be asked a conversion rate for each."
+msgstr ""
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:7
-msgid "The internal name of the Billing Term."
-msgstr "Det interne navn på betalingsbetingelsen."
+#: ../src/business/business-gnome/dialog-invoice.c:947
+msgid "The post action was canceled because not all exchange rates were given."
+msgstr "Bogføringshandlingen blev afbrudt da ikke alle vekselkurser var angivet."
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:8
-msgid "<b>New Billing Term</b>"
-msgstr "<b>Ny regningsbetingelse</b>"
+#: ../src/business/business-gnome/dialog-invoice.c:1216
+#: ../src/gnome/window-reconcile2.c:1142 ../src/gnome/window-reconcile.c:1142
+msgid "Total:"
+msgstr "Total:"
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:9
-#: ../src/report/report-gnome/dialog-report.glade.h:17
-msgid "_Name:"
-msgstr "_Navn:"
+#: ../src/business/business-gnome/dialog-invoice.c:1222
+msgid "Subtotal:"
+msgstr "Delsum:"
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:10
-msgid "Due Days: "
-msgstr "Forfaldsdage: "
+#: ../src/business/business-gnome/dialog-invoice.c:1223
+msgid "Tax:"
+msgstr "Skat:"
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:11
-msgid "Discount Days: "
-msgstr "Rabatdage: "
+#: ../src/business/business-gnome/dialog-invoice.c:1227
+msgid "Total Cash:"
+msgstr "Samlet beløb:"
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:13
-#, no-c-format
-msgid "Discount %: "
-msgstr "Rabat %: "
+#: ../src/business/business-gnome/dialog-invoice.c:1228
+msgid "Total Charge:"
+msgstr "Samlet betaling:"
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:14
-msgid "The number of days to pay the bill after the post date."
-msgstr ""
+#. Set the type label
+#: ../src/business/business-gnome/dialog-invoice.c:1697
+#: ../src/business/business-gnome/dialog-payment.c:986
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:22
+#: ../src/engine/gncInvoice.c:977
+#: ../src/report/business-reports/easy-invoice.scm:717
+#: ../src/report/business-reports/easy-invoice.scm:721
+#: ../src/report/business-reports/easy-invoice.scm:725
+#: ../src/report/business-reports/fancy-invoice.scm:816
+#: ../src/report/business-reports/fancy-invoice.scm:820
+#: ../src/report/business-reports/fancy-invoice.scm:824
+#: ../src/report/business-reports/invoice.scm:686
+#: ../src/report/business-reports/invoice.scm:690
+#: ../src/report/business-reports/invoice.scm:694
+msgid "Credit Note"
+msgstr "Kreditnota"
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:15
-msgid "The number of days after the post date during which a discount will be applied for early payment."
-msgstr ""
+#: ../src/business/business-gnome/dialog-invoice.c:1896
+#: ../src/business/business-gnome/dialog-invoice.c:1915
+#: ../src/business/business-gnome/dialog-invoice.c:1934
+msgid "New Credit Note"
+msgstr "Ny kreditnota"
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:16
-msgid "The percentage discount applied for early payment."
-msgstr "Rabatprocenten ved tidlig betaling."
+#: ../src/business/business-gnome/dialog-invoice.c:1897
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:275
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:21
+#: ../src/gnome-search/dialog-search.c:1071
+msgid "New Invoice"
+msgstr "Ny faktura"
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:18
-msgid "Due Day: "
-msgstr "Forfaldsdag:"
+#: ../src/business/business-gnome/dialog-invoice.c:1902
+#: ../src/business/business-gnome/dialog-invoice.c:1921
+#: ../src/business/business-gnome/dialog-invoice.c:1940
+msgid "Edit Credit Note"
+msgstr "Rediger kreditnota"
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:19
-msgid "Discount Day: "
-msgstr "Rabatdag: "
+#: ../src/business/business-gnome/dialog-invoice.c:1903
+msgid "Edit Invoice"
+msgstr "Rediger faktura"
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:20
-msgid "Cutoff Day: "
-msgstr ""
+#: ../src/business/business-gnome/dialog-invoice.c:1906
+#: ../src/business/business-gnome/dialog-invoice.c:1925
+#: ../src/business/business-gnome/dialog-invoice.c:1944
+msgid "View Credit Note"
+msgstr "Vis kreditnota"
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:21
-msgid "The day of the month bills are due"
-msgstr "Den dag i måneden hvor regninger forfalder"
+#: ../src/business/business-gnome/dialog-invoice.c:1907
+msgid "View Invoice"
+msgstr "Vis faktura"
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:22
-msgid "The last day of the month for the early payment discount."
-msgstr "Den sidste dag i måneden for rabatten vedrørende tidlig betaling."
+#: ../src/business/business-gnome/dialog-invoice.c:1916
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:274
+#: ../src/gnome-search/dialog-search.c:1055
+msgid "New Bill"
+msgstr "Ny regning"
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:23
-msgid "The discount percentage applied if paid early."
-msgstr "Rabatprocenten hvis der foretages tidlig betaling."
+#: ../src/business/business-gnome/dialog-invoice.c:1922
+msgid "Edit Bill"
+msgstr "Rediger regning"
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:24
-msgid "The cutoff day for applying bills to the next month. After the cutoff, bills are applied to the following month. Negative values count backwards from the end of the month."
-msgstr ""
+#: ../src/business/business-gnome/dialog-invoice.c:1926
+msgid "View Bill"
+msgstr "Vis regning"
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:26
-msgid "Table"
-msgstr "Tabel"
+#: ../src/business/business-gnome/dialog-invoice.c:1935
+#: ../src/gnome-search/dialog-search.c:1067
+msgid "New Expense Voucher"
+msgstr "Nyt udgiftsbilag"
-#. src/report/business-reports/easy-invoice.scm
-#. src/report/business-reports/fancy-invoice.scm
-#. src/report/business-reports/invoice.scm
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:27
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:12
-#: ../intl-scm/guile-strings.c:952
-#: ../intl-scm/guile-strings.c:1162
-#: ../intl-scm/guile-strings.c:1344
-msgid "Terms"
-msgstr "Betingelser"
+#: ../src/business/business-gnome/dialog-invoice.c:1941
+msgid "Edit Expense Voucher"
+msgstr "Rediger udgiftsbilag"
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:28
-msgid "Close this window"
-msgstr "Luk dette vindue"
+#: ../src/business/business-gnome/dialog-invoice.c:1945
+msgid "View Expense Voucher"
+msgstr "Vis udgiftsbilag"
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:29
-msgid "<b>Terms</b>"
-msgstr "<b>Betingelser</b>"
+#: ../src/business/business-gnome/dialog-invoice.c:2341
+#: ../src/business/business-gnome/dialog-invoice.c:2517
+msgid "Bill Information"
+msgstr "Fakturasoplysninger"
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:30
-msgid "Delete the current Billing Term"
-msgstr "Slet den nuværende betalingsbetingelse"
+#: ../src/business/business-gnome/dialog-invoice.c:2343
+#: ../src/business/business-gnome/dialog-invoice.c:2520
+#: ../src/business/business-gnome/dialog-invoice.c:3021
+msgid "Bill ID"
+msgstr "Regnings-id"
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:31
-msgid "Create a new Billing Term"
-msgstr "Opret en ny betalingsbetingelse"
+#: ../src/business/business-gnome/dialog-invoice.c:2346
+#: ../src/business/business-gnome/dialog-invoice.c:2524
+msgid "Voucher Information"
+msgstr "Bilagsoplysninger"
-#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:32
-msgid "Edit the current Billing Term"
-msgstr "Rediger den aktuelle betalingsbetingelse"
+#: ../src/business/business-gnome/dialog-invoice.c:2348
+#: ../src/business/business-gnome/dialog-invoice.c:2527
+#: ../src/business/business-gnome/dialog-invoice.c:3055
+msgid "Voucher ID"
+msgstr "Bilags-id"
-#: ../src/business/business-gnome/gtkbuilder/dialog-choose-owner.glade.h:1
-msgid "Choose Owner Dialog"
-msgstr "Vælg ejerdialog"
+#: ../src/business/business-gnome/dialog-invoice.c:2824
+msgid "Date of duplicated entries"
+msgstr "Dato for duplikerede poster"
-#. src/report/business-reports/customer-summary.scm
-#. src/report/business-reports/easy-invoice.scm
-#. src/report/business-reports/fancy-invoice.scm
-#. src/report/business-reports/invoice.scm
-#. src/report/business-reports/job-report.scm
-#. src/report/business-reports/owner-report.scm
-#. src/report/business-reports/taxinvoice.eguile.scm
-#. src/report/standard-reports/account-summary.scm
-#. src/report/standard-reports/general-journal.scm
-#. src/report/standard-reports/general-ledger.scm
-#. src/report/standard-reports/register.scm
-#. src/report/standard-reports/sx-summary.scm
-#. src/report/standard-reports/transaction.scm
-#: ../src/business/business-gnome/gtkbuilder/dialog-choose-owner.glade.h:2
-#: ../src/business/business-gnome/gtkbuilder/dialog-date-close.glade.h:5
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:66
-#: ../src/gnome/dialog-find-transactions2.c:140
-#: ../src/gnome/dialog-find-transactions.c:139
-#: ../src/gnome/dialog-lot-viewer.c:920
-#: ../src/gnome/dialog-tax-info.c:1352
-#: ../src/gnome/reconcile-view.c:374
-#: ../src/gnome-utils/gnc-tree-model-budget.c:102
-#: ../src/gnome-utils/gnc-tree-view-account.c:749
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2912
-#: ../src/import-export/csv-exp/csv-transactions-export.c:419
-#: ../src/import-export/csv-imp/gnc-csv-model.c:47
-#: ../src/import-export/import-main-matcher.c:485
-#: ../src/import-export/import-match-picker.c:346
-#: ../src/import-export/import-match-picker.c:386
-#: ../src/import-export/qif-imp/assistant-qif-import.c:3492
-#: ../src/import-export/qif-imp/assistant-qif-import.c:3529
-#: ../src/register/ledger-core/split-register-model.c:286
-#: ../intl-scm/guile-strings.c:660
-#: ../intl-scm/guile-strings.c:754
-#: ../intl-scm/guile-strings.c:786
-#: ../intl-scm/guile-strings.c:960
-#: ../intl-scm/guile-strings.c:992
-#: ../intl-scm/guile-strings.c:1170
-#: ../intl-scm/guile-strings.c:1202
-#: ../intl-scm/guile-strings.c:1366
-#: ../intl-scm/guile-strings.c:1478
-#: ../intl-scm/guile-strings.c:1634
-#: ../intl-scm/guile-strings.c:2562
-#: ../intl-scm/guile-strings.c:3558
-#: ../intl-scm/guile-strings.c:3586
-#: ../intl-scm/guile-strings.c:4072
-#: ../intl-scm/guile-strings.c:4128
-#: ../intl-scm/guile-strings.c:4316
-#: ../intl-scm/guile-strings.c:4376
-#: ../intl-scm/guile-strings.c:4446
-#: ../intl-scm/guile-strings.c:4572
-#: ../intl-scm/guile-strings.c:4628
-#: ../intl-scm/guile-strings.c:4712
-msgid "Description"
-msgstr "Beskrivelse"
+#: ../src/business/business-gnome/dialog-invoice.c:2859
+msgid "Do you really want to post these invoices?"
+msgstr "Er du sikker på, at du vil bogføre disse fakturaer?"
-#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:2
-msgid "Customer Number: "
-msgstr "Kundenummer: "
+#: ../src/business/business-gnome/dialog-invoice.c:2925
+msgid "View/Edit Invoice"
+msgstr "Vis/rediger faktura"
-#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:3
-#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:3
-msgid "Company Name: "
-msgstr "Firmanavn: "
+#: ../src/business/business-gnome/dialog-invoice.c:2927
+#: ../src/business/business-gnome/dialog-invoice.c:2936
+#: ../src/business/business-gnome/dialog-invoice.c:2947
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:261
+#: ../src/gnome/gnc-plugin-page-register2.c:480
+#: ../src/gnome/gnc-plugin-page-register.c:483
+msgid "Duplicate"
+msgstr "Dublet"
-#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:4
-#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:4
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:7
-#: ../src/business/business-gnome/gtkbuilder/dialog-job.glade.h:9
-#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:14
-#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:4
-#: ../src/gnome-utils/gnc-tree-view-owner.c:480
-msgid "Active"
-msgstr "Aktiv"
+#: ../src/business/business-gnome/dialog-invoice.c:2928
+#: ../src/business/business-gnome/dialog-invoice.c:2937
+#: ../src/business/business-gnome/dialog-invoice.c:2948
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:265
+msgid "Post"
+msgstr "Bogfør"
-#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:5
-msgid "The customer ID number. If left blank a reasonable number will be chosen for you"
-msgstr "Kundens id-nummer. Hvis tom vil et egnet nummer blive valgt for dig"
+#: ../src/business/business-gnome/dialog-invoice.c:2929
+#: ../src/business/business-gnome/dialog-invoice.c:2938
+#: ../src/business/business-gnome/dialog-invoice.c:2949
+msgid "Printable Report"
+msgstr "Rapport til udskrivning"
-#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:6
-#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:6
-#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:6
-msgid "Identification"
-msgstr "Identifikation"
+#: ../src/business/business-gnome/dialog-invoice.c:2934
+#: ../src/business/business-gnome/dialog-invoice.c:3198
+msgid "View/Edit Bill"
+msgstr "Vis/rediger regning"
-#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:7
-#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:7
-#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:7
-msgid "Name: "
-msgstr "Navn: "
+#. Translators: The terms 'Voucher' and 'Expense Voucher' are used
+#. interchangeably in gnucash and mean the same thing.
+#: ../src/business/business-gnome/dialog-invoice.c:2945
+msgid "View/Edit Voucher"
+msgstr "Vis/rediger bilag"
-#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:8
-#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:8
-#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:8
-msgid "Address: "
-msgstr "Adresse: "
+#: ../src/business/business-gnome/dialog-invoice.c:2959
+msgid "Invoice Owner"
+msgstr "Fakturaejer"
-#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:9
-#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:9
-#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:9
-msgid "Phone: "
-msgstr "Telefon: "
+#: ../src/business/business-gnome/dialog-invoice.c:2962
+#: ../src/report/business-reports/easy-invoice.scm:339
+#: ../src/report/business-reports/fancy-invoice.scm:329
+#: ../src/report/business-reports/invoice.scm:314
+msgid "Invoice Notes"
+msgstr "Fakturabemærkninger"
-#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:10
-#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:10
-#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:10
-msgid "Fax: "
-msgstr "Fax: "
+#: ../src/business/business-gnome/dialog-invoice.c:2965
+#: ../src/business/business-gnome/dialog-invoice.c:2999
+#: ../src/business/business-gnome/dialog-invoice.c:3033
+#: ../src/business/business-gnome/dialog-invoice.c:3062
+#: ../src/business/business-gnome/dialog-job.c:562
+#: ../src/business/business-gnome/dialog-job.c:573
+#: ../src/business/business-gnome/dialog-order.c:883
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:11
+#: ../src/business/business-gnome/gtkbuilder/dialog-job.glade.h:6
+#: ../src/report/business-reports/easy-invoice.scm:334
+#: ../src/report/business-reports/easy-invoice.scm:828
+#: ../src/report/business-reports/fancy-invoice.scm:324
+#: ../src/report/business-reports/invoice.scm:309
+msgid "Billing ID"
+msgstr "Regnings-id"
-#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:11
-#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:11
-#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:11
-msgid "Email: "
-msgstr "E-post: "
+#: ../src/business/business-gnome/dialog-invoice.c:2968
+#: ../src/business/business-gnome/dialog-invoice.c:3002
+#: ../src/business/business-gnome/dialog-invoice.c:3036
+msgid "Is Paid?"
+msgstr "Er betalt?"
-#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:12
-msgid "Billing Address"
-msgstr "Faktureringsadresse"
+#: ../src/business/business-gnome/dialog-invoice.c:2971
+#: ../src/business/business-gnome/dialog-invoice.c:3005
+#: ../src/business/business-gnome/dialog-invoice.c:3039
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:5
+#: ../src/gnome/dialog-find-transactions2.c:125
+#: ../src/gnome/dialog-find-transactions.c:124
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2820
+msgid "Date Posted"
+msgstr "Dato bogført"
-#. src/report/business-reports/balsheet-eg.scm
-#. src/report/business-reports/taxinvoice.scm
-#. src/report/standard-reports/account-summary.scm
-#. src/report/standard-reports/sx-summary.scm
-#. src/report/standard-reports/transaction.scm
-#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:13
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:14
-#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:9
-#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:13
-#: ../src/gnome/dialog-find-transactions2.c:128
-#: ../src/gnome/dialog-find-transactions.c:127
-#: ../src/gnome-utils/gnc-tree-view-account.c:885
-#: ../src/gnome-utils/gnc-tree-view-owner.c:475
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2914
-#: ../src/import-export/csv-exp/csv-transactions-export.c:419
-#: ../src/import-export/csv-imp/gnc-csv-model.c:48
-#: ../src/register/ledger-core/split-register-model.c:468
-#: ../intl-scm/guile-strings.c:596
-#: ../intl-scm/guile-strings.c:1650
-#: ../intl-scm/guile-strings.c:2568
-#: ../intl-scm/guile-strings.c:4322
-#: ../intl-scm/guile-strings.c:4432
-#: ../intl-scm/guile-strings.c:4450
-#: ../intl-scm/guile-strings.c:4716
-#: ../intl-scm/guile-strings.c:4768
-msgid "Notes"
-msgstr "Bemærkninger"
+#: ../src/business/business-gnome/dialog-invoice.c:2974
+#: ../src/business/business-gnome/dialog-invoice.c:3008
+#: ../src/business/business-gnome/dialog-invoice.c:3042
+msgid "Is Posted?"
+msgstr "Er bogført?"
-#. src/report/business-reports/customer-summary.scm
-#. src/report/business-reports/job-report.scm
-#. src/report/business-reports/owner-report.scm
-#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:14
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:24
-#: ../src/business/business-gnome/search-owner.c:238
-#: ../src/gnome-search/dialog-search.c:1023
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2883
-#: ../src/plugins/customer_import/gtkbuilder/dialog-customer-import-gui.glade.h:3
-#: ../src/register/ledger-core/split-register-model.c:282
-#: ../intl-scm/guile-strings.c:724
-#: ../intl-scm/guile-strings.c:732
-#: ../intl-scm/guile-strings.c:1436
-#: ../intl-scm/guile-strings.c:1486
-#: ../intl-scm/guile-strings.c:1508
-msgid "Customer"
-msgstr "Kunde"
+#: ../src/business/business-gnome/dialog-invoice.c:2977
+#: ../src/business/business-gnome/dialog-invoice.c:3011
+#: ../src/business/business-gnome/dialog-invoice.c:3045
+#: ../src/business/business-gnome/dialog-order.c:872
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:4
+#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:3
+msgid "Date Opened"
+msgstr "Dato åbnet"
-#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:15
-#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:17
-#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:15
-msgid "Currency: "
-msgstr "Valuta: "
+#: ../src/business/business-gnome/dialog-invoice.c:2983
+#: ../src/business/business-gnome/dialog-invoice.c:3017
+msgid "Company Name "
+msgstr "Firmanavn "
-#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:16
-#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:16
-msgid "Terms: "
-msgstr "Betingelser: "
+#: ../src/business/business-gnome/dialog-invoice.c:2987
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:3
+msgid "Invoice ID"
+msgstr "Faktura-id"
-#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:17
-msgid "Discount: "
-msgstr "Rabat: "
+#: ../src/business/business-gnome/dialog-invoice.c:2993
+msgid "Bill Owner"
+msgstr "Regningsejer"
-#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:18
-msgid "Credit Limit: "
-msgstr "Kreditbegrænsning: "
+#: ../src/business/business-gnome/dialog-invoice.c:2996
+msgid "Bill Notes"
+msgstr "Bemærkninger til regning"
-#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:19
-msgid "Tax Included: "
-msgstr "Skat inkluderet: "
+#: ../src/business/business-gnome/dialog-invoice.c:3027
+msgid "Voucher Owner"
+msgstr "Bilagsejer"
-#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:20
-msgid "Tax Table: "
-msgstr "Skattetabel: "
+#: ../src/business/business-gnome/dialog-invoice.c:3030
+msgid "Voucher Notes"
+msgstr "Bemærkninger til bilag"
-#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:21
-#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:19
-msgid "Override the global Tax Table?"
-msgstr "Overskriv den globale skattetabel?"
+#: ../src/business/business-gnome/dialog-invoice.c:3064
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:2
+#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:7
+#: ../src/gnome/dialog-lot-viewer.c:831 ../src/gnome/dialog-tax-info.c:1189
+#: ../src/gnome-utils/gnc-tree-view-account.c:732
+#: ../src/gnome-utils/gnc-tree-view-owner.c:403
+#: ../src/gnome-utils/gnc-tree-view-price.c:449
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2972
+#: ../src/import-export/csv-exp/csv-transactions-export.c:421
+#: ../src/register/ledger-core/split-register-model.c:346
+#: ../src/report/business-reports/customer-summary.scm:69
+#: ../src/report/business-reports/job-report.scm:46
+#: ../src/report/business-reports/owner-report.scm:53
+#: ../src/report/standard-reports/account-summary.scm:441
+#: ../src/report/standard-reports/sx-summary.scm:446
+msgid "Type"
+msgstr "Type"
-#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:22
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:13
-#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:8
-msgid "Billing Information"
-msgstr "Faktureringsoplysninger"
+#: ../src/business/business-gnome/dialog-invoice.c:3066
+#: ../src/register/ledger-core/split-register-model.c:300
+msgid "Paid"
+msgstr "Betalt"
-#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:23
-msgid "Shipping Information"
-msgstr "Leveringsinformation"
+#: ../src/business/business-gnome/dialog-invoice.c:3069
+msgid "Posted"
+msgstr "Bogført"
-#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:24
-msgid "Shipping Address"
-msgstr "Leveringsadresse"
+#: ../src/business/business-gnome/dialog-invoice.c:3074
+#: ../src/business/business-gnome/dialog-invoice.c:3214
+#: ../src/report/business-reports/easy-invoice.scm:805
+msgid "Due"
+msgstr "Forfalden"
-#: ../src/business/business-gnome/gtkbuilder/dialog-date-close.glade.h:1
-msgid "Question"
-msgstr "Spørgsmål"
+#: ../src/business/business-gnome/dialog-invoice.c:3076
+#: ../src/business/business-gnome/dialog-order.c:890
+#: ../src/gnome/dialog-lot-viewer.c:837
+msgid "Opened"
+msgstr "Ã
bnet"
-#: ../src/business/business-gnome/gtkbuilder/dialog-date-close.glade.h:2
-msgid "Dummy message"
-msgstr "Tom besked"
+#: ../src/business/business-gnome/dialog-invoice.c:3078
+#: ../src/business/business-gnome/dialog-order.c:892
+#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:19
+#: ../src/gnome/dialog-lot-viewer.c:914 ../src/gnome/reconcile-view.c:381
+#: ../src/gnome/reconcile-view.c:385
+#: ../src/import-export/csv-imp/gnc-csv-model.c:46
+#: ../src/register/ledger-core/split-register-model.c:246
+#: ../src/register/ledger-core/split-register-model.c:266
+#: ../src/report/standard-reports/general-journal.scm:108
+#: ../src/report/standard-reports/general-ledger.scm:77
+#: ../src/report/standard-reports/register.scm:127
+#: ../src/report/standard-reports/register.scm:395
+#: ../src/report/standard-reports/transaction.scm:384
+#: ../src/report/standard-reports/transaction.scm:385
+#: ../src/report/standard-reports/transaction.scm:442
+#: ../src/report/standard-reports/transaction.scm:946
+msgid "Num"
+msgstr "Nr."
-#: ../src/business/business-gnome/gtkbuilder/dialog-date-close.glade.h:3
-#, fuzzy
-msgid "postd"
-msgstr "Indsæt"
+#: ../src/business/business-gnome/dialog-invoice.c:3159
+msgid "Find Bill"
+msgstr "Find regning"
+
+#: ../src/business/business-gnome/dialog-invoice.c:3165
+msgid "Find Expense Voucher"
+msgstr "Find udgiftsbilag"
-#: ../src/business/business-gnome/gtkbuilder/dialog-date-close.glade.h:4
-msgid "duedate"
-msgstr "forfaldsdato"
+#: ../src/business/business-gnome/dialog-invoice.c:3166
+#: ../src/gnome-search/dialog-search.c:1065
+#: ../src/report/business-reports/easy-invoice.scm:712
+#: ../src/report/business-reports/fancy-invoice.scm:811
+#: ../src/report/business-reports/invoice.scm:681
+msgid "Expense Voucher"
+msgstr "Udgiftsbilag"
-#: ../src/business/business-gnome/gtkbuilder/dialog-date-close.glade.h:6
-msgid "acct"
-msgstr ""
+#: ../src/business/business-gnome/dialog-invoice.c:3171
+msgid "Find Invoice"
+msgstr "Find faktura"
-#: ../src/business/business-gnome/gtkbuilder/dialog-date-close.glade.h:7
-msgid "question"
-msgstr "spørgsmål"
+#. Translators: This abbreviation is the column heading for
+#. the condition "Is this invoice a Credit Note?"
+#: ../src/business/business-gnome/dialog-invoice.c:3208
+msgid "CN?"
+msgstr ""
-#: ../src/business/business-gnome/gtkbuilder/dialog-date-close.glade.h:8
-#: ../src/import-export/csv-imp/assistant-csv-account-import.glade.h:25
-#: ../src/import-export/csv-imp/assistant-csv-trans-import.glade.h:46
-msgid "label"
-msgstr "etiket"
+#. note the "Amount" multichoice option here
+#: ../src/business/business-gnome/dialog-invoice.c:3210
+#: ../src/gnome/dialog-lot-viewer.c:926 ../src/gnome/reconcile-view.c:373
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2992
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3004
+#: ../src/import-export/aqb/dialog-ab.glade.h:34
+#: ../src/import-export/import-main-matcher.c:484
+#: ../src/import-export/import-match-picker.c:345
+#: ../src/import-export/import-match-picker.c:385
+#: ../src/import-export/qif-imp/assistant-qif-import.c:3501
+#: ../src/import-export/qif-imp/assistant-qif-import.c:3538
+#: ../src/report/business-reports/customer-summary.scm:71
+#: ../src/report/business-reports/job-report.scm:48
+#: ../src/report/business-reports/owner-report.scm:57
+#: ../src/report/report-system/options-utilities.scm:244
+#: ../src/report/standard-reports/general-journal.scm:114
+#: ../src/report/standard-reports/general-ledger.scm:89
+#: ../src/report/standard-reports/register.scm:430
+#: ../src/report/standard-reports/register.scm:826
+#: ../src/report/standard-reports/transaction.scm:398
+#: ../src/report/standard-reports/transaction.scm:458
+#: ../src/report/standard-reports/transaction.scm:758
+#: ../src/report/standard-reports/transaction.scm:813
+#: ../src/report/standard-reports/transaction.scm:983
+msgid "Amount"
+msgstr "Beløb"
-#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:2
-msgid "Employee Number: "
-msgstr "Medarbejdernummer: "
+#. Translators: %d is the number of bills due. This is a
+#. ngettext(3) message.
+#: ../src/business/business-gnome/dialog-invoice.c:3264
+#, c-format
+msgid "The following bill is due:"
+msgid_plural "The following %d bills are due:"
+msgstr[0] "Den følgende regning er forfalden:"
+msgstr[1] "De følgende %d regninger er forfaldne:"
-#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:3
-msgid "Username: "
-msgstr "Brugernavn: "
+#: ../src/business/business-gnome/dialog-invoice.c:3269
+msgid "Due Bills Reminder"
+msgstr "PÃ¥mindelse om forfaldne regninger"
-#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:5
-msgid "The employee ID number. If left blank a reasonable number will be chosen for you"
-msgstr "Medarbejderens id-nummer. Hvis tom vil et egnet nummer blive valgt for dig"
+#: ../src/business/business-gnome/dialog-job.c:135
+msgid "The Job must be given a name."
+msgstr "Jobbet skal have et navn."
-#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:12
-#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:12
-msgid "Payment Address"
-msgstr "Betalingsadresse"
+#: ../src/business/business-gnome/dialog-job.c:145
+msgid "You must choose an owner for this job."
+msgstr "Du skal vælge en ejer for dette job."
-#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:13
-msgid "Language: "
-msgstr "Sprog: "
+#: ../src/business/business-gnome/dialog-job.c:245
+msgid "Edit Job"
+msgstr "Rediger job"
-#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:14
-msgid "Interface"
-msgstr "Grænseflade"
+#: ../src/business/business-gnome/dialog-job.c:247
+#: ../src/gnome-search/dialog-search.c:1075
+msgid "New Job"
+msgstr "Nyt job"
-#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:15
-msgid "Default Hours per Day: "
-msgstr "Timer per dag som standard: "
+#: ../src/business/business-gnome/dialog-job.c:547
+msgid "View/Edit Job"
+msgstr "Vis/rediger job"
-#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:16
-msgid "Default Rate: "
-msgstr "Standardrate: "
+#: ../src/business/business-gnome/dialog-job.c:548
+msgid "View Invoices"
+msgstr "Vis fakturaer"
-#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:18
-#: ../src/gnome-utils/dialog-transfer.c:1867
-msgid "Credit Account"
-msgstr "Kreditkonto"
+#: ../src/business/business-gnome/dialog-job.c:558
+msgid "Owner's Name"
+msgstr "Ejers navn"
-#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:19
-msgid "Billing"
-msgstr "Regningsudarbejdelse"
+#: ../src/business/business-gnome/dialog-job.c:560
+msgid "Only Active?"
+msgstr "Kun aktive?"
-#. src/report/business-reports/customer-summary.scm
-#. src/report/business-reports/job-report.scm
-#. src/report/business-reports/owner-report.scm
-#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:20
-#: ../src/business/business-gnome/search-owner.c:240
-#: ../src/gnome-search/dialog-search.c:1027
-#: ../intl-scm/guile-strings.c:728
-#: ../intl-scm/guile-strings.c:1448
-#: ../intl-scm/guile-strings.c:1488
-#: ../intl-scm/guile-strings.c:1510
-msgid "Employee"
-msgstr "Medarbejder"
+#: ../src/business/business-gnome/dialog-job.c:564
+#: ../src/business/business-gnome/gtkbuilder/dialog-job.glade.h:2
+msgid "Job Number"
+msgstr "Jobnummer"
-#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:21
-msgid "Access Control List"
-msgstr "Adgangskontrolliste"
+#: ../src/business/business-gnome/dialog-job.c:566
+#: ../src/business/business-gnome/dialog-job.c:577
+#: ../src/business/business-gnome/gtkbuilder/dialog-job.glade.h:3
+msgid "Job Name"
+msgstr "Jobnavn"
-#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:22
-msgid "Access Control"
-msgstr "Adgangskontrol"
+#: ../src/business/business-gnome/dialog-job.c:628
+msgid "Find Job"
+msgstr "Find job"
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:6
-msgid "Posted Account"
-msgstr "Bogført konto"
+#: ../src/business/business-gnome/dialog-order.c:171
+msgid "The Order must be given an ID."
+msgstr "Ordren skal have et id."
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:8
-msgid "Invoice Information"
-msgstr "Fakturaoplysning"
+#: ../src/business/business-gnome/dialog-order.c:277
+msgid "The Order must have at least one Entry."
+msgstr "Ordren skal have mindst en post."
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:9
-#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:6
-#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:3
-msgid "(owner)"
-msgstr "(ejer)"
+#. Damn; yes. Well, ask the user to make sure they REALLY want to
+#. * close this order!
+#.
+#: ../src/business/business-gnome/dialog-order.c:299
+msgid "This order contains entries that have not been invoiced. Are you sure you want to close it out before you invoice all the entries?"
+msgstr "Denne ordre indeholder poster som endnu ikke er blevet faktureret. Er du sikker på, at du vil lukke den, før alle poster er blevet faktureret?"
-#. src/report/business-reports/job-report.scm
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:10
-#: ../src/business/business-gnome/search-owner.c:241
-#: ../src/gnome-search/dialog-search.c:1039
-#: ../intl-scm/guile-strings.c:1356
-#: ../intl-scm/guile-strings.c:1440
-msgid "Job"
-msgstr "Arbejde"
+#. Ok, we can close this. Ask for verification and set the closed date
+#: ../src/business/business-gnome/dialog-order.c:308
+msgid "Do you really want to close the order?"
+msgstr "Er du sikker på, at du vil lukke ordren?"
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:15
-msgid "Customer: "
-msgstr "Kunde: "
+#: ../src/business/business-gnome/dialog-order.c:309
+msgid "Close Date"
+msgstr "Lukningsdato"
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:16
-msgid "Job: "
-msgstr "Arbejde: "
+#: ../src/business/business-gnome/dialog-order.c:857
+msgid "View/Edit Order"
+msgstr "Vis/rediger ordre"
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:17
-#, fuzzy
-msgid "Default Chargeback Project"
-msgstr "Standardvaluta"
+#: ../src/business/business-gnome/dialog-order.c:866
+msgid "Order Notes"
+msgstr "Ordrebemærkninger"
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:18
-msgid "Additional to Card:"
-msgstr "Ekstra på kortet:"
+#: ../src/business/business-gnome/dialog-order.c:868
+#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:13
+msgid "Date Closed"
+msgstr "Dato lukket"
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:19
-msgid "Extra Payments"
-msgstr "Ekstrabetalinger"
+#: ../src/business/business-gnome/dialog-order.c:870
+msgid "Is Closed?"
+msgstr "Er lukket?"
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:20
-msgid "Invoice Entries"
-msgstr "Fakturaposter"
+#: ../src/business/business-gnome/dialog-order.c:874
+msgid "Owner Name "
+msgstr "Ejernavn "
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:23
-msgid "The invoice ID number. If left blank a reasonable number will be chosen for you."
-msgstr "Fakturaens id-nummer. Hvis tom vil et egnet nummer blive valgt for dig."
+#: ../src/business/business-gnome/dialog-order.c:876
+#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:2
+msgid "Order ID"
+msgstr "Ordre-id"
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:25
-msgid ""
-"Unposting this Invoice will delete the posted transaction.\n"
-"Are you sure you want to unpost it?"
-msgstr "Ã
bning af denne faktura vil slette den bogførte transaktion.<nEr du sikker på, at du vil åbne den?"
+#: ../src/business/business-gnome/dialog-order.c:888
+#: ../src/gnome/dialog-lot-viewer.c:847
+msgid "Closed"
+msgstr "Lukket"
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:27
-msgid "Yes, reset the Tax Tables"
-msgstr "Ja, nulstil skattetabellerne"
+#: ../src/business/business-gnome/dialog-order.c:946
+msgid "Find Order"
+msgstr "Find ordre"
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:28
-msgid "No, keep them as they are"
-msgstr "Nej, behold dem som de er"
+#: ../src/business/business-gnome/dialog-payment.c:184
+msgid "You must enter a valid account name for posting."
+msgstr "Du skal indtaste et gyldigt kontonavn for bogføring."
-#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:29
-msgid "Reset Tax Tables to present Values?"
-msgstr "Nulstil skattetabeller for nuværende værdier?"
+#: ../src/business/business-gnome/dialog-payment.c:192
+msgid "You must select a company for payment processing."
+msgstr "Du skal vælge et firma til betalingsprocessen."
-#: ../src/business/business-gnome/gtkbuilder/dialog-job.glade.h:1
-msgid "Job Dialog"
-msgstr "Jobdialog"
+#: ../src/business/business-gnome/dialog-payment.c:213
+msgid "You must select a transfer account from the account tree."
+msgstr "Du skal vælge en overførselskonto fra kontotræet."
-#: ../src/business/business-gnome/gtkbuilder/dialog-job.glade.h:4
-msgid "The job ID number. If left blank a reasonable number will be chosen for you"
-msgstr "Job-id-nummeret. Hvis tom vil et egnet nummer blive valgt for dig"
+#: ../src/business/business-gnome/dialog-payment.c:407
+msgid "Pre-Payment"
+msgstr "Forudbetaling"
-#: ../src/business/business-gnome/gtkbuilder/dialog-job.glade.h:5
-msgid "Job Information"
-msgstr "Jobinformation"
+#: ../src/business/business-gnome/dialog-payment.c:692
+msgid "The transfer and post accounts are associated with different currencies. Please specify the conversion rate."
+msgstr "Overførsel- og bogføringskonti er forbundet med forskellige valutaer. Angiv venligst konverteringsforholdet."
-#: ../src/business/business-gnome/gtkbuilder/dialog-job.glade.h:7
-msgid "Owner Information"
-msgstr "Ejerinformation"
+#: ../src/business/business-gnome/dialog-payment.c:1084
+#, c-format
+msgid "You have no valid \"Post To\" accounts. Please create an account of type \"%s\" before you continue to process this payment. Perhaps you want to create an Invoice or Bill first?"
+msgstr "Du har ingen gyldige »Bogfør på«-konti. Opret venligst en konto af typen »%s« før du fortsætter med at behandle denne betaling. Måske du først skal oprette en faktura eller regning?"
-#: ../src/business/business-gnome/gtkbuilder/dialog-job.glade.h:8
-msgid "Job Active"
+#: ../src/business/business-gnome/dialog-vendor.c:214
+msgid ""
+"You must enter a company name. If this vendor is an individual (and not a company) you should enter the same value for:\n"
+"Identification - Company Name, and\n"
+"Payment Address - Name."
msgstr ""
+"Du skal indtaste et firmanavn. Hvis denne leverandør er en person (og ikke et firma) skal du indtaste den samme værdi for:\n"
+"Identifikation - firmanavn og\n"
+"Betalingsadresse - navn."
-#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:1
-#: ../src/gnome-search/dialog-search.c:1045
-msgid "New Order"
-msgstr "Ny ordre"
+#: ../src/business/business-gnome/dialog-vendor.c:226
+msgid "You must enter a payment address."
+msgstr "Du skal indtaste en betalingsadresse."
-#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:4
-msgid "The order ID number. If left blank a reasonable number will be chosen for you"
-msgstr "Ordrens id-nummer. Hvis tom vil et egnet nummer blive valgt for dig"
+#: ../src/business/business-gnome/dialog-vendor.c:306
+msgid "Edit Vendor"
+msgstr "Rediger leverandør"
-#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:5
-msgid "Order Information"
-msgstr "Ordreinformation"
+#: ../src/business/business-gnome/dialog-vendor.c:308
+#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:1
+#: ../src/gnome-search/dialog-search.c:1091
+msgid "New Vendor"
+msgstr "Ny leverandør"
-#. src/report/business-reports/customer-summary.scm
-#. src/report/business-reports/fancy-invoice.scm
-#. src/report/business-reports/invoice.scm
-#. src/report/business-reports/job-report.scm
-#. src/report/business-reports/owner-report.scm
-#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:7
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2847
-#: ../intl-scm/guile-strings.c:656
-#: ../intl-scm/guile-strings.c:1160
-#: ../intl-scm/guile-strings.c:1342
-#: ../intl-scm/guile-strings.c:1362
-#: ../intl-scm/guile-strings.c:1474
-msgid "Reference"
-msgstr "Reference"
+#: ../src/business/business-gnome/dialog-vendor.c:708
+msgid "View/Edit Vendor"
+msgstr "Vis/Rediger leverandør"
-#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:10
-msgid "Order Entry"
-msgstr "Ordrepost"
+#: ../src/business/business-gnome/dialog-vendor.c:709
+msgid "Vendor's Jobs"
+msgstr "Leverandørs job"
-#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:11
-msgid "Invoices"
-msgstr "Fakturaer"
+#. { N_("Vendor Orders"), order_vendor_cb, NULL, TRUE},
+#: ../src/business/business-gnome/dialog-vendor.c:711
+msgid "Vendor's Bills"
+msgstr "Leverandørs regninger"
-#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:12
-msgid "Close Order"
-msgstr "Luk ordre"
+#: ../src/business/business-gnome/dialog-vendor.c:712
+msgid "Pay Bill"
+msgstr "Betal regning"
-#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:15
-msgid "Order Entries"
-msgstr "Ordreposter"
+#: ../src/business/business-gnome/dialog-vendor.c:724
+msgid "Vendor ID"
+msgstr "Leverandør-id"
-#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:2
-msgid "The company associated with this payment."
-msgstr "Firmaet forbundet med denne betaling."
+#: ../src/business/business-gnome/dialog-vendor.c:759
+msgid "Find Vendor"
+msgstr "Find leverandør"
-#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:4
-msgid "Post To"
-msgstr "Bogfør på"
+#. Toplevel
+#. Extensions Menu
+#: ../src/business/business-gnome/gnc-plugin-business.c:150
+#: ../src/business/business-gnome/gnc-plugin-business.c:290
+#: ../src/report/report-system/report.scm:76
+msgid "_Business"
+msgstr "_Forretning"
-#. Header string
-#. Add the columns
-#. src/report/business-reports/customer-summary.scm
-#. src/report/business-reports/easy-invoice.scm
-#. src/report/business-reports/fancy-invoice.scm
-#. src/report/business-reports/invoice.scm
-#. src/report/business-reports/job-report.scm
-#. src/report/business-reports/owner-report.scm
-#. src/report/business-reports/taxinvoice.eguile.scm
-#. src/report/standard-reports/account-summary.scm
-#. src/report/standard-reports/advanced-portfolio.scm
-#. src/report/standard-reports/category-barchart.scm
-#. src/report/standard-reports/general-journal.scm
-#. src/report/standard-reports/general-ledger.scm
-#. src/report/standard-reports/net-barchart.scm
-#. src/report/standard-reports/net-linechart.scm
-#. src/report/standard-reports/portfolio.scm
-#. src/report/standard-reports/register.scm
-#. src/report/standard-reports/transaction.scm
-#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:5
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:61
-#: ../src/gnome/assistant-loan.c:1830
-#: ../src/gnome/dialog-lot-viewer.c:904
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:16
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:17
-#: ../src/gnome/reconcile-view.c:381
-#: ../src/gnome-utils/gnc-tree-view-price.c:437
-#: ../src/import-export/csv-exp/csv-transactions-export.c:417
-#: ../src/import-export/csv-imp/gnc-csv-model.c:45
-#: ../src/import-export/import-main-matcher.c:481
-#: ../src/import-export/import-match-picker.c:344
-#: ../src/import-export/import-match-picker.c:384
-#: ../src/import-export/qif-imp/assistant-qif-import.c:3484
-#: ../src/import-export/qif-imp/assistant-qif-import.c:3521
-#: ../src/register/ledger-core/split-register-model.c:224
-#: ../intl-scm/guile-strings.c:654
-#: ../intl-scm/guile-strings.c:752
-#: ../intl-scm/guile-strings.c:780
-#: ../intl-scm/guile-strings.c:944
-#: ../intl-scm/guile-strings.c:958
-#: ../intl-scm/guile-strings.c:986
-#: ../intl-scm/guile-strings.c:1168
-#: ../intl-scm/guile-strings.c:1196
-#: ../intl-scm/guile-strings.c:1336
-#: ../intl-scm/guile-strings.c:1358
-#: ../intl-scm/guile-strings.c:1470
-#: ../intl-scm/guile-strings.c:1632
-#: ../intl-scm/guile-strings.c:2478
-#: ../intl-scm/guile-strings.c:2592
-#: ../intl-scm/guile-strings.c:3396
-#: ../intl-scm/guile-strings.c:3554
-#: ../intl-scm/guile-strings.c:3580
-#: ../intl-scm/guile-strings.c:3832
-#: ../intl-scm/guile-strings.c:3926
-#: ../intl-scm/guile-strings.c:3950
-#: ../intl-scm/guile-strings.c:4064
-#: ../intl-scm/guile-strings.c:4110
-#: ../intl-scm/guile-strings.c:4208
-#: ../intl-scm/guile-strings.c:4356
-#: ../intl-scm/guile-strings.c:4434
-#: ../intl-scm/guile-strings.c:4544
-#: ../intl-scm/guile-strings.c:4600
-#: ../intl-scm/guile-strings.c:4696
-msgid "Date"
-msgstr "Dato"
+#. Customer submenu
+#: ../src/business/business-gnome/gnc-plugin-business.c:153
+msgid "_Customer"
+msgstr "_Kunde"
-#. src/report/standard-reports/transaction.scm
-#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:6
-#: ../src/gnome/dialog-find-transactions2.c:136
-#: ../src/gnome/dialog-find-transactions2.c:155
-#: ../src/gnome/dialog-find-transactions2.c:163
-#: ../src/gnome/dialog-find-transactions.c:135
-#: ../src/gnome/dialog-find-transactions.c:154
-#: ../src/gnome/dialog-find-transactions.c:162
-#: ../src/gnome/gnc-plugin-page-register.c:1838
-#: ../src/gnome-search/dialog-search.c:860
-#: ../src/gnome-search/dialog-search.c:868
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2865
-#: ../src/gnome-utils/gtkbuilder/gnc-date-format.glade.h:6
-#: ../src/import-export/csv-exp/csv-transactions-export.c:418
-#: ../intl-scm/guile-strings.c:4632
-msgid "Number"
-msgstr "Nummer"
+#: ../src/business/business-gnome/gnc-plugin-business.c:155
+msgid "Customers Overview"
+msgstr "Kundeoverblik"
-#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:10
-msgid "Documents"
-msgstr "Dokumenter"
+#: ../src/business/business-gnome/gnc-plugin-business.c:156
+msgid "Open a Customer overview page"
+msgstr "Ã
bn vinduet Kundeoverblik"
-#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:11
-msgid ""
-"The amount to pay for this invoice.\n"
-"\n"
-"If you have selected an invoice, GnuCash will propose the amount still due for it. You can change this amount to create a partial payment or an over-payment.\n"
-"\n"
-"In case of an over-payment or if no invoice was selected, GnuCash will automatically assign the remaining amount to the first unpaid invoice for this company."
-msgstr ""
-"Beløbet der skal betales for denne faktura.\n"
-"\n"
-"Hvis du har valgt en faktura, så vil GnuCash foreslå et beløb som gælder for denne. Du kan ændre dette beløb for at oprette en delvis betaling eller en overbetaling.\n"
-"\n"
-"I tilfældet med en overbetaling eller hvis ingen faktura blev valgt, så vil GnuCash automatisk tildele det resterende beløb til den første ubetalte faktura for dette firma."
+#: ../src/business/business-gnome/gnc-plugin-business.c:160
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:161
+msgid "_New Customer..."
+msgstr "_Ny kunde..."
-#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:16
-msgid "<b>Amount</b>"
-msgstr "<b>Beløb</b>"
+#: ../src/business/business-gnome/gnc-plugin-business.c:161
+msgid "Open the New Customer dialog"
+msgstr "Ã
bn vinduet Ny kunde"
-#. set per book option
-#. Mark the transaction as a payment
-#. src/app-utils/prefs.scm
-#. src/report/business-reports/customer-summary.scm
-#. src/report/business-reports/owner-report.scm
-#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:17
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:131
-#: ../src/engine/gncOwner.c:765
-#: ../src/engine/gncOwner.c:800
-#: ../src/engine/gncOwner.c:825
-#: ../src/engine/gncOwner.c:838
-#: ../src/gnome/assistant-loan.c:1836
-#: ../src/gnome/assistant-loan.c:2744
-#: ../src/gnome/assistant-loan.c:2806
-#: ../src/gnome/assistant-loan.c:2819
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2887
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2928
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2933
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2944
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3093
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3179
-#: ../src/register/ledger-core/split-register.c:2425
-#: ../src/register/ledger-core/split-register.c:2466
-#: ../src/register/ledger-core/split-register.c:2471
-#: ../src/register/ledger-core/split-register.c:2482
-#: ../intl-scm/guile-strings.c:254
-#: ../intl-scm/guile-strings.c:270
-#: ../intl-scm/guile-strings.c:302
-#: ../intl-scm/guile-strings.c:682
-#: ../intl-scm/guile-strings.c:684
-#: ../intl-scm/guile-strings.c:1528
-msgid "Payment"
-msgstr "Betaling"
+#: ../src/business/business-gnome/gnc-plugin-business.c:165
+msgid "_Find Customer..."
+msgstr "_Find kunde..."
-#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:18
-msgid "Refund"
-msgstr "Tilbagebetaling"
+#: ../src/business/business-gnome/gnc-plugin-business.c:166
+msgid "Open the Find Customer dialog"
+msgstr "Ã
bn vinduet Find kunde"
-#. src/report/standard-reports/general-ledger.scm
-#. src/report/standard-reports/register.scm
-#. src/report/standard-reports/transaction.scm
-#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:20
-#: ../src/gnome/dialog-find-transactions2.c:138
-#: ../src/gnome/dialog-find-transactions.c:137
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2885
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2887
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2896
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2898
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2916
-#: ../src/import-export/csv-exp/csv-transactions-export.c:420
-#: ../src/import-export/import-main-matcher.c:486
-#: ../src/import-export/import-match-picker.c:347
-#: ../src/import-export/import-match-picker.c:387
-#: ../src/register/ledger-core/split-register-model.c:339
-#: ../intl-scm/guile-strings.c:3588
-#: ../intl-scm/guile-strings.c:4074
-#: ../intl-scm/guile-strings.c:4134
-#: ../intl-scm/guile-strings.c:4408
-#: ../intl-scm/guile-strings.c:4448
-#: ../intl-scm/guile-strings.c:4452
-#: ../intl-scm/guile-strings.c:4584
-#: ../intl-scm/guile-strings.c:4636
-#: ../intl-scm/guile-strings.c:4764
-msgid "Memo"
-msgstr "Note"
+#: ../src/business/business-gnome/gnc-plugin-business.c:170
+#: ../src/business/business-gnome/gnc-plugin-business.c:304
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:192
+msgid "New _Invoice..."
+msgstr "Ny _faktura..."
-#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:21
-msgid "Transaction Details"
-msgstr "Transaktionsdetaljer"
+#: ../src/business/business-gnome/gnc-plugin-business.c:171
+#: ../src/business/business-gnome/gnc-plugin-business.c:305
+msgid "Open the New Invoice dialog"
+msgstr "Ã
bn vinduet Ny faktura"
-#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:22
-msgid "Transfer Account"
-msgstr "Overførselskonto"
+#: ../src/business/business-gnome/gnc-plugin-business.c:175
+msgid "Find In_voice..."
+msgstr "Find fakt_ura..."
-#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:2
-msgid "Vendor Number: "
-msgstr "Leverandørnummer: "
+#: ../src/business/business-gnome/gnc-plugin-business.c:176
+msgid "Open the Find Invoice dialog"
+msgstr "Ã
bn vinduet Find faktura"
-#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:5
-msgid "The vendor ID number. If left blank a reasonable number will be chosen for you"
-msgstr "Leverandørens id-nummer. Hvis tom vil et egnet nummer blive valgt for dig"
+#: ../src/business/business-gnome/gnc-plugin-business.c:180
+#: ../src/business/business-gnome/gnc-plugin-business.c:223
+msgid "New _Job..."
+msgstr "Nyt _job..."
-#. src/report/business-reports/customer-summary.scm
-#. src/report/business-reports/job-report.scm
-#. src/report/business-reports/owner-report.scm
-#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:14
-#: ../src/business/business-gnome/search-owner.c:239
-#: ../src/gnome-search/dialog-search.c:1055
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2894
-#: ../src/plugins/customer_import/gtkbuilder/dialog-customer-import-gui.glade.h:5
-#: ../src/register/ledger-core/split-register-model.c:284
-#: ../intl-scm/guile-strings.c:726
-#: ../intl-scm/guile-strings.c:1444
-#: ../intl-scm/guile-strings.c:1512
-msgid "Vendor"
-msgstr "Leverandør"
+#: ../src/business/business-gnome/gnc-plugin-business.c:181
+#: ../src/business/business-gnome/gnc-plugin-business.c:224
+msgid "Open the New Job dialog"
+msgstr "Ã
bn vinduet Nyt job"
-#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:17
-msgid "Tax Included:"
-msgstr "Skat inkluderet:"
+#: ../src/business/business-gnome/gnc-plugin-business.c:185
+#: ../src/business/business-gnome/gnc-plugin-business.c:228
+msgid "Find Jo_b..."
+msgstr "Find jo_b..."
-#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:18
-msgid "Tax Table:"
-msgstr "Skattetabel:"
+#: ../src/business/business-gnome/gnc-plugin-business.c:186
+#: ../src/business/business-gnome/gnc-plugin-business.c:229
+msgid "Open the Find Job dialog"
+msgstr "Ã
bn vinduet Find job"
-#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:20
-#: ../src/gnome/window-reconcile2.c:466
-#: ../src/gnome/window-reconcile.c:466
-msgid "Payment Information"
-msgstr "Betalingsinformation"
+#: ../src/business/business-gnome/gnc-plugin-business.c:190
+#: ../src/business/business-gnome/gnc-plugin-business.c:233
+#: ../src/business/business-gnome/gnc-plugin-business.c:266
+msgid "_Process Payment..."
+msgstr "_Behandl betaling..."
-#: ../src/business/business-gnome/search-owner.c:163
-msgid "You have not selected an owner"
-msgstr "Du har ikke valgt en ejer"
+#: ../src/business/business-gnome/gnc-plugin-business.c:191
+#: ../src/business/business-gnome/gnc-plugin-business.c:234
+#: ../src/business/business-gnome/gnc-plugin-business.c:267
+msgid "Open the Process Payment dialog"
+msgstr "Ã
bn vinduet Behandl betaling"
-#: ../src/business/business-gnome/search-owner.c:258
-#: ../src/gnome-search/search-boolean.c:181
-#: ../src/gnome-search/search-reconciled.c:189
-msgid "is"
-msgstr "er"
+#: ../src/business/business-gnome/gnc-plugin-business.c:197
+msgid "Vendors Overview"
+msgstr "Leverandøroverblik"
-#: ../src/business/business-gnome/search-owner.c:259
-#: ../src/gnome-search/search-boolean.c:182
-#: ../src/gnome-search/search-reconciled.c:190
-msgid "is not"
-msgstr "er ikke"
+#: ../src/business/business-gnome/gnc-plugin-business.c:198
+msgid "Open a Vendor overview page"
+msgstr "Ã
bn vinduet Leverandøroverblik"
-#: ../src/business/business-ledger/gncEntryLedger.c:85
-#: ../src/gnome-utils/dialog-transfer.c:1409
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1959
-#: ../src/register/ledger-core/split-register.c:1829
-#, c-format
-msgid "The account %s does not allow transactions."
-msgstr "Kontoen %s tillader ikke transaktioner."
+#: ../src/business/business-gnome/gnc-plugin-business.c:201
+msgid "_Vendor"
+msgstr "_Leverandør"
-#: ../src/business/business-ledger/gncEntryLedger.c:86
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1960
-#: ../src/register/ledger-core/split-register.c:1830
-#, c-format
-msgid "The account %s does not exist. Would you like to create it?"
-msgstr "Kontoen %s findes ikke. Vil du oprette den?"
+#: ../src/business/business-gnome/gnc-plugin-business.c:203
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:156
+msgid "_New Vendor..."
+msgstr "_Ny leverandør..."
-#. XXX: change this based on the ledger type
-#: ../src/business/business-ledger/gncEntryLedger.c:245
-msgid "Hours"
-msgstr "Timer"
+#: ../src/business/business-gnome/gnc-plugin-business.c:204
+msgid "Open the New Vendor dialog"
+msgstr "Ã
bn vinduet Ny leverandør"
-#: ../src/business/business-ledger/gncEntryLedger.c:246
-msgid "Project"
-msgstr "Projekt"
+#: ../src/business/business-gnome/gnc-plugin-business.c:208
+msgid "_Find Vendor..."
+msgstr "_Find leverandør..."
-#: ../src/business/business-ledger/gncEntryLedger.c:247
-msgid "Material"
-msgstr "Materiale"
+#: ../src/business/business-gnome/gnc-plugin-business.c:209
+msgid "Open the Find Vendor dialog"
+msgstr "Ã
bn vinduet Find ny leverandør"
-#: ../src/business/business-ledger/gncEntryLedger.c:902
-#: ../src/business/business-ledger/gncEntryLedgerControl.c:870
-msgid "Save the current entry?"
-msgstr "Gem den aktuelle post?"
+#: ../src/business/business-gnome/gnc-plugin-business.c:213
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:187
+msgid "New _Bill..."
+msgstr "Ny _Regning..."
-#: ../src/business/business-ledger/gncEntryLedger.c:904
-msgid "The current transaction has been changed. Would you like to record the changes before duplicating this entry, or cancel the duplication?"
-msgstr "Den aktuelle transaktion er blevet ændret. Vil du gemme ændringerne før kopiering af denne post, eller afbryde kopieringen?"
+#: ../src/business/business-gnome/gnc-plugin-business.c:214
+msgid "Open the New Bill dialog"
+msgstr "Ã
bn vinduet Ny regning"
-#: ../src/business/business-ledger/gncEntryLedger.c:919
-#: ../src/business/business-ledger/gncEntryLedgerControl.c:892
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:149
-#: ../src/register/ledger-core/split-register.c:466
-msgid "_Record"
-msgstr "_Gem"
+#: ../src/business/business-gnome/gnc-plugin-business.c:218
+msgid "Find Bi_ll..."
+msgstr "Find regn_ing..."
-#: ../src/business/business-ledger/gncEntryLedgerControl.c:159
-msgid "Invalid Entry: You need to supply an account in the right currency for this position."
-msgstr "Ugyldig post: Du skal angive en konto i den korrekte valuta for denne placering."
+#: ../src/business/business-gnome/gnc-plugin-business.c:219
+msgid "Open the Find Bill dialog"
+msgstr "Ã
bn vinduet Find regning"
-#: ../src/business/business-ledger/gncEntryLedgerControl.c:186
-msgid "This account should usually be of type income."
-msgstr "Denne konto skal normalt være af typen indtægt."
+#: ../src/business/business-gnome/gnc-plugin-business.c:240
+msgid "Employees Overview"
+msgstr "Medarbejderoverblik"
-#: ../src/business/business-ledger/gncEntryLedgerControl.c:194
-msgid "This account should usually be of type expense or asset."
-msgstr "Denne konto skal normalt være af typen udgift eller aktiv."
+#: ../src/business/business-gnome/gnc-plugin-business.c:241
+msgid "Open a Employee overview page"
+msgstr "Ã
bn vinduet Medarbejderoverblik"
-#: ../src/business/business-ledger/gncEntryLedgerControl.c:755
-#, c-format
-msgid "The tax table %s does not exist. Would you like to create it?"
-msgstr "Skattetabellen %s findes ikke. Vil du oprette den?"
+#: ../src/business/business-gnome/gnc-plugin-business.c:244
+msgid "_Employee"
+msgstr "M_edarbejder"
-#: ../src/business/business-ledger/gncEntryLedgerControl.c:872
-msgid "The current entry has been changed. However, this entry is part of an existing order. Would you like to record the change and effectively change your order?"
-msgstr "Den aktuelle post er blevet ændret. Denne post er dog del af en eksisterende ordre. Vil du gemme ændringen og reelt ændre din ordre?"
+#: ../src/business/business-gnome/gnc-plugin-business.c:246
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:166
+msgid "_New Employee..."
+msgstr "_Ny medarbejder..."
-#: ../src/business/business-ledger/gncEntryLedgerControl.c:890
-msgid "_Don't Record"
-msgstr "_Gem ikke"
+#: ../src/business/business-gnome/gnc-plugin-business.c:247
+msgid "Open the New Employee dialog"
+msgstr "Ã
bn vinduet Ny medarbejder"
-#: ../src/business/business-ledger/gncEntryLedgerControl.c:977
-msgid "The current entry has been changed. Would you like to save it?"
-msgstr "Den aktuelle transaktion er blevet ændret. Vil du gemme den?"
+#: ../src/business/business-gnome/gnc-plugin-business.c:251
+msgid "_Find Employee..."
+msgstr "_Find medarbejder..."
-#: ../src/business/business-ledger/gncEntryLedgerLayout.c:76
-msgid "sample:X"
-msgstr "sample:X"
+#: ../src/business/business-gnome/gnc-plugin-business.c:252
+msgid "Open the Find Employee dialog"
+msgstr "Ã
bn vinduet Find medarbejder"
-#: ../src/business/business-ledger/gncEntryLedgerLayout.c:80
-#: ../src/register/ledger-core/split-register-layout.c:618
-#: ../src/register/ledger-core/split-register-layout.c:626
-msgid "sample:12/12/2000"
-msgstr "sample:12/12/2000"
+#: ../src/business/business-gnome/gnc-plugin-business.c:256
+msgid "New _Expense Voucher..."
+msgstr "Nyt _udgiftsbilag..."
-#: ../src/business/business-ledger/gncEntryLedgerLayout.c:85
-msgid "sample:Description of an Entry"
-msgstr "sample:Beskrivelse af en post"
+#: ../src/business/business-gnome/gnc-plugin-business.c:257
+msgid "Open the New Expense Voucher dialog"
+msgstr "Ã
bn vinduet Nyt udgiftsbilag"
-#: ../src/business/business-ledger/gncEntryLedgerLayout.c:89
-msgid "sample:Action"
-msgstr "sample:Handling"
+#: ../src/business/business-gnome/gnc-plugin-business.c:261
+msgid "Find Expense _Voucher..."
+msgstr "Find _udgiftsbilag..."
-#: ../src/business/business-ledger/gncEntryLedgerLayout.c:93
-#: ../src/business/business-ledger/gncEntryLedgerLayout.c:101
-msgid "sample:9,999.00"
-msgstr "sample:9.999,00"
+#: ../src/business/business-gnome/gnc-plugin-business.c:262
+msgid "Open the Find Expense Voucher dialog"
+msgstr "Ã
bn vinduet Find udgiftsbilag"
-#: ../src/business/business-ledger/gncEntryLedgerLayout.c:97
-#: ../src/business/business-ledger/gncEntryLedgerLayout.c:137
-msgid "sample:999,999.00"
-msgstr "sample:999.999,00"
+#: ../src/business/business-gnome/gnc-plugin-business.c:273
+msgid "Sales _Tax Table"
+msgstr "_Skattetabel for salg"
-#: ../src/business/business-ledger/gncEntryLedgerLayout.c:106
-msgid "sample(DT):+%"
-msgstr "sample:(DT):+%"
+#: ../src/business/business-gnome/gnc-plugin-business.c:274
+msgid "View and edit the list of Sales Tax Tables (GST/VAT)"
+msgstr "Vis og rediger listen af salgsskattetabeller (GST/VAT)"
-#: ../src/business/business-ledger/gncEntryLedgerLayout.c:111
-msgid "sample(DH):+%"
-msgstr "sample(DH):+%"
+#: ../src/business/business-gnome/gnc-plugin-business.c:278
+msgid "_Billing Terms Editor"
+msgstr "Redigering af fakturerings_betingelser"
-#: ../src/business/business-ledger/gncEntryLedgerLayout.c:116
-#: ../src/business/business-ledger/gncEntryLedgerLayout.c:121
-#: ../src/register/ledger-core/split-register-layout.c:695
-#: ../src/register/ledger-core/split-register-layout.c:703
-msgid "sample:Expenses:Automobile:Gasoline"
-msgstr "sample:Udgifter:Bil:Benzin"
+#: ../src/business/business-gnome/gnc-plugin-business.c:279
+msgid "View and edit the list of Billing Terms"
+msgstr "Vis og rediger listen af faktureringsbetingelser"
-#: ../src/business/business-ledger/gncEntryLedgerLayout.c:125
-msgid "sample:T?"
-msgstr "sample:T?"
+#: ../src/business/business-gnome/gnc-plugin-business.c:283
+msgid "Bills _Due Reminder"
+msgstr "PÃ¥mindelse om forfal_dne regninger"
-#: ../src/business/business-ledger/gncEntryLedgerLayout.c:129
-msgid "sample:TI"
-msgstr "sample:TI"
+#: ../src/business/business-gnome/gnc-plugin-business.c:284
+msgid "Open the Bills Due Reminder dialog"
+msgstr "Ã
bn vinduet for påmindelse om forfaldne regninger"
-#: ../src/business/business-ledger/gncEntryLedgerLayout.c:133
-msgid "sample:Tax Table 1"
-msgstr "sample:Skattetabel 1"
+#: ../src/business/business-gnome/gnc-plugin-business.c:287
+msgid "E_xport"
+msgstr "E_ksporter"
-#: ../src/business/business-ledger/gncEntryLedgerLayout.c:141
-msgid "sample:999.00"
-msgstr "sample:999,00"
+#: ../src/business/business-gnome/gnc-plugin-business.c:292
+#: ../src/business/business-gnome/gnc-plugin-business.c:293
+msgid "Test Search Dialog"
+msgstr "Testsøgningsvindue"
-#: ../src/business/business-ledger/gncEntryLedgerLayout.c:145
-msgid "sample:BI"
-msgstr "sample:BI"
+#: ../src/business/business-gnome/gnc-plugin-business.c:297
+#: ../src/business/business-gnome/gnc-plugin-business.c:298
+msgid "Initialize Test Data"
+msgstr "Initialiser testdata"
-#: ../src/business/business-ledger/gncEntryLedgerLayout.c:149
-msgid "sample:Payment"
-msgstr "sample:Betaling"
+#: ../src/business/business-gnome/gnc-plugin-business.c:311
+msgid "Assign as payment..."
+msgstr "Tildel som betaling ..."
-#: ../src/business/business-ledger/gncEntryLedgerLoad.c:55
-msgid "$"
-msgstr "$"
+#: ../src/business/business-gnome/gnc-plugin-business.c:312
+msgid "Assign the selected transaction as payment"
+msgstr "Tildel den valgte transaktion som betaling"
-#. src/report/business-reports/easy-invoice.scm
-#. src/report/business-reports/fancy-invoice.scm
-#. src/report/business-reports/invoice.scm
-#: ../src/business/business-ledger/gncEntryLedgerLoad.c:57
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:13
-#: ../intl-scm/guile-strings.c:770
-#: ../intl-scm/guile-strings.c:976
-#: ../intl-scm/guile-strings.c:1186
-#, no-c-format
-msgid "%"
-msgstr "%"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:98
+msgid "Sort _Order"
+msgstr "Sorterings_orden"
-#: ../src/business/business-ledger/gncEntryLedgerLoad.c:69
-msgid "<"
-msgstr "<"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:102
+#: ../src/gnome/gnc-plugin-page-account-tree.c:165
+msgid "New _Account..."
+msgstr "Ny _konto..."
-#: ../src/business/business-ledger/gncEntryLedgerLoad.c:71
-msgid "="
-msgstr "="
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:103
+msgid "Create a new account"
+msgstr "Opret en ny konto"
-#: ../src/business/business-ledger/gncEntryLedgerLoad.c:73
-msgid ">"
-msgstr ">"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:107
+msgid "Print Invoice"
+msgstr "Udskriv faktura"
-#. src/report/report-system/report-utilities.scm
-#: ../src/business/business-ledger/gncEntryLedgerLoad.c:132
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:530
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:1128
-#: ../src/engine/Account.c:3942
-#: ../intl-scm/guile-strings.c:2336
-msgid "Cash"
-msgstr "Kontant"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:108
+msgid "Make a printable invoice"
+msgstr "Opret en udskriftsvenlig faktura"
-#. src/app-utils/prefs.scm
-#. src/report/standard-reports/register.scm
-#: ../src/business/business-ledger/gncEntryLedgerLoad.c:135
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:532
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:1130
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2886
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3070
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3156
-#: ../src/register/ledger-core/split-register.c:2424
-#: ../intl-scm/guile-strings.c:266
-#: ../intl-scm/guile-strings.c:284
-#: ../intl-scm/guile-strings.c:4212
-msgid "Charge"
-msgstr "Afgift"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:114
+msgid "_Cut"
+msgstr "_Klip"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:46
-msgid "Income Account"
-msgstr "Indtægtskonto"
+# kopi eller kopier
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:119
+msgid "Copy"
+msgstr "Kopi"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:51
-msgid "Expense Account"
-msgstr "Udgiftskonto"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:124
+#: ../src/gnome/gnc-plugin-page-register2.c:236
+#: ../src/gnome/gnc-plugin-page-register.c:241
+#: ../src/gnome-utils/gnc-main-window.c:315
+#: ../src/report/report-gnome/gnc-plugin-page-report.c:1028
+msgid "_Paste"
+msgstr "_Indsæt"
-#. src/report/business-reports/fancy-invoice.scm
-#. src/report/business-reports/invoice.scm
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:56
-#: ../src/gnome/dialog-find-transactions2.c:132
-#: ../src/gnome/dialog-find-transactions2.c:153
-#: ../src/gnome/dialog-find-transactions2.c:161
-#: ../src/gnome/dialog-find-transactions.c:131
-#: ../src/gnome/dialog-find-transactions.c:152
-#: ../src/gnome/dialog-find-transactions.c:160
-#: ../src/gnome/gnc-plugin-page-register.c:1839
-#: ../src/gnome-search/dialog-search.c:858
-#: ../src/gnome-search/dialog-search.c:866
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2849
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2851
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2869
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2871
-#: ../src/import-export/csv-exp/csv-transactions-export.c:422
-#: ../src/register/ledger-core/split-register-model.c:318
-#: ../intl-scm/guile-strings.c:998
-#: ../intl-scm/guile-strings.c:1208
-msgid "Action"
-msgstr "Handling"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:129
+msgid "_Edit Invoice"
+msgstr "R_ediger faktura"
-#. src/report/business-reports/easy-invoice.scm
-#. src/report/business-reports/fancy-invoice.scm
-#. src/report/business-reports/invoice.scm
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:71
-#: ../intl-scm/guile-strings.c:762
-#: ../intl-scm/guile-strings.c:810
-#: ../intl-scm/guile-strings.c:968
-#: ../intl-scm/guile-strings.c:1016
-#: ../intl-scm/guile-strings.c:1178
-#: ../intl-scm/guile-strings.c:1226
-msgid "Discount"
-msgstr "Rabat"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:130
+msgid "Edit this invoice"
+msgstr "Redigér denne faktura"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:76
-msgid "Discount Type"
-msgstr "Rabattype"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:134
+msgid "_Duplicate Invoice"
+msgstr "_Dupliker faktura"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:81
-msgid "Discount How"
-msgstr "Hvordan rabat"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:135
+msgid "Create a new invoice as a duplicate of the current one"
+msgstr "Opret en ny faktura som en duplikat af den aktuelle"
-#. src/report/business-reports/easy-invoice.scm
-#. src/report/business-reports/fancy-invoice.scm
-#. src/report/business-reports/invoice.scm
-#. src/report/business-reports/taxinvoice.scm
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:86
-#: ../intl-scm/guile-strings.c:760
-#: ../intl-scm/guile-strings.c:966
-#: ../intl-scm/guile-strings.c:1176
-#: ../intl-scm/guile-strings.c:1714
-#: ../intl-scm/guile-strings.c:1782
-msgid "Unit Price"
-msgstr "Enhedspris"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:139
+msgid "_Post Invoice"
+msgstr "_Bogfør faktura"
-#. src/report/business-reports/easy-invoice.scm
-#. src/report/business-reports/fancy-invoice.scm
-#. src/report/business-reports/invoice.scm
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:91
-#: ../intl-scm/guile-strings.c:758
-#: ../intl-scm/guile-strings.c:798
-#: ../intl-scm/guile-strings.c:964
-#: ../intl-scm/guile-strings.c:1004
-#: ../intl-scm/guile-strings.c:1174
-#: ../intl-scm/guile-strings.c:1214
-msgid "Quantity"
-msgstr "Antal"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:140
+msgid "Post this Invoice to your Chart of Accounts"
+msgstr "Lås denne faktura på kontoplanen"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:96
-msgid "Tax Table"
-msgstr "Skattetabel"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:144
+msgid "_Unpost Invoice"
+msgstr "_Ã
bn faktura"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:101
-msgid "Taxable?"
-msgstr "Beskattes?"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:145
+msgid "Unpost this Invoice and make it editable"
+msgstr "Ã
bn denne faktura og gør den redigerbar"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:106
-msgid "Tax Included?"
-msgstr "Skat inkluderet?"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:151
+msgid "_Enter"
+msgstr "_Retur"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:111
-msgid "Invoiced?"
-msgstr "Faktureret?"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:152
+msgid "Record the current entry"
+msgstr "Gem den aktuelle post"
-#. src/report/business-reports/easy-invoice.scm
-#. src/report/report-system/options-utilities.scm
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:116
-#: ../intl-scm/guile-strings.c:864
-#: ../intl-scm/guile-strings.c:2272
-msgid "Subtotal"
-msgstr "Delsum"
+#. Add the Cancel button for the matcher
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:156
+#: ../src/gnome/window-reconcile2.c:2166 ../src/gnome/window-reconcile.c:2166
+#: ../src/import-export/csv-imp/assistant-csv-trans-import.c:1470
+msgid "_Cancel"
+msgstr "_Annullér"
-#. src/report/business-reports/easy-invoice.scm
-#. src/report/business-reports/fancy-invoice.scm
-#. src/report/business-reports/invoice.scm
-#. src/tax/us/de_DE.scm
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:121
-#: ../intl-scm/guile-strings.c:922
-#: ../intl-scm/guile-strings.c:1126
-#: ../intl-scm/guile-strings.c:1314
-#: ../intl-scm/guile-strings.c:5896
-msgid "Tax"
-msgstr "Skat"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:157
+msgid "Cancel the current entry"
+msgstr "Afbryd den aktuelle post"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:126
-msgid "Billable?"
-msgstr "Kan faktureres?"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:161
+#: ../src/gnome/gnc-plugin-page-sx-list.c:158
+#: ../src/gnome/window-reconcile2.c:2208 ../src/gnome/window-reconcile.c:2208
+msgid "_Delete"
+msgstr "_Slet"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:548
-msgid "Enter the income/expense account for the Entry, or choose one from the list"
-msgstr "Angiv indtægts-/udgiftskonton for posten, eller vælg en fra listen"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:162
+msgid "Delete the current entry"
+msgstr "Slet den nuværende post"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:561
-msgid "Enter the type of Entry"
-msgstr "Angiv posttypen"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:166
+msgid "_Blank"
+msgstr "_Tom"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:585
-#: ../src/gnome-utils/gnc-tree-util-split-reg.c:460
-#: ../src/register/ledger-core/split-register-model.c:889
-msgid "%A %d %B %Y"
-msgstr ""
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:167
+msgid "Move to the blank entry at the bottom of the Invoice"
+msgstr "Flyt til den tomme post i slutningen af fakturaen"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:597
-msgid "Enter the Entry Description"
-msgstr "Angiv postbeskrivelsen"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:171
+msgid "Dup_licate Entry"
+msgstr "_Duplikatpost"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:613
-msgid "Enter the Discount Amount"
-msgstr "Angiv rabatbeløbet"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:172
+msgid "Make a copy of the current entry"
+msgstr "Lav en kopi af den nuværende post"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:616
-msgid "Enter the Discount Percent"
-msgstr "Angiv rabatprocenten"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:176
+msgid "Move Entry _Up"
+msgstr "Flyt post _op"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:619
-msgid "Enter the Discount ... unknown type"
-msgstr "Angiv rabatten ... ukendt type"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:177
+msgid "Move the current entry one row upwards"
+msgstr "Flyt den nuværende post en række op"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:637
-msgid "Discount Type: Monetary Value"
-msgstr "Rabattype: Fast værdi"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:181
+msgid "Move Entry Do_wn"
+msgstr "Flyt post _ned"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:640
-msgid "Discount Type: Percent"
-msgstr "Rabattype: Procent"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:182
+msgid "Move the current entry one row downwards"
+msgstr "Flyt den nuværende post en række ned"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:643
-msgid "Select the Discount Type"
-msgstr "Vælg rabattypen"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:188
+msgid "New _Invoice"
+msgstr "Ny _faktura"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:660
-msgid "Tax computed after discount is applied"
-msgstr "Skat beregnet efter fratrækning af rabat"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:189
+msgid "Create a new invoice for the same owner as the current one"
+msgstr "Opret en ny faktura for den samme ejer som den aktuelle"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:663
-msgid "Discount and tax both applied on pretax value"
-msgstr "Rabat og skat er begge angivet på førskatværdi"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:193
+msgid "_Pay Invoice"
+msgstr "_Betal faktura"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:666
-msgid "Discount computed after tax is applied"
-msgstr "Rabat beregnet efter fratrækning af skat"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:194
+msgid "Enter a payment for the owner of this Invoice"
+msgstr "Indtast en betaling for ejeren af denne faktura"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:669
-msgid "Select how to compute the Discount and Taxes"
-msgstr "Vælg hvordan rabat og skat skal beregnes"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:200
+msgid "_Company Report"
+msgstr "_Firmarapport"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:682
-msgid "Enter the unit-Price for this Entry"
-msgstr "Angiv enhedsprisen på denne post"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:201
+msgid "Open a company report window for the owner of this Invoice"
+msgstr "Ã
bn et firmarapportvindue for ejeren af denne faktura"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:694
-msgid "Enter the Quantity of units for this Entry"
-msgstr "Angiv antallet af enheder på denne post"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:209
+msgid "_Standard"
+msgstr "_Standard"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:706
-msgid "Enter the Tax Table to apply to this entry"
-msgstr "Angiv den skattetabel der skal anvendes på denne post"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:209
+msgid "Keep normal invoice order"
+msgstr "Behold normal fakturarækkefølge"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:715
-msgid "Is this entry taxable?"
-msgstr "Er denne post skattepligtig?"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:210
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:29
+msgid "_Date"
+msgstr "_Dato"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:724
-msgid "Is the tax already included in the price of this entry?"
-msgstr "Er skatten allerede inkluderet i prisen på denne post?"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:210
+msgid "Sort by date"
+msgstr "Sortér efter dato"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:742
-msgid "Is this entry invoiced?"
-msgstr "Er denne post faktureret?"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:211
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:31
+msgid "Date of _Entry"
+msgstr "_Indtastningsdato"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:748
-msgid "Is this entry credited?"
-msgstr "Er denne post krediteret?"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:211
+msgid "Sort by the date of entry"
+msgstr "Sorter efter indtastningsdato"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:752
-msgid "Include this entry on this invoice?"
-msgstr "Inkluder denne post på denne faktura?"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:212
+msgid "_Quantity"
+msgstr "_Kvantitet"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:756
-msgid "Include this entry on this credit note?"
-msgstr "Inkluder denne post på denne kreditnota?"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:212
+msgid "Sort by quantity"
+msgstr "Sorter efter kvantiet"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:759
-msgid "Unknown EntryLedger Type"
-msgstr "Ukendt EntryLedger-type"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:213
+#: ../src/gnome-utils/gnc-tree-util-split-reg.c:1163
+#: ../src/gnome-utils/gnc-tree-util-split-reg.c:1165
+#: ../src/register/ledger-core/split-register.c:1934
+#: ../src/register/ledger-core/split-register.c:1937
+msgid "_Price"
+msgstr "_Pris"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:772
-msgid "The subtotal value of this entry "
-msgstr "Denne posts undersumsværdi"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:213
+msgid "Sort by price"
+msgstr "Sorter efter pris"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:784
-msgid "The total tax of this entry "
-msgstr "Denne posts samlede skat"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:214
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:41
+msgid "Descri_ption"
+msgstr "_Beskrivelse"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:793
-msgid "Is this entry billable to a customer or job?"
-msgstr "Kan denne post faktureres til en kunde eller job?"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:214
+msgid "Sort by description"
+msgstr "Sortér efter beskrivelse"
-#: ../src/business/business-ledger/gncEntryLedgerModel.c:802
-msgid "How did you pay for this item?"
-msgstr "Hvordan betalte du for denne enhed?"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:258
+#: ../src/gnome/gnc-plugin-page-register2.c:477
+#: ../src/gnome/gnc-plugin-page-register.c:480
+msgid "Enter"
+msgstr "Retur"
-#: ../src/core-utils/gnc-features.c:116
-msgid "This Dataset contains features not supported by this version of GnuCash. You must use a newer version of GnuCash in order to support the following features:"
-msgstr "Dette datasæt indeholder funktioner som ikke er understøttet af denne version af GnuCash. Du er nødt til at bruge en nyere version af GnuCash for at understøtte de følgende funktioner:"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:259
+#: ../src/gnome/gnc-plugin-page-register2.c:478
+#: ../src/gnome/gnc-plugin-page-register.c:481
+#: ../src/gnome-utils/gnc-cell-renderer-date.c:158
+msgid "Cancel"
+msgstr "Annullér"
-#: ../src/core-utils/gnc-filepath-utils.c:324
-#, c-format
-msgid ""
-"An error occurred while creating the directory:\n"
-" %s\n"
-"Please correct the problem and restart GnuCash.\n"
-"The reported error was '%s' (errno %d).\n"
-msgstr ""
-"En fejl opstod under oprettelse af mappen:\n"
-" %s\n"
-"Ret venligst fejlen og genstart GnuCash.\n"
-"Den rapporterede fejl var '%s' (errno %d).\n"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:260
+#: ../src/gnome/gnc-plugin-page-account-tree.c:345
+#: ../src/gnome/gnc-plugin-page-budget.c:177
+#: ../src/gnome/gnc-plugin-page-register2.c:479
+#: ../src/gnome/gnc-plugin-page-register.c:482
+msgid "Delete"
+msgstr "Slet"
-#: ../src/core-utils/gnc-filepath-utils.c:336
-#, c-format
-msgid ""
-"The directory\n"
-" %s\n"
-"exists but cannot be accessed. This program \n"
-"must have full access (read/write/execute) to \n"
-"the directory in order to function properly.\n"
-msgstr ""
-"Mappen\n"
-" %s\n"
-"findes men kan ikke tilgås. Dette program \n"
-"skal have fuld adgang (læse/skrive/udføre) til \n"
-"mappen for at kunne fungere korrekt.\n"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:262
+#: ../src/gnome/gnc-plugin-page-register2.c:486
+msgid "Up"
+msgstr "Op"
-#: ../src/core-utils/gnc-filepath-utils.c:346
-#: ../src/core-utils/gnc-filepath-utils.c:368
-#, c-format
-msgid ""
-"The path\n"
-" %s\n"
-"exists but it is not a directory. Please delete\n"
-"the file and start GnuCash again.\n"
-msgstr ""
-"Stien\n"
-" %s\n"
-"findes men er ikke en mappe. Slet venligst\n"
-"filen og genstart GnuCash.\n"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:263
+#: ../src/gnome/gnc-plugin-page-register2.c:487
+msgid "Down"
+msgstr "Ned"
-#: ../src/core-utils/gnc-filepath-utils.c:355
-#, c-format
-msgid ""
-"An unknown error occurred when validating that the\n"
-" %s\n"
-"directory exists and is usable. Please correct the\n"
-"problem and restart GnuCash. The reported error \n"
-"was '%s' (errno %d)."
-msgstr ""
-"Der opstod en ukendt fejl under validering af at mappen\n"
-" %s\n"
-"findes og kan bruges. Ret venligst problemet og\n"
-"genstart GnuCash. Den rapporterede fejl var »%s«\n"
-"(errno %d)."
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:264
+#: ../src/gnome/gnc-plugin-page-register2.c:483
+#: ../src/gnome/gnc-plugin-page-register.c:486
+msgid "Blank"
+msgstr "Tom"
-#: ../src/core-utils/gnc-filepath-utils.c:380
-#, c-format
-msgid ""
-"The permissions are wrong on the directory\n"
-" %s\n"
-"They must be at least 'rwx' for the user.\n"
-msgstr ""
-"Tilladelserne er ikke korrekte på mappen\n"
-" %s\n"
-"De skal mindst være 'rwx' for brugeren.\n"
+#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:266
+msgid "Unpost"
+msgstr "Ã
bn"
-#: ../src/engine/Account.c:168
-#, c-format
-msgid ""
-"The separator character \"%s\" is used in one or more account names.\n"
-"\n"
-"This will result in unexpected behaviour. Either change the account names or choose another separator character.\n"
-"\n"
-"Below you will find the list of invalid account names:\n"
-"%s"
-msgstr ""
-"Adskillelsestegnet »%s« bruges i et eller flere kontonavne.\n"
-"\n"
-"Dette vil resultere i uventet opførsel. Enten skal du ændre kontonavnene eller vælge et andet adskillelsestegn.\n"
-"\n"
-"Nedenfor kan du se listen over ugyldige kontonavne:\n"
-"%s"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:141
+msgid "E_dit Vendor"
+msgstr "R_ediger leverandør"
-#. src/report/report-system/report-utilities.scm
-#: ../src/engine/Account.c:3941
-#: ../src/import-export/aqb/gnc-ab-utils.c:460
-#: ../intl-scm/guile-strings.c:2334
-msgid "Bank"
-msgstr "Bank"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:142
+msgid "Edit the selected vendor"
+msgstr "Rediger den valgte leverandør"
-#: ../src/engine/Account.c:3943
-msgid "Asset"
-msgstr "Aktiv"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:146
+msgid "E_dit Customer"
+msgstr "Re_diger kunde"
-#: ../src/engine/Account.c:3944
-msgid "Credit Card"
-msgstr "Kreditkort"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:147
+msgid "Edit the selected customer"
+msgstr "Rediger den valgte kunde"
-#: ../src/engine/Account.c:3945
-msgid "Liability"
-msgstr "Passiv"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:151
+msgid "E_dit Employee"
+msgstr "Re_diger medarbejder"
-#: ../src/engine/Account.c:3946
-msgid "Stock"
-msgstr "Aktie"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:152
+msgid "Edit the selected employee"
+msgstr "Rediger den valgte medarbejder"
-#: ../src/engine/Account.c:3947
-msgid "Mutual Fund"
-msgstr "Investeringsbevis"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:157
+msgid "Create a new vendor"
+msgstr "Opret en ny leverandør"
-#: ../src/engine/Account.c:3948
-#: ../src/gnome-utils/dialog-commodity.c:818
-#: ../src/gnome-utils/gnc-tree-view-owner.c:414
-#: ../src/gnome-utils/gnc-tree-view-price.c:431
-msgid "Currency"
-msgstr "Valuta"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:162
+msgid "Create a new customer"
+msgstr "Opret en ny kunde"
-#. src/app-utils/prefs.scm
-#. src/import-export/qif-imp/qif-dialog-utils.scm
-#. src/report/report-system/report-utilities.scm
-#. src/report/standard-reports/advanced-portfolio.scm
-#. src/report/standard-reports/net-barchart.scm
-#. src/report/standard-reports/net-linechart.scm
-#: ../src/engine/Account.c:3949
-#: ../src/engine/Scrub.c:380
-#: ../src/gnome/gnc-budget-view.c:353
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2975
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3076
-#: ../src/register/ledger-core/split-register.c:2513
-#: ../intl-scm/guile-strings.c:296
-#: ../intl-scm/guile-strings.c:308
-#: ../intl-scm/guile-strings.c:312
-#: ../intl-scm/guile-strings.c:316
-#: ../intl-scm/guile-strings.c:320
-#: ../intl-scm/guile-strings.c:324
-#: ../intl-scm/guile-strings.c:328
-#: ../intl-scm/guile-strings.c:2350
-#: ../intl-scm/guile-strings.c:2680
-#: ../intl-scm/guile-strings.c:3812
-#: ../intl-scm/guile-strings.c:3834
-#: ../intl-scm/guile-strings.c:3906
-#: ../intl-scm/guile-strings.c:3928
-msgid "Income"
-msgstr "Indtægt"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:167
+msgid "Create a new employee"
+msgstr "Opret en ny medarbejder"
-#. src/app-utils/prefs.scm
-#. src/report/business-reports/customer-summary.scm
-#. src/report/standard-reports/net-barchart.scm
-#. src/report/standard-reports/net-linechart.scm
-#: ../src/engine/Account.c:3950
-#: ../src/engine/gncInvoice.c:973
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3161
-#: ../intl-scm/guile-strings.c:268
-#: ../intl-scm/guile-strings.c:706
-#: ../intl-scm/guile-strings.c:740
-#: ../intl-scm/guile-strings.c:3814
-#: ../intl-scm/guile-strings.c:3836
-#: ../intl-scm/guile-strings.c:3908
-#: ../intl-scm/guile-strings.c:3930
-msgid "Expense"
-msgstr "Omkostning"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:173
+msgid "_Delete Owner..."
+msgstr "_Slet ejer ..."
-#: ../src/engine/Account.c:3952
-#, fuzzy
-msgid "A/Receivable"
-msgstr "Modtag"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:174
+msgid "Delete selected owner"
+msgstr "Slet den valgte ejer"
-#: ../src/engine/Account.c:3953
-msgid "A/Payable"
-msgstr "A/Kreditor"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:181
+#: ../src/gnome/gnc-plugin-page-account-tree.c:231
+#: ../src/gnome/gnc-plugin-page-budget.c:157
+#: ../src/gnome/gnc-plugin-page-register2.c:319
+#: ../src/gnome/gnc-plugin-page-register.c:333
+#: ../src/gnome-utils/gnc-main-window.c:332
+msgid "_Filter By..."
+msgstr "_Filtrer efter ..."
-#: ../src/engine/Account.c:3954
-msgid "Root"
-msgstr "Rod"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:188
+msgid "Create a new bill"
+msgstr "Opret en ny regning"
-#. src/report/standard-reports/income-statement.scm
-#: ../src/engine/Account.c:3955
-#: ../src/engine/Scrub.c:388
-#: ../src/engine/Scrub.c:453
-#: ../intl-scm/guile-strings.c:3756
-msgid "Trading"
-msgstr "Handel"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:193
+msgid "Create a new invoice"
+msgstr "Opret en ny faktura"
-#: ../src/engine/cap-gains.c:236
-msgid "Orphaned Gains"
-msgstr "Forældreløse gevinster"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:197
+msgid "New _Voucher..."
+msgstr "Nyt _bilag ..."
-#: ../src/engine/cap-gains.c:250
-#: ../src/engine/cap-gains.c:960
-#: ../src/engine/cap-gains.c:965
-#: ../src/engine/cap-gains.c:966
-msgid "Realized Gain/Loss"
-msgstr "Realiseret overskud/tab"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:198
+msgid "Create a new voucher"
+msgstr "Opret et nyt bilag"
-#: ../src/engine/cap-gains.c:252
-msgid "Realized Gains or Losses from Commodity or Trading Accounts that haven't been recorded elsewhere."
-msgstr "Realiserede gevinster eller tab fra vare- eller handelskonti, som ikke er blevet registreret et andet sted"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:202
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:277
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:897
+msgid "Vendor Listing"
+msgstr "Leverandørliste"
-#: ../src/engine/gnc-budget.c:93
-#: ../src/gnome/gnc-plugin-page-budget.c:838
-msgid "Unnamed Budget"
-msgstr "Unavngivet budget"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:203
+msgid "Show vendor aging overview for all vendors"
+msgstr "Vis overblik over leverandøralder for alle leverandører"
-#. Set memo.
-#: ../src/engine/gncInvoice.c:1569
-msgid "Extra to Charge Card"
-msgstr "Ekstra på kreditkortet"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:207
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:278
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:903
+msgid "Customer Listing"
+msgstr "Kundeliste"
-#: ../src/engine/gncInvoice.c:1609
-msgid "Generated from an invoice. Try unposting the invoice."
-msgstr "Oprettet fra en faktura. Prøv at åbne denne faktura."
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:208
+msgid "Show customer aging overview for all customers"
+msgstr "Vis overblik over kundealder for alle kunder"
-#: ../src/engine/gncInvoice.c:2042
-msgid " (posted)"
-msgstr " (bogført)"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:212
+#: ../src/report/business-reports/job-report.scm:580
+#: ../src/report/business-reports/owner-report.scm:829
+msgid "Vendor Report"
+msgstr "Leverandørrapport"
-#. src/report/standard-reports/register.scm
-#: ../src/engine/gnc-lot.c:689
-#: ../intl-scm/guile-strings.c:4082
-#: ../intl-scm/guile-strings.c:4152
-msgid "Lot"
-msgstr ""
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:213
+msgid "Show vendor report"
+msgstr "Vis leverandørrapport"
-#: ../src/engine/gncOrder.c:552
-msgid " (closed)"
-msgstr " (lukket)"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:217
+#: ../src/report/business-reports/job-report.scm:574
+#: ../src/report/business-reports/owner-report.scm:820
+msgid "Customer Report"
+msgstr "Kunderapport"
-#: ../src/engine/gncOwner.c:955
-msgid "Offset between documents: "
-msgstr "Forskydning mellem dokumenter: "
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:218
+msgid "Show customer report"
+msgstr "Vis kunderapport"
-#: ../src/engine/gncOwner.c:1065
-msgid "Lot Link"
-msgstr ""
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:222
+#: ../src/report/business-reports/job-report.scm:583
+#: ../src/report/business-reports/owner-report.scm:838
+msgid "Employee Report"
+msgstr "Medarbejderrapport"
-#. translators: " + " is an separator in a list of string-representations of recurrence frequencies
-#: ../src/engine/Recurrence.c:487
-msgid " + "
-msgstr " + "
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:223
+msgid "Show employee report"
+msgstr "Vis medarbejderrapport"
-#. src/report/standard-reports/account-piecharts.scm
-#. src/report/standard-reports/category-barchart.scm
-#. src/report/standard-reports/transaction.scm
-#: ../src/engine/Recurrence.c:598
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:33
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:41
-#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:20
-#: ../intl-scm/guile-strings.c:2440
-#: ../intl-scm/guile-strings.c:3360
-#: ../intl-scm/guile-strings.c:4652
-msgid "Weekly"
-msgstr "Ugentligt"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:268
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:269
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:270
+#: ../src/gnome/gnc-plugin-page-account-tree.c:343
+#: ../src/gnome/gtkbuilder/dialog-commodities.glade.h:7
+msgid "Edit"
+msgstr "Redigér"
-# ikke helt afklaret.
-#. translators: %u is the recurrence multipler, i.e. this
-#. event should occur every %u'th week.
-#. translators: %u is the recurrence multiplier number
-#. translators: %u is the recurrence multiplier.
-#: ../src/engine/Recurrence.c:603
-#: ../src/engine/Recurrence.c:694
-#: ../src/engine/Recurrence.c:725
-#: ../src/engine/Recurrence.c:742
-#: ../src/engine/Recurrence.c:756
-#: ../src/engine/Recurrence.c:768
-#, c-format
-msgid " (x%u)"
-msgstr " (x%u)"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:271
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:272
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:273
+#: ../src/gnome/gnc-plugin-page-account-tree.c:344
+msgid "New"
+msgstr "Ny"
-#. translators: %s is an already-localized form of the day of the week.
-#: ../src/engine/Recurrence.c:636
-#, c-format
-msgid "last %s"
-msgstr "sidste %s"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:276
+msgid "New Voucher"
+msgstr "Nyt bilag"
-#: ../src/engine/Recurrence.c:642
-#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:31
-msgid "1st"
-msgstr "1."
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:433
+msgid "Owners"
+msgstr "Ejere"
-#: ../src/engine/Recurrence.c:642
-#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:32
-msgid "2nd"
-msgstr "2."
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:608
+msgid "Customers"
+msgstr "Kunder"
-#: ../src/engine/Recurrence.c:642
-#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:33
-msgid "3rd"
-msgstr "3."
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:612
+msgid "Jobs"
+msgstr "Job"
-#: ../src/engine/Recurrence.c:642
-#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:34
-msgid "4th"
-msgstr "4."
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:616
+msgid "Vendors"
+msgstr "Leverandører"
-#. translators: %s is the string 1st, 2nd, 3rd and so on, and
-#. * %s is an already-localized form of the day of the week.
-#: ../src/engine/Recurrence.c:652
-#, c-format
-msgid "%s %s"
-msgstr "%s %s"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:620
+msgid "Employees"
+msgstr "Medarbejdere"
-#: ../src/engine/Recurrence.c:689
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:31
-msgid "Semi-monthly"
-msgstr "Halvmånedligt"
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:1059
+#: ../src/gnome/gnc-plugin-page-account-tree.c:1175
+msgid "(no name)"
+msgstr "(intet navn)"
-#. translators: %d is the number of Recurrences in the list.
-#: ../src/engine/Recurrence.c:704
+#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:1067
#, c-format
-msgid "Unknown, %d-size list."
-msgstr "Ukendt, %d-størrelse liste."
+msgid ""
+"The owner %s will be deleted.\n"
+"Are you sure you want to do this?"
+msgstr ""
+"Ejeren %s vil blive slettet.\n"
+"Er du sikker på, at du ønsker dette?"
-#: ../src/engine/Recurrence.c:716
-#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:6
-msgid "Once"
-msgstr "En enkel gang"
+#. * @}
+#. * @}
+#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:1
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:41
+#: ../src/gnome/gschemas/org.gnucash.dialogs.commodities.gschema.xml.in.in.h:2
+#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:1
+#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:9
+#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:1
+#: ../src/gnome/gschemas/org.gnucash.dialogs.totd.gschema.xml.in.in.h:2
+#: ../src/import-export/aqb/gschemas/org.gnucash.dialogs.import.hbci.gschema.xml.in.in.h:1
+#: ../src/import-export/csv-exp/gschemas/org.gnucash.dialogs.export.csv.gschema.xml.in.in.h:1
+#: ../src/import-export/csv-imp/gschemas/org.gnucash.dialogs.import.csv.gschema.xml.in.in.h:1
+#: ../src/import-export/gschemas/org.gnucash.dialogs.import.generic.gschema.xml.in.in.h:17
+#: ../src/import-export/qif-imp/gschemas/org.gnucash.dialogs.import.qif.gschema.xml.in.in.h:4
+msgid "Last window position and size"
+msgstr "Sidste vinduesposition og -størrelse"
-# daglig eller dagligt (er lidt bange for at det måske kan være begge dele).
-#. src/report/standard-reports/category-barchart.scm
-#: ../src/engine/Recurrence.c:721
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:40
-#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:9
-#: ../intl-scm/guile-strings.c:3364
-msgid "Daily"
-msgstr "Dagligt"
+#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:2
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:42
+#: ../src/gnome/gschemas/org.gnucash.dialogs.commodities.gschema.xml.in.in.h:3
+#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:2
+#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:10
+#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:2
+#: ../src/gnome/gschemas/org.gnucash.dialogs.totd.gschema.xml.in.in.h:3
+#: ../src/import-export/aqb/gschemas/org.gnucash.dialogs.import.hbci.gschema.xml.in.in.h:2
+#: ../src/import-export/csv-exp/gschemas/org.gnucash.dialogs.export.csv.gschema.xml.in.in.h:2
+#: ../src/import-export/csv-imp/gschemas/org.gnucash.dialogs.import.csv.gschema.xml.in.in.h:2
+#: ../src/import-export/gschemas/org.gnucash.dialogs.import.generic.gschema.xml.in.in.h:18
+#: ../src/import-export/qif-imp/gschemas/org.gnucash.dialogs.import.qif.gschema.xml.in.in.h:5
+msgid "This setting describes the size and position of the window when it was last closed. The numbers are the X and Y coordinates of the top left corner of the window followed by the width and height of the window."
+msgstr "Denne indstilling beskriver størrelsen og placeringen af vinduet sidst det blev lukket. Tallene er x- og y-koordinater fra det øverste venstre hjørne af vinduet efterfulgt af bredden og højden af vinduet."
-#. g_warning("nth weekday not handled");
-#. g_string_printf(buf, "@fixme: nth weekday not handled");
-#. src/report/standard-reports/account-piecharts.scm
-#. src/report/standard-reports/category-barchart.scm
-#. src/report/standard-reports/transaction.scm
-#: ../src/engine/Recurrence.c:738
-#: ../src/engine/Recurrence.c:752
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:30
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:43
-#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:30
-#: ../intl-scm/guile-strings.c:2436
-#: ../intl-scm/guile-strings.c:3356
-#: ../intl-scm/guile-strings.c:4656
-msgid "Monthly"
-msgstr "MÃ¥nedligt"
+#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:3
+#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:4
+msgid "Search only in active items"
+msgstr "Søg kun i aktive poster"
-# Den her har jeg rettet til t da ovenfor er i den form.
-#. src/report/standard-reports/account-piecharts.scm
-#. src/report/standard-reports/transaction.scm
-#: ../src/engine/Recurrence.c:764
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:45
-#: ../intl-scm/guile-strings.c:2432
-#: ../intl-scm/guile-strings.c:4664
-msgid "Yearly"
-msgstr "Ã
rligt"
+#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:4
+msgid "If active, only the 'active' items in the current class will be searched. Otherwise all items in the current class will be searched."
+msgstr "Hvis aktiv, vil kun de »aktive« enheder i den aktuelle klasse blive gennemsøgt. Ellers vil alle enheder i den aktuelle klasse blive gennemsøgt."
-#. src/report/business-reports/balsheet-eg.scm
-#: ../src/engine/Scrub.c:89
-#: ../intl-scm/guile-strings.c:622
-msgid "Orphan"
-msgstr "Hittebarn"
+#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:5
+msgid "Is tax included in this type of business entry?"
+msgstr "Er skat inkluderet i denne type forretningspost?"
-#. src/report/business-reports/balsheet-eg.scm
-#: ../src/engine/Scrub.c:323
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:1292
-#: ../intl-scm/guile-strings.c:620
-msgid "Imbalance"
-msgstr "Ubalance"
+#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:6
+msgid "If set to active then tax is included by default in entries of this type. This setting is inherited by new customers and vendors."
+msgstr "Hvis aktiv, så er skat inkluderet som standard i poster af denne type. Denne indstilling arves af nye kunder og leverandører."
-#. src/report/standard-reports/register.scm
-#. src/report/standard-reports/transaction.scm
-#: ../src/engine/Split.c:1432
-#: ../src/engine/Split.c:1449
-#: ../src/gnome-utils/gnc-tree-util-split-reg.c:45
-#: ../intl-scm/guile-strings.c:4094
-#: ../intl-scm/guile-strings.c:4830
-msgid "-- Split Transaction --"
-msgstr "-- Opdelt transaktion --"
+#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:7
+msgid "Auto pay when posting."
+msgstr "Automatisk betaling ved bogføring"
-#. Translators: This string has a disambiguation prefix
-#: ../src/engine/Split.c:1466
-msgid "Displayed account code of the other account in a multi-split transaction|Split"
+#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:8
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:26
+msgid "At post time, automatically attempt to pay customer documents with outstanding pre-payments and counter documents. The pre-payments and documents obviously have to be against the same customer. Counter documents are documents with opposite sign. For example for an invoice, customer credit notes and negative invoices are considered counter documents."
msgstr ""
-#: ../src/engine/Transaction.c:2401
-msgid "Voided transaction"
-msgstr "Ugyldig transaktion"
-
-#. Dirtying taken care of by SetReadOnly
-#: ../src/engine/Transaction.c:2412
-msgid "Transaction Voided"
-msgstr "Transaktion ugyldig"
-
-#: ../src/gnome/assistant-acct-period.c:191
-msgid "The book was closed successfully."
-msgstr "Bogen blev lukket med succes."
-
-#. Translators: %s is a date string. %d is the number of books
-#. * that will be created. This is a ngettext(3) message (but
-#. * only for the %d part).
-#: ../src/gnome/assistant-acct-period.c:316
-#, c-format
-msgid "The earliest transaction date found in this book is %s. Based on the selection made above, this book will be split into %d book."
-msgid_plural "The earliest transaction date found in this book is %s. Based on the selection made above, this book will be split into %d books."
-msgstr[0] "Den tidligste transaktionsdato fundet i denne bog er %s. Baseret på valget ovenfor vil denne bog blive opdelt i %d bog."
-msgstr[1] "Den tidligste transaktionsdato fundet i denne bog er %s. Baseret på valget ovenfor vil denne bog blive opdelt i %d bøger."
+#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:9
+msgid "Enable extra toolbar buttons for business"
+msgstr "Aktiver ekstra værktøjslinjeknapper for forretning"
-#: ../src/gnome/assistant-acct-period.c:370
-#, c-format
-msgid ""
-"You have asked for a book to be created. This book will contain all transactions up to midnight %s (for a total of %d transactions spread over %d accounts).\n"
-"\n"
-" Amend the Title and Notes or Click on 'Forward' to proceed.\n"
-" Click on 'Back' to adjust the dates or 'Cancel'."
-msgstr ""
-"Du har bedt om at en bog oprettes. Denne bog vil indeholde alle transaktioner op til midnat %s (for samlet %d transaktioner spredt over %d konti).\n"
-"\n"
-" Ãndr titlen og noter eller klik pÃ¥ »Fremad« for at fortsætte.\n"
-" Klik på »Tilbage« for at justere datoerne eller »Afbryd«."
+#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:10
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:22
+msgid "If active, extra toolbar buttons for common business functions are shown as well. Otherwise they are not shown."
+msgstr "Hvis aktiv, bliver ekstra værktøjslinjeknapper for gængse forretningsfunktioner også vist. Eller vises de ikke."
-#: ../src/gnome/assistant-acct-period.c:387
-#, c-format
-msgid "Period %s - %s"
-msgstr "Periode %s - %s"
+#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:11
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:23
+msgid "The invoice report to be used for printing."
+msgstr "Fakturarapporten der skal bruges til udskrivning."
-#: ../src/gnome/assistant-acct-period.c:405
-#, c-format
-msgid "The book will be created with the title %s when you click on 'Apply'. Click on 'Back' to adjust, or 'Cancel' to not create any book."
-msgstr "Bogen vil blive oprettet med titlen %s når du klikker på »Anvend«. Klik på »Tilbage« for at justere, eller »Afbryd« for ikke at oprette en bog."
+#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:12
+msgid "The name of the report to be used for invoice printing."
+msgstr "Navnet på rapporten der skal bruges til fakturaudskrivning."
-#. Translation FIXME: Can this %s-containing message please be
-#. replaced by one single message? Either this closing went
-#. successfully ("success", "congratulations") or something else
-#. should be displayed anyway.
-#: ../src/gnome/assistant-acct-period.c:527
-#, c-format
-msgid ""
-"%s\n"
-"Congratulations! You are done closing books!\n"
-msgstr ""
-"%s\n"
-"Tillykke! Du er færdig med at lukke bøger!\n"
+#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:13
+msgid "Open new invoice in new window"
+msgstr "Ã
bn ny faktura i nyt vindue"
-#. Change the text so that its more mainingful for this assistant
-#: ../src/gnome/assistant-acct-period.c:593
-msgid "Period:"
-msgstr "Periode:"
+#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:14
+msgid "If active, each new invoice will be opened in a new window. Otherwise a new invoice will be opened as a tab in the main window."
+msgstr "Hvis aktiv, vil hver ny faktura blive åbnet i et nyt vindue. Ellers vil en ny faktura blive åbnet som en fane i hovedvinduet."
-#: ../src/gnome/assistant-acct-period.c:594
-#: ../src/gnome-utils/gtkbuilder/dialog-book-close.glade.h:2
-msgid "Closing Date:"
-msgstr "Lukkedato:"
+#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:15
+msgid "Accumulate multiple splits into one"
+msgstr "Akkumuler flere opdelinger til en"
-#: ../src/gnome/assistant-hierarchy.c:402
-msgid "Selected"
-msgstr "Valgt"
+#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:16
+msgid "If this field is active then multiple entries in an invoice that transfer to the same account will be accumulated into a single split. This field can be overridden per invoice in the Posting dialog."
+msgstr "Hvis dette felt er aktivt, så vil flere poster på en faktura som overføres til den samme konto blive akkumuleret til et enkelt beløb. Dette felt kan overskrives per faktura i Bogføringsdialogen."
-#: ../src/gnome/assistant-hierarchy.c:414
-#: ../src/gnome-utils/gnc-tree-view-account.c:2183
-msgid "Account Types"
-msgstr "Kontotyper"
+#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:17
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:28
+msgid "At post time, automatically attempt to pay vendor documents with outstanding pre-payments and counter documents. The pre-payments and documents obviously have to be against the same vendor. Counter documents are documents with opposite sign. For example for a bill, vendor credit notes and negative bills are considered counter documents."
+msgstr ""
-#. Translators: '%s' is the name of the selected account hierarchy template.
-#: ../src/gnome/assistant-hierarchy.c:505
-#, c-format
-msgid "Accounts in '%s'"
-msgstr "Konti i »%s«"
+#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:18
+msgid "Show bills due reminder at startup"
+msgstr "Vis påmindelse af forfaldne regninger ved opstart"
-#: ../src/gnome/assistant-hierarchy.c:513
-msgid "No description provided."
-msgstr "Ingen beskrivelse angivet."
+#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:19
+msgid "If active, at startup GnuCash will check to see whether any bills will become due soon. If so, it will present the user with a reminder dialog. The definition of \"soon\" is controlled by the \"Days in Advance\" setting. Otherwise GnuCash does not check for due bills."
+msgstr "Hvis aktiv vil GnuCash ved opstart undersøge om der er nogen regninger der snart er forfaldne. Hvis det er tilfældet, hvis brugeren blive præsenteret for et påmindelsesvindue. Definitionen på »snart« kontrolleres af indstilingen »Dage i fremtiden«. Ellers vil GnuCash ikke lede efter forfaldne regninger."
-#: ../src/gnome/assistant-hierarchy.c:528
-msgid "Accounts in Category"
-msgstr "Konti i kategori"
+#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:20
+msgid "Show bills due within this many days"
+msgstr "Vis regninger der er forfaldne indenfor følgende antal dage"
-#: ../src/gnome/assistant-hierarchy.c:740
-msgid "zero"
-msgstr "nul"
+#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:21
+msgid "This field defines the number of days in advance that GnuCash will check for due bills. Its value is only used if the \"Notify when due\" setting is active."
+msgstr ""
-#: ../src/gnome/assistant-hierarchy.c:753
-msgid "existing account"
-msgstr "eksisterende konto"
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:1
+#: ../src/report/business-reports/invoice.scm:826
+#: ../src/report/report-gnome/gnc-plugin-page-report.c:1690
+msgid "Printable Invoice"
+msgstr "Faktura der kan udskrives"
-#: ../src/gnome/assistant-hierarchy.c:939
-#: ../src/gnome-utils/gnc-tree-view-account.c:904
-msgid "Placeholder"
-msgstr "Sumkonto"
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:2
+#: ../src/report/business-reports/taxinvoice.eguile.scm:428
+#: ../src/report/business-reports/taxinvoice.eguile.scm:435
+#: ../src/report/business-reports/taxinvoice.scm:334
+#: ../src/report/business-reports/taxinvoice.scm:336
+#: ../src/report/report-gnome/gnc-plugin-page-report.c:1691
+msgid "Tax Invoice"
+msgstr "Skatteopgørelse"
-#: ../src/gnome/assistant-hierarchy.c:970
-msgid "Use Existing"
-msgstr "Brug eksisterende"
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:3
+#: ../src/report/business-reports/easy-invoice.scm:888
+#: ../src/report/report-gnome/gnc-plugin-page-report.c:1692
+msgid "Easy Invoice"
+msgstr "Nem faktura"
-#: ../src/gnome/assistant-hierarchy.c:1129
-#: ../src/gnome/assistant-hierarchy.c:1140
-#: ../src/gnome-utils/dialog-utils.c:586
-msgid "New Book Options"
-msgstr "Nye bogindstillinger"
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:4
+#: ../src/report/business-reports/fancy-invoice.scm:1013
+#: ../src/report/report-gnome/gnc-plugin-page-report.c:1693
+msgid "Fancy Invoice"
+msgstr "Smart faktura"
-# lidt i tvivl her om det ikke skal være ental på dansk
-# engelsk ofte taxes (hvor vi bare siger skat på dansk).
-#. { name, default txn memo, throughEscrowP, specSrcAcctP }
-#: ../src/gnome/assistant-loan.c:116
-msgid "Taxes"
-msgstr "Skat"
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:5
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:3
+#: ../src/import-export/dialog-import.glade.h:1
+#: ../src/import-export/qif-imp/dialog-account-picker.glade.h:1
+msgid "Preferences"
+msgstr "Indstillinger"
-#: ../src/gnome/assistant-loan.c:116
-msgid "Tax Payment"
-msgstr "Skattebetaling"
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:6
+msgid "<b>Invoices</b>"
+msgstr "<b>Fakturaer</b>"
-#: ../src/gnome/assistant-loan.c:117
-msgid "Insurance"
-msgstr "Forsikring"
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:7
+msgid "Ta_x included"
+msgstr "_Skat er inkluderet"
-#: ../src/gnome/assistant-loan.c:117
-msgid "Insurance Payment"
-msgstr "Forsikringsbetaling"
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:8
+msgid "Whether tax is included by default in entries on Bills. This setting is inherited by new customers and vendors."
+msgstr "Om skat, som standard, er inkluderet i posterne på regninger. Denne indstilling nedarves til nye kunder og leverandører."
-#. Translators: PMI stands for Private Mortgage Insurance.
-#: ../src/gnome/assistant-loan.c:119
-msgid "PMI"
-msgstr "PMI"
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:9
+msgid "How many days in the future to warn about Bills coming due."
+msgstr ""
-#: ../src/gnome/assistant-loan.c:119
-msgid "PMI Payment"
-msgstr "PMI-betaling"
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:10
+msgid "_Days in advance:"
+msgstr "_Dage forud:"
-#: ../src/gnome/assistant-loan.c:120
-msgid "Other Expense"
-msgstr "Anden omkostning"
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:11
+msgid "_Notify when due"
+msgstr "Giv besked _når forfalden"
-#: ../src/gnome/assistant-loan.c:120
-msgid "Miscellaneous Payment"
-msgstr "Diverse betaling"
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:12
+msgid "Whether to display the list of Bills Due at startup."
+msgstr "Om listen over forfaldne regninger skal vises ved opstart."
-#. Add payment checkbox.
-#. Translators: %s is "Taxes",
-#. * "Insurance", or similar.
-#: ../src/gnome/assistant-loan.c:751
-#, c-format
-msgid "... pay \"%s\"?"
-msgstr "... betaler »%s«?"
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:13
+msgid "<b>Bills</b>"
+msgstr "<b>Regninger</b>"
-#: ../src/gnome/assistant-loan.c:763
-msgid "via Escrow account?"
-msgstr "via Escrowkonto?"
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:14
+msgid "_Tax included"
+msgstr "Ska_t inkluderet"
-#: ../src/gnome/assistant-loan.c:918
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2926
-#: ../src/register/ledger-core/split-register.c:2464
-msgid "Loan"
-msgstr "LÃ¥n"
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:15
+msgid "Whether tax is included by default in entries on Invoices. This setting is inherited by new customers and vendors."
+msgstr "Om skat, som standard, er inkludereret i posterne på fakturaer. Denne indstilling nedarves til nye kunder og leverandører."
-#. Translators: %s is "Taxes", or "Insurance", or similar
-#: ../src/gnome/assistant-loan.c:1446
-#, c-format
-msgid "Loan Repayment Option: \"%s\""
-msgstr "Låntilbagebetalingsindstilling: »%s«"
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:16
+msgid "_Accumulate splits on post"
+msgstr ""
-#: ../src/gnome/assistant-loan.c:1842
-#: ../src/gnome/assistant-loan.c:2839
-msgid "Principal"
-msgstr "Hovedstol"
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:17
+msgid "Whether multiple entries in an invoice which transfer to the same account should be accumulated into a single split by default. This setting can be changed in the Post dialog."
+msgstr ""
-#. src/import-export/qif-imp/qif-dialog-utils.scm
-#: ../src/gnome/assistant-loan.c:1848
-#: ../src/gnome/assistant-loan.c:2859
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2882
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2919
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2927
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2934
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2943
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2970
-#: ../src/register/ledger-core/split-register.c:2420
-#: ../src/register/ledger-core/split-register.c:2457
-#: ../src/register/ledger-core/split-register.c:2465
-#: ../src/register/ledger-core/split-register.c:2472
-#: ../src/register/ledger-core/split-register.c:2481
-#: ../src/register/ledger-core/split-register.c:2508
-#: ../intl-scm/guile-strings.c:314
-msgid "Interest"
-msgstr "Renter"
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:18
+msgid "_Open in new window"
+msgstr "_Ã
bn i nyt vindue"
-#: ../src/gnome/assistant-loan.c:2745
-msgid "Escrow Payment"
-msgstr "Escrow-betaling"
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:19
+msgid "If checked, each invoice will be opened in its own top level window. If clear, the invoice will be opened in the current window."
+msgstr ""
-#. Set split-action with gnc_set_num_action which is the same as
-#. * xaccSplitSetAction with these arguments
-#. Translators: This string has a disambiguation prefix
-#: ../src/gnome/assistant-stock-split.c:380
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2979
-#: ../src/register/ledger-core/split-register.c:2517
-msgid "Action Column|Split"
-msgstr "Opdeling"
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:20
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:59
+msgid "<b>General</b>"
+msgstr "<b>Generelt</b>"
-#: ../src/gnome/assistant-stock-split.c:411
-msgid "Error adding price."
-msgstr "Fejl ved tilføjelse af pris."
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:21
+msgid "Enable extra _buttons"
+msgstr "Aktiver ekstra _knapper"
-#. src/report/business-reports/job-report.scm
-#. src/report/business-reports/owner-report.scm
-#. src/report/standard-reports/advanced-portfolio.scm
-#. src/report/standard-reports/budget-flow.scm
-#. src/report/standard-reports/budget.scm
-#. src/report/standard-reports/cash-flow.scm
-#. src/report/standard-reports/general-journal.scm
-#. src/report/standard-reports/portfolio.scm
-#. src/report/standard-reports/register.scm
-#. src/report/standard-reports/transaction.scm
-#: ../src/gnome/assistant-stock-split.c:574
-#: ../src/gnome/dialog-find-transactions2.c:108
-#: ../src/gnome/dialog-find-transactions.c:107
-#: ../src/gnome-utils/gnc-icons.c:18
-#: ../src/import-export/aqb/gnc-ab-utils.c:458
-#: ../src/import-export/csv-imp/gnc-csv-model.c:49
-#: ../src/import-export/import-main-matcher.c:482
-#: ../src/import-export/import-match-picker.c:343
-#: ../src/import-export/qif-imp/dialog-account-picker.c:369
-#: ../src/register/ledger-core/split-register-model.c:325
-#: ../intl-scm/guile-strings.c:1354
-#: ../intl-scm/guile-strings.c:1468
-#: ../intl-scm/guile-strings.c:2652
-#: ../intl-scm/guile-strings.c:3048
-#: ../intl-scm/guile-strings.c:3196
-#: ../intl-scm/guile-strings.c:3262
-#: ../intl-scm/guile-strings.c:3560
-#: ../intl-scm/guile-strings.c:3962
-#: ../intl-scm/guile-strings.c:4076
-#: ../intl-scm/guile-strings.c:4140
-#: ../intl-scm/guile-strings.c:4454
-msgid "Account"
-msgstr "Konto"
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:24
+msgid "Report for printing:"
+msgstr "Rapport for udskrivning:"
-# Dette står både for valutakoder (DKK) og børskoder (RHAD). CH
-#. src/report/standard-reports/advanced-portfolio.scm
-#. src/report/standard-reports/portfolio.scm
-#: ../src/gnome/assistant-stock-split.c:580
-#: ../src/gnome-utils/gnc-tree-view-commodity.c:390
-#: ../intl-scm/guile-strings.c:2656
-#: ../intl-scm/guile-strings.c:3964
-msgid "Symbol"
-msgstr "Kode"
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:25
+msgid "Auto pay on post_ing"
+msgstr "Automatisk betaling ved _bogføring"
-#. src/report/standard-reports/advanced-portfolio.scm
-#. src/report/standard-reports/general-journal.scm
-#. src/report/standard-reports/general-ledger.scm
-#. src/report/standard-reports/register.scm
-#. src/report/standard-reports/transaction.scm
-#: ../src/gnome/assistant-stock-split.c:586
-#: ../src/gnome/dialog-find-transactions2.c:121
-#: ../src/gnome/dialog-find-transactions.c:120
-#: ../src/register/ledger-core/split-register-model.c:396
-#: ../intl-scm/guile-strings.c:2660
-#: ../intl-scm/guile-strings.c:3562
-#: ../intl-scm/guile-strings.c:3602
-#: ../intl-scm/guile-strings.c:4080
-#: ../intl-scm/guile-strings.c:4146
-#: ../intl-scm/guile-strings.c:4388
-#: ../intl-scm/guile-strings.c:4458
-#: ../intl-scm/guile-strings.c:4744
-msgid "Shares"
-msgstr "Aktier"
+#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:27
+msgid "Auto _pay on posting"
+msgstr "Automatisk _betaling ved bogføring"
-#: ../src/gnome/assistant-stock-split.c:777
-msgid "You don't have any stock accounts with balances!"
-msgstr "Du har ingen aktiekonti med balancer!"
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:1
+msgid "Cancel your changes"
+msgstr "Fortryd dine ændringer"
-#: ../src/gnome/dialog-commodities.c:156
-msgid "That commodity is currently used by at least one of your accounts. You may not delete it."
-msgstr "Den vare bruges allerede af mindst en af dine konti. Du kan ikke slette den."
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:2
+msgid "Commit this Billing Term"
+msgstr "Registrer denne betalingsbetingelse"
-#: ../src/gnome/dialog-commodities.c:170
-msgid "This commodity has price quotes. Are you sure you want to delete the selected commodity and its price quotes?"
-msgstr ""
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:3
+msgid "<b>Term Definition</b>"
+msgstr "<b>Definition for betingelse</b>"
-#: ../src/gnome/dialog-commodities.c:177
-msgid "Are you sure you want to delete the selected commodity?"
-msgstr "Er du sikker på, at du vil slette den aktuelle vare?"
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:4
+msgid "De_scription:"
+msgstr "Be_skrivelse:"
-#: ../src/gnome/dialog-commodities.c:186
-msgid "Delete commodity?"
-msgstr "Slet vare?"
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:5
+msgid "The description of the Billing Term, printed on invoices"
+msgstr "Beskrivelsen af betalingsbetingelse, som udskrives på fakturaer"
-#: ../src/gnome/dialog-fincalc.c:312
-msgid "This program can only calculate one value at a time. You must enter values for all but one quantity."
-msgstr "Dette program kan kun beregne en værdi ad gangen. Du skal indtaste værdier for alle andre end en kvantitet."
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:6
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:12
+#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:3
+msgid "_Type:"
+msgstr "_Type:"
-#: ../src/gnome/dialog-fincalc.c:314
-msgid "GnuCash cannot determine the value in one of the fields. You must enter a valid expression."
-msgstr "GnuCash kan ikke afgøre en værdi i et af felterne. Du må indtaste en gyldig værdi."
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:7
+msgid "The internal name of the Billing Term."
+msgstr "Det interne navn på betalingsbetingelsen."
-#: ../src/gnome/dialog-fincalc.c:353
-msgid "The interest rate cannot be zero."
-msgstr "Renten kan ikke være nul."
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:8
+msgid "<b>New Billing Term</b>"
+msgstr "<b>Ny regningsbetingelse</b>"
-#: ../src/gnome/dialog-fincalc.c:372
-msgid "The number of payments cannot be zero."
-msgstr "Antallet af betalinger kan ikke være nul."
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:9
+#: ../src/report/report-gnome/dialog-report.glade.h:17
+msgid "_Name:"
+msgstr "_Navn:"
-#: ../src/gnome/dialog-fincalc.c:377
-msgid "The number of payments cannot be negative."
-msgstr "Antallet af betalinger kan ikke være negativt."
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:10
+msgid "Due Days: "
+msgstr "Forfaldsdage: "
-#: ../src/gnome/dialog-find-transactions2.c:104
-#: ../src/gnome/dialog-find-transactions.c:103
-msgid "All Accounts"
-msgstr "Alle konti"
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:11
+msgid "Discount Days: "
+msgstr "Rabatdage: "
-#: ../src/gnome/dialog-find-transactions2.c:111
-#: ../src/gnome/dialog-find-transactions.c:110
-#: ../src/import-export/import-match-picker.c:348
-msgid "Balanced"
-msgstr "Balanceret"
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:13
+#, no-c-format
+msgid "Discount %: "
+msgstr "Rabat %: "
-#. src/report/report-system/html-acct-table.scm
-#. src/report/standard-reports/equity-statement.scm
-#. src/report/standard-reports/income-statement.scm
-#. src/report/standard-reports/trial-balance.scm
-#: ../src/gnome/dialog-find-transactions2.c:114
-#: ../src/gnome/dialog-find-transactions.c:113
-#: ../intl-scm/guile-strings.c:2038
-#: ../intl-scm/guile-strings.c:3516
-#: ../intl-scm/guile-strings.c:3740
-#: ../intl-scm/guile-strings.c:4938
-msgid "Closing Entries"
-msgstr "Lukkeposter"
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:14
+msgid "The number of days to pay the bill after the post date."
+msgstr ""
-#: ../src/gnome/dialog-find-transactions2.c:117
-#: ../src/gnome/dialog-find-transactions.c:116
-#: ../src/gnome/gnc-plugin-page-register2.c:484
-#: ../src/gnome/gnc-plugin-page-register.c:487
-#: ../src/gnome/window-reconcile2.c:1315
-#: ../src/gnome/window-reconcile.c:1315
-#: ../src/import-export/csv-exp/csv-transactions-export.c:423
-msgid "Reconcile"
-msgstr "Afstem"
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:15
+msgid "The number of days after the post date during which a discount will be applied for early payment."
+msgstr ""
-#: ../src/gnome/dialog-find-transactions2.c:119
-#: ../src/gnome/dialog-find-transactions.c:118
-msgid "Share Price"
-msgstr "Aktiepris"
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:16
+msgid "The percentage discount applied for early payment."
+msgstr "Rabatprocenten ved tidlig betaling."
-#. src/report/standard-reports/advanced-portfolio.scm
-#. src/report/standard-reports/portfolio.scm
-#. src/report/standard-reports/register.scm
-#: ../src/gnome/dialog-find-transactions2.c:123
-#: ../src/gnome/dialog-find-transactions.c:122
-#: ../src/gnome/dialog-lot-viewer.c:932
-#: ../src/gnome/dialog-sx-since-last-run.c:988
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2982
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3002
-#: ../intl-scm/guile-strings.c:2666
-#: ../intl-scm/guile-strings.c:3972
-#: ../intl-scm/guile-strings.c:4086
-#: ../intl-scm/guile-strings.c:4178
-msgid "Value"
-msgstr "Værdi"
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:18
+msgid "Due Day: "
+msgstr "Forfaldsdag:"
-#. src/report/standard-reports/transaction.scm
-#: ../src/gnome/dialog-find-transactions2.c:131
-#: ../src/gnome/dialog-find-transactions2.c:154
-#: ../src/gnome/dialog-find-transactions2.c:160
-#: ../src/gnome/dialog-find-transactions.c:130
-#: ../src/gnome/dialog-find-transactions.c:153
-#: ../src/gnome/dialog-find-transactions.c:159
-#: ../src/gnome/gnc-plugin-page-register.c:1834
-#: ../src/gnome/gnc-plugin-page-register.c:3105
-#: ../src/gnome-search/dialog-search.c:859
-#: ../src/gnome-search/dialog-search.c:865
-#: ../src/import-export/csv-exp/csv-transactions-export.c:422
-#: ../intl-scm/guile-strings.c:4576
-msgid "Number/Action"
-msgstr "Nummer/handling"
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:19
+msgid "Discount Day: "
+msgstr "Rabatdag: "
-#. src/report/standard-reports/transaction.scm
-#: ../src/gnome/dialog-find-transactions2.c:135
-#: ../src/gnome/dialog-find-transactions2.c:156
-#: ../src/gnome/dialog-find-transactions2.c:162
-#: ../src/gnome/dialog-find-transactions.c:134
-#: ../src/gnome/dialog-find-transactions.c:155
-#: ../src/gnome/dialog-find-transactions.c:161
-#: ../src/gnome/gnc-plugin-page-register.c:1833
-#: ../src/gnome/gnc-plugin-page-register.c:3104
-#: ../src/gnome-search/dialog-search.c:861
-#: ../src/gnome-search/dialog-search.c:867
-#: ../src/import-export/csv-exp/csv-transactions-export.c:418
-#: ../intl-scm/guile-strings.c:4580
-msgid "Transaction Number"
-msgstr "Transaktionsnummer"
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:20
+msgid "Cutoff Day: "
+msgstr ""
-#. FIXME: All this does is leak.
-#: ../src/gnome/dialog-find-transactions2.c:207
-#: ../src/gnome/dialog-find-transactions.c:206
-#: ../src/gnome-search/dialog-search.c:1415
-msgid "Find Transaction"
-msgstr "Find transaktion"
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:21
+msgid "The day of the month bills are due"
+msgstr "Den dag i måneden hvor regninger forfalder"
-#: ../src/gnome/dialog-lot-viewer.c:792
-#: ../src/gnome/gnc-plugin-page-account-tree.c:339
-#: ../src/gnome/gnc-plugin-page-budget.c:176
-#: ../src/gnome-utils/gnc-file.c:100
-#: ../src/gnome-utils/gnc-file.c:1034
-#: ../src/gnome/window-reconcile2.c:1700
-#: ../src/gnome/window-reconcile.c:1700
-msgid "Open"
-msgstr "Ã
bn"
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:22
+msgid "The last day of the month for the early payment discount."
+msgstr "Den sidste dag i måneden for rabatten vedrørende tidlig betaling."
-#. src/report/report-system/html-fonts.scm
-#. src/report/standard-reports/general-journal.scm
-#. src/report/standard-reports/register.scm
-#: ../src/gnome/dialog-lot-viewer.c:857
-#: ../intl-scm/guile-strings.c:2046
-#: ../intl-scm/guile-strings.c:3552
-#: ../intl-scm/guile-strings.c:4102
-msgid "Title"
-msgstr "Titel"
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:23
+msgid "The discount percentage applied if paid early."
+msgstr "Rabatprocenten hvis der foretages tidlig betaling."
-#. src/report/business-reports/customer-summary.scm
-#. src/report/business-reports/job-report.scm
-#. src/report/business-reports/owner-report.scm
-#. src/report/report-system/html-utilities.scm
-#. src/report/standard-reports/account-summary.scm
-#. src/report/standard-reports/register.scm
-#. src/report/standard-reports/sx-summary.scm
-#. src/report/standard-reports/transaction.scm
-#: ../src/gnome/dialog-lot-viewer.c:863
-#: ../src/gnome/dialog-lot-viewer.c:944
-#: ../src/gnome-utils/gnc-tree-view-account.c:775
-#: ../src/gnome-utils/gnc-tree-view-owner.c:459
-#: ../src/gnome-utils/gnc-tree-view-owner.c:467
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3212
-#: ../src/import-export/csv-imp/gnc-csv-model.c:52
-#: ../src/register/ledger-core/split-register-model.c:311
-#: ../src/register/ledger-core/split-register-model.c:461
-#: ../intl-scm/guile-strings.c:680
-#: ../intl-scm/guile-strings.c:1378
-#: ../intl-scm/guile-strings.c:1524
-#: ../intl-scm/guile-strings.c:2106
-#: ../intl-scm/guile-strings.c:2566
-#: ../intl-scm/guile-strings.c:4092
-#: ../intl-scm/guile-strings.c:4320
-#: ../intl-scm/guile-strings.c:4468
-msgid "Balance"
-msgstr "Saldo"
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:24
+msgid "The cutoff day for applying bills to the next month. After the cutoff, bills are applied to the following month. Negative values count backwards from the end of the month."
+msgstr ""
-#: ../src/gnome/dialog-lot-viewer.c:869
-msgid "Gains"
-msgstr "Gevinster"
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:26
+msgid "Table"
+msgstr "Tabel"
-#. src/report/standard-reports/average-balance.scm
-#: ../src/gnome/dialog-lot-viewer.c:938
-#: ../intl-scm/guile-strings.c:2738
-msgid "Gain/Loss"
-msgstr "Gevinst/tab"
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:27
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:12
+#: ../src/report/business-reports/easy-invoice.scm:840
+#: ../src/report/business-reports/fancy-invoice.scm:947
+#: ../src/report/business-reports/invoice.scm:765
+msgid "Terms"
+msgstr "Betingelser"
-#: ../src/gnome/dialog-lot-viewer.c:989
-#, c-format
-msgid "Lots in Account %s"
-msgstr "Afkast på konto %s"
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:28
+msgid "Close this window"
+msgstr "Luk dette vindue"
-#. Translators: %d is the number of prices. This
-#. is a ngettext(3) message.
-#: ../src/gnome/dialog-price-edit-db.c:185
-#, c-format
-msgid "Are you sure you want to delete the selected price?"
-msgid_plural "Are you sure you want to delete the %d selected prices?"
-msgstr[0] "Er du sikker på, at du vil slette den valgte pris?"
-msgstr[1] "Er du sikker på, at du vil slette de %d valgte priser?"
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:29
+msgid "<b>Terms</b>"
+msgstr "<b>Betingelser</b>"
-#: ../src/gnome/dialog-price-edit-db.c:193
-msgid "Delete prices?"
-msgstr "Slet priser?"
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:30
+msgid "Delete the current Billing Term"
+msgstr "Slet den nuværende betalingsbetingelse"
-#: ../src/gnome/dialog-price-editor.c:215
-msgid "You must select a Security."
-msgstr "Du skal vælge et værdipapir."
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:31
+msgid "Create a new Billing Term"
+msgstr "Opret en ny betalingsbetingelse"
-#: ../src/gnome/dialog-price-editor.c:220
-msgid "You must select a Currency."
-msgstr "Du skal vælge en valuta."
+#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:32
+msgid "Edit the current Billing Term"
+msgstr "Rediger den aktuelle betalingsbetingelse"
-#: ../src/gnome/dialog-price-editor.c:231
-#: ../src/gnome-utils/dialog-transfer.c:1435
-msgid "You must enter a valid amount."
-msgstr "Du skal vælge en gyldig mængde."
+#: ../src/business/business-gnome/gtkbuilder/dialog-choose-owner.glade.h:1
+msgid "Choose Owner Dialog"
+msgstr "Vælg ejerdialog"
+
+#: ../src/business/business-gnome/gtkbuilder/dialog-choose-owner.glade.h:2
+#: ../src/business/business-gnome/gtkbuilder/dialog-date-close.glade.h:5
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:66
+#: ../src/gnome/dialog-find-transactions2.c:154
+#: ../src/gnome/dialog-find-transactions.c:153
+#: ../src/gnome/dialog-lot-viewer.c:920 ../src/gnome/dialog-tax-info.c:1352
+#: ../src/gnome/reconcile-view.c:377
+#: ../src/gnome-utils/gnc-tree-model-budget.c:102
+#: ../src/gnome-utils/gnc-tree-view-account.c:749
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2912
+#: ../src/import-export/csv-exp/csv-transactions-export.c:419
+#: ../src/import-export/csv-imp/gnc-csv-model.c:47
+#: ../src/import-export/import-main-matcher.c:485
+#: ../src/import-export/import-match-picker.c:346
+#: ../src/import-export/import-match-picker.c:386
+#: ../src/import-export/qif-imp/assistant-qif-import.c:3492
+#: ../src/import-export/qif-imp/assistant-qif-import.c:3529
+#: ../src/register/ledger-core/split-register-model.c:286
+#: ../src/report/business-reports/customer-summary.scm:70
+#: ../src/report/business-reports/easy-invoice.scm:112
+#: ../src/report/business-reports/easy-invoice.scm:254
+#: ../src/report/business-reports/fancy-invoice.scm:130
+#: ../src/report/business-reports/fancy-invoice.scm:264
+#: ../src/report/business-reports/invoice.scm:106
+#: ../src/report/business-reports/invoice.scm:249
+#: ../src/report/business-reports/job-report.scm:47
+#: ../src/report/business-reports/owner-report.scm:54
+#: ../src/report/business-reports/taxinvoice.eguile.scm:280
+#: ../src/report/standard-reports/account-summary.scm:442
+#: ../src/report/standard-reports/general-journal.scm:109
+#: ../src/report/standard-reports/general-ledger.scm:78
+#: ../src/report/standard-reports/register.scm:129
+#: ../src/report/standard-reports/register.scm:400
+#: ../src/report/standard-reports/sx-summary.scm:447
+#: ../src/report/standard-reports/transaction.scm:388
+#: ../src/report/standard-reports/transaction.scm:444
+#: ../src/report/standard-reports/transaction.scm:762
+#: ../src/report/standard-reports/transaction.scm:817
+#: ../src/report/standard-reports/transaction.scm:947
+msgid "Description"
+msgstr "Beskrivelse"
-#: ../src/gnome/dialog-print-check2.c:821
-#: ../src/gnome/dialog-print-check.c:821
-msgid "Cannot save check format file."
-msgstr "Kan ikke gemme checkformatfil."
+#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:2
+msgid "Customer Number: "
+msgstr "Kundenummer: "
-#: ../src/gnome/dialog-print-check2.c:1509
-#: ../src/gnome/dialog-print-check.c:1509
-msgid "There is a duplicate check format file."
-msgstr "Der er en kopi af checkformatfilen."
+#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:3
+#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:3
+msgid "Company Name: "
+msgstr "Firmanavn: "
-# i %1$s er det et tal eller en tekst?
-#
-#. Translators: %1$s is the type of the first check
-#. * format (user defined or application defined); %2$s
-#. * is the filename of that format; %3$s the type of
-#. * the other check format; and %4$s the filename of
-#. * that other format.
-#: ../src/gnome/dialog-print-check2.c:1517
-#: ../src/gnome/dialog-print-check.c:1517
-#, c-format
-msgid "The GUIDs in the %s check format file '%s' and the %s check format file '%s' match."
-msgstr "GUID'en i %s checkformatfilen '%s' og %s checkformatfilen '%s' stemmer overens."
+#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:4
+#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:4
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:7
+#: ../src/business/business-gnome/gtkbuilder/dialog-job.glade.h:9
+#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:14
+#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:4
+#: ../src/gnome-utils/gnc-tree-view-owner.c:480
+msgid "Active"
+msgstr "Aktiv"
-#. Translators: This is a directory name. It may be presented to
-#. * the user to indicate that some data file was defined by the
-#. * gnucash application.
-#: ../src/gnome/dialog-print-check2.c:1558
-#: ../src/gnome/dialog-print-check.c:1558
-msgid "application"
-msgstr "application"
+#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:5
+msgid "The customer ID number. If left blank a reasonable number will be chosen for you"
+msgstr "Kundens id-nummer. Hvis tom vil et egnet nummer blive valgt for dig"
-#. Translators: This is a directory name. It may be presented to
-#. * the user to indicate that some data file was defined by a
-#. * user herself.
-#: ../src/gnome/dialog-print-check2.c:1566
-#: ../src/gnome/dialog-print-check.c:1566
-msgid "user"
-msgstr "user"
+#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:6
+#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:6
+#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:6
+msgid "Identification"
+msgstr "Identifikation"
-#: ../src/gnome/dialog-print-check2.c:1590
-#: ../src/gnome/dialog-print-check2.c:2562
-#: ../src/gnome/dialog-print-check.c:1590
-#: ../src/gnome/dialog-print-check.c:2562
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:59
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:40
-#: ../src/gnome-utils/gtkbuilder/gnc-date-format.glade.h:20
-#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:10
-#: ../src/import-export/csv-imp/assistant-csv-trans-import.glade.h:29
-msgid "Custom"
-msgstr "Tilpasset"
+#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:7
+#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:7
+#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:7
+msgid "Name: "
+msgstr "Navn: "
-#: ../src/gnome/dialog-print-check2.c:2554
-#: ../src/gnome/dialog-print-check.c:2554
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:37
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:184
-msgid "Top"
-msgstr "Ãverst"
+#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:8
+#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:8
+#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:8
+msgid "Address: "
+msgstr "Adresse: "
-#: ../src/gnome/dialog-progress.c:483
-#: ../src/gnome/dialog-progress.c:532
-msgid "(paused)"
-msgstr "(pause)"
+#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:9
+#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:9
+#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:9
+msgid "Phone: "
+msgstr "Telefon: "
-#: ../src/gnome/dialog-progress.c:767
-#: ../src/gnome/dialog-progress.c:770
-msgid "Complete"
-msgstr "Færdig"
+#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:10
+#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:10
+#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:10
+msgid "Fax: "
+msgstr "Fax: "
-#: ../src/gnome/dialog-sx-editor2.c:166
-#: ../src/gnome/dialog-sx-editor.c:167
-#: ../src/gnome/gnc-plugin-page-sx-list.c:146
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:17
-#: ../src/gnome-utils/gnc-main-window.c:260
-#: ../src/gnome/window-reconcile2.c:2203
-#: ../src/gnome/window-reconcile.c:2203
-#: ../src/report/report-gnome/dialog-report.glade.h:20
-msgid "_Edit"
-msgstr "_Redigér"
+#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:11
+#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:11
+#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:11
+msgid "Email: "
+msgstr "E-post: "
-#: ../src/gnome/dialog-sx-editor2.c:167
-#: ../src/gnome/dialog-sx-editor.c:168
-#: ../src/gnome/window-reconcile2.c:2144
-#: ../src/gnome/window-reconcile.c:2144
-msgid "_Transaction"
-msgstr "_Transaktion"
+#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:12
+msgid "Billing Address"
+msgstr "Faktureringsadresse"
-#: ../src/gnome/dialog-sx-editor2.c:168
-#: ../src/gnome/dialog-sx-editor.c:169
-#: ../src/gnome-utils/gnc-main-window.c:261
-msgid "_View"
-msgstr "_Vis"
+#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:13
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:14
+#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:9
+#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:13
+#: ../src/gnome/dialog-find-transactions2.c:152
+#: ../src/gnome/dialog-find-transactions.c:151
+#: ../src/gnome-utils/gnc-tree-view-account.c:885
+#: ../src/gnome-utils/gnc-tree-view-owner.c:475
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2914
+#: ../src/import-export/csv-exp/csv-transactions-export.c:419
+#: ../src/import-export/csv-imp/gnc-csv-model.c:48
+#: ../src/register/ledger-core/split-register-model.c:468
+#: ../src/report/business-reports/balsheet-eg.scm:301
+#: ../src/report/business-reports/taxinvoice.scm:91
+#: ../src/report/standard-reports/account-summary.scm:483
+#: ../src/report/standard-reports/sx-summary.scm:488
+#: ../src/report/standard-reports/transaction.scm:420
+#: ../src/report/standard-reports/transaction.scm:447
+#: ../src/report/standard-reports/transaction.scm:948
+#: ../src/report/standard-reports/transaction.scm:978
+msgid "Notes"
+msgstr "Bemærkninger"
-#: ../src/gnome/dialog-sx-editor2.c:169
-#: ../src/gnome/dialog-sx-editor.c:170
-#: ../src/gnome-utils/gnc-main-window.c:262
-msgid "_Actions"
-msgstr "_Handlinger"
+#. Translators: "Markup" is profit amount divided by sales amount
+#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:14
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:24
+#: ../src/business/business-gnome/search-owner.c:238
+#: ../src/gnome-search/dialog-search.c:1057
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2883
+#: ../src/plugins/customer_import/gtkbuilder/dialog-customer-import-gui.glade.h:3
+#: ../src/register/ledger-core/split-register-model.c:282
+#: ../src/report/business-reports/customer-summary.scm:728
+#: ../src/report/business-reports/customer-summary.scm:839
+#: ../src/report/business-reports/job-report.scm:573
+#: ../src/report/business-reports/owner-report.scm:70
+#: ../src/report/business-reports/owner-report.scm:108
+msgid "Customer"
+msgstr "Kunde"
-#: ../src/gnome/dialog-sx-editor2.c:201
-#: ../src/gnome/dialog-sx-editor.c:202
-msgid "This Scheduled Transaction has changed; are you sure you want to cancel?"
-msgstr "Denne planlagte transaktion har ændret sig; er du sikker på, at du ønsker at afbryde?"
+#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:15
+#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:17
+#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:15
+msgid "Currency: "
+msgstr "Valuta: "
-#: ../src/gnome/dialog-sx-editor2.c:648
-#: ../src/gnome/dialog-sx-editor.c:655
-#, c-format
-msgid "Couldn't parse credit formula for split \"%s\"."
-msgstr "Kunne ikke fortolke kreditformel for opdeling »%s«."
+#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:16
+#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:16
+msgid "Terms: "
+msgstr "Betingelser: "
-#: ../src/gnome/dialog-sx-editor2.c:676
-#: ../src/gnome/dialog-sx-editor.c:683
-#, c-format
-msgid "Couldn't parse debit formula for split \"%s\"."
-msgstr "Kunne ikke fortolke debetformel for opdeling »%s«."
+#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:17
+msgid "Discount: "
+msgstr "Rabat: "
-#: ../src/gnome/dialog-sx-editor2.c:710
-#: ../src/gnome/dialog-sx-editor.c:717
-#: ../src/gnome/dialog-sx-from-trans.c:260
-msgid "The Scheduled Transaction Editor cannot automatically balance this transaction. Should it still be entered?"
-msgstr ""
+#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:18
+msgid "Credit Limit: "
+msgstr "Kreditbegrænsning: "
-#: ../src/gnome/dialog-sx-editor2.c:731
-#: ../src/gnome/dialog-sx-editor.c:738
-msgid "Please name the Scheduled Transaction."
-msgstr "Angiv venligst navn på den planlagte transaktion."
+#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:19
+msgid "Tax Included: "
+msgstr "Skat inkluderet: "
-#: ../src/gnome/dialog-sx-editor2.c:758
-#: ../src/gnome/dialog-sx-editor.c:766
-#, c-format
-msgid "A Scheduled Transaction with the name \"%s\" already exists. Are you sure you want to name this one the same?"
-msgstr "En planlagt transaktion med navnet »%s« findes allerede. Er du sikker på, at du vil kalde den her det samme?"
+#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:20
+msgid "Tax Table: "
+msgstr "Skattetabel: "
-#: ../src/gnome/dialog-sx-editor2.c:786
-#: ../src/gnome/dialog-sx-editor.c:794
-msgid "Scheduled Transactions with variables cannot be automatically created."
-msgstr "Planlagte transaktioner med variabler kan ikke oprettes automatisk."
+#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:21
+#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:19
+msgid "Override the global Tax Table?"
+msgstr "Overskriv den globale skattetabel?"
-#: ../src/gnome/dialog-sx-editor2.c:796
-#: ../src/gnome/dialog-sx-editor.c:804
-msgid "Scheduled Transactions without a template transaction cannot be automatically created."
-msgstr "Planlagte transaktioner uden en skabelontransaktion kan ikke automatisk oprettes."
+#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:22
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:13
+#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:8
+msgid "Billing Information"
+msgstr "Faktureringsoplysninger"
-#: ../src/gnome/dialog-sx-editor2.c:811
-#: ../src/gnome/dialog-sx-editor.c:819
-msgid "Please provide a valid end selection."
-msgstr "Angiv venligst en gyldig slutmarkering."
+#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:23
+msgid "Shipping Information"
+msgstr "Leveringsinformation"
-#: ../src/gnome/dialog-sx-editor2.c:829
-#: ../src/gnome/dialog-sx-editor.c:837
-msgid "There must be some number of occurrences."
-msgstr ""
+#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:24
+msgid "Shipping Address"
+msgstr "Leveringsadresse"
-#: ../src/gnome/dialog-sx-editor2.c:838
-#: ../src/gnome/dialog-sx-editor.c:846
-#, c-format
-msgid "The number of remaining occurrences (%d) is greater than the number of total occurrences (%d)."
-msgstr ""
+#: ../src/business/business-gnome/gtkbuilder/dialog-date-close.glade.h:1
+msgid "Question"
+msgstr "Spørgsmål"
-#: ../src/gnome/dialog-sx-editor2.c:870
-#: ../src/gnome/dialog-sx-editor.c:878
-msgid "You have attempted to create a Scheduled Transaction which will never run. Do you really want to do this?"
-msgstr ""
+#: ../src/business/business-gnome/gtkbuilder/dialog-date-close.glade.h:2
+msgid "Dummy message"
+msgstr "Tom besked"
-#: ../src/gnome/dialog-sx-editor2.c:1316
-msgid "Note: If you have already accepted changes to the Template, Cancel will not revoke them."
-msgstr ""
+#: ../src/business/business-gnome/gtkbuilder/dialog-date-close.glade.h:3
+#, fuzzy
+msgid "postd"
+msgstr "Indsæt"
-#: ../src/gnome/dialog-sx-editor2.c:1363
-#: ../src/gnome/dialog-sx-editor.c:1381
-msgid "(never)"
-msgstr "(aldrig)"
+#: ../src/business/business-gnome/gtkbuilder/dialog-date-close.glade.h:4
+msgid "duedate"
+msgstr "forfaldsdato"
-#: ../src/gnome/dialog-sx-editor2.c:1531
-#: ../src/gnome/dialog-sx-editor.c:1549
-msgid "The current template transaction has been changed. Would you like to record the changes?"
-msgstr "Den aktuelle skabelontransaktion er blevet ændret. Vil du gemme ændringerne?"
+#: ../src/business/business-gnome/gtkbuilder/dialog-date-close.glade.h:6
+msgid "acct"
+msgstr ""
-#: ../src/gnome/dialog-sx-editor2.c:1784
-#: ../src/gnome/dialog-sx-editor.c:1814
-#: ../src/gnome/gnc-plugin-page-sx-list.c:243
-#: ../src/gnome/gnc-plugin-page-sx-list.c:249
-msgid "Scheduled Transactions"
-msgstr "Planlagte transaktioner"
+#: ../src/business/business-gnome/gtkbuilder/dialog-date-close.glade.h:7
+msgid "question"
+msgstr "spørgsmål"
-#: ../src/gnome/dialog-sx-from-trans.c:557
-msgid "The Scheduled Transaction is unbalanced. You are strongly encouraged to correct this situation."
-msgstr ""
+#: ../src/business/business-gnome/gtkbuilder/dialog-date-close.glade.h:8
+#: ../src/import-export/csv-imp/assistant-csv-account-import.glade.h:25
+#: ../src/import-export/csv-imp/assistant-csv-trans-import.glade.h:46
+msgid "label"
+msgstr "etiket"
-#: ../src/gnome/dialog-sx-from-trans.c:781
-msgid "Cannot create a Scheduled Transaction from a Transaction currently being edited. Please Enter the Transaction before Scheduling."
-msgstr ""
+#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:2
+msgid "Employee Number: "
+msgstr "Medarbejdernummer: "
-#: ../src/gnome/dialog-sx-since-last-run.c:388
-msgid "Ignored"
-msgstr "Ignoreret"
+#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:3
+msgid "Username: "
+msgstr "Brugernavn: "
-#: ../src/gnome/dialog-sx-since-last-run.c:389
-msgid "Postponed"
-msgstr "Udsat"
+#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:5
+msgid "The employee ID number. If left blank a reasonable number will be chosen for you"
+msgstr "Medarbejderens id-nummer. Hvis tom vil et egnet nummer blive valgt for dig"
-#: ../src/gnome/dialog-sx-since-last-run.c:390
-msgid "To-Create"
-msgstr "At-oprette"
+#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:12
+#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:12
+msgid "Payment Address"
+msgstr "Betalingsadresse"
-#: ../src/gnome/dialog-sx-since-last-run.c:391
-msgid "Reminder"
-msgstr "PÃ¥mindelse"
+#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:13
+msgid "Language: "
+msgstr "Sprog: "
-#: ../src/gnome/dialog-sx-since-last-run.c:392
-msgid "Created"
-msgstr "Oprettet"
+#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:14
+msgid "Interface"
+msgstr "Grænseflade"
-#: ../src/gnome/dialog-sx-since-last-run.c:455
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:89
-msgid "Never"
-msgstr "Aldrig"
+#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:15
+msgid "Default Hours per Day: "
+msgstr "Timer per dag som standard: "
-#: ../src/gnome/dialog-sx-since-last-run.c:525
-msgid "(Need Value)"
-msgstr "(Kræver værdi)"
+#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:16
+msgid "Default Rate: "
+msgstr "Standardrate: "
-#: ../src/gnome/dialog-sx-since-last-run.c:830
-#, c-format
-msgid "There are no Scheduled Transactions to be entered at this time. (One transaction automatically created)"
-msgid_plural "There are no Scheduled Transactions to be entered at this time. (%d transactions automatically created)"
-msgstr[0] "Der er ingen Planlagte transaktioner til indtasnting på nuværende tidspunkt. (En transaktion blev automatisk oprettet)"
-msgstr[1] "Der er ingen Planlagte transaktioner til indtasnting på nuværende tidspunkt. (%d transaktioner blev automatisk oprettet)"
+#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:18
+#: ../src/gnome-utils/dialog-transfer.c:1877
+msgid "Credit Account"
+msgstr "Kreditkonto"
-#: ../src/gnome/dialog-sx-since-last-run.c:952
-#: ../src/gnome-search/dialog-search.c:1047
-msgid "Transaction"
-msgstr "Transaktion"
+#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:19
+msgid "Billing"
+msgstr "Regningsudarbejdelse"
-#: ../src/gnome/dialog-sx-since-last-run.c:968
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:23
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:24
-msgid "Status"
-msgstr "Status"
+#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:20
+#: ../src/business/business-gnome/search-owner.c:240
+#: ../src/gnome-search/dialog-search.c:1061
+#: ../src/report/business-reports/customer-summary.scm:732
+#: ../src/report/business-reports/job-report.scm:582
+#: ../src/report/business-reports/owner-report.scm:71
+#: ../src/report/business-reports/owner-report.scm:109
+msgid "Employee"
+msgstr "Medarbejder"
-#: ../src/gnome/dialog-sx-since-last-run.c:1049
-msgid "Created Transactions"
-msgstr "Oprettede transaktioner"
+#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:21
+msgid "Access Control List"
+msgstr "Adgangskontrolliste"
-#: ../src/gnome/dialog-tax-info.c:284
-msgid "Last Valid Year: "
-msgstr "Sidste gyldige år: "
+#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:22
+msgid "Access Control"
+msgstr "Adgangskontrol"
-#: ../src/gnome/dialog-tax-info.c:285
-msgid "Form Line Data: "
-msgstr "Formularlinjedata: "
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:6
+msgid "Posted Account"
+msgstr "Bogført konto"
-#. src/report/standard-reports/account-summary.scm
-#. src/report/standard-reports/sx-summary.scm
-#: ../src/gnome/dialog-tax-info.c:286
-#: ../intl-scm/guile-strings.c:2558
-#: ../intl-scm/guile-strings.c:4312
-msgid "Code"
-msgstr "Kode"
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:8
+msgid "Invoice Information"
+msgstr "Fakturaoplysning"
-#: ../src/gnome/dialog-tax-info.c:361
-msgid "now"
-msgstr "nu"
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:9
+#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:6
+#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:3
+msgid "(owner)"
+msgstr "(ejer)"
-#: ../src/gnome/dialog-tax-info.c:1135
-msgid "Income Tax Identity"
-msgstr "Identitet for indtægtsskat"
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:10
+#: ../src/business/business-gnome/search-owner.c:241
+#: ../src/gnome-search/dialog-search.c:1073
+#: ../src/report/business-reports/job-report.scm:40
+#: ../src/report/business-reports/job-report.scm:576
+msgid "Job"
+msgstr "Arbejde"
-#: ../src/gnome/dialog-tax-info.c:1199
-msgid "CAUTION: If you set TXF categories, and later change 'Type', you will need to manually reset those categories one at a time"
-msgstr "FORSIGTIG: Hvis du angiver TXF-kategorier og senere ændrer 'Type', så vil du manuelt skulle nulstille disse kategorier en ad gangen"
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:15
+msgid "Customer: "
+msgstr "Kunde: "
-#: ../src/gnome/dialog-tax-info.c:1348
-msgid "Form"
-msgstr "Formular"
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:16
+msgid "Job: "
+msgstr "Arbejde: "
-#. src/import-export/qif-imp/qif-dialog-utils.scm
-#. src/report/report-system/report-utilities.scm
-#. src/report/standard-reports/budget-income-statement.scm
-#. src/report/standard-reports/income-statement.scm
-#: ../src/gnome/gnc-budget-view.c:355
-#: ../intl-scm/guile-strings.c:340
-#: ../intl-scm/guile-strings.c:344
-#: ../intl-scm/guile-strings.c:2352
-#: ../intl-scm/guile-strings.c:3178
-#: ../intl-scm/guile-strings.c:3752
-msgid "Expenses"
-msgstr "Udgifter"
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:17
+#, fuzzy
+msgid "Default Chargeback Project"
+msgstr "Standardvaluta"
-#: ../src/gnome/gnc-budget-view.c:357
-msgid "Transfers"
-msgstr "Overførsler"
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:18
+msgid "Additional to Card:"
+msgstr "Ekstra på kortet:"
-#. src/report/business-reports/aging.scm
-#. src/report/business-reports/balsheet-eg.eguile.scm
-#. src/report/business-reports/customer-summary.scm
-#. src/report/business-reports/easy-invoice.scm
-#. src/report/business-reports/fancy-invoice.scm
-#. src/report/business-reports/invoice.scm
-#. src/report/locale-specific/us/taxtxf-de_DE.scm
-#. src/report/report-system/html-acct-table.scm
-#. src/report/report-system/html-utilities.scm
-#. src/report/standard-reports/advanced-portfolio.scm
-#. src/report/standard-reports/budget-flow.scm
-#. src/report/standard-reports/portfolio.scm
-#: ../src/gnome/gnc-budget-view.c:359
-#: ../src/gnome/gnc-budget-view.c:1070
-#: ../src/gnome-utils/gnc-tree-view-account.c:844
-#: ../intl-scm/guile-strings.c:508
-#: ../intl-scm/guile-strings.c:510
-#: ../intl-scm/guile-strings.c:514
-#: ../intl-scm/guile-strings.c:688
-#: ../intl-scm/guile-strings.c:744
-#: ../intl-scm/guile-strings.c:768
-#: ../intl-scm/guile-strings.c:828
-#: ../intl-scm/guile-strings.c:974
-#: ../intl-scm/guile-strings.c:1034
-#: ../intl-scm/guile-strings.c:1184
-#: ../intl-scm/guile-strings.c:1244
-#: ../intl-scm/guile-strings.c:1888
-#: ../intl-scm/guile-strings.c:2042
-#: ../intl-scm/guile-strings.c:2102
-#: ../intl-scm/guile-strings.c:2654
-#: ../intl-scm/guile-strings.c:3064
-#: ../intl-scm/guile-strings.c:3066
-#: ../intl-scm/guile-strings.c:3974
-msgid "Total"
-msgstr "Total"
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:19
+msgid "Extra Payments"
+msgstr "Ekstrabetalinger"
-#: ../src/gnome/gnc-plugin-account-tree.c:59
-msgid "New Accounts _Page"
-msgstr "Ny kontosi_de"
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:20
+msgid "Invoice Entries"
+msgstr "Fakturaposter"
-#: ../src/gnome/gnc-plugin-account-tree.c:60
-msgid "Open a new Account Tree page"
-msgstr "Ã
bn en ny kontotræ-side"
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:23
+msgid "The invoice ID number. If left blank a reasonable number will be chosen for you."
+msgstr "Fakturaens id-nummer. Hvis tom vil et egnet nummer blive valgt for dig."
-#: ../src/gnome/gnc-plugin-basic-commands.c:107
-msgid "New _File"
-msgstr "Ny _fil"
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:25
+msgid ""
+"Unposting this Invoice will delete the posted transaction.\n"
+"Are you sure you want to unpost it?"
+msgstr "Ã
bning af denne faktura vil slette den bogførte transaktion.<nEr du sikker på, at du vil åbne den?"
-#: ../src/gnome/gnc-plugin-basic-commands.c:108
-msgid "Create a new file"
-msgstr "Opret en ny fil"
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:27
+msgid "Yes, reset the Tax Tables"
+msgstr "Ja, nulstil skattetabellerne"
-#: ../src/gnome/gnc-plugin-basic-commands.c:112
-msgid "_Open..."
-msgstr "_Ã
bn..."
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:28
+msgid "No, keep them as they are"
+msgstr "Nej, behold dem som de er"
-#: ../src/gnome/gnc-plugin-basic-commands.c:113
-msgid "Open an existing GnuCash file"
-msgstr "Ã
bn en eksisterende GnuCash-fil"
+#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:29
+msgid "Reset Tax Tables to present Values?"
+msgstr "Nulstil skattetabeller for nuværende værdier?"
-#: ../src/gnome/gnc-plugin-basic-commands.c:117
-msgid "_Save"
-msgstr "_Gem"
+#: ../src/business/business-gnome/gtkbuilder/dialog-job.glade.h:1
+msgid "Job Dialog"
+msgstr "Jobdialog"
-#: ../src/gnome/gnc-plugin-basic-commands.c:118
-msgid "Save the current file"
-msgstr "Gem den aktuelle fil"
+#: ../src/business/business-gnome/gtkbuilder/dialog-job.glade.h:4
+msgid "The job ID number. If left blank a reasonable number will be chosen for you"
+msgstr "Job-id-nummeret. Hvis tom vil et egnet nummer blive valgt for dig"
-#: ../src/gnome/gnc-plugin-basic-commands.c:122
-msgid "Save _As..."
-msgstr "Ge_m som..."
+#: ../src/business/business-gnome/gtkbuilder/dialog-job.glade.h:5
+msgid "Job Information"
+msgstr "Jobinformation"
-#: ../src/gnome/gnc-plugin-basic-commands.c:123
-msgid "Save this file with a different name"
-msgstr "Gem denne fil med et andet navn"
+#: ../src/business/business-gnome/gtkbuilder/dialog-job.glade.h:7
+msgid "Owner Information"
+msgstr "Ejerinformation"
-#: ../src/gnome/gnc-plugin-basic-commands.c:127
-msgid "Re_vert"
-msgstr "_Forkast"
+#: ../src/business/business-gnome/gtkbuilder/dialog-job.glade.h:8
+msgid "Job Active"
+msgstr ""
-#: ../src/gnome/gnc-plugin-basic-commands.c:128
-msgid "Reload the current database, reverting all unsaved changes"
-msgstr "Genindlæs nuværende database, forkast alle ugemte ændringer"
+#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:1
+#: ../src/gnome-search/dialog-search.c:1079
+msgid "New Order"
+msgstr "Ny ordre"
-#: ../src/gnome/gnc-plugin-basic-commands.c:133
-msgid "Export _Accounts"
-msgstr "Eksporter _konti"
+#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:4
+msgid "The order ID number. If left blank a reasonable number will be chosen for you"
+msgstr "Ordrens id-nummer. Hvis tom vil et egnet nummer blive valgt for dig"
-#: ../src/gnome/gnc-plugin-basic-commands.c:134
-msgid "Export the account hierarchy to a new GnuCash datafile"
-msgstr "Eksporter kontohierarkiet til en ny GnuCash-datafil"
+#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:5
+msgid "Order Information"
+msgstr "Ordreinformation"
-# eller find
-#: ../src/gnome/gnc-plugin-basic-commands.c:141
-#: ../src/gnome/gnc-plugin-page-register2.c:246
-#: ../src/gnome/gnc-plugin-page-register.c:251
-msgid "_Find..."
-msgstr "_Søg ..."
+#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:7
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2847
+#: ../src/report/business-reports/customer-summary.scm:68
+#: ../src/report/business-reports/fancy-invoice.scm:935
+#: ../src/report/business-reports/invoice.scm:752
+#: ../src/report/business-reports/job-report.scm:45
+#: ../src/report/business-reports/owner-report.scm:52
+msgid "Reference"
+msgstr "Reference"
-#: ../src/gnome/gnc-plugin-basic-commands.c:142
-#: ../src/gnome/gnc-plugin-page-register2.c:247
-#: ../src/gnome/gnc-plugin-page-register.c:252
-msgid "Find transactions with a search"
-msgstr "Find transaktioner med en søgning"
+#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:10
+msgid "Order Entry"
+msgstr "Ordrepost"
-# nu er det ikke moms her vel? Den næste er indkomstskat, så er nok skat
-#: ../src/gnome/gnc-plugin-basic-commands.c:147
-msgid "Ta_x Report Options"
-msgstr "Rapportindstillinger for _skat"
+#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:11
+msgid "Invoices"
+msgstr "Fakturaer"
-#. Translators: currently implemented are *
-#. * US: income tax and *
-#. * DE: VAT *
-#. * So adjust this string
-#: ../src/gnome/gnc-plugin-basic-commands.c:152
-msgid "Setup relevant accounts for tax reports, e.g. US income tax"
-msgstr "Opsæt relevante konti for skatterapporter, f.eks. amerikansk indkomstskat"
+#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:12
+msgid "Close Order"
+msgstr "Luk ordre"
-#. Actions menu
-#: ../src/gnome/gnc-plugin-basic-commands.c:158
-msgid "_Scheduled Transactions"
-msgstr "_Planlagte transaktioner"
+#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:15
+msgid "Order Entries"
+msgstr "Ordreposter"
-#: ../src/gnome/gnc-plugin-basic-commands.c:160
-msgid "_Scheduled Transaction Editor"
-msgstr "_Planlagt transaktionsredigeringsprogram"
+#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:2
+msgid "The company associated with this payment."
+msgstr "Firmaet forbundet med denne betaling."
-#: ../src/gnome/gnc-plugin-basic-commands.c:161
-msgid "The list of Scheduled Transactions"
-msgstr "Listen over planlagte transaktioner"
+#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:4
+msgid "Post To"
+msgstr "Bogfør på"
-#: ../src/gnome/gnc-plugin-basic-commands.c:165
-msgid "Since _Last Run..."
-msgstr "Siden _sidste kørsel ..."
+#. Header string
+#. Add the columns
+#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:5
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:61
+#: ../src/gnome/assistant-loan.c:1830 ../src/gnome/dialog-lot-viewer.c:904
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:16
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:17
+#: ../src/gnome/reconcile-view.c:389
+#: ../src/gnome-utils/gnc-tree-view-price.c:437
+#: ../src/import-export/csv-exp/csv-transactions-export.c:417
+#: ../src/import-export/csv-imp/gnc-csv-model.c:45
+#: ../src/import-export/import-main-matcher.c:481
+#: ../src/import-export/import-match-picker.c:344
+#: ../src/import-export/import-match-picker.c:384
+#: ../src/import-export/qif-imp/assistant-qif-import.c:3484
+#: ../src/import-export/qif-imp/assistant-qif-import.c:3521
+#: ../src/register/ledger-core/split-register-model.c:224
+#: ../src/report/business-reports/customer-summary.scm:67
+#: ../src/report/business-reports/easy-invoice.scm:110
+#: ../src/report/business-reports/easy-invoice.scm:249
+#: ../src/report/business-reports/easy-invoice.scm:797
+#: ../src/report/business-reports/fancy-invoice.scm:128
+#: ../src/report/business-reports/fancy-invoice.scm:259
+#: ../src/report/business-reports/invoice.scm:104
+#: ../src/report/business-reports/invoice.scm:244
+#: ../src/report/business-reports/invoice.scm:724
+#: ../src/report/business-reports/job-report.scm:43
+#: ../src/report/business-reports/owner-report.scm:50
+#: ../src/report/business-reports/taxinvoice.eguile.scm:278
+#: ../src/report/standard-reports/account-summary.scm:72
+#: ../src/report/standard-reports/advanced-portfolio.scm:68
+#: ../src/report/standard-reports/category-barchart.scm:593
+#: ../src/report/standard-reports/general-journal.scm:107
+#: ../src/report/standard-reports/general-ledger.scm:75
+#: ../src/report/standard-reports/net-barchart.scm:410
+#: ../src/report/standard-reports/net-linechart.scm:459
+#: ../src/report/standard-reports/portfolio.scm:53
+#: ../src/report/standard-reports/register.scm:121
+#: ../src/report/standard-reports/register.scm:385
+#: ../src/report/standard-reports/register.scm:787
+#: ../src/report/standard-reports/transaction.scm:380
+#: ../src/report/standard-reports/transaction.scm:427
+#: ../src/report/standard-reports/transaction.scm:734
+#: ../src/report/standard-reports/transaction.scm:789
+#: ../src/report/standard-reports/transaction.scm:942
+msgid "Date"
+msgstr "Dato"
-#: ../src/gnome/gnc-plugin-basic-commands.c:166
-msgid "Create Scheduled Transactions since the last time run"
-msgstr "Opret planlagte transaktioner siden den sidste kørsel"
+#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:6
+#: ../src/gnome/dialog-find-transactions2.c:134
+#: ../src/gnome/dialog-find-transactions2.c:169
+#: ../src/gnome/dialog-find-transactions2.c:177
+#: ../src/gnome/dialog-find-transactions.c:133
+#: ../src/gnome/dialog-find-transactions.c:168
+#: ../src/gnome/dialog-find-transactions.c:176
+#: ../src/gnome/gnc-plugin-page-register.c:1838
+#: ../src/gnome-search/dialog-search.c:894
+#: ../src/gnome-search/dialog-search.c:902
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2865
+#: ../src/gnome-utils/gtkbuilder/gnc-date-format.glade.h:6
+#: ../src/import-export/csv-exp/csv-transactions-export.c:418
+#: ../src/report/standard-reports/transaction.scm:821
+msgid "Number"
+msgstr "Nummer"
-#: ../src/gnome/gnc-plugin-basic-commands.c:170
-msgid "_Mortgage & Loan Repayment..."
+#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:10
+msgid "Documents"
+msgstr "Dokumenter"
+
+#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:11
+msgid ""
+"The amount to pay for this invoice.\n"
+"\n"
+"If you have selected an invoice, GnuCash will propose the amount still due for it. You can change this amount to create a partial payment or an over-payment.\n"
+"\n"
+"In case of an over-payment or if no invoice was selected, GnuCash will automatically assign the remaining amount to the first unpaid invoice for this company."
msgstr ""
+"Beløbet der skal betales for denne faktura.\n"
+"\n"
+"Hvis du har valgt en faktura, så vil GnuCash foreslå et beløb som gælder for denne. Du kan ændre dette beløb for at oprette en delvis betaling eller en overbetaling.\n"
+"\n"
+"I tilfældet med en overbetaling eller hvis ingen faktura blev valgt, så vil GnuCash automatisk tildele det resterende beløb til den første ubetalte faktura for dette firma."
-#: ../src/gnome/gnc-plugin-basic-commands.c:171
-msgid "Setup scheduled transactions for repayment of a loan"
-msgstr "Opsæt planlagte transaktioner for tilbagebetaling af et lån"
+#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:16
+msgid "<b>Amount</b>"
+msgstr "<b>Beløb</b>"
-#. src/report/report-system/report.scm
-#: ../src/gnome/gnc-plugin-basic-commands.c:174
-#: ../intl-scm/guile-strings.c:2298
-msgid "B_udget"
-msgstr "B_udget"
+#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:18
+msgid "Refund"
+msgstr "Tilbagebetaling"
-#: ../src/gnome/gnc-plugin-basic-commands.c:177
-msgid "Close _Books"
-msgstr "Luk _bøger"
+#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:20
+#: ../src/gnome/dialog-find-transactions2.c:150
+#: ../src/gnome/dialog-find-transactions.c:149
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2885
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2887
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2896
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2898
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2916
+#: ../src/import-export/csv-exp/csv-transactions-export.c:420
+#: ../src/import-export/import-main-matcher.c:486
+#: ../src/import-export/import-match-picker.c:347
+#: ../src/import-export/import-match-picker.c:387
+#: ../src/register/ledger-core/split-register-model.c:339
+#: ../src/report/standard-reports/general-ledger.scm:79
+#: ../src/report/standard-reports/register.scm:131
+#: ../src/report/standard-reports/register.scm:405
+#: ../src/report/standard-reports/transaction.scm:408
+#: ../src/report/standard-reports/transaction.scm:447
+#: ../src/report/standard-reports/transaction.scm:448
+#: ../src/report/standard-reports/transaction.scm:774
+#: ../src/report/standard-reports/transaction.scm:825
+#: ../src/report/standard-reports/transaction.scm:972
+msgid "Memo"
+msgstr "Note"
-#: ../src/gnome/gnc-plugin-basic-commands.c:178
-msgid "Archive old data using accounting periods"
-msgstr "Arkiver gamle data med brug af bogføringsperioder"
+#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:21
+msgid "Transaction Details"
+msgstr "Transaktionsdetaljer"
-#: ../src/gnome/gnc-plugin-basic-commands.c:186
-msgid "_Price Editor"
-msgstr "_Prisredigering"
+#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:22
+msgid "Transfer Account"
+msgstr "Overførselskonto"
-#: ../src/gnome/gnc-plugin-basic-commands.c:187
-msgid "View and edit the prices for stocks and mutual funds"
-msgstr "Vis og ændr priserne på aktier og investeringsbeviser"
+#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:2
+msgid "Vendor Number: "
+msgstr "Leverandørnummer: "
-#: ../src/gnome/gnc-plugin-basic-commands.c:191
-msgid "_Security Editor"
-msgstr "Redigeringsprogram for _værdipapir"
+#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:5
+msgid "The vendor ID number. If left blank a reasonable number will be chosen for you"
+msgstr "Leverandørens id-nummer. Hvis tom vil et egnet nummer blive valgt for dig"
-#: ../src/gnome/gnc-plugin-basic-commands.c:192
-msgid "View and edit the commodities for stocks and mutual funds"
-msgstr "Vis og ændr varerne for aktier og investeringsbeviser"
+#. FALL THROUGH
+#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:14
+#: ../src/business/business-gnome/search-owner.c:239
+#: ../src/gnome-search/dialog-search.c:1089
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2894
+#: ../src/plugins/customer_import/gtkbuilder/dialog-customer-import-gui.glade.h:5
+#: ../src/register/ledger-core/split-register-model.c:284
+#: ../src/report/business-reports/customer-summary.scm:730
+#: ../src/report/business-reports/job-report.scm:579
+#: ../src/report/business-reports/owner-report.scm:111
+msgid "Vendor"
+msgstr "Leverandør"
-#: ../src/gnome/gnc-plugin-basic-commands.c:196
-msgid "_Loan Repayment Calculator"
-msgstr "_Lommeregner for tilbagebetaling af lån"
+#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:17
+msgid "Tax Included:"
+msgstr "Skat inkluderet:"
-#: ../src/gnome/gnc-plugin-basic-commands.c:197
-msgid "Use the loan/mortgage repayment calculator"
-msgstr "Brug tilbagebetalingslommeregneren for lån/boliggæld"
+#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:18
+msgid "Tax Table:"
+msgstr "Skattetabel:"
-#: ../src/gnome/gnc-plugin-basic-commands.c:201
-msgid "_Close Book"
-msgstr "_Luk bog"
+#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:20
+#: ../src/gnome/window-reconcile2.c:466 ../src/gnome/window-reconcile.c:466
+msgid "Payment Information"
+msgstr "Betalingsinformation"
-#: ../src/gnome/gnc-plugin-basic-commands.c:202
-msgid "Close the Book at the end of the Period"
-msgstr "Luk bogen når perioden slutter"
+#: ../src/business/business-gnome/search-owner.c:163
+msgid "You have not selected an owner"
+msgstr "Du har ikke valgt en ejer"
-#: ../src/gnome/gnc-plugin-basic-commands.c:209
-msgid "_Tips Of The Day"
-msgstr "Dagens _tips"
+#: ../src/business/business-gnome/search-owner.c:258
+#: ../src/gnome-search/search-boolean.c:181
+#: ../src/gnome-search/search-reconciled.c:189
+msgid "is"
+msgstr "er"
-#: ../src/gnome/gnc-plugin-basic-commands.c:210
-msgid "View the Tips of the Day"
-msgstr "Vis dagens Tip"
+#: ../src/business/business-gnome/search-owner.c:259
+#: ../src/gnome-search/search-boolean.c:182
+#: ../src/gnome-search/search-reconciled.c:190
+msgid "is not"
+msgstr "er ikke"
-#: ../src/gnome/gnc-plugin-basic-commands.c:546
-msgid "There are no Scheduled Transactions to be entered at this time."
-msgstr ""
+#: ../src/business/business-ledger/gncEntryLedger.c:85
+#: ../src/gnome-utils/dialog-transfer.c:1418
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1959
+#: ../src/register/ledger-core/split-register.c:1829
+#, c-format
+msgid "The account %s does not allow transactions."
+msgstr "Kontoen %s tillader ikke transaktioner."
-#. Translators: %d is the number of transactions. This is a
-#. ngettext(3) message.
-#: ../src/gnome/gnc-plugin-basic-commands.c:577
+#: ../src/business/business-ledger/gncEntryLedger.c:86
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1960
+#: ../src/register/ledger-core/split-register.c:1830
#, c-format
-msgid "There are no Scheduled Transactions to be entered at this time. (%d transaction automatically created)"
-msgid_plural "There are no Scheduled Transactions to be entered at this time. (%d transactions automatically created)"
-msgstr[0] "Der er ingen Planlagte transaktioner til indtastning på nuværende tidspunkt. (%d transaktion blev automatisk oprettet)"
-msgstr[1] "Der er ingen Planlagte transaktioner til indtastning på nuværende tidspunkt. (%d transaktioner blev automatisk oprettet)"
+msgid "The account %s does not exist. Would you like to create it?"
+msgstr "Kontoen %s findes ikke. Vil du oprette den?"
-#: ../src/gnome/gnc-plugin-budget.c:59
-msgid "New Budget"
-msgstr "Nyt budget"
+#. XXX: change this based on the ledger type
+#: ../src/business/business-ledger/gncEntryLedger.c:245
+msgid "Hours"
+msgstr "Timer"
-#: ../src/gnome/gnc-plugin-budget.c:60
-msgid "Create a new Budget"
-msgstr "Opret et nyt budget"
+#: ../src/business/business-ledger/gncEntryLedger.c:246
+msgid "Project"
+msgstr "Projekt"
-#: ../src/gnome/gnc-plugin-budget.c:65
-msgid "Open Budget"
-msgstr "Ã
bn budget"
+#: ../src/business/business-ledger/gncEntryLedger.c:247
+msgid "Material"
+msgstr "Materiale"
-#: ../src/gnome/gnc-plugin-budget.c:66
-msgid "Open an existing Budget"
-msgstr "Ã
bn et eksisterende budget"
+#: ../src/business/business-ledger/gncEntryLedger.c:902
+#: ../src/business/business-ledger/gncEntryLedgerControl.c:870
+msgid "Save the current entry?"
+msgstr "Gem den aktuelle post?"
-#: ../src/gnome/gnc-plugin-budget.c:71
-msgid "Copy Budget"
-msgstr "Kopier budget"
+#: ../src/business/business-ledger/gncEntryLedger.c:904
+msgid "The current transaction has been changed. Would you like to record the changes before duplicating this entry, or cancel the duplication?"
+msgstr "Den aktuelle transaktion er blevet ændret. Vil du gemme ændringerne før kopiering af denne post, eller afbryde kopieringen?"
-#: ../src/gnome/gnc-plugin-budget.c:72
-msgid "Copy an existing Budget"
-msgstr "Kopier et eksisterende budget"
+#: ../src/business/business-ledger/gncEntryLedger.c:919
+#: ../src/business/business-ledger/gncEntryLedgerControl.c:892
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:149
+#: ../src/register/ledger-core/split-register.c:466
+msgid "_Record"
+msgstr "_Gem"
-#: ../src/gnome/gnc-plugin-budget.c:287
-msgid "Select a Budget"
-msgstr "Vælg et budget"
+#: ../src/business/business-ledger/gncEntryLedgerControl.c:159
+msgid "Invalid Entry: You need to supply an account in the right currency for this position."
+msgstr "Ugyldig post: Du skal angive en konto i den korrekte valuta for denne placering."
+
+#: ../src/business/business-ledger/gncEntryLedgerControl.c:186
+msgid "This account should usually be of type income."
+msgstr "Denne konto skal normalt være af typen indtægt."
+
+#: ../src/business/business-ledger/gncEntryLedgerControl.c:194
+msgid "This account should usually be of type expense or asset."
+msgstr "Denne konto skal normalt være af typen udgift eller aktiv."
+
+#: ../src/business/business-ledger/gncEntryLedgerControl.c:755
+#, c-format
+msgid "The tax table %s does not exist. Would you like to create it?"
+msgstr "Skattetabellen %s findes ikke. Vil du oprette den?"
+
+#: ../src/business/business-ledger/gncEntryLedgerControl.c:872
+msgid "The current entry has been changed. However, this entry is part of an existing order. Would you like to record the change and effectively change your order?"
+msgstr "Den aktuelle post er blevet ændret. Denne post er dog del af en eksisterende ordre. Vil du gemme ændringen og reelt ændre din ordre?"
+
+#: ../src/business/business-ledger/gncEntryLedgerControl.c:890
+msgid "_Don't Record"
+msgstr "_Gem ikke"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:166
-msgid "Create a new Account"
-msgstr "Opret en ny konto"
+#: ../src/business/business-ledger/gncEntryLedgerControl.c:977
+msgid "The current entry has been changed. Would you like to save it?"
+msgstr "Den aktuelle transaktion er blevet ændret. Vil du gemme den?"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:170
-msgid "New Account _Hierarchy..."
-msgstr "Nyt konto_hierarki..."
+#: ../src/business/business-ledger/gncEntryLedgerLayout.c:76
+msgid "sample:X"
+msgstr "sample:X"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:171
-msgid "Extend the current book by merging with new account type categories"
-msgstr "Udvid den nuværende bog ved at sammenføje nye kontotypekategorier"
+#: ../src/business/business-ledger/gncEntryLedgerLayout.c:80
+#: ../src/register/ledger-core/split-register-layout.c:618
+#: ../src/register/ledger-core/split-register-layout.c:626
+msgid "sample:12/12/2000"
+msgstr "sample:12/12/2000"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:176
-#: ../src/gnome/gnc-plugin-page-account-tree.c:187
-#: ../src/gnome/gnc-plugin-page-account-tree.c:280
-#: ../src/gnome/gnc-plugin-page-budget.c:126
-msgid "Open _Account"
-msgstr "_Ã
bn konto"
+#: ../src/business/business-ledger/gncEntryLedgerLayout.c:85
+msgid "sample:Description of an Entry"
+msgstr "sample:Beskrivelse af en post"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:177
-#: ../src/gnome/gnc-plugin-page-account-tree.c:188
-#: ../src/gnome/gnc-plugin-page-account-tree.c:281
-#: ../src/gnome/gnc-plugin-page-budget.c:127
-msgid "Open the selected account"
-msgstr "Ã
bn den valgte konto"
+#: ../src/business/business-ledger/gncEntryLedgerLayout.c:89
+msgid "sample:Action"
+msgstr "sample:Handling"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:181
-#, fuzzy
-msgid "Open _Old Style Register Account"
-msgstr "Ã
bn den valgte konto"
+#: ../src/business/business-ledger/gncEntryLedgerLayout.c:93
+#: ../src/business/business-ledger/gncEntryLedgerLayout.c:101
+msgid "sample:9,999.00"
+msgstr "sample:9.999,00"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:182
-#, fuzzy
-msgid "Open the old style register selected account"
-msgstr "Ã
bn den valgte konto"
+#: ../src/business/business-ledger/gncEntryLedgerLayout.c:97
+#: ../src/business/business-ledger/gncEntryLedgerLayout.c:137
+msgid "sample:999,999.00"
+msgstr "sample:999.999,00"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:195
-#: ../src/gnome/gnc-plugin-page-account-tree.c:206
-#: ../src/gnome/gnc-plugin-page-account-tree.c:285
-msgid "Open _SubAccounts"
-msgstr "Ã
bn _underkonti"
+#: ../src/business/business-ledger/gncEntryLedgerLayout.c:106
+msgid "sample(DT):+%"
+msgstr "sample:(DT):+%"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:196
-#: ../src/gnome/gnc-plugin-page-account-tree.c:207
-#: ../src/gnome/gnc-plugin-page-account-tree.c:286
-#: ../src/gnome/gnc-plugin-page-budget.c:133
-msgid "Open the selected account and all its subaccounts"
-msgstr "Ã
bn den valgte konto og alle dens underkonti"
+#: ../src/business/business-ledger/gncEntryLedgerLayout.c:111
+msgid "sample(DH):+%"
+msgstr "sample(DH):+%"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:200
-msgid "Open Old St_yle Subaccounts"
-msgstr "Ã
bn underkonti i gammel _stil"
+#: ../src/business/business-ledger/gncEntryLedgerLayout.c:116
+#: ../src/business/business-ledger/gncEntryLedgerLayout.c:121
+#: ../src/register/ledger-core/split-register-layout.c:695
+#: ../src/register/ledger-core/split-register-layout.c:703
+msgid "sample:Expenses:Automobile:Gasoline"
+msgstr "sample:Udgifter:Bil:Benzin"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:201
-#, fuzzy
-msgid "Open the old style register selected account and all its subaccounts"
-msgstr "Ã
bn den valgte konto og alle dens underkonti"
+#: ../src/business/business-ledger/gncEntryLedgerLayout.c:125
+msgid "sample:T?"
+msgstr "sample:T?"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:214
-#: ../src/gnome/gnc-plugin-page-register2.c:241
-#: ../src/gnome/gnc-plugin-page-register.c:246
-msgid "Edit _Account"
-msgstr "Rediger _konto"
+#: ../src/business/business-ledger/gncEntryLedgerLayout.c:129
+msgid "sample:TI"
+msgstr "sample:TI"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:215
-#: ../src/gnome/gnc-plugin-page-register2.c:242
-#: ../src/gnome/gnc-plugin-page-register.c:247
-msgid "Edit the selected account"
-msgstr "Redigér den valgte konto"
+#: ../src/business/business-ledger/gncEntryLedgerLayout.c:133
+msgid "sample:Tax Table 1"
+msgstr "sample:Skattetabel 1"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:219
-msgid "_Delete Account..."
-msgstr "_Slet konto ..."
+#: ../src/business/business-ledger/gncEntryLedgerLayout.c:141
+msgid "sample:999.00"
+msgstr "sample:999,00"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:220
-msgid "Delete selected account"
-msgstr "Slet den valgte konto"
+#: ../src/business/business-ledger/gncEntryLedgerLayout.c:145
+msgid "sample:BI"
+msgstr "sample:BI"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:224
-msgid "_Renumber Subaccounts..."
-msgstr "_Giv nye numre til underkonti ..."
+#: ../src/business/business-ledger/gncEntryLedgerLayout.c:149
+msgid "sample:Payment"
+msgstr "sample:Betaling"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:225
-msgid "Renumber the children of the selected account"
-msgstr "Giv underkontiene for den valgte konto nye numre"
+#: ../src/business/business-ledger/gncEntryLedgerLoad.c:55
+msgid "$"
+msgstr "$"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:237
-#: ../src/gnome/gnc-plugin-page-register2.c:336
-#: ../src/gnome/gnc-plugin-page-register.c:345
-msgid "_Reconcile..."
-msgstr "_Afstem..."
+#. oli-custom - make a string instead of a table
+#: ../src/business/business-ledger/gncEntryLedgerLoad.c:57
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:13
+#: ../src/report/business-reports/easy-invoice.scm:151
+#: ../src/report/business-reports/fancy-invoice.scm:163
+#: ../src/report/business-reports/invoice.scm:146
+#, no-c-format
+msgid "%"
+msgstr "%"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:238
-#: ../src/gnome/gnc-plugin-page-register2.c:337
-#: ../src/gnome/gnc-plugin-page-register.c:346
-msgid "Reconcile the selected account"
-msgstr "Afstem den valgte konto"
+#: ../src/business/business-ledger/gncEntryLedgerLoad.c:69
+msgid "<"
+msgstr "<"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:242
-#: ../src/gnome/gnc-plugin-page-register2.c:341
-#: ../src/gnome/gnc-plugin-page-register.c:350
-msgid "_Auto-clear..."
-msgstr "_Autoryd ..."
+#: ../src/business/business-ledger/gncEntryLedgerLoad.c:71
+msgid "="
+msgstr "="
-#: ../src/gnome/gnc-plugin-page-account-tree.c:243
-msgid "Automatically clear individual transactions, given a cleared amount"
-msgstr ""
+#: ../src/business/business-ledger/gncEntryLedgerLoad.c:73
+msgid ">"
+msgstr ">"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:247
-#: ../src/gnome/gnc-plugin-page-register2.c:331
-#: ../src/gnome/gnc-plugin-page-register.c:340
-#: ../src/gnome-utils/gnc-icons.c:23
-#: ../src/gnome/window-reconcile2.c:2184
-#: ../src/gnome/window-reconcile.c:2184
-msgid "_Transfer..."
-msgstr "_Overfør..."
+#: ../src/business/business-ledger/gncEntryLedgerLoad.c:132
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:530
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:1128
+#: ../src/engine/Account.c:3942
+#: ../src/report/report-system/report-utilities.scm:110
+msgid "Cash"
+msgstr "Kontant"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:248
-#: ../src/gnome/gnc-plugin-page-register2.c:332
-#: ../src/gnome/gnc-plugin-page-register.c:341
-#: ../src/gnome/window-reconcile2.c:2185
-#: ../src/gnome/window-reconcile.c:2185
-msgid "Transfer funds from one account to another"
-msgstr "Overfør beløb fra en konto til en anden"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:46
+msgid "Income Account"
+msgstr "Indtægtskonto"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:252
-#: ../src/gnome/gnc-plugin-page-register2.c:346
-#: ../src/gnome/gnc-plugin-page-register.c:355
-msgid "Stoc_k Split..."
-msgstr "Ak_tieopsplitning..."
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:51
+msgid "Expense Account"
+msgstr "Udgiftskonto"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:253
-#: ../src/gnome/gnc-plugin-page-register2.c:347
-#: ../src/gnome/gnc-plugin-page-register.c:356
-msgid "Record a stock split or a stock merger"
-msgstr "Registrér en aktieopsplitning eller -sammenlægning"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:56
+#: ../src/gnome/dialog-find-transactions2.c:130
+#: ../src/gnome/dialog-find-transactions2.c:167
+#: ../src/gnome/dialog-find-transactions2.c:175
+#: ../src/gnome/dialog-find-transactions.c:129
+#: ../src/gnome/dialog-find-transactions.c:166
+#: ../src/gnome/dialog-find-transactions.c:174
+#: ../src/gnome/gnc-plugin-page-register.c:1839
+#: ../src/gnome-search/dialog-search.c:892
+#: ../src/gnome-search/dialog-search.c:900
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2849
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2851
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2869
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2871
+#: ../src/import-export/csv-exp/csv-transactions-export.c:422
+#: ../src/register/ledger-core/split-register-model.c:318
+#: ../src/report/business-reports/fancy-invoice.scm:269
+#: ../src/report/business-reports/invoice.scm:254
+msgid "Action"
+msgstr "Handling"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:257
-#: ../src/gnome/gnc-plugin-page-register2.c:351
-#: ../src/gnome/gnc-plugin-page-register.c:360
-msgid "View _Lots..."
-msgstr "Vis _afkast ..."
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:71
+#: ../src/report/business-reports/easy-invoice.scm:120
+#: ../src/report/business-reports/easy-invoice.scm:274
+#: ../src/report/business-reports/fancy-invoice.scm:138
+#: ../src/report/business-reports/fancy-invoice.scm:284
+#: ../src/report/business-reports/invoice.scm:114
+#: ../src/report/business-reports/invoice.scm:269
+msgid "Discount"
+msgstr "Rabat"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:258
-#: ../src/gnome/gnc-plugin-page-register2.c:352
-#: ../src/gnome/gnc-plugin-page-register.c:361
-msgid "Bring up the lot viewer/editor window"
-msgstr "Vis fremviseren/redigeringsvinduet for afkast"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:76
+msgid "Discount Type"
+msgstr "Rabattype"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:262
-msgid "Check & Repair A_ccount"
-msgstr "Kontroller og reparer _konto"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:81
+msgid "Discount How"
+msgstr "Hvordan rabat"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:263
-#: ../src/gnome/window-reconcile2.c:2190
-#: ../src/gnome/window-reconcile.c:2190
-msgid "Check for and repair unbalanced transactions and orphan splits in this account"
-msgstr "Kontroller og reparer ubalancerede transaktioner og opdelinger uden ejer i denne konto"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:86
+#: ../src/report/business-reports/easy-invoice.scm:118
+#: ../src/report/business-reports/fancy-invoice.scm:136
+#: ../src/report/business-reports/invoice.scm:112
+#: ../src/report/business-reports/taxinvoice.scm:125
+#: ../src/report/business-reports/taxinvoice.scm:209
+msgid "Unit Price"
+msgstr "Enhedspris"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:267
-msgid "Check & Repair Su_baccounts"
-msgstr "Kontroller og reparer _underkonti"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:91
+#: ../src/report/business-reports/easy-invoice.scm:116
+#: ../src/report/business-reports/easy-invoice.scm:264
+#: ../src/report/business-reports/fancy-invoice.scm:134
+#: ../src/report/business-reports/fancy-invoice.scm:274
+#: ../src/report/business-reports/invoice.scm:110
+#: ../src/report/business-reports/invoice.scm:259
+msgid "Quantity"
+msgstr "Antal"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:268
-msgid "Check for and repair unbalanced transactions and orphan splits in this account and its subaccounts"
-msgstr "Kontroller og reparer ubalancerede transaktioner og opdelinger uden ejer i denne konto og dens underkonti"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:96
+msgid "Tax Table"
+msgstr "Skattetabel"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:273
-msgid "Check & Repair A_ll"
-msgstr "Kontroller og reparr _alt"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:101
+msgid "Taxable?"
+msgstr "Beskattes?"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:274
-msgid "Check for and repair unbalanced transactions and orphan splits in all accounts"
-msgstr "Kontroller og reparer ubalancerede transaktioner og opdelinger uden ejer i alle konti"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:106
+msgid "Tax Included?"
+msgstr "Skat inkluderet?"
-#. Extensions Menu
-#: ../src/gnome/gnc-plugin-page-account-tree.c:278
-#: ../src/gnome/gnc-plugin-register2.c:64
-msgid "_Register2"
-msgstr "_Kassekladde2"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:111
+msgid "Invoiced?"
+msgstr "Faktureret?"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:341
-msgid "Open2"
-msgstr "Ã
bn2"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:116
+#: ../src/report/business-reports/easy-invoice.scm:319
+#: ../src/report/report-system/options-utilities.scm:266
+msgid "Subtotal"
+msgstr "Delsum"
-#.
-#. * Various option sections and options within those sections
-#. * The untranslated string is used for the key in the KVP
-#. * The translated string appears as the tab name and as the
-#. * text associated with the option selector on the tab
-#.
-#. src/report/report-system/report.scm
-#. src/report/standard-reports/account-piecharts.scm
-#. src/report/standard-reports/account-summary.scm
-#. src/report/standard-reports/advanced-portfolio.scm
-#. src/report/standard-reports/average-balance.scm
-#. src/report/standard-reports/balance-sheet.scm
-#. src/report/standard-reports/budget-balance-sheet.scm
-#. src/report/standard-reports/budget-barchart.scm
-#. src/report/standard-reports/budget-income-statement.scm
-#. src/report/standard-reports/category-barchart.scm
-#. src/report/standard-reports/daily-reports.scm
-#. src/report/standard-reports/equity-statement.scm
-#. src/report/standard-reports/income-statement.scm
-#. src/report/standard-reports/net-barchart.scm
-#. src/report/standard-reports/net-linechart.scm
-#. src/report/standard-reports/portfolio.scm
-#. src/report/standard-reports/sx-summary.scm
-#. src/report/standard-reports/transaction.scm
-#. src/report/standard-reports/trial-balance.scm
-#: ../src/gnome/gnc-plugin-page-account-tree.c:436
-#: ../src/gnome/gnc-plugin-page-account-tree.c:442
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2929
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2931
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2933
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2935
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2946
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2950
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:43
-#: ../src/libqof/qof/qofbookslots.h:65
-#: ../intl-scm/guile-strings.c:2308
-#: ../intl-scm/guile-strings.c:2406
-#: ../intl-scm/guile-strings.c:2480
-#: ../intl-scm/guile-strings.c:2646
-#: ../intl-scm/guile-strings.c:2714
-#: ../intl-scm/guile-strings.c:2762
-#: ../intl-scm/guile-strings.c:2790
-#: ../intl-scm/guile-strings.c:2904
-#: ../intl-scm/guile-strings.c:3028
-#: ../intl-scm/guile-strings.c:3094
-#: ../intl-scm/guile-strings.c:3332
-#: ../intl-scm/guile-strings.c:3420
-#: ../intl-scm/guile-strings.c:3476
-#: ../intl-scm/guile-strings.c:3648
-#: ../intl-scm/guile-strings.c:3780
-#: ../intl-scm/guile-strings.c:3862
-#: ../intl-scm/guile-strings.c:3956
-#: ../intl-scm/guile-strings.c:4232
-#: ../intl-scm/guile-strings.c:4494
-#: ../intl-scm/guile-strings.c:4854
-msgid "Accounts"
-msgstr "Konti"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:121
+#: ../src/report/business-reports/easy-invoice.scm:478
+#: ../src/report/business-reports/fancy-invoice.scm:517
+#: ../src/report/business-reports/invoice.scm:454 ../src/tax/us/de_DE.scm:36
+msgid "Tax"
+msgstr "Skat"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:1200
-#, c-format
-msgid "Deleting account %s"
-msgstr "Sletter konto %s"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:126
+msgid "Billable?"
+msgstr "Kan faktureres?"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:1324
-#, c-format
-msgid "The account %s will be deleted."
-msgstr "Kontoen %s vil blive slettet."
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:548
+msgid "Enter the income/expense account for the Entry, or choose one from the list"
+msgstr "Angiv indtægts-/udgiftskonton for posten, eller vælg en fra listen"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:1337
-#, c-format
-msgid "All transactions in this account will be moved to the account %s."
-msgstr "Alle transaktioner på denne konto vil blive flyttet til kontoen %s."
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:561
+msgid "Enter the type of Entry"
+msgstr "Angiv posttypen"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:1343
-msgid "All transactions in this account will be deleted."
-msgstr "Alle transaktioner på denne konto vil blive slettet."
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:585
+#: ../src/gnome-utils/gnc-tree-util-split-reg.c:460
+#: ../src/register/ledger-core/split-register-model.c:889
+msgid "%A %d %B %Y"
+msgstr ""
-#: ../src/gnome/gnc-plugin-page-account-tree.c:1352
-#, c-format
-msgid "All of its sub-accounts will be moved to the account %s."
-msgstr "Alle dens underkonti vil blive flyttet til kontoen %s."
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:597
+msgid "Enter the Entry Description"
+msgstr "Angiv postbeskrivelsen"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:1358
-msgid "All of its subaccounts will be deleted."
-msgstr "Alle dens underkonti vil blive slettet."
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:613
+msgid "Enter the Discount Amount"
+msgstr "Angiv rabatbeløbet"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:1363
-#, c-format
-msgid "All sub-account transactions will be moved to the account %s."
-msgstr "Alle underkontotransaktioner vil blive flyttet til kontoen %s."
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:616
+msgid "Enter the Discount Percent"
+msgstr "Angiv rabatprocenten"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:1369
-msgid "All sub-account transactions will be deleted."
-msgstr "Alle underkontotransaktioner vil blive slettet."
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:619
+msgid "Enter the Discount ... unknown type"
+msgstr "Angiv rabatten ... ukendt type"
-#: ../src/gnome/gnc-plugin-page-account-tree.c:1374
-msgid "Are you sure you want to do this?"
-msgstr "Er du sikker på, du ønsker dette?"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:637
+msgid "Discount Type: Monetary Value"
+msgstr "Rabattype: Fast værdi"
-#: ../src/gnome/gnc-plugin-page-budget.c:132
-msgid "Open _Subaccounts"
-msgstr "Ã
bn _underkonti"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:640
+msgid "Discount Type: Percent"
+msgstr "Rabattype: Procent"
-#: ../src/gnome/gnc-plugin-page-budget.c:139
-msgid "_Delete Budget"
-msgstr "_Slet budget"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:643
+msgid "Select the Discount Type"
+msgstr "Vælg rabattypen"
-#: ../src/gnome/gnc-plugin-page-budget.c:140
-msgid "Delete this budget"
-msgstr "Slet dette budget"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:660
+msgid "Tax computed after discount is applied"
+msgstr "Skat beregnet efter fratrækning af rabat"
-#: ../src/gnome/gnc-plugin-page-budget.c:144
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:11
-msgid "Budget Options"
-msgstr "Budgetindstillinger"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:663
+msgid "Discount and tax both applied on pretax value"
+msgstr "Rabat og skat er begge angivet på førskatværdi"
-#: ../src/gnome/gnc-plugin-page-budget.c:145
-msgid "Edit this budget's options"
-msgstr "Rediger dette budgets indstillinger"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:666
+msgid "Discount computed after tax is applied"
+msgstr "Rabat beregnet efter fratrækning af skat"
-#: ../src/gnome/gnc-plugin-page-budget.c:149
-msgid "Estimate Budget"
-msgstr "Estimer budget"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:669
+msgid "Select how to compute the Discount and Taxes"
+msgstr "Vælg hvordan rabat og skat skal beregnes"
-#: ../src/gnome/gnc-plugin-page-budget.c:151
-msgid "Estimate a budget value for the selected accounts from past transactions"
-msgstr "Estimer en budgetværdi for de valgte konti ud fra tidligere transaktioner"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:682
+msgid "Enter the unit-Price for this Entry"
+msgstr "Angiv enhedsprisen på denne post"
-#: ../src/gnome/gnc-plugin-page-budget.c:178
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:12
-#: ../src/report/report-gnome/gnc-plugin-page-report.c:1088
-msgid "Options"
-msgstr "Indstillinger"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:694
+msgid "Enter the Quantity of units for this Entry"
+msgstr "Angiv antallet af enheder på denne post"
-#: ../src/gnome/gnc-plugin-page-budget.c:179
-msgid "Estimate"
-msgstr "Estimer"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:706
+msgid "Enter the Tax Table to apply to this entry"
+msgstr "Angiv den skattetabel der skal anvendes på denne post"
-#. src/report/standard-reports/budget-balance-sheet.scm
-#. src/report/standard-reports/budget-barchart.scm
-#. src/report/standard-reports/budget-flow.scm
-#. src/report/standard-reports/budget-income-statement.scm
-#. src/report/standard-reports/budget.scm
-#: ../src/gnome/gnc-plugin-page-budget.c:272
-#: ../src/gnome/gnc-plugin-page-budget.c:314
-#: ../src/gnome/gnc-plugin-page-budget.c:801
-#: ../intl-scm/guile-strings.c:2978
-#: ../intl-scm/guile-strings.c:3030
-#: ../intl-scm/guile-strings.c:3040
-#: ../intl-scm/guile-strings.c:3052
-#: ../intl-scm/guile-strings.c:3078
-#: ../intl-scm/guile-strings.c:3238
-msgid "Budget"
-msgstr "Budget"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:715
+msgid "Is this entry taxable?"
+msgstr "Er denne post skattepligtig?"
-#: ../src/gnome/gnc-plugin-page-budget.c:840
-#, c-format
-msgid "Delete %s?"
-msgstr "Slet %s?"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:724
+msgid "Is the tax already included in the price of this entry?"
+msgstr "Er skatten allerede inkluderet i prisen på denne post?"
-#: ../src/gnome/gnc-plugin-page-budget.c:911
-msgid "You must select at least one account to estimate."
-msgstr "Du skal vælge mindst én konto at estimere."
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:742
+msgid "Is this entry invoiced?"
+msgstr "Er denne post faktureret?"
-#. **********************************************************
-#. Actions
-#. **********************************************************
-#: ../src/gnome/gnc-plugin-page-register2.c:190
-#: ../src/gnome/gnc-plugin-page-register.c:192
-msgid "Cu_t Transaction"
-msgstr "_Klip transaktion"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:748
+msgid "Is this entry credited?"
+msgstr "Er denne post krediteret?"
-#: ../src/gnome/gnc-plugin-page-register2.c:191
-#: ../src/gnome/gnc-plugin-page-register.c:193
-msgid "_Copy Transaction"
-msgstr "_Kopier transaktion"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:752
+msgid "Include this entry on this invoice?"
+msgstr "Inkluder denne post på denne faktura?"
-#: ../src/gnome/gnc-plugin-page-register2.c:192
-#: ../src/gnome/gnc-plugin-page-register.c:194
-msgid "_Paste Transaction"
-msgstr "_Indsæt transaktion"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:756
+msgid "Include this entry on this credit note?"
+msgstr "Inkluder denne post på denne kreditnota?"
-#: ../src/gnome/gnc-plugin-page-register2.c:193
-#: ../src/gnome/gnc-plugin-page-register.c:195
-msgid "Dup_licate Transaction"
-msgstr "_Dupliker transaktion"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:759
+msgid "Unknown EntryLedger Type"
+msgstr "Ukendt EntryLedger-type"
-#: ../src/gnome/gnc-plugin-page-register2.c:194
-#: ../src/gnome/gnc-plugin-page-register.c:196
-#: ../src/gnome/gnc-split-reg.c:1337
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1065
-msgid "_Delete Transaction"
-msgstr "_Slet transaktion"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:772
+msgid "The subtotal value of this entry "
+msgstr "Denne posts undersumsværdi"
-#: ../src/gnome/gnc-plugin-page-register2.c:195
-#: ../src/gnome/gnc-plugin-page-register.c:200
-msgid "Cu_t Split"
-msgstr "_Klip opdeling"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:784
+msgid "The total tax of this entry "
+msgstr "Denne posts samlede skat"
-#: ../src/gnome/gnc-plugin-page-register2.c:196
-#: ../src/gnome/gnc-plugin-page-register.c:201
-msgid "_Copy Split"
-msgstr "_Kopier opdeling"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:793
+msgid "Is this entry billable to a customer or job?"
+msgstr "Kan denne post faktureres til en kunde eller job?"
-#: ../src/gnome/gnc-plugin-page-register2.c:197
-#: ../src/gnome/gnc-plugin-page-register.c:202
-msgid "_Paste Split"
-msgstr "_Indsæt opdeling"
+#: ../src/business/business-ledger/gncEntryLedgerModel.c:802
+msgid "How did you pay for this item?"
+msgstr "Hvordan betalte du for denne enhed?"
-#: ../src/gnome/gnc-plugin-page-register2.c:198
-#: ../src/gnome/gnc-plugin-page-register.c:203
-msgid "Dup_licate Split"
-msgstr "_Dupliker opdeling"
+#: ../src/core-utils/gnc-features.c:116
+msgid "This Dataset contains features not supported by this version of GnuCash. You must use a newer version of GnuCash in order to support the following features:"
+msgstr "Dette datasæt indeholder funktioner som ikke er understøttet af denne version af GnuCash. Du er nødt til at bruge en nyere version af GnuCash for at understøtte de følgende funktioner:"
-#: ../src/gnome/gnc-plugin-page-register2.c:199
-#: ../src/gnome/gnc-plugin-page-register.c:204
-#: ../src/gnome/gnc-split-reg.c:1297
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1025
-msgid "_Delete Split"
-msgstr "_Slet opdeling"
+#: ../src/core-utils/gnc-filepath-utils.c:327
+#, c-format
+msgid ""
+"An error occurred while creating the directory:\n"
+" %s\n"
+"Please correct the problem and restart GnuCash.\n"
+"The reported error was '%s' (errno %d).\n"
+msgstr ""
+"En fejl opstod under oprettelse af mappen:\n"
+" %s\n"
+"Ret venligst fejlen og genstart GnuCash.\n"
+"Den rapporterede fejl var '%s' (errno %d).\n"
-#: ../src/gnome/gnc-plugin-page-register2.c:200
-#: ../src/gnome/gnc-plugin-page-register.c:205
-msgid "Cut the selected transaction into clipboard"
-msgstr "Klip den valgte transaktion til udklipsholderen"
+#: ../src/core-utils/gnc-filepath-utils.c:338
+#, c-format
+msgid ""
+"Note: the directory\n"
+" %s\n"
+"doesn't exist. This is however not fatal.\n"
+msgstr ""
-#: ../src/gnome/gnc-plugin-page-register2.c:201
-#: ../src/gnome/gnc-plugin-page-register.c:206
-msgid "Copy the selected transaction into clipboard"
-msgstr "Kopier den valgte transaktion til udklipsholderen"
+#: ../src/core-utils/gnc-filepath-utils.c:349
+#, c-format
+msgid ""
+"The directory\n"
+" %s\n"
+"exists but cannot be accessed. This program \n"
+"must have full access (read/write/execute) to \n"
+"the directory in order to function properly.\n"
+msgstr ""
+"Mappen\n"
+" %s\n"
+"findes men kan ikke tilgås. Dette program \n"
+"skal have fuld adgang (læse/skrive/udføre) til \n"
+"mappen for at kunne fungere korrekt.\n"
-#: ../src/gnome/gnc-plugin-page-register2.c:202
-#: ../src/gnome/gnc-plugin-page-register.c:207
-msgid "Paste the transaction from the clipboard"
-msgstr "Indsæt transaktionen fra udklipsholderen"
+#: ../src/core-utils/gnc-filepath-utils.c:359
+#: ../src/core-utils/gnc-filepath-utils.c:381
+#, c-format
+msgid ""
+"The path\n"
+" %s\n"
+"exists but it is not a directory. Please delete\n"
+"the file and start GnuCash again.\n"
+msgstr ""
+"Stien\n"
+" %s\n"
+"findes men er ikke en mappe. Slet venligst\n"
+"filen og genstart GnuCash.\n"
-#: ../src/gnome/gnc-plugin-page-register2.c:203
-#: ../src/gnome/gnc-plugin-page-register.c:208
-msgid "Make a copy of the current transaction"
-msgstr "Lav en kopi af den nuværende transaktion"
+#: ../src/core-utils/gnc-filepath-utils.c:368
+#, c-format
+msgid ""
+"An unknown error occurred when validating that the\n"
+" %s\n"
+"directory exists and is usable. Please correct the\n"
+"problem and restart GnuCash. The reported error \n"
+"was '%s' (errno %d)."
+msgstr ""
+"Der opstod en ukendt fejl under validering af at mappen\n"
+" %s\n"
+"findes og kan bruges. Ret venligst problemet og\n"
+"genstart GnuCash. Den rapporterede fejl var »%s«\n"
+"(errno %d)."
-#: ../src/gnome/gnc-plugin-page-register2.c:204
-#: ../src/gnome/gnc-plugin-page-register.c:209
-msgid "Delete the current transaction"
-msgstr "Slet den nuværende transaktion"
+#: ../src/core-utils/gnc-filepath-utils.c:393
+#, c-format
+msgid ""
+"The permissions are wrong on the directory\n"
+" %s\n"
+"They must be at least 'rwx' for the user.\n"
+msgstr ""
+"Tilladelserne er ikke korrekte på mappen\n"
+" %s\n"
+"De skal mindst være 'rwx' for brugeren.\n"
-#: ../src/gnome/gnc-plugin-page-register2.c:205
-#: ../src/gnome/gnc-plugin-page-register.c:213
-msgid "Cut the selected split into clipboard"
-msgstr "Klip den valgte opdeling til udklipsholderen"
+#: ../src/engine/Account.c:168
+#, c-format
+msgid ""
+"The separator character \"%s\" is used in one or more account names.\n"
+"\n"
+"This will result in unexpected behaviour. Either change the account names or choose another separator character.\n"
+"\n"
+"Below you will find the list of invalid account names:\n"
+"%s"
+msgstr ""
+"Adskillelsestegnet »%s« bruges i et eller flere kontonavne.\n"
+"\n"
+"Dette vil resultere i uventet opførsel. Enten skal du ændre kontonavnene eller vælge et andet adskillelsestegn.\n"
+"\n"
+"Nedenfor kan du se listen over ugyldige kontonavne:\n"
+"%s"
-#: ../src/gnome/gnc-plugin-page-register2.c:206
-#: ../src/gnome/gnc-plugin-page-register.c:214
-msgid "Copy the selected split into clipboard"
-msgstr "Kopier den valgte opdeling til udklipsholderen"
+#: ../src/engine/Account.c:3941 ../src/import-export/aqb/gnc-ab-utils.c:460
+#: ../src/report/report-system/report-utilities.scm:109
+msgid "Bank"
+msgstr "Bank"
-#: ../src/gnome/gnc-plugin-page-register2.c:207
-#: ../src/gnome/gnc-plugin-page-register.c:215
-msgid "Paste the split from the clipboard"
-msgstr "Indsæt opdelingen fra udklipsholderen"
+#: ../src/engine/Account.c:3943
+msgid "Asset"
+msgstr "Aktiv"
-#: ../src/gnome/gnc-plugin-page-register2.c:208
-#: ../src/gnome/gnc-plugin-page-register.c:216
-msgid "Make a copy of the current split"
-msgstr "Lav en kopi af den nuværende opdeling"
+#: ../src/engine/Account.c:3944
+msgid "Credit Card"
+msgstr "Kreditkort"
-#: ../src/gnome/gnc-plugin-page-register2.c:209
-#: ../src/gnome/gnc-plugin-page-register.c:217
-msgid "Delete the current split"
-msgstr "Slet den nuværende opdeling"
+#: ../src/engine/Account.c:3945
+msgid "Liability"
+msgstr "Passiv"
-#: ../src/gnome/gnc-plugin-page-register2.c:219
-#: ../src/gnome/gnc-plugin-page-register.c:224
-msgid "_Print Checks..."
-msgstr "_Udskriv check ..."
+#: ../src/engine/Account.c:3946
+msgid "Stock"
+msgstr "Aktie"
-#: ../src/gnome/gnc-plugin-page-register2.c:226
-#: ../src/gnome/gnc-plugin-page-register.c:231
-#: ../src/gnome-utils/gnc-main-window.c:305
-#: ../src/report/report-gnome/gnc-plugin-page-report.c:1018
-msgid "Cu_t"
-msgstr "_Klip"
+#: ../src/engine/Account.c:3947
+msgid "Mutual Fund"
+msgstr "Investeringsbevis"
-#: ../src/gnome/gnc-plugin-page-register2.c:227
-#: ../src/gnome/gnc-plugin-page-register.c:232
-#: ../src/gnome-utils/gnc-main-window.c:306
-#: ../src/report/report-gnome/gnc-plugin-page-report.c:1019
-msgid "Cut the current selection and copy it to clipboard"
-msgstr "Klip den nuværende markering og kopier den til udklipsholderen"
+#: ../src/engine/Account.c:3948 ../src/gnome-utils/dialog-commodity.c:818
+#: ../src/gnome-utils/gnc-tree-view-owner.c:414
+#: ../src/gnome-utils/gnc-tree-view-price.c:431
+msgid "Currency"
+msgstr "Valuta"
-#: ../src/gnome/gnc-plugin-page-register2.c:231
-#: ../src/gnome/gnc-plugin-page-register.c:236
-#: ../src/gnome-utils/gnc-main-window.c:310
-#: ../src/report/report-gnome/gnc-plugin-page-report.c:1023
-msgid "_Copy"
-msgstr "_Kopier"
+#: ../src/engine/Account.c:3952
+#, fuzzy
+msgid "A/Receivable"
+msgstr "Modtag"
-#: ../src/gnome/gnc-plugin-page-register2.c:232
-#: ../src/gnome/gnc-plugin-page-register.c:237
-#: ../src/gnome-utils/gnc-main-window.c:311
-#: ../src/report/report-gnome/gnc-plugin-page-report.c:1024
-msgid "Copy the current selection to clipboard"
-msgstr "Kopier den nuværende markering til udklipsholderen"
+#: ../src/engine/Account.c:3953
+msgid "A/Payable"
+msgstr "A/Kreditor"
-#: ../src/gnome/gnc-plugin-page-register2.c:237
-#: ../src/gnome/gnc-plugin-page-register.c:242
-#: ../src/gnome-utils/gnc-main-window.c:316
-#: ../src/report/report-gnome/gnc-plugin-page-report.c:1029
-msgid "Paste the clipboard content at the cursor position"
-msgstr "Indsæt indholdet fra udklipsholderen ved markørens position"
+#: ../src/engine/Account.c:3954
+msgid "Root"
+msgstr "Rod"
-#: ../src/gnome/gnc-plugin-page-register2.c:279
-msgid "Remo_ve All Splits"
-msgstr "_Fjern alle opdelinger"
+#: ../src/engine/Account.c:3955 ../src/engine/Scrub.c:401
+#: ../src/engine/Scrub.c:466
+#: ../src/report/standard-reports/income-statement.scm:621
+msgid "Trading"
+msgstr "Handel"
-#: ../src/gnome/gnc-plugin-page-register2.c:280
-#: ../src/gnome/gnc-plugin-page-register.c:285
-msgid "Remove all splits in the current transaction"
-msgstr "Fjern alle opdelinger i den nuværende transaktion"
+#: ../src/engine/cap-gains.c:236
+msgid "Orphaned Gains"
+msgstr "Forældreløse gevinster"
-#: ../src/gnome/gnc-plugin-page-register2.c:284
-#: ../src/gnome/gnc-plugin-page-register.c:289
-msgid "_Enter Transaction"
-msgstr "_Indtast transaktion"
+#: ../src/engine/cap-gains.c:250 ../src/engine/cap-gains.c:960
+#: ../src/engine/cap-gains.c:965 ../src/engine/cap-gains.c:966
+msgid "Realized Gain/Loss"
+msgstr "Realiseret overskud/tab"
-#: ../src/gnome/gnc-plugin-page-register2.c:285
-#: ../src/gnome/gnc-plugin-page-register.c:290
-msgid "Record the current transaction"
-msgstr "Optag den aktuelle transaktion"
+#: ../src/engine/cap-gains.c:252
+msgid "Realized Gains or Losses from Commodity or Trading Accounts that haven't been recorded elsewhere."
+msgstr "Realiserede gevinster eller tab fra vare- eller handelskonti, som ikke er blevet registreret et andet sted"
-#: ../src/gnome/gnc-plugin-page-register2.c:289
-#: ../src/gnome/gnc-plugin-page-register.c:294
-msgid "Ca_ncel Transaction"
-msgstr "_Afbryd transaktion"
+#: ../src/engine/gnc-budget.c:93 ../src/gnome/gnc-plugin-page-budget.c:838
+msgid "Unnamed Budget"
+msgstr "Unavngivet budget"
-#: ../src/gnome/gnc-plugin-page-register2.c:290
-#: ../src/gnome/gnc-plugin-page-register.c:295
-msgid "Cancel the current transaction"
-msgstr "Afbryd den nuværende transaktion"
+#. Set memo.
+#: ../src/engine/gncInvoice.c:1569
+msgid "Extra to Charge Card"
+msgstr "Ekstra på kreditkortet"
-#: ../src/gnome/gnc-plugin-page-register2.c:294
-#: ../src/gnome/gnc-plugin-page-register.c:299
-msgid "_Void Transaction"
-msgstr "Gør transaktionen _ugyldig"
+#: ../src/engine/gncInvoice.c:1609
+msgid "Generated from an invoice. Try unposting the invoice."
+msgstr "Oprettet fra en faktura. Prøv at åbne denne faktura."
-#: ../src/gnome/gnc-plugin-page-register2.c:298
-#: ../src/gnome/gnc-plugin-page-register.c:303
-msgid "_Unvoid Transaction"
-msgstr "Gør transaktionen _gyldig"
+#: ../src/engine/gncInvoice.c:2042
+msgid " (posted)"
+msgstr " (bogført)"
-#: ../src/gnome/gnc-plugin-page-register2.c:302
-#: ../src/gnome/gnc-plugin-page-register.c:307
-msgid "Add _Reversing Transaction"
-msgstr "Tilføj _omvendt transaktion"
+#: ../src/engine/gnc-lot.c:689 ../src/report/standard-reports/register.scm:139
+#: ../src/report/standard-reports/register.scm:420
+msgid "Lot"
+msgstr ""
-#: ../src/gnome/gnc-plugin-page-register2.c:306
-msgid "Move Transaction _Up"
-msgstr "Flyt transaktion _op"
+#: ../src/engine/gncOrder.c:552
+msgid " (closed)"
+msgstr " (lukket)"
-#: ../src/gnome/gnc-plugin-page-register2.c:307
-msgid "Move the current transaction one row upwards. Only available if the date and number of both rows are identical and the register window is sorted by date."
-msgstr "Flyt den nuværende transaktion en række op. Kun tilgængelig hvis datoen og antallet af begge rækker er identiske og kassekladdevinduet er sorteret efter dato."
+#: ../src/engine/gncOwner.c:955
+msgid "Offset between documents: "
+msgstr "Forskydning mellem dokumenter: "
-#: ../src/gnome/gnc-plugin-page-register2.c:311
-msgid "Move Transaction Do_wn"
-msgstr "Flyt transaktion _ned"
+#: ../src/engine/gncOwner.c:1065
+msgid "Lot Link"
+msgstr ""
+
+#. translators: " + " is an separator in a list of string-representations of recurrence frequencies
+#: ../src/engine/Recurrence.c:487
+msgid " + "
+msgstr " + "
-#: ../src/gnome/gnc-plugin-page-register2.c:312
-msgid "Move the current transaction one row downwards. Only available if the date and number of both rows are identical and the register window is sorted by date."
-msgstr "Flyt den nuværende transaktion en række ned. Kun tilgængelig hvis datoen og antallet af begge rækker er identiske og kassekladdevinduet er sorteret efter dato."
+#: ../src/engine/Recurrence.c:598
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:33
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:41
+#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:20
+#: ../src/report/standard-reports/account-piecharts.scm:125
+#: ../src/report/standard-reports/category-barchart.scm:132
+#: ../src/report/standard-reports/transaction.scm:840
+msgid "Weekly"
+msgstr "Ugentligt"
-#: ../src/gnome/gnc-plugin-page-register2.c:323
-#: ../src/gnome-utils/gnc-main-window.c:336
-#: ../src/report/report-gnome/gnc-plugin-page-report.c:1033
-msgid "_Refresh"
-msgstr "Opdate_r"
+# ikke helt afklaret.
+#. translators: %u is the recurrence multipler, i.e. this
+#. event should occur every %u'th week.
+#. translators: %u is the recurrence multiplier number
+#. translators: %u is the recurrence multiplier.
+#: ../src/engine/Recurrence.c:603 ../src/engine/Recurrence.c:694
+#: ../src/engine/Recurrence.c:725 ../src/engine/Recurrence.c:742
+#: ../src/engine/Recurrence.c:756 ../src/engine/Recurrence.c:768
+#, c-format
+msgid " (x%u)"
+msgstr " (x%u)"
-#: ../src/gnome/gnc-plugin-page-register2.c:324
-#: ../src/gnome-utils/gnc-main-window.c:337
-#: ../src/report/report-gnome/gnc-plugin-page-report.c:1034
-msgid "Refresh this window"
-msgstr "Opdater dette vindue"
+#. translators: %s is an already-localized form of the day of the week.
+#: ../src/engine/Recurrence.c:636
+#, c-format
+msgid "last %s"
+msgstr "sidste %s"
-#: ../src/gnome/gnc-plugin-page-register2.c:342
-#: ../src/gnome/gnc-plugin-page-register.c:351
-msgid "Automatically clear individual transactions, so as to reach a certain cleared amount"
-msgstr ""
+#: ../src/engine/Recurrence.c:642
+#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:31
+msgid "1st"
+msgstr "1."
-#: ../src/gnome/gnc-plugin-page-register2.c:356
-#: ../src/gnome/gnc-plugin-page-register.c:365
-msgid "_Blank Transaction"
-msgstr "_Tom transaktion"
+#: ../src/engine/Recurrence.c:642
+#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:32
+msgid "2nd"
+msgstr "2."
-#: ../src/gnome/gnc-plugin-page-register2.c:357
-#: ../src/gnome/gnc-plugin-page-register.c:366
-msgid "Move to the blank transaction at the bottom of the register"
-msgstr "Flyt til den tomme transaktion i slutningen af kassekladden"
+#: ../src/engine/Recurrence.c:642
+#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:33
+msgid "3rd"
+msgstr "3."
-#: ../src/gnome/gnc-plugin-page-register2.c:361
-#: ../src/gnome/gnc-plugin-page-register.c:370
-msgid "Edit E_xchange Rate"
-msgstr "Rediger _vekselkurs"
+#: ../src/engine/Recurrence.c:642
+#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:34
+msgid "4th"
+msgstr "4."
-#: ../src/gnome/gnc-plugin-page-register2.c:362
-#: ../src/gnome/gnc-plugin-page-register.c:371
-msgid "Edit the exchange rate for the current transaction"
-msgstr "Rediger vekselkursen for den nuværende transaktion"
+#. translators: %s is the string 1st, 2nd, 3rd and so on, and
+#. * %s is an already-localized form of the day of the week.
+#: ../src/engine/Recurrence.c:652
+#, c-format
+msgid "%s %s"
+msgstr "%s %s"
-#: ../src/gnome/gnc-plugin-page-register2.c:366
-#: ../src/gnome/gnc-plugin-page-register.c:375
-#: ../src/gnome-utils/gnc-icons.c:25
-msgid "_Jump"
-msgstr "_Spring"
+#: ../src/engine/Recurrence.c:689
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:31
+msgid "Semi-monthly"
+msgstr "Halvmånedligt"
-#: ../src/gnome/gnc-plugin-page-register2.c:367
-#: ../src/gnome/gnc-plugin-page-register.c:376
-msgid "Jump to the corresponding transaction in the other account"
-msgstr "Spring til den tilsvarende transaktion i den anden konto."
+#. translators: %d is the number of Recurrences in the list.
+#: ../src/engine/Recurrence.c:704
+#, c-format
+msgid "Unknown, %d-size list."
+msgstr "Ukendt, %d-størrelse liste."
-#: ../src/gnome/gnc-plugin-page-register2.c:371
-#: ../src/gnome/gnc-plugin-page-register.c:380
-msgid "Sche_dule..."
-msgstr "_Planlæg ..."
+#: ../src/engine/Recurrence.c:716
+#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:6
+msgid "Once"
+msgstr "En enkel gang"
-#: ../src/gnome/gnc-plugin-page-register2.c:372
-#: ../src/gnome/gnc-plugin-page-register.c:381
-msgid "Create a Scheduled Transaction with the current transaction as a template"
-msgstr "Opret en planlagt transaktion med den nuværende transaktion som skabelon"
+# daglig eller dagligt (er lidt bange for at det måske kan være begge dele).
+#: ../src/engine/Recurrence.c:721 ../src/gnome/gtkbuilder/dialog-sx.glade.h:40
+#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:9
+#: ../src/report/standard-reports/category-barchart.scm:135
+msgid "Daily"
+msgstr "Dagligt"
-#: ../src/gnome/gnc-plugin-page-register2.c:376
-#: ../src/gnome/gnc-plugin-page-register.c:385
-msgid "_All transactions"
-msgstr "_Alle transaktioner"
+#. g_warning("nth weekday not handled");
+#. g_string_printf(buf, "@fixme: nth weekday not handled");
+#: ../src/engine/Recurrence.c:738 ../src/engine/Recurrence.c:752
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:30
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:43
+#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:30
+#: ../src/report/standard-reports/account-piecharts.scm:122
+#: ../src/report/standard-reports/category-barchart.scm:129
+#: ../src/report/standard-reports/transaction.scm:841
+msgid "Monthly"
+msgstr "MÃ¥nedligt"
-#: ../src/gnome/gnc-plugin-page-register2.c:380
-#: ../src/gnome/gnc-plugin-page-register.c:389
-msgid "_This transaction"
-msgstr "_Denne transaktion"
+# Den her har jeg rettet til t da ovenfor er i den form.
+#: ../src/engine/Recurrence.c:764 ../src/gnome/gtkbuilder/dialog-sx.glade.h:45
+#: ../src/report/standard-reports/account-piecharts.scm:119
+#: ../src/report/standard-reports/transaction.scm:843
+msgid "Yearly"
+msgstr "Ã
rligt"
-#: ../src/gnome/gnc-plugin-page-register2.c:387
-#: ../src/gnome/gnc-plugin-page-register.c:396
-msgid "Account Report"
-msgstr "Kontorapport"
+#. Reason 2: zero Orphan a/c
+#: ../src/engine/Scrub.c:89 ../src/report/business-reports/balsheet-eg.scm:511
+msgid "Orphan"
+msgstr "Hittebarn"
-#: ../src/gnome/gnc-plugin-page-register2.c:388
-#: ../src/gnome/gnc-plugin-page-register.c:397
-msgid "Open a register report for this Account"
-msgstr "Ã
bn en kassekladerapport for denne konto"
+#. (> (accrec-depth accrec) 1))
+#. Reason 1: zero Imbalance a/c
+#: ../src/engine/Scrub.c:336 ../src/gnome-utils/gnc-tree-view-split-reg.c:1292
+#: ../src/report/business-reports/balsheet-eg.scm:509
+msgid "Imbalance"
+msgstr "Ubalance"
-#: ../src/gnome/gnc-plugin-page-register2.c:392
-#: ../src/gnome/gnc-plugin-page-register.c:401
-msgid "Account Report - Single Transaction"
-msgstr "Kontorapporte - En transaktion"
+#: ../src/engine/Split.c:1432 ../src/engine/Split.c:1449
+#: ../src/gnome-utils/gnc-tree-util-split-reg.c:45
+#: ../src/report/standard-reports/register.scm:232
+#: ../src/report/standard-reports/transaction.scm:1387
+msgid "-- Split Transaction --"
+msgstr "-- Opdelt transaktion --"
-#: ../src/gnome/gnc-plugin-page-register2.c:393
-#: ../src/gnome/gnc-plugin-page-register.c:402
-msgid "Open a register report for the selected Transaction"
-msgstr "Ã
bn en kassekladerapport for den valgte transaktion"
+#. Translators: This string has a disambiguation prefix
+#: ../src/engine/Split.c:1466
+msgid "Displayed account code of the other account in a multi-split transaction|Split"
+msgstr ""
-#: ../src/gnome/gnc-plugin-page-register2.c:403
-#: ../src/gnome/gnc-plugin-page-register.c:412
-msgid "_Double Line"
-msgstr "_Dobbelt linje"
+#: ../src/engine/Transaction.c:2417
+msgid "Voided transaction"
+msgstr "Ugyldig transaktion"
-#: ../src/gnome/gnc-plugin-page-register2.c:404
-#: ../src/gnome/gnc-plugin-page-register.c:413
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:89
-msgid "Show two lines of information for each transaction"
-msgstr "Vis to linjer med oplysninger for hver transaktion"
+#. Dirtying taken care of by SetReadOnly
+#: ../src/engine/Transaction.c:2428
+msgid "Transaction Voided"
+msgstr "Transaktion ugyldig"
-#: ../src/gnome/gnc-plugin-page-register2.c:409
-msgid "Show _Extra Dates"
-msgstr "Vis _ekstra datoer"
+#: ../src/gnome/assistant-acct-period.c:191
+msgid "The book was closed successfully."
+msgstr "Bogen blev lukket med succes."
-#: ../src/gnome/gnc-plugin-page-register2.c:410
-msgid "Show entered and reconciled dates"
-msgstr "Vis indtastede og afstemte datoer"
+#. Translators: %s is a date string. %d is the number of books
+#. * that will be created. This is a ngettext(3) message (but
+#. * only for the %d part).
+#: ../src/gnome/assistant-acct-period.c:316
+#, c-format
+msgid "The earliest transaction date found in this book is %s. Based on the selection made above, this book will be split into %d book."
+msgid_plural "The earliest transaction date found in this book is %s. Based on the selection made above, this book will be split into %d books."
+msgstr[0] "Den tidligste transaktionsdato fundet i denne bog er %s. Baseret på valget ovenfor vil denne bog blive opdelt i %d bog."
+msgstr[1] "Den tidligste transaktionsdato fundet i denne bog er %s. Baseret på valget ovenfor vil denne bog blive opdelt i %d bøger."
-#: ../src/gnome/gnc-plugin-page-register2.c:415
-#: ../src/gnome/gnc-plugin-page-register.c:418
-#: ../src/gnome-utils/gnc-icons.c:24
-msgid "S_plit Transaction"
-msgstr "_Opdel transaktion"
+#: ../src/gnome/assistant-acct-period.c:370
+#, c-format
+msgid ""
+"You have asked for a book to be created. This book will contain all transactions up to midnight %s (for a total of %d transactions spread over %d accounts).\n"
+"\n"
+" Amend the Title and Notes or Click on 'Forward' to proceed.\n"
+" Click on 'Back' to adjust the dates or 'Cancel'."
+msgstr ""
+"Du har bedt om at en bog oprettes. Denne bog vil indeholde alle transaktioner op til midnat %s (for samlet %d transaktioner spredt over %d konti).\n"
+"\n"
+" Ãndr titlen og noter eller klik pÃ¥ »Fremad« for at fortsætte.\n"
+" Klik på »Tilbage« for at justere datoerne eller »Afbryd«."
-#: ../src/gnome/gnc-plugin-page-register2.c:416
-#: ../src/gnome/gnc-plugin-page-register.c:419
-msgid "Show all splits in the current transaction"
-msgstr "Vis alle opsplitninger i den aktuelle transaktion"
+#: ../src/gnome/assistant-acct-period.c:387
+#, c-format
+msgid "Period %s - %s"
+msgstr "Periode %s - %s"
-#: ../src/gnome/gnc-plugin-page-register2.c:427
-#: ../src/gnome/gnc-plugin-page-register.c:430
-msgid "_Basic Ledger"
-msgstr "_Basishovedbog"
+#: ../src/gnome/assistant-acct-period.c:405
+#, c-format
+msgid "The book will be created with the title %s when you click on 'Apply'. Click on 'Back' to adjust, or 'Cancel' to not create any book."
+msgstr "Bogen vil blive oprettet med titlen %s når du klikker på »Anvend«. Klik på »Tilbage« for at justere, eller »Afbryd« for ikke at oprette en bog."
-#: ../src/gnome/gnc-plugin-page-register2.c:428
-#: ../src/gnome/gnc-plugin-page-register.c:431
-msgid "Show transactions on one or two lines"
-msgstr "Vis transaktioner på én eller to linjer"
+#. Translation FIXME: Can this %s-containing message please be
+#. replaced by one single message? Either this closing went
+#. successfully ("success", "congratulations") or something else
+#. should be displayed anyway.
+#: ../src/gnome/assistant-acct-period.c:527
+#, c-format
+msgid ""
+"%s\n"
+"Congratulations! You are done closing books!\n"
+msgstr ""
+"%s\n"
+"Tillykke! Du er færdig med at lukke bøger!\n"
-#: ../src/gnome/gnc-plugin-page-register2.c:432
-#: ../src/gnome/gnc-plugin-page-register.c:435
-msgid "_Auto-Split Ledger"
-msgstr "_Autoopdel hovedbog"
+#. Change the text so that its more mainingful for this assistant
+#: ../src/gnome/assistant-acct-period.c:593
+msgid "Period:"
+msgstr "Periode:"
-#: ../src/gnome/gnc-plugin-page-register2.c:433
-#: ../src/gnome/gnc-plugin-page-register.c:436
-msgid "Show transactions on one or two lines and expand the current transaction"
-msgstr "Vis transaktioner på én eller to linjer og ekspander den aktuelle transaktion"
+#: ../src/gnome/assistant-acct-period.c:594
+#: ../src/gnome-utils/gtkbuilder/dialog-book-close.glade.h:2
+msgid "Closing Date:"
+msgstr "Lukkedato:"
-#: ../src/gnome/gnc-plugin-page-register2.c:437
-#: ../src/gnome/gnc-plugin-page-register.c:440
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:141
-msgid "Transaction _Journal"
-msgstr "Transaktions_rapport"
+#: ../src/gnome/assistant-hierarchy.c:402
+msgid "Selected"
+msgstr "Valgt"
-#: ../src/gnome/gnc-plugin-page-register2.c:438
-#: ../src/gnome/gnc-plugin-page-register.c:441
-msgid "Show expanded transactions with all splits"
-msgstr "Vis ekspanderede transaktioner med alle opdelinger"
+#: ../src/gnome/assistant-hierarchy.c:414
+#: ../src/gnome-utils/gnc-tree-view-account.c:2183
+msgid "Account Types"
+msgstr "Kontotyper"
-#. src/report/standard-reports/register.scm
-#: ../src/gnome/gnc-plugin-page-register2.c:476
-#: ../src/gnome/gnc-plugin-page-register.c:479
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2900
-#: ../src/register/ledger-core/split-register.c:2438
-#: ../src/register/ledger-core/split-register-layout.c:687
-#: ../src/register/ledger-core/split-register-model.c:332
-#: ../intl-scm/guile-strings.c:4078
-msgid "Transfer"
-msgstr "Overfør"
+#. Translators: '%s' is the name of the selected account hierarchy template.
+#: ../src/gnome/assistant-hierarchy.c:505
+#, c-format
+msgid "Accounts in '%s'"
+msgstr "Konti i »%s«"
-#: ../src/gnome/gnc-plugin-page-register2.c:481
-#: ../src/gnome/gnc-plugin-page-register.c:484
-#: ../src/gnome-search/dialog-search.c:1051
-msgid "Split"
-msgstr "Del"
+#: ../src/gnome/assistant-hierarchy.c:513
+msgid "No description provided."
+msgstr "Ingen beskrivelse angivet."
-#: ../src/gnome/gnc-plugin-page-register2.c:482
-#: ../src/gnome/gnc-plugin-page-register.c:485
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:24
-msgid "Schedule"
-msgstr "Planlæg"
+#: ../src/gnome/assistant-hierarchy.c:528
+msgid "Accounts in Category"
+msgstr "Konti i kategori"
-#: ../src/gnome/gnc-plugin-page-register2.c:485
-#: ../src/gnome/gnc-plugin-page-register.c:488
-#: ../src/gnome/window-autoclear.c:92
-msgid "Auto-clear"
-msgstr ""
+#: ../src/gnome/assistant-hierarchy.c:740
+msgid "zero"
+msgstr "nul"
-#: ../src/gnome/gnc-plugin-page-register2.c:679
-msgid "You have tried to open an account in the new register while it is open in the old register."
-msgstr "Du har forsøgt at åbne en konto i den nye kasseklade mens den er åben i den gamle kasseklade."
+#: ../src/gnome/assistant-hierarchy.c:753
+msgid "existing account"
+msgstr "eksisterende konto"
-#: ../src/gnome/gnc-plugin-page-register2.c:752
-msgid "General Ledger2"
-msgstr "Hovedbog2"
+#: ../src/gnome/assistant-hierarchy.c:939
+#: ../src/gnome-utils/gnc-tree-view-account.c:904
+msgid "Placeholder"
+msgstr "Sumkonto"
-#. Translators: %s is the name
-#. of the tab page
-#: ../src/gnome/gnc-plugin-page-register2.c:1613
-#: ../src/gnome/gnc-plugin-page-register.c:1544
-#, c-format
-msgid "Save changes to %s?"
-msgstr "Gem ændringer til %s?"
+#: ../src/gnome/assistant-hierarchy.c:970
+msgid "Use Existing"
+msgstr "Brug eksisterende"
-#: ../src/gnome/gnc-plugin-page-register2.c:1617
-#: ../src/gnome/gnc-plugin-page-register.c:1548
-#, fuzzy
-msgid "This register has pending changes to a transaction. Would you like to save the changes to this transaction, discard the transaction, or cancel the operation?"
-msgstr "Den aktuelle transaktion er blevet ændret. Vil du gemme ændringerne før kopiering af transaktionen, eller afbryde kopieringen?"
+#: ../src/gnome/assistant-hierarchy.c:1129
+#: ../src/gnome/assistant-hierarchy.c:1140
+#: ../src/gnome-utils/dialog-utils.c:590
+msgid "New Book Options"
+msgstr "Nye bogindstillinger"
-#: ../src/gnome/gnc-plugin-page-register2.c:1620
-#: ../src/gnome/gnc-plugin-page-register.c:1551
-msgid "_Discard Transaction"
-msgstr "_Fjern transaktion"
+# lidt i tvivl her om det ikke skal være ental på dansk
+# engelsk ofte taxes (hvor vi bare siger skat på dansk).
+#. { name, default txn memo, throughEscrowP, specSrcAcctP }
+#: ../src/gnome/assistant-loan.c:116
+msgid "Taxes"
+msgstr "Skat"
-#: ../src/gnome/gnc-plugin-page-register2.c:1624
-#: ../src/gnome/gnc-plugin-page-register.c:1555
-msgid "_Save Transaction"
-msgstr "_Gem transaktion"
+#: ../src/gnome/assistant-loan.c:116
+msgid "Tax Payment"
+msgstr "Skattebetaling"
-#: ../src/gnome/gnc-plugin-page-register2.c:1653
-#: ../src/gnome/gnc-plugin-page-register2.c:1688
-#: ../src/gnome/gnc-plugin-page-register2.c:1700
-#: ../src/gnome/gnc-plugin-page-register2.c:1723
-#: ../src/gnome/gnc-plugin-page-register2.c:1773
-#: ../src/gnome/gnc-plugin-page-register.c:1587
-#: ../src/gnome/gnc-plugin-page-register.c:1622
-#: ../src/gnome/gnc-plugin-page-register.c:1634
-#: ../src/gnome/gnc-plugin-page-register.c:1657
-#: ../src/gnome/gnc-plugin-page-register.c:1707
-#: ../src/gnome/gnc-plugin-page-register.c:1751
-msgid "unknown"
-msgstr "ukendt"
+#: ../src/gnome/assistant-loan.c:117
+msgid "Insurance"
+msgstr "Forsikring"
-#. src/report/standard-reports/general-ledger.scm
-#: ../src/gnome/gnc-plugin-page-register2.c:1674
-#: ../src/gnome/gnc-plugin-page-register2.c:2395
-#: ../src/gnome/gnc-plugin-page-register.c:758
-#: ../src/gnome/gnc-plugin-page-register.c:1608
-#: ../src/gnome/gnc-plugin-page-register.c:2563
-#: ../intl-scm/guile-strings.c:3572
-msgid "General Ledger"
-msgstr "Hovedbog"
+#: ../src/gnome/assistant-loan.c:117
+msgid "Insurance Payment"
+msgstr "Forsikringsbetaling"
-#: ../src/gnome/gnc-plugin-page-register2.c:1676
-#: ../src/gnome/gnc-plugin-page-register2.c:2401
-#: ../src/gnome/gnc-plugin-page-register.c:1610
-#: ../src/gnome/gnc-plugin-page-register.c:2569
-msgid "Portfolio"
-msgstr "Portefølje"
+#. Translators: PMI stands for Private Mortgage Insurance.
+#: ../src/gnome/assistant-loan.c:119
+msgid "PMI"
+msgstr "PMI"
-#: ../src/gnome/gnc-plugin-page-register2.c:1678
-#: ../src/gnome/gnc-plugin-page-register2.c:2407
-#: ../src/gnome/gnc-plugin-page-register.c:1612
-#: ../src/gnome/gnc-plugin-page-register.c:2575
-msgid "Search Results"
-msgstr "Søgeresultater"
+#: ../src/gnome/assistant-loan.c:119
+msgid "PMI Payment"
+msgstr "PMI-betaling"
-#: ../src/gnome/gnc-plugin-page-register2.c:2397
-msgid "General Ledger Report"
-msgstr "Hovedbogsrapport"
+#: ../src/gnome/assistant-loan.c:120
+msgid "Other Expense"
+msgstr "Anden omkostning"
-#: ../src/gnome/gnc-plugin-page-register2.c:2403
-#: ../src/gnome/gnc-plugin-page-register.c:2571
-msgid "Portfolio Report"
-msgstr "Porteføljerapport"
+#: ../src/gnome/assistant-loan.c:120
+msgid "Miscellaneous Payment"
+msgstr "Diverse betaling"
-#: ../src/gnome/gnc-plugin-page-register2.c:2409
-#: ../src/gnome/gnc-plugin-page-register.c:2577
-msgid "Search Results Report"
-msgstr "Søgeresultat-rapport"
+#. Add payment checkbox.
+#. Translators: %s is "Taxes",
+#. * "Insurance", or similar.
+#: ../src/gnome/assistant-loan.c:751
+#, c-format
+msgid "... pay \"%s\"?"
+msgstr "... betaler »%s«?"
-#. src/report/standard-reports/general-journal.scm
-#. src/report/standard-reports/register.scm
-#: ../src/gnome/gnc-plugin-page-register2.c:2413
-#: ../src/gnome/gnc-plugin-page-register.c:2581
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:134
-#: ../intl-scm/guile-strings.c:3546
-#: ../intl-scm/guile-strings.c:4216
-msgid "Register"
-msgstr "Kassekladde"
+#: ../src/gnome/assistant-loan.c:763
+msgid "via Escrow account?"
+msgstr "via Escrowkonto?"
-#. src/report/standard-reports/register.scm
-#: ../src/gnome/gnc-plugin-page-register2.c:2415
-#: ../intl-scm/guile-strings.c:4106
-msgid "Register Report"
-msgstr "Kassekladderapport"
+#: ../src/gnome/assistant-loan.c:918
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2926
+#: ../src/register/ledger-core/split-register.c:2464
+msgid "Loan"
+msgstr "LÃ¥n"
-#: ../src/gnome/gnc-plugin-page-register2.c:2431
-#: ../src/gnome/gnc-plugin-page-register.c:2599
-msgid "and subaccounts"
-msgstr "og underkonti"
+#. Translators: %s is "Taxes", or "Insurance", or similar
+#: ../src/gnome/assistant-loan.c:1446
+#, c-format
+msgid "Loan Repayment Option: \"%s\""
+msgstr "Låntilbagebetalingsindstilling: »%s«"
-#: ../src/gnome/gnc-plugin-page-register2.c:2630
-#: ../src/gnome/gnc-plugin-page-register.c:2762
-msgid "Print checks from multiple accounts?"
-msgstr "Udskriv check fra flere konti?"
+#: ../src/gnome/assistant-loan.c:1842 ../src/gnome/assistant-loan.c:2839
+msgid "Principal"
+msgstr "Hovedstol"
-#: ../src/gnome/gnc-plugin-page-register2.c:2632
-#: ../src/gnome/gnc-plugin-page-register.c:2764
-msgid "This search result contains splits from more than one account. Do you want to print the checks even though they are not all from the same account?"
-msgstr ""
+#: ../src/gnome/assistant-loan.c:1848 ../src/gnome/assistant-loan.c:2859
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2882
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2919
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2927
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2934
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2943
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2970
+#: ../src/import-export/qif-imp/qif-dialog-utils.scm:20
+#: ../src/register/ledger-core/split-register.c:2420
+#: ../src/register/ledger-core/split-register.c:2457
+#: ../src/register/ledger-core/split-register.c:2465
+#: ../src/register/ledger-core/split-register.c:2472
+#: ../src/register/ledger-core/split-register.c:2481
+#: ../src/register/ledger-core/split-register.c:2508
+msgid "Interest"
+msgstr "Renter"
-#: ../src/gnome/gnc-plugin-page-register2.c:2643
-#: ../src/gnome/gnc-plugin-page-register.c:2775
-msgid "_Print checks"
-msgstr "_Udskriv check"
+#: ../src/gnome/assistant-loan.c:2745
+msgid "Escrow Payment"
+msgstr "Escrow-betaling"
-#: ../src/gnome/gnc-plugin-page-register2.c:2662
-#: ../src/gnome/gnc-plugin-page-register.c:2794
-msgid "You can only print checks from a bank account register or search results."
-msgstr "Du kan kun udskrive check fra en bankkontokassekladde eller søgeresultater."
+#. Set split-action with gnc_set_num_action which is the same as
+#. * xaccSplitSetAction with these arguments
+#. Translators: This string has a disambiguation prefix
+#: ../src/gnome/assistant-stock-split.c:380
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2979
+#: ../src/register/ledger-core/split-register.c:2517
+msgid "Action Column|Split"
+msgstr "Opdeling"
-#: ../src/gnome/gnc-plugin-page-register2.c:2854
-#: ../src/gnome/gnc-plugin-page-register.c:2954
-msgid "You cannot void a transaction with reconciled or cleared splits."
-msgstr "Du kan ikke gøre en transaktion ugyldig som har afstemte eller ryddede opdelinger."
+#: ../src/gnome/assistant-stock-split.c:411
+msgid "Error adding price."
+msgstr "Fejl ved tilføjelse af pris."
-#. Translators: The %s is the name of the plugin page
-#: ../src/gnome/gnc-plugin-page-register2.c:2998
-#: ../src/gnome/gnc-plugin-page-register.c:3153
-#: ../src/gnome-utils/gnc-tree-view-account.c:2145
-#: ../src/gnome-utils/gnc-tree-view-owner.c:1179
-#, c-format
-msgid "Filter %s by..."
-msgstr "Filtrer %s efter ..."
+#. define all option's names so that they are properly defined
+#. in *one* place.
+#: ../src/gnome/assistant-stock-split.c:574
+#: ../src/gnome/dialog-find-transactions2.c:108
+#: ../src/gnome/dialog-find-transactions.c:107
+#: ../src/gnome-utils/gnc-icons.c:18
+#: ../src/import-export/aqb/gnc-ab-utils.c:458
+#: ../src/import-export/csv-imp/gnc-csv-model.c:49
+#: ../src/import-export/import-main-matcher.c:482
+#: ../src/import-export/import-match-picker.c:343
+#: ../src/import-export/qif-imp/dialog-account-picker.c:369
+#: ../src/register/ledger-core/split-register-model.c:325
+#: ../src/report/business-reports/job-report.scm:39
+#: ../src/report/business-reports/owner-report.scm:48
+#: ../src/report/standard-reports/advanced-portfolio.scm:1042
+#: ../src/report/standard-reports/budget-flow.scm:43
+#: ../src/report/standard-reports/budget.scm:47
+#: ../src/report/standard-reports/cash-flow.scm:49
+#: ../src/report/standard-reports/general-journal.scm:110
+#: ../src/report/standard-reports/portfolio.scm:243
+#: ../src/report/standard-reports/register.scm:134
+#: ../src/report/standard-reports/register.scm:410
+#: ../src/report/standard-reports/transaction.scm:450
+msgid "Account"
+msgstr "Konto"
-#: ../src/gnome/gnc-plugin-page-register.c:197
-msgid "_Associate File with Transaction"
-msgstr "_Forbind fil med transaktion"
+# Dette står både for valutakoder (DKK) og børskoder (RHAD). CH
+#: ../src/gnome/assistant-stock-split.c:580
+#: ../src/gnome-utils/gnc-tree-view-commodity.c:390
+#: ../src/report/standard-reports/advanced-portfolio.scm:1054
+#: ../src/report/standard-reports/portfolio.scm:244
+msgid "Symbol"
+msgstr "Kode"
-#: ../src/gnome/gnc-plugin-page-register.c:198
-msgid "_Associate Location with Transaction"
-msgstr "_Forbind placering med transaktion"
+#: ../src/gnome/assistant-stock-split.c:586
+#: ../src/gnome/dialog-find-transactions2.c:121
+#: ../src/gnome/dialog-find-transactions.c:120
+#: ../src/register/ledger-core/split-register-model.c:396
+#: ../src/report/standard-reports/advanced-portfolio.scm:1062
+#: ../src/report/standard-reports/general-journal.scm:111
+#: ../src/report/standard-reports/general-ledger.scm:86
+#: ../src/report/standard-reports/register.scm:137
+#: ../src/report/standard-reports/register.scm:415
+#: ../src/report/standard-reports/transaction.scm:394
+#: ../src/report/standard-reports/transaction.scm:454
+#: ../src/report/standard-reports/transaction.scm:956
+msgid "Shares"
+msgstr "Aktier"
-#: ../src/gnome/gnc-plugin-page-register.c:199
-msgid "_Open Associated File/Location"
-msgstr "_Ã
bn forbundet fil/placering"
+#: ../src/gnome/assistant-stock-split.c:777
+msgid "You don't have any stock accounts with balances!"
+msgstr "Du har ingen aktiekonti med balancer!"
-#: ../src/gnome/gnc-plugin-page-register.c:210
-msgid "Associate a file with the current transaction"
-msgstr "Forbind en fil med den nuværende transaktion"
+#: ../src/gnome/dialog-commodities.c:156
+msgid "That commodity is currently used by at least one of your accounts. You may not delete it."
+msgstr "Den vare bruges allerede af mindst en af dine konti. Du kan ikke slette den."
-#: ../src/gnome/gnc-plugin-page-register.c:211
-msgid "Associate a location with the current transaction"
-msgstr "Forbind en placering med den nuværende transaktion"
+#: ../src/gnome/dialog-commodities.c:170
+msgid "This commodity has price quotes. Are you sure you want to delete the selected commodity and its price quotes?"
+msgstr ""
-#: ../src/gnome/gnc-plugin-page-register.c:212
-msgid "Open the associated file or location with the current transaction"
-msgstr "Opret en forbundet fil eller placering med den nuværende transaktion"
+#: ../src/gnome/dialog-commodities.c:177
+msgid "Are you sure you want to delete the selected commodity?"
+msgstr "Er du sikker på, at du vil slette den aktuelle vare?"
-#: ../src/gnome/gnc-plugin-page-register.c:284
-msgid "Remo_ve Other Splits"
-msgstr "_Fjern andre opdelinger"
+#: ../src/gnome/dialog-commodities.c:186
+msgid "Delete commodity?"
+msgstr "Slet vare?"
-#: ../src/gnome/gnc-plugin-page-register.c:329
-#: ../src/gnome-utils/gnc-main-window.c:328
-msgid "_Sort By..."
-msgstr "_Sorter efter ..."
+#: ../src/gnome/dialog-fincalc.c:312
+msgid "This program can only calculate one value at a time. You must enter values for all but one quantity."
+msgstr "Dette program kan kun beregne en værdi ad gangen. Du skal indtaste værdier for alle andre end en kvantitet."
-#: ../src/gnome/gnc-plugin-page-register.c:489
-msgid "Associate File"
-msgstr "Forbind fil"
+#: ../src/gnome/dialog-fincalc.c:314
+msgid "GnuCash cannot determine the value in one of the fields. You must enter a valid expression."
+msgstr "GnuCash kan ikke afgøre en værdi i et af felterne. Du må indtaste en gyldig værdi."
-#: ../src/gnome/gnc-plugin-page-register.c:490
-msgid "Associate Location"
-msgstr "Forbind placering"
+#: ../src/gnome/dialog-fincalc.c:353
+msgid "The interest rate cannot be zero."
+msgstr "Renten kan ikke være nul."
-#: ../src/gnome/gnc-plugin-page-register.c:491
-msgid "Open File/Location"
-msgstr "Ã
bn fil/placering"
+#: ../src/gnome/dialog-fincalc.c:372
+msgid "The number of payments cannot be zero."
+msgstr "Antallet af betalinger kan ikke være nul."
-#: ../src/gnome/gnc-plugin-page-register.c:685
-msgid "You have tried to open an account in the old register while it is open in the new register."
-msgstr "Du har forsøgt at åbne en fil i den gamle kassekladde, mens den er åben i den nye klassekladde. "
+#: ../src/gnome/dialog-fincalc.c:377
+msgid "The number of payments cannot be negative."
+msgstr "Antallet af betalinger kan ikke være negativt."
-#. src/report/standard-reports/transaction.scm
-#: ../src/gnome/gnc-plugin-page-register.c:2565
-#: ../src/gnome/gnc-plugin-page-register.c:2583
-#: ../intl-scm/guile-strings.c:4324
-msgid "Transaction Report"
-msgstr "Transaktionsrapport"
+#: ../src/gnome/dialog-find-transactions2.c:104
+#: ../src/gnome/dialog-find-transactions.c:103
+msgid "All Accounts"
+msgstr "Alle konti"
-#: ../src/gnome/gnc-plugin-page-register.c:3025
-#: ../src/gnome/gnc-split-reg.c:882
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1123
-msgid "A reversing entry has already been created for this transaction."
-msgstr ""
+#: ../src/gnome/dialog-find-transactions2.c:111
+#: ../src/gnome/dialog-find-transactions.c:110
+#: ../src/import-export/import-match-picker.c:348
+msgid "Balanced"
+msgstr "Balanceret"
-#. Translations: The %s is the name of the plugin page
-#: ../src/gnome/gnc-plugin-page-register.c:3076
-#, c-format
-msgid "Sort %s by..."
-msgstr "Sorter %s efter ..."
+#: ../src/gnome/dialog-find-transactions2.c:114
+#: ../src/gnome/dialog-find-transactions.c:113
+#: ../src/report/report-system/html-acct-table.scm:630
+#: ../src/report/standard-reports/equity-statement.scm:170
+#: ../src/report/standard-reports/income-statement.scm:269
+#: ../src/report/standard-reports/trial-balance.scm:255
+msgid "Closing Entries"
+msgstr "Lukkeposter"
-#: ../src/gnome/gnc-plugin-page-sx-list.c:132
-msgid "_Scheduled"
-msgstr "_Planlagt"
+#: ../src/gnome/dialog-find-transactions2.c:117
+#: ../src/gnome/dialog-find-transactions.c:116
+#: ../src/gnome/gnc-plugin-page-register2.c:484
+#: ../src/gnome/gnc-plugin-page-register.c:487
+#: ../src/gnome/window-reconcile2.c:1315 ../src/gnome/window-reconcile.c:1315
+#: ../src/import-export/csv-exp/csv-transactions-export.c:423
+msgid "Reconcile"
+msgstr "Afstem"
-#: ../src/gnome/gnc-plugin-page-sx-list.c:134
-msgid "_New"
-msgstr "_Ny"
+#: ../src/gnome/dialog-find-transactions2.c:119
+#: ../src/gnome/dialog-find-transactions.c:118
+msgid "Share Price"
+msgstr "Aktiepris"
-#: ../src/gnome/gnc-plugin-page-sx-list.c:135
-msgid "Create a new scheduled transaction"
-msgstr "Opret en ny planlagt transaktion"
+#: ../src/gnome/dialog-find-transactions2.c:123
+#: ../src/gnome/dialog-find-transactions.c:122
+#: ../src/gnome/dialog-lot-viewer.c:932
+#: ../src/gnome/dialog-sx-since-last-run.c:988
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2982
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3002
+#: ../src/report/standard-reports/advanced-portfolio.scm:1071
+#: ../src/report/standard-reports/portfolio.scm:248
+#: ../src/report/standard-reports/register.scm:149
+#: ../src/report/standard-reports/register.scm:439
+msgid "Value"
+msgstr "Værdi"
-#: ../src/gnome/gnc-plugin-page-sx-list.c:140
-msgid "_New 2"
-msgstr "_Ny 2"
+#: ../src/gnome/dialog-find-transactions2.c:129
+#: ../src/gnome/dialog-find-transactions2.c:168
+#: ../src/gnome/dialog-find-transactions2.c:174
+#: ../src/gnome/dialog-find-transactions.c:128
+#: ../src/gnome/dialog-find-transactions.c:167
+#: ../src/gnome/dialog-find-transactions.c:173
+#: ../src/gnome/gnc-plugin-page-register.c:1834
+#: ../src/gnome/gnc-plugin-page-register.c:3105
+#: ../src/gnome-search/dialog-search.c:893
+#: ../src/gnome-search/dialog-search.c:899
+#: ../src/import-export/csv-exp/csv-transactions-export.c:422
+#: ../src/report/standard-reports/transaction.scm:766
+msgid "Number/Action"
+msgstr "Nummer/handling"
-#: ../src/gnome/gnc-plugin-page-sx-list.c:141
-msgid "Create a new scheduled transaction 2"
-msgstr "Opret en ny planlagt transaktion 2"
+#: ../src/gnome/dialog-find-transactions2.c:133
+#: ../src/gnome/dialog-find-transactions2.c:170
+#: ../src/gnome/dialog-find-transactions2.c:176
+#: ../src/gnome/dialog-find-transactions.c:132
+#: ../src/gnome/dialog-find-transactions.c:169
+#: ../src/gnome/dialog-find-transactions.c:175
+#: ../src/gnome/gnc-plugin-page-register.c:1833
+#: ../src/gnome/gnc-plugin-page-register.c:3104
+#: ../src/gnome-search/dialog-search.c:895
+#: ../src/gnome-search/dialog-search.c:901
+#: ../src/import-export/csv-exp/csv-transactions-export.c:418
+#: ../src/report/standard-reports/transaction.scm:770
+msgid "Transaction Number"
+msgstr "Transaktionsnummer"
-#: ../src/gnome/gnc-plugin-page-sx-list.c:147
-msgid "Edit the selected scheduled transaction"
-msgstr "Rediger den valgte planlagte transaktion"
+#: ../src/gnome/dialog-find-transactions2.c:146
+#: ../src/gnome/dialog-find-transactions.c:145
+msgid "Description, Notes, or Memo"
+msgstr ""
-#: ../src/gnome/gnc-plugin-page-sx-list.c:152
-msgid "_Edit 2"
-msgstr "_Rediger 2"
+#. FIXME: All this does is leak.
+#: ../src/gnome/dialog-find-transactions2.c:221
+#: ../src/gnome/dialog-find-transactions.c:220
+#: ../src/gnome-search/dialog-search.c:1449
+msgid "Find Transaction"
+msgstr "Find transaktion"
-#: ../src/gnome/gnc-plugin-page-sx-list.c:153
-msgid "Edit the selected scheduled transaction 2"
-msgstr "Rediger den valgte planlagte transaktion 2"
+#: ../src/gnome/dialog-lot-viewer.c:792
+#: ../src/gnome/gnc-plugin-page-account-tree.c:339
+#: ../src/gnome/gnc-plugin-page-budget.c:176 ../src/gnome-utils/gnc-file.c:100
+#: ../src/gnome-utils/gnc-file.c:1034 ../src/gnome/window-reconcile2.c:1700
+#: ../src/gnome/window-reconcile.c:1700
+msgid "Open"
+msgstr "Ã
bn"
-#: ../src/gnome/gnc-plugin-page-sx-list.c:159
-msgid "Delete the selected scheduled transaction"
-msgstr "Slet den valgte planlagte transaktion"
+#: ../src/gnome/dialog-lot-viewer.c:857
+#: ../src/report/report-system/html-fonts.scm:70
+#: ../src/report/standard-reports/general-journal.scm:96
+#: ../src/report/standard-reports/register.scm:379
+msgid "Title"
+msgstr "Titel"
-#: ../src/gnome/gnc-plugin-page-sx-list.c:382
-#, c-format
-msgid "Transactions"
-msgstr "Transaktioner"
+#: ../src/gnome/dialog-lot-viewer.c:863 ../src/gnome/dialog-lot-viewer.c:944
+#: ../src/gnome-utils/gnc-tree-view-account.c:775
+#: ../src/gnome-utils/gnc-tree-view-owner.c:459
+#: ../src/gnome-utils/gnc-tree-view-owner.c:467
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3212
+#: ../src/import-export/csv-imp/gnc-csv-model.c:52
+#: ../src/register/ledger-core/split-register-model.c:311
+#: ../src/register/ledger-core/split-register-model.c:461
+#: ../src/report/business-reports/customer-summary.scm:184
+#: ../src/report/business-reports/job-report.scm:221
+#: ../src/report/business-reports/owner-report.scm:309
+#: ../src/report/report-system/html-utilities.scm:727
+#: ../src/report/standard-reports/account-summary.scm:460
+#: ../src/report/standard-reports/register.scm:155
+#: ../src/report/standard-reports/sx-summary.scm:465
+#: ../src/report/standard-reports/transaction.scm:465
+msgid "Balance"
+msgstr "Saldo"
-#: ../src/gnome/gnc-plugin-page-sx-list.c:444
-#, c-format
-msgid "Upcoming Transactions"
-msgstr "Kommende transaktioner"
+#: ../src/gnome/dialog-lot-viewer.c:869
+msgid "Gains"
+msgstr "Gevinster"
-#. FIXME: Does this always refer to only one transaction? Or could
-#. multiple SXs be deleted as well? Ideally, the number of
-#. to-be-deleted SXs should be mentioned here; see
-#. dialog-sx-since-last-run.c:807
-#: ../src/gnome/gnc-plugin-page-sx-list.c:766
-msgid "Do you really want to delete this scheduled transaction?"
-msgstr "Er du sikker på, at du vil slette denne planlagte transaktion?"
+#: ../src/gnome/dialog-lot-viewer.c:938
+#: ../src/report/standard-reports/average-balance.scm:108
+msgid "Gain/Loss"
+msgstr "Gevinst/tab"
-#: ../src/gnome/gnc-plugin-register2.c:57
-#: ../src/gnome/gnc-plugin-register.c:58
-msgid "_General Ledger"
-msgstr "_Hovedbog"
+#: ../src/gnome/dialog-lot-viewer.c:989
+#, c-format
+msgid "Lots in Account %s"
+msgstr "Afkast på konto %s"
-#: ../src/gnome/gnc-plugin-register2.c:58
-msgid "Open a general ledger window"
-msgstr "Ã
bn et hovedbogsvindue"
+#. Translators: %d is the number of prices. This
+#. is a ngettext(3) message.
+#: ../src/gnome/dialog-price-edit-db.c:185
+#, c-format
+msgid "Are you sure you want to delete the selected price?"
+msgid_plural "Are you sure you want to delete the %d selected prices?"
+msgstr[0] "Er du sikker på, at du vil slette den valgte pris?"
+msgstr[1] "Er du sikker på, at du vil slette de %d valgte priser?"
-#: ../src/gnome/gnc-plugin-register2.c:66
-#: ../src/gnome/gnc-plugin-register2.c:67
-msgid "Register2 Open GL Account"
-msgstr "Kassekladde2 - åbn hovedbogskonto"
+#: ../src/gnome/dialog-price-edit-db.c:193
+msgid "Delete prices?"
+msgstr "Slet priser?"
-#: ../src/gnome/gnc-plugin-register.c:54
-msgid "Old St_yle General Ledger"
-msgstr "Hovedbog i _gammel stil"
+#: ../src/gnome/dialog-price-editor.c:215
+msgid "You must select a Security."
+msgstr "Du skal vælge et værdipapir."
-#: ../src/gnome/gnc-plugin-register.c:55
-msgid "Open an old style general ledger window"
-msgstr "Ã
bn et hovedbogsvindue i gammel stil"
+#: ../src/gnome/dialog-price-editor.c:220
+msgid "You must select a Currency."
+msgstr "Du skal vælge en valuta."
-#: ../src/gnome/gnc-plugin-register.c:59
-msgid "Open general ledger window"
-msgstr "Ã
bn hovedbogsvindue"
+#: ../src/gnome/dialog-price-editor.c:231
+#: ../src/gnome-utils/dialog-transfer.c:1444
+msgid "You must enter a valid amount."
+msgstr "Du skal vælge en gyldig mængde."
-#: ../src/gnome/gnc-split-reg2.c:625
-#: ../src/gnome/gnc-split-reg.c:636
-msgid "<No information>"
-msgstr "<ingen information>"
+#: ../src/gnome/dialog-print-check2.c:821
+#: ../src/gnome/dialog-print-check.c:821
+msgid "Cannot save check format file."
+msgstr "Kan ikke gemme checkformatfil."
-#: ../src/gnome/gnc-split-reg2.c:764
-#: ../src/gnome/gnc-split-reg.c:1624
-msgid "Balancing entry from reconcilation"
-msgstr ""
+#: ../src/gnome/dialog-print-check2.c:1509
+#: ../src/gnome/dialog-print-check.c:1509
+msgid "There is a duplicate check format file."
+msgstr "Der er en kopi af checkformatfilen."
-#: ../src/gnome/gnc-split-reg2.c:935
-#: ../src/gnome/gnc-split-reg.c:2082
-msgid "Present:"
-msgstr "Nutidig:"
+# i %1$s er det et tal eller en tekst?
+#
+#. Translators: %1$s is the type of the first check
+#. * format (user defined or application defined); %2$s
+#. * is the filename of that format; %3$s the type of
+#. * the other check format; and %4$s the filename of
+#. * that other format.
+#: ../src/gnome/dialog-print-check2.c:1517
+#: ../src/gnome/dialog-print-check.c:1517
+#, c-format
+msgid "The GUIDs in the %s check format file '%s' and the %s check format file '%s' match."
+msgstr "GUID'en i %s checkformatfilen '%s' og %s checkformatfilen '%s' stemmer overens."
-#: ../src/gnome/gnc-split-reg2.c:936
-#: ../src/gnome/gnc-split-reg.c:2083
-msgid "Future:"
-msgstr "Fremtidig:"
+#. Translators: This is a directory name. It may be presented to
+#. * the user to indicate that some data file was defined by the
+#. * gnucash application.
+#: ../src/gnome/dialog-print-check2.c:1558
+#: ../src/gnome/dialog-print-check.c:1558
+msgid "application"
+msgstr "application"
-#: ../src/gnome/gnc-split-reg2.c:937
-#: ../src/gnome/gnc-split-reg.c:2084
-msgid "Cleared:"
-msgstr "Kontrolleret:"
+#. Translators: This is a directory name. It may be presented to
+#. * the user to indicate that some data file was defined by a
+#. * user herself.
+#: ../src/gnome/dialog-print-check2.c:1566
+#: ../src/gnome/dialog-print-check.c:1566
+msgid "user"
+msgstr "user"
-#: ../src/gnome/gnc-split-reg2.c:938
-#: ../src/gnome/gnc-split-reg.c:2085
-msgid "Reconciled:"
-msgstr "Afstemt:"
+#: ../src/gnome/dialog-print-check2.c:1590
+#: ../src/gnome/dialog-print-check2.c:2562
+#: ../src/gnome/dialog-print-check.c:1590
+#: ../src/gnome/dialog-print-check.c:2562
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:59
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:40
+#: ../src/gnome-utils/gtkbuilder/gnc-date-format.glade.h:20
+#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:10
+#: ../src/import-export/csv-imp/assistant-csv-trans-import.glade.h:29
+msgid "Custom"
+msgstr "Tilpasset"
-#: ../src/gnome/gnc-split-reg2.c:939
-#: ../src/gnome/gnc-split-reg.c:2086
-msgid "Projected Minimum:"
-msgstr ""
+#: ../src/gnome/dialog-print-check2.c:2554
+#: ../src/gnome/dialog-print-check.c:2554
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:37
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:184
+msgid "Top"
+msgstr "Ãverst"
-#: ../src/gnome/gnc-split-reg2.c:943
-#: ../src/gnome/gnc-split-reg.c:2090
-msgid "Shares:"
-msgstr "Aktier:"
+#: ../src/gnome/dialog-progress.c:483 ../src/gnome/dialog-progress.c:532
+msgid "(paused)"
+msgstr "(pause)"
-#: ../src/gnome/gnc-split-reg2.c:944
-#: ../src/gnome/gnc-split-reg.c:2091
-msgid "Current Value:"
-msgstr "Nutidsværdi:"
+#: ../src/gnome/dialog-progress.c:767 ../src/gnome/dialog-progress.c:770
+msgid "Complete"
+msgstr "Færdig"
-#: ../src/gnome/gnc-split-reg2.c:1019
-#, fuzzy
-msgid "Account Payable / Receivable Register"
-msgstr "Valgte konti:"
+#: ../src/gnome/dialog-sx-editor2.c:166 ../src/gnome/dialog-sx-editor.c:167
+#: ../src/gnome/gnc-plugin-page-sx-list.c:146
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:17
+#: ../src/gnome-utils/gnc-main-window.c:260
+#: ../src/gnome/window-reconcile2.c:2203 ../src/gnome/window-reconcile.c:2203
+#: ../src/report/report-gnome/dialog-report.glade.h:20
+msgid "_Edit"
+msgstr "_Redigér"
-#: ../src/gnome/gnc-split-reg2.c:1021
-msgid "The register displayed is for Account Payable or Account Receivable. Changing the entries may cause harm, please use the business options to change the entries."
-msgstr ""
+#: ../src/gnome/dialog-sx-editor2.c:167 ../src/gnome/dialog-sx-editor.c:168
+#: ../src/gnome/window-reconcile2.c:2144 ../src/gnome/window-reconcile.c:2144
+msgid "_Transaction"
+msgstr "_Transaktion"
-#: ../src/gnome/gnc-split-reg2.c:1068
-#: ../src/gnome/gnc-split-reg.c:2165
-msgid "This account register is read-only."
-msgstr "Denne kontokasseklade er skrivebeskyttet."
+#: ../src/gnome/dialog-sx-editor2.c:168 ../src/gnome/dialog-sx-editor.c:169
+#: ../src/gnome-utils/gnc-main-window.c:261
+msgid "_View"
+msgstr "_Vis"
-#: ../src/gnome/gnc-split-reg2.c:1111
-#: ../src/gnome/gnc-split-reg.c:2208
-#, fuzzy
-msgid "This account may not be edited. If you want to edit transactions in this register, please open the account options and turn off the placeholder checkbox."
-msgstr "Denne konto kan ikke redigeres. Hvis du ønsker at redigere transaktioner i denne kassekladde så åbn venligst kontoindstillingerne og fjern tjekboksen for sumkonto."
+#: ../src/gnome/dialog-sx-editor2.c:169 ../src/gnome/dialog-sx-editor.c:170
+#: ../src/gnome-utils/gnc-main-window.c:262
+msgid "_Actions"
+msgstr "_Handlinger"
-#: ../src/gnome/gnc-split-reg2.c:1118
-#: ../src/gnome/gnc-split-reg.c:2215
-#, fuzzy
-msgid "One of the sub-accounts selected may not be edited. If you want to edit transactions in this register, please open the sub-account options and turn off the placeholder checkbox. You may also open an individual account instead of a set of accounts."
-msgstr "En af de valgte underkonti kan ikke redigeres. Hvis du ønsker at redigere transaktioner i denne kasseklade, så åbn venligst indstillingerne for underkonti og fjern tjekboksen for sumkonto. Du kan også åbne en individuel konto fremfor et sæt af konti."
+#: ../src/gnome/dialog-sx-editor2.c:201 ../src/gnome/dialog-sx-editor.c:202
+msgid "This Scheduled Transaction has changed; are you sure you want to cancel?"
+msgstr "Denne planlagte transaktion har ændret sig; er du sikker på, at du ønsker at afbryde?"
-#: ../src/gnome/gnc-split-reg.c:909
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:66
-msgid "Cannot modify or delete this transaction."
-msgstr "Kan ikke ændre eller slette denne transaktion."
+#: ../src/gnome/dialog-sx-editor2.c:648 ../src/gnome/dialog-sx-editor.c:655
+#, c-format
+msgid "Couldn't parse credit formula for split \"%s\"."
+msgstr "Kunne ikke fortolke kreditformel for opdeling »%s«."
-#: ../src/gnome/gnc-split-reg.c:911
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:68
+#: ../src/gnome/dialog-sx-editor2.c:676 ../src/gnome/dialog-sx-editor.c:683
#, c-format
-msgid "This transaction is marked read-only with the comment: '%s'"
-msgstr "Denne transaktion er markeret skrivebeskyttet med kommentaren: »%s«"
+msgid "Couldn't parse debit formula for split \"%s\"."
+msgstr "Kunne ikke fortolke debetformel for opdeling »%s«."
-#: ../src/gnome/gnc-split-reg.c:923
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:83
-msgid "The date of this transaction is older than the \"Read-Only Threshold\" set for this book. This setting can be changed in File -> Properties -> Accounts."
+#: ../src/gnome/dialog-sx-editor2.c:710 ../src/gnome/dialog-sx-editor.c:717
+#: ../src/gnome/dialog-sx-from-trans.c:260
+msgid "The Scheduled Transaction Editor cannot automatically balance this transaction. Should it still be entered?"
msgstr ""
-#: ../src/gnome/gnc-split-reg.c:959
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:841
-msgid "Remove the splits from this transaction?"
-msgstr "Fjern opdelingerne fra denne transaktion?"
+#: ../src/gnome/dialog-sx-editor2.c:731 ../src/gnome/dialog-sx-editor.c:738
+msgid "Please name the Scheduled Transaction."
+msgstr "Angiv venligst navn på den planlagte transaktion."
-#: ../src/gnome/gnc-split-reg.c:960
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:842
-msgid "This transaction contains reconciled splits. Modifying it is not a good idea because that will cause your reconciled balance to be off."
-msgstr ""
+#: ../src/gnome/dialog-sx-editor2.c:758 ../src/gnome/dialog-sx-editor.c:766
+#, c-format
+msgid "A Scheduled Transaction with the name \"%s\" already exists. Are you sure you want to name this one the same?"
+msgstr "En planlagt transaktion med navnet »%s« findes allerede. Er du sikker på, at du vil kalde den her det samme?"
-#: ../src/gnome/gnc-split-reg.c:987
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:888
-msgid "_Remove Splits"
-msgstr "_Fjern opdelinger"
+#: ../src/gnome/dialog-sx-editor2.c:786 ../src/gnome/dialog-sx-editor.c:794
+msgid "Scheduled Transactions with variables cannot be automatically created."
+msgstr "Planlagte transaktioner med variabler kan ikke oprettes automatisk."
-#: ../src/gnome/gnc-split-reg.c:1180
-msgid "This transaction is not associated with a URI."
-msgstr "Denne transaktion er ikke forbundet med en URI."
+#: ../src/gnome/dialog-sx-editor2.c:796 ../src/gnome/dialog-sx-editor.c:804
+msgid "Scheduled Transactions without a template transaction cannot be automatically created."
+msgstr "Planlagte transaktioner uden en skabelontransaktion kan ikke automatisk oprettes."
-#: ../src/gnome/gnc-split-reg.c:1236
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:964
-#, c-format
-msgid "Delete the split '%s' from the transaction '%s'?"
-msgstr "Slet opdelingen »%s« fra transaktionen »%s«?"
+#: ../src/gnome/dialog-sx-editor2.c:811 ../src/gnome/dialog-sx-editor.c:819
+msgid "Please provide a valid end selection."
+msgstr "Angiv venligst en gyldig slutmarkering."
-#: ../src/gnome/gnc-split-reg.c:1237
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:965
-msgid "You would be deleting a reconciled split! This is not a good idea as it will cause your reconciled balance to be off."
+#: ../src/gnome/dialog-sx-editor2.c:829 ../src/gnome/dialog-sx-editor.c:837
+msgid "There must be some number of occurrences."
msgstr ""
-#: ../src/gnome/gnc-split-reg.c:1240
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:968
-msgid "You cannot delete this split."
-msgstr "Du kan ikke slette denne opdeling."
+#: ../src/gnome/dialog-sx-editor2.c:838 ../src/gnome/dialog-sx-editor.c:846
+#, c-format
+msgid "The number of remaining occurrences (%d) is greater than the number of total occurrences (%d)."
+msgstr ""
-#: ../src/gnome/gnc-split-reg.c:1241
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:969
-msgid "This is the split anchoring this transaction to the register. You may not delete it from this register window. You may delete the entire transaction from this window, or you may navigate to a register that shows another side of this same transaction and delete the split from that register."
+#: ../src/gnome/dialog-sx-editor2.c:870 ../src/gnome/dialog-sx-editor.c:878
+msgid "You have attempted to create a Scheduled Transaction which will never run. Do you really want to do this?"
msgstr ""
-#: ../src/gnome/gnc-split-reg.c:1269
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:997
-msgid "(no memo)"
-msgstr "(intet notat)"
+#: ../src/gnome/dialog-sx-editor2.c:1316
+msgid "Note: If you have already accepted changes to the Template, Cancel will not revoke them."
+msgstr ""
-#: ../src/gnome/gnc-split-reg.c:1272
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1000
-msgid "(no description)"
-msgstr "(ingen beskrivelse)"
+#: ../src/gnome/dialog-sx-editor2.c:1363 ../src/gnome/dialog-sx-editor.c:1381
+msgid "(never)"
+msgstr "(aldrig)"
-#: ../src/gnome/gnc-split-reg.c:1313
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1041
-msgid "Delete the current transaction?"
-msgstr "Slet den nuværende transaktion?"
+#: ../src/gnome/dialog-sx-editor2.c:1531 ../src/gnome/dialog-sx-editor.c:1549
+msgid "The current template transaction has been changed. Would you like to record the changes?"
+msgstr "Den aktuelle skabelontransaktion er blevet ændret. Vil du gemme ændringerne?"
-#: ../src/gnome/gnc-split-reg.c:1314
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1042
-msgid "You would be deleting a transaction with reconciled splits! This is not a good idea as it will cause your reconciled balance to be off."
-msgstr "Du ville komme til at slette en transaktion med afstemte opsplitninger! Dette er ikke en god ide, da det vil medføre at den afstemte balance ikke længere stemmer."
+#: ../src/gnome/dialog-sx-editor2.c:1784 ../src/gnome/dialog-sx-editor.c:1814
+#: ../src/gnome/gnc-plugin-page-sx-list.c:243
+#: ../src/gnome/gnc-plugin-page-sx-list.c:249
+msgid "Scheduled Transactions"
+msgstr "Planlagte transaktioner"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:1
-msgid "GUID of predefined check format to use"
+#: ../src/gnome/dialog-sx-from-trans.c:557
+msgid "The Scheduled Transaction is unbalanced. You are strongly encouraged to correct this situation."
msgstr ""
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:2
-msgid "This value specifies the predefined check format to use. The number is the guid of a known check format."
+#: ../src/gnome/dialog-sx-from-trans.c:781
+msgid "Cannot create a Scheduled Transaction from a Transaction currently being edited. Please Enter the Transaction before Scheduling."
msgstr ""
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:3
-msgid "Which check position to print"
-msgstr ""
+#: ../src/gnome/dialog-sx-since-last-run.c:388
+msgid "Ignored"
+msgstr "Ignoreret"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:4
-msgid "On preprinted checks containing multiple checks per page, this setting specifies which check position to print. The possible values are 0, 1 and 2, corresponding to the top, middle and bottom checks on the page."
-msgstr ""
+#: ../src/gnome/dialog-sx-since-last-run.c:389
+msgid "Postponed"
+msgstr "Udsat"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:5
-msgid "Number of checks to print on the first page."
-msgstr ""
+#: ../src/gnome/dialog-sx-since-last-run.c:390
+msgid "To-Create"
+msgstr "At-oprette"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:6
-msgid "Date format to use"
-msgstr "Datoformat:"
+#: ../src/gnome/dialog-sx-since-last-run.c:391
+msgid "Reminder"
+msgstr "PÃ¥mindelse"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:7
-msgid "This is the numerical identifier of the predefined date format to use."
-msgstr ""
+#: ../src/gnome/dialog-sx-since-last-run.c:392
+msgid "Created"
+msgstr "Oprettet"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:8
-msgid "Custom date format"
-msgstr "Tilpasset datoformat"
+#: ../src/gnome/dialog-sx-since-last-run.c:455
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:89
+msgid "Never"
+msgstr "Aldrig"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:9
-msgid "If the date format is set to indicate a custom date format, this value is used as an argument to strftime to produce the date to be printed. It may be any valid strftime string; for more information about this format, read the manual page of strftime by \"man 3 strftime\"."
-msgstr ""
+#: ../src/gnome/dialog-sx-since-last-run.c:525
+msgid "(Need Value)"
+msgstr "(Kræver værdi)"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:10
-msgid "Units in which the custom coordinates are expressed"
-msgstr ""
+#: ../src/gnome/dialog-sx-since-last-run.c:830
+#, c-format
+msgid "There are no Scheduled Transactions to be entered at this time. (One transaction automatically created)"
+msgid_plural "There are no Scheduled Transactions to be entered at this time. (%d transactions automatically created)"
+msgstr[0] "Der er ingen Planlagte transaktioner til indtasnting på nuværende tidspunkt. (En transaktion blev automatisk oprettet)"
+msgstr[1] "Der er ingen Planlagte transaktioner til indtasnting på nuværende tidspunkt. (%d transaktioner blev automatisk oprettet)"
+
+#: ../src/gnome/dialog-sx-since-last-run.c:952
+#: ../src/gnome-search/dialog-search.c:1081
+msgid "Transaction"
+msgstr "Transaktion"
+
+#: ../src/gnome/dialog-sx-since-last-run.c:968
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:23
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:24
+msgid "Status"
+msgstr "Status"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:11
-msgid "Units in which the custom coordinates are expressed (inches, mm, ...)."
-msgstr ""
+#: ../src/gnome/dialog-sx-since-last-run.c:1049
+msgid "Created Transactions"
+msgstr "Oprettede transaktioner"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:12
-msgid "Position of payee name"
-msgstr ""
+#: ../src/gnome/dialog-tax-info.c:284
+msgid "Last Valid Year: "
+msgstr "Sidste gyldige år: "
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:13
-msgid "This value contains the X,Y coordinates for the start of the payee line on the check."
-msgstr "Denne værdi indeholder x- og y-koordinaterne på starten af modtageren af checken."
+#: ../src/gnome/dialog-tax-info.c:285
+msgid "Form Line Data: "
+msgstr "Formularlinjedata: "
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:14
-msgid "Position of date line"
-msgstr ""
+#: ../src/gnome/dialog-tax-info.c:286
+#: ../src/report/standard-reports/account-summary.scm:440
+#: ../src/report/standard-reports/sx-summary.scm:445
+msgid "Code"
+msgstr "Kode"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:15
-msgid "This value contains the X,Y coordinates for the start of the date line on the check. Coordinates are from the lower left corner of the specified check position."
-msgstr "Denne værdi indeholder x- og y-koordinaterne på starten af datolinjen på checken. Koordinaterne er fra det nedre venstre hjørne på den angivne checkposition."
+#: ../src/gnome/dialog-tax-info.c:361
+msgid "now"
+msgstr "nu"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:16
-msgid "Position of check amount in words"
-msgstr ""
+#: ../src/gnome/dialog-tax-info.c:1135
+msgid "Income Tax Identity"
+msgstr "Identitet for indtægtsskat"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:17
-msgid "This value contains the X,Y coordinates for the start of the written amount line on the check. Coordinates are from the lower left corner of the specified check position."
-msgstr "Denne værdi indeholder x- og y-koordinaterne på starten af linjen hvor beløbet skrives på checken. Koordinaterne er fra det nedre venstre hjørne på den angivne checkposition."
+#: ../src/gnome/dialog-tax-info.c:1199
+msgid "CAUTION: If you set TXF categories, and later change 'Type', you will need to manually reset those categories one at a time"
+msgstr "FORSIGTIG: Hvis du angiver TXF-kategorier og senere ændrer 'Type', så vil du manuelt skulle nulstille disse kategorier en ad gangen"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:18
-msgid "Position of check amount in numbers"
-msgstr "Placering af check-beløbet i tal"
+#: ../src/gnome/dialog-tax-info.c:1348
+msgid "Form"
+msgstr "Formular"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:19
-msgid "This value contains the X,Y coordinates for the start of the numerical amount line on the check. Coordinates are from the lower left corner of the specified check position."
-msgstr "Denne værdi indeholder x- og y-koordinaterne på starten af den numeriske beløbslinje på checken. Koordinaterne er fra det nedre venstre hjørne på den angivne checkposition."
+#: ../src/gnome/gnc-budget-view.c:355
+#: ../src/import-export/qif-imp/qif-dialog-utils.scm:60
+#: ../src/import-export/qif-imp/qif-dialog-utils.scm:65
+#: ../src/report/report-system/report-utilities.scm:118
+#: ../src/report/standard-reports/budget-income-statement.scm:674
+#: ../src/report/standard-reports/income-statement.scm:610
+msgid "Expenses"
+msgstr "Udgifter"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:20
-#, fuzzy
-msgid "Position of payee address"
-msgstr "Markørens farve"
+#: ../src/gnome/gnc-budget-view.c:357
+msgid "Transfers"
+msgstr "Overførsler"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:21
-#, fuzzy
-msgid "This value contains the X,Y coordinates for the start of the payee address line on the check. Coordinates are from the lower left corner of the specified check position."
-msgstr "Denne værdi indeholder x- og y-koordinaterne på starten af datolinjen på checken. Koordinaterne er fra det nedre venstre hjørne på den angivne checkposition."
+#. (if (gnc-numeric-negative-p total)
+#. (_ "Total Credit")
+#. (_ "Total Due")))
+#. Display Grand Total
+#: ../src/gnome/gnc-budget-view.c:359 ../src/gnome/gnc-budget-view.c:1070
+#: ../src/gnome-utils/gnc-tree-view-account.c:844
+#: ../src/report/business-reports/aging.scm:470
+#: ../src/report/business-reports/aging.scm:666
+#: ../src/report/business-reports/balsheet-eg.eguile.scm:120
+#: ../src/report/business-reports/customer-summary.scm:310
+#: ../src/report/business-reports/customer-summary.scm:954
+#: ../src/report/business-reports/easy-invoice.scm:126
+#: ../src/report/business-reports/easy-invoice.scm:289
+#: ../src/report/business-reports/fancy-invoice.scm:144
+#: ../src/report/business-reports/fancy-invoice.scm:299
+#: ../src/report/business-reports/invoice.scm:120
+#: ../src/report/business-reports/invoice.scm:284
+#: ../src/report/locale-specific/us/taxtxf-de_DE.scm:287
+#: ../src/report/report-system/html-acct-table.scm:899
+#: ../src/report/report-system/html-utilities.scm:619
+#: ../src/report/standard-reports/advanced-portfolio.scm:1043
+#: ../src/report/standard-reports/budget-flow.scm:170
+#: ../src/report/standard-reports/budget-flow.scm:252
+#: ../src/report/standard-reports/portfolio.scm:268
+msgid "Total"
+msgstr "Total"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:22
-msgid "Position of notes line"
-msgstr "Placering af linje for noter"
+#: ../src/gnome/gnc-plugin-account-tree.c:59
+msgid "New Accounts _Page"
+msgstr "Ny kontosi_de"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:23
-#, fuzzy
-msgid "This value contains the X,Y coordinates for the start of the notes line on the check. Coordinates are from the lower left corner of the specified check position."
-msgstr "Denne værdi indeholder x- og y-koordinaterne på starten af datolinjen på checken. Koordinaterne er fra det nedre venstre hjørne på den angivne checkposition."
+#: ../src/gnome/gnc-plugin-account-tree.c:60
+msgid "Open a new Account Tree page"
+msgstr "Ã
bn en ny kontotræ-side"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:24
-msgid "Position of memo line"
-msgstr ""
+#: ../src/gnome/gnc-plugin-basic-commands.c:107
+msgid "New _File"
+msgstr "Ny _fil"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:25
-msgid "This value contains the X,Y coordinates for the start of the memo line on the check. Coordinates are from the lower left corner of the specified check position."
-msgstr "Denne værdi indeholder x- og y-koordinaterne på starten af memolinjen på checken. Koordinaterne er fra det nedre venstre hjørne på den angivne checkposition."
+#: ../src/gnome/gnc-plugin-basic-commands.c:108
+msgid "Create a new file"
+msgstr "Opret en ny fil"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:26
-msgid "Offset for complete check"
-msgstr ""
+#: ../src/gnome/gnc-plugin-basic-commands.c:112
+msgid "_Open..."
+msgstr "_Ã
bn..."
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:27
-#, fuzzy
-msgid "This value contains the X,Y offset for the complete check. Coordinates are from the lower left corner of the specified check position."
-msgstr "Denne værdi indeholder x- og y-koordinaterne på starten af memolinjen på checken. Koordinaterne er fra det nedre venstre hjørne på den angivne checkposition."
+#: ../src/gnome/gnc-plugin-basic-commands.c:113
+msgid "Open an existing GnuCash file"
+msgstr "Ã
bn en eksisterende GnuCash-fil"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:28
-msgid "Rotation angle"
-msgstr "Rotationsvinkel"
+#: ../src/gnome/gnc-plugin-basic-commands.c:117
+msgid "_Save"
+msgstr "_Gem"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:29
-msgid "Number of degrees to rotate the check."
-msgstr "Antallet af grader checken skal roteres."
+#: ../src/gnome/gnc-plugin-basic-commands.c:118
+msgid "Save the current file"
+msgstr "Gem den aktuelle fil"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:30
-msgid "Position of split's amount in numbers"
-msgstr "Placering af opdelingsbeløb i tal"
+#: ../src/gnome/gnc-plugin-basic-commands.c:122
+msgid "Save _As..."
+msgstr "Ge_m som..."
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:31
-#, fuzzy
-msgid "This value contains the X,Y coordinates for the start of the split's amount line on the check. Coordinates are from the lower left corner of the specified check position."
-msgstr "Denne værdi indeholder x- og y-koordinaterne på starten af linjen hvor beløbet skrives på checken. Koordinaterne er fra det nedre venstre hjørne på den angivne checkposition."
+#: ../src/gnome/gnc-plugin-basic-commands.c:123
+msgid "Save this file with a different name"
+msgstr "Gem denne fil med et andet navn"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:32
-#, fuzzy
-msgid "Position of split's memo line"
-msgstr "Markørens farve"
+#: ../src/gnome/gnc-plugin-basic-commands.c:127
+msgid "Re_vert"
+msgstr "_Forkast"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:33
-#, fuzzy
-msgid "This value contains the X,Y coordinates for the start of the split's memo line on the check. Coordinates are from the lower left corner of the specified check position."
-msgstr "Denne værdi indeholder x- og y-koordinaterne på starten af memolinjen på checken. Koordinaterne er fra det nedre venstre hjørne på den angivne checkposition."
+#: ../src/gnome/gnc-plugin-basic-commands.c:128
+msgid "Reload the current database, reverting all unsaved changes"
+msgstr "Genindlæs nuværende database, forkast alle ugemte ændringer"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:34
-#, fuzzy
-msgid "Position of split's account line"
-msgstr "Sortér efter check/transaktionsnummer"
+#: ../src/gnome/gnc-plugin-basic-commands.c:133
+msgid "Export _Accounts"
+msgstr "Eksporter _konti"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:35
-#, fuzzy
-msgid "This value contains the X,Y coordinates for the start of the split's account line on the check. Coordinates are from the lower left corner of the specified check position."
-msgstr "Denne værdi indeholder x- og y-koordinaterne på starten af linjen hvor beløbet skrives på checken. Koordinaterne er fra det nedre venstre hjørne på den angivne checkposition."
+#: ../src/gnome/gnc-plugin-basic-commands.c:134
+msgid "Export the account hierarchy to a new GnuCash datafile"
+msgstr "Eksporter kontohierarkiet til en ny GnuCash-datafil"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:36
-msgid "Print the date format below the date."
-msgstr "Udskriv datoformatet neden under datoen."
+# eller find
+#: ../src/gnome/gnc-plugin-basic-commands.c:141
+#: ../src/gnome/gnc-plugin-page-register2.c:246
+#: ../src/gnome/gnc-plugin-page-register.c:251
+msgid "_Find..."
+msgstr "_Søg ..."
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:37
-msgid "Each time the date is printed, print the date format immediately below in 8 point type using the characters Y, M, and D."
-msgstr ""
+#: ../src/gnome/gnc-plugin-basic-commands.c:142
+#: ../src/gnome/gnc-plugin-page-register2.c:247
+#: ../src/gnome/gnc-plugin-page-register.c:252
+msgid "Find transactions with a search"
+msgstr "Find transaktioner med en søgning"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:38
-msgid "The default check printing font"
-msgstr "Standardskrifttypen til udskrivning af check"
+# nu er det ikke moms her vel? Den næste er indkomstskat, så er nok skat
+#: ../src/gnome/gnc-plugin-basic-commands.c:147
+msgid "Ta_x Report Options"
+msgstr "Rapportindstillinger for _skat"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:39
-msgid "The default font to use when printing checks. This value will be overridden by any font specified in a check description file."
-msgstr "Standardskrifttypen til brug for udskrivning af check. Denne værdi vil blive tilsidesat af en skrifttype angivet i en checkbeskrivelsesfil."
+#. Translators: currently implemented are *
+#. * US: income tax and *
+#. * DE: VAT *
+#. * So adjust this string
+#: ../src/gnome/gnc-plugin-basic-commands.c:152
+msgid "Setup relevant accounts for tax reports, e.g. US income tax"
+msgstr "Opsæt relevante konti for skatterapporter, f.eks. amerikansk indkomstskat"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:40
-msgid "Print '***' before and after text."
-msgstr "Udskriv »***« før og efter tekst."
+#. Actions menu
+#: ../src/gnome/gnc-plugin-basic-commands.c:158
+msgid "_Scheduled Transactions"
+msgstr "_Planlagte transaktioner"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.commodities.gschema.xml.in.in.h:1
-msgid "Show currencies in this dialog"
-msgstr "Vis valutaer i denne dialog"
+#: ../src/gnome/gnc-plugin-basic-commands.c:160
+msgid "_Scheduled Transaction Editor"
+msgstr "_Planlagt transaktionsredigeringsprogram"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:3
-msgid "Position of the horizontal pane divider."
-msgstr "Placering af den vandrette panelopdeler."
+#: ../src/gnome/gnc-plugin-basic-commands.c:161
+msgid "The list of Scheduled Transactions"
+msgstr "Listen over planlagte transaktioner"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:5
-msgid "This setting indicates whether to search in all items in the current class, or only in 'active' items in the current class."
-msgstr ""
+#: ../src/gnome/gnc-plugin-basic-commands.c:165
+msgid "Since _Last Run..."
+msgstr "Siden _sidste kørsel ..."
-#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:6
-#: ../src/import-export/aqb/gschemas/org.gnucash.dialogs.import.hbci.gschema.xml.in.in.h:17
-#: ../src/import-export/csv-exp/gschemas/org.gnucash.dialogs.export.csv.gschema.xml.in.in.h:3
-#: ../src/import-export/csv-imp/gschemas/org.gnucash.dialogs.import.csv.gschema.xml.in.in.h:3
-#: ../src/import-export/ofx/gschemas/org.gnucash.dialogs.import.ofx.gschema.xml.in.in.h:1
-#: ../src/import-export/qif-imp/gschemas/org.gnucash.dialogs.import.qif.gschema.xml.in.in.h:6
-msgid "Last pathname used"
-msgstr "Sidste stinavn brugt"
+#: ../src/gnome/gnc-plugin-basic-commands.c:166
+msgid "Create Scheduled Transactions since the last time run"
+msgstr "Opret planlagte transaktioner siden den sidste kørsel"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:7
-#: ../src/import-export/aqb/gschemas/org.gnucash.dialogs.import.hbci.gschema.xml.in.in.h:18
-#: ../src/import-export/csv-exp/gschemas/org.gnucash.dialogs.export.csv.gschema.xml.in.in.h:4
-#: ../src/import-export/csv-imp/gschemas/org.gnucash.dialogs.import.csv.gschema.xml.in.in.h:4
-#: ../src/import-export/ofx/gschemas/org.gnucash.dialogs.import.ofx.gschema.xml.in.in.h:2
-#: ../src/import-export/qif-imp/gschemas/org.gnucash.dialogs.import.qif.gschema.xml.in.in.h:7
-msgid "This field contains the last pathname used by this window. It will be used as the initial filename/pathname the next time this window is opened."
+#: ../src/gnome/gnc-plugin-basic-commands.c:170
+msgid "_Mortgage & Loan Repayment..."
msgstr ""
-#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:8
-#, fuzzy
-msgid "Position of the vertical pane divider."
-msgstr "Markørens farve"
-
-#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:9
-msgid "Show the new user window"
-msgstr "Vis vinduet for ny bruger"
+#: ../src/gnome/gnc-plugin-basic-commands.c:171
+msgid "Setup scheduled transactions for repayment of a loan"
+msgstr "Opsæt planlagte transaktioner for tilbagebetaling af et lån"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:10
-msgid "If active, the new user window will be shown. Otherwise it will not be shown."
-msgstr "Hvis aktiv, vil det nye brugervindue blive vist. Ellers vil det ikke blive vist."
+#: ../src/gnome/gnc-plugin-basic-commands.c:174
+#: ../src/report/report-system/report.scm:67
+msgid "B_udget"
+msgstr "B_udget"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:11
-msgid "New hierarchy window on \"New File\""
-msgstr "Nyt hierarkivindue på »Ny fil«"
+#: ../src/gnome/gnc-plugin-basic-commands.c:177
+msgid "Close _Books"
+msgstr "Luk _bøger"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:12
-msgid "If active, the \"New Hierarchy\" window will be shown whenever the \"New File\" menu item is chosen. Otherwise it will not be shown."
-msgstr ""
+#: ../src/gnome/gnc-plugin-basic-commands.c:178
+msgid "Archive old data using accounting periods"
+msgstr "Arkiver gamle data med brug af bogføringsperioder"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:13
-msgid "Default to 'new search' if fewer than this number of items is returned"
-msgstr ""
+#: ../src/gnome/gnc-plugin-basic-commands.c:186
+msgid "_Price Editor"
+msgstr "_Prisredigering"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:1
-msgid "Pre-select cleared transactions"
-msgstr "Forhåndsvælg ryddede transaktioner"
+#: ../src/gnome/gnc-plugin-basic-commands.c:187
+msgid "View and edit the prices for stocks and mutual funds"
+msgstr "Vis og ændr priserne på aktier og investeringsbeviser"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:2
-msgid "If active, all transactions marked as cleared in the register will appear already selected in the reconcile dialog. Otherwise no transactions will be initially selected."
-msgstr ""
+#: ../src/gnome/gnc-plugin-basic-commands.c:191
+msgid "_Security Editor"
+msgstr "Redigeringsprogram for _værdipapir"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:3
-msgid "Prompt for interest charges"
-msgstr ""
+#: ../src/gnome/gnc-plugin-basic-commands.c:192
+msgid "View and edit the commodities for stocks and mutual funds"
+msgstr "Vis og ændr varerne for aktier og investeringsbeviser"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:4
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:118
-msgid "Prior to reconciling an account which charges or pays interest, prompt the user to enter a transaction for the interest charge or payment. Currently only enabled for Bank, Credit, Mutual, Asset, Receivable, Payable, and Liability accounts."
-msgstr ""
+#: ../src/gnome/gnc-plugin-basic-commands.c:196
+msgid "_Loan Repayment Calculator"
+msgstr "_Lommeregner for tilbagebetaling af lån"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:5
-#, fuzzy
-msgid "Prompt for credit card payment"
-msgstr "Automatiske kreditkortbetalinger"
+#: ../src/gnome/gnc-plugin-basic-commands.c:197
+msgid "Use the loan/mortgage repayment calculator"
+msgstr "Brug tilbagebetalingslommeregneren for lån/boliggæld"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:6
-#, fuzzy
-msgid "If active, after reconciling a credit card account, prompt the user to enter a credit card payment. Otherwise do not prompt the user for this."
-msgstr "Bed brugeren angive en kreditkorts-indbetaling efter afstemning af et kreditkortsudtog"
+#: ../src/gnome/gnc-plugin-basic-commands.c:201
+msgid "_Close Book"
+msgstr "_Luk bog"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:7
-#, fuzzy
-msgid "Always reconcile to today"
-msgstr "Vis datoen?"
+#: ../src/gnome/gnc-plugin-basic-commands.c:202
+msgid "Close the Book at the end of the Period"
+msgstr "Luk bogen når perioden slutter"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:8
-msgid "If active, always open the reconcile dialog using today's date for the statement date, regardless of previous reconciliations."
-msgstr ""
+#: ../src/gnome/gnc-plugin-basic-commands.c:209
+msgid "_Tips Of The Day"
+msgstr "Dagens _tips"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:3
-#, fuzzy
-#| msgid "Show the \"since last run\" window when a file is opened."
-msgid "Run \"since last run\" dialog when a file is opened."
-msgstr "Vis »siden sidste kørsel«-vinduet når en fil åbnes."
+#: ../src/gnome/gnc-plugin-basic-commands.c:210
+msgid "View the Tips of the Day"
+msgstr "Vis dagens Tip"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:4
-msgid "This setting controls whether the scheduled transactions \"since last run\" processing is run automatically when a data file is opened. This includes the initial opening of the data file when GnuCash starts. If this setting is active, run the \"since last run\" process, otherwise it is not run."
+#: ../src/gnome/gnc-plugin-basic-commands.c:546
+msgid "There are no Scheduled Transactions to be entered at this time."
msgstr ""
-#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:5
-#, fuzzy
-#| msgid "Show the \"since last run\" window when a file is opened."
-msgid "Show \"since last run\" notification dialog when a file is opened."
-msgstr "Vis »siden sidste kørsel«-vinduet når en fil åbnes."
+#. Translators: %d is the number of transactions. This is a
+#. ngettext(3) message.
+#: ../src/gnome/gnc-plugin-basic-commands.c:577
+#, c-format
+msgid "There are no Scheduled Transactions to be entered at this time. (%d transaction automatically created)"
+msgid_plural "There are no Scheduled Transactions to be entered at this time. (%d transactions automatically created)"
+msgstr[0] "Der er ingen Planlagte transaktioner til indtastning på nuværende tidspunkt. (%d transaktion blev automatisk oprettet)"
+msgstr[1] "Der er ingen Planlagte transaktioner til indtastning på nuværende tidspunkt. (%d transaktioner blev automatisk oprettet)"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:6
-msgid "This setting controls whether the scheduled transactions notification-only \"since last run\" dialog is shown when a data file is opened (if \"since last run\" processing is enabled on file open). This includes the initial opening of the data file when GnuCash starts. If this setting is active, show the dialog, otherwise it is not shown."
-msgstr ""
+#: ../src/gnome/gnc-plugin-budget.c:59
+msgid "New Budget"
+msgstr "Nyt budget"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:7
-msgid "Set the \"auto create\" flag by default"
-msgstr ""
+#: ../src/gnome/gnc-plugin-budget.c:60
+msgid "Create a new Budget"
+msgstr "Opret et nyt budget"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:8
-msgid "If active, any newly created scheduled transaction will have its 'auto create' flag set active by default. The user can change this flag during transaction creation, or at any later time by editing the scheduled transaction."
-msgstr ""
+#: ../src/gnome/gnc-plugin-budget.c:65
+msgid "Open Budget"
+msgstr "Ã
bn budget"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:9
-msgid "How many days in advance to notify the user."
-msgstr "Hvor mange dage i forvejen, brugeren skal have besked."
+#: ../src/gnome/gnc-plugin-budget.c:66
+msgid "Open an existing Budget"
+msgstr "Ã
bn et eksisterende budget"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:10
-#, fuzzy
-msgid "Set the \"notify\" flag by default"
-msgstr "Sæt valgmuligheden til dens standardværdi"
+#: ../src/gnome/gnc-plugin-budget.c:71
+msgid "Copy Budget"
+msgstr "Kopier budget"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:11
-msgid "If active, any newly created scheduled transaction will have its 'notify' flag set by default. The user can change this flag during transaction creation, or at any later time by editing the scheduled transaction. This setting only has meaning if the create-auto setting is active."
-msgstr ""
+#: ../src/gnome/gnc-plugin-budget.c:72
+msgid "Copy an existing Budget"
+msgstr "Kopier et eksisterende budget"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:12
-msgid "How many days in advance to remind the user."
-msgstr "Hvor mange dage i forvejen, brugeren skal huskes på."
+#: ../src/gnome/gnc-plugin-budget.c:287
+msgid "Select a Budget"
+msgstr "Vælg et budget"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.totd.gschema.xml.in.in.h:1
-msgid "The next tip to show."
-msgstr "Det næste tip."
+#: ../src/gnome/gnc-plugin-page-account-tree.c:166
+msgid "Create a new Account"
+msgstr "Opret en ny konto"
-#: ../src/gnome/gschemas/org.gnucash.dialogs.totd.gschema.xml.in.in.h:4
-msgid "Show \"Tip Of The Day\" at GnuCash start"
-msgstr "Vis »Dagens tip« når GnuCash startes"
+#: ../src/gnome/gnc-plugin-page-account-tree.c:170
+msgid "New Account _Hierarchy..."
+msgstr "Nyt konto_hierarki..."
-#: ../src/gnome/gschemas/org.gnucash.dialogs.totd.gschema.xml.in.in.h:5
-msgid "Enables the \"Tip Of The Day\" when GnuCash starts up. If active, the dialog will be shown. Otherwise it will not be shown."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-account-tree.c:171
+msgid "Extend the current book by merging with new account type categories"
+msgstr "Udvid den nuværende bog ved at sammenføje nye kontotypekategorier"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:1
-msgid "Save window sizes and locations"
-msgstr "Gem vinduesstørrelser og -positioner"
+#: ../src/gnome/gnc-plugin-page-account-tree.c:176
+#: ../src/gnome/gnc-plugin-page-account-tree.c:187
+#: ../src/gnome/gnc-plugin-page-account-tree.c:280
+#: ../src/gnome/gnc-plugin-page-budget.c:126
+msgid "Open _Account"
+msgstr "_Ã
bn konto"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:2
-msgid "If active, the size and location of each dialog window will be saved when it is closed. The sizes and locations of content windows will be remembered when you quit GnuCash. Otherwise the sizes will not be saved."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-account-tree.c:177
+#: ../src/gnome/gnc-plugin-page-account-tree.c:188
+#: ../src/gnome/gnc-plugin-page-account-tree.c:281
+#: ../src/gnome/gnc-plugin-page-budget.c:127
+msgid "Open the selected account"
+msgstr "Ã
bn den valgte konto"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:3
+#: ../src/gnome/gnc-plugin-page-account-tree.c:181
#, fuzzy
-msgid "Character to use as separator between account names"
-msgstr "Tegnet bruges til at adskille fuldt kvalificerede kontonavne"
+msgid "Open _Old Style Register Account"
+msgstr "Ã
bn den valgte konto"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:4
-msgid "This setting determines the character that will be used between components of an account name. Possible values are any single non-alphanumeric unicode character, or any of the following strings: \"colon\" \"slash\", \"backslash\", \"dash\" and \"period\"."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-account-tree.c:182
+#, fuzzy
+msgid "Open the old style register selected account"
+msgstr "Ã
bn den valgte konto"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:5
-msgid "Compress the data file"
-msgstr "Komprimer datafilen"
+#: ../src/gnome/gnc-plugin-page-account-tree.c:195
+#: ../src/gnome/gnc-plugin-page-account-tree.c:206
+#: ../src/gnome/gnc-plugin-page-account-tree.c:285
+msgid "Open _SubAccounts"
+msgstr "Ã
bn _underkonti"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:6
-msgid "Enables file compression when writing the data file."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-account-tree.c:196
+#: ../src/gnome/gnc-plugin-page-account-tree.c:207
+#: ../src/gnome/gnc-plugin-page-account-tree.c:286
+#: ../src/gnome/gnc-plugin-page-budget.c:133
+msgid "Open the selected account and all its subaccounts"
+msgstr "Ã
bn den valgte konto og alle dens underkonti"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:7
+#: ../src/gnome/gnc-plugin-page-account-tree.c:200
+msgid "Open Old St_yle Subaccounts"
+msgstr "Ã
bn underkonti i gammel _stil"
+
+#: ../src/gnome/gnc-plugin-page-account-tree.c:201
#, fuzzy
-msgid "Show auto-save explanation"
-msgstr "Vis GnuCash's brugsbeskrivelse"
+msgid "Open the old style register selected account and all its subaccounts"
+msgstr "Ã
bn den valgte konto og alle dens underkonti"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:8
-msgid "If active, GnuCash shows an explanation of the auto-save feature the first time that feature is started. Otherwise no extra explanation is shown."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-account-tree.c:214
+#: ../src/gnome/gnc-plugin-page-register2.c:241
+#: ../src/gnome/gnc-plugin-page-register.c:246
+msgid "Edit _Account"
+msgstr "Rediger _konto"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:9
-msgid "Auto-save time interval"
-msgstr "Gem automatisk tidsinterval"
+#: ../src/gnome/gnc-plugin-page-account-tree.c:215
+#: ../src/gnome/gnc-plugin-page-register2.c:242
+#: ../src/gnome/gnc-plugin-page-register.c:247
+msgid "Edit the selected account"
+msgstr "Redigér den valgte konto"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:10
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:85
-msgid "The number of minutes until saving of the data file to harddisk will be started automatically. If zero, no saving will be started automatically."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-account-tree.c:219
+msgid "_Delete Account..."
+msgstr "_Slet konto ..."
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:11
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:95
-msgid "Enable timeout on \"Save changes on closing\" question"
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-account-tree.c:220
+msgid "Delete selected account"
+msgstr "Slet den valgte konto"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:12
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:96
-msgid "If enabled, the \"Save changes on closing\" question will only wait a limited number of seconds for an answer. If the user didn't answer within that time, the changes will be saved automatically and the question window closed."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-account-tree.c:224
+msgid "_Renumber Subaccounts..."
+msgstr "_Giv nye numre til underkonti ..."
+
+#: ../src/gnome/gnc-plugin-page-account-tree.c:225
+msgid "Renumber the children of the selected account"
+msgstr "Giv underkontiene for den valgte konto nye numre"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:13
-msgid "Time to wait for answer"
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-account-tree.c:237
+#: ../src/gnome/gnc-plugin-page-register2.c:336
+#: ../src/gnome/gnc-plugin-page-register.c:345
+msgid "_Reconcile..."
+msgstr "_Afstem..."
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:14
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:98
-msgid "The number of seconds to wait before the question window will be closed and the changes saved automatically."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-account-tree.c:238
+#: ../src/gnome/gnc-plugin-page-register2.c:337
+#: ../src/gnome/gnc-plugin-page-register.c:346
+msgid "Reconcile the selected account"
+msgstr "Afstem den valgte konto"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:15
-msgid "Display negative amounts in red"
-msgstr "Vis negative beløb med rødt"
+#: ../src/gnome/gnc-plugin-page-account-tree.c:242
+#: ../src/gnome/gnc-plugin-page-register2.c:341
+#: ../src/gnome/gnc-plugin-page-register.c:350
+msgid "_Auto-clear..."
+msgstr "_Autoryd ..."
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:16
-msgid "Automatically insert a decimal point"
-msgstr "Indsæt automatisk et decimaltegn"
+#: ../src/gnome/gnc-plugin-page-account-tree.c:243
+msgid "Automatically clear individual transactions, given a cleared amount"
+msgstr ""
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:17
-#, fuzzy
-msgid "If active, GnuCash will automatically insert a decimal point into values that are entered without one. Otherwise GnuCash will not modify entered numbers."
-msgstr "Indsæt automatisk et decimaltegn i værdier, der indtastes uden et sådant."
+#: ../src/gnome/gnc-plugin-page-account-tree.c:247
+#: ../src/gnome/gnc-plugin-page-register2.c:331
+#: ../src/gnome/gnc-plugin-page-register.c:340
+#: ../src/gnome-utils/gnc-icons.c:23 ../src/gnome/window-reconcile2.c:2184
+#: ../src/gnome/window-reconcile.c:2184
+msgid "_Transfer..."
+msgstr "_Overfør..."
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:18
-#, fuzzy
-msgid "Number of automatic decimal places"
-msgstr "Hvor mange pladser efter kommaet der skal udfyldes."
+#: ../src/gnome/gnc-plugin-page-account-tree.c:248
+#: ../src/gnome/gnc-plugin-page-register2.c:332
+#: ../src/gnome/gnc-plugin-page-register.c:341
+#: ../src/gnome/window-reconcile2.c:2185 ../src/gnome/window-reconcile.c:2185
+msgid "Transfer funds from one account to another"
+msgstr "Overfør beløb fra en konto til en anden"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:19
-#, fuzzy
-msgid "This field specifies the number of automatic decimal places that will be filled in."
-msgstr "Hvor mange pladser efter kommaet der skal udfyldes."
+#: ../src/gnome/gnc-plugin-page-account-tree.c:252
+#: ../src/gnome/gnc-plugin-page-register2.c:346
+#: ../src/gnome/gnc-plugin-page-register.c:355
+msgid "Stoc_k Split..."
+msgstr "Ak_tieopsplitning..."
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:20
-msgid "Tool to migrate preferences from old backend (CGonf) to new one (GSettings) has run successfully."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-account-tree.c:253
+#: ../src/gnome/gnc-plugin-page-register2.c:347
+#: ../src/gnome/gnc-plugin-page-register.c:356
+msgid "Record a stock split or a stock merger"
+msgstr "Registrér en aktieopsplitning eller -sammenlægning"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:21
-msgid "GnuCash switched to another backend to store user preferences between 2.4 and 2.6. To smooth the transition, most preferences will be migrated the first time a 2.6 version of GnuCash is run. This migration should only run once. This preference keeps track whether or not this migration tool has run successfully."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-account-tree.c:257
+#: ../src/gnome/gnc-plugin-page-register2.c:351
+#: ../src/gnome/gnc-plugin-page-register.c:360
+msgid "View _Lots..."
+msgstr "Vis _afkast ..."
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:22
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:90
-#, fuzzy
-msgid "Do not create log/backup files."
-msgstr "Kunne ikke oprette åbningssaldo"
+#: ../src/gnome/gnc-plugin-page-account-tree.c:258
+#: ../src/gnome/gnc-plugin-page-register2.c:352
+#: ../src/gnome/gnc-plugin-page-register.c:361
+msgid "Bring up the lot viewer/editor window"
+msgstr "Vis fremviseren/redigeringsvinduet for afkast"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:23
-msgid "This setting specifies what to do with old log/backups files. \"forever\" means keep all old files. \"never\" means no old log/backup files are kept. Each time you save, older versions of the file are removed. \"days\" means keep old files for a number of days. How many days is defined in key 'retain-days'"
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-account-tree.c:262
+msgid "Check & Repair A_ccount"
+msgstr "Kontroller og reparer _konto"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:24
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:92
-msgid "Delete old log/backup files after this many days (0 = never)."
-msgstr "Slet gamle logge og sikkerhedskopier efter dette antal dage (0 = aldrig)."
+#: ../src/gnome/gnc-plugin-page-account-tree.c:263
+#: ../src/gnome/window-reconcile2.c:2190 ../src/gnome/window-reconcile.c:2190
+msgid "Check for and repair unbalanced transactions and orphan splits in this account"
+msgstr "Kontroller og reparer ubalancerede transaktioner og opdelinger uden ejer i denne konto"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:25
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:94
-msgid "Do not delete log/backup files."
-msgstr "Slet ikke logge og sikkerhedskopier."
+#: ../src/gnome/gnc-plugin-page-account-tree.c:267
+msgid "Check & Repair Su_baccounts"
+msgstr "Kontroller og reparer _underkonti"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:26
-msgid "Delete old log/backup files after this many days (0 = never)"
-msgstr "Slet gamle logge og sikkerhedskopier efter dette antal dage (0 = aldrig)"
+#: ../src/gnome/gnc-plugin-page-account-tree.c:268
+msgid "Check for and repair unbalanced transactions and orphan splits in this account and its subaccounts"
+msgstr "Kontroller og reparer ubalancerede transaktioner og opdelinger uden ejer i denne konto og dens underkonti"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:27
-msgid "This setting specifies the number of days after which old log/backup files will be deleted (0 = never)."
-msgstr "Denne indstilling angiver det antal dage hvorefter gamle sikkerhedsfiler vil blive slettet (0 = aldrig)."
+#: ../src/gnome/gnc-plugin-page-account-tree.c:273
+msgid "Check & Repair A_ll"
+msgstr "Kontroller og reparr _alt"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:28
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:23
-msgid "Don't sign reverse any accounts."
-msgstr "Skift ikke fortegn for nogen konto."
+#: ../src/gnome/gnc-plugin-page-account-tree.c:274
+msgid "Check for and repair unbalanced transactions and orphan splits in all accounts"
+msgstr "Kontroller og reparer ubalancerede transaktioner og opdelinger uden ejer i alle konti"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:29
-msgid "This setting allows certain accounts to have their balances reversed in sign from positive to negative, or vice versa. The setting \"income-expense\" is for users who like to see negative expenses and positive income. The setting of \"credit\" is for users who want to see balances reflect the debit/credit status of the account. The setting \"none\" doesn't reverse the sign on any balances."
-msgstr ""
+#. Extensions Menu
+#: ../src/gnome/gnc-plugin-page-account-tree.c:278
+#: ../src/gnome/gnc-plugin-register2.c:64
+msgid "_Register2"
+msgstr "_Kassekladde2"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:30
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:25
-#, fuzzy
-msgid "Sign reverse balances on the following: Credit Card, Payable, Liability, Equity, and Income."
-msgstr "Skift fortegn for kreditkort-, passiv-, udlignings- og indtægtskonti."
+#: ../src/gnome/gnc-plugin-page-account-tree.c:341
+msgid "Open2"
+msgstr "Ã
bn2"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:31
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:27
-#, fuzzy
-msgid "Sign reverse balances on income and expense accounts."
-msgstr "Skift fortegn for indtægts- og udgiftskonti"
+#. FIXME this needs an indent option
+#. FIXME this could use an indent option
+#. FIXME this needs an indent option
+#.
+#. * Various option sections and options within those sections
+#. * The untranslated string is used for the key in the KVP
+#. * The translated string appears as the tab name and as the
+#. * text associated with the option selector on the tab
+#.
+#: ../src/gnome/gnc-plugin-page-account-tree.c:436
+#: ../src/gnome/gnc-plugin-page-account-tree.c:442
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2929
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2931
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2933
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2935
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2946
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2950
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:43
+#: ../src/report/report-system/report.scm:72
+#: ../src/report/standard-reports/account-piecharts.scm:68
+#: ../src/report/standard-reports/account-summary.scm:75
+#: ../src/report/standard-reports/advanced-portfolio.scm:158
+#: ../src/report/standard-reports/average-balance.scm:69
+#: ../src/report/standard-reports/average-balance.scm:318
+#: ../src/report/standard-reports/balance-sheet.scm:88
+#: ../src/report/standard-reports/budget-balance-sheet.scm:53
+#: ../src/report/standard-reports/budget-barchart.scm:44
+#: ../src/report/standard-reports/budget-income-statement.scm:77
+#: ../src/report/standard-reports/category-barchart.scm:81
+#: ../src/report/standard-reports/daily-reports.scm:61
+#: ../src/report/standard-reports/equity-statement.scm:70
+#: ../src/report/standard-reports/income-statement.scm:64
+#: ../src/report/standard-reports/net-barchart.scm:53
+#: ../src/report/standard-reports/net-linechart.scm:49
+#: ../src/report/standard-reports/portfolio.scm:71
+#: ../src/report/standard-reports/sx-summary.scm:56
+#: ../src/report/standard-reports/transaction.scm:652
+#: ../src/report/standard-reports/trial-balance.scm:77
+#: ../src/libqof/qof/qofbookslots.h:65
+msgid "Accounts"
+msgstr "Konti"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:32
-msgid "Use account colors in the account hierarchy"
-msgstr "Brug kontofarver i kontohierarket"
+#: ../src/gnome/gnc-plugin-page-account-tree.c:1200
+#, c-format
+msgid "Deleting account %s"
+msgstr "Sletter konto %s"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:33
-msgid "If active the account hierarchy will colorize the account using the account's custom color if set. This can serve as a visual aid to quickly identify accounts."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-account-tree.c:1324
+#, c-format
+msgid "The account %s will be deleted."
+msgstr "Kontoen %s vil blive slettet."
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:34
-msgid "Use account colors in the tabs of open account registers"
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-account-tree.c:1337
+#, c-format
+msgid "All transactions in this account will be moved to the account %s."
+msgstr "Alle transaktioner på denne konto vil blive flyttet til kontoen %s."
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:35
-msgid "If active the account register tabs will be colored using the account's custom color if set. This can serve as a visual aid to quickly identify accounts."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-account-tree.c:1343
+msgid "All transactions in this account will be deleted."
+msgstr "Alle transaktioner på denne konto vil blive slettet."
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:36
-#, fuzzy
-msgid "Use formal account labels"
-msgstr "Brug bogføringsetiketter"
+#: ../src/gnome/gnc-plugin-page-account-tree.c:1352
+#, c-format
+msgid "All of its sub-accounts will be moved to the account %s."
+msgstr "Alle dens underkonti vil blive flyttet til kontoen %s."
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:37
-msgid "If active, formal accounting labels \"Credit\" and \"Debit\" will be used when designating fields on screen. Otherwise, informal labels such as Increase/Decrease, \"Funds In\"/\"Funds Out\", etc. will be used."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-account-tree.c:1358
+msgid "All of its subaccounts will be deleted."
+msgstr "Alle dens underkonti vil blive slettet."
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:38
-msgid "Show close buttons on notebook tabs"
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-account-tree.c:1363
+#, c-format
+msgid "All sub-account transactions will be moved to the account %s."
+msgstr "Alle underkontotransaktioner vil blive flyttet til kontoen %s."
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:39
-msgid "If active, a \"close\" button will be displayed on any notebook tab that may be closed. Otherwise, no such button will be shown on the tab. Regardless of this setting, pages can always be closed via the \"close\" menu item or the \"close\" button on toolbar."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-account-tree.c:1369
+msgid "All sub-account transactions will be deleted."
+msgstr "Alle underkontotransaktioner vil blive slettet."
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:40
-msgid "Width of notebook tabs"
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-account-tree.c:1374
+msgid "Are you sure you want to do this?"
+msgstr "Er du sikker på, du ønsker dette?"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:41
-msgid "This key specifies the maximum width of notebook tabs. If the text in the tab is longer than this value (the test is approximate) then the tab label will have the middle cut and replaced with an ellipsis."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-budget.c:132
+msgid "Open _Subaccounts"
+msgstr "Ã
bn _underkonti"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:42
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:32
-msgid "Use the system locale currency for all newly created accounts."
-msgstr "Benyt systemets regionsvaluta for alle nye konti."
+#: ../src/gnome/gnc-plugin-page-budget.c:139
+msgid "_Delete Budget"
+msgstr "_Slet budget"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:43
-msgid "This setting controls the source of the default currency for new accounts. If set to \"locale\" then GnuCash will retrieve the default currency from the user's locale setting. If set to \"other\", GnuCash will use the setting specified by the currency-other key."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-budget.c:140
+msgid "Delete this budget"
+msgstr "Slet dette budget"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:44
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:34
-msgid "Use the specified currency for all newly created accounts."
-msgstr "Brug den angivne valuta for alle nyoprettede konti."
+#: ../src/gnome/gnc-plugin-page-budget.c:144
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:11
+msgid "Budget Options"
+msgstr "Budgetindstillinger"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:45
-msgid "Default currency for new accounts"
-msgstr "Standardvaluta for nye konti"
+#: ../src/gnome/gnc-plugin-page-budget.c:145
+msgid "Edit this budget's options"
+msgstr "Rediger dette budgets indstillinger"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:46
-msgid "This setting specifies the default currency used for new accounts if the currency-choice setting is set to \"other\". This field must contain the three letter ISO 4217 code for a currency (e.g. USD, GBP, RUB)."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-budget.c:149
+msgid "Estimate Budget"
+msgstr "Estimer budget"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:47
-msgid "Use 24 hour time format"
-msgstr "Brug 24-timers tidsformat"
+#: ../src/gnome/gnc-plugin-page-budget.c:151
+msgid "Estimate a budget value for the selected accounts from past transactions"
+msgstr "Estimer en budgetværdi for de valgte konti ud fra tidligere transaktioner"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:48
-msgid "If active, use a 24 hour time format. Otherwise use a 12 hour time format."
-msgstr "Hvis aktiv, brug et 24-timers tidsformat. Ellers bruges et 12-timers tidsformat."
+#: ../src/gnome/gnc-plugin-page-budget.c:178
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:12
+#: ../src/report/report-gnome/gnc-plugin-page-report.c:1088
+msgid "Options"
+msgstr "Indstillinger"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:49
-msgid "Date format choice"
-msgstr "Valg af datoformat"
+#: ../src/gnome/gnc-plugin-page-budget.c:179
+msgid "Estimate"
+msgstr "Estimer"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:50
-msgid "This setting chooses the way dates are displayed in GnuCash. Possible values for this setting are \"locale\" to use the system locale setting, \"ce\" for Continental Europe style dates, \"iso\" for ISO 8601 standard dates , \"uk\" for United Kingdom style dates, and \"us\" for United States style dates."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-budget.c:272
+#: ../src/gnome/gnc-plugin-page-budget.c:314
+#: ../src/gnome/gnc-plugin-page-budget.c:801
+#: ../src/report/standard-reports/budget-balance-sheet.scm:111
+#: ../src/report/standard-reports/budget-barchart.scm:45
+#: ../src/report/standard-reports/budget-barchart.scm:106
+#: ../src/report/standard-reports/budget-flow.scm:45
+#: ../src/report/standard-reports/budget-income-statement.scm:59
+#: ../src/report/standard-reports/budget.scm:71
+msgid "Budget"
+msgstr "Budget"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:51
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:51
-msgid "In the current calendar year"
-msgstr "Det nuværende kalenderår"
+#: ../src/gnome/gnc-plugin-page-budget.c:840
+#, c-format
+msgid "Delete %s?"
+msgstr "Slet %s?"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:52
-msgid "When a date is entered without year it can be completed so that it will be within the current calendar year or close to the current date based on a sliding window starting a set number of months backwards in time."
-msgstr "Når en dato indtastes uden angivelse af år, så kan året automatisk udfyldes inden for det nuværende kalenderår eller tæt på den nuværende dato baseret på et glidende vindue, der begynder et angivet antal måneder tilbage i tid."
+#: ../src/gnome/gnc-plugin-page-budget.c:911
+msgid "You must select at least one account to estimate."
+msgstr "Du skal vælge mindst én konto at estimere."
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:53
-msgid "In a sliding 12-month window starting a configurable number of months before the current month"
-msgstr "I et glidende 12-måneders vindue der starter et indstillet antal af måneder før den nuværende måned"
+#. **********************************************************
+#. Actions
+#. **********************************************************
+#: ../src/gnome/gnc-plugin-page-register2.c:190
+#: ../src/gnome/gnc-plugin-page-register.c:192
+msgid "Cu_t Transaction"
+msgstr "_Klip transaktion"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:54
-msgid "Maximum number of months to go back."
-msgstr "Maksimalt antal måneder tilbage i tiden."
+#: ../src/gnome/gnc-plugin-page-register2.c:191
+#: ../src/gnome/gnc-plugin-page-register.c:193
+msgid "_Copy Transaction"
+msgstr "_Kopier transaktion"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:55
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:55
-msgid "Dates will be completed so that they are close to the current date. Enter the maximum number of months to go backwards in time when completing dates."
-msgstr "Datoer vil blive automatisk udfyldt, så de er tæt på den nuværende dato. Indtast det maksimale antal måneder der skal gås tilbage i tid, når datoer automatisk skal udfyldes."
+#: ../src/gnome/gnc-plugin-page-register2.c:192
+#: ../src/gnome/gnc-plugin-page-register.c:194
+msgid "_Paste Transaction"
+msgstr "_Indsæt transaktion"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:56
-msgid "Show splash screen"
-msgstr "Vis opstartsskærm"
+#: ../src/gnome/gnc-plugin-page-register2.c:193
+#: ../src/gnome/gnc-plugin-page-register.c:195
+msgid "Dup_licate Transaction"
+msgstr "_Dupliker transaktion"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:57
-msgid "If active, a splash screen will be shown at startup. Otherwise no splash screen will be shown."
-msgstr "Hvis aktiv, vil en opstartsskærm blive vist ved opstart. Ellers vil en opstartsskærm ikke blive vist."
+#: ../src/gnome/gnc-plugin-page-register2.c:194
+#: ../src/gnome/gnc-plugin-page-register.c:196
+#: ../src/gnome/gnc-split-reg.c:1337
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1065
+msgid "_Delete Transaction"
+msgstr "_Slet transaktion"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:58
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:176
-msgid "Display the notebook tabs at the top of the window."
-msgstr "Vis notesbogfanebladene øverst i vinduet."
+#: ../src/gnome/gnc-plugin-page-register2.c:195
+#: ../src/gnome/gnc-plugin-page-register.c:200
+msgid "Cu_t Split"
+msgstr "_Klip opdeling"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:59
-msgid "This setting determines the edge at which the tabs for switching pages in notebooks are drawn. Possible values are \"top\", \"left\", \"bottom\" and \"right\". It defaults to \"top\"."
-msgstr "Denne indstilling bestemmer kanten, hvor faneblade for skift af sider i notebøger tegnes. Mulige værdier er »top«, »left«, »bottom« og »right«. Standarden er »top«."
+#: ../src/gnome/gnc-plugin-page-register2.c:196
+#: ../src/gnome/gnc-plugin-page-register.c:201
+msgid "_Copy Split"
+msgstr "_Kopier opdeling"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:60
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:178
-msgid "Display the notebook tabs at the bottom of the window."
-msgstr "Vis notesbogfaneblade i bunden af vinduet."
+#: ../src/gnome/gnc-plugin-page-register2.c:197
+#: ../src/gnome/gnc-plugin-page-register.c:202
+msgid "_Paste Split"
+msgstr "_Indsæt opdeling"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:61
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:180
-msgid "Display the notebook tabs at the left of the window."
-msgstr "Vis notesbogfaneblade til venstre i vinduet."
+#: ../src/gnome/gnc-plugin-page-register2.c:198
+#: ../src/gnome/gnc-plugin-page-register.c:203
+msgid "Dup_licate Split"
+msgstr "_Dupliker opdeling"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:62
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:182
-msgid "Display the notebook tabs at the right of the window."
-msgstr "Vis notesbogfaneblade til højre i vinduet."
+#: ../src/gnome/gnc-plugin-page-register2.c:199
+#: ../src/gnome/gnc-plugin-page-register.c:204
+#: ../src/gnome/gnc-split-reg.c:1297
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1025
+msgid "_Delete Split"
+msgstr "_Slet opdeling"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:63
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:185
-msgid "Display the summary bar at the top of the page."
-msgstr "Vis oversigtsbjælken øverst på siden."
+#: ../src/gnome/gnc-plugin-page-register2.c:200
+#: ../src/gnome/gnc-plugin-page-register.c:205
+msgid "Cut the selected transaction into clipboard"
+msgstr "Klip den valgte transaktion til udklipsholderen"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:64
-msgid "This setting determines the edge at which the summary bar for various pages is drawn. Possible values are \"top\" and \"bottom\". It defaults to \"bottom\"."
-msgstr "Denne indstilling bestemmer kanten, hvor oversigtsbjælken for diverse sider tegnes. Mulige værdier er »top«, og »bottom«. Standarden er »bottom«."
+#: ../src/gnome/gnc-plugin-page-register2.c:201
+#: ../src/gnome/gnc-plugin-page-register.c:206
+msgid "Copy the selected transaction into clipboard"
+msgstr "Kopier den valgte transaktion til udklipsholderen"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:65
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:187
-msgid "Display the summary bar at the bottom of the page."
-msgstr "Vis oversigtsbjælken i bunden af siden."
+#: ../src/gnome/gnc-plugin-page-register2.c:202
+#: ../src/gnome/gnc-plugin-page-register.c:207
+msgid "Paste the transaction from the clipboard"
+msgstr "Indsæt transaktionen fra udklipsholderen"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:66
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:173
-msgid "Closing a tab moves to the most recently visited tab."
-msgstr "Ved lukning af et faneblad flyttes til det senest besøgte faneblad."
+#: ../src/gnome/gnc-plugin-page-register2.c:203
+#: ../src/gnome/gnc-plugin-page-register.c:208
+msgid "Make a copy of the current transaction"
+msgstr "Lav en kopi af den nuværende transaktion"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:67
-msgid "If active, closing a tab moves to the most recently visited tab. Otherwise closing a tab moves one tab to the left."
-msgstr "Hvis aktiv, ved lukning af et faneblad flyttes til det senest besøgte faneblad. Ellers vil lukning af et faneblad flytte et faneblad til venstre."
+#: ../src/gnome/gnc-plugin-page-register2.c:204
+#: ../src/gnome/gnc-plugin-page-register.c:209
+msgid "Delete the current transaction"
+msgstr "Slet den nuværende transaktion"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:68
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:62
-msgid "Set book option on new files to use split \"action\" field for \"Num\" field on registers/reports"
-msgstr "Sæt bogtilvalg på nye filer til at bruge opdelt »handlingsfelt« for »Num-felt« på klassekladder/rapporter"
+#: ../src/gnome/gnc-plugin-page-register2.c:205
+#: ../src/gnome/gnc-plugin-page-register.c:213
+msgid "Cut the selected split into clipboard"
+msgstr "Klip den valgte opdeling til udklipsholderen"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:69
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:63
-msgid "If selected, the default book option for new files is set so that the 'Num' cell on registers shows/updates the split 'action' field and the transaction 'num' field is shown on the second line in double line mode (and is not visible in single line mode). Otherwise, the default book option for new files is set so that the 'Num' cell on registers shows/updates the transaction 'num' field."
-msgstr "Hvis valgt vil standardbogindstillingen for nye filer være sat, så »Num-cellen« på klassekladder viser/opdaterer opdelingsfeltet »action« og transaktionsfeltet »num« vises på den anden linje i dobbelt linje-tilstand (og er ikke synlig i enkel linje-tilstand). Ellers sættes standardbogindstillingen for nye filer, så cellen »Num« på klassekladder viser/opdaterer transaktionsfeltet »num«."
+#: ../src/gnome/gnc-plugin-page-register2.c:206
+#: ../src/gnome/gnc-plugin-page-register.c:214
+msgid "Copy the selected split into clipboard"
+msgstr "Kopier den valgte opdeling til udklipsholderen"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:70
-msgid "Color the register as specified by the system theme"
-msgstr "Farvelæg klassekladden som specificeret af systemtemaet"
+#: ../src/gnome/gnc-plugin-page-register2.c:207
+#: ../src/gnome/gnc-plugin-page-register.c:215
+msgid "Paste the split from the clipboard"
+msgstr "Indsæt opdelingen fra udklipsholderen"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:71
-msgid "If active, the register will be colored as specified by the system theme. This can be overridden to provide custom colors by editing the gtkrc file in the users home directory. Otherwise the standard register colors will be used that GnuCash has always used."
-msgstr "Hvis aktiv vil klassekladden blive farvelagt som specificeret af systemtemaet. Dette kan overskrives for at tilbyde tilpassede farver ved at redigere gtkrc-filen i brugerens hjemmemappe. Ellers vil standardklassekladdens farver, som GnuCash altid har brugt, blive anvendt."
+#: ../src/gnome/gnc-plugin-page-register2.c:208
+#: ../src/gnome/gnc-plugin-page-register.c:216
+msgid "Make a copy of the current split"
+msgstr "Lav en kopi af den nuværende opdeling"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:72
-msgid "\"Enter\" key moves to bottom of register"
-msgstr "»Returtast« flytter dig til bunden af kassekladen"
+#: ../src/gnome/gnc-plugin-page-register2.c:209
+#: ../src/gnome/gnc-plugin-page-register.c:217
+msgid "Delete the current split"
+msgstr "Slet den nuværende opdeling"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:73
-msgid "If active, pressing the enter key will move to the bottom of the register. Otherwise pressing the enter key will move to the next transaction line."
-msgstr "Hvis aktiv, vil tryk på retur-tasten flytte dig til bunden af klassekladden. Ellers vil tryk på retur-tasten flytte til næste transaktionslinje."
+#: ../src/gnome/gnc-plugin-page-register2.c:219
+#: ../src/gnome/gnc-plugin-page-register.c:224
+msgid "_Print Checks..."
+msgstr "_Udskriv check ..."
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:74
-msgid "Automatically raise the list of accounts or actions during input"
-msgstr "Fremhæv automatisk listen med konti eller handlinger under indtastning"
+#: ../src/gnome/gnc-plugin-page-register2.c:226
+#: ../src/gnome/gnc-plugin-page-register.c:231
+#: ../src/gnome-utils/gnc-main-window.c:305
+#: ../src/report/report-gnome/gnc-plugin-page-report.c:1018
+msgid "Cu_t"
+msgstr "_Klip"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:75
-msgid "Move to Transfer field when memorised transaction auto filled"
-msgstr "Flyt til Overførselsfelt når husket transaktion er automatisk udfyldt"
+#: ../src/gnome/gnc-plugin-page-register2.c:227
+#: ../src/gnome/gnc-plugin-page-register.c:232
+#: ../src/gnome-utils/gnc-main-window.c:306
+#: ../src/report/report-gnome/gnc-plugin-page-report.c:1019
+msgid "Cut the current selection and copy it to clipboard"
+msgstr "Klip den nuværende markering og kopier den til udklipsholderen"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:76
-msgid "If active then after a memorised transaction is automatically filled in the cursor will move to the Transfer field. If not active then it skips to the value field."
-msgstr "Hvis aktiv vil markøren, efter en husket transaktion automatisk er udfyldt, flytte til Overførselsfeltet. Hvis ikke aktiv går markøren til værdifeltet."
+#: ../src/gnome/gnc-plugin-page-register2.c:231
+#: ../src/gnome/gnc-plugin-page-register.c:236
+#: ../src/gnome-utils/gnc-main-window.c:310
+#: ../src/report/report-gnome/gnc-plugin-page-report.c:1023
+msgid "_Copy"
+msgstr "_Kopier"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:77
-msgid "Create a new window for each new register"
-msgstr "Opret et nyt vindue for hver ny kassekladde"
+#: ../src/gnome/gnc-plugin-page-register2.c:232
+#: ../src/gnome/gnc-plugin-page-register.c:237
+#: ../src/gnome-utils/gnc-main-window.c:311
+#: ../src/report/report-gnome/gnc-plugin-page-report.c:1024
+msgid "Copy the current selection to clipboard"
+msgstr "Kopier den nuværende markering til udklipsholderen"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:78
-msgid "If active, each new register will be opened in a new window. Otherwise each new register will be opened as a tab in the main window."
-msgstr "Hvis aktiv, vil hver ny klassekladde blive åbnet i et nyt vindue. Ellers vil hver klassekladde blive åbnet som et faneblad i hovedvinduet."
+#: ../src/gnome/gnc-plugin-page-register2.c:237
+#: ../src/gnome/gnc-plugin-page-register.c:242
+#: ../src/gnome-utils/gnc-main-window.c:316
+#: ../src/report/report-gnome/gnc-plugin-page-report.c:1029
+msgid "Paste the clipboard content at the cursor position"
+msgstr "Indsæt indholdet fra udklipsholderen ved markørens position"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:79
-msgid "Color all lines of a transaction the same"
-msgstr "Farvelæg alle linjer i en transaktion med samme farve"
+#: ../src/gnome/gnc-plugin-page-register2.c:279
+msgid "Remo_ve All Splits"
+msgstr "_Fjern alle opdelinger"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:80
-msgid "If active all lines that make up a single transaction will use the same color for their background. Otherwise the background colors are alternated on each line."
-msgstr "Hvis aktiv vil alle linjer, som udgør en enkel transaktion, bruge den samme farve for deres baggrund. Ellers vil baggrundsfarverne ændre sig for hver linje."
+#: ../src/gnome/gnc-plugin-page-register2.c:280
+#: ../src/gnome/gnc-plugin-page-register.c:285
+msgid "Remove all splits in the current transaction"
+msgstr "Fjern alle opdelinger i den nuværende transaktion"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:81
-msgid "Show horizontal borders in a register"
-msgstr "Vis vandrette kanter i en klassekladde"
+#: ../src/gnome/gnc-plugin-page-register2.c:284
+#: ../src/gnome/gnc-plugin-page-register.c:289
+msgid "_Enter Transaction"
+msgstr "_Indtast transaktion"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:82
-msgid "Show horizontal borders between rows in a register. If active the border between cells will be indicated with a heavy line. Otherwise the border between cells will not be marked."
-msgstr "Vis vandrette kanter mellem rækker i en klassekladde. Hvis aktiv vil kanten mellem cellerne indikeres med en tyk lije. Ellers vil kanten mellem cellerne ikke blive markeret."
+#: ../src/gnome/gnc-plugin-page-register2.c:285
+#: ../src/gnome/gnc-plugin-page-register.c:290
+msgid "Record the current transaction"
+msgstr "Optag den aktuelle transaktion"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:83
-msgid "Show vertical borders in a register"
-msgstr "Vis lodrette kanter i en klassekladde"
+#: ../src/gnome/gnc-plugin-page-register2.c:289
+#: ../src/gnome/gnc-plugin-page-register.c:294
+msgid "Ca_ncel Transaction"
+msgstr "_Afbryd transaktion"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:84
-msgid "Show vertical borders between columns in a register. If active the border between cells will be indicated with a heavy line. Otherwise the border between cells will not be marked."
-msgstr "Vis lodrette kanter mellem kolonner i en klassekladde. Hvis aktiv vil kanten mellem cellerne indikeres med en tyk lije. Ellers vil kanten mellem cellerne ikke blive markeret."
+#: ../src/gnome/gnc-plugin-page-register2.c:290
+#: ../src/gnome/gnc-plugin-page-register.c:295
+msgid "Cancel the current transaction"
+msgstr "Afbryd den nuværende transaktion"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:85
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:138
-msgid "Show all transactions on one line. (Two in double line mode.)"
-msgstr "Vis transaktioner på en eller to linjer. (to i dobbelt linje-tilstand.)"
+#: ../src/gnome/gnc-plugin-page-register2.c:294
+#: ../src/gnome/gnc-plugin-page-register.c:299
+msgid "_Void Transaction"
+msgstr "Gør transaktionen _ugyldig"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:86
-msgid "This field specifies the default view style when opening a new register window. Possible values are \"ledger\", \"auto-ledger\" and \"journal\". The \"ledger\" setting says to show each transaction on one or two lines. The \"auto-ledger\" setting does the same, but also expands only the current transaction to show all splits. The \"journal\" setting shows all transactions in expanded form."
-msgstr "Dette felt angiver standardstilen for visning når et ny klassekladdevindue åbnes. Mulige værdier er »ledger«, »auto-ledger« og »journal«. Indstillingen »ledger« viser hver transaktion på en eller to linjer. Indstillingen »auto-ledger« gør det samme, men udvider også den nuværende transaktion til at vise alle opdelinger. Indstillingen »journal« viser alle transaktioner i udvidet form."
+#: ../src/gnome/gnc-plugin-page-register2.c:298
+#: ../src/gnome/gnc-plugin-page-register.c:303
+msgid "_Unvoid Transaction"
+msgstr "Gør transaktionen _gyldig"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:87
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:140
-msgid "Automatically expand the current transaction to show all splits. All other transactions are shown on one line. (Two in double line mode.)"
-msgstr "Udvid automatisk den nuværende transakton til at vise alle opdelinger. Alle andre transaktioner vises på en linje. (To i dobbelt linje-tilstand.)"
+#: ../src/gnome/gnc-plugin-page-register2.c:302
+#: ../src/gnome/gnc-plugin-page-register.c:307
+msgid "Add _Reversing Transaction"
+msgstr "Tilføj _omvendt transaktion"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:88
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:142
-msgid "All transactions are expanded to show all splits."
-msgstr "Alle transaktioner udvides til at vise alle opdelinger."
+#: ../src/gnome/gnc-plugin-page-register2.c:306
+msgid "Move Transaction _Up"
+msgstr "Flyt transaktion _op"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:90
-msgid "Show two lines of information for each transaction in a register. This is the default setting for when a register is first opened. The setting can be changed at any time via the \"View->Double Line\" menu item."
-msgstr "Vis to linjer med information for hver transaktion i en klassekladde. Dette er standardinstillingen for første gang en klassekladde åbnes. Indstillingen kan ændres på ethvert tidspunkt via menupunktet »Vis->dobbeltlinje«."
+#: ../src/gnome/gnc-plugin-page-register2.c:307
+msgid "Move the current transaction one row upwards. Only available if the date and number of both rows are identical and the register window is sorted by date."
+msgstr "Flyt den nuværende transaktion en række op. Kun tilgængelig hvis datoen og antallet af begge rækker er identiske og kassekladdevinduet er sorteret efter dato."
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:91
-#, fuzzy
-msgid "Only display leaf account names."
-msgstr "Vis kontoen?"
+#: ../src/gnome/gnc-plugin-page-register2.c:311
+msgid "Move Transaction Do_wn"
+msgstr "Flyt transaktion _ned"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:92
-msgid "Show only the names of the leaf accounts in the register and in the account selection popup. The default behaviour is to display the full name, including the path in the account tree. Activating this option implies that you use unique leaf names."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:312
+msgid "Move the current transaction one row downwards. Only available if the date and number of both rows are identical and the register window is sorted by date."
+msgstr "Flyt den nuværende transaktion en række ned. Kun tilgængelig hvis datoen og antallet af begge rækker er identiske og kassekladdevinduet er sorteret efter dato."
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:93
-#, fuzzy
-msgid "Show the entered and reconcile dates"
-msgstr "Vis de benyttede vekselkurser"
+#: ../src/gnome/gnc-plugin-page-register2.c:323
+#: ../src/gnome-utils/gnc-main-window.c:336
+#: ../src/report/report-gnome/gnc-plugin-page-report.c:1033
+msgid "_Refresh"
+msgstr "Opdate_r"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:94
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:154
-#, fuzzy
-msgid "Show the date when the transaction was entered below the posted date and reconciled date on split row."
-msgstr "Opret transaktionen dette antal dage før dets effektive dato."
+#: ../src/gnome/gnc-plugin-page-register2.c:324
+#: ../src/gnome-utils/gnc-main-window.c:337
+#: ../src/report/report-gnome/gnc-plugin-page-report.c:1034
+msgid "Refresh this window"
+msgstr "Opdater dette vindue"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:95
-msgid "Show entered and reconciled dates on selection"
+#: ../src/gnome/gnc-plugin-page-register2.c:342
+#: ../src/gnome/gnc-plugin-page-register.c:351
+msgid "Automatically clear individual transactions, so as to reach a certain cleared amount"
msgstr ""
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:96
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:160
-#, fuzzy
-msgid "Show the entered date and reconciled date on transaction selection."
-msgstr "Vælg »R« for at afstemme sammenhængende transaktioner."
+#: ../src/gnome/gnc-plugin-page-register2.c:356
+#: ../src/gnome/gnc-plugin-page-register.c:365
+msgid "_Blank Transaction"
+msgstr "_Tom transaktion"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:97
-#, fuzzy
-msgid "Show the calendar buttons"
-msgstr "Vis navnekolonnen"
+#: ../src/gnome/gnc-plugin-page-register2.c:357
+#: ../src/gnome/gnc-plugin-page-register.c:366
+msgid "Move to the blank transaction at the bottom of the register"
+msgstr "Flyt til den tomme transaktion i slutningen af kassekladden"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:98
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:156
-msgid "Show the calendar buttons Cancel, Today and Select."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:361
+#: ../src/gnome/gnc-plugin-page-register.c:370
+msgid "Edit E_xchange Rate"
+msgstr "Rediger _vekselkurs"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:99
-#, fuzzy
-msgid "Move the selection to the blank split on expand"
-msgstr "Flyt den valgte transaktionsskabelon en række op"
+#: ../src/gnome/gnc-plugin-page-register2.c:362
+#: ../src/gnome/gnc-plugin-page-register.c:371
+msgid "Edit the exchange rate for the current transaction"
+msgstr "Rediger vekselkursen for den nuværende transaktion"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:100
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:158
-msgid "This will move the selection to the blank split when the transaction is expanded."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:366
+#: ../src/gnome/gnc-plugin-page-register.c:375
+#: ../src/gnome-utils/gnc-icons.c:25
+msgid "_Jump"
+msgstr "_Spring"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:101
-#, fuzzy
-msgid "Number of transactions to show in a register."
-msgstr "Antal kolonner"
+#: ../src/gnome/gnc-plugin-page-register2.c:367
+#: ../src/gnome/gnc-plugin-page-register.c:376
+msgid "Jump to the corresponding transaction in the other account"
+msgstr "Spring til den tilsvarende transaktion i den anden konto."
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:102
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:144
-msgid "Show this many transactions in a register. A value of zero means show all transactions."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:371
+#: ../src/gnome/gnc-plugin-page-register.c:380
+msgid "Sche_dule..."
+msgstr "_Planlæg ..."
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:103
-#, fuzzy
-msgid "Number of characters for auto complete."
-msgstr "Nummer"
+#: ../src/gnome/gnc-plugin-page-register2.c:372
+#: ../src/gnome/gnc-plugin-page-register.c:381
+msgid "Create a Scheduled Transaction with the current transaction as a template"
+msgstr "Opret en planlagt transaktion med den nuværende transaktion som skabelon"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:104
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:152
-msgid "This sets the number of characters before auto complete starts for description, notes and memo fields."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:376
+#: ../src/gnome/gnc-plugin-page-register.c:385
+msgid "_All transactions"
+msgstr "_Alle transaktioner"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:105
-msgid "Create a new window for each new report"
-msgstr "Opret et nyt vindue for hver ny rapport"
+#: ../src/gnome/gnc-plugin-page-register2.c:380
+#: ../src/gnome/gnc-plugin-page-register.c:389
+msgid "_This transaction"
+msgstr "_Denne transaktion"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:106
-msgid "If active, each new report will be opened in its own window. Otherwise new reports will be opened as tabs in the main window."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:387
+#: ../src/gnome/gnc-plugin-page-register.c:396
+msgid "Account Report"
+msgstr "Kontorapport"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:107
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:163
-msgid "Use the system locale currency for all newly created reports."
-msgstr "Brug systemets lokale valuta for alle nyoprettede rapporter."
+#: ../src/gnome/gnc-plugin-page-register2.c:388
+#: ../src/gnome/gnc-plugin-page-register.c:397
+msgid "Open a register report for this Account"
+msgstr "Ã
bn en kassekladerapport for denne konto"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:108
-msgid "This setting controls the default currency used for reports. If set to \"locale\" then GnuCash will retrieve the default currency from the user's locale setting. If set to \"other\", GnuCash will use the setting specified by the currency-other key."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:392
+#: ../src/gnome/gnc-plugin-page-register.c:401
+msgid "Account Report - Single Transaction"
+msgstr "Kontorapporte - En transaktion"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:109
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:162
-msgid "Use the specified currency for all newly created reports."
-msgstr "Brug den angivne valuta for alle nyoprettede rapporter."
+#: ../src/gnome/gnc-plugin-page-register2.c:393
+#: ../src/gnome/gnc-plugin-page-register.c:402
+msgid "Open a register report for the selected Transaction"
+msgstr "Ã
bn en kassekladerapport for den valgte transaktion"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:110
-msgid "Default currency for new reports"
-msgstr "Standardvaluta for nye rapporter"
+#: ../src/gnome/gnc-plugin-page-register2.c:403
+#: ../src/gnome/gnc-plugin-page-register.c:412
+msgid "_Double Line"
+msgstr "_Dobbelt linje"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:111
-msgid "PDF export file name format"
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:404
+#: ../src/gnome/gnc-plugin-page-register.c:413
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:89
+msgid "Show two lines of information for each transaction"
+msgstr "Vis to linjer med oplysninger for hver transaktion"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:113
-#, no-c-format
-msgid "This setting chooses the file name for PDF export. This is a sprintf(3) string with three arguments: \"%1$s\" is the report name such as \"Invoice\". \"%2$s\" is the number of the report, which for an invoice report is the invoice number. \"%3$s\" is the date of the report, formatted according to the filename-date-format setting. (Note: Any characters that are not allowed in filenames, such as '/', will be replaced with underscores '_' in the resulting file name.)"
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:409
+msgid "Show _Extra Dates"
+msgstr "Vis _ekstra datoer"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:114
-#, fuzzy
-msgid "PDF export file name date format choice"
-msgstr "Valg af datoformat"
+#: ../src/gnome/gnc-plugin-page-register2.c:410
+msgid "Show entered and reconciled dates"
+msgstr "Vis indtastede og afstemte datoer"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:115
-msgid "This setting chooses the way dates are used in the filename of PDF export. Possible values for this setting are \"locale\" to use the system locale setting, \"ce\" for Continental Europe style dates, \"iso\" for ISO 8601 standard dates , \"uk\" for United Kingdom style dates, and \"us\" for United States style dates."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:415
+#: ../src/gnome/gnc-plugin-page-register.c:418
+#: ../src/gnome-utils/gnc-icons.c:24
+msgid "S_plit Transaction"
+msgstr "_Opdel transaktion"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:116
-msgid "Allow file incompatibility with older versions."
-msgstr "Tillad filinkompatibilitet med ældre versioner."
+#: ../src/gnome/gnc-plugin-page-register2.c:416
+#: ../src/gnome/gnc-plugin-page-register.c:419
+msgid "Show all splits in the current transaction"
+msgstr "Vis alle opsplitninger i den aktuelle transaktion"
-#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:117
-msgid "If active, gnucash will be allowed to intentionally break file compatibility with older versions, so that a data file saved in this version cannot be read by an older version again. Otherwise gnucash will write data files only in formats that can be read by older versions as well."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:427
+#: ../src/gnome/gnc-plugin-page-register.c:430
+msgid "_Basic Ledger"
+msgstr "_Basishovedbog"
-#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:1
-msgid "Show a grand total of all accounts converted to the default report currency"
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:428
+#: ../src/gnome/gnc-plugin-page-register.c:431
+msgid "Show transactions on one or two lines"
+msgstr "Vis transaktioner på én eller to linjer"
-#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:2
-#, fuzzy
-msgid "Show non currency commodities"
-msgstr "Vis fremmede valutaer"
+#: ../src/gnome/gnc-plugin-page-register2.c:432
+#: ../src/gnome/gnc-plugin-page-register.c:435
+msgid "_Auto-Split Ledger"
+msgstr "_Autoopdel hovedbog"
-#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:3
-msgid "If active, non currency commodities (stocks) will be shown. Otherwise they will be hidden."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:433
+#: ../src/gnome/gnc-plugin-page-register.c:436
+msgid "Show transactions on one or two lines and expand the current transaction"
+msgstr "Vis transaktioner på én eller to linjer og ekspander den aktuelle transaktion"
-#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:4
-#, fuzzy
-msgid "Use relative profit/loss starting date"
-msgstr "Brug nærmeste på transaktionsdato"
+#: ../src/gnome/gnc-plugin-page-register2.c:437
+#: ../src/gnome/gnc-plugin-page-register.c:440
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:141
+msgid "Transaction _Journal"
+msgstr "Transaktions_rapport"
-#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:5
-msgid "This setting controls the type of starting date used in profit/loss calculations. If set to \"absolute\" then GnuCash will retrieve the starting date specified by the start-date key. If set to anything else, GnuCash will retrieve the starting date specified by the start-period key."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:438
+#: ../src/gnome/gnc-plugin-page-register.c:441
+msgid "Show expanded transactions with all splits"
+msgstr "Vis ekspanderede transaktioner med alle opdelinger"
-#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:6
-#, fuzzy
-msgid "Use absolute profit/loss starting date"
-msgstr "Brug nærmeste på transaktionsdato"
+#: ../src/gnome/gnc-plugin-page-register2.c:476
+#: ../src/gnome/gnc-plugin-page-register.c:479
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2900
+#: ../src/register/ledger-core/split-register.c:2438
+#: ../src/register/ledger-core/split-register-layout.c:687
+#: ../src/register/ledger-core/split-register-model.c:332
+#: ../src/report/standard-reports/register.scm:135
+msgid "Transfer"
+msgstr "Overfør"
-#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:7
-msgid "Starting date (in seconds from Jan 1, 1970)"
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:481
+#: ../src/gnome/gnc-plugin-page-register.c:484
+#: ../src/gnome-search/dialog-search.c:1085
+msgid "Split"
+msgstr "Del"
-#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:8
-msgid "This setting controls the starting date set in profit/loss calculations if the start-choice setting is set to \"absolute\". This field should contain a date as represented in seconds from January 1st, 1970."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:482
+#: ../src/gnome/gnc-plugin-page-register.c:485
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:24
+msgid "Schedule"
+msgstr "Planlæg"
-#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:9
-msgid "Starting time period identifier"
+#: ../src/gnome/gnc-plugin-page-register2.c:485
+#: ../src/gnome/gnc-plugin-page-register.c:488
+#: ../src/gnome/window-autoclear.c:92
+msgid "Auto-clear"
msgstr ""
-#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:10
-msgid "This setting controls the starting date set in profit/loss calculations if the start-choice setting is set to anything other than \"absolute\". This field should contain a value between 0 and 8."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:679
+msgid "You have tried to open an account in the new register while it is open in the old register."
+msgstr "Du har forsøgt at åbne en konto i den nye kasseklade mens den er åben i den gamle kasseklade."
-#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:11
-msgid "Use relative profit/loss ending date"
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:752
+msgid "General Ledger2"
+msgstr "Hovedbog2"
-#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:12
-msgid "This setting controls the type of ending date used in profit/loss calculations. If set to \"absolute\" then GnuCash will retrieve the ending date specified by the end-date key. If set to anything else, GnuCash will retrieve the ending date specified by the end-period key."
-msgstr ""
+#. Translators: %s is the name
+#. of the tab page
+#: ../src/gnome/gnc-plugin-page-register2.c:1613
+#: ../src/gnome/gnc-plugin-page-register.c:1544
+#, c-format
+msgid "Save changes to %s?"
+msgstr "Gem ændringer til %s?"
-#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:13
-msgid "Use absolute profit/loss ending date"
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:1617
+#: ../src/gnome/gnc-plugin-page-register.c:1548
+msgid "This register has pending changes to a transaction. Would you like to save the changes to this transaction, discard the transaction, or cancel the operation?"
+msgstr "Denne kassekladde har igangværende ændringer til en transaktion. Vil du gemme ændringerne til denne transaktion, fjerne transaktionen eller afbryde operationen?"
-#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:14
-msgid "Ending date (in seconds from Jan 1, 1970)"
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:1620
+#: ../src/gnome/gnc-plugin-page-register.c:1551
+msgid "_Discard Transaction"
+msgstr "_Fjern transaktion"
-#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:15
-msgid "This setting controls the ending date set in profit/loss calculations if the end-choice setting is set to \"absolute\". This field should contain a date as represented in seconds from January 1st, 1970."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:1624
+#: ../src/gnome/gnc-plugin-page-register.c:1555
+msgid "_Save Transaction"
+msgstr "_Gem transaktion"
-#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:16
-msgid "Ending time period identifier"
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:1653
+#: ../src/gnome/gnc-plugin-page-register2.c:1688
+#: ../src/gnome/gnc-plugin-page-register2.c:1700
+#: ../src/gnome/gnc-plugin-page-register2.c:1723
+#: ../src/gnome/gnc-plugin-page-register2.c:1773
+#: ../src/gnome/gnc-plugin-page-register.c:1587
+#: ../src/gnome/gnc-plugin-page-register.c:1622
+#: ../src/gnome/gnc-plugin-page-register.c:1634
+#: ../src/gnome/gnc-plugin-page-register.c:1657
+#: ../src/gnome/gnc-plugin-page-register.c:1707
+#: ../src/gnome/gnc-plugin-page-register.c:1751
+msgid "unknown"
+msgstr "ukendt"
-#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:17
-msgid "This setting controls the ending date set in profit/loss calculations if the end-choice setting is set to anything other than \"absolute\". This field should contain a value between 0 and 8."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:1674
+#: ../src/gnome/gnc-plugin-page-register2.c:2395
+#: ../src/gnome/gnc-plugin-page-register.c:758
+#: ../src/gnome/gnc-plugin-page-register.c:1608
+#: ../src/gnome/gnc-plugin-page-register.c:2563
+#: ../src/report/standard-reports/general-ledger.scm:40
+msgid "General Ledger"
+msgstr "Hovedbog"
-#: ../src/gnome/gschemas/org.gnucash.window.pages.gschema.xml.in.in.h:1
-#, fuzzy
-msgid "Display this column"
-msgstr "Vis kontoen?"
+#: ../src/gnome/gnc-plugin-page-register2.c:1676
+#: ../src/gnome/gnc-plugin-page-register2.c:2401
+#: ../src/gnome/gnc-plugin-page-register.c:1610
+#: ../src/gnome/gnc-plugin-page-register.c:2569
+msgid "Portfolio"
+msgstr "Portefølje"
-#: ../src/gnome/gschemas/org.gnucash.window.pages.gschema.xml.in.in.h:2
-msgid "This setting controls whether the given column will be visible in the view. TRUE means visible, FALSE means hidden."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:1678
+#: ../src/gnome/gnc-plugin-page-register2.c:2407
+#: ../src/gnome/gnc-plugin-page-register.c:1612
+#: ../src/gnome/gnc-plugin-page-register.c:2575
+msgid "Search Results"
+msgstr "Søgeresultater"
-#: ../src/gnome/gschemas/org.gnucash.window.pages.gschema.xml.in.in.h:3
-#, fuzzy
-msgid "Width of this column"
-msgstr "_Udvid denne kolonne"
+#: ../src/gnome/gnc-plugin-page-register2.c:2397
+msgid "General Ledger Report"
+msgstr "Hovedbogsrapport"
-#: ../src/gnome/gschemas/org.gnucash.window.pages.gschema.xml.in.in.h:4
-msgid "This setting stores the width of the given column in pixels."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:2403
+#: ../src/gnome/gnc-plugin-page-register.c:2571
+msgid "Portfolio Report"
+msgstr "Porteføljerapport"
-#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:1
-msgid ""
-"This assistant will help you setup and use accounting periods. \n"
-" \n"
-"Danger: this feature does not work correctly at this time; it is still under development. It will probably damage your data in such a way that it cannot be repaired!"
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:2409
+#: ../src/gnome/gnc-plugin-page-register.c:2577
+msgid "Search Results Report"
+msgstr "Søgeresultat-rapport"
-#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:4
-#, fuzzy
-msgid "Setup Account Period"
-msgstr "Sætter konti op"
+#: ../src/gnome/gnc-plugin-page-register2.c:2413
+#: ../src/gnome/gnc-plugin-page-register.c:2581
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:134
+#: ../src/report/standard-reports/general-journal.scm:38
+#: ../src/report/standard-reports/register.scm:869
+msgid "Register"
+msgstr "Kassekladde"
-#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:5
-msgid ""
-"\n"
-"Select an accounting period and the closing date which must not be in the future and is greater than the closing date of the previous book.\n"
-"\n"
-"Books will be closed at midnight on the selected date."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:2415
+#: ../src/report/standard-reports/register.scm:381
+msgid "Register Report"
+msgstr "Kassekladderapport"
-#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:9
-msgid "xxx"
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register2.c:2431
+#: ../src/gnome/gnc-plugin-page-register.c:2599
+msgid "and subaccounts"
+msgstr "og underkonti"
-#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:10
-msgid "Book Closing Dates"
+#: ../src/gnome/gnc-plugin-page-register2.c:2630
+#: ../src/gnome/gnc-plugin-page-register.c:2762
+msgid "Print checks from multiple accounts?"
+msgstr "Udskriv check fra flere konti?"
+
+#: ../src/gnome/gnc-plugin-page-register2.c:2632
+#: ../src/gnome/gnc-plugin-page-register.c:2764
+msgid "This search result contains splits from more than one account. Do you want to print the checks even though they are not all from the same account?"
msgstr ""
-#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:11
-#, fuzzy
-msgid "Title:"
-msgstr "Titel"
+#: ../src/gnome/gnc-plugin-page-register2.c:2643
+#: ../src/gnome/gnc-plugin-page-register.c:2775
+msgid "_Print checks"
+msgstr "_Udskriv check"
-#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:12
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:13
-msgid "Notes:"
-msgstr "Bemærkninger:"
+#: ../src/gnome/gnc-plugin-page-register2.c:2662
+#: ../src/gnome/gnc-plugin-page-register.c:2794
+msgid "You can only print checks from a bank account register or search results."
+msgstr "Du kan kun udskrive check fra en bankkontokassekladde eller søgeresultater."
-#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:13
-#: ../src/gnome-utils/gtkbuilder/dialog-book-close.glade.h:1
-msgid "Close Book"
-msgstr "Luk bog"
+#: ../src/gnome/gnc-plugin-page-register2.c:2854
+#: ../src/gnome/gnc-plugin-page-register.c:2954
+msgid "You cannot void a transaction with reconciled or cleared splits."
+msgstr "Du kan ikke gøre en transaktion ugyldig som har afstemte eller ryddede opdelinger."
-#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:14
-#, fuzzy
-msgid "Account Period Finish"
-msgstr "Kontonummer"
+#. Translators: The %s is the name of the plugin page
+#: ../src/gnome/gnc-plugin-page-register2.c:2998
+#: ../src/gnome/gnc-plugin-page-register.c:3153
+#: ../src/gnome-utils/gnc-tree-view-account.c:2145
+#: ../src/gnome-utils/gnc-tree-view-owner.c:1179
+#, c-format
+msgid "Filter %s by..."
+msgstr "Filtrer %s efter ..."
-#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:15
-msgid "Press 'Close' to Exit."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-register.c:197
+msgid "_Associate File with Transaction"
+msgstr "_Forbind fil med transaktion"
-#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:16
-#, fuzzy
-msgid "Summary Page"
-msgstr "Resu_mebjælke"
+#: ../src/gnome/gnc-plugin-page-register.c:198
+msgid "_Associate Location with Transaction"
+msgstr "_Forbind placering med transaktion"
-#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:1
-msgid ""
-"This assistant will help you create a set of GnuCash accounts for your assets (such as investments, checking or savings accounts), liabilities (such as loans) and different kinds of income and expenses you might have.\n"
-"\n"
-"Click 'Cancel' if you do not wish to create any new accounts now."
-msgstr ""
-"Denne assistent vil hjælpe dig med at oprette et sæt GnuCash-konti for dine aktiver (såsom investeringer, check- og opsparingskonti), passiver (såsom lån) og de forskellige former for indtægter og udgifter, du måtte have.\n"
-"\n"
-"Klik »Annuller«, hvis du ikke ønsker at oprette nye konti nu."
+#: ../src/gnome/gnc-plugin-page-register.c:199
+msgid "_Open Associated File/Location"
+msgstr "_Ã
bn forbundet fil/placering"
-#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:4
-msgid "New Account Hierarchy Setup"
-msgstr "Opsætning af ny kontoliste"
+#: ../src/gnome/gnc-plugin-page-register.c:210
+msgid "Associate a file with the current transaction"
+msgstr "Forbind en fil med den nuværende transaktion"
-#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:5
-msgid ""
-"\n"
-"Please choose the currency to use for new accounts."
-msgstr ""
-"\n"
-"Vælg den valuta, der skal benyttes for nye konti."
+#: ../src/gnome/gnc-plugin-page-register.c:211
+msgid "Associate a location with the current transaction"
+msgstr "Forbind en placering med den nuværende transaktion"
-#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:7
-msgid "Choose Currency"
-msgstr "Vælg valuta"
+#: ../src/gnome/gnc-plugin-page-register.c:212
+msgid "Open the associated file or location with the current transaction"
+msgstr "Opret en forbundet fil eller placering med den nuværende transaktion"
-#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:8
-msgid ""
-"\n"
-"Select categories that correspond to the ways that you will use GnuCash. Each category you select will cause several accounts to be created. Select the categories that are relevant to you. You can always create additional accounts by hand later."
-msgstr ""
-"\n"
-"Vælg de kategorier, der svarer til de måder, du vil bruge GnuCash. Hver kategori, du vælger, vil resultere i adskillige GnuCash-konti. Vælg de kategorier, der er relevante for dig. Du kan altid oprette flere konti senere."
+#: ../src/gnome/gnc-plugin-page-register.c:284
+msgid "Remo_ve Other Splits"
+msgstr "_Fjern andre opdelinger"
-#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:10
-msgid "<b>Categories</b>"
-msgstr "<b>Kategorier</b>"
+#: ../src/gnome/gnc-plugin-page-register.c:329
+#: ../src/gnome-utils/gnc-main-window.c:328
+msgid "_Sort By..."
+msgstr "_Sorter efter ..."
-#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:11
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:50
-#: ../src/gnome-utils/gtkbuilder/dialog-reset-warnings.glade.h:3
-msgid "_Select All"
-msgstr "_Vælg alt"
+#: ../src/gnome/gnc-plugin-page-register.c:489
+msgid "Associate File"
+msgstr "Forbind fil"
-#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:12
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:51
-msgid "C_lear All"
-msgstr "Tø_m alt"
+#: ../src/gnome/gnc-plugin-page-register.c:490
+msgid "Associate Location"
+msgstr "Forbind placering"
-#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:13
-msgid "<b>Category Description</b>"
-msgstr "<b>Kategoribeskrivelse</b>"
+#: ../src/gnome/gnc-plugin-page-register.c:491
+msgid "Open File/Location"
+msgstr "Ã
bn fil/placering"
-#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:14
-msgid "Choose accounts to create"
-msgstr "Vælg konti, der skal oprettes"
+#: ../src/gnome/gnc-plugin-page-register.c:685
+msgid "You have tried to open an account in the old register while it is open in the new register."
+msgstr "Du har forsøgt at åbne en fil i den gamle kassekladde, mens den er åben i den nye klassekladde. "
-#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:15
-msgid ""
-"\n"
-"If you would like to change an account's name, click on the row containing the account, then click on the account name and change it.\n"
-"\n"
-"Some accounts are marked as \"Placeholder\". Placeholder accounts are used to create a hierarchy of accounts and normally do not have transactions or opening balances. If you would like an account to be a placeholder account, click the checkbox for that account.\n"
-"\n"
-"If you would like an account to have an opening balance, click on the row containing the account, then click on the opening balance field and enter the starting balance.\n"
-"\n"
-"Note: all accounts except Equity and placeholder accounts may have an opening balance.\n"
+#. Define the strings here to avoid typos and make changes easier.
+#: ../src/gnome/gnc-plugin-page-register.c:2565
+#: ../src/gnome/gnc-plugin-page-register.c:2583
+#: ../src/report/standard-reports/transaction.scm:48
+msgid "Transaction Report"
+msgstr "Transaktionsrapport"
+
+#: ../src/gnome/gnc-plugin-page-register.c:3025
+#: ../src/gnome/gnc-split-reg.c:882
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1123
+msgid "A reversing entry has already been created for this transaction."
msgstr ""
-#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:24
-#, fuzzy
-msgid "Setup selected accounts"
-msgstr "Slet den valgte konto"
+#. Translations: The %s is the name of the plugin page
+#: ../src/gnome/gnc-plugin-page-register.c:3076
+#, c-format
+msgid "Sort %s by..."
+msgstr "Sorter %s efter ..."
-#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:25
-#, fuzzy
-msgid ""
-"Press `Apply' to create your new accounts. You will then be able to save them to a file or database.\n"
-"\n"
-"Press `Back' to review your selections.\n"
-"\n"
-"Press `Cancel' to close this dialog without creating any new accounts."
-msgstr ""
-"Tryk 'Afslut' for at oprette dine nye konti.\n"
-"\n"
-"Tryk 'Tilbage' for at efterse dine valg.\n"
-"\n"
-"Tryk 'Annullér' for at lukke dette vindue uden at oprette nye konti."
+#: ../src/gnome/gnc-plugin-page-sx-list.c:132
+msgid "_Scheduled"
+msgstr "_Planlagt"
-#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:30
-msgid "Finish Account Setup"
-msgstr "Afslut kontoopsætning:"
+#: ../src/gnome/gnc-plugin-page-sx-list.c:134
+msgid "_New"
+msgstr "_Ny"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:1
-msgid ""
-"This is a step-by-step method for creating a loan repayment within GnuCash. In this assistant, you can input the details of your loan and its repayment along with the details of its payback. Using that information, the appropriate Scheduled Transactions will be created.\n"
-"\n"
-"If you make a mistake or want to make changes later, you can edit the created Scheduled Transactions directly."
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-sx-list.c:135
+msgid "Create a new scheduled transaction"
+msgstr "Opret en ny planlagt transaktion"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:4
-#, fuzzy
-msgid "Loan / Mortgage Repayment Setup"
-msgstr "Brug finanslommeregneren"
+#: ../src/gnome/gnc-plugin-page-sx-list.c:140
+msgid "_New 2"
+msgstr "_Ny 2"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:5
-msgid "Enter the Loan Details, as a minimum enter a valid Loan Account and Amount.\n"
-msgstr ""
+#: ../src/gnome/gnc-plugin-page-sx-list.c:141
+msgid "Create a new scheduled transaction 2"
+msgstr "Opret en ny planlagt transaktion 2"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:7
-#, fuzzy
-msgid "Interest Rate:"
-msgstr "Rente"
+#: ../src/gnome/gnc-plugin-page-sx-list.c:147
+msgid "Edit the selected scheduled transaction"
+msgstr "Rediger den valgte planlagte transaktion"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:8
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:52
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:8
-#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:2
-#, fuzzy
-msgid "Start Date:"
-msgstr "Startdato:"
+#: ../src/gnome/gnc-plugin-page-sx-list.c:152
+msgid "_Edit 2"
+msgstr "_Rediger 2"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:9
-msgid "Length:"
-msgstr "Længde:"
+#: ../src/gnome/gnc-plugin-page-sx-list.c:153
+msgid "Edit the selected scheduled transaction 2"
+msgstr "Rediger den valgte planlagte transaktion 2"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:10
-#: ../src/gnome-utils/gtkbuilder/dialog-transfer.glade.h:3
-msgid "Amount:"
-msgstr "Beløb:"
+#: ../src/gnome/gnc-plugin-page-sx-list.c:159
+msgid "Delete the selected scheduled transaction"
+msgstr "Slet den valgte planlagte transaktion"
-# nu er det ikke en kreditorkonto eller kassekredit, vel?
-# Loan Account
-# An account, opened for a customer by a bank, following the granting of a loan. The amount of the
-# loan is credited to the customers current account and similarly debited to the loan account. An
-# arrangement is subsequently made for the customer to repay the loan, usually over a stated
-# period of time, with interest additionally being paid on the outstanding amount.
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:11
-msgid "Loan Account:"
-msgstr "LÃ¥nkonto:"
+#: ../src/gnome/gnc-plugin-page-sx-list.c:382
+#, c-format
+msgid "Transactions"
+msgstr "Transaktioner"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:14
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:17
-#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:4
-msgid "Type:"
-msgstr "Type:"
+#: ../src/gnome/gnc-plugin-page-sx-list.c:444
+#, c-format
+msgid "Upcoming Transactions"
+msgstr "Kommende transaktioner"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:15
-msgid "Months Remaining:"
-msgstr "Tilbageværende måneder:"
+#. FIXME: Does this always refer to only one transaction? Or could
+#. multiple SXs be deleted as well? Ideally, the number of
+#. to-be-deleted SXs should be mentioned here; see
+#. dialog-sx-since-last-run.c:807
+#: ../src/gnome/gnc-plugin-page-sx-list.c:766
+msgid "Do you really want to delete this scheduled transaction?"
+msgstr "Er du sikker på, at du vil slette denne planlagte transaktion?"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:16
-#, fuzzy
-msgid "Interest Rate Change Frequency"
-msgstr "Rente"
+#: ../src/gnome/gnc-plugin-register2.c:57
+#: ../src/gnome/gnc-plugin-register.c:58
+msgid "_General Ledger"
+msgstr "_Hovedbog"
+
+#: ../src/gnome/gnc-plugin-register2.c:58
+msgid "Open a general ledger window"
+msgstr "Ã
bn et hovedbogsvindue"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:17
-msgid "Loan Details"
-msgstr ""
+#: ../src/gnome/gnc-plugin-register2.c:66
+#: ../src/gnome/gnc-plugin-register2.c:67
+msgid "Register2 Open GL Account"
+msgstr "Kassekladde2 - åbn hovedbogskonto"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:18
-msgid ""
-"\n"
-"Do you utilise an escrow account, if so an account must be specified..."
-msgstr ""
+#: ../src/gnome/gnc-plugin-register.c:54
+msgid "Old St_yle General Ledger"
+msgstr "Hovedbog i _gammel stil"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:20
-msgid "... utilize an escrow account for payments?"
-msgstr "... anvend en escrowkonto til betalinger?"
+#: ../src/gnome/gnc-plugin-register.c:55
+msgid "Open an old style general ledger window"
+msgstr "Ã
bn et hovedbogsvindue i gammel stil"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:21
-msgid "Escrow Account:"
-msgstr "Escrowkonto:"
+#: ../src/gnome/gnc-plugin-register.c:59
+msgid "Open general ledger window"
+msgstr "Ã
bn hovedbogsvindue"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:22
-#, fuzzy
-msgid "Loan Repayment Options"
-msgstr "Finanslommeregner"
+#: ../src/gnome/gnc-split-reg2.c:625 ../src/gnome/gnc-split-reg.c:636
+msgid "<No information>"
+msgstr "<ingen information>"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:23
-msgid ""
-"\n"
-"All accounts must have valid entries to continue.\n"
+#: ../src/gnome/gnc-split-reg2.c:764 ../src/gnome/gnc-split-reg.c:1624
+msgid "Balancing entry from reconcilation"
msgstr ""
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:26
-msgid "Payment From:"
-msgstr "Betaling fra:"
+#: ../src/gnome/gnc-split-reg2.c:935 ../src/gnome/gnc-split-reg.c:2082
+msgid "Present:"
+msgstr "Nutidig:"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:27
-msgid "Principal To:"
-msgstr "Hovedstol til:"
+#: ../src/gnome/gnc-split-reg2.c:936 ../src/gnome/gnc-split-reg.c:2083
+msgid "Future:"
+msgstr "Fremtidig:"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:28
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:50
-#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:3
-msgid "Name:"
-msgstr "Navn:"
+#: ../src/gnome/gnc-split-reg2.c:937 ../src/gnome/gnc-split-reg.c:2084
+msgid "Cleared:"
+msgstr "Kontrolleret:"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:29
-#, fuzzy
-msgid "Interest To:"
-msgstr "Renter"
+#: ../src/gnome/gnc-split-reg2.c:938 ../src/gnome/gnc-split-reg.c:2085
+msgid "Reconciled:"
+msgstr "Afstemt:"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:30
-msgid "Repayment Frequency"
-msgstr "Genbetalingsfrekvens"
+#: ../src/gnome/gnc-split-reg2.c:939 ../src/gnome/gnc-split-reg.c:2086
+msgid "Projected Minimum:"
+msgstr ""
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:31
+#: ../src/gnome/gnc-split-reg2.c:943 ../src/gnome/gnc-split-reg.c:2090
+msgid "Shares:"
+msgstr "Aktier:"
+
+#: ../src/gnome/gnc-split-reg2.c:944 ../src/gnome/gnc-split-reg.c:2091
+msgid "Current Value:"
+msgstr "Nutidsværdi:"
+
+#: ../src/gnome/gnc-split-reg2.c:1019
#, fuzzy
-msgid "Loan Repayment"
-msgstr "Genbetaling"
+msgid "Account Payable / Receivable Register"
+msgstr "Valgte konti:"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:32
-msgid ""
-"\n"
-"All enabled option pages must contain valid entries to continue.\n"
+#: ../src/gnome/gnc-split-reg2.c:1021
+msgid "The register displayed is for Account Payable or Account Receivable. Changing the entries may cause harm, please use the business options to change the entries."
msgstr ""
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:35
-msgid "Payment To (Escrow):"
-msgstr "Betaling til (Escrow):"
-
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:36
-msgid "Payment From (Escrow):"
-msgstr "Betaling fra (Escrow):"
+#: ../src/gnome/gnc-split-reg2.c:1068 ../src/gnome/gnc-split-reg.c:2165
+msgid "This account register is read-only."
+msgstr "Denne kontokasseklade er skrivebeskyttet."
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:37
-msgid "Payment To:"
-msgstr "Betaling til:"
+#: ../src/gnome/gnc-split-reg2.c:1111 ../src/gnome/gnc-split-reg.c:2208
+#, fuzzy
+msgid "This account may not be edited. If you want to edit transactions in this register, please open the account options and turn off the placeholder checkbox."
+msgstr "Denne konto kan ikke redigeres. Hvis du ønsker at redigere transaktioner i denne kassekladde så åbn venligst kontoindstillingerne og fjern tjekboksen for sumkonto."
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:38
-msgid "Specify Source Account"
-msgstr "Angiv kildekonto"
+#: ../src/gnome/gnc-split-reg2.c:1118 ../src/gnome/gnc-split-reg.c:2215
+#, fuzzy
+msgid "One of the sub-accounts selected may not be edited. If you want to edit transactions in this register, please open the sub-account options and turn off the placeholder checkbox. You may also open an individual account instead of a set of accounts."
+msgstr "En af de valgte underkonti kan ikke redigeres. Hvis du ønsker at redigere transaktioner i denne kasseklade, så åbn venligst indstillingerne for underkonti og fjern tjekboksen for sumkonto. Du kan også åbne en individuel konto fremfor et sæt af konti."
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:39
-msgid "Use Escrow Account"
-msgstr "Brug Escrowkonto"
+#: ../src/gnome/gnc-split-reg.c:909
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:66
+msgid "Cannot modify or delete this transaction."
+msgstr "Kan ikke ændre eller slette denne transaktion."
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:40
-msgid "Part of Payment Transaction"
-msgstr "Del af betalingstransaktion"
+#: ../src/gnome/gnc-split-reg.c:911
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:68
+#, c-format
+msgid "This transaction is marked read-only with the comment: '%s'"
+msgstr "Denne transaktion er markeret skrivebeskyttet med kommentaren: »%s«"
-#. src/report/standard-reports/account-piecharts.scm
-#. src/report/standard-reports/category-barchart.scm
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:41
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:58
-#: ../intl-scm/guile-strings.c:2462
-#: ../intl-scm/guile-strings.c:3394
-msgid "Other"
-msgstr "Andet"
+#: ../src/gnome/gnc-split-reg.c:923
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:83
+msgid "The date of this transaction is older than the \"Read-Only Threshold\" set for this book. This setting can be changed in File -> Properties -> Accounts."
+msgstr ""
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:42
-msgid "Payment Frequency"
-msgstr "Betalingsfrekvens"
+#: ../src/gnome/gnc-split-reg.c:959
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:841
+msgid "Remove the splits from this transaction?"
+msgstr "Fjern opdelingerne fra denne transaktion?"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:43
-#, fuzzy
-msgid "Previous Option"
-msgstr "Første Option"
+#: ../src/gnome/gnc-split-reg.c:960
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:842
+msgid "This transaction contains reconciled splits. Modifying it is not a good idea because that will cause your reconciled balance to be off."
+msgstr ""
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:44
-#, fuzzy
-msgid "Next Option"
-msgstr "Nummervalg"
+#: ../src/gnome/gnc-split-reg.c:987
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:888
+msgid "_Remove Splits"
+msgstr "_Fjern opdelinger"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:45
-#, fuzzy
-msgid "Loan Payment"
-msgstr "Skattebetaling"
+#: ../src/gnome/gnc-split-reg.c:1180
+msgid "This transaction is not associated with a URI."
+msgstr "Denne transaktion er ikke forbundet med en URI."
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:46
-msgid ""
-"\n"
-"Review the details below and if correct press Apply to create the schedule."
-msgstr ""
+#: ../src/gnome/gnc-split-reg.c:1236
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:964
+#, c-format
+msgid "Delete the split '%s' from the transaction '%s'?"
+msgstr "Slet opdelingen »%s« fra transaktionen »%s«?"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:48
-msgid "Range: "
-msgstr "Interval: "
+#: ../src/gnome/gnc-split-reg.c:1237
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:965
+msgid "You would be deleting a reconciled split! This is not a good idea as it will cause your reconciled balance to be off."
+msgstr "Du er ved at slette en afstemt opdeling! Dette er ikke en god ide, da det vil medføre en uafstemt balance."
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:49
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:54
-msgid "End Date:"
-msgstr "Slutdato:"
+#: ../src/gnome/gnc-split-reg.c:1240
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:968
+msgid "You cannot delete this split."
+msgstr "Du kan ikke slette denne opdeling."
-#. src/report/business-reports/job-report.scm
-#. src/report/business-reports/owner-report.scm
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:50
-#: ../intl-scm/guile-strings.c:1456
-#: ../intl-scm/guile-strings.c:1594
-msgid "Date Range"
-msgstr "Datointerval"
+#: ../src/gnome/gnc-split-reg.c:1241
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:969
+msgid "This is the split anchoring this transaction to the register. You may not delete it from this register window. You may delete the entire transaction from this window, or you may navigate to a register that shows another side of this same transaction and delete the split from that register."
+msgstr ""
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:51
-#, fuzzy
-msgid "Loan Review"
-msgstr "Overblik"
+#: ../src/gnome/gnc-split-reg.c:1269
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:997
+msgid "(no memo)"
+msgstr "(intet notat)"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:52
-#, fuzzy
-msgid "Schedule added successfully."
-msgstr "Bogen blev lukket med succes."
+#: ../src/gnome/gnc-split-reg.c:1272
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1000
+msgid "(no description)"
+msgstr "(ingen beskrivelse)"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:53
-#, fuzzy
-msgid "Loan Summary"
-msgstr "Kontoopsummering"
+#: ../src/gnome/gnc-split-reg.c:1313
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1041
+msgid "Delete the current transaction?"
+msgstr "Slet den nuværende transaktion?"
-#. src/report/standard-reports/price-scatter.scm
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:54
-#: ../src/gnome-utils/gnc-date-delta.c:220
-#: ../intl-scm/guile-strings.c:4036
-msgid "Months"
-msgstr "MÃ¥neder"
+#: ../src/gnome/gnc-split-reg.c:1314
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1042
+msgid "You would be deleting a transaction with reconciled splits! This is not a good idea as it will cause your reconciled balance to be off."
+msgstr "Du ville komme til at slette en transaktion med afstemte opsplitninger! Dette er ikke en god ide, da det vil medføre at den afstemte balance ikke længere stemmer."
-#. src/report/standard-reports/price-scatter.scm
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:55
-#: ../src/gnome-utils/gnc-date-delta.c:222
-#: ../intl-scm/guile-strings.c:4038
-msgid "Years"
-msgstr "Ã
r"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:1
+msgid "GUID of predefined check format to use"
+msgstr ""
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:56
-#, fuzzy
-msgid "Current Year"
-msgstr "Valuta"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:2
+msgid "This value specifies the predefined check format to use. The number is the guid of a known check format."
+msgstr ""
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:57
-msgid "Now + 1 Year"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:3
+msgid "Which check position to print"
msgstr ""
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:58
-msgid "Whole Loan"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:4
+msgid "On preprinted checks containing multiple checks per page, this setting specifies which check position to print. The possible values are 0, 1 and 2, corresponding to the top, middle and bottom checks on the page."
msgstr ""
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:60
-#, fuzzy
-msgid "Interest Rate"
-msgstr "Rente"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:5
+msgid "Number of checks to print on the first page."
+msgstr "Antallet af check at udskrive på den første side."
+
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:6
+msgid "Date format to use"
+msgstr "Datoformat:"
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:61
-msgid "APR (Compounded Daily)"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:7
+msgid "This is the numerical identifier of the predefined date format to use."
msgstr ""
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:62
-msgid "APR (Compounded Weekly)"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:8
+msgid "Custom date format"
+msgstr "Tilpasset datoformat"
+
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:9
+msgid "If the date format is set to indicate a custom date format, this value is used as an argument to strftime to produce the date to be printed. It may be any valid strftime string; for more information about this format, read the manual page of strftime by \"man 3 strftime\"."
msgstr ""
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:63
-msgid "APR (Compounded Monthly)"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:10
+msgid "Units in which the custom coordinates are expressed"
msgstr ""
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:64
-msgid "APR (Compounded Quarterly)"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:11
+msgid "Units in which the custom coordinates are expressed (inches, mm, ...)."
msgstr ""
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:65
-msgid "APR (Compounded Annually)"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:12
+msgid "Position of payee name"
msgstr ""
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:66
-#, fuzzy
-msgid "Fixed Rate"
-msgstr "Match dato"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:13
+msgid "This value contains the X,Y coordinates for the start of the payee line on the check."
+msgstr "Denne værdi indeholder x- og y-koordinaterne på starten af modtageren af checken."
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:67
-msgid "3/1 Year ARM"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:14
+msgid "Position of date line"
msgstr ""
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:68
-msgid "5/1 Year ARM"
-msgstr ""
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:15
+msgid "This value contains the X,Y coordinates for the start of the date line on the check. Coordinates are from the lower left corner of the specified check position."
+msgstr "Denne værdi indeholder x- og y-koordinaterne på starten af datolinjen på checken. Koordinaterne er fra det nedre venstre hjørne på den angivne checkposition."
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:69
-msgid "7/1 Year ARM"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:16
+msgid "Position of check amount in words"
msgstr ""
-#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:70
-msgid "10/1 Year ARM"
-msgstr ""
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:17
+msgid "This value contains the X,Y coordinates for the start of the written amount line on the check. Coordinates are from the lower left corner of the specified check position."
+msgstr "Denne værdi indeholder x- og y-koordinaterne på starten af linjen hvor beløbet skrives på checken. Koordinaterne er fra det nedre venstre hjørne på den angivne checkposition."
-#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:1
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:18
+msgid "Position of check amount in numbers"
+msgstr "Placering af check-beløbet i tal"
+
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:19
+msgid "This value contains the X,Y coordinates for the start of the numerical amount line on the check. Coordinates are from the lower left corner of the specified check position."
+msgstr "Denne værdi indeholder x- og y-koordinaterne på starten af den numeriske beløbslinje på checken. Koordinaterne er fra det nedre venstre hjørne på den angivne checkposition."
+
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:20
#, fuzzy
-msgid "This assistant will help you record a stock split or stock merger.\n"
-msgstr "Denne assistent vil hjælpe dig med at registrere en aktieopsplitning eller -sammenlægning."
+msgid "Position of payee address"
+msgstr "Markørens farve"
-#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:3
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:21
#, fuzzy
-msgid "Stock Split Assistant"
-msgstr "Aktieopdelingsdetaljer"
+msgid "This value contains the X,Y coordinates for the start of the payee address line on the check. Coordinates are from the lower left corner of the specified check position."
+msgstr "Denne værdi indeholder x- og y-koordinaterne på starten af datolinjen på checken. Koordinaterne er fra det nedre venstre hjørne på den angivne checkposition."
-#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:4
-msgid "Select the account for which you want to record a stock split or merger."
-msgstr "Vælg den konto, du ønsker at registrere en aktieopsplitning eller -sammenlægning."
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:22
+msgid "Position of notes line"
+msgstr "Placering af linje for noter"
-#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:5
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:23
#, fuzzy
-msgid "Stock Split Account"
-msgstr "Aktiekonto"
+msgid "This value contains the X,Y coordinates for the start of the notes line on the check. Coordinates are from the lower left corner of the specified check position."
+msgstr "Denne værdi indeholder x- og y-koordinaterne på starten af datolinjen på checken. Koordinaterne er fra det nedre venstre hjørne på den angivne checkposition."
-#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:6
-#, fuzzy
-msgid "Enter the date and the number of shares you gained or lost from the stock split or merger. For stock mergers (negative splits) use a negative value for the share distribution. You can also enter a description of the transaction, or accept the default one."
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:24
+msgid "Position of memo line"
msgstr ""
-"Angiv datoen og antallet af aktier, du har vundet eller tabt ved en aktieopsplitning eller -sammenlægning.\n"
-"Brug en negativ værdi for aktiefordelingen for aktiesammenlægninger (negative opsplitninger).\n"
-"Du kan også skrive en beskrivelse for transaktionen eller bruge standardbeskrivelsen."
-#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:7
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:6
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:16
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:3
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:3
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:32
-msgid "_Date:"
-msgstr "_Dato:"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:25
+msgid "This value contains the X,Y coordinates for the start of the memo line on the check. Coordinates are from the lower left corner of the specified check position."
+msgstr "Denne værdi indeholder x- og y-koordinaterne på starten af memolinjen på checken. Koordinaterne er fra det nedre venstre hjørne på den angivne checkposition."
-#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:8
-msgid "_Shares:"
-msgstr "_Aktier:"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:26
+msgid "Offset for complete check"
+msgstr ""
-#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:9
-msgid "Desc_ription:"
-msgstr "Besk_rivelse:"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:27
+#, fuzzy
+msgid "This value contains the X,Y offset for the complete check. Coordinates are from the lower left corner of the specified check position."
+msgstr "Denne værdi indeholder x- og y-koordinaterne på starten af memolinjen på checken. Koordinaterne er fra det nedre venstre hjørne på den angivne checkposition."
-#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:10
-msgid "Stock Split"
-msgstr "Aktieopdeling"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:28
+msgid "Rotation angle"
+msgstr "Rotationsvinkel"
-#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:11
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:29
+msgid "Number of degrees to rotate the check."
+msgstr "Antallet af grader checken skal roteres."
+
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:30
+msgid "Position of split's amount in numbers"
+msgstr "Placering af opdelingsbeløb i tal"
+
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:31
#, fuzzy
-msgid "If you want to record a stock price for the split, enter it below. You may safely leave it blank."
-msgstr ""
-"Hvis du vil registrere aktiekursen for opsplitninger, kan du indtaste\n"
-"den herunder. Du kan også lade den være tom."
+msgid "This value contains the X,Y coordinates for the start of the split's amount line on the check. Coordinates are from the lower left corner of the specified check position."
+msgstr "Denne værdi indeholder x- og y-koordinaterne på starten af linjen hvor beløbet skrives på checken. Koordinaterne er fra det nedre venstre hjørne på den angivne checkposition."
-#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:12
-msgid "New _Price:"
-msgstr "Ny _pris:"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:32
+#, fuzzy
+msgid "Position of split's memo line"
+msgstr "Markørens farve"
-#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:13
-msgid "Currenc_y:"
-msgstr "Val_uta:"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:33
+#, fuzzy
+msgid "This value contains the X,Y coordinates for the start of the split's memo line on the check. Coordinates are from the lower left corner of the specified check position."
+msgstr "Denne værdi indeholder x- og y-koordinaterne på starten af memolinjen på checken. Koordinaterne er fra det nedre venstre hjørne på den angivne checkposition."
-#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:14
-msgid "Stock Split Details"
-msgstr "Aktieopdelingsdetaljer"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:34
+#, fuzzy
+msgid "Position of split's account line"
+msgstr "Sortér efter check/transaktionsnummer"
-#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:15
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:35
#, fuzzy
-msgid "If you received a cash disbursement as a result of the stock split, enter the details of that payment here. Otherwise, just click `Forward'."
+msgid "This value contains the X,Y coordinates for the start of the split's account line on the check. Coordinates are from the lower left corner of the specified check position."
+msgstr "Denne værdi indeholder x- og y-koordinaterne på starten af linjen hvor beløbet skrives på checken. Koordinaterne er fra det nedre venstre hjørne på den angivne checkposition."
+
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:36
+msgid "Print the date format below the date."
+msgstr "Udskriv datoformatet neden under datoen."
+
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:37
+msgid "Each time the date is printed, print the date format immediately below in 8 point type using the characters Y, M, and D."
msgstr ""
-"Hvis du modtog en kontant udbetaling som følge af aktieopsplitningen,\n"
-"kan du indtaste detaljer om denne betaling her. Hvis ikke, klik 'Næste'."
-#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:16
-msgid "_Amount:"
-msgstr "_Beløb:"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:38
+msgid "The default check printing font"
+msgstr "Standardskrifttypen til udskrivning af check"
-#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:17
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:28
-msgid "_Memo:"
-msgstr "_Note:"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:39
+msgid "The default font to use when printing checks. This value will be overridden by any font specified in a check description file."
+msgstr "Standardskrifttypen til brug for udskrivning af check. Denne værdi vil blive tilsidesat af en skrifttype angivet i en checkbeskrivelsesfil."
-#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:18
-msgid "Cash In Lieu"
-msgstr "Afrundingsbeløb"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:40
+msgid "Print '***' before and after text."
+msgstr "Udskriv »***« før og efter tekst."
-#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:19
-msgid "<b>_Income Account</b>"
-msgstr "<b>Indtægtskonto</b>"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.commodities.gschema.xml.in.in.h:1
+msgid "Show currencies in this dialog"
+msgstr "Vis valutaer i denne dialog"
-#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:20
-msgid "<b>A_sset Account</b>"
-msgstr "<b>Aktivkonto</b>"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:3
+msgid "Position of the horizontal pane divider."
+msgstr "Placering af den vandrette panelopdeler."
-#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:21
-#, fuzzy
-msgid "Cash in Lieu"
-msgstr "Afrundingsbeløb"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:5
+msgid "This setting indicates whether to search in all items in the current class, or only in 'active' items in the current class."
+msgstr ""
-#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:22
-#, fuzzy
-msgid "If you are finished creating the stock split or merger, press `Apply'. You may also press `Back' to review your choices, or `Cancel' to quit without making any changes."
+#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:6
+#: ../src/import-export/aqb/gschemas/org.gnucash.dialogs.import.hbci.gschema.xml.in.in.h:17
+#: ../src/import-export/csv-exp/gschemas/org.gnucash.dialogs.export.csv.gschema.xml.in.in.h:3
+#: ../src/import-export/csv-imp/gschemas/org.gnucash.dialogs.import.csv.gschema.xml.in.in.h:3
+#: ../src/import-export/ofx/gschemas/org.gnucash.dialogs.import.ofx.gschema.xml.in.in.h:1
+#: ../src/import-export/qif-imp/gschemas/org.gnucash.dialogs.import.qif.gschema.xml.in.in.h:6
+msgid "Last pathname used"
+msgstr "Sidste stinavn brugt"
+
+#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:7
+#: ../src/import-export/aqb/gschemas/org.gnucash.dialogs.import.hbci.gschema.xml.in.in.h:18
+#: ../src/import-export/csv-exp/gschemas/org.gnucash.dialogs.export.csv.gschema.xml.in.in.h:4
+#: ../src/import-export/csv-imp/gschemas/org.gnucash.dialogs.import.csv.gschema.xml.in.in.h:4
+#: ../src/import-export/ofx/gschemas/org.gnucash.dialogs.import.ofx.gschema.xml.in.in.h:2
+#: ../src/import-export/qif-imp/gschemas/org.gnucash.dialogs.import.qif.gschema.xml.in.in.h:7
+msgid "This field contains the last pathname used by this window. It will be used as the initial filename/pathname the next time this window is opened."
msgstr ""
-"Tryk \"Afslut\", hvis du har afsluttet oprettelsen af aktieopdeling eller \n"
-"-sammenlægning. Du kan også trykke \"Tilbage\" for at tjekke dine valg eller \n"
-"\"Annullér\" for at afslutte uden at udføre nogen ændringer."
-#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:23
+#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:8
#, fuzzy
-msgid "Stock Split Finish"
-msgstr "Aktieopdeling"
+msgid "Position of the vertical pane divider."
+msgstr "Markørens farve"
+
+#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:9
+msgid "Show the new user window"
+msgstr "Vis vinduet for ny bruger"
+
+#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:10
+msgid "If active, the new user window will be shown. Otherwise it will not be shown."
+msgstr "Hvis aktiv, vil det nye brugervindue blive vist. Ellers vil det ikke blive vist."
+
+#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:11
+msgid "New hierarchy window on \"New File\""
+msgstr "Nyt hierarkivindue på »Ny fil«"
+
+#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:12
+msgid "If active, the \"New Hierarchy\" window will be shown whenever the \"New File\" menu item is chosen. Otherwise it will not be shown."
+msgstr ""
+
+#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:13
+msgid "Default to 'new search' if fewer than this number of items is returned"
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-commodities.glade.h:1
-#, fuzzy
-msgid "Securities"
-msgstr "Værdipapir"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:1
+msgid "Pre-select cleared transactions"
+msgstr "Forhåndsvælg ryddede transaktioner"
-#: ../src/gnome/gtkbuilder/dialog-commodities.glade.h:2
-msgid "<b>Securities</b>"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:2
+msgid "If active, all transactions marked as cleared in the register will appear already selected in the reconcile dialog. Otherwise no transactions will be initially selected."
msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-commodities.glade.h:3
-msgid "Show National Currencies"
-msgstr "Vis nationale valutaer"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:3
+msgid "Prompt for interest charges"
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-commodities.glade.h:4
-#, fuzzy
-msgid "Add a new commodity."
-msgstr "Tilføj en ny pris."
+#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:4
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:118
+msgid "Prior to reconciling an account which charges or pays interest, prompt the user to enter a transaction for the interest charge or payment. Currently only enabled for Bank, Credit, Mutual, Asset, Receivable, Payable, and Liability accounts."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-commodities.glade.h:5
+#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:5
#, fuzzy
-msgid "Remove the current commodity."
-msgstr "Gem den aktuelle pris"
+msgid "Prompt for credit card payment"
+msgstr "Automatiske kreditkortbetalinger"
-#: ../src/gnome/gtkbuilder/dialog-commodities.glade.h:6
+#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:6
#, fuzzy
-msgid "Edit the current commodity."
-msgstr "Gem den aktuelle pris"
+msgid "If active, after reconciling a credit card account, prompt the user to enter a credit card payment. Otherwise do not prompt the user for this."
+msgstr "Bed brugeren angive en kreditkorts-indbetaling efter afstemning af et kreditkortsudtog"
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:1
-#, fuzzy
-msgid "Loan Repayment Calculator"
-msgstr "Finanslommeregner"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:7
+msgid "Always reconcile to today"
+msgstr "Afstem altid til i dag"
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:2
-msgid "<b>Calculations</b>"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:8
+msgid "If active, always open the reconcile dialog using today's date for the statement date, regardless of previous reconciliations."
msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:3
+#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:3
#, fuzzy
-msgid "Payment periods"
-msgstr "Løbeperioder"
+#| msgid "Show the \"since last run\" window when a file is opened."
+msgid "Run \"since last run\" dialog when a file is opened."
+msgstr "Vis »siden sidste kørsel«-vinduet når en fil åbnes."
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:4
-#, fuzzy
-msgid "Clear the entry."
-msgstr "Slet punktet"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:4
+msgid "This setting controls whether the scheduled transactions \"since last run\" processing is run automatically when a data file is opened. This includes the initial opening of the data file when GnuCash starts. If this setting is active, run the \"since last run\" process, otherwise it is not run."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:5
+#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:5
#, fuzzy
-msgid "Interest rate"
-msgstr "Rente"
+#| msgid "Show the \"since last run\" window when a file is opened."
+msgid "Show \"since last run\" notification dialog when a file is opened."
+msgstr "Vis »siden sidste kørsel«-vinduet når en fil åbnes."
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:6
-msgid "Clear the entry"
-msgstr "Slet punktet"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:6
+msgid "This setting controls whether the scheduled transactions notification-only \"since last run\" dialog is shown when a data file is opened (if \"since last run\" processing is enabled on file open). This includes the initial opening of the data file when GnuCash starts. If this setting is active, show the dialog, otherwise it is not shown."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:7
-#, fuzzy
-msgid "Present value"
-msgstr "Nuværdi"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:7
+msgid "Set the \"auto create\" flag by default"
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:8
-#, fuzzy
-msgid "Periodic payment"
-msgstr "Periodisk betaling"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:8
+msgid "If active, any newly created scheduled transaction will have its 'auto create' flag set active by default. The user can change this flag during transaction creation, or at any later time by editing the scheduled transaction."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:9
+#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:9
+msgid "How many days in advance to notify the user."
+msgstr "Hvor mange dage i forvejen, brugeren skal have besked."
+
+#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:10
#, fuzzy
-msgid "Future value"
-msgstr "Fremtidig værdi"
+msgid "Set the \"notify\" flag by default"
+msgstr "Sæt valgmuligheden til dens standardværdi"
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:10
-msgid "Recalculate the (single) blank entry in the above fields."
+#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:11
+msgid "If active, any newly created scheduled transaction will have its 'notify' flag set by default. The user can change this flag during transaction creation, or at any later time by editing the scheduled transaction. This setting only has meaning if the create-auto setting is active."
msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:11
-msgid "Calculate"
-msgstr "Beregn"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:12
+msgid "How many days in advance to remind the user."
+msgstr "Hvor mange dage i forvejen, brugeren skal huskes på."
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:12
-msgid "<b>Payment Options</b>"
-msgstr ""
+#: ../src/gnome/gschemas/org.gnucash.dialogs.totd.gschema.xml.in.in.h:1
+msgid "The next tip to show."
+msgstr "Det næste tip."
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:13
-msgid "Payment Total:"
-msgstr "Totale betalinger:"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.totd.gschema.xml.in.in.h:4
+msgid "Show \"Tip Of The Day\" at GnuCash start"
+msgstr "Vis »Dagens tip« når GnuCash startes"
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:14
-msgid "total"
-msgstr "total"
+#: ../src/gnome/gschemas/org.gnucash.dialogs.totd.gschema.xml.in.in.h:5
+msgid "Enables the \"Tip Of The Day\" when GnuCash starts up. If active, the dialog will be shown. Otherwise it will not be shown."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:15
-#, fuzzy
-msgid "Discrete"
-msgstr "Udlod"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:1
+msgid "Save window sizes and locations"
+msgstr "Gem vinduesstørrelser og -positioner"
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:16
-#, fuzzy
-msgid "Continuous"
-msgstr "Indhold"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:2
+msgid "If active, the size and location of each dialog window will be saved when it is closed. The sizes and locations of content windows will be remembered when you quit GnuCash. Otherwise the sizes will not be saved."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:18
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:51
-#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:1
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:3
#, fuzzy
-msgid "Frequency:"
-msgstr "Valuta:"
-
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:19
-msgid "When paid:"
-msgstr ""
+msgid "Character to use as separator between account names"
+msgstr "Tegnet bruges til at adskille fuldt kvalificerede kontonavne"
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:20
-msgid "Beginning"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:4
+msgid "This setting determines the character that will be used between components of an account name. Possible values are any single non-alphanumeric unicode character, or any of the following strings: \"colon\" \"slash\", \"backslash\", \"dash\" and \"period\"."
msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:21
-#, fuzzy
-msgid "End"
-msgstr "Slutter "
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:5
+msgid "Compress the data file"
+msgstr "Komprimer datafilen"
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:22
-#, fuzzy
-msgid "<b>Compounding:</b>"
-msgstr "Renters rente:"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:6
+msgid "Enables file compression when writing the data file."
+msgstr "Aktiverer filkomprimering når datafilen skrives."
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:23
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:7
#, fuzzy
-msgid "<b>Period:</b>"
-msgstr "Periode:"
+msgid "Show auto-save explanation"
+msgstr "Vis GnuCash's brugsbeskrivelse"
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:25
-msgid "Annual"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:8
+msgid "If active, GnuCash shows an explanation of the auto-save feature the first time that feature is started. Otherwise no extra explanation is shown."
msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:26
-#, fuzzy
-msgid "Semi-annual"
-msgstr "Halvmånedligt"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:9
+msgid "Auto-save time interval"
+msgstr "Gem automatisk tidsinterval"
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:27
-msgid "Tri-annual"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:10
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:85
+msgid "The number of minutes until saving of the data file to harddisk will be started automatically. If zero, no saving will be started automatically."
msgstr ""
-#. src/report/standard-reports/transaction.scm
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:28
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:44
-#: ../intl-scm/guile-strings.c:4660
-msgid "Quarterly"
-msgstr "Kvartalsvist"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:11
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:95
+msgid "Enable timeout on \"Save changes on closing\" question"
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:29
-#, fuzzy
-msgid "Bi-monthly"
-msgstr "Halvmånedligt"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:12
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:96
+msgid "If enabled, the \"Save changes on closing\" question will only wait a limited number of seconds for an answer. If the user didn't answer within that time, the changes will be saved automatically and the question window closed."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:32
-#, fuzzy
-msgid "Bi-weekly"
-msgstr "Ugentligt"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:13
+msgid "Time to wait for answer"
+msgstr ""
-# daglig eller dagligt (er lidt bange for at det måske kan være begge dele).
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:34
-msgid "Daily (360)"
-msgstr "Dagligt (360)"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:14
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:98
+msgid "The number of seconds to wait before the question window will be closed and the changes saved automatically."
+msgstr ""
-# daglig eller dagligt (er lidt bange for at det måske kan være begge dele).
-#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:35
-msgid "Daily (365)"
-msgstr "Dagligt (365)"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:15
+msgid "Display negative amounts in red"
+msgstr "Vis negative beløb med rødt"
-#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:1
-msgid "Lot Viewer"
-msgstr "Afkastfremviser"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:16
+msgid "Automatically insert a decimal point"
+msgstr "Indsæt automatisk et decimaltegn"
-#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:2
-msgid "Enter a name for the highlighted lot."
-msgstr "Indtast et navn for det fremhævede afkast."
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:17
+#, fuzzy
+msgid "If active, GnuCash will automatically insert a decimal point into values that are entered without one. Otherwise GnuCash will not modify entered numbers."
+msgstr "Indsæt automatisk et decimaltegn i værdier, der indtastes uden et sådant."
-#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:3
-msgid "<b>_Notes</b>"
-msgstr "<b>_Bemærkninger</b>"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:18
+#, fuzzy
+msgid "Number of automatic decimal places"
+msgstr "Hvor mange pladser efter kommaet der skal udfyldes."
-#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:4
-msgid "Enter any notes you want to make about this lot."
-msgstr "Indtast noter du ønsker registreret vedrørende dette afkast."
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:19
+#, fuzzy
+msgid "This field specifies the number of automatic decimal places that will be filled in."
+msgstr "Hvor mange pladser efter kommaet der skal udfyldes."
-#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:5
-msgid "<b>_Title</b>"
-msgstr "<b>_Titel</b>"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:20
+msgid "Tool to migrate preferences from old backend (CGonf) to new one (GSettings) has run successfully."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:6
-msgid "<b>_Lots in This Account</b>"
-msgstr "<b>_Afkast på denne konto</b>"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:21
+msgid "GnuCash switched to another backend to store user preferences between 2.4 and 2.6. To smooth the transition, most preferences will be migrated the first time a 2.6 version of GnuCash is run. This migration should only run once. This preference keeps track whether or not this migration tool has run successfully."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:7
-msgid "Show only open lots"
-msgstr "Vis kun åbne afkast"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:22
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:90
+#, fuzzy
+msgid "Do not create log/backup files."
+msgstr "Kunne ikke oprette åbningssaldo"
-#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:8
-msgid "<b>Splits _free</b>"
-msgstr "<b>Opdelinger _fri</b>"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:23
+msgid "This setting specifies what to do with old log/backups files. \"forever\" means keep all old files. \"never\" means no old log/backup files are kept. Each time you save, older versions of the file are removed. \"days\" means keep old files for a number of days. How many days is defined in key 'retain-days'"
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:9
-msgid ">>"
-msgstr ">>"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:24
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:92
+msgid "Delete old log/backup files after this many days (0 = never)."
+msgstr "Slet gamle logge og sikkerhedskopier efter dette antal dage (0 = aldrig)."
-#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:10
-msgid "<<"
-msgstr "<<"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:25
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:94
+msgid "Do not delete log/backup files."
+msgstr "Slet ikke logge og sikkerhedskopier."
-#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:11
-msgid "<b>Splits _in lot</b>"
-msgstr "<b>Opdelinger _i afkast</b>"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:26
+msgid "Delete old log/backup files after this many days (0 = never)"
+msgstr "Slet gamle logge og sikkerhedskopier efter dette antal dage (0 = aldrig)"
-#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:12
-msgid "_New Lot"
-msgstr "_Nyt afkast"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:27
+msgid "This setting specifies the number of days after which old log/backup files will be deleted (0 = never)."
+msgstr "Denne indstilling angiver det antal dage hvorefter gamle sikkerhedsfiler vil blive slettet (0 = aldrig)."
-#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:13
-#, fuzzy
-msgid "Scrub _Account"
-msgstr "Aktiekonto"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:28
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:23
+msgid "Don't sign reverse any accounts."
+msgstr "Skift ikke fortegn for nogen konto."
-#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:14
-msgid "Scrub the highlighted lot"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:29
+msgid "This setting allows certain accounts to have their balances reversed in sign from positive to negative, or vice versa. The setting \"income-expense\" is for users who like to see negative expenses and positive income. The setting of \"credit\" is for users who want to see balances reflect the debit/credit status of the account. The setting \"none\" doesn't reverse the sign on any balances."
msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:15
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:30
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:25
#, fuzzy
-msgid "_Scrub"
-msgstr "Under"
+msgid "Sign reverse balances on the following: Credit Card, Payable, Liability, Equity, and Income."
+msgstr "Skift fortegn for kreditkort-, passiv-, udlignings- og indtægtskonti."
-#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:16
-msgid "Delete the highlighted lot"
-msgstr "Slet det fremhævede afkast"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:31
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:27
+#, fuzzy
+msgid "Sign reverse balances on income and expense accounts."
+msgstr "Skift fortegn for indtægts- og udgiftskonti"
-#: ../src/gnome/gtkbuilder/dialog-new-user.glade.h:1
-msgid "<span weight=\"bold\" size=\"larger\">Display Welcome Dialog Again?</span>"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:32
+msgid "Use account colors in the account hierarchy"
+msgstr "Brug kontofarver i kontohierarket"
+
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:33
+msgid "If active the account hierarchy will colorize the account using the account's custom color if set. This can serve as a visual aid to quickly identify accounts."
msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-new-user.glade.h:2
-msgid "If you press the <i>Yes</i> button, the <i>Welcome to GnuCash</i> dialog will be displayed again next time you start GnuCash. If you press the <i>No</i> button, it will not be displayed again."
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:34
+msgid "Use account colors in the tabs of open account registers"
msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-new-user.glade.h:3
-msgid "<span size=\"larger\" weight=\"bold\">Welcome to GnuCash!</span>"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:35
+msgid "If active the account register tabs will be colored using the account's custom color if set. This can serve as a visual aid to quickly identify accounts."
msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-new-user.glade.h:4
-msgid "There are some predefined actions available that most new users prefer to get started with GnuCash. Select one of these actions from below and click the <i>OK</i> button or press the <i>Cancel</i> button if you don't want to perform any of them."
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:36
+#, fuzzy
+msgid "Use formal account labels"
+msgstr "Brug bogføringsetiketter"
+
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:37
+msgid "If active, formal accounting labels \"Credit\" and \"Debit\" will be used when designating fields on screen. Otherwise, informal labels such as Increase/Decrease, \"Funds In\"/\"Funds Out\", etc. will be used."
msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-new-user.glade.h:5
-msgid "C_reate a new set of accounts"
-msgstr "Opret et nyt kontosæt"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:38
+msgid "Show close buttons on notebook tabs"
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-new-user.glade.h:6
-msgid "_Import my QIF files"
-msgstr "_Indlæs mine QIF-filer"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:39
+msgid "If active, a \"close\" button will be displayed on any notebook tab that may be closed. Otherwise, no such button will be shown on the tab. Regardless of this setting, pages can always be closed via the \"close\" menu item or the \"close\" button on toolbar."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-new-user.glade.h:7
-msgid "_Open the new user tutorial"
-msgstr "_Start rundvisningen for nye brugere"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:40
+msgid "Width of notebook tabs"
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:1
-msgid "Delete all stock prices before the date below based upon the following criteria:"
-msgstr "Slet alle aktiepriser før datoen nedenfor baseret på de følgende kriterier:"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:41
+msgid "This key specifies the maximum width of notebook tabs. If the text in the tab is longer than this value (the test is approximate) then the tab label will have the middle cut and replaced with an ellipsis."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:2
-msgid "Delete _manually entered prices"
-msgstr "Slet _manuelt indtastede priser"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:42
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:32
+msgid "Use the system locale currency for all newly created accounts."
+msgstr "Benyt systemets regionsvaluta for alle nye konti."
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:3
-msgid "If activated, delete manually entered stock prices dated earlier than the specified date. Otherwise only stock prices added by Finance::Quote will be deleted."
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:43
+msgid "This setting controls the source of the default currency for new accounts. If set to \"locale\" then GnuCash will retrieve the default currency from the user's locale setting. If set to \"other\", GnuCash will use the setting specified by the currency-other key."
msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:4
-msgid "Delete _last price for a stock"
-msgstr "Slet sids_te pris for en aktie"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:44
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:34
+msgid "Use the specified currency for all newly created accounts."
+msgstr "Brug den angivne valuta for alle nyoprettede konti."
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:5
-msgid "If activated, delete all prices before the specified date. Otherwise the last stock price dated before the date will be kept and all earlier quotes deleted."
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:45
+msgid "Default currency for new accounts"
+msgstr "Standardvaluta for nye konti"
+
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:46
+msgid "This setting specifies the default currency used for new accounts if the currency-choice setting is set to \"other\". This field must contain the three letter ISO 4217 code for a currency (e.g. USD, GBP, RUB)."
msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:7
-msgid "Price Editor"
-msgstr "Prisredigering"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:47
+msgid "Use 24 hour time format"
+msgstr "Brug 24-timers tidsformat"
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:8
-msgid "_Namespace:"
-msgstr "_Navnerum"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:48
+msgid "If active, use a 24 hour time format. Otherwise use a 12 hour time format."
+msgstr "Hvis aktiv, brug et 24-timers tidsformat. Ellers bruges et 12-timers tidsformat."
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:9
-#: ../src/gnome-utils/dialog-commodity.c:289
-msgid "_Security:"
-msgstr "_Værdipapir:"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:49
+msgid "Date format choice"
+msgstr "Valg af datoformat"
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:10
-#: ../src/gnome-utils/dialog-commodity.c:294
-msgid "Cu_rrency:"
-msgstr "Va_luta:"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:50
+msgid "This setting chooses the way dates are displayed in GnuCash. Possible values for this setting are \"locale\" to use the system locale setting, \"ce\" for Continental Europe style dates, \"iso\" for ISO 8601 standard dates , \"uk\" for United Kingdom style dates, and \"us\" for United States style dates."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:11
-msgid "S_ource:"
-msgstr "K_ilde:"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:51
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:51
+msgid "In the current calendar year"
+msgstr "Det nuværende kalenderår"
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:13
-msgid "_Price:"
-msgstr "_Pris:"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:52
+msgid "When a date is entered without year it can be completed so that it will be within the current calendar year or close to the current date based on a sliding window starting a set number of months backwards in time."
+msgstr "Når en dato indtastes uden angivelse af år, så kan året automatisk udfyldes inden for det nuværende kalenderår eller tæt på den nuværende dato baseret på et glidende vindue, der begynder et angivet antal måneder tilbage i tid."
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:14
-msgid "Add a new price."
-msgstr "Tilføj en ny pris."
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:53
+msgid "In a sliding 12-month window starting a configurable number of months before the current month"
+msgstr "I et glidende 12-måneders vindue der starter et indstillet antal af måneder før den nuværende måned"
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:15
-msgid "Remove the current price."
-msgstr "Fjern den aktuelle pris."
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:54
+msgid "Maximum number of months to go back."
+msgstr "Maksimalt antal måneder tilbage i tiden."
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:16
-msgid "Edit the current price."
-msgstr "Redigér den nuværende pris."
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:55
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:55
+msgid "Dates will be completed so that they are close to the current date. Enter the maximum number of months to go backwards in time when completing dates."
+msgstr "Datoer vil blive automatisk udfyldt, så de er tæt på den nuværende dato. Indtast det maksimale antal måneder der skal gås tilbage i tid, når datoer automatisk skal udfyldes."
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:18
-msgid "Remove prices older than a user-entered date."
-msgstr "Fjern priser, der er ældre end en brugerangivet dato."
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:56
+msgid "Show splash screen"
+msgstr "Vis opstartsskærm"
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:19
-msgid "Remove _Old"
-msgstr "Fjern _gammel"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:57
+msgid "If active, a splash screen will be shown at startup. Otherwise no splash screen will be shown."
+msgstr "Hvis aktiv, vil en opstartsskærm blive vist ved opstart. Ellers vil en opstartsskærm ikke blive vist."
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:20
-msgid "Get new online quotes for stock accounts."
-msgstr "Hent nye online-kurser for aktiekonti."
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:58
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:176
+msgid "Display the notebook tabs at the top of the window."
+msgstr "Vis notesbogfanebladene øverst i vinduet."
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:21
-msgid "Get _Quotes"
-msgstr "Hent _kurser"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:59
+msgid "This setting determines the edge at which the tabs for switching pages in notebooks are drawn. Possible values are \"top\", \"left\", \"bottom\" and \"right\". It defaults to \"top\"."
+msgstr "Denne indstilling bestemmer kanten, hvor faneblade for skift af sider i notebøger tegnes. Mulige værdier er »top«, »left«, »bottom« og »right«. Standarden er »top«."
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:22
-msgid "Bid"
-msgstr ""
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:60
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:178
+msgid "Display the notebook tabs at the bottom of the window."
+msgstr "Vis notesbogfaneblade i bunden af vinduet."
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:23
-msgid "Ask"
-msgstr ""
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:61
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:180
+msgid "Display the notebook tabs at the left of the window."
+msgstr "Vis notesbogfaneblade til venstre i vinduet."
+
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:62
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:182
+msgid "Display the notebook tabs at the right of the window."
+msgstr "Vis notesbogfaneblade til højre i vinduet."
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:24
-#, fuzzy
-msgid "Last"
-msgstr "Sidste"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:63
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:185
+msgid "Display the summary bar at the top of the page."
+msgstr "Vis oversigtsbjælken øverst på siden."
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:25
-#, fuzzy
-msgid "Net Asset Value"
-msgstr "Nettoaktiver:"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:64
+msgid "This setting determines the edge at which the summary bar for various pages is drawn. Possible values are \"top\" and \"bottom\". It defaults to \"bottom\"."
+msgstr "Denne indstilling bestemmer kanten, hvor oversigtsbjælken for diverse sider tegnes. Mulige værdier er »top«, og »bottom«. Standarden er »bottom«."
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:27
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:26
-msgid "Dummy commodity Line"
-msgstr ""
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:65
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:187
+msgid "Display the summary bar at the bottom of the page."
+msgstr "Vis oversigtsbjælken i bunden af siden."
-#: ../src/gnome/gtkbuilder/dialog-price.glade.h:28
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:27
-msgid "Dummy namespace Line"
-msgstr ""
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:66
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:173
+msgid "Closing a tab moves to the most recently visited tab."
+msgstr "Ved lukning af et faneblad flyttes til det senest besøgte faneblad."
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:1
-msgid "Save Custom Check Format"
-msgstr "Gem eget checkformat"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:67
+msgid "If active, closing a tab moves to the most recently visited tab. Otherwise closing a tab moves one tab to the left."
+msgstr "Hvis aktiv, ved lukning af et faneblad flyttes til det senest besøgte faneblad. Ellers vil lukning af et faneblad flytte et faneblad til venstre."
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:2
-msgid "Enter a title for this custom format. This title will appear in the \"Check format\" selector of the Print Check dialog. Using the title of an existing custom format will cause that format to be overwritten."
-msgstr "Indtast en titel for dette eget format. Denne titel vil fremgå i »Checkformat«-vælgeren i dialogen Udskriv check. Brug af en eksisterende titel vil gøre at formatet bliver overskrevet."
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:68
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:62
+msgid "Set book option on new files to use split \"action\" field for \"Num\" field on registers/reports"
+msgstr "Sæt bogtilvalg på nye filer til at bruge opdelt »handlingsfelt« for »Num-felt« på klassekladder/rapporter"
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:3
-msgid "Print Check"
-msgstr "Udskriv check"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:69
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:63
+msgid "If selected, the default book option for new files is set so that the 'Num' cell on registers shows/updates the split 'action' field and the transaction 'num' field is shown on the second line in double line mode (and is not visible in single line mode). Otherwise, the default book option for new files is set so that the 'Num' cell on registers shows/updates the transaction 'num' field."
+msgstr "Hvis valgt vil standardbogindstillingen for nye filer være sat, så »Num-cellen« på klassekladder viser/opdaterer opdelingsfeltet »action« og transaktionsfeltet »num« vises på den anden linje i dobbelt linje-tilstand (og er ikke synlig i enkel linje-tilstand). Ellers sættes standardbogindstillingen for nye filer, så cellen »Num« på klassekladder viser/opdaterer transaktionsfeltet »num«."
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:4
-msgid "Check _format:"
-msgstr "Check_format:"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:70
+msgid "Color the register as specified by the system theme"
+msgstr "Farvelæg klassekladden som specificeret af systemtemaet"
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:5
-msgid "Check po_sition:"
-msgstr "Checkpo_sition:"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:71
+msgid "If active, the register will be colored as specified by the system theme. This can be overridden to provide custom colors by editing the gtkrc file in the users home directory. Otherwise the standard register colors will be used that GnuCash has always used."
+msgstr "Hvis aktiv vil klassekladden blive farvelagt som specificeret af systemtemaet. Dette kan overskrives for at tilbyde tilpassede farver ved at redigere gtkrc-filen i brugerens hjemmemappe. Ellers vil standardklassekladdens farver, som GnuCash altid har brugt, blive anvendt."
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:6
-msgid "_Date format:"
-msgstr "_Datoformat:"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:72
+msgid "\"Enter\" key moves to bottom of register"
+msgstr "»Returtast« flytter dig til bunden af kassekladen"
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:7
-msgid ""
-"Check format must have an\n"
-"ADDRESS item defined in order\n"
-"to print an address on the check."
-msgstr ""
-"Checkformat skal have et\n"
-"ADRESSE-punkt defineret for at\n"
-"kunne udskrive en adresse på checken."
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:73
+msgid "If active, pressing the enter key will move to the bottom of the register. Otherwise pressing the enter key will move to the next transaction line."
+msgstr "Hvis aktiv, vil tryk på retur-tasten flytte dig til bunden af klassekladden. Ellers vil tryk på retur-tasten flytte til næste transaktionslinje."
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:10
-msgid "_Address"
-msgstr "_Adresse"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:74
+msgid "Automatically raise the list of accounts or actions during input"
+msgstr "Fremhæv automatisk listen med konti eller handlinger under indtastning"
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:11
-msgid "Checks on first _page:"
-msgstr "Check på første _side:"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:75
+msgid "Move to Transfer field when memorised transaction auto filled"
+msgstr "Flyt til Overførselsfelt når husket transaktion er automatisk udfyldt"
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:13
-msgid "x"
-msgstr "x"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:76
+msgid "If active then after a memorised transaction is automatically filled in the cursor will move to the Transfer field. If not active then it skips to the value field."
+msgstr "Hvis aktiv vil markøren, efter en husket transaktion automatisk er udfyldt, flytte til Overførselsfeltet. Hvis ikke aktiv går markøren til værdifeltet."
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:14
-msgid "y"
-msgstr "y"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:77
+msgid "Create a new window for each new register"
+msgstr "Opret et nyt vindue for hver ny kassekladde"
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:15
-msgid "Pa_yee:"
-msgstr "_Modtager:"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:78
+msgid "If active, each new register will be opened in a new window. Otherwise each new register will be opened as a tab in the main window."
+msgstr "Hvis aktiv, vil hver ny klassekladde blive åbnet i et nyt vindue. Ellers vil hver klassekladde blive åbnet som et faneblad i hovedvinduet."
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:17
-msgid "Amount (_words):"
-msgstr "Sum (_bogstaver):"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:79
+msgid "Color all lines of a transaction the same"
+msgstr "Farvelæg alle linjer i en transaktion med samme farve"
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:18
-msgid "Amount (_numbers):"
-msgstr "Sum (ci_fre):"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:80
+msgid "If active all lines that make up a single transaction will use the same color for their background. Otherwise the background colors are alternated on each line."
+msgstr "Hvis aktiv vil alle linjer, som udgør en enkel transaktion, bruge den samme farve for deres baggrund. Ellers vil baggrundsfarverne ændre sig for hver linje."
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:19
-msgid "_Notes:"
-msgstr "_Bemærkninger:"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:81
+msgid "Show horizontal borders in a register"
+msgstr "Vis vandrette kanter i en klassekladde"
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:20
-msgid "_Units:"
-msgstr "_Enheder:"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:82
+msgid "Show horizontal borders between rows in a register. If active the border between cells will be indicated with a heavy line. Otherwise the border between cells will not be marked."
+msgstr "Vis vandrette kanter mellem rækker i en klassekladde. Hvis aktiv vil kanten mellem cellerne indikeres med en tyk lije. Ellers vil kanten mellem cellerne ikke blive markeret."
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:21
-msgid "_Translation:"
-msgstr "Oversæ_ttelse:"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:83
+msgid "Show vertical borders in a register"
+msgstr "Vis lodrette kanter i en klassekladde"
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:22
-msgid "_Rotation"
-msgstr "_Rotation"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:84
+msgid "Show vertical borders between columns in a register. If active the border between cells will be indicated with a heavy line. Otherwise the border between cells will not be marked."
+msgstr "Vis lodrette kanter mellem kolonner i en klassekladde. Hvis aktiv vil kanten mellem cellerne indikeres med en tyk lije. Ellers vil kanten mellem cellerne ikke blive markeret."
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:23
-msgid "The origin point is the upper left-hand corner of the page."
-msgstr "Udgangspunktet er det øvre venstre hjørne på siden."
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:85
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:138
+msgid "Show all transactions on one line. (Two in double line mode.)"
+msgstr "Vis transaktioner på en eller to linjer. (to i dobbelt linje-tilstand.)"
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:24
-msgid "The origin point is the lower left-hand corner of the page."
-msgstr "Udgangspunktet er det nedre venstre hjørne på siden."
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:86
+msgid "This field specifies the default view style when opening a new register window. Possible values are \"ledger\", \"auto-ledger\" and \"journal\". The \"ledger\" setting says to show each transaction on one or two lines. The \"auto-ledger\" setting does the same, but also expands only the current transaction to show all splits. The \"journal\" setting shows all transactions in expanded form."
+msgstr "Dette felt angiver standardstilen for visning når et ny klassekladdevindue åbnes. Mulige værdier er »ledger«, »auto-ledger« og »journal«. Indstillingen »ledger« viser hver transaktion på en eller to linjer. Indstillingen »auto-ledger« gør det samme, men udvider også den nuværende transaktion til at vise alle opdelinger. Indstillingen »journal« viser alle transaktioner i udvidet form."
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:25
-msgid "Degrees"
-msgstr "Grader"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:87
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:140
+msgid "Automatically expand the current transaction to show all splits. All other transactions are shown on one line. (Two in double line mode.)"
+msgstr "Udvid automatisk den nuværende transakton til at vise alle opdelinger. Alle andre transaktioner vises på en linje. (To i dobbelt linje-tilstand.)"
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:26
-msgid "_Save format"
-msgstr "_Gem format"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:88
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:142
+msgid "All transactions are expanded to show all splits."
+msgstr "Alle transaktioner udvides til at vise alle opdelinger."
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:27
-msgid "_Address:"
-msgstr "_Adresse:"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:90
+msgid "Show two lines of information for each transaction in a register. This is the default setting for when a register is first opened. The setting can be changed at any time via the \"View->Double Line\" menu item."
+msgstr "Vis to linjer med information for hver transaktion i en klassekladde. Dette er standardinstillingen for første gang en klassekladde åbnes. Indstillingen kan ændres på ethvert tidspunkt via menupunktet »Vis->dobbeltlinje«."
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:29
-msgid "Splits Memo"
-msgstr "Opdeler memo"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:91
+#, fuzzy
+msgid "Only display leaf account names."
+msgstr "Vis kontoen?"
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:30
-msgid "Splits Amount"
-msgstr "Opdeler beløb"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:92
+msgid "Show only the names of the leaf accounts in the register and in the account selection popup. The default behaviour is to display the full name, including the path in the account tree. Activating this option implies that you use unique leaf names."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:31
-msgid "Splits Account"
-msgstr "Opdeler konto"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:93
+#, fuzzy
+msgid "Show the entered and reconcile dates"
+msgstr "Vis de benyttede vekselkurser"
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:32
-msgid "Custom format"
-msgstr "Eget format"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:94
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:154
+#, fuzzy
+msgid "Show the date when the transaction was entered below the posted date and reconciled date on split row."
+msgstr "Opret transaktionen dette antal dage før dets effektive dato."
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:33
-msgid "Inches"
-msgstr "Tommer"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:95
+msgid "Show entered and reconciled dates on selection"
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:34
-msgid "Centimeters"
-msgstr "Centimeter"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:96
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:160
+#, fuzzy
+msgid "Show the entered date and reconciled date on transaction selection."
+msgstr "Vælg »R« for at afstemme sammenhængende transaktioner."
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:35
-msgid "Millimeters"
-msgstr "Millimeter"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:97
+#, fuzzy
+msgid "Show the calendar buttons"
+msgstr "Vis navnekolonnen"
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:36
-msgid "Points"
-msgstr "Punkter"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:98
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:156
+msgid "Show the calendar buttons Cancel, Today and Select."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:38
-msgid "Middle"
-msgstr "Midten"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:99
+#, fuzzy
+msgid "Move the selection to the blank split on expand"
+msgstr "Flyt den valgte transaktionsskabelon en række op"
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:39
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:186
-msgid "Bottom"
-msgstr "Nederst"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:100
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:158
+msgid "This will move the selection to the blank split when the transaction is expanded."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:41
-msgid "Quicken/QuickBooks (tm) US-Letter"
-msgstr "Quicken/QuickBooks (tm) US-Letter"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:101
+#, fuzzy
+msgid "Number of transactions to show in a register."
+msgstr "Antal kolonner"
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:42
-msgid "Deluxe(tm) Personal Checks US-Letter"
-msgstr "Deluxe(tm) Personal Checks US-Letter"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:102
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:144
+msgid "Show this many transactions in a register. A value of zero means show all transactions."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:43
-msgid "Quicken(tm) Wallet Checks w/ side stub"
-msgstr "Quicken(tm) Wallet Checks m/ sidekant"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:103
+#, fuzzy
+msgid "Number of characters for auto complete."
+msgstr "Nummer"
-#: ../src/gnome/gtkbuilder/dialog-progress.glade.h:1
-msgid "Working..."
-msgstr "Arbejder ..."
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:104
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:152
+msgid "This sets the number of characters before auto complete starts for description, notes and memo fields."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-progress.glade.h:2
-msgid "1234567890123456789012345678901234567890"
-msgstr "1234567890123456789012345678901234567890"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:105
+msgid "Create a new window for each new report"
+msgstr "Opret et nyt vindue for hver ny rapport"
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:1
-msgid "Account Deletion"
-msgstr "Kontosletning"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:106
+msgid "If active, each new report will be opened in its own window. Otherwise new reports will be opened as tabs in the main window."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:2
-msgid "The following Scheduled Transactions reference the deleted account and must now be corrected. Press OK to edit them."
-msgstr "De følgende planlagte transaktioner har reference til den slettede konto og skal nu rettes. Tryk O.k. for at redigere dem."
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:107
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:163
+msgid "Use the system locale currency for all newly created reports."
+msgstr "Brug systemets lokale valuta for alle nyoprettede rapporter."
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:4
-#, fuzzy
-#| msgid "<b>Since Last Run Dialog</b>"
-msgid "<b>Since Last Run</b>"
-msgstr "<b>Siden sidste kør-dialog</b>"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:108
+msgid "This setting controls the default currency used for reports. If set to \"locale\" then GnuCash will retrieve the default currency from the user's locale setting. If set to \"other\", GnuCash will use the setting specified by the currency-other key."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:5
-msgid "<b>Transaction Editor Defaults</b>"
-msgstr "<b>Transaktionsredigeringsprogrammets standarder</b>"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:109
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:162
+msgid "Use the specified currency for all newly created reports."
+msgstr "Brug den angivne valuta for alle nyoprettede rapporter."
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:6
-msgid "_Run when data file opened"
-msgstr "Kø_r når datafil åbnes"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:110
+msgid "Default currency for new reports"
+msgstr "Standardvaluta for nye rapporter"
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:7
-#, fuzzy
-#| msgid "Show the \"since last run\" window when a file is opened."
-msgid "Run the \"since last run\" process when a file is opened."
-msgstr "Vis »siden sidste kørsel«-vinduet når en fil åbnes."
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:111
+msgid "PDF export file name format"
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:8
-#, fuzzy
-#| msgid "Show _log window"
-msgid "_Show notification window"
-msgstr "Vis _logvindue"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:113
+#, no-c-format
+msgid "This setting chooses the file name for PDF export. This is a sprintf(3) string with three arguments: \"%1$s\" is the report name such as \"Invoice\". \"%2$s\" is the number of the report, which for an invoice report is the invoice number. \"%3$s\" is the date of the report, formatted according to the filename-date-format setting. (Note: Any characters that are not allowed in filenames, such as '/', will be replaced with underscores '_' in the resulting file name.)"
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:9
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:114
#, fuzzy
-#| msgid "Show the \"since last run\" window when a file is opened."
-msgid "Show the notification window for the \"since last run\" process when a file is opened."
-msgstr "Vis »siden sidste kørsel«-vinduet når en fil åbnes."
+msgid "PDF export file name date format choice"
+msgstr "Valg af datoformat"
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:10
-msgid "_Auto-create new transactions"
-msgstr "_Autoopret nye transaktioner"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:115
+msgid "This setting chooses the way dates are used in the filename of PDF export. Possible values for this setting are \"locale\" to use the system locale setting, \"ce\" for Continental Europe style dates, \"iso\" for ISO 8601 standard dates , \"uk\" for United Kingdom style dates, and \"us\" for United States style dates."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:11
-msgid "Set the 'auto-create' flag on newly created scheduled transactions."
-msgstr "Sæt flaget »auto-create« på de netop oprettede planlagte transaktioner."
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:116
+msgid "Allow file incompatibility with older versions."
+msgstr "Tillad filinkompatibilitet med ældre versioner."
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:12
-msgid "Crea_te in advance:"
-msgstr "_Opret på forhånd:"
+#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:117
+msgid "If active, gnucash will be allowed to intentionally break file compatibility with older versions, so that a data file saved in this version cannot be read by an older version again. Otherwise gnucash will write data files only in formats that can be read by older versions as well."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:13
-msgid "R_emind in advance:"
-msgstr "_Forhåndspåmindelse:"
+#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:1
+msgid "Show a grand total of all accounts converted to the default report currency"
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:14
-msgid "Begin notifications this many days before the transaction is created."
-msgstr "Påbegynd påmindelser dette antal dage før transaktionen oprettes."
+#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:2
+#, fuzzy
+msgid "Show non currency commodities"
+msgstr "Vis fremmede valutaer"
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:15
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:67
-msgid "days"
-msgstr "dage"
+#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:3
+msgid "If active, non currency commodities (stocks) will be shown. Otherwise they will be hidden."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:16
-msgid "Create the transaction this many days before its effective date."
-msgstr "Opret transaktionen dette antal dage før dets effektive dato."
+#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:4
+#, fuzzy
+msgid "Use relative profit/loss starting date"
+msgstr "Brug nærmeste på transaktionsdato"
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:17
-msgid "_Notify before transactions are created "
-msgstr "_Påmind før transaktioner oprettes"
+#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:5
+msgid "This setting controls the type of starting date used in profit/loss calculations. If set to \"absolute\" then GnuCash will retrieve the starting date specified by the start-date key. If set to anything else, GnuCash will retrieve the starting date specified by the start-period key."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:18
-msgid "Set the 'notify' flag on newly created scheduled transactions."
-msgstr "Sæt flaget »notify« på det netop oprettede planlagte transaktioner."
+#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:6
+#, fuzzy
+msgid "Use absolute profit/loss starting date"
+msgstr "Brug nærmeste på transaktionsdato"
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:19
-msgid "Edit Scheduled Transaction"
-msgstr "Rediger planlagt transaktion"
+#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:7
+msgid "Starting date (in seconds from Jan 1, 1970)"
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:20
-msgid "<b>Name</b>"
-msgstr "<b>Navn</b>"
+#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:8
+msgid "This setting controls the starting date set in profit/loss calculations if the start-choice setting is set to \"absolute\". This field should contain a date as represented in seconds from January 1st, 1970."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:21
-msgid "<b>Options</b>"
-msgstr "<b>Indstillinger</b>"
+#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:9
+msgid "Starting time period identifier"
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:22
-msgid "Create in advance:"
-msgstr "Opret på forhånd:"
+#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:10
+msgid "This setting controls the starting date set in profit/loss calculations if the start-choice setting is set to anything other than \"absolute\". This field should contain a value between 0 and 8."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:23
-msgid "Remind in advance:"
-msgstr "Forhåndspåmindelse:"
+#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:11
+msgid "Use relative profit/loss ending date"
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:24
-msgid " days"
-msgstr " dage"
+#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:12
+msgid "This setting controls the type of ending date used in profit/loss calculations. If set to \"absolute\" then GnuCash will retrieve the ending date specified by the end-date key. If set to anything else, GnuCash will retrieve the ending date specified by the end-period key."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:25
-msgid "Create automatically"
-msgstr "Opret automatisk"
+#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:13
+msgid "Use absolute profit/loss ending date"
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:26
-msgid "Conditional on splits not having variables"
+#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:14
+msgid "Ending date (in seconds from Jan 1, 1970)"
msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:27
-msgid "Notify me when created"
-msgstr "Påmind mig når oprettet"
+#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:15
+msgid "This setting controls the ending date set in profit/loss calculations if the end-choice setting is set to \"absolute\". This field should contain a date as represented in seconds from January 1st, 1970."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:28
-#: ../src/gnome-utils/gnc-tree-view-sx-list.c:168
-msgid "Enabled"
-msgstr "Aktiveret"
+#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:16
+msgid "Ending time period identifier"
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:29
-msgid "<b>Occurrences</b>"
+#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:17
+msgid "This setting controls the ending date set in profit/loss calculations if the end-choice setting is set to anything other than \"absolute\". This field should contain a value between 0 and 8."
msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:30
-msgid "Last Occurred: "
+#: ../src/gnome/gschemas/org.gnucash.window.pages.gschema.xml.in.in.h:1
+#, fuzzy
+msgid "Display this column"
+msgstr "Vis kontoen?"
+
+#: ../src/gnome/gschemas/org.gnucash.window.pages.gschema.xml.in.in.h:2
+msgid "This setting controls whether the given column will be visible in the view. TRUE means visible, FALSE means hidden."
msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:31
-msgid "Repeats:"
-msgstr "Gentagelser:"
+#: ../src/gnome/gschemas/org.gnucash.window.pages.gschema.xml.in.in.h:3
+#, fuzzy
+msgid "Width of this column"
+msgstr "_Udvid denne kolonne"
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:32
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:93
-msgid "Forever"
-msgstr "Altid"
+#: ../src/gnome/gschemas/org.gnucash.window.pages.gschema.xml.in.in.h:4
+msgid "This setting stores the width of the given column in pixels."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:33
-msgid "Until:"
-msgstr "Indtil:"
+#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:1
+msgid ""
+"This assistant will help you setup and use accounting periods. \n"
+" \n"
+"Danger: this feature does not work correctly at this time; it is still under development. It will probably damage your data in such a way that it cannot be repaired!"
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:34
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:91
+#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:4
#, fuzzy
-msgid "For:"
-msgstr "Formular"
+msgid "Setup Account Period"
+msgstr "Sætter konti op"
+
+#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:5
+msgid ""
+"\n"
+"Select an accounting period and the closing date which must not be in the future and is greater than the closing date of the previous book.\n"
+"\n"
+"Books will be closed at midnight on the selected date."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:35
-#, fuzzy
-msgid "occurrences"
-msgstr "Valutaer"
+#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:9
+msgid "xxx"
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:36
-#, fuzzy
-msgid "remaining"
-msgstr "Udskriver"
+#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:10
+msgid "Book Closing Dates"
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:37
-msgid "Overview"
-msgstr "Overblik"
+#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:11
+#, fuzzy
+msgid "Title:"
+msgstr "Titel"
-# Evt. "Hyppighed" var frekvens
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:38
-#: ../src/gnome-utils/gnc-dense-cal.c:338
-#: ../src/gnome-utils/gnc-tree-view-sx-list.c:177
-msgid "Frequency"
-msgstr "Hyppighed"
+#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:12
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:13
+msgid "Notes:"
+msgstr "Bemærkninger:"
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:39
-msgid "Template Transaction"
-msgstr "Skabelontransaktion"
+#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:13
+#: ../src/gnome-utils/gtkbuilder/dialog-book-close.glade.h:1
+msgid "Close Book"
+msgstr "Luk bog"
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:42
+#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:14
#, fuzzy
-msgid "Bi-Weekly"
-msgstr "Ugentligt"
-
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:46
-msgid "Since Last Run..."
-msgstr "Siden sidste kørsel ..."
+msgid "Account Period Finish"
+msgstr "Kontonummer"
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:47
-msgid "_Review created transactions"
-msgstr "_Kontroller oprettede transaktioner"
+#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:15
+msgid "Press 'Close' to Exit."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:48
-msgid "Make Scheduled Transaction"
-msgstr "Foretag planlagt transaktion"
+#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:16
+#, fuzzy
+msgid "Summary Page"
+msgstr "Resu_mebjælke"
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:49
-msgid "Advanced..."
-msgstr "Avanceret..."
+#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:1
+msgid ""
+"This assistant will help you create a set of GnuCash accounts for your assets (such as investments, checking or savings accounts), liabilities (such as loans) and different kinds of income and expenses you might have.\n"
+"\n"
+"Click 'Cancel' if you do not wish to create any new accounts now."
+msgstr ""
+"Denne assistent vil hjælpe dig med at oprette et sæt GnuCash-konti for dine aktiver (såsom investeringer, check- og opsparingskonti), passiver (såsom lån) og de forskellige former for indtægter og udgifter, du måtte have.\n"
+"\n"
+"Klik »Annuller«, hvis du ikke ønsker at oprette nye konti nu."
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:53
-msgid "Never End"
-msgstr "Slut aldrig"
+#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:4
+msgid "New Account Hierarchy Setup"
+msgstr "Opsætning af ny kontoliste"
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:55
-msgid "Number of Occurrences:"
-msgstr "Antal forekomster:"
+#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:5
+msgid ""
+"\n"
+"Please choose the currency to use for new accounts."
+msgstr ""
+"\n"
+"Vælg den valuta, der skal benyttes for nye konti."
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:56
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:2
-msgid "1"
-msgstr "1"
+#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:7
+msgid "Choose Currency"
+msgstr "Vælg valuta"
-#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:57
-msgid "End: "
-msgstr "Slut: "
+#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:8
+msgid ""
+"\n"
+"Select categories that correspond to the ways that you will use GnuCash. Each category you select will cause several accounts to be created. Select the categories that are relevant to you. You can always create additional accounts by hand later."
+msgstr ""
+"\n"
+"Vælg de kategorier, der svarer til de måder, du vil bruge GnuCash. Hver kategori, du vælger, vil resultere i adskillige GnuCash-konti. Vælg de kategorier, der er relevante for dig. Du kan altid oprette flere konti senere."
-#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:1
-msgid "Income Tax Information"
-msgstr "Information om indkomstskat"
+#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:10
+msgid "<b>Categories</b>"
+msgstr "<b>Kategorier</b>"
-#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:2
-msgid "<b>Income Tax Identity</b>"
-msgstr "<b>Identitet for indkomstskat</b>"
+#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:11
+#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:50
+#: ../src/gnome-utils/gtkbuilder/dialog-reset-warnings.glade.h:3
+msgid "_Select All"
+msgstr "_Vælg alt"
-#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:5
-msgid "Click to change Tax Name and/or Tax Type."
-msgstr "Klik for at ændre skattenavn og/eller skattetype."
+#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:12
+#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:51
+msgid "C_lear All"
+msgstr "Tø_m alt"
-#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:6
-#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:14
-msgid "<b>_Accounts</b>"
-msgstr "<b>_Konti</b>"
+#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:13
+msgid "<b>Category Description</b>"
+msgstr "<b>Kategoribeskrivelse</b>"
-#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:7
-#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:15
-msgid "_Income"
-msgstr "_Indtægt"
+#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:14
+msgid "Choose accounts to create"
+msgstr "Vælg konti, der skal oprettes"
-#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:8
-#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:16
-msgid "_Expense"
-msgstr "_Omkostning"
+#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:15
+msgid ""
+"\n"
+"If you would like to change an account's name, click on the row containing the account, then click on the account name and change it.\n"
+"\n"
+"Some accounts are marked as \"Placeholder\". Placeholder accounts are used to create a hierarchy of accounts and normally do not have transactions or opening balances. If you would like an account to be a placeholder account, click the checkbox for that account.\n"
+"\n"
+"If you would like an account to have an opening balance, click on the row containing the account, then click on the opening balance field and enter the starting balance.\n"
+"\n"
+"Note: all accounts except Equity and placeholder accounts may have an opening balance.\n"
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:9
-#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:17
-msgid "_Asset"
-msgstr "_Aktiv"
+#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:24
+#, fuzzy
+msgid "Setup selected accounts"
+msgstr "Slet den valgte konto"
-#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:10
-#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:18
-msgid "_Liability/Equity"
-msgstr "_Passiv/egenkapital"
+#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:25
+#, fuzzy
+msgid ""
+"Press `Apply' to create your new accounts. You will then be able to save them to a file or database.\n"
+"\n"
+"Press `Back' to review your selections.\n"
+"\n"
+"Press `Cancel' to close this dialog without creating any new accounts."
+msgstr ""
+"Tryk 'Afslut' for at oprette dine nye konti.\n"
+"\n"
+"Tryk 'Tilbage' for at efterse dine valg.\n"
+"\n"
+"Tryk 'Annullér' for at lukke dette vindue uden at oprette nye konti."
-#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:11
-#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:19
-msgid "Accounts Selected:"
-msgstr "Valgte konti:"
+#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:30
+msgid "Finish Account Setup"
+msgstr "Afslut kontoopsætning:"
-#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:12
-#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:20
-msgid "0"
-msgstr "0"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:1
+msgid ""
+"This is a step-by-step method for creating a loan repayment within GnuCash. In this assistant, you can input the details of your loan and its repayment along with the details of its payback. Using that information, the appropriate Scheduled Transactions will be created.\n"
+"\n"
+"If you make a mistake or want to make changes later, you can edit the created Scheduled Transactions directly."
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:13
-#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:21
-msgid "_Select Subaccounts"
-msgstr "_Vælg underkonti"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:4
+#, fuzzy
+msgid "Loan / Mortgage Repayment Setup"
+msgstr "Brug finanslommeregneren"
-#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:14
-msgid "<b>Account Tax Information</b>"
-msgstr "<b>Skatteoplysninger</b>"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:5
+msgid "Enter the Loan Details, as a minimum enter a valid Loan Account and Amount.\n"
+msgstr ""
-#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:15
-msgid "Tax _Related"
-msgstr "Skatte_relateret"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:7
+#, fuzzy
+msgid "Interest Rate:"
+msgstr "Rente"
-#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:16
-msgid "<b>_TXF Categories</b>"
-msgstr "<b>_TXF-kategorier</b>"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:8
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:52
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:8
+#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:2
+#, fuzzy
+msgid "Start Date:"
+msgstr "Startdato:"
-#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:17
-msgid "<b>Payer Name Source</b>"
-msgstr "<b>Kilde for betalernavn</b>"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:9
+msgid "Length:"
+msgstr "Længde:"
-#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:18
-msgid "C_urrent Account"
-msgstr "_Aktuel konto"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:10
+#: ../src/gnome-utils/gtkbuilder/dialog-transfer.glade.h:3
+msgid "Amount:"
+msgstr "Beløb:"
-#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:19
-msgid "_Parent Account"
-msgstr "_Samlekonto"
+# nu er det ikke en kreditorkonto eller kassekredit, vel?
+# Loan Account
+# An account, opened for a customer by a bank, following the granting of a loan. The amount of the
+# loan is credited to the customers current account and similarly debited to the loan account. An
+# arrangement is subsequently made for the customer to repay the loan, usually over a stated
+# period of time, with interest additionally being paid on the outstanding amount.
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:11
+msgid "Loan Account:"
+msgstr "LÃ¥nkonto:"
-#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:20
-msgid "<b>Copy Number</b>"
-msgstr "<b>Kopier tal</b>"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:14
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:17
+#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:4
+msgid "Type:"
+msgstr "Type:"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:1
-msgid "Budget List"
-msgstr "Budgetliste"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:15
+msgid "Months Remaining:"
+msgstr "Tilbageværende måneder:"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:2
-msgid "Close the Budget List"
-msgstr "Luk budgetlisten"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:16
+#, fuzzy
+msgid "Interest Rate Change Frequency"
+msgstr "Rente"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:3
-msgid "Create a New Budget"
-msgstr "Opret et nyt budget"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:17
+msgid "Loan Details"
+msgstr ""
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:4
-msgid "Open the Selected Budget"
-msgstr "Ã
bn det valgte budget"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:18
+msgid ""
+"\n"
+"Do you utilise an escrow account, if so an account must be specified..."
+msgstr ""
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:5
-msgid "Delete the Selected Budget"
-msgstr "Slet det valgte budget"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:20
+msgid "... utilize an escrow account for payments?"
+msgstr "... anvend en escrowkonto til betalinger?"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:6
-msgid "Estimate Budget Values"
-msgstr "Estimer budgetværdier"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:21
+msgid "Escrow Account:"
+msgstr "Escrowkonto:"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:7
-msgid "GnuCash will estimate budget values for the selected accounts from past transactions."
-msgstr "GnuCash vil estimere budgetværdier for de valgte konti fra tidligere transaktioner."
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:22
+#, fuzzy
+msgid "Loan Repayment Options"
+msgstr "Finanslommeregner"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:9
-msgid "Significant Digits:"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:23
+msgid ""
+"\n"
+"All accounts must have valid entries to continue.\n"
msgstr ""
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:10
-msgid "The number of leading digits to keep when rounding"
-msgstr ""
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:26
+msgid "Payment From:"
+msgstr "Betaling fra:"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:12
-msgid "Budget Name:"
-msgstr "Budgetnavn:"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:27
+msgid "Principal To:"
+msgstr "Hovedstol til:"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:14
-msgid "Number of Periods:"
-msgstr "Antal perioder:"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:28
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:50
+#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:3
+msgid "Name:"
+msgstr "Navn:"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:15
-msgid "Budget Period:"
-msgstr "Budgetperiode:"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:29
+#, fuzzy
+msgid "Interest To:"
+msgstr "Renter"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:1
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:1
-msgid "Duplicate Transaction"
-msgstr "Transaktionsdublet"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:30
+msgid "Repayment Frequency"
+msgstr "Genbetalingsfrekvens"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:2
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:2
-msgid "<b>New Transaction Information</b>"
-msgstr "<b>Ny transaktionsoplysning</b>"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:31
+#, fuzzy
+msgid "Loan Repayment"
+msgstr "Genbetaling"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:4
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:4
-msgid "_Number:"
-msgstr "_Nummer:"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:32
+msgid ""
+"\n"
+"All enabled option pages must contain valid entries to continue.\n"
+msgstr ""
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:5
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:6
-msgid "Filter register by..."
-msgstr "Filtrer kasseklade efter ..."
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:35
+msgid "Payment To (Escrow):"
+msgstr "Betaling til (Escrow):"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:6
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:7
-#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:23
-msgid "Show _All"
-msgstr "Vis _alt"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:36
+msgid "Payment From (Escrow):"
+msgstr "Betaling fra (Escrow):"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:7
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:8
-#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:24
-msgid "Select Range:"
-msgstr "Vælg interval:"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:37
+msgid "Payment To:"
+msgstr "Betaling til:"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:8
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:9
-#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:25
-msgid "Start:"
-msgstr "Start:"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:38
+msgid "Specify Source Account"
+msgstr "Angiv kildekonto"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:9
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:10
-#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:26
-msgid "_Earliest"
-msgstr "_Tidligst"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:39
+msgid "Use Escrow Account"
+msgstr "Brug Escrowkonto"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:10
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:11
-#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:27
-msgid "Choo_se Date:"
-msgstr "Væl_g dato:"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:40
+msgid "Part of Payment Transaction"
+msgstr "Del af betalingstransaktion"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:11
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:12
-#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:28
-msgid "Toda_y"
-msgstr "I da_g"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:41
+#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:58
+#: ../src/report/standard-reports/account-piecharts.scm:404
+#: ../src/report/standard-reports/category-barchart.scm:491
+msgid "Other"
+msgstr "Andet"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:12
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:13
-#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:29
-msgid "_Latest"
-msgstr "Si_dste"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:42
+msgid "Payment Frequency"
+msgstr "Betalingsfrekvens"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:13
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:14
-#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:30
-msgid "End:"
-msgstr "Slut:"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:43
+#, fuzzy
+msgid "Previous Option"
+msgstr "Første Option"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:14
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:15
-#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:31
-msgid "C_hoose Date:"
-msgstr "Væl_g dato:"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:44
+#, fuzzy
+msgid "Next Option"
+msgstr "Nummervalg"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:15
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:16
-#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:32
-msgid "_Today"
-msgstr "_I dag"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:45
+#, fuzzy
+msgid "Loan Payment"
+msgstr "Skattebetaling"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:17
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:18
-msgid "_Unreconciled"
-msgstr "_Uafstemt"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:46
+msgid ""
+"\n"
+"Review the details below and if correct press Apply to create the schedule."
+msgstr ""
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:18
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:19
-#: ../src/import-export/qif-imp/dialog-account-picker.glade.h:5
-msgid "_Reconciled"
-msgstr "_Afstemt"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:48
+msgid "Range: "
+msgstr "Interval: "
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:19
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:20
-msgid "C_leared"
-msgstr "S_lettet"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:49
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:54
+msgid "End Date:"
+msgstr "Slutdato:"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:20
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:21
-msgid "_Voided"
-msgstr ""
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:50
+#: ../src/report/business-reports/job-report.scm:632
+#: ../src/report/business-reports/owner-report.scm:772
+msgid "Date Range"
+msgstr "Datointerval"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:21
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:22
-msgid "_Frozen"
-msgstr "_Frosset"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:51
+#, fuzzy
+msgid "Loan Review"
+msgstr "Overblik"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:22
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:23
-msgid "Select _All"
-msgstr "Vælg _alt"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:52
+#, fuzzy
+msgid "Schedule added successfully."
+msgstr "Bogen blev lukket med succes."
+
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:53
+#, fuzzy
+msgid "Loan Summary"
+msgstr "Kontoopsummering"
+
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:54
+#: ../src/gnome-utils/gnc-date-delta.c:220
+#: ../src/report/standard-reports/price-scatter.scm:231
+msgid "Months"
+msgstr "MÃ¥neder"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:24
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:25
-msgid "Sa_ve Filter"
-msgstr "_Gem filter"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:55
+#: ../src/gnome-utils/gnc-date-delta.c:222
+#: ../src/report/standard-reports/price-scatter.scm:232
+msgid "Years"
+msgstr "Ã
r"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:25
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:51
-msgid "Void Transaction"
-msgstr "Ugyldig transaktion"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:56
+#, fuzzy
+msgid "Current Year"
+msgstr "Valuta"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:26
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:52
-msgid "Reason for voiding transaction:"
-msgstr "Ã
rsag for ugyldig transaktion:"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:57
+msgid "Now + 1 Year"
+msgstr ""
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:5
-msgid "_Transaction Number:"
-msgstr "_Transaktionsnummer:"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:58
+msgid "Whole Loan"
+msgstr ""
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:26
-msgid "Sort register by..."
-msgstr "Sorter kassekladde efter ..."
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:60
+#, fuzzy
+msgid "Interest Rate"
+msgstr "Rente"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:27
-msgid "_Standard Order"
-msgstr "_Standardorden"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:61
+msgid "APR (Compounded Daily)"
+msgstr ""
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:28
-msgid "Keep normal account order."
-msgstr "Behold normal kontorækkefølge."
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:62
+msgid "APR (Compounded Weekly)"
+msgstr ""
-#. src/report/standard-reports/transaction.scm
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:30
-#: ../intl-scm/guile-strings.c:4546
-#: ../intl-scm/guile-strings.c:4602
-msgid "Sort by date."
-msgstr "Sorter efter dato."
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:63
+msgid "APR (Compounded Monthly)"
+msgstr ""
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:32
-msgid "Sort by the date of entry."
-msgstr "Sorter efter indtastningsdato."
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:64
+msgid "APR (Compounded Quarterly)"
+msgstr ""
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:33
-msgid "S_tatement Date"
-msgstr "_Udskriftsdato"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:65
+msgid "APR (Compounded Annually)"
+msgstr ""
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:34
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:66
#, fuzzy
-#| msgid "Sort by the statement date (unreconciled items last)."
-msgid "Sort by the statement date (and group by cleared, unreconciled, reconciled)."
-msgstr "Sorter efter opgørelsesdato (uafstemte poster sidst)."
-
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:35
-msgid "Num_ber"
-msgstr "Num_mer"
+msgid "Fixed Rate"
+msgstr "Match dato"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:36
-msgid "Sort by number."
-msgstr "Sorter efter nummer."
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:67
+msgid "3/1 Year ARM"
+msgstr ""
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:37
-msgid "Amo_unt"
-msgstr "Bel_øb"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:68
+msgid "5/1 Year ARM"
+msgstr ""
-#. src/report/standard-reports/transaction.scm
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:38
-#: ../intl-scm/guile-strings.c:4570
-#: ../intl-scm/guile-strings.c:4626
-msgid "Sort by amount."
-msgstr "Sorter efter beløb."
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:69
+msgid "7/1 Year ARM"
+msgstr ""
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:39
-msgid "_Memo"
-msgstr "_Memo"
+#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:70
+msgid "10/1 Year ARM"
+msgstr ""
-#. src/report/standard-reports/transaction.scm
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:40
-#: ../intl-scm/guile-strings.c:4586
-#: ../intl-scm/guile-strings.c:4638
-msgid "Sort by memo."
-msgstr "Sorter efter note."
+#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:1
+#, fuzzy
+msgid "This assistant will help you record a stock split or stock merger.\n"
+msgstr "Denne assistent vil hjælpe dig med at registrere en aktieopsplitning eller -sammenlægning."
-#. src/report/standard-reports/transaction.scm
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:42
-#: ../intl-scm/guile-strings.c:4574
-#: ../intl-scm/guile-strings.c:4630
-msgid "Sort by description."
-msgstr "Sorter efter beskrivelse."
+#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:3
+#, fuzzy
+msgid "Stock Split Assistant"
+msgstr "Aktieopdelingsdetaljer"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:43
-msgid "_Action"
-msgstr "H_andling"
+#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:4
+msgid "Select the account for which you want to record a stock split or merger."
+msgstr "Vælg den konto, du ønsker at registrere en aktieopsplitning eller -sammenlægning."
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:44
-msgid "Sort by action field."
-msgstr "Sorter efter præcis indtastningsfelt."
+#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:5
+#, fuzzy
+msgid "Stock Split Account"
+msgstr "Aktiekonto"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:45
-msgid "_Notes"
-msgstr "_Bemærkninger"
+#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:6
+#, fuzzy
+msgid "Enter the date and the number of shares you gained or lost from the stock split or merger. For stock mergers (negative splits) use a negative value for the share distribution. You can also enter a description of the transaction, or accept the default one."
+msgstr ""
+"Angiv datoen og antallet af aktier, du har vundet eller tabt ved en aktieopsplitning eller -sammenlægning.\n"
+"Brug en negativ værdi for aktiefordelingen for aktiesammenlægninger (negative opsplitninger).\n"
+"Du kan også skrive en beskrivelse for transaktionen eller bruge standardbeskrivelsen."
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:46
-msgid "Sort by notes field."
-msgstr "Sorter efter bemærkningsfelt."
+#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:7
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:6
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:16
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:3
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:3
+#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:32
+msgid "_Date:"
+msgstr "_Dato:"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:47
-msgid "Sa_ve Sort Order"
-msgstr "_Gem sorteringsrækkefølge"
+#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:8
+msgid "_Shares:"
+msgstr "_Aktier:"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:48
-msgid "Save the sort order for this register."
-msgstr "Rediger sorteringsrækkefølgen for denne kassekladde."
+#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:9
+msgid "Desc_ription:"
+msgstr "Besk_rivelse:"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:49
-msgid "Reverse Order"
-msgstr "Omvendt rækkefølge"
+#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:10
+msgid "Stock Split"
+msgstr "Aktieopdeling"
-#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:50
-msgid "Sort in descending order."
-msgstr "Sorter i faldende rækkefølge."
+#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:11
+#, fuzzy
+msgid "If you want to record a stock price for the split, enter it below. You may safely leave it blank."
+msgstr ""
+"Hvis du vil registrere aktiekursen for opsplitninger, kan du indtaste\n"
+"den herunder. Du kan også lade den være tom."
-#: ../src/gnome/gtkbuilder/window-autoclear.glade.h:1
-msgid "<b>Auto-Clear Information</b>"
-msgstr "<b>Ryd automatisk information</b>"
+#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:12
+msgid "New _Price:"
+msgstr "Ny _pris:"
-#: ../src/gnome/gtkbuilder/window-autoclear.glade.h:2
-#: ../src/gnome/gtkbuilder/window-reconcile.glade.h:4
-msgid "_Ending Balance:"
-msgstr "_Slutsaldo:"
+#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:13
+msgid "Currenc_y:"
+msgstr "Val_uta:"
-#: ../src/gnome/gtkbuilder/window-reconcile.glade.h:1
-msgid "<b>Reconcile Information</b>"
-msgstr "<b>Afstemningsinformation</b>"
+#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:14
+msgid "Stock Split Details"
+msgstr "Aktieopdelingsdetaljer"
-#: ../src/gnome/gtkbuilder/window-reconcile.glade.h:2
-msgid "Statement _Date:"
-msgstr "Udskrifts_dato:"
+#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:15
+#, fuzzy
+msgid "If you received a cash disbursement as a result of the stock split, enter the details of that payment here. Otherwise, just click `Forward'."
+msgstr ""
+"Hvis du modtog en kontant udbetaling som følge af aktieopsplitningen,\n"
+"kan du indtaste detaljer om denne betaling her. Hvis ikke, klik 'Næste'."
-#. starting balance title/value
-#: ../src/gnome/gtkbuilder/window-reconcile.glade.h:3
-#: ../src/gnome/window-reconcile2.c:1810
-#: ../src/gnome/window-reconcile.c:1810
-msgid "Starting Balance:"
-msgstr "Startsaldo:"
+#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:16
+msgid "_Amount:"
+msgstr "_Beløb:"
-#: ../src/gnome/gtkbuilder/window-reconcile.glade.h:5
-msgid "Include _subaccounts"
-msgstr "Inkluder _underkonti"
+#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:17
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:28
+msgid "_Memo:"
+msgstr "_Note:"
-#: ../src/gnome/gtkbuilder/window-reconcile.glade.h:6
-#: ../src/gnome/window-reconcile2.c:762
-#: ../src/gnome/window-reconcile.c:762
-msgid "Enter _Interest Payment..."
-msgstr "Indtast rentebetal_ing ..."
+#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:18
+msgid "Cash In Lieu"
+msgstr "Afrundingsbeløb"
-#: ../src/gnome/reconcile-view.c:365
-#: ../src/register/ledger-core/split-register-layout.c:671
-#: ../src/register/ledger-core/split-register-model.c:303
-msgid "Reconciled:R"
-msgstr "Reconciled:A"
+#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:19
+msgid "<b>_Income Account</b>"
+msgstr "<b>Indtægtskonto</b>"
-#: ../src/gnome-search/dialog-search.c:239
-msgid "You must select an item from the list"
-msgstr "Du skal vælge en vare fra listen"
+#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:20
+msgid "<b>A_sset Account</b>"
+msgstr "<b>Aktivkonto</b>"
-#: ../src/gnome-search/dialog-search.c:351
-#: ../src/gnome-utils/gnc-cell-renderer-date.c:170
-msgid "Select"
-msgstr "Vælg"
+#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:21
+#, fuzzy
+msgid "Cash in Lieu"
+msgstr "Afrundingsbeløb"
-#: ../src/gnome-search/dialog-search.c:1043
+#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:22
#, fuzzy
-#| msgid "Order ID"
-msgid "Order"
-msgstr "Ordre-id"
+msgid "If you are finished creating the stock split or merger, press `Apply'. You may also press `Back' to review your choices, or `Cancel' to quit without making any changes."
+msgstr ""
+"Tryk \"Afslut\", hvis du har afsluttet oprettelsen af aktieopdeling eller \n"
+"-sammenlægning. Du kan også trykke \"Tilbage\" for at tjekke dine valg eller \n"
+"\"Annullér\" for at afslutte uden at udføre nogen ændringer."
-#: ../src/gnome-search/dialog-search.c:1049
-msgid "New Transaction"
-msgstr "Ny transaktion"
+#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:23
+#, fuzzy
+msgid "Stock Split Finish"
+msgstr "Aktieopdeling"
-#: ../src/gnome-search/dialog-search.c:1053
-msgid "New Split"
-msgstr "Ny opdeling"
+#: ../src/gnome/gtkbuilder/dialog-commodities.glade.h:1
+#, fuzzy
+msgid "Securities"
+msgstr "Værdipapir"
-#: ../src/gnome-search/dialog-search.c:1062
-msgid "Item represents an unknown object type (in the sense of bill, customer, invoice, transaction, split,...)|New item"
+#: ../src/gnome/gtkbuilder/dialog-commodities.glade.h:2
+msgid "<b>Securities</b>"
msgstr ""
-#: ../src/gnome-search/dialog-search.c:1111
-msgid "all criteria are met"
-msgstr "alle kriterier er opfyldt"
-
-#: ../src/gnome-search/dialog-search.c:1112
-msgid "any criteria are met"
-msgstr "ethvert kriterie er opfyldt"
+#: ../src/gnome/gtkbuilder/dialog-commodities.glade.h:3
+msgid "Show National Currencies"
+msgstr "Vis nationale valutaer"
-#: ../src/gnome-search/dialog-search.glade.h:1
-msgid "_New item..."
-msgstr "_Ny post ..."
+#: ../src/gnome/gtkbuilder/dialog-commodities.glade.h:4
+#, fuzzy
+msgid "Add a new commodity."
+msgstr "Tilføj en ny pris."
-#: ../src/gnome-search/dialog-search.glade.h:2
-msgid "()"
-msgstr "()"
+#: ../src/gnome/gtkbuilder/dialog-commodities.glade.h:5
+#, fuzzy
+msgid "Remove the current commodity."
+msgstr "Gem den aktuelle pris"
-#: ../src/gnome-search/dialog-search.glade.h:3
-msgid " Search "
-msgstr " Søg "
+#: ../src/gnome/gtkbuilder/dialog-commodities.glade.h:6
+#, fuzzy
+msgid "Edit the current commodity."
+msgstr "Gem den aktuelle pris"
-#: ../src/gnome-search/dialog-search.glade.h:4
-msgid "Search for items where"
-msgstr "Søg for poster hvor"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:1
+#, fuzzy
+msgid "Loan Repayment Calculator"
+msgstr "Finanslommeregner"
-#: ../src/gnome-search/dialog-search.glade.h:5
-msgid "<b>Match all entries</b>"
-msgstr "<b>Matcher alle poster</b>"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:2
+msgid "<b>Calculations</b>"
+msgstr ""
-#: ../src/gnome-search/dialog-search.glade.h:6
-msgid "Search Criteria"
-msgstr "Søgekriterie"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:3
+#, fuzzy
+msgid "Payment periods"
+msgstr "Løbeperioder"
-#: ../src/gnome-search/dialog-search.glade.h:7
-msgid "New search"
-msgstr "Ny søgning"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:4
+#, fuzzy
+msgid "Clear the entry."
+msgstr "Slet punktet"
-#: ../src/gnome-search/dialog-search.glade.h:8
-msgid "Refine current search"
-msgstr "Raffiner nuværende søgning"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:5
+#, fuzzy
+msgid "Interest rate"
+msgstr "Rente"
-#: ../src/gnome-search/dialog-search.glade.h:9
-msgid "Add results to current search"
-msgstr "Tilføj resultater til nuværende søgning"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:6
+msgid "Clear the entry"
+msgstr "Slet punktet"
-#: ../src/gnome-search/dialog-search.glade.h:10
-msgid "Delete results from current search"
-msgstr "Slet resultater fra nuværende søgning"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:7
+#, fuzzy
+msgid "Present value"
+msgstr "Nuværdi"
-#: ../src/gnome-search/dialog-search.glade.h:11
-msgid "Search only active data"
-msgstr "Søg kun i aktive data"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:8
+#, fuzzy
+msgid "Periodic payment"
+msgstr "Periodisk betaling"
-#: ../src/gnome-search/dialog-search.glade.h:12
-msgid "Choose whether to search all your data or only that marked as \"active\"."
-msgstr "Vælg om der skal søges i alle dine data eller kun dem markeret som »aktive«."
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:9
+#, fuzzy
+msgid "Future value"
+msgstr "Fremtidig værdi"
-#: ../src/gnome-search/dialog-search.glade.h:13
-msgid "Type of search"
-msgstr "Søgetype"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:10
+msgid "Recalculate the (single) blank entry in the above fields."
+msgstr ""
-#: ../src/gnome-search/search-account.c:175
-msgid "You have not selected any accounts"
-msgstr "Du har ikke valgt nogen konti"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:11
+msgid "Calculate"
+msgstr "Beregn"
-#: ../src/gnome-search/search-account.c:196
-msgid "matches all accounts"
-msgstr "matcher alle konti"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:12
+msgid "<b>Payment Options</b>"
+msgstr ""
-#: ../src/gnome-search/search-account.c:201
-msgid "matches any account"
-msgstr "matcher enhver konto"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:13
+msgid "Payment Total:"
+msgstr "Totale betalinger:"
-#: ../src/gnome-search/search-account.c:202
-msgid "matches no accounts"
-msgstr "matcher ingen konti"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:14
+msgid "total"
+msgstr "total"
-#. src/report/standard-reports/cash-flow.scm
-#: ../src/gnome-search/search-account.c:219
-#: ../intl-scm/guile-strings.c:3286
-msgid "Selected Accounts"
-msgstr "valgte konti"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:15
+#, fuzzy
+msgid "Discrete"
+msgstr "Udlod"
-#: ../src/gnome-search/search-account.c:220
-msgid "Choose Accounts"
-msgstr "Vælg konti"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:16
+#, fuzzy
+msgid "Continuous"
+msgstr "Indhold"
-#. Create the label
-#: ../src/gnome-search/search-account.c:254
-msgid "Select Accounts to Match"
-msgstr "Vælg konti der skal findes"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:18
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:51
+#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:1
+#, fuzzy
+msgid "Frequency:"
+msgstr "Valuta:"
-#: ../src/gnome-search/search-account.c:258
-msgid "Select the Accounts to Compare"
-msgstr "Vælg konti der skal sammenlignes"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:19
+msgid "When paid:"
+msgstr ""
-#. Build and connect the toggle
-#: ../src/gnome-search/search-boolean.c:205
-msgid "set true"
-msgstr "sæt sand (true)"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:20
+msgid "Beginning"
+msgstr ""
-#: ../src/gnome-search/search-date.c:195
-msgid "is before"
-msgstr "er før"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:21
+#, fuzzy
+msgid "End"
+msgstr "Slutter "
-#: ../src/gnome-search/search-date.c:196
-msgid "is before or on"
-msgstr "er før eller på"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:22
+#, fuzzy
+msgid "<b>Compounding:</b>"
+msgstr "Renters rente:"
-#: ../src/gnome-search/search-date.c:197
-msgid "is on"
-msgstr "er på"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:23
+#, fuzzy
+msgid "<b>Period:</b>"
+msgstr "Periode:"
-#: ../src/gnome-search/search-date.c:198
-msgid "is not on"
-msgstr "er ikke på"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:25
+msgid "Annual"
+msgstr ""
-#: ../src/gnome-search/search-date.c:199
-msgid "is after"
-msgstr "er efter"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:26
+#, fuzzy
+msgid "Semi-annual"
+msgstr "Halvmånedligt"
-#: ../src/gnome-search/search-date.c:200
-msgid "is on or after"
-msgstr "er på eller efter"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:27
+msgid "Tri-annual"
+msgstr ""
-#: ../src/gnome-search/search-double.c:187
-#: ../src/gnome-search/search-int64.c:189
-#: ../src/gnome-search/search-numeric.c:220
-msgid "is less than"
-msgstr "er mindre end"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:28
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:44
+#: ../src/report/standard-reports/transaction.scm:842
+msgid "Quarterly"
+msgstr "Kvartalsvist"
-#: ../src/gnome-search/search-double.c:188
-#: ../src/gnome-search/search-int64.c:190
-#: ../src/gnome-search/search-numeric.c:224
-msgid "is less than or equal to"
-msgstr "er mindre end eller lig med"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:29
+#, fuzzy
+msgid "Bi-monthly"
+msgstr "Halvmånedligt"
-#: ../src/gnome-search/search-double.c:189
-#: ../src/gnome-search/search-int64.c:191
-#: ../src/gnome-search/search-numeric.c:227
-msgid "equals"
-msgstr "svarer til"
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:32
+#, fuzzy
+msgid "Bi-weekly"
+msgstr "Ugentligt"
-#: ../src/gnome-search/search-double.c:190
-#: ../src/gnome-search/search-int64.c:192
-#: ../src/gnome-search/search-numeric.c:230
-msgid "does not equal"
-msgstr "svarer ikke til"
+# daglig eller dagligt (er lidt bange for at det måske kan være begge dele).
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:34
+msgid "Daily (360)"
+msgstr "Dagligt (360)"
-#: ../src/gnome-search/search-double.c:191
-#: ../src/gnome-search/search-int64.c:193
-#: ../src/gnome-search/search-numeric.c:233
-msgid "is greater than"
-msgstr "er større end"
+# daglig eller dagligt (er lidt bange for at det måske kan være begge dele).
+#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:35
+msgid "Daily (365)"
+msgstr "Dagligt (365)"
-#: ../src/gnome-search/search-double.c:192
-#: ../src/gnome-search/search-int64.c:194
-#: ../src/gnome-search/search-numeric.c:237
-msgid "is greater than or equal to"
-msgstr "er større end eller lig med"
+#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:1
+msgid "Lot Viewer"
+msgstr "Afkastfremviser"
-#: ../src/gnome-search/search-numeric.c:220
-msgid "less than"
-msgstr "mindre end"
+#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:2
+msgid "Enter a name for the highlighted lot."
+msgstr "Indtast et navn for det fremhævede afkast."
-#: ../src/gnome-search/search-numeric.c:223
-msgid "less than or equal to"
-msgstr "mindre end eller lig med"
+#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:3
+msgid "<b>_Notes</b>"
+msgstr "<b>_Bemærkninger</b>"
-#: ../src/gnome-search/search-numeric.c:227
-msgid "equal to"
-msgstr "lig med"
+#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:4
+msgid "Enter any notes you want to make about this lot."
+msgstr "Indtast noter du ønsker registreret vedrørende dette afkast."
-#: ../src/gnome-search/search-numeric.c:230
-msgid "not equal to"
-msgstr "ikke lig med"
+#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:5
+msgid "<b>_Title</b>"
+msgstr "<b>_Titel</b>"
-#: ../src/gnome-search/search-numeric.c:233
-msgid "greater than"
-msgstr "større end"
+#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:6
+msgid "<b>_Lots in This Account</b>"
+msgstr "<b>_Afkast på denne konto</b>"
-#: ../src/gnome-search/search-numeric.c:236
-msgid "greater than or equal to"
-msgstr "større end eller lig med"
+#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:7
+msgid "Show only open lots"
+msgstr "Vis kun åbne afkast"
-#: ../src/gnome-search/search-numeric.c:253
-msgid "has credits or debits"
-msgstr "har kredit- eller debetposter"
+#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:8
+msgid "<b>Splits _free</b>"
+msgstr "<b>Opdelinger _fri</b>"
-#: ../src/gnome-search/search-numeric.c:254
-msgid "has debits"
-msgstr "har debetposter"
+#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:9
+msgid ">>"
+msgstr ">>"
-#: ../src/gnome-search/search-numeric.c:255
-msgid "has credits"
-msgstr "har kreditposter"
+#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:10
+msgid "<<"
+msgstr "<<"
-#. Build and connect the toggles
-#: ../src/gnome-search/search-reconciled.c:226
-msgid "Not Cleared"
-msgstr "Ikke slettet"
+#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:11
+msgid "<b>Splits _in lot</b>"
+msgstr "<b>Opdelinger _i afkast</b>"
-#: ../src/gnome-search/search-reconciled.c:229
-#: ../src/gnome-utils/gnc-tree-view-account.c:796
-msgid "Cleared"
-msgstr "Slettet"
+#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:12
+msgid "_New Lot"
+msgstr "_Nyt afkast"
-#: ../src/gnome-search/search-reconciled.c:232
-#: ../src/gnome-utils/gnc-tree-view-account.c:810
-msgid "Reconciled"
-msgstr "Afstemt"
+#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:13
+#, fuzzy
+msgid "Scrub _Account"
+msgstr "Aktiekonto"
-#: ../src/gnome-search/search-reconciled.c:235
-msgid "Frozen"
-msgstr "Frosset"
+#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:14
+msgid "Scrub the highlighted lot"
+msgstr ""
-#: ../src/gnome-search/search-reconciled.c:238
-msgid "Voided"
-msgstr "Ugyldig"
+#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:15
+#, fuzzy
+msgid "_Scrub"
+msgstr "Under"
-#: ../src/gnome-search/search-string.c:191
-msgid "You need to enter some search text."
-msgstr "Du skal indtaste en søgetekst."
+#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:16
+msgid "Delete the highlighted lot"
+msgstr "Slet det fremhævede afkast"
-#: ../src/gnome-search/search-string.c:220
-#: ../src/import-export/csv-imp/csv-account-import.c:112
-#: ../src/plugins/bi_import/dialog-bi-import.c:122
-#: ../src/plugins/customer_import/dialog-customer-import.c:102
-#, c-format
-msgid ""
-"Error in regular expression '%s':\n"
-"%s"
+#: ../src/gnome/gtkbuilder/dialog-new-user.glade.h:1
+msgid "<span weight=\"bold\" size=\"larger\">Display Welcome Dialog Again?</span>"
msgstr ""
-"Fejl i regulært udtryk »%s«:\n"
-"%s"
-#: ../src/gnome-search/search-string.c:264
-msgid "contains"
-msgstr "indholder"
+#: ../src/gnome/gtkbuilder/dialog-new-user.glade.h:2
+msgid "If you press the <i>Yes</i> button, the <i>Welcome to GnuCash</i> dialog will be displayed again next time you start GnuCash. If you press the <i>No</i> button, it will not be displayed again."
+msgstr ""
-#: ../src/gnome-search/search-string.c:265
-msgid "matches regex"
-msgstr "matcher regulært udtryk"
+#: ../src/gnome/gtkbuilder/dialog-new-user.glade.h:3
+msgid "<span size=\"larger\" weight=\"bold\">Welcome to GnuCash!</span>"
+msgstr ""
-#: ../src/gnome-search/search-string.c:267
-msgid "does not match regex"
-msgstr "matcher ikke regulært udtryk"
+#: ../src/gnome/gtkbuilder/dialog-new-user.glade.h:4
+msgid "There are some predefined actions available that most new users prefer to get started with GnuCash. Select one of these actions from below and click the <i>OK</i> button or press the <i>Cancel</i> button if you don't want to perform any of them."
+msgstr ""
-#. Build and connect the case-sensitive check button; defaults to off
-#: ../src/gnome-search/search-string.c:329
-msgid "Match case"
-msgstr "Versalfølsom"
+#: ../src/gnome/gtkbuilder/dialog-new-user.glade.h:5
+msgid "C_reate a new set of accounts"
+msgstr "Opret et nyt kontosæt"
-#: ../src/gnome/top-level.c:98
-#, c-format
-msgid "Entity Not Found: %s"
-msgstr "Entitet blev ikke fundet: %s"
+#: ../src/gnome/gtkbuilder/dialog-new-user.glade.h:6
+msgid "_Import my QIF files"
+msgstr "_Indlæs mine QIF-filer"
-#: ../src/gnome/top-level.c:158
-#, c-format
-msgid "Transaction with no Accounts: %s"
-msgstr "Transaktion uden konti: %s"
+#: ../src/gnome/gtkbuilder/dialog-new-user.glade.h:7
+msgid "_Open the new user tutorial"
+msgstr "_Start rundvisningen for nye brugere"
-#: ../src/gnome/top-level.c:174
-#, c-format
-msgid "Unsupported entity type: %s"
-msgstr "Entitettype er ikke understøttet: %s"
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:1
+msgid "Delete all stock prices before the date below based upon the following criteria:"
+msgstr "Slet alle aktiepriser før datoen nedenfor baseret på de følgende kriterier:"
-#: ../src/gnome/top-level.c:211
-#, c-format
-msgid "No such price: %s"
-msgstr "Ingen sådan pris: %s"
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:2
+msgid "Delete _manually entered prices"
+msgstr "Slet _manuelt indtastede priser"
-#: ../src/gnome-utils/assistant-xml-encoding.c:160
-msgid ""
-"\n"
-"The file you are trying to load is from an older version of GnuCash. The file format in the older versions was missing the detailed specification of the character encoding being used. This means the text in your data file could be read in multiple ambiguous ways. This ambiguity cannot be resolved automatically, but the new GnuCash 2.0.0 file format will include all necessary specifications so that you do not have to go through this step again.\n"
-"\n"
-"GnuCash will try to guess the correct character encoding for your data file. On the next page GnuCash will show the resulting texts when using this guess. You have to check whether the words look as expected. Either everything looks fine and you can simply press 'Forward'. Or the words contain unexpected characters, in which case you should select different character encodings to see different results. You may have to edit the list of character encodings by clicking on the respective button.\n"
-"\n"
-"Press 'Forward' now to select the correct character encoding for your data file.\n"
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:3
+msgid "If activated, delete manually entered stock prices dated earlier than the specified date. Otherwise only stock prices added by Finance::Quote will be deleted."
msgstr ""
-"\n"
-"Filen du forsøger at indlæse er fra en ældre version af GnuCash. Filformatet i de ældre versioner manglede den detaljerede specifikation om den anvendte tegnkodning. Dette betyder, at tekst i dine datafiler kan læses på flere tvetydige måder. Denne tvetydighed kan ikke løses automatisk, men det nye GnuCash 2.0.0-filformat vil inkludere alle nødvendige specifikationer, så du ikke skal igennem dette trin igen.\n"
-"\n"
-"GnuCash vil forsøge at gætte det korrekt tegnformat for din datafil. På den næste side vil GnuCash vise teksten med dette gæt. Du skal kontrollere hvorvidt ordene ser ud som forventet. Enten ser alt fint ud og du kan trykke »Videre«. Eller også indeholder ordene uventede tegn og i dette tilfælde skal du vælge forskellige tegnkodninger for at se de forskellige resultater. Du skal måske redigere listen over tegnkodninger ved at klikke på den respektive knap.\n"
-"\n"
-"Tryk »Videre« nu for at vælge den korrekte tegnkodning for din datafil.\n"
-#: ../src/gnome-utils/assistant-xml-encoding.c:180
-msgid "Ambiguous character encoding"
-msgstr "Tvetydig tegnkodning"
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:4
+msgid "Delete _last price for a stock"
+msgstr "Slet sids_te pris for en aktie"
-#: ../src/gnome-utils/assistant-xml-encoding.c:183
-msgid ""
-"The file has been loaded successfully. If you click 'Apply' it will be saved and reloaded into the main application. That way you will have a working file as backup in the same directory.\n"
-"\n"
-"You can also go back and verify your selections by clicking on 'Back'."
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:5
+msgid "If activated, delete all prices before the specified date. Otherwise the last stock price dated before the date will be kept and all earlier quotes deleted."
msgstr ""
-"Filen er blevet indlæst med succes. Hvis du klikker »Anvend« vil den blive gemt og genindlæst i hovedprogrammet. På den måde har du en fungerende fil som sikkerhedskopi i den samme mappe.\n"
-"\n"
-"Du kan også gå tilbage og verificere dine valg ved at klikke på »Tilbage«."
-#: ../src/gnome-utils/assistant-xml-encoding.c:206
-msgid "Unicode"
-msgstr "Unicode"
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:7
+msgid "Price Editor"
+msgstr "Prisredigering"
-#: ../src/gnome-utils/assistant-xml-encoding.c:208
-msgid "European"
-msgstr "Europæisk"
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:8
+msgid "_Namespace:"
+msgstr "_Navnerum"
-#: ../src/gnome-utils/assistant-xml-encoding.c:209
-msgid "ISO-8859-1 (West European)"
-msgstr "ISO-8859-1 (Vesteuropæisk)"
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:9
+#: ../src/gnome-utils/dialog-commodity.c:289
+msgid "_Security:"
+msgstr "_Værdipapir:"
-#: ../src/gnome-utils/assistant-xml-encoding.c:210
-msgid "ISO-8859-2 (East European)"
-msgstr "ISO-8859-2 (Ãsteuropæisk)"
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:10
+#: ../src/gnome-utils/dialog-commodity.c:294
+msgid "Cu_rrency:"
+msgstr "Va_luta:"
-#: ../src/gnome-utils/assistant-xml-encoding.c:211
-msgid "ISO-8859-3 (South European)"
-msgstr "ISO-8859-3 (Sydeuropæisk)"
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:11
+msgid "S_ource:"
+msgstr "K_ilde:"
-#: ../src/gnome-utils/assistant-xml-encoding.c:212
-msgid "ISO-8859-4 (North European)"
-msgstr "ISO-8859-4 (Nordeuropæisk)"
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:13
+msgid "_Price:"
+msgstr "_Pris:"
-#: ../src/gnome-utils/assistant-xml-encoding.c:213
-msgid "ISO-8859-5 (Cyrillic)"
-msgstr "ISO-8859-5 (Kyrillisk)"
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:14
+msgid "Add a new price."
+msgstr "Tilføj en ny pris."
-#: ../src/gnome-utils/assistant-xml-encoding.c:214
-msgid "ISO-8859-6 (Arabic)"
-msgstr "ISO-8859-6 (Arabisk)"
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:15
+msgid "Remove the current price."
+msgstr "Fjern den aktuelle pris."
+
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:16
+msgid "Edit the current price."
+msgstr "Redigér den nuværende pris."
-#: ../src/gnome-utils/assistant-xml-encoding.c:215
-msgid "ISO-8859-7 (Greek)"
-msgstr "ISO-8859-7 (Græsk)"
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:18
+msgid "Remove prices older than a user-entered date."
+msgstr "Fjern priser, der er ældre end en brugerangivet dato."
-#: ../src/gnome-utils/assistant-xml-encoding.c:216
-msgid "ISO-8859-8 (Hebrew)"
-msgstr "ISO-8859-8 (Hebraisk)"
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:19
+msgid "Remove _Old"
+msgstr "Fjern _gammel"
-#: ../src/gnome-utils/assistant-xml-encoding.c:217
-msgid "ISO-8859-9 (Turkish)"
-msgstr "ISO-8859-9 (Tyrkisk)"
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:20
+msgid "Get new online quotes for stock accounts."
+msgstr "Hent nye online-kurser for aktiekonti."
-#: ../src/gnome-utils/assistant-xml-encoding.c:218
-msgid "ISO-8859-10 (Nordic)"
-msgstr "ISO-8859-10 (Nordisk)"
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:21
+msgid "Get _Quotes"
+msgstr "Hent _kurser"
-#: ../src/gnome-utils/assistant-xml-encoding.c:219
-msgid "ISO-8859-11 (Thai)"
-msgstr "ISO-8859-11 (Thai)"
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:22
+msgid "Bid"
+msgstr ""
-#: ../src/gnome-utils/assistant-xml-encoding.c:220
-msgid "ISO-8859-13 (Baltic)"
-msgstr "ISO-8859-13 (Baltisk)"
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:23
+msgid "Ask"
+msgstr ""
-#: ../src/gnome-utils/assistant-xml-encoding.c:221
-msgid "ISO-8859-14 (Celtic)"
-msgstr "ISO-8859-14 (Keltisk)"
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:24
+#, fuzzy
+msgid "Last"
+msgstr "Sidste"
-#: ../src/gnome-utils/assistant-xml-encoding.c:222
-msgid "ISO-8859-15 (West European, Euro sign)"
-msgstr "ISO-8859-15 (Vesteuropæisk, Euro-tegn)"
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:25
+#, fuzzy
+msgid "Net Asset Value"
+msgstr "Nettoaktiver:"
-#: ../src/gnome-utils/assistant-xml-encoding.c:223
-msgid "ISO-8859-16 (South-East European)"
-msgstr "ISO-8859-16 (Sydøsteuropæisk)"
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:27
+#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:26
+msgid "Dummy commodity Line"
+msgstr ""
-#: ../src/gnome-utils/assistant-xml-encoding.c:224
-msgid "Cyrillic"
-msgstr "Kyrillisk"
+#: ../src/gnome/gtkbuilder/dialog-price.glade.h:28
+#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:27
+msgid "Dummy namespace Line"
+msgstr ""
-#: ../src/gnome-utils/assistant-xml-encoding.c:225
-msgid "KOI8-R (Russian)"
-msgstr "KOI8-R (Russisk)"
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:1
+msgid "Save Custom Check Format"
+msgstr "Gem eget checkformat"
-#: ../src/gnome-utils/assistant-xml-encoding.c:226
-msgid "KOI8-U (Ukrainian)"
-msgstr "KOI8-U (Ukrainsk)"
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:2
+msgid "Enter a title for this custom format. This title will appear in the \"Check format\" selector of the Print Check dialog. Using the title of an existing custom format will cause that format to be overwritten."
+msgstr "Indtast en titel for dette eget format. Denne titel vil fremgå i »Checkformat«-vælgeren i dialogen Udskriv check. Brug af en eksisterende titel vil gøre at formatet bliver overskrevet."
-#: ../src/gnome-utils/assistant-xml-encoding.c:664
-#, c-format
-msgid "There are %d unassigned and %d undecodable words. Please add encodings."
-msgstr "Der er %d uregistrerede ord og %d ord der ikke kan afkodes. Tilføj venligst kodninger."
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:3
+msgid "Print Check"
+msgstr "Udskriv check"
-#: ../src/gnome-utils/assistant-xml-encoding.c:672
-#, c-format
-msgid "There are %d unassigned words. Please decide on them or add encodings."
-msgstr "Der er %d uregistrerede ord. Foretag en beslutning vedrørende dem eller tilføj kodninger."
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:4
+msgid "Check _format:"
+msgstr "Check_format:"
-#: ../src/gnome-utils/assistant-xml-encoding.c:683
-#, c-format
-msgid "There are %d undecodable words. Please add encodings."
-msgstr "Der er %d ord, der ikke kan afkodes. Tilføj kodninger."
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:5
+msgid "Check po_sition:"
+msgstr "Checkpo_sition:"
-#. Translators: Please insert encodings here that are typically used in your
-#. * locale, separated by spaces. No need for ASCII or UTF-8, check `locale -m`
-#. * for assistance with spelling.
-#: ../src/gnome-utils/assistant-xml-encoding.c:992
-msgid "ISO-8859-1 KOI8-U"
-msgstr "ISO-8859-1 ISO-8859-4 ISO-8859-15"
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:6
+msgid "_Date format:"
+msgstr "_Datoformat:"
-#. another error, cannot handle this here
-#: ../src/gnome-utils/assistant-xml-encoding.c:1071
-#: ../src/gnome-utils/assistant-xml-encoding.c:1091
-msgid "The file could not be reopened."
-msgstr "Filen kunne ikke genåbnes."
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:7
+msgid ""
+"Check format must have an\n"
+"ADDRESS item defined in order\n"
+"to print an address on the check."
+msgstr ""
+"Checkformat skal have et\n"
+"ADRESSE-punkt defineret for at\n"
+"kunne udskrive en adresse på checken."
-#: ../src/gnome-utils/assistant-xml-encoding.c:1076
-msgid "Reading file..."
-msgstr "Læser fil ..."
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:10
+msgid "_Address"
+msgstr "_Adresse"
-#: ../src/gnome-utils/assistant-xml-encoding.c:1099
-msgid "Parsing file..."
-msgstr "Fortolker fil ..."
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:11
+msgid "Checks on first _page:"
+msgstr "Check på første _side:"
-#: ../src/gnome-utils/assistant-xml-encoding.c:1106
-msgid "There was an error parsing the file."
-msgstr "Der opstod en fejl under fortolkning af filen."
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:13
+msgid "x"
+msgstr "x"
-#: ../src/gnome-utils/assistant-xml-encoding.c:1131
-#: ../src/gnome-utils/gnc-file.c:1269
-#: ../src/gnome-utils/gnc-file.c:1509
-msgid "Writing file..."
-msgstr "Skriver fil ..."
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:14
+msgid "y"
+msgstr "y"
-#: ../src/gnome-utils/assistant-xml-encoding.c:1286
-msgid "This encoding has been added to the list already."
-msgstr "Denne kodning er allerede blevet tilføjet listen."
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:15
+msgid "Pa_yee:"
+msgstr "_Modtager:"
-#: ../src/gnome-utils/assistant-xml-encoding.c:1297
-msgid "This is an invalid encoding."
-msgstr "Dette er en ugyldig kodning."
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:17
+msgid "Amount (_words):"
+msgstr "Sum (_bogstaver):"
-#: ../src/gnome-utils/dialog-account.c:467
-msgid "Could not create opening balance."
-msgstr "Kunne ikke oprette åbningssaldo"
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:18
+msgid "Amount (_numbers):"
+msgstr "Sum (ci_fre):"
-#. primary label
-#: ../src/gnome-utils/dialog-account.c:661
-msgid "Give the children the same type?"
-msgstr "Giv underkonti samme type?"
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:19
+msgid "_Notes:"
+msgstr "_Bemærkninger:"
-#. secondary label
-#: ../src/gnome-utils/dialog-account.c:679
-#, c-format
-msgid "The children of the edited account have to be changed to type \"%s\" to make them compatible."
-msgstr "Underkonti for den redigerede konto er blevet ændret til type »%s« for at gøre dem kompatible."
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:20
+msgid "_Units:"
+msgstr "_Enheder:"
-#. children
-#: ../src/gnome-utils/dialog-account.c:690
-msgid "_Show children accounts"
-msgstr "_Vis underkonti"
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:21
+msgid "_Translation:"
+msgstr "Oversæ_ttelse:"
-#: ../src/gnome-utils/dialog-account.c:763
-msgid "The account must be given a name."
-msgstr "Kontoen skal have et navn."
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:22
+msgid "_Rotation"
+msgstr "_Rotation"
-#: ../src/gnome-utils/dialog-account.c:789
-msgid "There is already an account with that name."
-msgstr "Der er allerede en konto med det navn."
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:23
+msgid "The origin point is the upper left-hand corner of the page."
+msgstr "Udgangspunktet er det øvre venstre hjørne på siden."
-#: ../src/gnome-utils/dialog-account.c:798
-msgid "You must choose a valid parent account."
-msgstr "Du skal vælge en gyldig samlekonto."
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:24
+msgid "The origin point is the lower left-hand corner of the page."
+msgstr "Udgangspunktet er det nedre venstre hjørne på siden."
-#: ../src/gnome-utils/dialog-account.c:807
-msgid "You must select an account type."
-msgstr "Du skal vælge en kontotype."
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:25
+msgid "Degrees"
+msgstr "Grader"
-#: ../src/gnome-utils/dialog-account.c:816
-msgid "The selected account type is incompatible with the one of the selected parent."
-msgstr "Den valgte kontotype er ikke kompatibel med en af de valgte overkonti."
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:26
+msgid "_Save format"
+msgstr "_Gem format"
-#: ../src/gnome-utils/dialog-account.c:828
-msgid "You must choose a commodity."
-msgstr "Du skal vælge en vare."
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:27
+msgid "_Address:"
+msgstr "_Adresse:"
-#: ../src/gnome-utils/dialog-account.c:884
-msgid "You must enter a valid opening balance or leave it blank."
-msgstr "Du skal angive en gyldig åbningssaldo eller lade den være tom."
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:29
+msgid "Splits Memo"
+msgstr "Opdeler memo"
-#: ../src/gnome-utils/dialog-account.c:908
-msgid "You must select a transfer account or choose the opening balances equity account."
-msgstr "Du skal vælge en overførselskonto eller vælge åbningssaldoens udligningskonto."
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:30
+msgid "Splits Amount"
+msgstr "Opdeler beløb"
-#: ../src/gnome-utils/dialog-account.c:1458
-msgid "Edit Account"
-msgstr "Redigér konto"
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:31
+msgid "Splits Account"
+msgstr "Opdeler konto"
-#: ../src/gnome-utils/dialog-account.c:1461
-#, c-format
-msgid "(%d) New Accounts"
-msgstr "(%d) Nye konti"
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:32
+msgid "Custom format"
+msgstr "Eget format"
-#: ../src/gnome-utils/dialog-account.c:1471
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:9
-msgid "New Account"
-msgstr "Ny konto"
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:33
+msgid "Inches"
+msgstr "Tommer"
+
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:34
+msgid "Centimeters"
+msgstr "Centimeter"
-#: ../src/gnome-utils/dialog-account.c:2024
-#, c-format
-msgid "Renumber the immediate sub-accounts of %s? This will replace the account code field of each child account with a newly generated code."
-msgstr "Omdøb de umiddelbare underkonti for %s? Dette vil erstatte feltet med kontokoden for hver underkonto med en nyoprettet kode."
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:35
+msgid "Millimeters"
+msgstr "Millimeter"
-#: ../src/gnome-utils/dialog-book-close.c:301
-msgid "Please select an Equity account to hold the total Period Income."
-msgstr ""
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:36
+msgid "Points"
+msgstr "Punkter"
-#: ../src/gnome-utils/dialog-book-close.c:308
-msgid "Please select an Equity account to hold the total Period Expense."
-msgstr ""
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:38
+msgid "Middle"
+msgstr "Midten"
-#: ../src/gnome-utils/dialog-commodity.c:174
-msgid ""
-"\n"
-"Please select a commodity to match:"
-msgstr ""
-"\n"
-"Vælg venligst varen at matche:"
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:39
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:186
+msgid "Bottom"
+msgstr "Nederst"
-#: ../src/gnome-utils/dialog-commodity.c:181
-msgid ""
-"\n"
-"Commodity: "
-msgstr ""
-"\n"
-"Vare: "
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:41
+msgid "Quicken/QuickBooks (tm) US-Letter"
+msgstr "Quicken/QuickBooks (tm) US-Letter"
-# http://en.wikipedia.org/wiki/CUSIP ved ikke rigtig om vi har en sådan!
-#
-#. Translators: Replace here and later CUSIP by the name of your local
-#. National Securities Identifying Number
-#. like gb:SEDOL, de:WKN, ch:Valorennummer, fr:SICOVAM ...
-#. See http://en.wikipedia.org/wiki/ISIN for hints.
-#: ../src/gnome-utils/dialog-commodity.c:187
-msgid ""
-"\n"
-"Exchange code (ISIN, CUSIP or similar): "
-msgstr ""
-"\n"
-"Udvekslingskode (ISIN, CUSIP eller lignende): "
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:42
+msgid "Deluxe(tm) Personal Checks US-Letter"
+msgstr "Deluxe(tm) Personal Checks US-Letter"
-#: ../src/gnome-utils/dialog-commodity.c:189
-msgid ""
-"\n"
-"Mnemonic (Ticker symbol or similar): "
-msgstr ""
+#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:43
+msgid "Quicken(tm) Wallet Checks w/ side stub"
+msgstr "Quicken(tm) Wallet Checks m/ sidekant"
-#: ../src/gnome-utils/dialog-commodity.c:284
-msgid "Select security/currency"
-msgstr "Vælg værdipapir/valuta"
+#: ../src/gnome/gtkbuilder/dialog-progress.glade.h:1
+msgid "Working..."
+msgstr "Arbejder ..."
-#: ../src/gnome-utils/dialog-commodity.c:285
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:14
-msgid "_Security/currency:"
-msgstr "_Værdipapir/valuta:"
+#: ../src/gnome/gtkbuilder/dialog-progress.glade.h:2
+msgid "1234567890123456789012345678901234567890"
+msgstr "1234567890123456789012345678901234567890"
-#: ../src/gnome-utils/dialog-commodity.c:288
-msgid "Select security"
-msgstr "Vælg værdipapir"
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:1
+msgid "Account Deletion"
+msgstr "Kontosletning"
-#: ../src/gnome-utils/dialog-commodity.c:293
-msgid "Select currency"
-msgstr "Vælg valuta"
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:2
+msgid "The following Scheduled Transactions reference the deleted account and must now be corrected. Press OK to edit them."
+msgstr "De følgende planlagte transaktioner har reference til den slettede konto og skal nu rettes. Tryk O.k. for at redigere dem."
-#: ../src/gnome-utils/dialog-commodity.c:546
-msgid "You must select a commodity. To create a new one, click \"New\""
-msgstr "Du skal vælge en vare. Tryk »Ny« for at oprette en ny."
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:4
+#, fuzzy
+#| msgid "<b>Since Last Run Dialog</b>"
+msgid "<b>Since Last Run</b>"
+msgstr "<b>Siden sidste kør-dialog</b>"
-#: ../src/gnome-utils/dialog-commodity.c:913
-msgid "Use local time"
-msgstr "Brug lokal tid"
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:5
+msgid "<b>Transaction Editor Defaults</b>"
+msgstr "<b>Transaktionsredigeringsprogrammets standarder</b>"
-#: ../src/gnome-utils/dialog-commodity.c:1042
-msgid "Edit currency"
-msgstr "Rediger valuta"
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:6
+msgid "_Run when data file opened"
+msgstr "Kø_r når datafil åbnes"
-#: ../src/gnome-utils/dialog-commodity.c:1043
-msgid "Currency Information"
-msgstr "Valutainformation"
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:7
+#, fuzzy
+#| msgid "Show the \"since last run\" window when a file is opened."
+msgid "Run the \"since last run\" process when a file is opened."
+msgstr "Vis »siden sidste kørsel«-vinduet når en fil åbnes."
-#: ../src/gnome-utils/dialog-commodity.c:1048
-msgid "Edit security"
-msgstr "Rediger værdipapir"
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:8
+#, fuzzy
+#| msgid "Show _log window"
+msgid "_Show notification window"
+msgstr "Vis _logvindue"
-#: ../src/gnome-utils/dialog-commodity.c:1048
-msgid "New security"
-msgstr "Nyt værdipapir"
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:9
+#, fuzzy
+#| msgid "Show the \"since last run\" window when a file is opened."
+msgid "Show the notification window for the \"since last run\" process when a file is opened."
+msgstr "Vis »siden sidste kørsel«-vinduet når en fil åbnes."
-#: ../src/gnome-utils/dialog-commodity.c:1049
-msgid "Security Information"
-msgstr "Information om værdipapir"
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:10
+msgid "_Auto-create new transactions"
+msgstr "_Autoopret nye transaktioner"
-#: ../src/gnome-utils/dialog-commodity.c:1325
-msgid "You may not create a new national currency."
-msgstr "Du kan ikke oprette en ny national valuta."
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:11
+msgid "Set the 'auto-create' flag on newly created scheduled transactions."
+msgstr "Sæt flaget »auto-create« på de netop oprettede planlagte transaktioner."
-#: ../src/gnome-utils/dialog-commodity.c:1335
-#, c-format
-msgid "%s is a reserved commodity type. Please use something else."
-msgstr ""
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:12
+msgid "Crea_te in advance:"
+msgstr "_Opret på forhånd:"
-#: ../src/gnome-utils/dialog-commodity.c:1350
-msgid "That commodity already exists."
-msgstr "Den vare findes allerede."
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:13
+msgid "R_emind in advance:"
+msgstr "_Forhåndspåmindelse:"
-#: ../src/gnome-utils/dialog-commodity.c:1398
-msgid "You must enter a non-empty \"Full name\", \"Symbol/abbreviation\", and \"Type\" for the commodity."
-msgstr "Du skal vælge en udfyldt »Fulde navn«, »Kode/forkortelse« og »Type« for varen."
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:14
+msgid "Begin notifications this many days before the transaction is created."
+msgstr "Påbegynd påmindelser dette antal dage før transaktionen oprettes."
-#. The "date" and the "tnum" fields aren't being asked for, this is a split copy
-#: ../src/gnome-utils/dialog-dup-trans.c:235
-msgid "Action/Number:"
-msgstr "Handling/Nummer:"
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:15
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:67
+msgid "days"
+msgstr "dage"
-#: ../src/gnome-utils/dialog-file-access.c:295
-msgid "Open..."
-msgstr "Ã
bn ..."
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:16
+msgid "Create the transaction this many days before its effective date."
+msgstr "Opret transaktionen dette antal dage før dets effektive dato."
-#: ../src/gnome-utils/dialog-file-access.c:302
-msgid "Save As..."
-msgstr "Gem som ..."
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:17
+msgid "_Notify before transactions are created "
+msgstr "_Påmind før transaktioner oprettes"
-#: ../src/gnome-utils/dialog-file-access.c:311
-#: ../src/gnome-utils/gnc-file.c:119
-#: ../src/gnome-utils/gnc-file.c:289
-#: ../src/report/report-gnome/gnc-plugin-page-report.c:1087
-msgid "Export"
-msgstr "Eksportér"
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:18
+msgid "Set the 'notify' flag on newly created scheduled transactions."
+msgstr "Sæt flaget »notify« på det netop oprettede planlagte transaktioner."
-#: ../src/gnome-utils/dialog-options.c:811
-#: ../src/gnome-utils/dialog-options.c:953
-msgid "Select All"
-msgstr "Vælg alt"
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:19
+msgid "Edit Scheduled Transaction"
+msgstr "Rediger planlagt transaktion"
-#: ../src/gnome-utils/dialog-options.c:813
-msgid "Select all accounts."
-msgstr "Vælg alle konti."
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:20
+msgid "<b>Name</b>"
+msgstr "<b>Navn</b>"
-#: ../src/gnome-utils/dialog-options.c:818
-#: ../src/gnome-utils/dialog-options.c:960
-msgid "Clear All"
-msgstr "Tøm alt"
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:21
+msgid "<b>Options</b>"
+msgstr "<b>Indstillinger</b>"
-#: ../src/gnome-utils/dialog-options.c:820
-msgid "Clear the selection and unselect all accounts."
-msgstr "Ryd markeringen og fravælg alle konti."
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:22
+msgid "Create in advance:"
+msgstr "Opret på forhånd:"
-#: ../src/gnome-utils/dialog-options.c:825
-msgid "Select Children"
-msgstr "Vælg underkonti"
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:23
+msgid "Remind in advance:"
+msgstr "Forhåndspåmindelse:"
-#: ../src/gnome-utils/dialog-options.c:827
-msgid "Select all descendents of selected account."
-msgstr "Vælg alle underkonti for den valgte konto."
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:24
+msgid " days"
+msgstr " dage"
-#: ../src/gnome-utils/dialog-options.c:833
-#: ../src/gnome-utils/dialog-options.c:967
-msgid "Select Default"
-msgstr "Vælg standard"
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:25
+msgid "Create automatically"
+msgstr "Opret automatisk"
-#: ../src/gnome-utils/dialog-options.c:835
-#, fuzzy
-msgid "Select the default account selection."
-msgstr "Sæt standard QIF-kontonavn"
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:26
+msgid "Conditional on splits not having variables"
+msgstr ""
-#: ../src/gnome-utils/dialog-options.c:849
-msgid "Show Hidden Accounts"
-msgstr "Vis skjulte konti"
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:27
+msgid "Notify me when created"
+msgstr "Påmind mig når oprettet"
-#: ../src/gnome-utils/dialog-options.c:851
-msgid "Show accounts that have been marked hidden."
-msgstr "Vis konti som er blevet markeret som skjult."
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:28
+#: ../src/gnome-utils/gnc-tree-view-sx-list.c:168
+msgid "Enabled"
+msgstr "Aktiveret"
-#: ../src/gnome-utils/dialog-options.c:955
-msgid "Select all entries."
-msgstr "Vælg alle poster."
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:29
+msgid "<b>Occurrences</b>"
+msgstr ""
-#: ../src/gnome-utils/dialog-options.c:962
-msgid "Clear the selection and unselect all entries."
-msgstr "Ryd markeringen og fravælg alle poster."
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:30
+msgid "Last Occurred: "
+msgstr ""
-#: ../src/gnome-utils/dialog-options.c:969
-msgid "Select the default selection."
-msgstr "Vælg standardmarkeringen."
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:31
+msgid "Repeats:"
+msgstr "Gentagelser:"
-#. The reset button on each option page
-#: ../src/gnome-utils/dialog-options.c:1129
-msgid "Reset defaults"
-msgstr "Nulstil standarder"
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:32
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:93
+msgid "Forever"
+msgstr "Altid"
-#: ../src/gnome-utils/dialog-options.c:1131
-msgid "Reset all values to their defaults."
-msgstr "Nulstil alle værdier til deres standarder."
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:33
+msgid "Until:"
+msgstr "Indtil:"
-#: ../src/gnome-utils/dialog-options.c:1455
-msgid "Page"
-msgstr "Side"
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:34
+#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:91
+#, fuzzy
+msgid "For:"
+msgstr "Formular"
-#: ../src/gnome-utils/dialog-options.c:2070
-msgid "Clear"
-msgstr "Slet"
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:35
+#, fuzzy
+msgid "occurrences"
+msgstr "Valutaer"
-#: ../src/gnome-utils/dialog-options.c:2071
-msgid "Clear any selected image file."
-msgstr "Ryd alle valgte billedfiler."
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:36
+#, fuzzy
+msgid "remaining"
+msgstr "Udskriver"
-#: ../src/gnome-utils/dialog-options.c:2073
-msgid "Select image"
-msgstr "Vælg billede"
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:37
+msgid "Overview"
+msgstr "Overblik"
-#: ../src/gnome-utils/dialog-options.c:2075
-msgid "Select an image file."
-msgstr "Vælg en billedfil"
+# Evt. "Hyppighed" var frekvens
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:38
+#: ../src/gnome-utils/gnc-dense-cal.c:338
+#: ../src/gnome-utils/gnc-tree-view-sx-list.c:177
+msgid "Frequency"
+msgstr "Hyppighed"
-#. Translators: Both %s will be the account separator character; the
-#. resulting string is a demonstration how the account separator
-#. character will look like. You can replace these three account
-#. names with other account names that are more suitable for your
-#. language - just keep in mind to have exactly two %s in your
-#. translation.
-#: ../src/gnome-utils/dialog-preferences.c:163
-#, c-format
-msgid "Income%sSalary%sTaxable"
-msgstr "Indtægt%sløn%sskattepligtig"
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:39
+msgid "Template Transaction"
+msgstr "Skabelontransaktion"
-#: ../src/gnome-utils/dialog-tax-table.c:116
-msgid "You must provide a name for this Tax Table."
-msgstr "Du skal angive et navn til denne skattetabel."
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:42
+#, fuzzy
+msgid "Bi-Weekly"
+msgstr "Ugentligt"
-#: ../src/gnome-utils/dialog-tax-table.c:123
-#, c-format
-msgid "You must provide a unique name for this Tax Table. Your choice \"%s\" is already in use."
-msgstr "Du skal angive et unikt navn til denne skattetabel. Dit valg »%s« er allerede i brug."
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:46
+msgid "Since Last Run..."
+msgstr "Siden sidste kørsel ..."
-#: ../src/gnome-utils/dialog-tax-table.c:137
-msgid "Percentage amount must be between -100 and 100."
-msgstr "Procentbeløb skal være mellem -100 og 100."
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:47
+msgid "_Review created transactions"
+msgstr "_Kontroller oprettede transaktioner"
-#: ../src/gnome-utils/dialog-tax-table.c:146
-msgid "You must choose a Tax Account."
-msgstr "Du skal vælge en skattekonto."
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:48
+msgid "Make Scheduled Transaction"
+msgstr "Foretag planlagt transaktion"
-#: ../src/gnome-utils/dialog-tax-table.c:563
-#, c-format
-msgid "Tax table \"%s\" is in use. You cannot delete it."
-msgstr "Skattetabel »%s« er i brug. Du kan ikke slette den."
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:49
+msgid "Advanced..."
+msgstr "Avanceret..."
-#: ../src/gnome-utils/dialog-tax-table.c:611
-msgid "You cannot remove the last entry from the tax table. Try deleting the tax table if you want to do that."
-msgstr "Du kan ikke fjerne den sidste post fra skattetabellen. Slet skattetabellen hvis det er det, du vil."
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:53
+msgid "Never End"
+msgstr "Slut aldrig"
-#: ../src/gnome-utils/dialog-tax-table.c:618
-msgid "Are you sure you want to delete this entry?"
-msgstr "Er du sikker på, at du vil slette denne post?"
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:55
+msgid "Number of Occurrences:"
+msgstr "Antal forekomster:"
-#: ../src/gnome-utils/dialog-transfer.c:531
-msgid "Show the income and expense accounts"
-msgstr "Vis indtægts- og udgiftskonti"
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:56
+#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:2
+msgid "1"
+msgstr "1"
-#: ../src/gnome-utils/dialog-transfer.c:633
-msgid "Error"
-msgstr "Fejl"
+#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:57
+msgid "End: "
+msgstr "Slut: "
-#: ../src/gnome-utils/dialog-transfer.c:1248
-#, fuzzy
-msgid "Retrieve the current online quote"
-msgstr "Slet den nuværende opdeling"
+#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:1
+msgid "Income Tax Information"
+msgstr "Information om indkomstskat"
-#: ../src/gnome-utils/dialog-transfer.c:1252
-msgid "Finance::Quote must be installed to enable this button."
-msgstr ""
+#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:2
+msgid "<b>Income Tax Identity</b>"
+msgstr "<b>Identitet for indkomstskat</b>"
-#: ../src/gnome-utils/dialog-transfer.c:1388
-#, fuzzy
-msgid "You must specify an account to transfer from, or to, or both, for this transaction. Otherwise, it will not be recorded."
-msgstr ""
-"Du skal angive en konto at overføre fra, til,\n"
-"eller både-og for denne transaktion. Ellers\n"
-"vil den ikke blive gemt."
+#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:5
+msgid "Click to change Tax Name and/or Tax Type."
+msgstr "Klik for at ændre skattenavn og/eller skattetype."
-#: ../src/gnome-utils/dialog-transfer.c:1398
-msgid "You can't transfer from and to the same account!"
-msgstr "Du kan ikke overføre fra og til den samme konto!"
+#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:6
+#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:14
+msgid "<b>_Accounts</b>"
+msgstr "<b>_Konti</b>"
-#: ../src/gnome-utils/dialog-transfer.c:1424
-msgid "You can't transfer from a non-currency account. Try reversing the \"from\" and \"to\" accounts and making the \"amount\" negative."
-msgstr ""
+#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:7
+#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:15
+msgid "_Income"
+msgstr "_Indtægt"
-#: ../src/gnome-utils/dialog-transfer.c:1449
-msgid "You must enter an amount to transfer."
-msgstr "Du skal vælge en mængde at overføre."
+#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:8
+#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:16
+msgid "_Expense"
+msgstr "_Omkostning"
-#: ../src/gnome-utils/dialog-transfer.c:1464
-msgid "You must enter a valid price."
-msgstr "Du skal vælge en gyldig pris."
+#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:9
+#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:17
+msgid "_Asset"
+msgstr "_Aktiv"
-#: ../src/gnome-utils/dialog-transfer.c:1476
-msgid "You must enter a valid `to' amount."
-msgstr "Du skal vælge en gyldig 'til'-mængde."
+#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:10
+#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:18
+msgid "_Liability/Equity"
+msgstr "_Passiv/egenkapital"
-#: ../src/gnome-utils/dialog-transfer.c:1871
-msgid "Debit Account"
-msgstr "Debetkonto"
+#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:11
+#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:19
+msgid "Accounts Selected:"
+msgstr "Valgte konti:"
-#: ../src/gnome-utils/dialog-transfer.c:1889
-msgid "Transfer From"
-msgstr "Overfør fra"
+#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:12
+#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:20
+msgid "0"
+msgstr "0"
-#: ../src/gnome-utils/dialog-transfer.c:1893
-msgid "Transfer To"
-msgstr "Overfør til"
+#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:13
+#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:21
+msgid "_Select Subaccounts"
+msgstr "_Vælg underkonti"
-#: ../src/gnome-utils/dialog-transfer.c:1950
-msgid "Debit Amount:"
-msgstr "Debetbeløb:"
+#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:14
+msgid "<b>Account Tax Information</b>"
+msgstr "<b>Skatteoplysninger</b>"
-#: ../src/gnome-utils/dialog-transfer.c:1955
-#: ../src/gnome-utils/gtkbuilder/dialog-transfer.glade.h:14
-msgid "To Amount:"
-msgstr "Til-beløb:"
+#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:15
+msgid "Tax _Related"
+msgstr "Skatte_relateret"
-#: ../src/gnome-utils/dialog-utils.c:542
-msgid "Remember and don't _ask me again."
-msgstr "Husk og spørg mig _ikke igen."
+#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:16
+msgid "<b>_TXF Categories</b>"
+msgstr "<b>_TXF-kategorier</b>"
-#: ../src/gnome-utils/dialog-utils.c:543
-msgid "Don't _tell me again."
-msgstr "Fortæl mig _det ikke igen."
+#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:17
+msgid "<b>Payer Name Source</b>"
+msgstr "<b>Kilde for betalernavn</b>"
-#: ../src/gnome-utils/dialog-utils.c:546
-msgid "Remember and don't ask me again this _session."
-msgstr "Husk og fortæl mig det ikke igen i denne _session."
+#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:18
+msgid "C_urrent Account"
+msgstr "_Aktuel konto"
-#: ../src/gnome-utils/dialog-utils.c:547
-msgid "Don't tell me again this _session."
-msgstr "Fortæl mig det ikke igen i denne _session."
+#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:19
+msgid "_Parent Account"
+msgstr "_Samlekonto"
-#. create the button.
-#: ../src/gnome-utils/gnc-account-sel.c:456
-msgid "New..."
-msgstr "Ny ..."
+#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:20
+msgid "<b>Copy Number</b>"
+msgstr "<b>Kopier tal</b>"
-#: ../src/gnome-utils/gnc-autosave.c:98
-msgid "Save file automatically?"
-msgstr "Gem fil automatisk?"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:1
+msgid "Budget List"
+msgstr "Budgetliste"
+
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:2
+msgid "Close the Budget List"
+msgstr "Luk budgetlisten"
-#: ../src/gnome-utils/gnc-autosave.c:101
-#, c-format
-msgid ""
-"Your data file needs to be saved to your hard disk to save your changes. GnuCash has a feature to save the file automatically every %d minute, just as if you had pressed the \"Save\" button each time. \n"
-"\n"
-"You can change the time interval or turn off this feature under Edit -> Preferences -> General -> Auto-save time interval. \n"
-"\n"
-"Should your file be saved automatically?"
-msgid_plural ""
-"Your data file needs to be saved to your hard disk to save your changes. GnuCash has a feature to save the file automatically every %d minutes, just as if you had pressed the \"Save\" button each time. \n"
-"\n"
-"You can change the time interval or turn off this feature under Edit -> Preferences -> General -> Auto-save time interval. \n"
-"\n"
-"Should your file be saved automatically?"
-msgstr[0] ""
-msgstr[1] ""
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:3
+msgid "Create a New Budget"
+msgstr "Opret et nyt budget"
-#: ../src/gnome-utils/gnc-autosave.c:116
-msgid "_Yes, this time"
-msgstr "_Ja, denne gang"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:4
+msgid "Open the Selected Budget"
+msgstr "Ã
bn det valgte budget"
-#: ../src/gnome-utils/gnc-autosave.c:117
-msgid "Yes, _always"
-msgstr "Ja, _altid"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:5
+msgid "Delete the Selected Budget"
+msgstr "Slet det valgte budget"
-#: ../src/gnome-utils/gnc-autosave.c:118
-msgid "No, n_ever"
-msgstr "N_ej, aldrig"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:6
+msgid "Estimate Budget Values"
+msgstr "Estimer budgetværdier"
-#: ../src/gnome-utils/gnc-autosave.c:119
-msgid "_No, not this time"
-msgstr "_Nej, ikke denne gang"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:7
+msgid "GnuCash will estimate budget values for the selected accounts from past transactions."
+msgstr "GnuCash vil estimere budgetværdier for de valgte konti fra tidligere transaktioner."
-#. CY Strings
-#. src/app-utils/date-utilities.scm
-#: ../src/gnome-utils/gnc-cell-renderer-date.c:164
-#: ../src/gnome-utils/gnc-period-select.c:70
-#: ../src/gnome-utils/gnc-period-select.c:86
-#: ../intl-scm/guile-strings.c:204
-msgid "Today"
-msgstr "I dag"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:9
+msgid "Significant Digits:"
+msgstr ""
-#. src/report/standard-reports/price-scatter.scm
-#: ../src/gnome-utils/gnc-date-delta.c:218
-#: ../intl-scm/guile-strings.c:4032
-msgid "Weeks"
-msgstr "Uger"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:10
+msgid "The number of leading digits to keep when rounding"
+msgstr ""
-#: ../src/gnome-utils/gnc-date-delta.c:246
-msgid "Ago"
-msgstr "Siden"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:12
+msgid "Budget Name:"
+msgstr "Budgetnavn:"
-#: ../src/gnome-utils/gnc-date-delta.c:248
-msgid "From Now"
-msgstr "Fra nu"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:14
+msgid "Number of Periods:"
+msgstr "Antal perioder:"
-#. Calendar label, only shown if the date editor has a time field
-#: ../src/gnome-utils/gnc-date-edit.c:862
-msgid "Calendar"
-msgstr "Kalender"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:15
+msgid "Budget Period:"
+msgstr "Budgetperiode:"
-#: ../src/gnome-utils/gnc-dense-cal.c:250
-msgid "12 months"
-msgstr "12 måneder"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:1
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:1
+msgid "Duplicate Transaction"
+msgstr "Transaktionsdublet"
-#: ../src/gnome-utils/gnc-dense-cal.c:251
-msgid "6 months"
-msgstr "6 måneder"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:2
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:2
+msgid "<b>New Transaction Information</b>"
+msgstr "<b>Ny transaktionsoplysning</b>"
-#: ../src/gnome-utils/gnc-dense-cal.c:252
-msgid "4 months"
-msgstr "4 måneder"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:4
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:4
+msgid "_Number:"
+msgstr "_Nummer:"
-#: ../src/gnome-utils/gnc-dense-cal.c:253
-msgid "3 months"
-msgstr "3 måneder"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:5
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:6
+msgid "Filter register by..."
+msgstr "Filtrer kasseklade efter ..."
-#: ../src/gnome-utils/gnc-dense-cal.c:254
-msgid "2 months"
-msgstr "2 måneder"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:6
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:7
+#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:23
+msgid "Show _All"
+msgstr "Vis _alt"
-#: ../src/gnome-utils/gnc-dense-cal.c:255
-msgid "1 month"
-msgstr "1 måned"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:7
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:8
+#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:24
+msgid "Select Range:"
+msgstr "Vælg interval:"
-#: ../src/gnome-utils/gnc-dense-cal.c:288
-msgid "View:"
-msgstr "Vis:"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:8
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:9
+#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:25
+msgid "Start:"
+msgstr "Start:"
-#. src/report/stylesheets/stylesheet-easy.scm
-#. src/report/stylesheets/stylesheet-fancy.scm
-#. src/report/stylesheets/stylesheet-footer.scm
-#: ../src/gnome-utils/gnc-dense-cal.c:326
-#: ../intl-scm/guile-strings.c:5176
-#: ../intl-scm/guile-strings.c:5388
-#: ../intl-scm/guile-strings.c:5610
-msgid "Date: "
-msgstr "Dato: "
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:9
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:10
+#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:26
+msgid "_Earliest"
+msgstr "_Tidligst"
-#: ../src/gnome-utils/gnc-dense-cal.c:1173
-msgid "(unnamed)"
-msgstr "(intet navn)"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:10
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:11
+#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:27
+msgid "Choo_se Date:"
+msgstr "Væl_g dato:"
-#. File menu
-#. Menu Items
-#: ../src/gnome-utils/gnc-file.c:104
-#: ../src/gnome-utils/gnc-main-window.c:272
-#: ../src/plugins/bi_import/gnc-plugin-bi-import.c:56
-msgid "_Import"
-msgstr "_Indlæsning"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:11
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:12
+#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:28
+msgid "Toda_y"
+msgstr "I da_g"
-#: ../src/gnome-utils/gnc-file.c:106
-#: ../src/gnome-utils/gnc-file.c:273
-msgid "Import"
-msgstr "Indlæsning"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:12
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:13
+#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:29
+msgid "_Latest"
+msgstr "Si_dste"
-#: ../src/gnome-utils/gnc-file.c:112
-#: ../src/gnome-utils/gnc-file.c:1083
-#: ../src/gnome-utils/gnc-file.c:1319
-msgid "Save"
-msgstr "Gem"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:13
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:14
+#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:30
+msgid "End:"
+msgstr "Slut:"
-#: ../src/gnome-utils/gnc-file.c:116
-#: ../src/gnome-utils/gnc-main-window.c:273
-msgid "_Export"
-msgstr "_Eksporter"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:14
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:15
+#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:31
+msgid "C_hoose Date:"
+msgstr "Væl_g dato:"
-#: ../src/gnome-utils/gnc-file.c:158
-msgid "All files"
-msgstr "Alle filer"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:15
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:16
+#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:32
+msgid "_Today"
+msgstr "_I dag"
-#: ../src/gnome-utils/gnc-file.c:204
-msgid "(null)"
-msgstr "(tom)"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:17
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:18
+msgid "_Unreconciled"
+msgstr "_Uafstemt"
-#: ../src/gnome-utils/gnc-file.c:218
-#, c-format
-msgid "No suitable backend was found for %s."
-msgstr ""
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:18
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:19
+#: ../src/import-export/qif-imp/dialog-account-picker.glade.h:5
+msgid "_Reconciled"
+msgstr "_Afstemt"
-#: ../src/gnome-utils/gnc-file.c:223
-#, c-format
-msgid "The URL %s is not supported by this version of GnuCash."
-msgstr "URL'en %s understøttes ikke af denne version af GnuCash."
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:19
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:20
+msgid "C_leared"
+msgstr "S_lettet"
-#: ../src/gnome-utils/gnc-file.c:228
-#, c-format
-msgid "Can't parse the URL %s."
-msgstr "Kan ikke tolke URL'en %s."
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:20
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:21
+msgid "_Voided"
+msgstr ""
-#: ../src/gnome-utils/gnc-file.c:233
-#, c-format
-msgid "Can't connect to %s. The host, username or password were incorrect."
-msgstr "Kan ikke forbinde til %s. Værten, brugernavnet eller adgangskoden var forkert."
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:21
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:22
+msgid "_Frozen"
+msgstr "_Frosset"
-#: ../src/gnome-utils/gnc-file.c:239
-#, c-format
-msgid "Can't connect to %s. Connection was lost, unable to send data."
-msgstr "Kan ikke forbinde til %s. Forbindelsen blev afbrudt. Kunne ikke sende data."
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:22
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:23
+msgid "Select _All"
+msgstr "Vælg _alt"
-#: ../src/gnome-utils/gnc-file.c:245
-msgid "This file/URL appears to be from a newer version of GnuCash. You must upgrade your version of GnuCash to work with this data."
-msgstr "Denne fil/URL ser ud til at være fra en nyere version af GnuCash. Du er nødt til at opgradere GnuCash for at arbejde med disse data."
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:24
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:25
+msgid "Sa_ve Filter"
+msgstr "_Gem filter"
-#: ../src/gnome-utils/gnc-file.c:252
-#, c-format
-msgid "The database %s doesn't seem to exist. Do you want to create it?"
-msgstr "Databasen %s lader ikke til at eksistere. Vil du oprette den?"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:25
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:51
+msgid "Void Transaction"
+msgstr "Ugyldig transaktion"
-#: ../src/gnome-utils/gnc-file.c:266
-#, c-format
-msgid "GnuCash could not obtain the lock for %s. That database may be in use by another user, in which case you should not open the database. Do you want to proceed with opening the database?"
-msgstr "GnuCash kunne ikke sikre låsen til %s. Denne database kan være i brug af en anden bruger. I så fald bør du ikke åbne databasen. Vil du fortsætte med at åbne databasen?"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:26
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:52
+msgid "Reason for voiding transaction:"
+msgstr "Ã
rsag for ugyldig transaktion:"
-#: ../src/gnome-utils/gnc-file.c:274
-#, c-format
-msgid "GnuCash could not obtain the lock for %s. That database may be in use by another user, in which case you should not import the database. Do you want to proceed with importing the database?"
-msgstr "GnuCash kunne ikke sikre låsen til %s. Denne database kan være i brug af en anden bruger. I så fald bør du ikke indlæse databasen. Vil du fortsætte med at indlæse databasen?"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:5
+msgid "_Transaction Number:"
+msgstr "_Transaktionsnummer:"
-#: ../src/gnome-utils/gnc-file.c:282
-#, c-format
-msgid "GnuCash could not obtain the lock for %s. That database may be in use by another user, in which case you should not save the database. Do you want to proceed with saving the database?"
-msgstr "GnuCash kunne ikke sikre låsen til %s. Denne database kan være i brug af en anden bruger. I så fald bør du ikke gemme databasen. Vil du fortsætte med at gemme databasen?"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:26
+msgid "Sort register by..."
+msgstr "Sorter kassekladde efter ..."
-#: ../src/gnome-utils/gnc-file.c:290
-#, c-format
-msgid "GnuCash could not obtain the lock for %s. That database may be in use by another user, in which case you should not export the database. Do you want to proceed with exporting the database?"
-msgstr "GnuCash kunne ikke sikre låsen til %s. Denne database kan være i brug af en anden bruger. I så fald bør du ikke eksportere databasen. Vil du fortsætte med at eksportere databasen?"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:27
+msgid "_Standard Order"
+msgstr "_Standardorden"
-#: ../src/gnome-utils/gnc-file.c:315
-#, c-format
-msgid "GnuCash could not write to %s. That database may be on a read-only file system, or you may not have write permission for the directory."
-msgstr "GnuCash kunne ikke skrive til %s. Databasen kan befinde sig på et skrivebeskyttet filsystem, eller du har ikke skriverettigheder til mappen."
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:28
+msgid "Keep normal account order."
+msgstr "Behold normal kontorækkefølge."
-#: ../src/gnome-utils/gnc-file.c:322
-#, c-format
-msgid "The file/URL %s does not contain GnuCash data or the data is corrupt."
-msgstr "Filen/URL'en %s indeholder ikke GnuCash-data eller dataene er ødelagte."
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:30
+#: ../src/report/standard-reports/transaction.scm:735
+#: ../src/report/standard-reports/transaction.scm:790
+msgid "Sort by date."
+msgstr "Sorter efter dato."
-#: ../src/gnome-utils/gnc-file.c:328
-#, c-format
-msgid "The server at URL %s experienced an error or encountered bad or corrupt data."
-msgstr "Serveren på URL'en %s løb ind i en fejl, eller fandt ugyldige data."
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:32
+msgid "Sort by the date of entry."
+msgstr "Sorter efter indtastningsdato."
-#: ../src/gnome-utils/gnc-file.c:334
-#, c-format
-msgid "You do not have permission to access %s."
-msgstr "Du har ikke rettigheder til at tilgå %s."
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:33
+msgid "S_tatement Date"
+msgstr "_Udskriftsdato"
-#: ../src/gnome-utils/gnc-file.c:339
-#: ../src/register/register-core/formulacell.c:118
-#: ../src/register/register-core/pricecell.c:181
-#, c-format
-msgid "An error occurred while processing %s."
-msgstr "Der opstod en fejl under behandling af %s."
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:34
+#, fuzzy
+#| msgid "Sort by the statement date (unreconciled items last)."
+msgid "Sort by the statement date (and group by cleared, unreconciled, reconciled)."
+msgstr "Sorter efter opgørelsesdato (uafstemte poster sidst)."
-#: ../src/gnome-utils/gnc-file.c:344
-msgid "There was an error reading the file. Do you want to continue?"
-msgstr "Der opstod en fejl ved læsning af filen. Vil du fortsætte?"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:35
+msgid "Num_ber"
+msgstr "Num_mer"
-#: ../src/gnome-utils/gnc-file.c:353
-#, c-format
-msgid "There was an error parsing the file %s."
-msgstr "Der opstod en fejl under tolkning af filen %s."
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:36
+msgid "Sort by number."
+msgstr "Sorter efter nummer."
-#: ../src/gnome-utils/gnc-file.c:358
-#, c-format
-msgid "The file %s is empty."
-msgstr "Filen %s er tom."
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:37
+msgid "Amo_unt"
+msgstr "Bel_øb"
-#: ../src/gnome-utils/gnc-file.c:369
-#, c-format
-msgid "The file %s could not be found."
-msgstr "Filen %s kunne ikke findes."
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:38
+#: ../src/report/standard-reports/transaction.scm:759
+#: ../src/report/standard-reports/transaction.scm:814
+msgid "Sort by amount."
+msgstr "Sorter efter beløb."
-#: ../src/gnome-utils/gnc-file.c:375
-msgid "This file is from an older version of GnuCash. Do you want to continue?"
-msgstr "Denne fil er fra en ældre version af GnuCash. Vil du fortsætte?"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:39
+msgid "_Memo"
+msgstr "_Memo"
-#: ../src/gnome-utils/gnc-file.c:384
-#, c-format
-msgid "The file type of file %s is unknown."
-msgstr "Filetypen på fil %s er ukendt."
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:40
+#: ../src/report/standard-reports/transaction.scm:775
+#: ../src/report/standard-reports/transaction.scm:826
+msgid "Sort by memo."
+msgstr "Sorter efter note."
-#: ../src/gnome-utils/gnc-file.c:389
-#, c-format
-msgid "Could not make a backup of the file %s"
-msgstr "Kunne ikke oprette en sikkerhedskopi af filen %s"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:42
+#: ../src/report/standard-reports/transaction.scm:763
+#: ../src/report/standard-reports/transaction.scm:818
+msgid "Sort by description."
+msgstr "Sorter efter beskrivelse."
-#: ../src/gnome-utils/gnc-file.c:394
-#, c-format
-msgid "Could not write to file %s. Check that you have permission to write to this file and that there is sufficient space to create it."
-msgstr "Kunne ikke skrive til filen %s. Undersøg om du har rettigheder til at skrive til denne fil og at der er nok ledig diskplads til at oprette den."
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:43
+msgid "_Action"
+msgstr "H_andling"
-#: ../src/gnome-utils/gnc-file.c:401
-#, c-format
-msgid "No read permission to read from file %s."
-msgstr "Ingen læserettighed til at læse fra fil %s."
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:44
+msgid "Sort by action field."
+msgstr "Sorter efter præcis indtastningsfelt."
-#. Translators: the first %s is a path in the filesystem,
-#. * the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: ../src/gnome-utils/gnc-file.c:409
-#, c-format
-msgid ""
-"You attempted to save in\n"
-"%s\n"
-"or a subdirectory thereof. This is not allowed as %s reserves that directory for internal use.\n"
-"\n"
-"Please try again in a different directory."
-msgstr ""
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:45
+msgid "_Notes"
+msgstr "_Bemærkninger"
-#: ../src/gnome-utils/gnc-file.c:416
-#, fuzzy
-msgid "This database is from an older version of GnuCash. Select OK to upgrade it to the current version, Cancel to mark it read-only."
-msgstr "Denne database er fra en ældre version af GnuCash. Vil du opgradere databasen til den nuværende version?"
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:46
+msgid "Sort by notes field."
+msgstr "Sorter efter bemærkningsfelt."
-#: ../src/gnome-utils/gnc-file.c:425
-msgid "This database is from a newer version of GnuCash. This version can read it, but cannot safely save to it. It will be marked read-only until you do File>Save As, but data may be lost in writing to the old version."
-msgstr ""
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:47
+msgid "Sa_ve Sort Order"
+msgstr "_Gem sorteringsrækkefølge"
-#: ../src/gnome-utils/gnc-file.c:434
-msgid "The SQL database is in use by other users, and the upgrade cannot be performed until they logoff. If there are currently no other users, consult the documentation to learn how to clear out dangling login sessions."
-msgstr "SQL-databasen er i brug af andre brugere, og opgraderingen kan ikke udføres før de er logget ud. Hvis der ikke er nogen brugere nu, så se i dokumentationen for at finde ud af hvordan man fjerner hængende logind-sessioner."
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:48
+msgid "Save the sort order for this register."
+msgstr "Rediger sorteringsrækkefølgen for denne kassekladde."
-#: ../src/gnome-utils/gnc-file.c:444
-msgid "The library \"libdbi\" installed on your system doesn't correctly store large numbers. This means GnuCash cannot use SQL databases correctly. Gnucash will not open or save to SQL databases until this is fixed by installing a different version of \"libdbi\". Please see https://bugzilla.gnome.org/show_bug.cgi?id=611936 for more information."
-msgstr ""
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:49
+msgid "Reverse Order"
+msgstr "Omvendt rækkefølge"
-#: ../src/gnome-utils/gnc-file.c:456
-msgid "GnuCash could not complete a critical test for the presence of a bug in the \"libdbi\" library. This may be caused by a permissions misconfiguration of your SQL database. Please see https://bugzilla.gnome.org/show_bug.cgi?id=645216 for more information."
-msgstr ""
+#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:50
+msgid "Sort in descending order."
+msgstr "Sorter i faldende rækkefølge."
-#: ../src/gnome-utils/gnc-file.c:466
-msgid "This file is from an older version of GnuCash and will be upgraded when saved by this version. You will not be able to read the saved file from the older version of Gnucash (it will report an \"error parsing the file\"). If you wish to preserve the old version, exit without saving."
-msgstr ""
+#: ../src/gnome/gtkbuilder/window-autoclear.glade.h:1
+msgid "<b>Auto-Clear Information</b>"
+msgstr "<b>Ryd automatisk information</b>"
-#: ../src/gnome-utils/gnc-file.c:477
-#, c-format
-msgid "An unknown I/O error (%d) occurred."
-msgstr "Der opstod en ukendt I/O-fejl (%d)."
+#: ../src/gnome/gtkbuilder/window-autoclear.glade.h:2
+#: ../src/gnome/gtkbuilder/window-reconcile.glade.h:4
+msgid "_Ending Balance:"
+msgstr "_Slutsaldo:"
-#: ../src/gnome-utils/gnc-file.c:573
-msgid "Save changes to the file?"
-msgstr "Gem ændringer til filen?"
+#: ../src/gnome/gtkbuilder/window-reconcile.glade.h:1
+msgid "<b>Reconcile Information</b>"
+msgstr "<b>Afstemningsinformation</b>"
-#: ../src/gnome-utils/gnc-file.c:586
-#: ../src/gnome-utils/gnc-main-window.c:1252
-#, fuzzy, c-format
-msgid "If you don't save, changes from the past %d minute will be discarded."
-msgid_plural "If you don't save, changes from the past %d minutes will be discarded."
-msgstr[0] "Hvis du ikke gemmer, vil ændringer fra de sidste %d minutter gå tabt."
-msgstr[1] "Hvis du ikke gemmer, vil ændringer fra de sidste %d minutter gå tabt."
+#: ../src/gnome/gtkbuilder/window-reconcile.glade.h:2
+msgid "Statement _Date:"
+msgstr "Udskrifts_dato:"
-#: ../src/gnome-utils/gnc-file.c:590
-msgid "Continue _Without Saving"
-msgstr "Fortsæt _uden at gemme"
+#. starting balance title/value
+#: ../src/gnome/gtkbuilder/window-reconcile.glade.h:3
+#: ../src/gnome/window-reconcile2.c:1810 ../src/gnome/window-reconcile.c:1810
+msgid "Starting Balance:"
+msgstr "Startsaldo:"
-#: ../src/gnome-utils/gnc-file.c:747
-#, c-format
-msgid "GnuCash could not obtain the lock for %s."
-msgstr "GnuCash kunne ikke hente låsen for %s."
+#: ../src/gnome/gtkbuilder/window-reconcile.glade.h:5
+msgid "Include _subaccounts"
+msgstr "Inkluder _underkonti"
-#: ../src/gnome-utils/gnc-file.c:749
-msgid "That database may be in use by another user, in which case you should not open the database. What would you like to do?"
-msgstr "Denne database kan være i brug af en anden bruger. I så fald bør du ikke åbne databasen. Hvad ønsker du at gøre?"
+#: ../src/gnome/gtkbuilder/window-reconcile.glade.h:6
+#: ../src/gnome/window-reconcile2.c:762 ../src/gnome/window-reconcile.c:762
+msgid "Enter _Interest Payment..."
+msgstr "Indtast rentebetal_ing ..."
-#: ../src/gnome-utils/gnc-file.c:752
-msgid "That database may be on a read-only file system, or you may not have write permission for the directory. If you proceed you may not be able to save any changes. What would you like to do?"
-msgstr "Databasen befinder sig måske på et skrivebeskyttet filsystem, eller du har måske ikke skriverettigheder til mappen. Hvis du fortsætter, vil du ikke kunne gemme ændringer. Hvad ønsker du at gøre?"
+#: ../src/gnome/reconcile-view.c:368
+#: ../src/register/ledger-core/split-register-layout.c:671
+#: ../src/register/ledger-core/split-register-model.c:303
+msgid "Reconciled:R"
+msgstr "Reconciled:A"
-#: ../src/gnome-utils/gnc-file.c:778
-msgid "_Open Read-Only"
-msgstr ""
+#: ../src/gnome-search/dialog-search.c:239
+msgid "You must select an item from the list"
+msgstr "Du skal vælge en vare fra listen"
-#: ../src/gnome-utils/gnc-file.c:780
-msgid "_Create New File"
-msgstr "_Opret ny fil"
+#: ../src/gnome-search/dialog-search.c:351
+#: ../src/gnome-utils/gnc-cell-renderer-date.c:170
+msgid "Select"
+msgstr "Vælg"
-#: ../src/gnome-utils/gnc-file.c:782
+#: ../src/gnome-search/dialog-search.c:1077
#, fuzzy
-msgid "Open _Anyway"
-msgstr "_Ã
bn alligevel"
+#| msgid "Order ID"
+msgid "Order"
+msgstr "Ordre-id"
-#. try to load once again
-#: ../src/gnome-utils/gnc-file.c:866
-#: ../src/gnome-utils/gnc-file.c:886
-msgid "Loading user data..."
-msgstr "Indlæser brugerdata ..."
+#: ../src/gnome-search/dialog-search.c:1083
+msgid "New Transaction"
+msgstr "Ny transaktion"
-#: ../src/gnome-utils/gnc-file.c:902
-msgid "Re-saving user data..."
-msgstr "Gemmer brugerdata igen ..."
+#: ../src/gnome-search/dialog-search.c:1087
+msgid "New Split"
+msgstr "Ny opdeling"
+
+#: ../src/gnome-search/dialog-search.c:1096
+msgid "Item represents an unknown object type (in the sense of bill, customer, invoice, transaction, split,...)|New item"
+msgstr ""
+
+#: ../src/gnome-search/dialog-search.c:1145
+msgid "all criteria are met"
+msgstr "alle kriterier er opfyldt"
-#: ../src/gnome-utils/gnc-file.c:1183
-#: ../src/gnome-utils/gnc-file.c:1424
-#: ../src/import-export/csv-exp/assistant-csv-export.c:124
-#: ../src/report/report-gnome/gnc-plugin-page-report.c:1456
-#, c-format
-msgid "The file %s already exists. Are you sure you want to overwrite it?"
-msgstr "Filen %s eksisterer allerede. Er du sikker på, at du vil overskrive den?"
+#: ../src/gnome-search/dialog-search.c:1146
+msgid "any criteria are met"
+msgstr "ethvert kriterie er opfyldt"
-#: ../src/gnome-utils/gnc-file.c:1212
-msgid "Exporting file..."
-msgstr "Eksporterer fil ..."
+#: ../src/gnome-search/dialog-search.glade.h:1
+msgid "_New item..."
+msgstr "_Ny post ..."
-#. %s is the strerror(3) error string of the error that occurred.
-#: ../src/gnome-utils/gnc-file.c:1225
-#, c-format
-msgid ""
-"There was an error saving the file.\n"
-"\n"
-"%s"
-msgstr ""
-"Der opstod en fejl under gemning af filen.\n"
-"\n"
-"%s"
+#: ../src/gnome-search/dialog-search.glade.h:2
+msgid "()"
+msgstr "()"
-#: ../src/gnome-utils/gnc-file.c:1257
-#, fuzzy
-msgid "The database was opened read-only. Do you want to save it to a different place?"
-msgstr "Databasen %s lader ikke til at eksistere. Vil du oprette den?"
+#: ../src/gnome-search/dialog-search.glade.h:3
+msgid " Search "
+msgstr " Søg "
-#: ../src/gnome-utils/gnc-general-select.c:218
-msgid "View..."
-msgstr "Vis..."
+#: ../src/gnome-search/dialog-search.glade.h:4
+msgid "Search for items where"
+msgstr "Søg for poster hvor"
-#: ../src/gnome-utils/gnc-gnome-utils.c:236
-#, fuzzy
-msgid "GnuCash could not find the files for the help documentation. This is likely because the 'gnucash-docs' package is not installed"
-msgstr "GnuCash kunne ikke finde filerne med dokumentationen. Det skyldes sikkert at pakken 'gnucash-docs' ikke er installeret."
+#: ../src/gnome-search/dialog-search.glade.h:5
+msgid "<b>Match all entries</b>"
+msgstr "<b>Matcher alle poster</b>"
-#: ../src/gnome-utils/gnc-gnome-utils.c:329
-#: ../src/gnome-utils/gnc-gnome-utils.c:391
-#, fuzzy
-msgid "GnuCash could not find the files for the help documentation. This is likely because the 'gnucash-docs' package is not installed."
-msgstr "GnuCash kunne ikke finde filerne med dokumentationen. Det skyldes sikkert at pakken 'gnucash-docs' ikke er installeret."
+#: ../src/gnome-search/dialog-search.glade.h:6
+msgid "Search Criteria"
+msgstr "Søgekriterie"
-#: ../src/gnome-utils/gnc-gnome-utils.c:360
-msgid "GnuCash could not find the files for the help documentation."
-msgstr "GnuCash kunne ikke finde filerne med dokumentationen."
+#: ../src/gnome-search/dialog-search.glade.h:7
+msgid "New search"
+msgstr "Ny søgning"
-#: ../src/gnome-utils/gnc-gnome-utils.c:415
-#: ../src/gnome-utils/gnc-gnome-utils.c:440
-#, fuzzy
-msgid "GnuCash could not find the associated file."
-msgstr "GnuCash kunne ikke hente låsen for %s."
+#: ../src/gnome-search/dialog-search.glade.h:8
+msgid "Refine current search"
+msgstr "Raffiner nuværende søgning"
-#: ../src/gnome-utils/gnc-gnome-utils.c:466
-#, fuzzy
-msgid "GnuCash could not open the associated URI:"
-msgstr "GnuCash kunne ikke hente låsen for %s."
+#: ../src/gnome-search/dialog-search.glade.h:9
+msgid "Add results to current search"
+msgstr "Tilføj resultater til nuværende søgning"
-#: ../src/gnome-utils/gnc-icons.c:19
-msgid "_Delete Account"
-msgstr "_Slet konto"
+#: ../src/gnome-search/dialog-search.glade.h:10
+msgid "Delete results from current search"
+msgstr "Slet resultater fra nuværende søgning"
-#: ../src/gnome-utils/gnc-icons.c:20
-#: ../src/gnome/window-reconcile2.c:2179
-#: ../src/gnome/window-reconcile.c:2179
-msgid "_Edit Account"
-msgstr "_Redigér konto"
+#: ../src/gnome-search/dialog-search.glade.h:11
+msgid "Search only active data"
+msgstr "Søg kun i aktive data"
-#: ../src/gnome-utils/gnc-icons.c:21
-msgid "_New Account"
-msgstr "_Ny konto"
+#: ../src/gnome-search/dialog-search.glade.h:12
+msgid "Choose whether to search all your data or only that marked as \"active\"."
+msgstr "Vælg om der skal søges i alle dine data eller kun dem markeret som »aktive«."
-#: ../src/gnome-utils/gnc-icons.c:22
-#: ../src/gnome/window-reconcile2.c:2174
-#: ../src/gnome/window-reconcile.c:2174
-msgid "_Open Account"
-msgstr "_Ã
bn konto"
+#: ../src/gnome-search/dialog-search.glade.h:13
+msgid "Type of search"
+msgstr "Søgetype"
-#. Translators: %s is a path to a database or any other url,
-#. like mysql://user@server.somewhere/somedb, http://www.somequotes.com/thequotes
-#: ../src/gnome-utils/gnc-keyring.c:276
-#, c-format
-msgid "Enter a user name and password to connect to: %s"
-msgstr "Skriv dit brugernavn og adgangskode for at forbinde til: %s"
+#: ../src/gnome-search/search-account.c:175
+msgid "You have not selected any accounts"
+msgstr "Du har ikke valgt nogen konti"
-#: ../src/gnome-utils/gnc-main-window.c:123
-#, c-format
-msgid "Changes will be saved automatically in %u seconds"
-msgstr ""
+#: ../src/gnome-search/search-account.c:196
+msgid "matches all accounts"
+msgstr "matcher alle konti"
-#. Toplevel
-#: ../src/gnome-utils/gnc-main-window.c:259
-msgid "_File"
-msgstr "_Fil"
+#: ../src/gnome-search/search-account.c:201
+msgid "matches any account"
+msgstr "matcher enhver konto"
-#: ../src/gnome-utils/gnc-main-window.c:263
-msgid "Tra_nsaction"
-msgstr "Tra_nsaktion"
+#: ../src/gnome-search/search-account.c:202
+msgid "matches no accounts"
+msgstr "matcher ingen konti"
-#: ../src/gnome-utils/gnc-main-window.c:264
-msgid "_Reports"
-msgstr "_Rapporter"
+#: ../src/gnome-search/search-account.c:219
+#: ../src/report/standard-reports/cash-flow.scm:409
+msgid "Selected Accounts"
+msgstr "valgte konti"
-#: ../src/gnome-utils/gnc-main-window.c:265
-msgid "_Tools"
-msgstr "_Værktøj"
+#: ../src/gnome-search/search-account.c:220
+msgid "Choose Accounts"
+msgstr "Vælg konti"
-#: ../src/gnome-utils/gnc-main-window.c:266
-msgid "E_xtensions"
-msgstr "_Udvidelser"
+#. Create the label
+#: ../src/gnome-search/search-account.c:254
+msgid "Select Accounts to Match"
+msgstr "Vælg konti der skal findes"
-#: ../src/gnome-utils/gnc-main-window.c:267
-msgid "_Windows"
-msgstr "_Vinduer"
+#: ../src/gnome-search/search-account.c:258
+msgid "Select the Accounts to Compare"
+msgstr "Vælg konti der skal sammenlignes"
-#. Add the help button for the matcher
-#: ../src/gnome-utils/gnc-main-window.c:268
-#: ../src/gnome/window-reconcile2.c:2145
-#: ../src/gnome/window-reconcile2.c:2226
-#: ../src/gnome/window-reconcile.c:2145
-#: ../src/gnome/window-reconcile.c:2226
-#: ../src/import-export/csv-imp/assistant-csv-trans-import.c:1528
-msgid "_Help"
-msgstr "_Hjælp"
+#. Build and connect the toggle
+#: ../src/gnome-search/search-boolean.c:205
+msgid "set true"
+msgstr "sæt sand (true)"
-#: ../src/gnome-utils/gnc-main-window.c:275
-msgid "_Print..."
-msgstr "_Udskriv..."
+#: ../src/gnome-search/search-date.c:195
+msgid "is before"
+msgstr "er før"
-#: ../src/gnome-utils/gnc-main-window.c:276
-msgid "Print the currently active page"
-msgstr "Udskriv den aktuelle side"
+#: ../src/gnome-search/search-date.c:196
+msgid "is before or on"
+msgstr "er før eller på"
-#: ../src/gnome-utils/gnc-main-window.c:282
-msgid "Pa_ge Setup..."
-msgstr "Sideopsætnin_g..."
+#: ../src/gnome-search/search-date.c:197
+msgid "is on"
+msgstr "er på"
-#: ../src/gnome-utils/gnc-main-window.c:283
-msgid "Specify the page size and orientation for printing"
-msgstr "Angiv sidestørrelse og orientering for udskrivning"
+#: ../src/gnome-search/search-date.c:198
+msgid "is not on"
+msgstr "er ikke på"
-#: ../src/gnome-utils/gnc-main-window.c:287
-msgid "Proper_ties"
-msgstr "Ege_nskaber"
+#: ../src/gnome-search/search-date.c:199
+msgid "is after"
+msgstr "er efter"
-#: ../src/gnome-utils/gnc-main-window.c:288
-msgid "Edit the properties of the current file"
-msgstr "Rediger egenskaber på den nuværende fil"
+#: ../src/gnome-search/search-date.c:200
+msgid "is on or after"
+msgstr "er på eller efter"
-#: ../src/gnome-utils/gnc-main-window.c:292
-msgid "_Close"
-msgstr "L_uk"
+#: ../src/gnome-search/search-double.c:187
+#: ../src/gnome-search/search-int64.c:189
+#: ../src/gnome-search/search-numeric.c:220
+msgid "is less than"
+msgstr "er mindre end"
-#: ../src/gnome-utils/gnc-main-window.c:293
-msgid "Close the currently active page"
-msgstr "Luk den aktuelle side"
+#: ../src/gnome-search/search-double.c:188
+#: ../src/gnome-search/search-int64.c:190
+#: ../src/gnome-search/search-numeric.c:224
+msgid "is less than or equal to"
+msgstr "er mindre end eller lig med"
-#: ../src/gnome-utils/gnc-main-window.c:297
-msgid "_Quit"
-msgstr "_Afslut"
+#: ../src/gnome-search/search-double.c:189
+#: ../src/gnome-search/search-int64.c:191
+#: ../src/gnome-search/search-numeric.c:227
+msgid "equals"
+msgstr "svarer til"
-#: ../src/gnome-utils/gnc-main-window.c:298
-msgid "Quit this application"
-msgstr "Afslut programmet"
+#: ../src/gnome-search/search-double.c:190
+#: ../src/gnome-search/search-int64.c:192
+#: ../src/gnome-search/search-numeric.c:230
+msgid "does not equal"
+msgstr "svarer ikke til"
-#: ../src/gnome-utils/gnc-main-window.c:320
-msgid "Pr_eferences"
-msgstr "Indstilling_er"
+#: ../src/gnome-search/search-double.c:191
+#: ../src/gnome-search/search-int64.c:193
+#: ../src/gnome-search/search-numeric.c:233
+msgid "is greater than"
+msgstr "er større end"
-#: ../src/gnome-utils/gnc-main-window.c:321
-msgid "Edit the global preferences of GnuCash"
-msgstr "Rediger de globale indstillinger for GnuCash"
+#: ../src/gnome-search/search-double.c:192
+#: ../src/gnome-search/search-int64.c:194
+#: ../src/gnome-search/search-numeric.c:237
+msgid "is greater than or equal to"
+msgstr "er større end eller lig med"
-#: ../src/gnome-utils/gnc-main-window.c:329
-msgid "Select sorting criteria for this page view"
-msgstr "Vælg sorteringskriterie for denne sidevisning"
+#: ../src/gnome-search/search-numeric.c:220
+msgid "less than"
+msgstr "mindre end"
+
+#: ../src/gnome-search/search-numeric.c:223
+msgid "less than or equal to"
+msgstr "mindre end eller lig med"
-#: ../src/gnome-utils/gnc-main-window.c:333
-msgid "Select the account types that should be displayed."
-msgstr "Vis de kontotyper som skal vises."
+#: ../src/gnome-search/search-numeric.c:227
+msgid "equal to"
+msgstr "lig med"
-#. Actions menu
-#: ../src/gnome-utils/gnc-main-window.c:343
-#: ../src/gnome/window-reconcile2.c:2189
-#: ../src/gnome/window-reconcile.c:2189
-msgid "_Check & Repair"
-msgstr "_Tjek og reparer"
+#: ../src/gnome-search/search-numeric.c:230
+msgid "not equal to"
+msgstr "ikke lig med"
-#: ../src/gnome-utils/gnc-main-window.c:345
-msgid "Reset _Warnings..."
-msgstr "Nulstil ad_varsler..."
+#: ../src/gnome-search/search-numeric.c:233
+msgid "greater than"
+msgstr "større end"
-#: ../src/gnome-utils/gnc-main-window.c:346
-msgid "Reset the state of all warning messages so they will be shown again."
-msgstr "Nulstil status på alle advarselsbeskeder, så de vises igen."
+#: ../src/gnome-search/search-numeric.c:236
+msgid "greater than or equal to"
+msgstr "større end eller lig med"
-#: ../src/gnome-utils/gnc-main-window.c:350
-msgid "Re_name Page"
-msgstr "Omd_øb side"
+#: ../src/gnome-search/search-numeric.c:253
+msgid "has credits or debits"
+msgstr "har kredit- eller debetposter"
-#: ../src/gnome-utils/gnc-main-window.c:351
-msgid "Rename this page."
-msgstr "Omdøb denne side."
+#: ../src/gnome-search/search-numeric.c:254
+msgid "has debits"
+msgstr "har debetposter"
-#: ../src/gnome-utils/gnc-main-window.c:358
-msgid "_New Window"
-msgstr "_Nyt vindue"
+#: ../src/gnome-search/search-numeric.c:255
+msgid "has credits"
+msgstr "har kreditposter"
-#: ../src/gnome-utils/gnc-main-window.c:359
-msgid "Open a new top-level GnuCash window."
-msgstr "Ã
bn et nyt topniveauvindue for GnuCash."
+#. Build and connect the toggles
+#: ../src/gnome-search/search-reconciled.c:226
+msgid "Not Cleared"
+msgstr "Ikke slettet"
-#: ../src/gnome-utils/gnc-main-window.c:363
-msgid "New Window with _Page"
-msgstr "Nyt vindue med _side"
+#: ../src/gnome-search/search-reconciled.c:229
+#: ../src/gnome-utils/gnc-tree-view-account.c:796
+msgid "Cleared"
+msgstr "Slettet"
-#: ../src/gnome-utils/gnc-main-window.c:364
-msgid "Move the current page to a new top-level GnuCash window."
-msgstr "Flyt den aktuelle side til et nyt topniveauvindue for GnuCash."
+#: ../src/gnome-search/search-reconciled.c:232
+#: ../src/gnome-utils/gnc-tree-view-account.c:810
+msgid "Reconciled"
+msgstr "Afstemt"
-#: ../src/gnome-utils/gnc-main-window.c:371
-msgid "Tutorial and Concepts _Guide"
-msgstr "Eksempel- og begrebsvejledning"
+#: ../src/gnome-search/search-reconciled.c:235
+msgid "Frozen"
+msgstr "Frosset"
-#: ../src/gnome-utils/gnc-main-window.c:372
-msgid "Open the GnuCash Tutorial"
-msgstr "Ã
bn GnuCash-eksemplet"
+#: ../src/gnome-search/search-reconciled.c:238
+msgid "Voided"
+msgstr "Ugyldig"
-#: ../src/gnome-utils/gnc-main-window.c:376
-msgid "_Contents"
-msgstr "_Indhold"
+#: ../src/gnome-search/search-string.c:191
+msgid "You need to enter some search text."
+msgstr "Du skal indtaste en søgetekst."
-#: ../src/gnome-utils/gnc-main-window.c:377
-msgid "Open the GnuCash Help"
-msgstr "Ã
bn GnuCash-manualen"
+#: ../src/gnome-search/search-string.c:220
+#: ../src/import-export/csv-imp/csv-account-import.c:112
+#: ../src/plugins/bi_import/dialog-bi-import.c:122
+#: ../src/plugins/customer_import/dialog-customer-import.c:102
+#, c-format
+msgid ""
+"Error in regular expression '%s':\n"
+"%s"
+msgstr ""
+"Fejl i regulært udtryk »%s«:\n"
+"%s"
-#: ../src/gnome-utils/gnc-main-window.c:381
-msgid "_About"
-msgstr "_Om"
+#: ../src/gnome-search/search-string.c:264
+msgid "contains"
+msgstr "indholder"
-#: ../src/gnome-utils/gnc-main-window.c:382
-msgid "About GnuCash"
-msgstr "Om GnuCash"
+#: ../src/gnome-search/search-string.c:265
+msgid "matches regex"
+msgstr "matcher regulært udtryk"
-#: ../src/gnome-utils/gnc-main-window.c:394
-msgid "_Toolbar"
-msgstr "_Værktøjslinje"
+#: ../src/gnome-search/search-string.c:267
+msgid "does not match regex"
+msgstr "matcher ikke regulært udtryk"
-#: ../src/gnome-utils/gnc-main-window.c:395
-msgid "Show/hide the toolbar on this window"
-msgstr "Vis/skjul værktøjslinjen på dette vindue"
+#. Build and connect the case-sensitive check button; defaults to off
+#: ../src/gnome-search/search-string.c:329
+msgid "Match case"
+msgstr "Versalfølsom"
-#: ../src/gnome-utils/gnc-main-window.c:399
-msgid "Su_mmary Bar"
-msgstr "Resu_mebjælke"
+#: ../src/gnome/top-level.c:98
+#, c-format
+msgid "Entity Not Found: %s"
+msgstr "Entitet blev ikke fundet: %s"
-#: ../src/gnome-utils/gnc-main-window.c:400
-msgid "Show/hide the summary bar on this window"
-msgstr "Vis/skjul oversigtsbjælken på dette vindue"
+#: ../src/gnome/top-level.c:158
+#, c-format
+msgid "Transaction with no Accounts: %s"
+msgstr "Transaktion uden konti: %s"
-#: ../src/gnome-utils/gnc-main-window.c:404
-msgid "Stat_us Bar"
-msgstr "Stat_usbjælke"
+#: ../src/gnome/top-level.c:174
+#, c-format
+msgid "Unsupported entity type: %s"
+msgstr "Entitettype er ikke understøttet: %s"
-#: ../src/gnome-utils/gnc-main-window.c:405
-msgid "Show/hide the status bar on this window"
-msgstr "Vis/skjul statusbjælken på dette vindue"
+#: ../src/gnome/top-level.c:211
+#, c-format
+msgid "No such price: %s"
+msgstr "Ingen sådan pris: %s"
-#: ../src/gnome-utils/gnc-main-window.c:417
-msgid "Window _1"
-msgstr "Vindue _1"
+#: ../src/gnome-utils/assistant-xml-encoding.c:160
+msgid ""
+"\n"
+"The file you are trying to load is from an older version of GnuCash. The file format in the older versions was missing the detailed specification of the character encoding being used. This means the text in your data file could be read in multiple ambiguous ways. This ambiguity cannot be resolved automatically, but the new GnuCash 2.0.0 file format will include all necessary specifications so that you do not have to go through this step again.\n"
+"\n"
+"GnuCash will try to guess the correct character encoding for your data file. On the next page GnuCash will show the resulting texts when using this guess. You have to check whether the words look as expected. Either everything looks fine and you can simply press 'Forward'. Or the words contain unexpected characters, in which case you should select different character encodings to see different results. You may have to edit the list of character encodings by clicking on the respective button.\n"
+"\n"
+"Press 'Forward' now to select the correct character encoding for your data file.\n"
+msgstr ""
+"\n"
+"Filen du forsøger at indlæse er fra en ældre version af GnuCash. Filformatet i de ældre versioner manglede den detaljerede specifikation om den anvendte tegnkodning. Dette betyder, at tekst i dine datafiler kan læses på flere tvetydige måder. Denne tvetydighed kan ikke løses automatisk, men det nye GnuCash 2.0.0-filformat vil inkludere alle nødvendige specifikationer, så du ikke skal igennem dette trin igen.\n"
+"\n"
+"GnuCash vil forsøge at gætte det korrekt tegnformat for din datafil. På den næste side vil GnuCash vise teksten med dette gæt. Du skal kontrollere hvorvidt ordene ser ud som forventet. Enten ser alt fint ud og du kan trykke »Videre«. Eller også indeholder ordene uventede tegn og i dette tilfælde skal du vælge forskellige tegnkodninger for at se de forskellige resultater. Du skal måske redigere listen over tegnkodninger ved at klikke på den respektive knap.\n"
+"\n"
+"Tryk »Videre« nu for at vælge den korrekte tegnkodning for din datafil.\n"
-#: ../src/gnome-utils/gnc-main-window.c:418
-msgid "Window _2"
-msgstr "Vindue _2"
+#: ../src/gnome-utils/assistant-xml-encoding.c:180
+msgid "Ambiguous character encoding"
+msgstr "Tvetydig tegnkodning"
-#: ../src/gnome-utils/gnc-main-window.c:419
-msgid "Window _3"
-msgstr "Vindue _3"
+#: ../src/gnome-utils/assistant-xml-encoding.c:183
+msgid ""
+"The file has been loaded successfully. If you click 'Apply' it will be saved and reloaded into the main application. That way you will have a working file as backup in the same directory.\n"
+"\n"
+"You can also go back and verify your selections by clicking on 'Back'."
+msgstr ""
+"Filen er blevet indlæst med succes. Hvis du klikker »Anvend« vil den blive gemt og genindlæst i hovedprogrammet. På den måde har du en fungerende fil som sikkerhedskopi i den samme mappe.\n"
+"\n"
+"Du kan også gå tilbage og verificere dine valg ved at klikke på »Tilbage«."
-#: ../src/gnome-utils/gnc-main-window.c:420
-msgid "Window _4"
-msgstr "Vindue _4"
+#: ../src/gnome-utils/assistant-xml-encoding.c:206
+msgid "Unicode"
+msgstr "Unicode"
-#: ../src/gnome-utils/gnc-main-window.c:421
-msgid "Window _5"
-msgstr "Vindue _5"
+#: ../src/gnome-utils/assistant-xml-encoding.c:208
+msgid "European"
+msgstr "Europæisk"
-#: ../src/gnome-utils/gnc-main-window.c:422
-msgid "Window _6"
-msgstr "Vindue _6"
+#: ../src/gnome-utils/assistant-xml-encoding.c:209
+msgid "ISO-8859-1 (West European)"
+msgstr "ISO-8859-1 (Vesteuropæisk)"
-#: ../src/gnome-utils/gnc-main-window.c:423
-msgid "Window _7"
-msgstr "Vindue _7"
+#: ../src/gnome-utils/assistant-xml-encoding.c:210
+msgid "ISO-8859-2 (East European)"
+msgstr "ISO-8859-2 (Ãsteuropæisk)"
-#: ../src/gnome-utils/gnc-main-window.c:424
-msgid "Window _8"
-msgstr "Vindue _8"
+#: ../src/gnome-utils/assistant-xml-encoding.c:211
+msgid "ISO-8859-3 (South European)"
+msgstr "ISO-8859-3 (Sydeuropæisk)"
-#: ../src/gnome-utils/gnc-main-window.c:425
-msgid "Window _9"
-msgstr "Vindue _9"
+#: ../src/gnome-utils/assistant-xml-encoding.c:212
+msgid "ISO-8859-4 (North European)"
+msgstr "ISO-8859-4 (Nordeuropæisk)"
-#: ../src/gnome-utils/gnc-main-window.c:426
-msgid "Window _0"
-msgstr "Vindue _0"
+#: ../src/gnome-utils/assistant-xml-encoding.c:213
+msgid "ISO-8859-5 (Cyrillic)"
+msgstr "ISO-8859-5 (Kyrillisk)"
-#: ../src/gnome-utils/gnc-main-window.c:1207
-#, c-format
-msgid "Save changes to file %s before closing?"
-msgstr "Gem ændringer til fil %s før lukning?"
+#: ../src/gnome-utils/assistant-xml-encoding.c:214
+msgid "ISO-8859-6 (Arabic)"
+msgstr "ISO-8859-6 (Arabisk)"
-#: ../src/gnome-utils/gnc-main-window.c:1210
-#, c-format
-msgid "If you don't save, changes from the past %d hours and %d minutes will be discarded."
-msgstr "Hvis du ikke gemmer, vil ændringer fra de sidste %d timer og %d minutter blive slettet."
+#: ../src/gnome-utils/assistant-xml-encoding.c:215
+msgid "ISO-8859-7 (Greek)"
+msgstr "ISO-8859-7 (Græsk)"
-#: ../src/gnome-utils/gnc-main-window.c:1212
-#, c-format
-msgid "If you don't save, changes from the past %d days and %d hours will be discarded."
-msgstr "Hvis du ikke gemmer, vil ændringer fra de sidste %d dage og %d timer blive slettet."
+#: ../src/gnome-utils/assistant-xml-encoding.c:216
+msgid "ISO-8859-8 (Hebrew)"
+msgstr "ISO-8859-8 (Hebraisk)"
-#: ../src/gnome-utils/gnc-main-window.c:1220
-msgid "<unknown>"
-msgstr "<ukendt>"
+#: ../src/gnome-utils/assistant-xml-encoding.c:217
+msgid "ISO-8859-9 (Turkish)"
+msgstr "ISO-8859-9 (Tyrkisk)"
-#: ../src/gnome-utils/gnc-main-window.c:1257
-msgid "Close _Without Saving"
-msgstr "Luk _uden at gemme"
+#: ../src/gnome-utils/assistant-xml-encoding.c:218
+msgid "ISO-8859-10 (Nordic)"
+msgstr "ISO-8859-10 (Nordisk)"
-#. Translators: This string is shown in the window title if this
-#. document is, well, read-only.
-#: ../src/gnome-utils/gnc-main-window.c:1495
-msgid "(read-only)"
-msgstr ""
+#: ../src/gnome-utils/assistant-xml-encoding.c:219
+msgid "ISO-8859-11 (Thai)"
+msgstr "ISO-8859-11 (Thai)"
-#: ../src/gnome-utils/gnc-main-window.c:1503
-#, fuzzy
-msgid "Unsaved Book"
-msgstr "Luk"
+#: ../src/gnome-utils/assistant-xml-encoding.c:220
+msgid "ISO-8859-13 (Baltic)"
+msgstr "ISO-8859-13 (Baltisk)"
-#: ../src/gnome-utils/gnc-main-window.c:1669
-msgid "Last modified on %a, %b %e, %Y at %I:%M%P"
-msgstr ""
+#: ../src/gnome-utils/assistant-xml-encoding.c:221
+msgid "ISO-8859-14 (Celtic)"
+msgstr "ISO-8859-14 (Keltisk)"
-#: ../src/gnome-utils/gnc-main-window.c:1670
-msgid "Last modified on %a, %b %e, %Y at %H:%M"
-msgstr ""
+#: ../src/gnome-utils/assistant-xml-encoding.c:222
+msgid "ISO-8859-15 (West European, Euro sign)"
+msgstr "ISO-8859-15 (Vesteuropæisk, Euro-tegn)"
-#. g_warning("got time %ld, str=%s\n", mtime, time_string);
-#. Translators: This message appears in the status bar after opening the file.
-#: ../src/gnome-utils/gnc-main-window.c:1676
-#, fuzzy, c-format
-msgid "File %s opened. %s"
-msgstr "Kunne ikke åbne fil."
+#: ../src/gnome-utils/assistant-xml-encoding.c:223
+msgid "ISO-8859-16 (South-East European)"
+msgstr "ISO-8859-16 (Sydøsteuropæisk)"
-#: ../src/gnome-utils/gnc-main-window.c:2700
-msgid "Unable to save to database."
-msgstr ""
+#: ../src/gnome-utils/assistant-xml-encoding.c:224
+msgid "Cyrillic"
+msgstr "Kyrillisk"
-#: ../src/gnome-utils/gnc-main-window.c:2702
-msgid "Unable to save to database: Book is marked read-only."
-msgstr ""
+#: ../src/gnome-utils/assistant-xml-encoding.c:225
+msgid "KOI8-R (Russian)"
+msgstr "KOI8-R (Russisk)"
-#: ../src/gnome-utils/gnc-main-window.c:3991
-#, fuzzy
-msgid "Book Options"
-msgstr "Sand-falsk valgmulighed"
+#: ../src/gnome-utils/assistant-xml-encoding.c:226
+msgid "KOI8-U (Ukrainian)"
+msgstr "KOI8-U (Ukrainsk)"
-#: ../src/gnome-utils/gnc-main-window.c:4377
-msgid "The GnuCash personal finance manager. The GNU way to manage your money!"
-msgstr "GnuCashs personlige økonomiværktøj. En GNU måde at håndtere dine penge på!"
+#: ../src/gnome-utils/assistant-xml-encoding.c:664
+#, c-format
+msgid "There are %d unassigned and %d undecodable words. Please add encodings."
+msgstr "Der er %d uregistrerede ord og %d ord der ikke kan afkodes. Tilføj venligst kodninger."
-#: ../src/gnome-utils/gnc-main-window.c:4379
-msgid "© 1997-2014 Contributors"
-msgstr ""
+#: ../src/gnome-utils/assistant-xml-encoding.c:672
+#, c-format
+msgid "There are %d unassigned words. Please decide on them or add encodings."
+msgstr "Der er %d uregistrerede ord. Foretag en beslutning vedrørende dem eller tilføj kodninger."
-#. Translators: the following string will be shown in Help->About->Credits
-#. * Enter your name or that of your team and an email contact for feedback.
-#. * The string can have multiple rows, so you can also add a list of
-#. * contributors.
-#: ../src/gnome-utils/gnc-main-window.c:4416
-msgid "translator_credits"
-msgstr ""
-"Kenneth Christiansen, 2000.\n"
-"Keld Simonsen, 2000-2002.\n"
-"Johnny Ernst Nielsen, 2001.\n"
-"Claus Hindsgaul, 2001.\n"
-"Ole Laursen, 2001.\n"
-"Joe Hansen, 2009.\n"
-"\n"
-"Dansk-gruppen <dansk at dansk-gruppen.dk>\n"
-"Mere info: http://www.dansk-gruppen.dk"
+#: ../src/gnome-utils/assistant-xml-encoding.c:683
+#, c-format
+msgid "There are %d undecodable words. Please add encodings."
+msgstr "Der er %d ord, der ikke kan afkodes. Tilføj kodninger."
-#. src/app-utils/date-utilities.scm
-#: ../src/gnome-utils/gnc-period-select.c:71
-#: ../intl-scm/guile-strings.c:156
-msgid "Start of this month"
-msgstr "Starten af denne måned"
+#. Translators: Please insert encodings here that are typically used in your
+#. * locale, separated by spaces. No need for ASCII or UTF-8, check `locale -m`
+#. * for assistance with spelling.
+#: ../src/gnome-utils/assistant-xml-encoding.c:992
+msgid "ISO-8859-1 KOI8-U"
+msgstr "ISO-8859-1 ISO-8859-4 ISO-8859-15"
-#. src/app-utils/date-utilities.scm
-#: ../src/gnome-utils/gnc-period-select.c:72
-#: ../intl-scm/guile-strings.c:164
-msgid "Start of previous month"
-msgstr "Starten af forrige måned"
+#. another error, cannot handle this here
+#: ../src/gnome-utils/assistant-xml-encoding.c:1071
+#: ../src/gnome-utils/assistant-xml-encoding.c:1091
+msgid "The file could not be reopened."
+msgstr "Filen kunne ikke genåbnes."
-#: ../src/gnome-utils/gnc-period-select.c:73
-msgid "Start of this quarter"
-msgstr "Starten af dette kvartal"
+#: ../src/gnome-utils/assistant-xml-encoding.c:1076
+msgid "Reading file..."
+msgstr "Læser fil ..."
-#. src/app-utils/date-utilities.scm
-#: ../src/gnome-utils/gnc-period-select.c:74
-#: ../intl-scm/guile-strings.c:188
-msgid "Start of previous quarter"
-msgstr "Start af forrige kvartal"
+#: ../src/gnome-utils/assistant-xml-encoding.c:1099
+msgid "Parsing file..."
+msgstr "Fortolker fil ..."
-#. src/app-utils/date-utilities.scm
-#: ../src/gnome-utils/gnc-period-select.c:75
-#: ../intl-scm/guile-strings.c:124
-msgid "Start of this year"
-msgstr "Starten af dette år"
+#: ../src/gnome-utils/assistant-xml-encoding.c:1106
+msgid "There was an error parsing the file."
+msgstr "Der opstod en fejl under fortolkning af filen."
-#. src/app-utils/date-utilities.scm
-#: ../src/gnome-utils/gnc-period-select.c:76
-#: ../intl-scm/guile-strings.c:132
-msgid "Start of previous year"
-msgstr "Starten af forrige år"
+#: ../src/gnome-utils/assistant-xml-encoding.c:1131
+#: ../src/gnome-utils/gnc-file.c:1269 ../src/gnome-utils/gnc-file.c:1509
+msgid "Writing file..."
+msgstr "Skriver fil ..."
-#. FY Strings
-#: ../src/gnome-utils/gnc-period-select.c:79
-#, fuzzy
-msgid "Start of this accounting period"
-msgstr "Rapportperiodes start"
+#: ../src/gnome-utils/assistant-xml-encoding.c:1286
+msgid "This encoding has been added to the list already."
+msgstr "Denne kodning er allerede blevet tilføjet listen."
-#: ../src/gnome-utils/gnc-period-select.c:80
-#, fuzzy
-msgid "Start of previous accounting period"
-msgstr "Starten på forrige kvartalsmæssige regnskabsperiode"
+#: ../src/gnome-utils/assistant-xml-encoding.c:1297
+msgid "This is an invalid encoding."
+msgstr "Dette er en ugyldig kodning."
-#. src/app-utils/date-utilities.scm
-#: ../src/gnome-utils/gnc-period-select.c:87
-#: ../intl-scm/guile-strings.c:160
-msgid "End of this month"
-msgstr "Slutningen af denne måned"
+#: ../src/gnome-utils/dialog-account.c:467
+msgid "Could not create opening balance."
+msgstr "Kunne ikke oprette åbningssaldo"
-#. src/app-utils/date-utilities.scm
-#: ../src/gnome-utils/gnc-period-select.c:88
-#: ../intl-scm/guile-strings.c:168
-msgid "End of previous month"
-msgstr "Slutningen af forrige måned"
+#. primary label
+#: ../src/gnome-utils/dialog-account.c:661
+msgid "Give the children the same type?"
+msgstr "Giv underkonti samme type?"
-#: ../src/gnome-utils/gnc-period-select.c:89
-msgid "End of this quarter"
-msgstr "Slutningen af dette kvartal"
+#. secondary label
+#: ../src/gnome-utils/dialog-account.c:679
+#, c-format
+msgid "The children of the edited account have to be changed to type \"%s\" to make them compatible."
+msgstr "Underkonti for den redigerede konto er blevet ændret til type »%s« for at gøre dem kompatible."
-#. src/app-utils/date-utilities.scm
-#: ../src/gnome-utils/gnc-period-select.c:90
-#: ../intl-scm/guile-strings.c:192
-msgid "End of previous quarter"
-msgstr "Slutningen af forrige kvartal"
+#. children
+#: ../src/gnome-utils/dialog-account.c:690
+msgid "_Show children accounts"
+msgstr "_Vis underkonti"
-#. src/app-utils/date-utilities.scm
-#: ../src/gnome-utils/gnc-period-select.c:91
-#: ../intl-scm/guile-strings.c:128
-msgid "End of this year"
-msgstr "Slutning af dette år"
+#: ../src/gnome-utils/dialog-account.c:763
+msgid "The account must be given a name."
+msgstr "Kontoen skal have et navn."
-#. src/app-utils/date-utilities.scm
-#: ../src/gnome-utils/gnc-period-select.c:92
-#: ../intl-scm/guile-strings.c:136
-msgid "End of previous year"
-msgstr "Slutningen af forrige år"
+#: ../src/gnome-utils/dialog-account.c:789
+msgid "There is already an account with that name."
+msgstr "Der er allerede en konto med det navn."
-#. FY Strings
-#: ../src/gnome-utils/gnc-period-select.c:95
-#, fuzzy
-msgid "End of this accounting period"
-msgstr "Slutningen af forrige kvartalsmæssige regnskabsperiode"
+#: ../src/gnome-utils/dialog-account.c:798
+msgid "You must choose a valid parent account."
+msgstr "Du skal vælge en gyldig samlekonto."
-#: ../src/gnome-utils/gnc-period-select.c:96
-#, fuzzy
-msgid "End of previous accounting period"
-msgstr "Slutningen af forrige kvartalsmæssige regnskabsperiode"
+#: ../src/gnome-utils/dialog-account.c:807
+msgid "You must select an account type."
+msgstr "Du skal vælge en kontotype."
-#. Development version
-#. Translators: 1st %s is the GnuCash version (eg 2.4.11);
-#. 2nd %s is the scm type (svn/svk/git/bzr);
-#. 3rd %s is the scm revision number;
-#. 4th %s is the build date
-#: ../src/gnome-utils/gnc-splash.c:95
-#, fuzzy, c-format
-msgid "Version: GnuCash-%s %s (rev %s built %s)"
-msgstr "Version: GnuCash-%s svn (r%s version %s)"
+#: ../src/gnome-utils/dialog-account.c:816
+msgid "The selected account type is incompatible with the one of the selected parent."
+msgstr "Den valgte kontotype er ikke kompatibel med en af de valgte overkonti."
-#. Dist Tarball
-#. Translators: 1st %s is the GnuCash version (eg 2.4.11);
-#. 2nd %s is the scm (svn/svk/git/bzr) revision number;
-#. 3rd %s is the build date
-#: ../src/gnome-utils/gnc-splash.c:103
-#, fuzzy, c-format
-msgid "Version: GnuCash-%s (rev %s built %s)"
-msgstr "Version: GnuCash-%s (r%s version %s)"
+#: ../src/gnome-utils/dialog-account.c:828
+msgid "You must choose a commodity."
+msgstr "Du skal vælge en vare."
-#: ../src/gnome-utils/gnc-splash.c:120
-msgid "Loading..."
-msgstr "Indlæser..."
+#: ../src/gnome-utils/dialog-account.c:884
+msgid "You must enter a valid opening balance or leave it blank."
+msgstr "Du skal angive en gyldig åbningssaldo eller lade den være tom."
-#: ../src/gnome-utils/gnc-sx-list-tree-model-adapter.c:490
-#, fuzzy
-msgid "never"
-msgstr "(aldrig)"
+#: ../src/gnome-utils/dialog-account.c:908
+msgid "You must select a transfer account or choose the opening balances equity account."
+msgstr "Du skal vælge en overførselskonto eller vælge åbningssaldoens udligningskonto."
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:113
-msgid "You can not change this transaction, the Book or Register is set to Read Only."
-msgstr ""
+#: ../src/gnome-utils/dialog-account.c:1458
+msgid "Edit Account"
+msgstr "Redigér konto"
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:131
-#, fuzzy
-msgid "Save Transaction before proceeding?"
-msgstr "Gem transaktion før kopiering?"
+#: ../src/gnome-utils/dialog-account.c:1461
+#, c-format
+msgid "(%d) New Accounts"
+msgstr "(%d) Nye konti"
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:133
-#, fuzzy
-msgid "The current transaction has been changed. Would you like to record the changes before proceeding, or cancel?"
-msgstr "Den aktuelle transaktion er blevet ændret. Vil du gemme ændringerne før kopiering af denne post, eller afbryde kopieringen?"
+#: ../src/gnome-utils/dialog-account.c:1471
+#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:9
+msgid "New Account"
+msgstr "Ny konto"
+
+#: ../src/gnome-utils/dialog-account.c:2024
+#, c-format
+msgid "Renumber the immediate sub-accounts of %s? This will replace the account code field of each child account with a newly generated code."
+msgstr "Omdøb de umiddelbare underkonti for %s? Dette vil erstatte feltet med kontokoden for hver underkonto med en nyoprettet kode."
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:185
-msgid "This transaction is being edited in a different register."
+#: ../src/gnome-utils/dialog-book-close.c:301
+msgid "Please select an Equity account to hold the total Period Income."
msgstr ""
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:205
-#: ../src/register/ledger-core/split-register-control.c:58
-msgid "Rebalance Transaction"
-msgstr "Genbalancér transaktion"
+#: ../src/gnome-utils/dialog-book-close.c:308
+msgid "Please select an Equity account to hold the total Period Expense."
+msgstr ""
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:206
-#: ../src/register/ledger-core/split-register-control.c:59
-msgid "The current transaction is not balanced."
-msgstr "Den nuværende transaktion balancerer ikke."
+#: ../src/gnome-utils/dialog-commodity.c:174
+msgid ""
+"\n"
+"Please select a commodity to match:"
+msgstr ""
+"\n"
+"Vælg venligst varen at matche:"
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:287
-#: ../src/register/ledger-core/split-register-control.c:137
-#, fuzzy
-msgid "Balance it _manually"
-msgstr "Balancér den manuelt"
+#: ../src/gnome-utils/dialog-commodity.c:181
+msgid ""
+"\n"
+"Commodity: "
+msgstr ""
+"\n"
+"Vare: "
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:289
-#: ../src/register/ledger-core/split-register-control.c:139
-#, fuzzy
-msgid "Let GnuCash _add an adjusting split"
-msgstr "Lad GnuCash tilføje en justerende opdeling"
+# http://en.wikipedia.org/wiki/CUSIP ved ikke rigtig om vi har en sådan!
+#
+#. Translators: Replace here and later CUSIP by the name of your local
+#. National Securities Identifying Number
+#. like gb:SEDOL, de:WKN, ch:Valorennummer, fr:SICOVAM ...
+#. See http://en.wikipedia.org/wiki/ISIN for hints.
+#: ../src/gnome-utils/dialog-commodity.c:187
+msgid ""
+"\n"
+"Exchange code (ISIN, CUSIP or similar): "
+msgstr ""
+"\n"
+"Udvekslingskode (ISIN, CUSIP eller lignende): "
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:294
-#: ../src/register/ledger-core/split-register-control.c:144
-#, fuzzy
-msgid "Adjust current account _split total"
-msgstr "Justér aktuel konto-opdelingstotal"
+#: ../src/gnome-utils/dialog-commodity.c:189
+msgid ""
+"\n"
+"Mnemonic (Ticker symbol or similar): "
+msgstr ""
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:300
-#: ../src/register/ledger-core/split-register-control.c:150
-#, fuzzy
-msgid "Adjust _other account split total"
-msgstr "Justér anden konto-opdeling"
+#: ../src/gnome-utils/dialog-commodity.c:284
+msgid "Select security/currency"
+msgstr "Vælg værdipapir/valuta"
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:311
-#: ../src/register/ledger-core/split-register-control.c:161
-#, fuzzy
-msgid "_Rebalance"
-msgstr "Ubalance"
+#: ../src/gnome-utils/dialog-commodity.c:285
+#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:14
+msgid "_Security/currency:"
+msgstr "_Værdipapir/valuta:"
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:405
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:413
-#: ../src/register/ledger-core/split-register-control.c:1317
-#: ../src/register/ledger-core/split-register-control.c:1330
-msgid "This register does not support editing exchange rates."
-msgstr ""
+#: ../src/gnome-utils/dialog-commodity.c:288
+msgid "Select security"
+msgstr "Vælg værdipapir"
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:421
-#: ../src/register/ledger-core/split-register-control.c:1371
-#: ../src/register/ledger-core/split-register-control.c:1446
-msgid "You need to expand the transaction in order to modify its exchange rates."
-msgstr ""
+#: ../src/gnome-utils/dialog-commodity.c:293
+msgid "Select currency"
+msgstr "Vælg valuta"
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:461
-#: ../src/register/ledger-core/split-register-control.c:1418
-#: ../src/register/ledger-core/split-register-control.c:1431
-msgid "The two currencies involved equal each other."
-msgstr ""
+#: ../src/gnome-utils/dialog-commodity.c:546
+msgid "You must select a commodity. To create a new one, click \"New\""
+msgstr "Du skal vælge en vare. Tryk »Ny« for at oprette en ny."
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1256
-#: ../src/register/ledger-core/split-register.c:507
-msgid "New Split Information"
-msgstr "Ny opdelingsinformation"
+#: ../src/gnome-utils/dialog-commodity.c:913
+msgid "Use local time"
+msgstr "Brug lokal tid"
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1306
-msgid "This is the split anchoring this transaction to the register. You can not duplicate it from this register window."
-msgstr ""
+#: ../src/gnome-utils/dialog-commodity.c:1042
+msgid "Edit currency"
+msgstr "Rediger valuta"
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1359
-#: ../src/gnome-utils/gnc-tree-util-split-reg.c:501
-#: ../src/register/ledger-core/split-register.c:609
-#: ../src/register/register-gnome/datecell-gnome.c:104
-msgid "Cannot store a transaction at this date"
-msgstr "Kan ikke lagre en transakton på denne dato"
+#: ../src/gnome-utils/dialog-commodity.c:1043
+msgid "Currency Information"
+msgstr "Valutainformation"
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1361
-#: ../src/register/ledger-core/split-register.c:611
-msgid "The entered date of the duplicated transaction is older than the \"Read-Only Threshold\" set for this book. This setting can be changed in File -> Properties -> Accounts."
-msgstr ""
+#: ../src/gnome-utils/dialog-commodity.c:1048
+msgid "Edit security"
+msgstr "Rediger værdipapir"
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1725
-msgid "Not enough information for Blank Transaction?"
-msgstr "Ikke nok information for tom transaktion?"
+#: ../src/gnome-utils/dialog-commodity.c:1048
+msgid "New security"
+msgstr "Nyt værdipapir"
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1727
-#, fuzzy
-msgid "The blank transaction does not have enough information to save it. Would you like to return to the transaction to update, or cancel the save?"
-msgstr "Den aktuelle transaktion er blevet ændret. Vil du gemme ændringerne før kopiering af transaktionen, eller afbryde kopieringen?"
+#: ../src/gnome-utils/dialog-commodity.c:1049
+msgid "Security Information"
+msgstr "Information om værdipapir"
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1738
-#, fuzzy
-msgid "_Return"
-msgstr "Kapitalgevinst"
+#: ../src/gnome-utils/dialog-commodity.c:1325
+msgid "You may not create a new national currency."
+msgstr "Du kan ikke oprette en ny national valuta."
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1781
-#: ../src/register/ledger-core/split-register-control.c:1828
-msgid "Mark split as unreconciled?"
+#: ../src/gnome-utils/dialog-commodity.c:1335
+#, c-format
+msgid "%s is a reserved commodity type. Please use something else."
msgstr ""
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1783
-#: ../src/register/ledger-core/split-register-control.c:1830
-#, fuzzy
-msgid "You are about to mark a reconciled split as unreconciled. Doing so might make future reconciliation difficult! Continue with this change?"
-msgstr ""
-"Vil du virkelig markere denne transaktion som ikke-afstemt?\n"
-"Hvis du gør det kan fremtidige afstemninger blive svære!"
+#: ../src/gnome-utils/dialog-commodity.c:1350
+msgid "That commodity already exists."
+msgstr "Den vare findes allerede."
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1827
-#: ../src/register/ledger-core/split-register-control.c:1847
-#, fuzzy
-msgid "_Unreconcile"
-msgstr "_Afstem"
+#: ../src/gnome-utils/dialog-commodity.c:1398
+msgid "You must enter a non-empty \"Full name\", \"Symbol/abbreviation\", and \"Type\" for the commodity."
+msgstr "Du skal vælge en udfyldt »Fulde navn«, »Kode/forkortelse« og »Type« for varen."
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1912
-#: ../src/register/ledger-core/split-register-model.c:2008
-msgid "Change reconciled split?"
-msgstr ""
+#. The "date" and the "tnum" fields aren't being asked for, this is a split copy
+#: ../src/gnome-utils/dialog-dup-trans.c:235
+msgid "Action/Number:"
+msgstr "Handling/Nummer:"
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1914
-#: ../src/register/ledger-core/split-register-model.c:2010
-#, fuzzy
-msgid "You are about to change a reconciled split. Doing so might make future reconciliation difficult! Continue with this change?"
-msgstr ""
-"Vil du virkelig markere denne transaktion som ikke-afstemt?\n"
-"Hvis du gør det kan fremtidige afstemninger blive svære!"
+#: ../src/gnome-utils/dialog-file-access.c:295
+msgid "Open..."
+msgstr "Ã
bn ..."
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1919
-#: ../src/register/ledger-core/split-register-model.c:2015
-msgid "Change split linked to a reconciled split?"
-msgstr ""
+#: ../src/gnome-utils/dialog-file-access.c:302
+msgid "Save As..."
+msgstr "Gem som ..."
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1921
-#: ../src/register/ledger-core/split-register-model.c:2017
-#, fuzzy
-msgid "You are about to change a split that is linked to a reconciled split. Doing so might make future reconciliation difficult! Continue with this change?"
-msgstr ""
-"Vil du virkelig markere denne transaktion som ikke-afstemt?\n"
-"Hvis du gør det kan fremtidige afstemninger blive svære!"
+#: ../src/gnome-utils/dialog-file-access.c:311
+#: ../src/gnome-utils/gnc-file.c:119 ../src/gnome-utils/gnc-file.c:289
+#: ../src/report/report-gnome/gnc-plugin-page-report.c:1087
+msgid "Export"
+msgstr "Eksportér"
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1935
-#: ../src/register/ledger-core/split-register-model.c:2031
-#, fuzzy
-msgid "Chan_ge Split"
-msgstr "_Opdel"
+#: ../src/gnome-utils/dialog-options.c:811
+#: ../src/gnome-utils/dialog-options.c:953
+msgid "Select All"
+msgstr "Vælg alt"
-#: ../src/gnome-utils/gnc-tree-control-split-reg.c:2123
-msgid "You can not paste from the general ledger to a register."
-msgstr ""
+#: ../src/gnome-utils/dialog-options.c:813
+msgid "Select all accounts."
+msgstr "Vælg alle konti."
-#: ../src/gnome-utils/gnc-tree-model-account.c:630
-msgid "New top level account"
-msgstr "Ny topniveaukonto"
+#: ../src/gnome-utils/dialog-options.c:818
+#: ../src/gnome-utils/dialog-options.c:960
+msgid "Clear All"
+msgstr "Tøm alt"
-#. Translators: This string has a context prefix; the translation
-#. must only contain the part after the | character.
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2879
-#: ../src/register/ledger-core/split-register.c:2417
-msgid "Action Column|Deposit"
-msgstr ""
+#: ../src/gnome-utils/dialog-options.c:820
+msgid "Clear the selection and unselect all accounts."
+msgstr "Ryd markeringen og fravælg alle konti."
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2880
-#: ../src/register/ledger-core/split-register.c:2418
-msgid "Withdraw"
-msgstr "Udtræk"
+#: ../src/gnome-utils/dialog-options.c:825
+msgid "Select Children"
+msgstr "Vælg underkonti"
+
+#: ../src/gnome-utils/dialog-options.c:827
+msgid "Select all descendents of selected account."
+msgstr "Vælg alle underkonti for den valgte konto."
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2881
-#: ../src/register/ledger-core/split-register.c:2419
-msgid "Check"
-msgstr "Check"
+#: ../src/gnome-utils/dialog-options.c:833
+#: ../src/gnome-utils/dialog-options.c:967
+msgid "Select Default"
+msgstr "Vælg standard"
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2883
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2914
-#: ../src/register/ledger-core/split-register.c:2421
-#: ../src/register/ledger-core/split-register.c:2452
+#: ../src/gnome-utils/dialog-options.c:835
#, fuzzy
-msgid "ATM Deposit"
-msgstr "Indsæt"
+msgid "Select the default account selection."
+msgstr "Sæt standard QIF-kontonavn"
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2884
-#: ../src/register/ledger-core/split-register.c:2422
-#: ../src/register/ledger-core/split-register.c:2453
-msgid "ATM Draw"
-msgstr ""
+#: ../src/gnome-utils/dialog-options.c:849
+msgid "Show Hidden Accounts"
+msgstr "Vis skjulte konti"
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2885
-#: ../src/register/ledger-core/split-register.c:2423
-msgid "Teller"
-msgstr "Kasserer"
+#: ../src/gnome-utils/dialog-options.c:851
+msgid "Show accounts that have been marked hidden."
+msgstr "Vis konti som er blevet markeret som skjult."
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2888
-#: ../src/register/ledger-core/split-register.c:2426
-#, fuzzy
-msgid "Receipt"
-msgstr "Modtag"
+#: ../src/gnome-utils/dialog-options.c:955
+msgid "Select all entries."
+msgstr "Vælg alle poster."
-#. src/app-utils/prefs.scm
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2889
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2903
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2939
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2950
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2983
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3065
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3143
-#: ../src/register/ledger-core/split-register.c:2427
-#: ../src/register/ledger-core/split-register.c:2441
-#: ../src/register/ledger-core/split-register.c:2477
-#: ../src/register/ledger-core/split-register.c:2488
-#: ../src/register/ledger-core/split-register.c:2521
-#: ../intl-scm/guile-strings.c:256
-#: ../intl-scm/guile-strings.c:288
-#: ../intl-scm/guile-strings.c:304
-#: ../intl-scm/guile-strings.c:306
-msgid "Increase"
-msgstr "Forøg"
+#: ../src/gnome-utils/dialog-options.c:962
+msgid "Clear the selection and unselect all entries."
+msgstr "Ryd markeringen og fravælg alle poster."
-#. src/app-utils/prefs.scm
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2890
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2904
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2940
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2951
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2984
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3058
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3150
-#: ../src/register/ledger-core/split-register.c:2428
-#: ../src/register/ledger-core/split-register.c:2442
-#: ../src/register/ledger-core/split-register.c:2478
-#: ../src/register/ledger-core/split-register.c:2489
-#: ../src/register/ledger-core/split-register.c:2522
-#: ../intl-scm/guile-strings.c:258
-#: ../intl-scm/guile-strings.c:274
-#: ../intl-scm/guile-strings.c:276
-#: ../intl-scm/guile-strings.c:286
-msgid "Decrease"
-msgstr "Sænk"
+#: ../src/gnome-utils/dialog-options.c:969
+msgid "Select the default selection."
+msgstr "Vælg standardmarkeringen."
-#. Action: Point Of Sale
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2892
-#: ../src/register/ledger-core/split-register.c:2430
-msgid "POS"
-msgstr "POS"
+#. The reset button on each option page
+#: ../src/gnome-utils/dialog-options.c:1129
+msgid "Reset defaults"
+msgstr "Nulstil standarder"
-#. src/report/business-reports/taxinvoice.eguile.scm
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2893
-#: ../src/gnome-utils/gnc-tree-view-owner.c:444
-#: ../src/register/ledger-core/split-register.c:2431
-#: ../intl-scm/guile-strings.c:1618
-msgid "Phone"
-msgstr "Telefon"
+#: ../src/gnome-utils/dialog-options.c:1131
+msgid "Reset all values to their defaults."
+msgstr "Nulstil alle værdier til deres standarder."
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2894
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2920
-#: ../src/register/ledger-core/split-register.c:2432
-#: ../src/register/ledger-core/split-register.c:2458
-msgid "Online"
-msgstr "Opkoblet"
+#: ../src/gnome-utils/dialog-options.c:1455
+msgid "Page"
+msgstr "Side"
-#. Action: Automatic Deposit
-#. Action: Automatic Deposit ?!?
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2896
-#: ../src/register/ledger-core/split-register.c:2434
-msgid "AutoDep"
-msgstr "AutoAfh"
+#: ../src/gnome-utils/dialog-options.c:2070
+msgid "Clear"
+msgstr "Slet"
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2897
-#: ../src/register/ledger-core/split-register.c:2435
-msgid "Wire"
-msgstr "Overfør elektronisk"
+#: ../src/gnome-utils/dialog-options.c:2071
+msgid "Clear any selected image file."
+msgstr "Ryd alle valgte billedfiler."
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2899
-#: ../src/register/ledger-core/split-register.c:2437
-msgid "Direct Debit"
-msgstr "Direkte Debet"
+#: ../src/gnome-utils/dialog-options.c:2073
+msgid "Select image"
+msgstr "Vælg billede"
-#. src/app-utils/prefs.scm
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2905
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2909
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2916
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2924
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2941
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2952
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2957
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2964
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2985
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3168
-#: ../src/register/ledger-core/split-register.c:2443
-#: ../src/register/ledger-core/split-register.c:2447
-#: ../src/register/ledger-core/split-register.c:2454
-#: ../src/register/ledger-core/split-register.c:2462
-#: ../src/register/ledger-core/split-register.c:2479
-#: ../src/register/ledger-core/split-register.c:2490
-#: ../src/register/ledger-core/split-register.c:2495
-#: ../src/register/ledger-core/split-register.c:2523
-#: ../intl-scm/guile-strings.c:260
-#: ../intl-scm/guile-strings.c:262
-#: ../intl-scm/guile-strings.c:264
-msgid "Buy"
-msgstr "Køb"
+#: ../src/gnome-utils/dialog-options.c:2075
+msgid "Select an image file."
+msgstr "Vælg en billedfil"
-#. src/app-utils/prefs.scm
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2906
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2910
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2921
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2925
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2942
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2953
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2958
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2965
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2986
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3088
-#: ../src/register/ledger-core/split-register.c:2444
-#: ../src/register/ledger-core/split-register.c:2448
-#: ../src/register/ledger-core/split-register.c:2459
-#: ../src/register/ledger-core/split-register.c:2463
-#: ../src/register/ledger-core/split-register.c:2480
-#: ../src/register/ledger-core/split-register.c:2491
-#: ../src/register/ledger-core/split-register.c:2496
-#: ../src/register/ledger-core/split-register.c:2524
-#: ../intl-scm/guile-strings.c:290
-#: ../intl-scm/guile-strings.c:292
-#: ../intl-scm/guile-strings.c:294
-msgid "Sell"
-msgstr "Sælg"
+#. Translators: Both %s will be the account separator character; the
+#. resulting string is a demonstration how the account separator
+#. character will look like. You can replace these three account
+#. names with other account names that are more suitable for your
+#. language - just keep in mind to have exactly two %s in your
+#. translation.
+#: ../src/gnome-utils/dialog-preferences.c:163
+#, c-format
+msgid "Income%sSalary%sTaxable"
+msgstr "Indtægt%sløn%sskattepligtig"
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2911
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2918
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2967
-#: ../src/register/ledger-core/split-register.c:2449
-#: ../src/register/ledger-core/split-register.c:2456
-#: ../src/register/ledger-core/split-register.c:2505
-msgid "Fee"
-msgstr "Gebyr"
+#: ../src/gnome-utils/dialog-tax-table.c:116
+msgid "You must provide a name for this Tax Table."
+msgstr "Du skal angive et navn til denne skattetabel."
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2915
-#, fuzzy
-msgid "ATM Withdraw"
-msgstr "Udtræk"
+#: ../src/gnome-utils/dialog-tax-table.c:123
+#, c-format
+msgid "You must provide a unique name for this Tax Table. Your choice \"%s\" is already in use."
+msgstr "Du skal angive et unikt navn til denne skattetabel. Dit valg »%s« er allerede i brug."
-#. src/app-utils/prefs.scm
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2945
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3081
-#: ../src/register/ledger-core/split-register.c:2483
-#: ../intl-scm/guile-strings.c:298
-msgid "Rebate"
-msgstr "Rabat"
+#: ../src/gnome-utils/dialog-tax-table.c:137
+msgid "Percentage amount must be between -100 and 100."
+msgstr "Procentbeløb skal være mellem -100 og 100."
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2946
-#: ../src/register/ledger-core/split-register.c:2484
-#, fuzzy
-msgid "Paycheck"
-msgstr "Check"
+#: ../src/gnome-utils/dialog-tax-table.c:146
+msgid "You must choose a Tax Account."
+msgstr "Du skal vælge en skattekonto."
-#. src/report/business-reports/easy-invoice.scm
-#. src/report/business-reports/fancy-invoice.scm
-#. src/report/business-reports/invoice.scm
-#. src/report/standard-reports/advanced-portfolio.scm
-#. src/report/standard-reports/general-journal.scm
-#. src/report/standard-reports/general-ledger.scm
-#. src/report/standard-reports/portfolio.scm
-#. src/report/standard-reports/price-scatter.scm
-#. src/report/standard-reports/register.scm
-#. src/report/standard-reports/transaction.scm
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2966
-#: ../src/gnome-utils/gnc-tree-view-price.c:455
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3036
-#: ../src/register/ledger-core/split-register.c:2504
-#: ../src/register/ledger-core/split-register-model.c:379
-#: ../intl-scm/guile-strings.c:804
-#: ../intl-scm/guile-strings.c:1010
-#: ../intl-scm/guile-strings.c:1220
-#: ../intl-scm/guile-strings.c:2662
-#: ../intl-scm/guile-strings.c:3564
-#: ../intl-scm/guile-strings.c:3604
-#: ../intl-scm/guile-strings.c:3970
-#: ../intl-scm/guile-strings.c:3982
-#: ../intl-scm/guile-strings.c:4060
-#: ../intl-scm/guile-strings.c:4084
-#: ../intl-scm/guile-strings.c:4158
-#: ../intl-scm/guile-strings.c:4392
-#: ../intl-scm/guile-strings.c:4460
-#: ../intl-scm/guile-strings.c:4748
-msgid "Price"
-msgstr "Pris"
+#: ../src/gnome-utils/dialog-tax-table.c:563
+#, c-format
+msgid "Tax table \"%s\" is in use. You cannot delete it."
+msgstr "Skattetabel »%s« er i brug. Du kan ikke slette den."
-#. Action: Dividend
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2969
-#: ../src/register/ledger-core/split-register.c:2507
-#, fuzzy
-msgid "Dividend"
-msgstr "Udbytter"
+#: ../src/gnome-utils/dialog-tax-table.c:611
+msgid "You cannot remove the last entry from the tax table. Try deleting the tax table if you want to do that."
+msgstr "Du kan ikke fjerne den sidste post fra skattetabellen. Slet skattetabellen hvis det er det, du vil."
-#. Action: Long Term Capital Gains
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2972
-#: ../src/register/ledger-core/split-register.c:2510
-msgid "LTCG"
-msgstr "Langsigtet gevinst"
+#: ../src/gnome-utils/dialog-tax-table.c:618
+msgid "Are you sure you want to delete this entry?"
+msgstr "Er du sikker på, at du vil slette denne post?"
-#. Action: Short Term Capital Gains
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2974
-#: ../src/register/ledger-core/split-register.c:2512
-msgid "STCG"
-msgstr "Kortsigtet gevinst"
+#: ../src/gnome-utils/dialog-transfer.c:534
+msgid "Show the income and expense accounts"
+msgstr "Vis indtægts- og udgiftskonti"
-#. Action: Distribution
-#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2977
-#: ../src/register/ledger-core/split-register.c:2515
-msgid "Dist"
-msgstr "Udlod"
+#: ../src/gnome-utils/dialog-transfer.c:638
+msgid "Error"
+msgstr "Fejl"
-#: ../src/gnome-utils/gnc-tree-util-split-reg.c:46
+#: ../src/gnome-utils/dialog-transfer.c:1256
#, fuzzy
-msgid "-- Stock Split --"
-msgstr "Aktieopdeling"
+msgid "Retrieve the current online quote"
+msgstr "Slet den nuværende opdeling"
-#: ../src/gnome-utils/gnc-tree-util-split-reg.c:503
-#: ../src/register/register-gnome/datecell-gnome.c:100
-msgid "The entered date of the new transaction is older than the \"Read-Only Threshold\" set for this book. This setting can be changed in File -> Properties -> Accounts."
+#: ../src/gnome-utils/dialog-transfer.c:1260
+msgid "Finance::Quote must be installed to enable this button."
msgstr ""
-#: ../src/gnome-utils/gnc-tree-util-split-reg.c:886
-msgid "Exchange Rate Canceled, using existing rate or default 1 to 1 rate if this is a new transaction."
+#: ../src/gnome-utils/dialog-transfer.c:1397
+#, fuzzy
+msgid "You must specify an account to transfer from, or to, or both, for this transaction. Otherwise, it will not be recorded."
msgstr ""
+"Du skal angive en konto at overføre fra, til,\n"
+"eller både-og for denne transaktion. Ellers\n"
+"vil den ikke blive gemt."
-#: ../src/gnome-utils/gnc-tree-util-split-reg.c:1148
-#: ../src/register/ledger-core/split-register.c:1920
-msgid "Recalculate Transaction"
-msgstr "Genberegn transaktion"
+#: ../src/gnome-utils/dialog-transfer.c:1407
+msgid "You can't transfer from and to the same account!"
+msgstr "Du kan ikke overføre fra og til den samme konto!"
-#: ../src/gnome-utils/gnc-tree-util-split-reg.c:1149
-#: ../src/register/ledger-core/split-register.c:1921
-#, fuzzy
-msgid "The values entered for this transaction are inconsistent. Which value would you like to have recalculated?"
+#: ../src/gnome-utils/dialog-transfer.c:1433
+msgid "You can't transfer from a non-currency account. Try reversing the \"from\" and \"to\" accounts and making the \"amount\" negative."
msgstr ""
-"De indtastede værdier for denne transaktion stemmer ikke overens.\n"
-"Hvilken værdi vil du genberegne?"
-#: ../src/gnome-utils/gnc-tree-util-split-reg.c:1156
-#: ../src/gnome-utils/gnc-tree-util-split-reg.c:1158
-#: ../src/register/ledger-core/split-register.c:1927
-#: ../src/register/ledger-core/split-register.c:1930
-#, fuzzy
-msgid "_Shares"
-msgstr "Aktier"
+#: ../src/gnome-utils/dialog-transfer.c:1458
+msgid "You must enter an amount to transfer."
+msgstr "Du skal vælge en mængde at overføre."
-#: ../src/gnome-utils/gnc-tree-util-split-reg.c:1156
-#: ../src/gnome-utils/gnc-tree-util-split-reg.c:1163
-#: ../src/gnome-utils/gnc-tree-util-split-reg.c:1170
-#: ../src/register/ledger-core/split-register.c:1928
-#: ../src/register/ledger-core/split-register.c:1935
-#: ../src/register/ledger-core/split-register.c:1942
-msgid "Changed"
-msgstr "Ãndret"
+#: ../src/gnome-utils/dialog-transfer.c:1473
+msgid "You must enter a valid price."
+msgstr "Du skal vælge en gyldig pris."
-#: ../src/gnome-utils/gnc-tree-util-split-reg.c:1170
-#: ../src/gnome-utils/gnc-tree-util-split-reg.c:1172
-#: ../src/register/ledger-core/split-register.c:1941
-#: ../src/register/ledger-core/split-register.c:1944
-#, fuzzy
-msgid "_Value"
-msgstr "Værdi"
+#: ../src/gnome-utils/dialog-transfer.c:1485
+msgid "You must enter a valid `to' amount."
+msgstr "Du skal vælge en gyldig 'til'-mængde."
-#: ../src/gnome-utils/gnc-tree-util-split-reg.c:1192
-#: ../src/register/ledger-core/split-register.c:1953
-#, fuzzy
-msgid "_Recalculate"
-msgstr "Beregn"
+#: ../src/gnome-utils/dialog-transfer.c:1881
+msgid "Debit Account"
+msgstr "Debetkonto"
-#. src/report/locale-specific/us/taxtxf-de_DE.scm
-#. src/report/standard-reports/general-ledger.scm
-#. src/report/standard-reports/transaction.scm
-#. src/report/standard-reports/trial-balance.scm
-#: ../src/gnome-utils/gnc-tree-view-account.c:718
-#: ../src/import-export/csv-exp/csv-transactions-export.c:417
-#: ../intl-scm/guile-strings.c:1886
-#: ../intl-scm/guile-strings.c:3590
-#: ../intl-scm/guile-strings.c:4380
-#: ../intl-scm/guile-strings.c:4536
-#: ../intl-scm/guile-strings.c:4592
-#: ../intl-scm/guile-strings.c:4720
-#: ../intl-scm/guile-strings.c:4960
-msgid "Account Name"
-msgstr "Kontonavn"
+#: ../src/gnome-utils/dialog-transfer.c:1899
+msgid "Transfer From"
+msgstr "Overfør fra"
-#: ../src/gnome-utils/gnc-tree-view-account.c:737
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3016
-msgid "Commodity"
-msgstr "Vare"
+#: ../src/gnome-utils/dialog-transfer.c:1903
+msgid "Transfer To"
+msgstr "Overfør til"
-#. src/report/report-system/options-utilities.scm
-#. src/report/standard-reports/account-summary.scm
-#. src/report/standard-reports/general-ledger.scm
-#. src/report/standard-reports/sx-summary.scm
-#. src/report/standard-reports/transaction.scm
-#: ../src/gnome-utils/gnc-tree-view-account.c:743
-#: ../intl-scm/guile-strings.c:2254
-#: ../intl-scm/guile-strings.c:2516
-#: ../intl-scm/guile-strings.c:3594
-#: ../intl-scm/guile-strings.c:4268
-#: ../intl-scm/guile-strings.c:4412
-#: ../intl-scm/guile-strings.c:4540
-#: ../intl-scm/guile-strings.c:4596
-#: ../intl-scm/guile-strings.c:4728
-msgid "Account Code"
-msgstr "Kontonummer"
+#: ../src/gnome-utils/dialog-transfer.c:1960
+msgid "Debit Amount:"
+msgstr "Debetbeløb:"
-#: ../src/gnome-utils/gnc-tree-view-account.c:755
-#, fuzzy
-msgid "Last Num"
-msgstr "Sidste"
+#: ../src/gnome-utils/dialog-transfer.c:1965
+#: ../src/gnome-utils/gtkbuilder/dialog-transfer.glade.h:14
+msgid "To Amount:"
+msgstr "Til-beløb:"
-#: ../src/gnome-utils/gnc-tree-view-account.c:761
-msgid "Present"
-msgstr "Nutidig"
+#: ../src/gnome-utils/dialog-utils.c:546
+msgid "Remember and don't _ask me again."
+msgstr "Husk og spørg mig _ikke igen."
-#: ../src/gnome-utils/gnc-tree-view-account.c:768
-msgid "Present (Report)"
-msgstr "Nutidig (rapport)"
+#: ../src/gnome-utils/dialog-utils.c:547
+msgid "Don't _tell me again."
+msgstr "Fortæl mig _det ikke igen."
-#: ../src/gnome-utils/gnc-tree-view-account.c:782
-msgid "Balance (Report)"
-msgstr "Balance (rapport)"
+#: ../src/gnome-utils/dialog-utils.c:550
+msgid "Remember and don't ask me again this _session."
+msgstr "Husk og fortæl mig det ikke igen i denne _session."
-#: ../src/gnome-utils/gnc-tree-view-account.c:789
-msgid "Balance (Period)"
-msgstr "Balance (periode)"
+#: ../src/gnome-utils/dialog-utils.c:551
+msgid "Don't tell me again this _session."
+msgstr "Fortæl mig det ikke igen i denne _session."
-#: ../src/gnome-utils/gnc-tree-view-account.c:803
-msgid "Cleared (Report)"
-msgstr "Ryddet (rapport)"
+#. create the button.
+#: ../src/gnome-utils/gnc-account-sel.c:456
+msgid "New..."
+msgstr "Ny ..."
-#: ../src/gnome-utils/gnc-tree-view-account.c:817
-msgid "Reconciled (Report)"
-msgstr "Afstemt (rapport)"
+#: ../src/gnome-utils/gnc-autosave.c:98
+msgid "Save file automatically?"
+msgstr "Gem fil automatisk?"
-#: ../src/gnome-utils/gnc-tree-view-account.c:824
-msgid "Last Reconcile Date"
-msgstr "Sidste afstemningsdato"
+#: ../src/gnome-utils/gnc-autosave.c:101
+#, c-format
+msgid ""
+"Your data file needs to be saved to your hard disk to save your changes. GnuCash has a feature to save the file automatically every %d minute, just as if you had pressed the \"Save\" button each time. \n"
+"\n"
+"You can change the time interval or turn off this feature under Edit -> Preferences -> General -> Auto-save time interval. \n"
+"\n"
+"Should your file be saved automatically?"
+msgid_plural ""
+"Your data file needs to be saved to your hard disk to save your changes. GnuCash has a feature to save the file automatically every %d minutes, just as if you had pressed the \"Save\" button each time. \n"
+"\n"
+"You can change the time interval or turn off this feature under Edit -> Preferences -> General -> Auto-save time interval. \n"
+"\n"
+"Should your file be saved automatically?"
+msgstr[0] ""
+msgstr[1] ""
-#: ../src/gnome-utils/gnc-tree-view-account.c:830
-msgid "Future Minimum"
-msgstr "Fremtidig minimum"
+#: ../src/gnome-utils/gnc-autosave.c:116
+msgid "_Yes, this time"
+msgstr "_Ja, denne gang"
-#: ../src/gnome-utils/gnc-tree-view-account.c:837
-msgid "Future Minimum (Report)"
-msgstr "Fremtidig minimum (rapport)"
+#: ../src/gnome-utils/gnc-autosave.c:117
+msgid "Yes, _always"
+msgstr "Ja, _altid"
-#: ../src/gnome-utils/gnc-tree-view-account.c:851
-msgid "Total (Report)"
-msgstr "Total (rapport)"
+#: ../src/gnome-utils/gnc-autosave.c:118
+msgid "No, n_ever"
+msgstr "N_ej, aldrig"
-#: ../src/gnome-utils/gnc-tree-view-account.c:858
-msgid "Total (Period)"
-msgstr "Total (periode)"
+#: ../src/gnome-utils/gnc-autosave.c:119
+msgid "_No, not this time"
+msgstr "_Nej, ikke denne gang"
-#: ../src/gnome-utils/gnc-tree-view-account.c:867
-msgid "C"
-msgstr ""
+#: ../src/gnome-utils/gnc-date-delta.c:218
+#: ../src/report/standard-reports/price-scatter.scm:229
+msgid "Weeks"
+msgstr "Uger"
-#: ../src/gnome-utils/gnc-tree-view-account.c:877
-#, fuzzy
-msgid "Account Color"
-msgstr "Konto_farve:"
+#: ../src/gnome-utils/gnc-date-delta.c:246
+msgid "Ago"
+msgstr "Siden"
-#: ../src/gnome-utils/gnc-tree-view-account.c:891
-msgid "Tax Info"
-msgstr "Skatteinfo"
+#: ../src/gnome-utils/gnc-date-delta.c:248
+msgid "From Now"
+msgstr "Fra nu"
-#. Translators: This string has a context prefix; the translation
-#. must only contain the part after the | character.
-#: ../src/gnome-utils/gnc-tree-view-account.c:907
-msgid "Column letter for 'Placeholder'|P"
-msgstr "S"
+#. Calendar label, only shown if the date editor has a time field
+#: ../src/gnome-utils/gnc-date-edit.c:862
+msgid "Calendar"
+msgstr "Kalender"
-#. Translators: %s is a currency mnemonic.
-#: ../src/gnome-utils/gnc-tree-view-account.c:1701
-#, fuzzy, c-format
-msgid "Present (%s)"
-msgstr "Nutidig:"
+#: ../src/gnome-utils/gnc-dense-cal.c:250
+msgid "12 months"
+msgstr "12 måneder"
-#. Translators: %s is a currency mnemonic.
-#: ../src/gnome-utils/gnc-tree-view-account.c:1704
-#: ../src/gnome-utils/gnc-tree-view-owner.c:928
-#, c-format
-msgid "Balance (%s)"
-msgstr "Saldo (%s)"
+#: ../src/gnome-utils/gnc-dense-cal.c:251
+msgid "6 months"
+msgstr "6 måneder"
-#. Translators: %s is a currency mnemonic.
-#: ../src/gnome-utils/gnc-tree-view-account.c:1707
-#, c-format
-msgid "Cleared (%s)"
-msgstr "Ryddet (%s)"
+#: ../src/gnome-utils/gnc-dense-cal.c:252
+msgid "4 months"
+msgstr "4 måneder"
-#. Translators: %s is a currency mnemonic.
-#: ../src/gnome-utils/gnc-tree-view-account.c:1710
-#, c-format
-msgid "Reconciled (%s)"
-msgstr "Afstemt (%s)"
+#: ../src/gnome-utils/gnc-dense-cal.c:253
+msgid "3 months"
+msgstr "3 måneder"
-#. Translators: %s is a currency mnemonic.
-#: ../src/gnome-utils/gnc-tree-view-account.c:1713
-#, c-format
-msgid "Future Minimum (%s)"
-msgstr "Fremtidig minimum (%s)"
+#: ../src/gnome-utils/gnc-dense-cal.c:254
+msgid "2 months"
+msgstr "2 måneder"
-#. Translators: %s is a currency mnemonic.
-#: ../src/gnome-utils/gnc-tree-view-account.c:1716
-#, c-format
-msgid "Total (%s)"
-msgstr "Total (%s)"
+#: ../src/gnome-utils/gnc-dense-cal.c:255
+msgid "1 month"
+msgstr "1 måned"
-#: ../src/gnome-utils/gnc-tree-view-commodity.c:385
-msgid "Namespace"
-msgstr "Navnerum"
+#: ../src/gnome-utils/gnc-dense-cal.c:288
+msgid "View:"
+msgstr "Vis:"
-#: ../src/gnome-utils/gnc-tree-view-commodity.c:402
-msgid "Print Name"
-msgstr "Udskriv navn"
+#: ../src/gnome-utils/gnc-dense-cal.c:326
+#: ../src/report/stylesheets/stylesheet-easy.scm:439
+#: ../src/report/stylesheets/stylesheet-fancy.scm:434
+#: ../src/report/stylesheets/stylesheet-footer.scm:452
+msgid "Date: "
+msgstr "Dato: "
+
+#: ../src/gnome-utils/gnc-dense-cal.c:1177
+msgid "(unnamed)"
+msgstr "(intet navn)"
-#: ../src/gnome-utils/gnc-tree-view-commodity.c:408
-#, fuzzy
-msgid "Display symbol"
-msgstr "Vis totalerne?"
+#. File menu
+#. Menu Items
+#: ../src/gnome-utils/gnc-file.c:104 ../src/gnome-utils/gnc-main-window.c:272
+#: ../src/plugins/bi_import/gnc-plugin-bi-import.c:56
+msgid "_Import"
+msgstr "_Indlæsning"
-#: ../src/gnome-utils/gnc-tree-view-commodity.c:414
-msgid "Unique Name"
-msgstr "Unikt navn"
+#: ../src/gnome-utils/gnc-file.c:106 ../src/gnome-utils/gnc-file.c:273
+msgid "Import"
+msgstr "Indlæsning"
-#. Translators: Again replace CUSIP by the name of your
-#. National Securities Identifying Number.
-#: ../src/gnome-utils/gnc-tree-view-commodity.c:421
-msgid "ISIN/CUSIP"
-msgstr "ISIN/CUSIP"
+#: ../src/gnome-utils/gnc-file.c:112 ../src/gnome-utils/gnc-file.c:1083
+#: ../src/gnome-utils/gnc-file.c:1319
+msgid "Save"
+msgstr "Gem"
-# Jeg *tror*, der er tale om "handlet andel af aktier". CH
-#: ../src/gnome-utils/gnc-tree-view-commodity.c:427
-msgid "Fraction"
-msgstr "Andel"
+#: ../src/gnome-utils/gnc-file.c:116 ../src/gnome-utils/gnc-main-window.c:273
+msgid "_Export"
+msgstr "_Eksporter"
-#: ../src/gnome-utils/gnc-tree-view-commodity.c:434
-msgid "Get Quotes"
-msgstr "Hent kurser"
+#: ../src/gnome-utils/gnc-file.c:158
+msgid "All files"
+msgstr "Alle filer"
-#. Translators: This string has a context prefix; the translation
-#. must only contain the part after the | character.
-#: ../src/gnome-utils/gnc-tree-view-commodity.c:437
-msgid "Column letter for 'Get Quotes'|Q"
-msgstr ""
+#: ../src/gnome-utils/gnc-file.c:204
+msgid "(null)"
+msgstr "(tom)"
-#: ../src/gnome-utils/gnc-tree-view-commodity.c:443
-#: ../src/gnome-utils/gnc-tree-view-price.c:443
-msgid "Source"
-msgstr "Kilde"
+#: ../src/gnome-utils/gnc-file.c:218
+#, c-format
+msgid "No suitable backend was found for %s."
+msgstr ""
-#: ../src/gnome-utils/gnc-tree-view-commodity.c:448
-msgid "Timezone"
-msgstr "Tidszone"
+#: ../src/gnome-utils/gnc-file.c:223
+#, c-format
+msgid "The URL %s is not supported by this version of GnuCash."
+msgstr "URL'en %s understøttes ikke af denne version af GnuCash."
-#: ../src/gnome-utils/gnc-tree-view-owner.c:398
-#, fuzzy
-msgid "Owner Name"
-msgstr "Ejernavn "
+#: ../src/gnome-utils/gnc-file.c:228
+#, c-format
+msgid "Can't parse the URL %s."
+msgstr "Kan ikke tolke URL'en %s."
-#: ../src/gnome-utils/gnc-tree-view-owner.c:409
-#, fuzzy
-msgid "Owner ID"
-msgstr "Ordre-id"
+#: ../src/gnome-utils/gnc-file.c:233
+#, c-format
+msgid "Can't connect to %s. The host, username or password were incorrect."
+msgstr "Kan ikke forbinde til %s. Værten, brugernavnet eller adgangskoden var forkert."
-#: ../src/gnome-utils/gnc-tree-view-owner.c:419
-#, fuzzy
-msgid "Address Name"
-msgstr "Adresse: "
+#: ../src/gnome-utils/gnc-file.c:239
+#, c-format
+msgid "Can't connect to %s. Connection was lost, unable to send data."
+msgstr "Kan ikke forbinde til %s. Forbindelsen blev afbrudt. Kunne ikke sende data."
-#: ../src/gnome-utils/gnc-tree-view-owner.c:424
-#, fuzzy
-msgid "Address 1"
-msgstr "Adresse: "
+#: ../src/gnome-utils/gnc-file.c:245
+msgid "This file/URL appears to be from a newer version of GnuCash. You must upgrade your version of GnuCash to work with this data."
+msgstr "Denne fil/URL ser ud til at være fra en nyere version af GnuCash. Du er nødt til at opgradere GnuCash for at arbejde med disse data."
-#: ../src/gnome-utils/gnc-tree-view-owner.c:429
-#, fuzzy
-msgid "Address 2"
-msgstr "Adresse: "
+#: ../src/gnome-utils/gnc-file.c:252
+#, c-format
+msgid "The database %s doesn't seem to exist. Do you want to create it?"
+msgstr "Databasen %s lader ikke til at eksistere. Vil du oprette den?"
-#: ../src/gnome-utils/gnc-tree-view-owner.c:434
-#, fuzzy
-msgid "Address 3"
-msgstr "Adresse: "
+#: ../src/gnome-utils/gnc-file.c:266
+#, c-format
+msgid "GnuCash could not obtain the lock for %s. That database may be in use by another user, in which case you should not open the database. Do you want to proceed with opening the database?"
+msgstr "GnuCash kunne ikke sikre låsen til %s. Denne database kan være i brug af en anden bruger. I så fald bør du ikke åbne databasen. Vil du fortsætte med at åbne databasen?"
-#: ../src/gnome-utils/gnc-tree-view-owner.c:439
-#, fuzzy
-msgid "Address 4"
-msgstr "Adresse: "
+#: ../src/gnome-utils/gnc-file.c:274
+#, c-format
+msgid "GnuCash could not obtain the lock for %s. That database may be in use by another user, in which case you should not import the database. Do you want to proceed with importing the database?"
+msgstr "GnuCash kunne ikke sikre låsen til %s. Denne database kan være i brug af en anden bruger. I så fald bør du ikke indlæse databasen. Vil du fortsætte med at indlæse databasen?"
-#. src/report/business-reports/taxinvoice.eguile.scm
-#: ../src/gnome-utils/gnc-tree-view-owner.c:449
-#: ../intl-scm/guile-strings.c:1620
-#, fuzzy
-msgid "Fax"
-msgstr "Fax:"
+#: ../src/gnome-utils/gnc-file.c:282
+#, c-format
+msgid "GnuCash could not obtain the lock for %s. That database may be in use by another user, in which case you should not save the database. Do you want to proceed with saving the database?"
+msgstr "GnuCash kunne ikke sikre låsen til %s. Denne database kan være i brug af en anden bruger. I så fald bør du ikke gemme databasen. Vil du fortsætte med at gemme databasen?"
-#: ../src/gnome-utils/gnc-tree-view-owner.c:454
-#, fuzzy
-msgid "E-mail"
-msgstr "E-post:"
+#: ../src/gnome-utils/gnc-file.c:290
+#, c-format
+msgid "GnuCash could not obtain the lock for %s. That database may be in use by another user, in which case you should not export the database. Do you want to proceed with exporting the database?"
+msgstr "GnuCash kunne ikke sikre låsen til %s. Denne database kan være i brug af en anden bruger. I så fald bør du ikke eksportere databasen. Vil du fortsætte med at eksportere databasen?"
-#. Translators: This string has a context prefix; the translation
-#. must only contain the part after the | character.
-#: ../src/gnome-utils/gnc-tree-view-owner.c:483
-#, fuzzy
-msgid "Column letter for 'Active'|A"
-msgstr "S"
+#: ../src/gnome-utils/gnc-file.c:315
+#, c-format
+msgid "GnuCash could not write to %s. That database may be on a read-only file system, or you may not have write permission for the directory."
+msgstr "GnuCash kunne ikke skrive til %s. Databasen kan befinde sig på et skrivebeskyttet filsystem, eller du har ikke skriverettigheder til mappen."
-#: ../src/gnome-utils/gnc-tree-view-price.c:425
-msgid "Security"
-msgstr "Værdipapir"
+#: ../src/gnome-utils/gnc-file.c:322
+#, c-format
+msgid "The file/URL %s does not contain GnuCash data or the data is corrupt."
+msgstr "Filen/URL'en %s indeholder ikke GnuCash-data eller dataene er ødelagte."
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:807
-#, fuzzy
-msgid "Status Bar"
-msgstr "Stat_usbjælke"
+#: ../src/gnome-utils/gnc-file.c:328
+#, c-format
+msgid "The server at URL %s experienced an error or encountered bad or corrupt data."
+msgstr "Serveren på URL'en %s løb ind i en fejl, eller fandt ugyldige data."
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:1552
-#, fuzzy
-msgid " Scheduled "
-msgstr "Planlæg"
+#: ../src/gnome-utils/gnc-file.c:334
+#, c-format
+msgid "You do not have permission to access %s."
+msgstr "Du har ikke rettigheder til at tilgå %s."
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2413
-#: ../src/register/ledger-core/split-register-control.c:1531
-#, fuzzy
-msgid "Save the changed transaction?"
-msgstr "Afbryd den nuværende transaktion"
+#: ../src/gnome-utils/gnc-file.c:339
+#: ../src/register/register-core/formulacell.c:118
+#: ../src/register/register-core/pricecell.c:181
+#, c-format
+msgid "An error occurred while processing %s."
+msgstr "Der opstod en fejl under behandling af %s."
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2415
-#, fuzzy
-msgid "The current transaction has changed. Would you like to record the changes, or discard the changes?"
-msgstr "Den aktuelle skabelontransaktion er blevet ændret. Vil du gemme ændringerne?"
+#: ../src/gnome-utils/gnc-file.c:344
+msgid "There was an error reading the file. Do you want to continue?"
+msgstr "Der opstod en fejl ved læsning af filen. Vil du fortsætte?"
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2453
-#: ../src/register/ledger-core/split-register-control.c:1546
-#, fuzzy
-msgid "_Discard Changes"
-msgstr "Bekræft ændringer"
+#: ../src/gnome-utils/gnc-file.c:353
+#, c-format
+msgid "There was an error parsing the file %s."
+msgstr "Der opstod en fejl under tolkning af filen %s."
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2455
-#: ../src/register/ledger-core/split-register-control.c:1548
-#, fuzzy
-msgid "_Record Changes"
-msgstr "Bekræft ændringer"
+#: ../src/gnome-utils/gnc-file.c:358
+#, c-format
+msgid "The file %s is empty."
+msgstr "Filen %s er tom."
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2822
-#, fuzzy
-msgid "Date Entered"
-msgstr "Dato bogført"
+#: ../src/gnome-utils/gnc-file.c:369
+#, c-format
+msgid "The file %s could not be found."
+msgstr "Filen %s kunne ikke findes."
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2824
-#, fuzzy
-msgid "Date Reconciled"
-msgstr "Afstemt:"
+#: ../src/gnome-utils/gnc-file.c:375
+msgid "This file is from an older version of GnuCash. Do you want to continue?"
+msgstr "Denne fil er fra en ældre version af GnuCash. Vil du fortsætte?"
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2826
-msgid "Date Posted / Entered / Reconciled"
-msgstr ""
+#: ../src/gnome-utils/gnc-file.c:384
+#, c-format
+msgid "The file type of file %s is unknown."
+msgstr "Filetypen på fil %s er ukendt."
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2853
-#, fuzzy
-msgid "Reference / Action"
-msgstr "Reference"
+#: ../src/gnome-utils/gnc-file.c:389
+#, c-format
+msgid "Could not make a backup of the file %s"
+msgstr "Kunne ikke oprette en sikkerhedskopi af filen %s"
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2867
-#, fuzzy
-msgid "T-Number"
-msgstr "Nummer"
+#: ../src/gnome-utils/gnc-file.c:394
+#, c-format
+msgid "Could not write to file %s. Check that you have permission to write to this file and that there is sufficient space to create it."
+msgstr "Kunne ikke skrive til filen %s. Undersøg om du har rettigheder til at skrive til denne fil og at der er nok ledig diskplads til at oprette den."
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2873
-#, fuzzy
-msgid "Number / Action"
-msgstr "Nummervalg"
+#: ../src/gnome-utils/gnc-file.c:401
+#, c-format
+msgid "No read permission to read from file %s."
+msgstr "Ingen læserettighed til at læse fra fil %s."
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2889
-#, fuzzy
-msgid "Customer / Memo"
-msgstr "Kunderapport"
+#. Translators: the first %s is a path in the filesystem,
+#. * the second %s is PACKAGE_NAME, which by default is "GnuCash"
+#.
+#: ../src/gnome-utils/gnc-file.c:409
+#, c-format
+msgid ""
+"You attempted to save in\n"
+"%s\n"
+"or a subdirectory thereof. This is not allowed as %s reserves that directory for internal use.\n"
+"\n"
+"Please try again in a different directory."
+msgstr ""
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2900
+#: ../src/gnome-utils/gnc-file.c:416
#, fuzzy
-msgid "Vendor / Memo"
-msgstr "Leverandørrapport"
+msgid "This database is from an older version of GnuCash. Select OK to upgrade it to the current version, Cancel to mark it read-only."
+msgstr "Denne database er fra en ældre version af GnuCash. Vil du opgradere databasen til den nuværende version?"
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2918
-msgid "Description / Notes / Memo"
+#: ../src/gnome-utils/gnc-file.c:425
+msgid "This database is from a newer version of GnuCash. This version can read it, but cannot safely save to it. It will be marked read-only until you do File>Save As, but data may be lost in writing to the old version."
msgstr ""
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2948
-#, fuzzy
-msgid "Void Reason"
-msgstr "Kun ikoner"
-
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2952
-#, fuzzy
-msgid "Accounts / Void Reason"
-msgstr "Kontonummer"
+#: ../src/gnome-utils/gnc-file.c:434
+msgid "The SQL database is in use by other users, and the upgrade cannot be performed until they logoff. If there are currently no other users, consult the documentation to learn how to clear out dangling login sessions."
+msgstr "SQL-databasen er i brug af andre brugere, og opgraderingen kan ikke udføres før de er logget ud. Hvis der ikke er nogen brugere nu, så se i dokumentationen for at finde ud af hvordan man fjerner hængende logind-sessioner."
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2962
-#: ../src/import-export/import-main-matcher.c:492
-msgid "R"
+#: ../src/gnome-utils/gnc-file.c:444
+msgid "The library \"libdbi\" installed on your system doesn't correctly store large numbers. This means GnuCash cannot use SQL databases correctly. Gnucash will not open or save to SQL databases until this is fixed by installing a different version of \"libdbi\". Please see https://bugzilla.gnome.org/show_bug.cgi?id=611936 for more information."
msgstr ""
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3006
-#, fuzzy
-msgid "Amount / Value"
-msgstr "Forfalden beløb"
+#: ../src/gnome-utils/gnc-file.c:456
+msgid "GnuCash could not complete a critical test for the presence of a bug in the \"libdbi\" library. This may be caused by a permissions misconfiguration of your SQL database. Please see https://bugzilla.gnome.org/show_bug.cgi?id=645216 for more information."
+msgstr ""
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3026
-#, fuzzy
-msgid "Rate"
-msgstr "Skatte_relateret"
+#: ../src/gnome-utils/gnc-file.c:466
+msgid "This file is from an older version of GnuCash and will be upgraded when saved by this version. You will not be able to read the saved file from the older version of Gnucash (it will report an \"error parsing the file\"). If you wish to preserve the old version, exit without saving."
+msgstr ""
-#. src/app-utils/prefs.scm
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3048
-#: ../src/import-export/csv-imp/gnc-csv-model.c:51
-#: ../intl-scm/guile-strings.c:280
-msgid "Withdrawal"
-msgstr "Udtræk"
+#: ../src/gnome-utils/gnc-file.c:477
+#, c-format
+msgid "An unknown I/O error (%d) occurred."
+msgstr "Der opstod en ukendt I/O-fejl (%d)."
-#. src/app-utils/prefs.scm
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3053
-#: ../intl-scm/guile-strings.c:282
-msgid "Spend"
-msgstr "Forbrug"
+#: ../src/gnome-utils/gnc-file.c:573
+msgid "Save changes to the file?"
+msgstr "Gem ændringer til filen?"
-#. src/app-utils/prefs.scm
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3103
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3110
-#: ../intl-scm/guile-strings.c:278
-msgid "Funds Out"
-msgstr "Beløb ud"
+#: ../src/gnome-utils/gnc-file.c:586 ../src/gnome-utils/gnc-main-window.c:1252
+#, fuzzy, c-format
+msgid "If you don't save, changes from the past %d minute will be discarded."
+msgid_plural "If you don't save, changes from the past %d minutes will be discarded."
+msgstr[0] "Hvis du ikke gemmer, vil ændringer fra de sidste %d minutter gå tabt."
+msgstr[1] "Hvis du ikke gemmer, vil ændringer fra de sidste %d minutter gå tabt."
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3112
-#: ../src/register/ledger-core/split-register-model.c:482
-#, fuzzy
-msgid "Credit Formula"
-msgstr "Kreditkort"
+#: ../src/gnome-utils/gnc-file.c:590
+msgid "Continue _Without Saving"
+msgstr "Fortsæt _uden at gemme"
-#. src/app-utils/prefs.scm
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3133
-#: ../src/import-export/csv-imp/gnc-csv-model.c:50
-#: ../intl-scm/guile-strings.c:250
-msgid "Deposit"
-msgstr "Indsæt"
+#: ../src/gnome-utils/gnc-file.c:747
+#, c-format
+msgid "GnuCash could not obtain the lock for %s."
+msgstr "GnuCash kunne ikke hente låsen for %s."
-#. src/app-utils/prefs.scm
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3138
-#: ../intl-scm/guile-strings.c:252
-msgid "Receive"
-msgstr "Modtag"
+#: ../src/gnome-utils/gnc-file.c:749
+msgid "That database may be in use by another user, in which case you should not open the database. What would you like to do?"
+msgstr "Denne database kan være i brug af en anden bruger. I så fald bør du ikke åbne databasen. Hvad ønsker du at gøre?"
-#. src/app-utils/prefs.scm
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3184
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3191
-#: ../intl-scm/guile-strings.c:248
-msgid "Funds In"
-msgstr "Beløb ind"
+#: ../src/gnome-utils/gnc-file.c:752
+msgid "That database may be on a read-only file system, or you may not have write permission for the directory. If you proceed you may not be able to save any changes. What would you like to do?"
+msgstr "Databasen befinder sig måske på et skrivebeskyttet filsystem, eller du har måske ikke skriverettigheder til mappen. Hvis du fortsætter, vil du ikke kunne gemme ændringer. Hvad ønsker du at gøre?"
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3193
-#: ../src/register/ledger-core/split-register-model.c:475
-#, fuzzy
-msgid "Debit Formula"
-msgstr "Datoformat"
+#: ../src/gnome-utils/gnc-file.c:778
+msgid "_Open Read-Only"
+msgstr ""
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3263
-#, fuzzy
-msgid "Enter Due Date"
-msgstr "Forfaldsdato"
+#: ../src/gnome-utils/gnc-file.c:780
+msgid "_Create New File"
+msgstr "_Opret ny fil"
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3274
+#: ../src/gnome-utils/gnc-file.c:782
#, fuzzy
-msgid "Enter the transaction reference, such as the invoice or check number"
-msgstr "Indtast transaktionsnummeret (f.eks. checknummeret)"
-
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3276
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3283
-msgid "Enter the type of transaction, or choose one from the list"
-msgstr "Indtast transaktionens type, eller vælg en fra listen"
+msgid "Open _Anyway"
+msgstr "_Ã
bn alligevel"
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3281
-msgid "Enter the transaction number, such as the check number"
-msgstr "Indtast transaktionsnummeret (f.eks. checknummeret)"
+#. try to load once again
+#: ../src/gnome-utils/gnc-file.c:866 ../src/gnome-utils/gnc-file.c:886
+msgid "Loading user data..."
+msgstr "Indlæser brugerdata ..."
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3293
-#: ../src/register/ledger-core/split-register-model.c:1021
-msgid "Enter the name of the Customer"
-msgstr "Angiv navnet på kunden"
+#: ../src/gnome-utils/gnc-file.c:902
+msgid "Re-saving user data..."
+msgstr "Gemmer brugerdata igen ..."
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3295
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3304
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3313
-#: ../src/register/ledger-core/split-register-model.c:1058
-msgid "Enter notes for the transaction"
-msgstr "Indtast bemærkninger til transaktionen"
+#: ../src/gnome-utils/gnc-file.c:1183 ../src/gnome-utils/gnc-file.c:1424
+#: ../src/import-export/csv-exp/assistant-csv-export.c:124
+#: ../src/report/report-gnome/gnc-plugin-page-report.c:1456
+#, c-format
+msgid "The file %s already exists. Are you sure you want to overwrite it?"
+msgstr "Filen %s eksisterer allerede. Er du sikker på, at du vil overskrive den?"
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3297
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3306
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3315
-#: ../src/register/ledger-core/split-register-model.c:1217
-msgid "Enter a description of the split"
-msgstr "Angiv en beskrivelse af opsplitningen"
+#: ../src/gnome-utils/gnc-file.c:1212
+msgid "Exporting file..."
+msgstr "Eksporterer fil ..."
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3302
-#: ../src/register/ledger-core/split-register-model.c:1024
-msgid "Enter the name of the Vendor"
-msgstr "Angiv navnet på leverandøren"
+#. %s is the strerror(3) error string of the error that occurred.
+#: ../src/gnome-utils/gnc-file.c:1225
+#, c-format
+msgid ""
+"There was an error saving the file.\n"
+"\n"
+"%s"
+msgstr ""
+"Der opstod en fejl under gemning af filen.\n"
+"\n"
+"%s"
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3311
-#: ../src/register/ledger-core/split-register-model.c:1027
-msgid "Enter a description of the transaction"
-msgstr "Indtast en beskrivelse af transaktionen"
+#: ../src/gnome-utils/gnc-file.c:1257
+#, fuzzy
+msgid "The database was opened read-only. Do you want to save it to a different place?"
+msgstr "Databasen %s lader ikke til at eksistere. Vil du oprette den?"
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3325
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3329
-#: ../src/register/ledger-core/split-register-model.c:1376
-#: ../src/register/ledger-core/split-register-model.c:1442
-msgid "Enter the account to transfer from, or choose one from the list"
-msgstr "Vælg kontoen at overføre fra, eller vælg en fra listen"
+#: ../src/gnome-utils/gnc-general-select.c:218
+msgid "View..."
+msgstr "Vis..."
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3327
-#: ../src/register/ledger-core/split-register-model.c:1091
+#: ../src/gnome-utils/gnc-gnome-utils.c:236
#, fuzzy
-msgid "Reason the transaction was voided"
-msgstr "Indsæt fra transaktionsklippebordet"
+msgid "GnuCash could not find the files for the help documentation. This is likely because the 'gnucash-docs' package is not installed"
+msgstr "GnuCash kunne ikke finde filerne med dokumentationen. Det skyldes sikkert at pakken 'gnucash-docs' ikke er installeret."
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3339
+#: ../src/gnome-utils/gnc-gnome-utils.c:329
+#: ../src/gnome-utils/gnc-gnome-utils.c:391
#, fuzzy
-msgid "Enter the reconcile type"
-msgstr "Sorter efter udskriftsdato"
+msgid "GnuCash could not find the files for the help documentation. This is likely because the 'gnucash-docs' package is not installed."
+msgstr "GnuCash kunne ikke finde filerne med dokumentationen. Det skyldes sikkert at pakken 'gnucash-docs' ikke er installeret."
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3349
+#: ../src/gnome-utils/gnc-gnome-utils.c:360
+msgid "GnuCash could not find the files for the help documentation."
+msgstr "GnuCash kunne ikke finde filerne med dokumentationen."
+
+#: ../src/gnome-utils/gnc-gnome-utils.c:415
+#: ../src/gnome-utils/gnc-gnome-utils.c:440
#, fuzzy
-msgid "Enter the type of transaction"
-msgstr "Angiv posttypen"
+msgid "GnuCash could not find the associated file."
+msgstr "GnuCash kunne ikke hente låsen for %s."
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3359
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3379
+#: ../src/gnome-utils/gnc-gnome-utils.c:466
#, fuzzy
-msgid "Enter the value of shares bought or sold"
-msgstr "Indtast antallet af købte eller solgte aktier"
+msgid "GnuCash could not open the associated URI:"
+msgstr "GnuCash kunne ikke hente låsen for %s."
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3369
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3381
-#: ../src/register/ledger-core/split-register-model.c:1325
-msgid "Enter the number of shares bought or sold"
-msgstr "Indtast antallet af købte eller solgte aktier"
+#: ../src/gnome-utils/gnc-icons.c:19
+msgid "_Delete Account"
+msgstr "_Slet konto"
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3391
-#, fuzzy
-msgid "* Indicates the transaction Commodity."
-msgstr "Vis transaktionsdatoen?"
+#: ../src/gnome-utils/gnc-icons.c:20 ../src/gnome/window-reconcile2.c:2179
+#: ../src/gnome/window-reconcile.c:2179
+msgid "_Edit Account"
+msgstr "_Redigér konto"
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3401
-#, fuzzy
-msgid "Enter the rate"
-msgstr "Rente"
+#: ../src/gnome-utils/gnc-icons.c:21
+msgid "_New Account"
+msgstr "_Ny konto"
+
+#: ../src/gnome-utils/gnc-icons.c:22 ../src/gnome/window-reconcile2.c:2174
+#: ../src/gnome/window-reconcile.c:2174
+msgid "_Open Account"
+msgstr "_Ã
bn konto"
+
+#. Translators: %s is a path to a database or any other url,
+#. like mysql://user@server.somewhere/somedb, http://www.somequotes.com/thequotes
+#: ../src/gnome-utils/gnc-keyring.c:276
+#, c-format
+msgid "Enter a user name and password to connect to: %s"
+msgstr "Skriv dit brugernavn og adgangskode for at forbinde til: %s"
+
+#: ../src/gnome-utils/gnc-main-window.c:123
+#, c-format
+msgid "Changes will be saved automatically in %u seconds"
+msgstr ""
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3411
-#: ../src/register/ledger-core/split-register-model.c:1289
-msgid "Enter the effective share price"
-msgstr "Indtast den effektive aktiepris"
+#. Toplevel
+#: ../src/gnome-utils/gnc-main-window.c:259
+msgid "_File"
+msgstr "_Fil"
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3421
-#: ../src/register/ledger-core/split-register-model.c:2147
-#, fuzzy
-msgid "Enter credit formula for real transaction"
-msgstr "Indtast noter for transaktionen"
+#: ../src/gnome-utils/gnc-main-window.c:263
+msgid "Tra_nsaction"
+msgstr "Tra_nsaktion"
-#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3431
-#: ../src/register/ledger-core/split-register-model.c:2117
-#, fuzzy
-msgid "Enter debit formula for real transaction"
-msgstr "Indtast noter for transaktionen"
+#: ../src/gnome-utils/gnc-main-window.c:264
+msgid "_Reports"
+msgstr "_Rapporter"
-#. Translators: This string has a context prefix; the translation
-#. must only contain the part after the | character.
-#: ../src/gnome-utils/gnc-tree-view-sx-list.c:171
-msgid "Single-character short column-title form of 'Enabled'|E"
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:265
+msgid "_Tools"
+msgstr "_Værktøj"
-#: ../src/gnome-utils/gnc-tree-view-sx-list.c:182
-#, fuzzy
-msgid "Last Occur"
-msgstr "Sidste år"
+#: ../src/gnome-utils/gnc-main-window.c:266
+msgid "E_xtensions"
+msgstr "_Udvidelser"
-#: ../src/gnome-utils/gnc-tree-view-sx-list.c:187
-msgid "Next Occur"
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:267
+msgid "_Windows"
+msgstr "_Vinduer"
-#: ../src/gnome-utils/gschemas/org.gnucash.history.gschema.xml.in.in.h:1
-msgid "Number of files in history"
-msgstr "Antal filer i historikken"
+#. Add the help button for the matcher
+#: ../src/gnome-utils/gnc-main-window.c:268
+#: ../src/gnome/window-reconcile2.c:2145 ../src/gnome/window-reconcile2.c:2226
+#: ../src/gnome/window-reconcile.c:2145 ../src/gnome/window-reconcile.c:2226
+#: ../src/import-export/csv-imp/assistant-csv-trans-import.c:1528
+msgid "_Help"
+msgstr "_Hjælp"
-#: ../src/gnome-utils/gschemas/org.gnucash.history.gschema.xml.in.in.h:2
-msgid "This setting contains the number of files to keep in the Recently Opened Files menu. This value may be set to zero to disable the file history. This number has a maximum value of 10."
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:275
+msgid "_Print..."
+msgstr "_Udskriv..."
-#: ../src/gnome-utils/gschemas/org.gnucash.history.gschema.xml.in.in.h:3
-msgid "Most recently opened file"
-msgstr "Den seneste åbnede fil"
+#: ../src/gnome-utils/gnc-main-window.c:276
+msgid "Print the currently active page"
+msgstr "Udskriv den aktuelle side"
-#: ../src/gnome-utils/gschemas/org.gnucash.history.gschema.xml.in.in.h:4
-msgid "This field contains the full path of the most recently opened file."
-msgstr "Dette felt indeholder den fulde sti på den senest åbnede fil."
+#: ../src/gnome-utils/gnc-main-window.c:282
+msgid "Pa_ge Setup..."
+msgstr "Sideopsætnin_g..."
-#: ../src/gnome-utils/gschemas/org.gnucash.history.gschema.xml.in.in.h:5
-msgid "Next most recently opened file"
-msgstr "Den næstseneste åbnede fil"
+#: ../src/gnome-utils/gnc-main-window.c:283
+msgid "Specify the page size and orientation for printing"
+msgstr "Angiv sidestørrelse og orientering for udskrivning"
-#: ../src/gnome-utils/gschemas/org.gnucash.history.gschema.xml.in.in.h:6
-msgid "This field contains the full path of the next most recently opened file."
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:287
+msgid "Proper_ties"
+msgstr "Ege_nskaber"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:1
-#, fuzzy
-msgid "Print checks from multiple accounts"
-msgstr "Match konti"
+#: ../src/gnome-utils/gnc-main-window.c:288
+msgid "Edit the properties of the current file"
+msgstr "Rediger egenskaber på den nuværende fil"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:2
-msgid "This dialog is presented if you try to print checks from multiple accounts at the same time."
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:292
+msgid "_Close"
+msgstr "L_uk"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:3
-#, fuzzy
-msgid "Commit changes to a invoice entry"
-msgstr "'Retur' hopper til tom transaktion"
+#: ../src/gnome-utils/gnc-main-window.c:293
+msgid "Close the currently active page"
+msgstr "Luk den aktuelle side"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:4
-msgid "This dialog is presented when you attempt to move out of a modified invoice entry. The changed data must be either saved or discarded."
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:297
+msgid "_Quit"
+msgstr "_Afslut"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:5
-#, fuzzy
-msgid "Duplicating a changed invoice entry"
-msgstr "Kopier en ændret transaktion"
+#: ../src/gnome-utils/gnc-main-window.c:298
+msgid "Quit this application"
+msgstr "Afslut programmet"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:6
-msgid "This dialog is presented when you attempt to duplicate a modified invoice entry. The changed data must be saved or the duplication canceled."
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:320
+msgid "Pr_eferences"
+msgstr "Indstilling_er"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:7
-#, fuzzy
-msgid "Delete a commodity"
-msgstr "Du skal vælge en vare."
+#: ../src/gnome-utils/gnc-main-window.c:321
+msgid "Edit the global preferences of GnuCash"
+msgstr "Rediger de globale indstillinger for GnuCash"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:8
-msgid "This dialog is presented before allowing you to delete a commodity."
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:329
+msgid "Select sorting criteria for this page view"
+msgstr "Vælg sorteringskriterie for denne sidevisning"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:9
-#, fuzzy
-msgid "Delete a commodity with price quotes"
-msgstr "Identiske varer"
+#: ../src/gnome-utils/gnc-main-window.c:333
+msgid "Select the account types that should be displayed."
+msgstr "Vis de kontotyper som skal vises."
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:10
-msgid "This dialog is presented before allowing you to delete a commodity that has price quotes attached. Deleting the commodity will delete the quotes as well."
-msgstr ""
+#. Actions menu
+#: ../src/gnome-utils/gnc-main-window.c:343
+#: ../src/gnome/window-reconcile2.c:2189 ../src/gnome/window-reconcile.c:2189
+msgid "_Check & Repair"
+msgstr "_Tjek og reparer"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:11
-#, fuzzy
-msgid "Delete multiple price quotes"
-msgstr "Kilden for pristilbud:"
+#: ../src/gnome-utils/gnc-main-window.c:345
+msgid "Reset _Warnings..."
+msgstr "Nulstil ad_varsler..."
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:12
-msgid "This dialog is presented before allowing you to delete multiple price quotes at one time."
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:346
+msgid "Reset the state of all warning messages so they will be shown again."
+msgstr "Nulstil status på alle advarselsbeskeder, så de vises igen."
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:13
-#, fuzzy
-msgid "Edit account payable/accounts receivable register"
-msgstr "Valgte konti:"
+#: ../src/gnome-utils/gnc-main-window.c:350
+msgid "Re_name Page"
+msgstr "Omd_øb side"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:14
-msgid "This dialog is presented before allowing you to edit an accounts payable/accounts receivable account. These account types are reserved for the business features and should rarely be manipulated manually."
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:351
+msgid "Rename this page."
+msgstr "Omdøb denne side."
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:15
-#, fuzzy
-msgid "Read only register"
-msgstr "Kassekladde"
+#: ../src/gnome-utils/gnc-main-window.c:358
+msgid "_New Window"
+msgstr "_Nyt vindue"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:16
-msgid "This dialog is presented when a read-only register is opened."
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:359
+msgid "Open a new top-level GnuCash window."
+msgstr "Ã
bn et nyt topniveauvindue for GnuCash."
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:17
-msgid "Change contents of reconciled split"
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:363
+msgid "New Window with _Page"
+msgstr "Nyt vindue med _side"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:18
-msgid "This dialog is presented before allowing you to change the contents of a reconciled split. Allowing these changes can make it hard to perform future reconciliations."
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:364
+msgid "Move the current page to a new top-level GnuCash window."
+msgstr "Flyt den aktuelle side til et nyt topniveauvindue for GnuCash."
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:19
-msgid "Mark transaction split as unreconciled"
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:371
+msgid "Tutorial and Concepts _Guide"
+msgstr "Eksempel- og begrebsvejledning"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:20
-msgid "This dialog is presented before allowing you to mark a transaction split as unreconciled. Doing so will throw off the reconciled value of the register and can make it hard to perform future reconciliations."
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:372
+msgid "Open the GnuCash Tutorial"
+msgstr "Ã
bn GnuCash-eksemplet"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:21
-#, fuzzy
-msgid "Remove a split from a transaction"
-msgstr "'Retur' hopper til tom transaktion"
+#: ../src/gnome-utils/gnc-main-window.c:376
+msgid "_Contents"
+msgstr "_Indhold"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:22
-msgid "This dialog is presented before allowing you to remove a split from a transaction."
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:377
+msgid "Open the GnuCash Help"
+msgstr "Ã
bn GnuCash-manualen"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:23
-#, fuzzy
-msgid "Remove a reconciled split from a transaction"
-msgstr "'Retur' hopper til tom transaktion"
+#: ../src/gnome-utils/gnc-main-window.c:381
+msgid "_About"
+msgstr "_Om"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:24
-msgid "This dialog is presented before allowing you to remove a reconciled split from a transaction. Doing so will throw off the reconciled value of the register and can make it hard to perform future reconciliations."
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:382
+msgid "About GnuCash"
+msgstr "Om GnuCash"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:25
-#, fuzzy
-msgid "Remove all the splits from a transaction"
-msgstr "Vis alle opsplitninger i den aktuelle transaktion"
+#: ../src/gnome-utils/gnc-main-window.c:394
+msgid "_Toolbar"
+msgstr "_Værktøjslinje"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:26
-msgid "This dialog is presented before allowing you to remove all splits from a transaction."
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:395
+msgid "Show/hide the toolbar on this window"
+msgstr "Vis/skjul værktøjslinjen på dette vindue"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:27
-msgid "This dialog is presented before allowing you to remove all splits (including some reconciled splits) from a transaction. Doing so will throw off the reconciled value of the register and can make it hard to perform future reconciliations."
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:399
+msgid "Su_mmary Bar"
+msgstr "Resu_mebjælke"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:28
-#, fuzzy
-msgid "Delete a transaction"
-msgstr "Slet transaktion"
+#: ../src/gnome-utils/gnc-main-window.c:400
+msgid "Show/hide the summary bar on this window"
+msgstr "Vis/skjul oversigtsbjælken på dette vindue"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:29
-msgid "This dialog is presented before allowing you to delete a transaction."
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:404
+msgid "Stat_us Bar"
+msgstr "Stat_usbjælke"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:30
-#, fuzzy
-msgid "Delete a transaction with reconciled splits"
-msgstr "Du kan ikke gøre en transaktion ugyldig som har afstemte eller ryddede opdelinger."
+#: ../src/gnome-utils/gnc-main-window.c:405
+msgid "Show/hide the status bar on this window"
+msgstr "Vis/skjul statusbjælken på dette vindue"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:31
-msgid "This dialog is presented before allowing you to delete a transaction that contains reconciled splits. Doing so will throw off the reconciled value of the register and can make it hard to perform future reconciliations."
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:417
+msgid "Window _1"
+msgstr "Vindue _1"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:32
-msgid "Duplicating a changed transaction"
-msgstr "Kopier en ændret transaktion"
+#: ../src/gnome-utils/gnc-main-window.c:418
+msgid "Window _2"
+msgstr "Vindue _2"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:33
-msgid "This dialog is presented when you attempt to duplicate a modified transaction. The changed data must be saved or the duplication canceled."
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:419
+msgid "Window _3"
+msgstr "Vindue _3"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:34
-#, fuzzy
-msgid "Commit changes to a transaction"
-msgstr "'Retur' hopper til tom transaktion"
+#: ../src/gnome-utils/gnc-main-window.c:420
+msgid "Window _4"
+msgstr "Vindue _4"
-#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:35
-msgid "This dialog is presented when you attempt to move out of a modified transaction. The changed data must be either saved or discarded."
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:421
+msgid "Window _5"
+msgstr "Vindue _5"
-#: ../src/gnome-utils/gtkbuilder/assistant-xml-encoding.glade.h:1
-msgid "Edit the list of encodings"
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:422
+msgid "Window _6"
+msgstr "Vindue _6"
-#: ../src/gnome-utils/gtkbuilder/assistant-xml-encoding.glade.h:2
-msgid "<b>S_ystem input encodings</b>"
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:423
+msgid "Window _7"
+msgstr "Vindue _7"
-#: ../src/gnome-utils/gtkbuilder/assistant-xml-encoding.glade.h:3
-msgid "<b>_Custom encoding</b>"
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:424
+msgid "Window _8"
+msgstr "Vindue _8"
-#: ../src/gnome-utils/gtkbuilder/assistant-xml-encoding.glade.h:4
-msgid "<b>_Selected encodings</b>"
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:425
+msgid "Window _9"
+msgstr "Vindue _9"
-#: ../src/gnome-utils/gtkbuilder/assistant-xml-encoding.glade.h:5
-msgid "Introduction placeholder"
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:426
+msgid "Window _0"
+msgstr "Vindue _0"
-#: ../src/gnome-utils/gtkbuilder/assistant-xml-encoding.glade.h:6
-#, fuzzy
-msgid "Title placeholder"
-msgstr "Sumkonto"
+#: ../src/gnome-utils/gnc-main-window.c:1207
+#, c-format
+msgid "Save changes to file %s before closing?"
+msgstr "Gem ændringer til fil %s før lukning?"
-#: ../src/gnome-utils/gtkbuilder/assistant-xml-encoding.glade.h:7
-msgid "_Edit list of encodings"
-msgstr ""
+#: ../src/gnome-utils/gnc-main-window.c:1210
+#, c-format
+msgid "If you don't save, changes from the past %d hours and %d minutes will be discarded."
+msgstr "Hvis du ikke gemmer, vil ændringer fra de sidste %d timer og %d minutter blive slettet."
-#: ../src/gnome-utils/gtkbuilder/assistant-xml-encoding.glade.h:8
-#, fuzzy
-msgid "Default encoding:"
-msgstr "Standardvaluta"
+#: ../src/gnome-utils/gnc-main-window.c:1212
+#, c-format
+msgid "If you don't save, changes from the past %d days and %d hours will be discarded."
+msgstr "Hvis du ikke gemmer, vil ændringer fra de sidste %d dage og %d timer blive slettet."
-#: ../src/gnome-utils/gtkbuilder/assistant-xml-encoding.glade.h:9
-#, fuzzy
-msgid "Convert the file"
-msgstr "Indlæs endnu en fil"
+#: ../src/gnome-utils/gnc-main-window.c:1220
+msgid "<unknown>"
+msgstr "<ukendt>"
-#: ../src/gnome-utils/gtkbuilder/assistant-xml-encoding.glade.h:10
-#, fuzzy
-msgid "finish placeholder"
-msgstr "Sumkonto"
+#: ../src/gnome-utils/gnc-main-window.c:1257
+msgid "Close _Without Saving"
+msgstr "Luk _uden at gemme"
-#: ../src/gnome-utils/gtkbuilder/assistant-xml-encoding.glade.h:11
-msgid "Finish GnuCash Datafile Import"
+#. Translators: This string is shown in the window title if this
+#. document is, well, read-only.
+#: ../src/gnome-utils/gnc-main-window.c:1495
+msgid "(read-only)"
msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:1
+#: ../src/gnome-utils/gnc-main-window.c:1503
#, fuzzy
-msgid "Use Commodity Value"
-msgstr ""
-"\n"
-"Vare: "
+msgid "Unsaved Book"
+msgstr "Luk"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:3
-msgid "1/10"
+#: ../src/gnome-utils/gnc-main-window.c:1670
+msgid "Last modified on %a, %b %e, %Y at %I:%M%P"
msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:4
-msgid "1/100"
+#: ../src/gnome-utils/gnc-main-window.c:1671
+#, c-format
+msgid "Last modified on %x %X"
msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:5
-msgid "1/1000"
+#. g_warning("got time %ld, str=%s\n", mtime, time_string);
+#. Translators: This message appears in the status bar after opening the file.
+#: ../src/gnome-utils/gnc-main-window.c:1677
+#, fuzzy, c-format
+msgid "File %s opened. %s"
+msgstr "Kunne ikke åbne fil."
+
+#: ../src/gnome-utils/gnc-main-window.c:2701
+msgid "Unable to save to database."
msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:6
-msgid "1/10000"
+#: ../src/gnome-utils/gnc-main-window.c:2703
+msgid "Unable to save to database: Book is marked read-only."
msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:7
-msgid "1/100000"
+#: ../src/gnome-utils/gnc-main-window.c:3992
+#, fuzzy
+msgid "Book Options"
+msgstr "Sand-falsk valgmulighed"
+
+#: ../src/gnome-utils/gnc-main-window.c:4378
+msgid "The GnuCash personal finance manager. The GNU way to manage your money!"
+msgstr "GnuCashs personlige økonomiværktøj. En GNU måde at håndtere dine penge på!"
+
+#: ../src/gnome-utils/gnc-main-window.c:4380
+msgid "© 1997-2014 Contributors"
msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:8
-msgid "1/1000000"
+#. Translators: the following string will be shown in Help->About->Credits
+#. * Enter your name or that of your team and an email contact for feedback.
+#. * The string can have multiple rows, so you can also add a list of
+#. * contributors.
+#: ../src/gnome-utils/gnc-main-window.c:4417
+msgid "translator_credits"
msgstr ""
+"Kenneth Christiansen, 2000.\n"
+"Keld Simonsen, 2000-2002.\n"
+"Johnny Ernst Nielsen, 2001.\n"
+"Claus Hindsgaul, 2001.\n"
+"Ole Laursen, 2001.\n"
+"Joe Hansen, 2009.\n"
+"\n"
+"Dansk-gruppen <dansk at dansk-gruppen.dk>\n"
+"Mere info: http://www.dansk-gruppen.dk"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:10
-msgid "<b>Identification</b>"
-msgstr "<b>Identifikation</b>"
+#: ../src/gnome-utils/gnc-period-select.c:73
+msgid "Start of this quarter"
+msgstr "Starten af dette kvartal"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:11
-msgid "Account _name:"
-msgstr "Konto_navn:"
+#. FY Strings
+#: ../src/gnome-utils/gnc-period-select.c:79
+#, fuzzy
+msgid "Start of this accounting period"
+msgstr "Rapportperiodes start"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:12
-msgid "_Account code:"
-msgstr "_Kontonummer:"
+#: ../src/gnome-utils/gnc-period-select.c:80
+#, fuzzy
+msgid "Start of previous accounting period"
+msgstr "Starten på forrige kvartalsmæssige regnskabsperiode"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:13
-msgid "_Description:"
-msgstr "_Beskrivelse:"
+#: ../src/gnome-utils/gnc-period-select.c:89
+msgid "End of this quarter"
+msgstr "Slutningen af dette kvartal"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:15
+#. FY Strings
+#: ../src/gnome-utils/gnc-period-select.c:95
#, fuzzy
-msgid "Smallest _fraction:"
-msgstr "Indsæt transaktion"
+msgid "End of this accounting period"
+msgstr "Slutningen af forrige kvartalsmæssige regnskabsperiode"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:16
-msgid "Account _Color:"
-msgstr "Konto_farve:"
+#: ../src/gnome-utils/gnc-period-select.c:96
+#, fuzzy
+msgid "End of previous accounting period"
+msgstr "Slutningen af forrige kvartalsmæssige regnskabsperiode"
-#. src/report/report-system/html-style-sheet.scm
-#. src/report/report-system/report.scm
-#. src/report/stylesheets/stylesheet-plain.scm
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:17
-#: ../intl-scm/guile-strings.c:2100
-#: ../intl-scm/guile-strings.c:2328
-#: ../intl-scm/guile-strings.c:5660
-msgid "Default"
-msgstr "Standard"
+#. Development version
+#. Translators: 1st %s is the GnuCash version (eg 2.4.11);
+#. 2nd %s is the scm type (svn/svk/git/bzr);
+#. 3rd %s is the scm revision number;
+#. 4th %s is the build date
+#: ../src/gnome-utils/gnc-splash.c:95
+#, fuzzy, c-format
+msgid "Version: GnuCash-%s %s (rev %s built %s)"
+msgstr "Version: GnuCash-%s svn (r%s version %s)"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:18
-msgid "No_tes:"
-msgstr "No_ter:"
+#. Dist Tarball
+#. Translators: 1st %s is the GnuCash version (eg 2.4.11);
+#. 2nd %s is the scm (svn/svk/git/bzr) revision number;
+#. 3rd %s is the build date
+#: ../src/gnome-utils/gnc-splash.c:103
+#, fuzzy, c-format
+msgid "Version: GnuCash-%s (rev %s built %s)"
+msgstr "Version: GnuCash-%s (r%s version %s)"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:19
-msgid "Ta_x related"
-msgstr "S_katterelateret"
+#: ../src/gnome-utils/gnc-splash.c:120
+msgid "Loading..."
+msgstr "Indlæser..."
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:20
-msgid "Use Edit->Tax Report Options to set the tax-related flag and assign a tax code to this account."
-msgstr ""
+#: ../src/gnome-utils/gnc-sx-list-tree-model-adapter.c:490
+#, fuzzy
+msgid "never"
+msgstr "(aldrig)"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:21
-msgid "Placeholde_r"
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:113
+msgid "You can not change this transaction, the Book or Register is set to Read Only."
msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:22
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:131
#, fuzzy
-msgid "This account is present solely as a placeholder in the hierarchy. Transactions may not be posted to this account, only to sub-accounts of this account."
-msgstr "Denne konto er alene til stede som en sumkonto i hierarkiet. Transaktioner kan ikke posteres på denne konto, kun til underkonti."
-
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:23
-msgid "H_idden"
-msgstr "Skj_ult"
+msgid "Save Transaction before proceeding?"
+msgstr "Gem transaktion før kopiering?"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:24
-msgid "This account (and any sub-accounts) will be hidden in the account tree and will not appear in the popup account list in the register. To reset this option, you will first need to open the \"Filter By...\" dialog for the account tree and check the \"show hidden accounts\" option. Doing so will allow you to select the account and reopen this dialog."
-msgstr ""
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:133
+#, fuzzy
+msgid "The current transaction has been changed. Would you like to record the changes before proceeding, or cancel?"
+msgstr "Den aktuelle transaktion er blevet ændret. Vil du gemme ændringerne før kopiering af denne post, eller afbryde kopieringen?"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:25
-msgid "Smallest fraction of this commodity that can be referenced."
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:185
+msgid "This transaction is being edited in a different register."
msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:26
-msgid "<b>Acco_unt Type</b>"
-msgstr "<b>Kontot_ype</b>"
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:205
+#: ../src/register/ledger-core/split-register-control.c:58
+msgid "Rebalance Transaction"
+msgstr "Genbalancér transaktion"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:27
-msgid "<b>_Parent Account</b>"
-msgstr "<b>_Samlekonto</b>"
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:206
+#: ../src/register/ledger-core/split-register-control.c:59
+msgid "The current transaction is not balanced."
+msgstr "Den nuværende transaktion balancerer ikke."
-#. src/report/report-system/report.scm
-#. src/report/standard-reports/equity-statement.scm
-#. src/report/standard-reports/register.scm
-#. src/report/standard-reports/trial-balance.scm
-#. src/report/stylesheets/stylesheet-easy.scm
-#. src/report/stylesheets/stylesheet-fancy.scm
-#. src/report/stylesheets/stylesheet-footer.scm
-#. src/report/stylesheets/stylesheet-plain.scm
-#. src/report/utility-reports/view-column.scm
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:28
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:100
-#: ../intl-scm/guile-strings.c:2306
-#: ../intl-scm/guile-strings.c:3512
-#: ../intl-scm/guile-strings.c:3514
-#: ../intl-scm/guile-strings.c:4100
-#: ../intl-scm/guile-strings.c:4920
-#: ../intl-scm/guile-strings.c:4922
-#: ../intl-scm/guile-strings.c:4970
-#: ../intl-scm/guile-strings.c:4976
-#: ../intl-scm/guile-strings.c:4982
-#: ../intl-scm/guile-strings.c:4988
-#: ../intl-scm/guile-strings.c:5096
-#: ../intl-scm/guile-strings.c:5100
-#: ../intl-scm/guile-strings.c:5104
-#: ../intl-scm/guile-strings.c:5108
-#: ../intl-scm/guile-strings.c:5182
-#: ../intl-scm/guile-strings.c:5188
-#: ../intl-scm/guile-strings.c:5194
-#: ../intl-scm/guile-strings.c:5200
-#: ../intl-scm/guile-strings.c:5308
-#: ../intl-scm/guile-strings.c:5312
-#: ../intl-scm/guile-strings.c:5316
-#: ../intl-scm/guile-strings.c:5320
-#: ../intl-scm/guile-strings.c:5394
-#: ../intl-scm/guile-strings.c:5400
-#: ../intl-scm/guile-strings.c:5406
-#: ../intl-scm/guile-strings.c:5412
-#: ../intl-scm/guile-strings.c:5418
-#: ../intl-scm/guile-strings.c:5526
-#: ../intl-scm/guile-strings.c:5530
-#: ../intl-scm/guile-strings.c:5534
-#: ../intl-scm/guile-strings.c:5538
-#: ../intl-scm/guile-strings.c:5542
-#: ../intl-scm/guile-strings.c:5616
-#: ../intl-scm/guile-strings.c:5622
-#: ../intl-scm/guile-strings.c:5628
-#: ../intl-scm/guile-strings.c:5822
-#: ../intl-scm/guile-strings.c:5828
-msgid "General"
-msgstr "Generelt"
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:287
+#: ../src/register/ledger-core/split-register-control.c:137
+#, fuzzy
+msgid "Balance it _manually"
+msgstr "Balancér den manuelt"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:29
-msgid "<b>Balance Information</b>"
-msgstr "<b>Saldooplysninger</b>"
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:289
+#: ../src/register/ledger-core/split-register-control.c:139
+#, fuzzy
+msgid "Let GnuCash _add an adjusting split"
+msgstr "Lad GnuCash tilføje en justerende opdeling"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:30
-msgid "<b>Initial Balance Transfer</b>"
-msgstr ""
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:294
+#: ../src/register/ledger-core/split-register-control.c:144
+#, fuzzy
+msgid "Adjust current account _split total"
+msgstr "Justér aktuel konto-opdelingstotal"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:31
-msgid "_Balance:"
-msgstr "_Saldo:"
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:300
+#: ../src/register/ledger-core/split-register-control.c:150
+#, fuzzy
+msgid "Adjust _other account split total"
+msgstr "Justér anden konto-opdeling"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:33
-msgid "_Use equity 'Opening Balances' account"
-msgstr "_Brug åbningsbalancens udligningskonto"
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:311
+#: ../src/register/ledger-core/split-register-control.c:161
+#, fuzzy
+msgid "_Rebalance"
+msgstr "Ubalance"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:34
-msgid "_Select transfer account"
-msgstr "_Vælg overførselskonto"
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:405
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:413
+#: ../src/register/ledger-core/split-register-control.c:1317
+#: ../src/register/ledger-core/split-register-control.c:1330
+msgid "This register does not support editing exchange rates."
+msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:36
-msgid "Delete Account"
-msgstr "Slet konto"
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:421
+#: ../src/register/ledger-core/split-register-control.c:1371
+#: ../src/register/ledger-core/split-register-control.c:1446
+msgid "You need to expand the transaction in order to modify its exchange rates."
+msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:37
-msgid "<b>Transactions</b>"
-msgstr "<b>Transaktioner</b>"
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:461
+#: ../src/register/ledger-core/split-register-control.c:1418
+#: ../src/register/ledger-core/split-register-control.c:1431
+msgid "The two currencies involved equal each other."
+msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:38
-msgid "M_ove to:"
-msgstr "Fl_yt til:"
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1256
+#: ../src/register/ledger-core/split-register.c:507
+msgid "New Split Information"
+msgstr "Ny opdelingsinformation"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:39
-msgid "Delete all _transactions"
-msgstr "Slet alle _transaktioner"
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1306
+msgid "This is the split anchoring this transaction to the register. You can not duplicate it from this register window."
+msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:40
-msgid "This account contains transactions. What would you like to do with these transactions?"
-msgstr "Denne konto indeholder transaktioner. Hvad vil du gøre med disse transaktioner?"
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1359
+#: ../src/gnome-utils/gnc-tree-util-split-reg.c:501
+#: ../src/register/ledger-core/split-register.c:609
+#: ../src/register/register-gnome/datecell-gnome.c:104
+msgid "Cannot store a transaction at this date"
+msgstr "Kan ikke lagre en transakton på denne dato"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:41
-msgid "This account contains read-only transactions which may not be deleted."
-msgstr "Denne konto indeholder skrivebeskyttede transaktioner, som ikke må slettes."
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1361
+#: ../src/register/ledger-core/split-register.c:611
+msgid "The entered date of the duplicated transaction is older than the \"Read-Only Threshold\" set for this book. This setting can be changed in File -> Properties -> Accounts."
+msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:42
-msgid "<b>Sub-accounts</b>"
-msgstr "<b>Underkonti</b>"
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1725
+msgid "Not enough information for Blank Transaction?"
+msgstr "Ikke nok information for tom transaktion?"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:43
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1727
#, fuzzy
-msgid "This account contains sub-accounts. What would you like to do with these sub-accounts?"
-msgstr "Denne konto indeholder underkonti. Hvad ønsker du at gøre med disse underkonti?"
-
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:44
-msgid "_Move to:"
-msgstr "_Flyt til:"
-
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:45
-msgid "Delete all _subaccounts"
-msgstr "Vælg alle u_nderkonti"
+msgid "The blank transaction does not have enough information to save it. Would you like to return to the transaction to update, or cancel the save?"
+msgstr "Den aktuelle transaktion er blevet ændret. Vil du gemme ændringerne før kopiering af transaktionen, eller afbryde kopieringen?"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:46
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1738
#, fuzzy
-msgid "<b>Sub-account Transactions</b>"
-msgstr "Klip transaktion"
-
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:47
-msgid "One or more sub-accounts contain transactions. What would you like to do with these transactions?"
-msgstr "En eller flere underkonti indeholder transaktioner. Hvad vil du gøre med disse transaktioner?"
-
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:48
-msgid "One or more sub-accounts contain read-only transactions which may not be deleted."
-msgstr "En eller flere underkonti indeholder transaktioner der kun kan læse og ikke må slettes."
+msgid "_Return"
+msgstr "Kapitalgevinst"
-#. src/report/standard-reports/transaction.scm
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:49
-#: ../src/gnome-utils/gtkbuilder/gnc-tree-view-owner.glade.h:1
-#: ../intl-scm/guile-strings.c:4498
-msgid "Filter By..."
-msgstr "Filtrer efter..."
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1781
+#: ../src/register/ledger-core/split-register-control.c:1828
+msgid "Mark split as unreconciled?"
+msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:52
-msgid "_Default"
-msgstr "_Standard"
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1783
+#: ../src/register/ledger-core/split-register-control.c:1830
+#, fuzzy
+msgid "You are about to mark a reconciled split as unreconciled. Doing so might make future reconciliation difficult! Continue with this change?"
+msgstr ""
+"Vil du virkelig markere denne transaktion som ikke-afstemt?\n"
+"Hvis du gør det kan fremtidige afstemninger blive svære!"
-#. src/report/standard-reports/account-summary.scm
-#. src/report/standard-reports/sx-summary.scm
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:53
-#: ../intl-scm/guile-strings.c:2520
-#: ../intl-scm/guile-strings.c:4272
-msgid "Account Type"
-msgstr "Kontotype"
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1827
+#: ../src/register/ledger-core/split-register-control.c:1847
+#, fuzzy
+msgid "_Unreconcile"
+msgstr "_Afstem"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:54
-msgid "Show _hidden accounts"
-msgstr "Vis _skjulte konti"
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1912
+#: ../src/register/ledger-core/split-register-model.c:2008
+msgid "Change reconciled split?"
+msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:55
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1914
+#: ../src/register/ledger-core/split-register-model.c:2010
#, fuzzy
-msgid "Show accounts which have the option \"Hidden\" checked."
-msgstr "Vis konti som er blevet markeret som skjult."
+msgid "You are about to change a reconciled split. Doing so might make future reconciliation difficult! Continue with this change?"
+msgstr ""
+"Vil du virkelig markere denne transaktion som ikke-afstemt?\n"
+"Hvis du gør det kan fremtidige afstemninger blive svære!"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:56
-msgid "Show _zero total accounts"
-msgstr "Vis kont_i med nul i saldo"
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1919
+#: ../src/register/ledger-core/split-register-model.c:2015
+msgid "Change split linked to a reconciled split?"
+msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:57
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1921
+#: ../src/register/ledger-core/split-register-model.c:2017
#, fuzzy
-msgid "Show accounts which have a zero total value."
-msgstr "Skjul konti som har en sum på nul."
+msgid "You are about to change a split that is linked to a reconciled split. Doing so might make future reconciliation difficult! Continue with this change?"
+msgstr ""
+"Vil du virkelig markere denne transaktion som ikke-afstemt?\n"
+"Hvis du gør det kan fremtidige afstemninger blive svære!"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:59
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1935
+#: ../src/register/ledger-core/split-register-model.c:2031
#, fuzzy
-msgid "Renumber sub-accounts"
-msgstr "Inkludér underkonti"
+msgid "Chan_ge Split"
+msgstr "_Opdel"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:60
-msgid "Prefix:"
-msgstr "Præfiks:"
+#: ../src/gnome-utils/gnc-tree-control-split-reg.c:2123
+msgid "You can not paste from the general ledger to a register."
+msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:61
-msgid "Examples:"
-msgstr "Eksempler:"
+#: ../src/gnome-utils/gnc-tree-model-account.c:630
+msgid "New top level account"
+msgstr "Ny topniveaukonto"
+
+#. Translators: This string has a context prefix; the translation
+#. must only contain the part after the | character.
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2879
+#: ../src/register/ledger-core/split-register.c:2417
+msgid "Action Column|Deposit"
+msgstr ""
+
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2880
+#: ../src/register/ledger-core/split-register.c:2418
+msgid "Withdraw"
+msgstr "Udtræk"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:62
-msgid "Interval:"
-msgstr "Interval:"
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2881
+#: ../src/register/ledger-core/split-register.c:2419
+msgid "Check"
+msgstr "Check"
-#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:63
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2883
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2914
+#: ../src/register/ledger-core/split-register.c:2421
+#: ../src/register/ledger-core/split-register.c:2452
#, fuzzy
-msgid "_Renumber"
-msgstr "Nummer"
+msgid "ATM Deposit"
+msgstr "Indsæt"
-#: ../src/gnome-utils/gtkbuilder/dialog-book-close.glade.h:3
-msgid "Income Total:"
-msgstr "Samlet indtægt:"
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2884
+#: ../src/register/ledger-core/split-register.c:2422
+#: ../src/register/ledger-core/split-register.c:2453
+msgid "ATM Draw"
+msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-book-close.glade.h:4
-msgid "Expense Total:"
-msgstr "Samlet udgift:"
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2885
+#: ../src/register/ledger-core/split-register.c:2423
+msgid "Teller"
+msgstr "Kasserer"
-#: ../src/gnome-utils/gtkbuilder/dialog-book-close.glade.h:5
-#: ../src/gnome-utils/gtkbuilder/dialog-transfer.glade.h:6
-msgid "Description:"
-msgstr "Beskrivelse:"
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2888
+#: ../src/register/ledger-core/split-register.c:2426
+#, fuzzy
+msgid "Receipt"
+msgstr "Modtag"
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:1
-msgid "Select security/currency "
-msgstr "Vælg værdipapir/valuta "
+#. Action: Point Of Sale
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2892
+#: ../src/register/ledger-core/split-register.c:2430
+msgid "POS"
+msgstr "POS"
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:2
-msgid "Select user information here..."
-msgstr "Vælg brugerinformation her..."
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2893
+#: ../src/gnome-utils/gnc-tree-view-owner.c:444
+#: ../src/register/ledger-core/split-register.c:2431
+#: ../src/report/business-reports/taxinvoice.eguile.scm:185
+msgid "Phone"
+msgstr "Telefon"
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:4
-msgid "Enter the full name of the commodity. Example: Cisco Systems Inc., or Apple Computer, Inc."
-msgstr "Angiv det fulde navn for varen. Eksempel: Cisco Sytems Inc. eller Apple Computer, Inc."
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2894
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2920
+#: ../src/register/ledger-core/split-register.c:2432
+#: ../src/register/ledger-core/split-register.c:2458
+msgid "Online"
+msgstr "Opkoblet"
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:5
-msgid "Enter the ticker symbol for the commodity (e.g. CSCO or AAPL). If you are retrieving quotes online, this field must exactly match the ticker symbol used by the quote source (including case). "
-msgstr ""
+#. Action: Automatic Deposit
+#. Action: Automatic Deposit ?!?
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2896
+#: ../src/register/ledger-core/split-register.c:2434
+msgid "AutoDep"
+msgstr "AutoAfh"
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:6
-msgid "Enter a unique code used to identify the commodity. Or, you may safely leave this field blank."
-msgstr "Angiv en unik kode, der identificerer varen. Du kan også lade feltet være tomt."
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2897
+#: ../src/register/ledger-core/split-register.c:2435
+msgid "Wire"
+msgstr "Overfør elektronisk"
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:7
-msgid "1 /"
-msgstr "1 /"
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2899
+#: ../src/register/ledger-core/split-register.c:2437
+msgid "Direct Debit"
+msgstr "Direkte Debet"
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:8
-msgid "Enter the smallest fraction of the commodity which can be traded. For stocks which can only be traded in whole numbers, enter 1."
-msgstr "Angiv den mindste del af varen, der kan handles. For aktier, som kun kan handles i hele antal, skal du vælge 1."
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2911
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2918
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2967
+#: ../src/register/ledger-core/split-register.c:2449
+#: ../src/register/ledger-core/split-register.c:2456
+#: ../src/register/ledger-core/split-register.c:2505
+msgid "Fee"
+msgstr "Gebyr"
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:9
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2915
#, fuzzy
-msgid "<b>Quote Source Information</b>"
-msgstr "Prisinformation"
+msgid "ATM Withdraw"
+msgstr "Udtræk"
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:10
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2946
+#: ../src/register/ledger-core/split-register.c:2484
#, fuzzy
-msgid "Type of quote source:"
-msgstr "Søgetype"
-
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:11
-msgid "_Full name:"
-msgstr "_Fulde navn:"
-
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:12
-msgid "_Symbol/abbreviation:"
-msgstr "_Symbol/forkortelse:"
+msgid "Paycheck"
+msgstr "Check"
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:13
-msgid "ISIN, CUSI_P or other code:"
-msgstr "ISIN, CUSI_P eller anden kode:"
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2966
+#: ../src/gnome-utils/gnc-tree-view-price.c:455
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3036
+#: ../src/register/ledger-core/split-register.c:2504
+#: ../src/register/ledger-core/split-register-model.c:379
+#: ../src/report/business-reports/easy-invoice.scm:269
+#: ../src/report/business-reports/fancy-invoice.scm:279
+#: ../src/report/business-reports/invoice.scm:264
+#: ../src/report/standard-reports/advanced-portfolio.scm:1066
+#: ../src/report/standard-reports/general-journal.scm:112
+#: ../src/report/standard-reports/general-ledger.scm:87
+#: ../src/report/standard-reports/portfolio.scm:247
+#: ../src/report/standard-reports/price-scatter.scm:41
+#: ../src/report/standard-reports/price-scatter.scm:346
+#: ../src/report/standard-reports/register.scm:141
+#: ../src/report/standard-reports/register.scm:425
+#: ../src/report/standard-reports/transaction.scm:396
+#: ../src/report/standard-reports/transaction.scm:456
+#: ../src/report/standard-reports/transaction.scm:957
+msgid "Price"
+msgstr "Pris"
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:14
+#. Action: Dividend
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2969
+#: ../src/register/ledger-core/split-register.c:2507
#, fuzzy
-msgid "F_raction traded:"
-msgstr "Handlet andel:"
-
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:15
-msgid "Warning: Finance::Quote not installed properly."
-msgstr ""
+msgid "Dividend"
+msgstr "Udbytter"
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:16
-msgid "_Get Online Quotes"
-msgstr "_Hent kurser på nettet"
+#. Action: Long Term Capital Gains
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2972
+#: ../src/register/ledger-core/split-register.c:2510
+msgid "LTCG"
+msgstr "Langsigtet gevinst"
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:17
-msgid "Si_ngle:"
-msgstr "E_nkel:"
+#. Action: Short Term Capital Gains
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2974
+#: ../src/register/ledger-core/split-register.c:2512
+msgid "STCG"
+msgstr "Kortsigtet gevinst"
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:18
-msgid "These are F::Q quote sources that retrieve information from a single site on the internet. If that site is unavailable, you will not be able to retrieve quotes."
-msgstr ""
+#. Action: Distribution
+#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2977
+#: ../src/register/ledger-core/split-register.c:2515
+msgid "Dist"
+msgstr "Udlod"
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:19
+#: ../src/gnome-utils/gnc-tree-util-split-reg.c:46
#, fuzzy
-msgid "_Multiple:"
-msgstr "Flerrækkers"
+msgid "-- Stock Split --"
+msgstr "Aktieopdeling"
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:20
-msgid "These are F::Q quote sources that retrieve information from multiple sites on the internet. If one of the sites is unavailable, F::Q will attempt to retrieve the information from another site."
+#: ../src/gnome-utils/gnc-tree-util-split-reg.c:503
+#: ../src/register/register-gnome/datecell-gnome.c:100
+msgid "The entered date of the new transaction is older than the \"Read-Only Threshold\" set for this book. This setting can be changed in File -> Properties -> Accounts."
msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:21
-msgid "_Unknown:"
-msgstr "_Ukendt:"
-
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:22
-msgid "These are quote sources that were recently added to F::Q. GnuCash does not know if these sources retrieve information from a single site or from multiple sites on the internet."
+#: ../src/gnome-utils/gnc-tree-util-split-reg.c:886
+msgid "Exchange Rate Canceled, using existing rate or default 1 to 1 rate if this is a new transaction."
msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:23
-msgid "Time_zone:"
-msgstr "Tids_zone:"
+#: ../src/gnome-utils/gnc-tree-util-split-reg.c:1148
+#: ../src/register/ledger-core/split-register.c:1920
+msgid "Recalculate Transaction"
+msgstr "Genberegn transaktion"
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:24
-msgid "Enter a display symbol. This can safely be left blank, in which case the ticker symbol or the currency ISO code will be used."
+#: ../src/gnome-utils/gnc-tree-util-split-reg.c:1149
+#: ../src/register/ledger-core/split-register.c:1921
+#, fuzzy
+msgid "The values entered for this transaction are inconsistent. Which value would you like to have recalculated?"
msgstr ""
+"De indtastede værdier for denne transaktion stemmer ikke overens.\n"
+"Hvilken værdi vil du genberegne?"
-#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:25
+#: ../src/gnome-utils/gnc-tree-util-split-reg.c:1156
+#: ../src/gnome-utils/gnc-tree-util-split-reg.c:1158
+#: ../src/register/ledger-core/split-register.c:1927
+#: ../src/register/ledger-core/split-register.c:1930
#, fuzzy
-msgid "_Display symbol"
-msgstr "Vis totalerne?"
-
-#: ../src/gnome-utils/gtkbuilder/dialog-file-access.glade.h:1
-msgid "<b>Data Format:</b>"
-msgstr "<b>Dataformat</b>"
-
-#: ../src/gnome-utils/gtkbuilder/dialog-file-access.glade.h:2
-msgid "Open _Read-Only"
-msgstr "Ã
bn _skrivebeskyttet"
-
-#: ../src/gnome-utils/gtkbuilder/dialog-file-access.glade.h:3
-msgid "<b>File</b>"
-msgstr "<b>Fil</b>"
+msgid "_Shares"
+msgstr "Aktier"
-#: ../src/gnome-utils/gtkbuilder/dialog-file-access.glade.h:4
-msgid "Host"
-msgstr "Vært"
+#: ../src/gnome-utils/gnc-tree-util-split-reg.c:1156
+#: ../src/gnome-utils/gnc-tree-util-split-reg.c:1163
+#: ../src/gnome-utils/gnc-tree-util-split-reg.c:1170
+#: ../src/register/ledger-core/split-register.c:1928
+#: ../src/register/ledger-core/split-register.c:1935
+#: ../src/register/ledger-core/split-register.c:1942
+msgid "Changed"
+msgstr "Ãndret"
-#: ../src/gnome-utils/gtkbuilder/dialog-file-access.glade.h:5
-msgid "Database"
-msgstr "Database"
+#: ../src/gnome-utils/gnc-tree-util-split-reg.c:1170
+#: ../src/gnome-utils/gnc-tree-util-split-reg.c:1172
+#: ../src/register/ledger-core/split-register.c:1941
+#: ../src/register/ledger-core/split-register.c:1944
+#, fuzzy
+msgid "_Value"
+msgstr "Værdi"
-#: ../src/gnome-utils/gtkbuilder/dialog-file-access.glade.h:7
-msgid "Password"
-msgstr "Adgangskode"
+#: ../src/gnome-utils/gnc-tree-util-split-reg.c:1192
+#: ../src/register/ledger-core/split-register.c:1953
+#, fuzzy
+msgid "_Recalculate"
+msgstr "Beregn"
-#: ../src/gnome-utils/gtkbuilder/dialog-file-access.glade.h:8
-msgid "<b>Database Connection</b>"
-msgstr "<b>Databaseforbindelse</b>"
+#: ../src/gnome-utils/gnc-tree-view-account.c:718
+#: ../src/import-export/csv-exp/csv-transactions-export.c:417
+#: ../src/report/locale-specific/us/taxtxf-de_DE.scm:284
+#: ../src/report/standard-reports/general-ledger.scm:80
+#: ../src/report/standard-reports/transaction.scm:390
+#: ../src/report/standard-reports/transaction.scm:726
+#: ../src/report/standard-reports/transaction.scm:781
+#: ../src/report/standard-reports/transaction.scm:949
+#: ../src/report/standard-reports/trial-balance.scm:664
+msgid "Account Name"
+msgstr "Kontonavn"
-#: ../src/gnome-utils/gtkbuilder/dialog-object-references.glade.h:1
-msgid "Object references"
-msgstr "Objektreferencer"
+#: ../src/gnome-utils/gnc-tree-view-account.c:737
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3016
+msgid "Commodity"
+msgstr "Vare"
-#: ../src/gnome-utils/gtkbuilder/dialog-object-references.glade.h:2
-msgid "Explanation"
-msgstr "Forklaring"
+#: ../src/gnome-utils/gnc-tree-view-account.c:743
+#: ../src/report/report-system/options-utilities.scm:242
+#: ../src/report/standard-reports/account-summary.scm:104
+#: ../src/report/standard-reports/general-ledger.scm:82
+#: ../src/report/standard-reports/sx-summary.scm:85
+#: ../src/report/standard-reports/transaction.scm:410
+#: ../src/report/standard-reports/transaction.scm:730
+#: ../src/report/standard-reports/transaction.scm:785
+#: ../src/report/standard-reports/transaction.scm:951
+msgid "Account Code"
+msgstr "Kontonummer"
-#: ../src/gnome-utils/gtkbuilder/dialog-options.glade.h:1
-msgid "GnuCash Options"
-msgstr "GnuCash-indstillinger"
+#: ../src/gnome-utils/gnc-tree-view-account.c:755
+#, fuzzy
+msgid "Last Num"
+msgstr "Sidste"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:1
-msgid "GnuCash Preferences"
-msgstr "GnuCash-præferencer"
+#: ../src/gnome-utils/gnc-tree-view-account.c:761
+msgid "Present"
+msgstr "Nutidig"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:2
-msgid "<b>Summarybar Content</b>"
-msgstr ""
+#: ../src/gnome-utils/gnc-tree-view-account.c:768
+msgid "Present (Report)"
+msgstr "Nutidig (rapport)"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:3
-msgid "Include _grand total"
-msgstr "Inkluder _hovedtotal"
+#: ../src/gnome-utils/gnc-tree-view-account.c:782
+msgid "Balance (Report)"
+msgstr "Balance (rapport)"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:4
-msgid "Show a grand total of all accounts converted to the default report currency."
-msgstr "Vis en hovedtotal for alle konti konverteret til standardrapportens valuta."
+#: ../src/gnome-utils/gnc-tree-view-account.c:789
+msgid "Balance (Period)"
+msgstr "Balance (periode)"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:5
-msgid "Include _non-currency totals"
-msgstr "Inkluder totaler _uden valuta"
+#: ../src/gnome-utils/gnc-tree-view-account.c:803
+msgid "Cleared (Report)"
+msgstr "Ryddet (rapport)"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:6
-msgid "If checked, non-currency commodities will be shown in the summary bar. If clear, only currencies will be shown."
-msgstr "Hvis afkrydset vil ikke-valuta varer blive vist i oversigtsbjælken. Hvis ryddet vil kun valutaer blive vist."
+#: ../src/gnome-utils/gnc-tree-view-account.c:817
+msgid "Reconciled (Report)"
+msgstr "Afstemt (rapport)"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:7
-msgid "<b>Start Date</b>"
-msgstr "<b>Startdato</b>"
+#: ../src/gnome-utils/gnc-tree-view-account.c:824
+msgid "Last Reconcile Date"
+msgstr "Sidste afstemningsdato"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:8
-msgid "<b>End Date</b>"
-msgstr "<b>Slutdato</b>"
+#: ../src/gnome-utils/gnc-tree-view-account.c:830
+msgid "Future Minimum"
+msgstr "Fremtidig minimum"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:9
-#, fuzzy
-msgid "_Relative:"
-msgstr "Rabat"
+#: ../src/gnome-utils/gnc-tree-view-account.c:837
+msgid "Future Minimum (Report)"
+msgstr "Fremtidig minimum (rapport)"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:10
-msgid "Use the specified relative starting date for profit/loss calculations."
-msgstr ""
+#: ../src/gnome-utils/gnc-tree-view-account.c:851
+msgid "Total (Report)"
+msgstr "Total (rapport)"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:11
-msgid "_Absolute:"
-msgstr "_Absolut:"
+#: ../src/gnome-utils/gnc-tree-view-account.c:858
+msgid "Total (Period)"
+msgstr "Total (periode)"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:12
-msgid "Use the specified absolute starting date for profit/loss calculations."
+#: ../src/gnome-utils/gnc-tree-view-account.c:867
+msgid "C"
msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:13
+#: ../src/gnome-utils/gnc-tree-view-account.c:877
#, fuzzy
-msgid "Re_lative:"
-msgstr "Rabat"
-
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:14
-msgid "Use the specified relative ending date for profit/loss calculations. Also use this date for net assets calculations."
-msgstr ""
+msgid "Account Color"
+msgstr "Konto_farve:"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:15
-msgid "Ab_solute:"
-msgstr ""
+#: ../src/gnome-utils/gnc-tree-view-account.c:891
+msgid "Tax Info"
+msgstr "Skatteinfo"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:16
-msgid "Use the specified absolute ending date for profit/loss calculations. Also use this date for net assets calculations."
-msgstr ""
+#. Translators: This string has a context prefix; the translation
+#. must only contain the part after the | character.
+#: ../src/gnome-utils/gnc-tree-view-account.c:907
+msgid "Column letter for 'Placeholder'|P"
+msgstr "S"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:17
-#, fuzzy
-msgid "Accounting Period"
-msgstr "Kontonummer"
+#. Translators: %s is a currency mnemonic.
+#: ../src/gnome-utils/gnc-tree-view-account.c:1701
+#, fuzzy, c-format
+msgid "Present (%s)"
+msgstr "Nutidig:"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:18
-msgid "<b>Separator Character</b>"
-msgstr "<b>Adskillelsestegn</b>"
+#. Translators: %s is a currency mnemonic.
+#: ../src/gnome-utils/gnc-tree-view-account.c:1704
+#: ../src/gnome-utils/gnc-tree-view-owner.c:928
+#, c-format
+msgid "Balance (%s)"
+msgstr "Saldo (%s)"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:19
-msgid "Use _formal accounting labels"
-msgstr "Brug bogførings_etiketter"
+#. Translators: %s is a currency mnemonic.
+#: ../src/gnome-utils/gnc-tree-view-account.c:1707
+#, c-format
+msgid "Cleared (%s)"
+msgstr "Ryddet (%s)"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:20
-#, fuzzy
-msgid "Use only 'debit' and 'credit' instead of informal synonyms."
-msgstr "Brug kun »debet« og »kredit« i stedet for uformelle synonymer"
+#. Translators: %s is a currency mnemonic.
+#: ../src/gnome-utils/gnc-tree-view-account.c:1710
+#, c-format
+msgid "Reconciled (%s)"
+msgstr "Afstemt (%s)"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:21
-msgid "<b>Labels</b>"
-msgstr "<b>Etiketter</b>"
+#. Translators: %s is a currency mnemonic.
+#: ../src/gnome-utils/gnc-tree-view-account.c:1713
+#, c-format
+msgid "Future Minimum (%s)"
+msgstr "Fremtidig minimum (%s)"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:22
-msgid "_None"
-msgstr "I_ngen"
+#. Translators: %s is a currency mnemonic.
+#: ../src/gnome-utils/gnc-tree-view-account.c:1716
+#, c-format
+msgid "Total (%s)"
+msgstr "Total (%s)"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:24
-msgid "C_redit accounts"
-msgstr "_Kreditkonti"
+#: ../src/gnome-utils/gnc-tree-view-commodity.c:385
+msgid "Namespace"
+msgstr "Navnerum"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:26
-msgid "_Income & expense"
-msgstr "_Indtægt & udgift"
+#: ../src/gnome-utils/gnc-tree-view-commodity.c:402
+msgid "Print Name"
+msgstr "Udskriv navn"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:28
+#: ../src/gnome-utils/gnc-tree-view-commodity.c:408
#, fuzzy
-msgid "<b>Reverse Balanced Accounts</b>"
-msgstr "Kontotyper med omvendt saldofortegn"
+msgid "Display symbol"
+msgstr "Vis totalerne?"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:29
-msgid "<b>Default Currency</b>"
-msgstr "<b>Standardvaluta</b>"
+#: ../src/gnome-utils/gnc-tree-view-commodity.c:414
+msgid "Unique Name"
+msgstr "Unikt navn"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:30
-msgid "US Dollars (USD)"
-msgstr "US-dollars (USD)"
+#. Translators: Again replace CUSIP by the name of your
+#. National Securities Identifying Number.
+#: ../src/gnome-utils/gnc-tree-view-commodity.c:421
+msgid "ISIN/CUSIP"
+msgstr "ISIN/CUSIP"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:31
-msgid "Loc_ale:"
-msgstr "_Regionsdata:"
+# Jeg *tror*, der er tale om "handlet andel af aktier". CH
+#: ../src/gnome-utils/gnc-tree-view-commodity.c:427
+msgid "Fraction"
+msgstr "Andel"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:33
-msgid "Ch_oose:"
-msgstr "_Vælg:"
+#: ../src/gnome-utils/gnc-tree-view-commodity.c:434
+msgid "Get Quotes"
+msgstr "Hent kurser"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:35
-msgid "The character that will be used between components of an account name. A legal value is any single character except letters and numbers, or any of the following strings: \"colon\" \"slash\", \"backslash\", \"dash\" and \"period\"."
+#. Translators: This string has a context prefix; the translation
+#. must only contain the part after the | character.
+#: ../src/gnome-utils/gnc-tree-view-commodity.c:437
+msgid "Column letter for 'Get Quotes'|Q"
msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:36
+#: ../src/gnome-utils/gnc-tree-view-commodity.c:443
+#: ../src/gnome-utils/gnc-tree-view-price.c:443
+msgid "Source"
+msgstr "Kilde"
+
+#: ../src/gnome-utils/gnc-tree-view-commodity.c:448
+msgid "Timezone"
+msgstr "Tidszone"
+
+#: ../src/gnome-utils/gnc-tree-view-owner.c:398
#, fuzzy
-msgid "Character:"
-msgstr "Afgift"
+msgid "Owner Name"
+msgstr "Ejernavn "
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:37
-#: ../src/gnome-utils/gtkbuilder/gnc-date-format.glade.h:12
-msgid "Sample:"
-msgstr "Eksempel:"
+#: ../src/gnome-utils/gnc-tree-view-owner.c:409
+#, fuzzy
+msgid "Owner ID"
+msgstr "Ordre-id"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:38
-msgid "<b>Account Color</b>"
-msgstr "<b>Kontofarve</b>"
+#: ../src/gnome-utils/gnc-tree-view-owner.c:419
+#, fuzzy
+msgid "Address Name"
+msgstr "Adresse: "
+
+#: ../src/gnome-utils/gnc-tree-view-owner.c:424
+#, fuzzy
+msgid "Address 1"
+msgstr "Adresse: "
+
+#: ../src/gnome-utils/gnc-tree-view-owner.c:429
+#, fuzzy
+msgid "Address 2"
+msgstr "Adresse: "
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:39
-msgid "Show the Account Color as background"
-msgstr "Vis kontoens farve som baggrund"
+#: ../src/gnome-utils/gnc-tree-view-owner.c:434
+#, fuzzy
+msgid "Address 3"
+msgstr "Adresse: "
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:40
+#: ../src/gnome-utils/gnc-tree-view-owner.c:439
#, fuzzy
-msgid "Show the Account Color as Account Name Background."
-msgstr "Vis kontoens farve som baggrund for kontonavn"
+msgid "Address 4"
+msgstr "Adresse: "
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:41
-msgid "Show the Account Color on tabs"
-msgstr "Vis kontoens farve i faneblade"
+#: ../src/gnome-utils/gnc-tree-view-owner.c:449
+#: ../src/report/business-reports/taxinvoice.eguile.scm:191
+#, fuzzy
+msgid "Fax"
+msgstr "Fax:"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:42
+#: ../src/gnome-utils/gnc-tree-view-owner.c:454
#, fuzzy
-msgid "Show the Account Color as tab background."
-msgstr "Vis kontoens farve som baggrund for faneblade"
+msgid "E-mail"
+msgstr "E-post:"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:44
-msgid "<b>Fancy Date Format</b>"
-msgstr "<b>Smart datoformat</b>"
+#. Translators: This string has a context prefix; the translation
+#. must only contain the part after the | character.
+#: ../src/gnome-utils/gnc-tree-view-owner.c:483
+#, fuzzy
+msgid "Column letter for 'Active'|A"
+msgstr "S"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:45
-msgid "<b>Date Format</b>"
-msgstr "<b>Datoformat</b>"
+#: ../src/gnome-utils/gnc-tree-view-price.c:425
+msgid "Security"
+msgstr "Værdipapir"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:46
-msgid "<b>Time Format</b>"
-msgstr ""
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:807
+#, fuzzy
+msgid "Status Bar"
+msgstr "Stat_usbjælke"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:47
-msgid "U_se 24-hour clock"
-msgstr "_Brug 24-timers tidsformat"
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:1552
+#, fuzzy
+msgid " Scheduled "
+msgstr "Planlæg"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:48
-msgid "Use a 24 hour (instead of a 12 hour) time format."
-msgstr "Brug 24-timer (i stedet for 12-timer) tidsformat"
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2413
+#: ../src/register/ledger-core/split-register-control.c:1531
+#, fuzzy
+msgid "Save the changed transaction?"
+msgstr "Afbryd den nuværende transaktion"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:49
-msgid "<b>Date Completion</b>"
-msgstr "<b>Datofuldførelse</b>"
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2415
+#, fuzzy
+msgid "The current transaction has changed. Would you like to record the changes, or discard the changes?"
+msgstr "Den aktuelle skabelontransaktion er blevet ændret. Vil du gemme ændringerne?"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:50
-msgid "When a date is entered without year, it should be taken:"
-msgstr "Når en dato indtastes uden angivelse af året, så tilføjes:"
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2453
+#: ../src/register/ledger-core/split-register-control.c:1546
+#, fuzzy
+msgid "_Discard Changes"
+msgstr "Bekræft ændringer"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:52
-msgid "Dates will be completed so that they are within the current calendar year."
-msgstr "Datoer vil blive fuldført så de er fra det nuværende kalenderår."
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2455
+#: ../src/register/ledger-core/split-register-control.c:1548
+#, fuzzy
+msgid "_Record Changes"
+msgstr "Bekræft ændringer"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:53
-msgid ""
-"In a sliding 12-month window starting this\n"
-"many months before the current month:"
-msgstr ""
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2822
+#, fuzzy
+msgid "Date Entered"
+msgstr "Dato bogført"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:56
-msgid "Enter number of months."
-msgstr "Indtast antal måneder."
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2824
+#, fuzzy
+msgid "Date Reconciled"
+msgstr "Afstemt:"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:57
-msgid "Use the date format specified by the system locale."
-msgstr "Brug datoformatet angivet af systemets sprog."
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2826
+msgid "Date Posted / Entered / Reconciled"
+msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:58
-msgid "Date/Time"
-msgstr "Dato/tid"
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2853
+#, fuzzy
+msgid "Reference / Action"
+msgstr "Reference"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:60
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2867
#, fuzzy
-msgid "Perform account list _setup on new file"
-msgstr "Ingen kontolisteopsætning ved ny fil"
+msgid "T-Number"
+msgstr "Nummer"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:61
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2873
#, fuzzy
-msgid "Present the new account list dialog when you choose File -> New File."
-msgstr "Vis ikke vinduet for ny kontoliste, når du vælger \"Ny Fil\" fra \"Fil\"-menuen"
+msgid "Number / Action"
+msgstr "Nummervalg"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:64
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2889
#, fuzzy
-msgid "Display \"_tip of the day\" dialog"
-msgstr "Vis \"Dagens råd\""
+msgid "Customer / Memo"
+msgstr "Kunderapport"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:65
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2900
#, fuzzy
-msgid "Display hints for using GnuCash at startup."
-msgstr "Vis råd til brugen af GnuCash ved opstart"
+msgid "Vendor / Memo"
+msgstr "Leverandørrapport"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:66
-msgid "How many days to keep old log/backup files."
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2918
+msgid "Description / Notes / Memo"
msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:68
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2948
#, fuzzy
-#| msgid "_Retain log files:"
-msgid "_Retain log/backup files:"
-msgstr "_Bevar logfiler:"
+msgid "Void Reason"
+msgstr "Kun ikoner"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:69
-msgid "Com_press files"
-msgstr ""
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2952
+#, fuzzy
+msgid "Accounts / Void Reason"
+msgstr "Kontonummer"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:70
-msgid "Compress the data file with gzip when saving it to disk."
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2962
+#: ../src/import-export/import-main-matcher.c:492
+msgid "R"
msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:71
-msgid "<b>Files</b>"
-msgstr "<b>Filer</b>"
-
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:72
-msgid "_Decimal places:"
-msgstr "Automatiske _decimaler:"
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3006
+#, fuzzy
+msgid "Amount / Value"
+msgstr "Forfalden beløb"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:73
-msgid "How many automatic decimal places will be filled in."
-msgstr "Hvor mange pladser efter kommaet der skal udfyldes."
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3026
+#, fuzzy
+msgid "Rate"
+msgstr "Skatte_relateret"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:74
-msgid "_Automatic decimal point"
-msgstr "_Automatisk decimaltegn"
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3112
+#: ../src/register/ledger-core/split-register-model.c:482
+#, fuzzy
+msgid "Credit Formula"
+msgstr "Kreditkort"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:75
-msgid "Automatically insert a decimal point into values that are entered without one."
-msgstr "Indsæt automatisk et decimaltegn i værdier, der indtastes uden et sådant."
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3193
+#: ../src/register/ledger-core/split-register-model.c:475
+#, fuzzy
+msgid "Debit Formula"
+msgstr "Datoformat"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:76
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3263
#, fuzzy
-msgid "Display ne_gative amounts in red"
-msgstr "Vis negative beløb med rødt"
+msgid "Enter Due Date"
+msgstr "Forfaldsdato"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:77
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3274
#, fuzzy
-msgid "Display negative amounts in red."
-msgstr "Vis negative beløb med rødt"
+msgid "Enter the transaction reference, such as the invoice or check number"
+msgstr "Indtast transaktionsnummeret (f.eks. checknummeret)"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:78
-msgid "<b>Numbers</b>"
-msgstr "<b>Tal</b>"
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3276
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3283
+msgid "Enter the type of transaction, or choose one from the list"
+msgstr "Indtast transaktionens type, eller vælg en fra listen"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:79
-msgid "<b>Search Dialog</b>"
-msgstr "<b>Søgevindue</b>"
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3281
+msgid "Enter the transaction number, such as the check number"
+msgstr "Indtast transaktionsnummeret (f.eks. checknummeret)"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:80
-#, fuzzy
-msgid "New search _limit:"
-msgstr "Ny søgning"
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3293
+#: ../src/register/ledger-core/split-register-model.c:1021
+msgid "Enter the name of the Customer"
+msgstr "Angiv navnet på kunden"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:81
-msgid "Default to 'new search' if fewer than this number of items is returned."
-msgstr ""
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3295
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3304
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3313
+#: ../src/register/ledger-core/split-register-model.c:1058
+msgid "Enter notes for the transaction"
+msgstr "Indtast bemærkninger til transaktionen"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:82
-msgid "Show splash scree_n"
-msgstr ""
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3297
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3306
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3315
+#: ../src/register/ledger-core/split-register-model.c:1217
+msgid "Enter a description of the split"
+msgstr "Angiv en beskrivelse af opsplitningen"
+
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3302
+#: ../src/register/ledger-core/split-register-model.c:1024
+msgid "Enter the name of the Vendor"
+msgstr "Angiv navnet på leverandøren"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:83
-msgid "Show splash screen at startup."
-msgstr ""
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3311
+#: ../src/register/ledger-core/split-register-model.c:1027
+msgid "Enter a description of the transaction"
+msgstr "Indtast en beskrivelse af transaktionen"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:84
-msgid "Auto-save time _interval:"
-msgstr ""
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3325
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3329
+#: ../src/register/ledger-core/split-register-model.c:1376
+#: ../src/register/ledger-core/split-register-model.c:1442
+msgid "Enter the account to transfer from, or choose one from the list"
+msgstr "Vælg kontoen at overføre fra, eller vælg en fra listen"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:86
-msgid "minutes"
-msgstr "minutter"
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3327
+#: ../src/register/ledger-core/split-register-model.c:1091
+#, fuzzy
+msgid "Reason the transaction was voided"
+msgstr "Indsæt fra transaktionsklippebordet"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:87
-msgid "Show auto-save confirmation _question"
-msgstr ""
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3339
+#, fuzzy
+msgid "Enter the reconcile type"
+msgstr "Sorter efter udskriftsdato"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:88
-msgid "If active, GnuCash shows a confirmation question each time the auto-save feature is started. Otherwise no extra explanation is shown."
-msgstr ""
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3349
+#, fuzzy
+msgid "Enter the type of transaction"
+msgstr "Angiv posttypen"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:97
-msgid "Time to wait for answer:"
-msgstr ""
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3359
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3379
+#, fuzzy
+msgid "Enter the value of shares bought or sold"
+msgstr "Indtast antallet af købte eller solgte aktier"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:99
-msgid "seconds"
-msgstr ""
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3369
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3381
+#: ../src/register/ledger-core/split-register-model.c:1325
+msgid "Enter the number of shares bought or sold"
+msgstr "Indtast antallet af købte eller solgte aktier"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:101
-msgid "<b>Checks</b>"
-msgstr "<b>Check</b>"
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3391
+#, fuzzy
+msgid "* Indicates the transaction Commodity."
+msgstr "Vis transaktionsdatoen?"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:102
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3401
#, fuzzy
-msgid "Print _date format"
-msgstr "Datoformat:"
+msgid "Enter the rate"
+msgstr "Rente"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:103
-msgid "Below the actual date, print the format of that date in 8 point type."
-msgstr ""
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3411
+#: ../src/register/ledger-core/split-register-model.c:1289
+msgid "Enter the effective share price"
+msgstr "Indtast den effektive aktiepris"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:104
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3421
+#: ../src/register/ledger-core/split-register-model.c:2147
#, fuzzy
-msgid "Default _font:"
-msgstr "Standard"
+msgid "Enter credit formula for real transaction"
+msgstr "Indtast noter for transaktionen"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:105
+#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3431
+#: ../src/register/ledger-core/split-register-model.c:2117
#, fuzzy
-msgid "The default check printing font."
-msgstr "Standardskrifttypen til udskrivning af check"
+msgid "Enter debit formula for real transaction"
+msgstr "Indtast noter for transaktionen"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:106
-msgid "Print _blocking chars"
+#. Translators: This string has a context prefix; the translation
+#. must only contain the part after the | character.
+#: ../src/gnome-utils/gnc-tree-view-sx-list.c:171
+msgid "Single-character short column-title form of 'Enabled'|E"
msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:107
-msgid "Print '***' before and after each text field on the check."
-msgstr ""
+#: ../src/gnome-utils/gnc-tree-view-sx-list.c:182
+#, fuzzy
+msgid "Last Occur"
+msgstr "Sidste år"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:108
-msgid "Printing"
-msgstr "Udskriver"
+#: ../src/gnome-utils/gnc-tree-view-sx-list.c:187
+msgid "Next Occur"
+msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:109
-#: ../src/import-export/dialog-import.glade.h:29
-msgid "<b>Actions</b>"
-msgstr "<b>Handlinger</b>"
+#: ../src/gnome-utils/gschemas/org.gnucash.history.gschema.xml.in.in.h:1
+msgid "Number of files in history"
+msgstr "Antal filer i historikken"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:110
-msgid "'_Enter' moves to blank transaction"
-msgstr "»_Retur« går til tom transaktion"
+#: ../src/gnome-utils/gschemas/org.gnucash.history.gschema.xml.in.in.h:2
+msgid "This setting contains the number of files to keep in the Recently Opened Files menu. This value may be set to zero to disable the file history. This number has a maximum value of 10."
+msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:111
-msgid "If checked, pressing the 'Enter' key will move to the blank transaction at the bottom of the register. If clear, pressing the 'Enter' key will move down one row."
-msgstr "Hvis afkrydset vil tryk på tasten »Retur« gå til den tomme transaktion i bunden af kassekladen. Uden afkrydsning, vil tasten »Retur« flytte dig en række ned."
+#: ../src/gnome-utils/gschemas/org.gnucash.history.gschema.xml.in.in.h:3
+msgid "Most recently opened file"
+msgstr "Den seneste åbnede fil"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:112
-msgid "_Auto-raise lists"
-msgstr "_Hæv automatisk lister"
+#: ../src/gnome-utils/gschemas/org.gnucash.history.gschema.xml.in.in.h:4
+msgid "This field contains the full path of the most recently opened file."
+msgstr "Dette felt indeholder den fulde sti på den senest åbnede fil."
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:113
-msgid "Automatically raise the list of accounts or actions during input."
-msgstr "Sæt automatisk listen af konti eller handlinger i forgrunden under indlæsning af data."
+#: ../src/gnome-utils/gschemas/org.gnucash.history.gschema.xml.in.in.h:5
+msgid "Next most recently opened file"
+msgstr "Den næstseneste åbnede fil"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:114
-msgid "<b>Reconciling</b>"
-msgstr "<b>Afstemmer</b>"
+#: ../src/gnome-utils/gschemas/org.gnucash.history.gschema.xml.in.in.h:6
+msgid "This field contains the full path of the next most recently opened file."
+msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:115
-msgid "Check cleared _transactions"
-msgstr "Kryds kontrollerede _transaktioner af"
+#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:1
+#, fuzzy
+msgid "Print checks from multiple accounts"
+msgstr "Match konti"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:116
-msgid "Pre-check cleared transactions when creating a reconcile dialog."
-msgstr "Afkryds automatisk kontrollerede transaktioner, når de afstemmes."
+#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:2
+msgid "This dialog is presented if you try to print checks from multiple accounts at the same time."
+msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:117
-msgid "Automatic _interest transfer"
-msgstr "Automatisk _renteoverførsel"
+#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:3
+#, fuzzy
+msgid "Commit changes to a invoice entry"
+msgstr "'Retur' hopper til tom transaktion"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:119
-msgid "Automatic credit card _payment"
-msgstr "Automatisk kreditkort_betaling"
+#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:4
+msgid "This dialog is presented when you attempt to move out of a modified invoice entry. The changed data must be either saved or discarded."
+msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:120
+#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:5
#, fuzzy
-msgid "After reconciling a credit card statement, prompt the user to enter a credit card payment."
-msgstr "Bed brugeren angive en kreditkorts-indbetaling efter afstemning af et kreditkortsudtog"
+msgid "Duplicating a changed invoice entry"
+msgstr "Kopier en ændret transaktion"
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:121
-msgid "Always reconcile to t_oday"
+#: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:6
+msgid "This dialog is presented when you attempt to duplicate a modified invoice entry. The changed data must be saved or the duplication canceled."
msgstr ""
-#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:122
-msgid "Always open the reconcile dialog using today's date for the statement date, regardless of previous reconciliations."
-ms