gnucash master: Multiple changes pushed
Christopher Lam
clam at code.gnucash.org
Mon Jan 25 09:44:30 EST 2021
Updated via https://github.com/Gnucash/gnucash/commit/a9ec496b (commit)
via https://github.com/Gnucash/gnucash/commit/2fa5cba2 (commit)
via https://github.com/Gnucash/gnucash/commit/a754289d (commit)
via https://github.com/Gnucash/gnucash/commit/267a7cb7 (commit)
via https://github.com/Gnucash/gnucash/commit/b66eab25 (commit)
via https://github.com/Gnucash/gnucash/commit/df30b6da (commit)
via https://github.com/Gnucash/gnucash/commit/0389905f (commit)
via https://github.com/Gnucash/gnucash/commit/d3854385 (commit)
from https://github.com/Gnucash/gnucash/commit/ddc86579 (commit)
commit a9ec496ba9b4bfa24b0de57dd75f0d3b581b38a3
Author: Christopher Lam <christopher.lck at gmail.com>
Date: Mon Jan 25 22:25:54 2021 +0800
[utilities] Remove deprecated functions
diff --git a/bindings/guile/test/test-scm-utilities.scm b/bindings/guile/test/test-scm-utilities.scm
index 5e38aff0b..da7778f0f 100644
--- a/bindings/guile/test/test-scm-utilities.scm
+++ b/bindings/guile/test/test-scm-utilities.scm
@@ -7,25 +7,12 @@
(define (run-test)
(test-runner-factory gnc:test-runner)
(test-begin "test-scm-utilities.scm")
- (test-traverse-vec)
(test-substring-replace)
(test-sort-and-delete-duplicates)
(test-gnc:html-string-sanitize)
(test-gnc:list-flatten)
(test-end "test-scm-utilities.scm"))
-(define (test-traverse-vec)
- (test-begin "traverse-vec")
- (test-equal "list->vec"
- (vector 1 (vector 2 3))
- (traverse-list->vec
- (list 1 (list 2 3))))
- (test-equal "vec->list"
- (list 1 (list 2 3))
- (traverse-vec->list
- (vector 1 (vector 2 3))))
- (test-end "traverse-vec"))
-
(define (test-substring-replace)
(test-begin "substring-replace")
diff --git a/bindings/guile/utilities.scm b/bindings/guile/utilities.scm
index 333f1cca9..6c459e020 100644
--- a/bindings/guile/utilities.scm
+++ b/bindings/guile/utilities.scm
@@ -32,8 +32,6 @@
(export addto!)
(export sort-and-delete-duplicates)
(export gnc:list-flatten)
-(export traverse-list->vec)
-(export traverse-vec->list)
(export gnc:substring-replace-from-to)
(export gnc:substring-replace)
(export gnc:html-string-sanitize)
@@ -66,22 +64,6 @@
(define-syntax-rule (addto! alist element)
(set! alist (cons element alist)))
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; pair of utility functions for use with guile-json which requires
-;; lists converted vectors to save as json arrays. traverse list
-;; converting into vectors, and vice versa.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-(define (traverse-list->vec lst)
- (issue-deprecation-warning "traverse-list->vec unused.")
- (cond
- ((list? lst) (list->vector (map traverse-list->vec lst)))
- (else lst)))
-
-(define (traverse-vec->list vec)
- (issue-deprecation-warning "traverse-vec->list unused.")
- (cond
- ((vector? vec) (map traverse-vec->list (vector->list vec)))
- (else vec)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; general and efficent string-replace-substring function, based on
commit 2fa5cba250de2493fba421cb11f5432a05ee0369
Merge: ddc86579c a754289da
Author: Christopher Lam <christopher.lck at gmail.com>
Date: Mon Jan 25 22:25:20 2021 +0800
Merge branch 'maint'
commit a754289daa074c8e62bc0c59107e5c9a1025c429
Author: Christopher Lam <christopher.lck at gmail.com>
Date: Mon Jan 25 22:24:19 2021 +0800
[test-scm-utilities] test-end properly
otherwise test failures do not set exit code correctly
diff --git a/bindings/guile/test/test-scm-utilities.scm b/bindings/guile/test/test-scm-utilities.scm
index 660767f2c..b121901f1 100644
--- a/bindings/guile/test/test-scm-utilities.scm
+++ b/bindings/guile/test/test-scm-utilities.scm
@@ -12,7 +12,7 @@
(test-sort-and-delete-duplicates)
(test-gnc:html-string-sanitize)
(test-gnc:list-flatten)
- (test-begin "test-scm-utilities.scm"))
+ (test-end "test-scm-utilities.scm"))
(define (test-traverse-vec)
(test-begin "traverse-vec")
commit 267a7cb75d3b54cf359eb913c9f830b48307ae6a
Author: John Ralls <jralls at ceridwen.us>
Date: Sun Jan 24 12:57:48 2021 -0800
Create opening balance accounts only when there are opening balances.
diff --git a/gnucash/gnome-utils/dialog-account.c b/gnucash/gnome-utils/dialog-account.c
index 21e839ea9..43f66a78a 100644
--- a/gnucash/gnome-utils/dialog-account.c
+++ b/gnucash/gnome-utils/dialog-account.c
@@ -899,9 +899,6 @@ gnc_common_ok (AccountWindow *aw)
return FALSE;
}
- /* update opening balance account */
- gnc_find_or_create_equity_account (root, EQUITY_OPENING_BALANCE, commodity);
-
LEAVE("passed");
return TRUE;
}
diff --git a/gnucash/gnome/gnc-plugin-page-account-tree.c b/gnucash/gnome/gnc-plugin-page-account-tree.c
index 7bc8bdd3a..967dcd876 100644
--- a/gnucash/gnome/gnc-plugin-page-account-tree.c
+++ b/gnucash/gnome/gnc-plugin-page-account-tree.c
@@ -1668,10 +1668,6 @@ gnc_plugin_page_account_tree_cmd_delete_account (GtkAction *action, GncPluginPag
if (!(xaccAccountGetSplitList (account) != NULL ||
gnc_account_n_children (account)))
{
- /* update opening balance account */
- gnc_find_or_create_equity_account (gnc_account_get_root(account),
- EQUITY_OPENING_BALANCE,
- xaccAccountGetCommodity (account));
do_delete_account (account, NULL, NULL, NULL);
return;
}
@@ -1708,10 +1704,6 @@ gnc_plugin_page_account_tree_cmd_delete_account (GtkAction *action, GncPluginPag
adopt.subacct.new_account,
adopt.delete_res) == GTK_RESPONSE_ACCEPT)
{
- /* update opening balance account */
- gnc_find_or_create_equity_account (gnc_account_get_root(account),
- EQUITY_OPENING_BALANCE,
- xaccAccountGetCommodity (account));
do_delete_account (account, adopt.subacct.new_account,
adopt.subtrans.new_account, adopt.trans.new_account);
}
commit b66eab25837ccaa4776a7771e4c249bbda3ea937
Author: John Ralls <jralls at ceridwen.us>
Date: Sun Jan 24 12:57:01 2021 -0800
Bug 798100 - Equity totals calculating incorrectly
Prevents creation of non-currency opening balance accounts.
diff --git a/gnucash/gnome/assistant-hierarchy.c b/gnucash/gnome/assistant-hierarchy.c
index 40160221d..6d39f37ad 100644
--- a/gnucash/gnome/assistant-hierarchy.c
+++ b/gnucash/gnome/assistant-hierarchy.c
@@ -1408,7 +1408,8 @@ starting_balance_helper (Account *account, hierarchy_data *data)
balance = get_final_balance (data->balance_hash, account);
if (gnc_reverse_balance(account))
balance = gnc_numeric_neg(balance);
- if (!gnc_numeric_zero_p (balance))
+ if (!gnc_numeric_zero_p (balance) &&
+ gnc_commodity_is_currency (xaccAccountGetCommodity (account)))
gnc_account_create_opening_balance (account, balance, gnc_time (NULL),
gnc_get_current_book ());
}
diff --git a/libgnucash/app-utils/gnc-ui-util.c b/libgnucash/app-utils/gnc-ui-util.c
index 0a90aafd6..f03183d0d 100644
--- a/libgnucash/app-utils/gnc-ui-util.c
+++ b/libgnucash/app-utils/gnc-ui-util.c
@@ -975,6 +975,7 @@ gnc_find_or_create_equity_account (Account *root,
g_return_val_if_fail (equity_type < NUM_EQUITY_TYPES, NULL);
g_return_val_if_fail (currency != NULL, NULL);
g_return_val_if_fail (root != NULL, NULL);
+ g_return_val_if_fail (gnc_commodity_is_currency(currency), NULL);
use_eq_op_feature = equity_type == EQUITY_OPENING_BALANCE && gnc_using_equity_type_opening_balance_account (gnc_get_current_book ());
@@ -1077,16 +1078,19 @@ gnc_account_create_opening_balance (Account *account,
Account *equity_account;
Transaction *trans;
Split *split;
+ gnc_commodity *commodity;
if (gnc_numeric_zero_p (balance))
return TRUE;
g_return_val_if_fail (account != NULL, FALSE);
+ commodity = xaccAccountGetCommodity (account);
+ g_return_val_if_fail (gnc_commodity_is_currency (commodity), FALSE);
equity_account =
gnc_find_or_create_equity_account (gnc_account_get_root(account),
EQUITY_OPENING_BALANCE,
- xaccAccountGetCommodity (account));
+ commodity);
if (!equity_account)
return FALSE;
commit df30b6da377095ea62ac34ee52360178088f797f
Author: Christopher Lam <christopher.lck at gmail.com>
Date: Sun Jan 24 21:56:34 2021 +0800
[utilities.scm] deprecate unused functions
these functions were never used.
diff --git a/bindings/guile/utilities.scm b/bindings/guile/utilities.scm
index ad0852a4a..4b1e3c279 100644
--- a/bindings/guile/utilities.scm
+++ b/bindings/guile/utilities.scm
@@ -72,11 +72,13 @@
;; converting into vectors, and vice versa.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (traverse-list->vec lst)
+ (issue-deprecation-warning "traverse-list->vec unused.")
(cond
((list? lst) (list->vector (map traverse-list->vec lst)))
(else lst)))
(define (traverse-vec->list vec)
+ (issue-deprecation-warning "traverse-vec->list unused.")
(cond
((vector? vec) (map traverse-vec->list (vector->list vec)))
(else vec)))
commit 0389905f7805f167786ab05ead78a0914fe2d4b6
Author: giorgos georgopoulakis <huskyaek at gmail.com>
Date: Sat Jan 23 02:32:27 2021 +0100
Translation update by giorgos georgopoulakis <huskyaek at gmail.com> using Weblate
po/el.po: 52.4% (2904 of 5535 strings; 1568 fuzzy)
705 failing checks (12.7%)
Translation: GnuCash/Program (Greek)
Translate-URL: https://hosted.weblate.org/projects/gnucash/gnucash/el/
Co-authored-by: giorgos georgopoulakis <huskyaek at gmail.com>
diff --git a/po/el.po b/po/el.po
index c389195d3..87811ef40 100644
--- a/po/el.po
+++ b/po/el.po
@@ -30,26 +30,27 @@
#
# Nikos Charonitakis <nikosx at gmail.com>, 2002, 2003, 2004, 2005, 2006, 2008, 2009, 2010.
# ta_panta_rei, 2003, 2006.
-#
+# giorgos georgopoulakis <huskyaek at gmail.com>, 2021.
msgid ""
msgstr ""
"Project-Id-Version: GnuCash 2.4\n"
-"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
-"product=GnuCash&component=Translations\n"
+"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug."
+"cgi?product=GnuCash&component=Translations\n"
"POT-Creation-Date: 2021-01-22 11:07+0100\n"
-"PO-Revision-Date: 2018-02-20 23:10+0200\n"
-"Last-Translator: Nikolaos Charonitakis <nikosx at gmail.com>\n"
-"Language-Team: Greek <team at gnome.gr>\n"
+"PO-Revision-Date: 2021-01-23 01:32+0000\n"
+"Last-Translator: giorgos georgopoulakis <huskyaek at gmail.com>\n"
+"Language-Team: Greek <https://hosted.weblate.org/projects/gnucash/gnucash/el/"
+">\n"
"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Poedit 2.0.3\n"
+"X-Generator: Weblate 4.5-dev\n"
#: bindings/guile/commodity-table.scm:44
msgid "ALL NON-CURRENCY"
-msgstr ""
+msgstr "ÎÎΠΤΠÎÎ-ÎÎÎÎΣÎÎΤÎ"
#: borrowed/goffice/go-charmap-sel.c:70
msgid "Arabic"
@@ -199,15 +200,15 @@ msgstr "ÎινÎζικα ÎÏλοÏοιημÎνα (HZ)"
#: borrowed/goffice/go-charmap-sel.c:140
msgid "Chinese Simplified (Windows-936)"
-msgstr ""
+msgstr "ÎινÎζικα αÏλοÏοιημÎνα (Windows-936)"
#: borrowed/goffice/go-charmap-sel.c:142
msgid "Chinese Traditional (Big5)"
-msgstr "Îινεζική ÏαÏαδοÏιακή (Big5)"
+msgstr "Îινεζική ÏαÏαδοÏιακή (Big5)"
#: borrowed/goffice/go-charmap-sel.c:143
msgid "Chinese Traditional (Big5-HKSCS)"
-msgstr ""
+msgstr "Îινεζική ÏαÏαδοÏιακή (Big5-HKSCS)"
#: borrowed/goffice/go-charmap-sel.c:145
msgid "Chinese Traditional (EUC-TW)"
@@ -243,11 +244,11 @@ msgstr "ÎÏ
Ïιλλική (Windows-1251)"
#: borrowed/goffice/go-charmap-sel.c:159
msgid "Russian (CP-866)"
-msgstr ""
+msgstr "ΡÏÏÏικα (CP-866)"
#: borrowed/goffice/go-charmap-sel.c:160
msgid "Ukrainian (KOI8-U)"
-msgstr ""
+msgstr "ÎÏ
κÏανικά (KOI8-U)"
#: borrowed/goffice/go-charmap-sel.c:161
#, fuzzy
@@ -304,7 +305,7 @@ msgstr "ÎβÏαÏκή (_MacHebrew)"
#: borrowed/goffice/go-charmap-sel.c:180
msgid "Hebrew (Windows-1255)"
-msgstr "ÎβÏαÏκή (Windows-1255)"
+msgstr "ÎβÏαÏκή (Windows-1255)"
#: borrowed/goffice/go-charmap-sel.c:182
msgid "Hindi (MacDevanagari)"
@@ -352,7 +353,7 @@ msgstr "ΡοÏ
μανική (MacRomanian)"
#: borrowed/goffice/go-charmap-sel.c:197
msgid "Romanian (ISO-8859-16)"
-msgstr ""
+msgstr "ΡοÏ
μάνικα (ISO-8859-16)"
#: borrowed/goffice/go-charmap-sel.c:199
msgid "South European (ISO-8859-3)"
@@ -465,9 +466,8 @@ msgid "Menu"
msgstr "ÎενοÏ"
#: borrowed/goffice/go-optionmenu.c:336
-#, fuzzy
msgid "The menu of options"
-msgstr "ΠεÏιλογή αÏÎ¹Î¸Î¼Î¿Ï ÎµÎ¯Î½Î±Î¹ %s."
+msgstr "Το μενοÏ
εÏιλογÏν"
#: doc/tip_of_the_day.list.c:1
msgid ""
commit d3854385889ca9ff9f1427e6bae191d0fc93bfce
Author: Frank H. Ellenberger <frank.h.ellenberger at gmail.com>
Date: Fri Jan 22 11:06:50 2021 +0100
I18N: Fix a typo and remove an empty line
diff --git a/gnucash/gnome-utils/gnc-file.c b/gnucash/gnome-utils/gnc-file.c
index e095c4c96..516316e2a 100644
--- a/gnucash/gnome-utils/gnc-file.c
+++ b/gnucash/gnome-utils/gnc-file.c
@@ -476,8 +476,7 @@ show_session_error (GtkWindow *parent,
case ERR_FILEIO_RESERVED_WRITE:
/* Translators: the first %s is a path in the filesystem,
- the second %s is PACKAGE_NAME, which by default is "GnuCash"
- */
+ the second %s is PACKAGE_NAME, which by default is "GnuCash" */
fmt = _("You attempted to save in\n%s\nor a subdirectory thereof. "
"This is not allowed as %s reserves that directory for internal use.\n\n"
"Please try again in a different directory.");
diff --git a/gnucash/gnome-utils/gnc-tree-control-split-reg.c b/gnucash/gnome-utils/gnc-tree-control-split-reg.c
index b188cd686..7ad27ef28 100644
--- a/gnucash/gnome-utils/gnc-tree-control-split-reg.c
+++ b/gnucash/gnome-utils/gnc-tree-control-split-reg.c
@@ -1718,7 +1718,7 @@ gnc_tree_control_split_reg_save (GncTreeViewSplitReg *view, gboolean reg_closing
{
GtkWidget *dialog, *window;
gint response;
- /* Translators: This message will be presented when a use
+ /* Translators: This message will be presented when a user
attempts to record a transaction without splits */
const char *title = _("Not enough information for Blank Transaction?");
const char *message =
diff --git a/po/ar.po b/po/ar.po
index aa699396e..6ff9d2eec 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -13,7 +13,7 @@ msgstr ""
"Project-Id-Version: gnucash 3.4\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2019-02-09 19:15+0300\n"
"Last-Translator: Abdorhman Ayman <abdorhman.ayman at protonmail.com>\n"
"Language-Team: Arabic <(nothing)>\n"
@@ -1335,7 +1335,7 @@ msgstr "ØØ°Ù Ø§ÙØ³ÙعةØ"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2628,7 +2628,7 @@ msgstr "Ø§ÙØ¨ØØ« ع٠اÙÙØ¸ÙÙØ©"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "ÙØªØ"
@@ -3441,7 +3441,7 @@ msgid "Open an existing GnuCash file"
msgstr "ÙØªØ Ù
ÙÙ Ù
ÙØ¬Ùد عÙÙ Ø§ÙØ¬Ùاز Ù
Ù GnuCash"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6142,7 +6142,7 @@ msgid "You cannot save to that file."
msgstr "ÙØ§ ÙÙ
ÙÙÙ ØÙظ ÙØ°Ø§ اÙÙ
ÙÙ."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7419,7 +7419,7 @@ msgid "There was an error parsing the file."
msgstr "ØØ¯Ø« خطأ Ø£Ø«ÙØ§Ø¡ تØÙÙ٠اÙÙ
ÙÙ."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "ÙØªØ§Ø¨Ø© Ù
ÙÙ..."
@@ -8296,7 +8296,7 @@ msgid "Import"
msgstr "Ø§Ø³ØªÙØ±Ø§Ø¯"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "ØÙظ"
@@ -8484,8 +8484,7 @@ msgstr "ÙÙ
ÙØªÙ
ÙØ±Ø§Ø¡Ø© اÙÙ
ÙÙ %s."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8502,7 +8501,7 @@ msgstr ""
"\n"
"أرج٠اÙÙ
ØØ§ÙÙØ© Ù
رة أخر٠Ù
ع اÙ
تداد آخر."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8510,7 +8509,7 @@ msgstr ""
"ÙØ§Ø¹Ø¯Ø© Ø§ÙØ¨ÙØ§ÙØ§Øª ÙØ°Ù Ù
Ù ÙØ³Ø®Ø© ÙØ¯ÙÙ
Ø© Ù
٠جÙÙÙØ§Ø´. اختر Ù
ÙØ§ÙÙ ÙØªØ±ÙÙØ© Ø¥ÙÙ Ø§ÙØ¥ØµØ¯Ø§Ø± "
"Ø§ÙØØ§ÙÙØ Ø¥ÙØºØ§Ø¡ ÙÙØ¶Ø¹ عÙÙÙ Ø¹ÙØ§Ù
Ø© ÙÙÙØ±Ø§Ø¡Ø© ÙÙØ·."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8520,7 +8519,7 @@ msgstr ""
"ÙØ§ ÙÙ
ÙÙ Ø£Ù ÙØÙØ¸ بأÙ
اÙ. Ø³ÙØªÙ
ÙØ¶Ø¹ Ø¹ÙØ§Ù
Ø© ÙÙÙØ±Ø§Ø¡Ø© ÙÙØ· ØØªÙ تÙÙÙ
Ù
ÙÙ->ØÙظ باسÙ
Ø "
"ÙÙÙÙ ÙØ¯ ÙØªÙ
ÙÙØ¯Ø§Ù Ø§ÙØ¨ÙØ§ÙØ§Øª Ù٠اÙÙØªØ§Ø¨Ø© Ø¥ÙÙ Ø§ÙØ¥ØµØ¯Ø§Ø± اÙÙØ¯ÙÙ
."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8530,7 +8529,7 @@ msgstr ""
"Ø£Ù ØªØ¤Ø¯Ù ØØªÙ تسجÙÙ Ø§ÙØ®Ø±Ùج. إذا ÙØ§Ù ÙÙØ§Ù ØØ§ÙÙØ§ Ø£Ù Ù
ستخدÙ
Ù٠آخرÙÙØ راجع ÙØ«Ø§Ø¦Ù "
"Ø§ÙØ¨Ø±ÙاÙ
ج ÙÙ
Ø¹Ø±ÙØ© ÙÙÙÙØ© اÙÙØ§Ø¡ Ø¬ÙØ³Ø§Øª Ù
ستخدÙ
ÙÙ Ù
عÙÙØ© ."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -8544,7 +8543,7 @@ msgstr ""
"Ø£Ù ØÙظ ÙØ§Ø¹Ø¯Ø© Ø§ÙØ¨ÙØ§ÙØ§Øª ØØªÙ ÙØªÙ
تØÙ
ÙÙ Ù
ÙØªØ¨Ø© أخرÙ. Ø£Ø±Ø¬Ù Ø²ÙØ§Ø±Ø© اÙÙ
ÙÙØ¹ Ø§ÙØªØ§ÙÙ "
"ÙÙ
Ø²ÙØ¯ Ù
٠اÙÙ
عÙÙÙ
ات https://bugzilla.gnome.org/show_bug.cgi?id=611936 "
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
#, fuzzy
msgid ""
"GnuCash could not complete a critical test for the presence of a bug in the "
@@ -8556,7 +8555,7 @@ msgstr ""
"Ø¨ÙØ§. Ø£Ø±Ø¬Ù Ø²ÙØ§Ø±Ø© Ø§ÙØ±Ø§Ø¨Ø· Ø§ÙØªØ§ÙÙ ÙÙ
Ø²ÙØ¯ Ù
٠اÙÙ
عÙÙÙ
ات https://bugzilla.gnome.org/"
"show_bug.cgi?id=645216 "
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8568,16 +8567,16 @@ msgstr ""
"ØªÙØ±Ùر \"خطأ Ø£Ø«ÙØ§Ø¡ تØÙÙ٠اÙÙ
ÙÙ\"). إذا ÙÙØª ترغب ÙÙ Ø§ÙØ§ØØªÙاظ Ø¨Ø§ÙØ¥ØµØ¯Ø§Ø± اÙÙØ¯ÙÙ
Ø "
"Ø¥ÙÙ٠بدÙÙ ØÙظ."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "ØØ¯Ø« خطأ إدخاÙ/إخراج ØºÙØ± Ù
عرÙÙ (%d)."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "ØÙظ Ø§ÙØªØºÙÙØ±Ø§Øª Ø¥Ù٠اÙÙ
ÙÙØ"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8590,16 +8589,16 @@ msgstr[3] "إذا ÙÙ
تÙÙ
Ø¨Ø§ÙØÙØ¸Ø Ø³ÙØªÙ
تجاÙÙ Ø§ÙØªØºÙÙØ±
msgstr[4] "إذا ÙÙ
تÙÙ
Ø¨Ø§ÙØÙØ¸Ø Ø³ÙØªÙ
تجاÙÙ Ø§ÙØªØºÙÙØ±Ø§Øª Ù
Ù%d دÙÙÙØ© اÙÙ
Ø§Ø¶ÙØ© ."
msgstr[5] "إذا ÙÙ
تÙÙ
Ø¨Ø§ÙØÙØ¸Ø Ø³ÙØªÙ
تجاÙÙ Ø§ÙØªØºÙÙØ±Ø§Øª Ù
Ù%d دÙÙÙØ© اÙÙ
Ø§Ø¶ÙØ© ."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "اÙÙ
تابعة بدÙÙ ØÙظ"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "جÙÙÙØ§Ø´ ÙØ§ ÙÙ
ÙÙÙ Ø§ÙØØµÙ٠عÙ٠اÙÙÙÙ Ù %s."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8607,7 +8606,7 @@ msgstr ""
"ÙØ§Ø¹Ø¯Ø© Ø§ÙØ¨ÙØ§ÙØ§Øª ÙÙØ¯ Ø§ÙØ§Ø³ØªØ®Ø¯Ø§Ù
Ù
Ù ÙØ¨Ù Ù
ستخدÙ
Ø¢Ø®Ø±Ø ÙÙÙ ÙØ°Ù Ø§ÙØØ§ÙØ© ÙØ¬Ø¨ Ø£Ù ÙØ§ "
"ØªÙØªØ ÙØ§Ø¹Ø¯Ø© Ø§ÙØ¨ÙØ§ÙØ§Øª. Ù
اذا ØªØ±ÙØ¯ Ø£Ù ØªÙØ¹ÙØ"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8619,44 +8618,44 @@ msgstr ""
"اÙÙØªØ§Ø¨Ø© ÙÙØ¯ÙÙÙ. إذا ÙÙ
ت باÙÙ
تابعة ÙØ¯ ÙØ§ تÙÙÙ ÙØ§Ø¯Ø± عÙÙ ØÙظ Ø£ÙØ© تغÙÙØ±Ø§Øª. Ù
اذا "
"ØªØ±ÙØ¯ Ø£Ù ØªÙØ¹ÙØ"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr " Ø§ÙØªØ ÙÙÙØ±Ø§Ø¡Ø© ÙÙØ·"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_Ø¥ÙØ´Ø§Ø¡ Ù
ÙÙ Ø¬Ø¯ÙØ¯"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "Ø§ÙØªØ Ù٠جÙ
ÙØ¹ Ø§ÙØØ§ÙØ§Øª"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "Ø®Ø§ØµÙØ© Ø§ÙØªØµÙÙÙ"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_ÙÙ
بإÙÙØ§Ø¡"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "تØÙ
ÙÙ Ø¨ÙØ§Ùات اÙÙ
ستخدÙ
..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "إعادة ØÙظ Ø¨ÙØ§Ùات اÙÙ
ستخدÙ
..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "ØªØµØ¯ÙØ± Ù
ÙÙ..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8667,13 +8666,13 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr "تÙ
ÙØªØ ÙØ§Ø¹Ø¯Ø© Ø§ÙØ¨ÙØ§ÙØ§Øª ÙÙÙØ±Ø§Ø¡Ø© ÙÙØ·. Ù٠ترغب ÙÙ Ø§ÙØÙØ¸ Ø¥ÙÙ Ù
ÙØ§Ù Ù
ختÙÙØ"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
@@ -8682,7 +8681,7 @@ msgstr ""
"Ø¥Ù Ø§ÙØ¹Ùدة Ø³ØªÙØºÙ جÙ
ÙØ¹ Ø§ÙØªØºÙرات Ø§ÙØºÙر Ù
ØÙÙØ¸Ø© ÙÙ %s. ÙÙ Ø£ÙØª Ù
ØªØ£ÙØ¯ Ø£ÙÙ ØªØ±ÙØ¯ "
"Ø§ÙØ¥Ø³ØªÙ
رارØ"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<Ù
عرÙÙ>"
@@ -9232,7 +9231,7 @@ msgstr ""
"ØªØ§Ø±ÙØ® دخÙ٠اÙÙ
عاÙ
ÙØ© اÙÙ
ÙØ±Ø±Ø© Ø£ÙØ¯Ù
Ù
Ù \"عتبة ÙÙÙØ±Ø§Ø¡Ø© ÙÙØ·\" اÙÙ
ØØ¯Ø¯Ø© ÙÙØ°Ø§ "
"Ø§ÙØ¯Ùتر. ÙÙ
Ù٠تغÙÙØ± ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙÙ Ù
ÙÙ->خصائص->ØØ³Ø§Ø¨Ø§Øª."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/as.po b/po/as.po
index 92fe350ba..e9f9f0379 100644
--- a/po/as.po
+++ b/po/as.po
@@ -7,7 +7,7 @@ msgstr ""
"Project-Id-Version: GnuCash 2.6.3\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2014-06-02 10:43+0530\n"
"Last-Translator: Parimal Khade <parimalk at cdac.in> \n"
"Language-Team: NONE\n"
@@ -1328,7 +1328,7 @@ msgstr "সামà¦à§à§°à§ ডিলিঠà¦à§°à¦?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2617,7 +2617,7 @@ msgstr "à¦à¦¾à¦®à§° সনà§à¦§à¦¾à¦¨ à¦à§°à¦"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "à¦à§à¦²à¦"
@@ -3426,7 +3426,7 @@ msgid "Open an existing GnuCash file"
msgstr "à¦à¦à¦¾ বৰà§à¦¤à¦¿ থà¦à¦¾ GnuCash ফাà¦à¦² à¦à§à¦²à¦"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6130,7 +6130,7 @@ msgid "You cannot save to that file."
msgstr "à¦à¦ªà§à¦¨à¦¿ সà§à¦ ফাà¦à¦²à¦à§à¦²à§ à¦à§à¦ à¦à§°à¦¿à¦¬ নà§à§±à¦¾à§°à§."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7419,7 +7419,7 @@ msgid "There was an error parsing the file."
msgstr "ফাà¦à¦²à¦à§ পাৰà¦à¦¿à¦ à¦à§°à§à¦¤à§ à¦à¦à¦¾ à¦à§à¦² à¦à¦à¦¿à¦²."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "... ফাà¦à¦²à¦à§ লিà¦à¦¿ à¦à¦à§"
@@ -8265,7 +8265,7 @@ msgid "Import"
msgstr "à¦à¦®à¦¦à¦¾à¦¨à¦¿"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "à¦à§à¦ à¦à§°à¦"
@@ -8455,8 +8455,7 @@ msgstr "%s ফাà¦à¦²à¦à§à§° পৰা পঢ়িবলৠà¦
নà§à¦®à¦¤
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8473,7 +8472,7 @@ msgstr ""
"\n"
"à¦
নà§à¦à§à§°à¦¹ à¦à§°à¦¿ বà§à¦²à§à¦ à¦à¦à¦¨ নিৰà§à¦¦à§à¦¶à¦¿à¦à¦¾à¦¤ পà§à¦¨à§° à¦à§à¦·à§à¦à¦¾ à¦à§°à¦."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8482,7 +8481,7 @@ msgstr ""
"সà¦à¦¸à§à¦à§°à¦£à¦à§à¦²à§ à¦à¦ªà¦à§à§°à§à¦¡ à¦à§°à¦¿à¦¬à¦²à§ OK à¦à§ নিৰà§à¦¬à¦¾à¦à¦¨ à¦à§°à¦, à¦à§à¦¾à¦ à¦à§à§±à¦²-পঢ়া বà§à¦²à¦¿ à¦à¦¿à¦¹à§à¦¨à¦¿à¦¤ à¦à§°à¦¿à¦¬à¦²à§ "
"বাতিল à¦à§°à¦."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8493,7 +8492,7 @@ msgstr ""
"নà¦à§°à¦¾à¦²à§à¦à§ à¦à¦à¦à§ à¦à§à§±à¦² পঢ়া হিà¦à¦¾à¦ªà§ à¦à¦¿à¦¹à§à¦¨à¦¿à¦¤ à¦à§°à¦¾ হব, à¦à¦¿à¦¨à§à¦¤à§ পà§à§°à¦£à¦¿ সà¦à¦¸à§à¦à§°à¦£à¦à§à¦²à§ লিà¦à§à¦¤à§ "
"ডাà¦à¦¾ হà§à§°à¦¾à¦¬ পাৰà§."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8503,7 +8502,7 @@ msgstr ""
"à¦à¦ªà¦à§à§°à§à¦¡à¦à§ সমà§à¦ªà¦¨à§à¦¨ à¦à§°à¦¿à¦¬ নà§à§±à¦¾à§°à¦¿. যদি তাত বৰà§à¦¤à¦®à¦¾à¦¨à§ à¦à¦¨ à¦à§à¦¨à§ বà§à¦¯à§±à¦¹à¦¾à§°à¦à§°à§à¦¤à¦¾ নাà¦, ডà§à¦à§à¦à¦²à¦¿à¦à¦ "
"লà¦à¦à¦¨ à¦
ধিবà§à¦¶à¦¨à¦¬à§à§° à¦à§à¦¨à§à¦à§ সমà§à¦ªà¦¨à§à¦¨ à¦à§°à¦¿à¦¬ শিà¦à¦¿à¦¬à¦²à§ ডà¦à§à¦®à§à¦¨à¦à§à¦¶à§à¦¬à§à¦¯à¦¨à¦à§ à¦à¦²à§à¦à¦¨à¦¾ à¦à§°à¦."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -8518,7 +8517,7 @@ msgstr ""
"à§à§ SQL ডাà¦à¦¾à¦¬à§à¦à¦¤ à¦à§à¦²à¦¿à¦¬ বা à¦à§à¦ à¦à§°à¦¿à¦¬ নà§à§±à¦¾à§°à¦¿à¦¬. à¦
ধিঠতথà§à¦¯à§° বাবৠà¦
নà§à¦à§à§°à¦¹ à¦à§°à¦¿ https://"
"bugs.gnucash.org/show_bug.cgi?id=611936 à¦à§ à¦à¦¾à¦à¦."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8530,7 +8529,7 @@ msgstr ""
"দà§à¦¬à¦¾à§°à¦¾ হব পাৰà§. à¦
নà§à¦à§à§°à¦¹ à¦à§°à¦¿ à¦
ধিঠতথà§à¦¯à§° বাবৠhttps://bugs.gnucash.org/show_bug."
"cgi?id=645216 à¦à§ à¦à¦¾à¦à¦."
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8542,16 +8541,16 @@ msgstr ""
"সà¦à§à¦·à¦® নহব (à¦à¦à¦à§à§±à§ \"error parsing the file\" à¦à¦à¦¾ ৰিপà§à§°à§à¦ à¦à§°à¦¿à¦¬). যদি à¦à¦ªà§à¦¨à¦¿ পà§à§°à¦£à¦¿ "
"সà¦à¦¸à§à¦à§°à¦£à¦à§ সà¦à§°à¦à§à¦·à¦£ à¦à§°à¦¿à¦¬à¦²à§ à¦à¦à§à¦à¦¾ à¦à§°à§, তà§à¦¨à§à¦¤à§ à¦à§à¦ নà¦à§°à¦¾à¦à§ à¦à¦²à¦¾à¦ à¦à¦¹à¦."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "à¦à¦à¦¾ নà¦à¦¨à¦¾ I/O à¦à§à¦² (%d) à¦à¦²à¦¾à¦²."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "ফাà¦à¦²à¦à§à§° সলনিবà§à§° à¦à§à¦ à¦à§°à§ নà§?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8560,16 +8559,16 @@ msgid_plural ""
msgstr[0] "à¦à¦ªà§à¦¨à¦¿ যদি à¦à§à¦ নà¦à§°à§, à¦à¦à§° %d মিনিà¦à§° সলনিবà§à§° à¦à¦ªà§à¦à§à¦·à¦¿à¦¤ à¦à§°à¦¾ হব."
msgstr[1] "à¦à¦ªà§à¦¨à¦¿ যদি à¦à§à¦ নà¦à§°à§, à¦à¦à§° %d মিনিà¦à§° সলনিবà§à§° à¦à¦ªà§à¦à§à¦·à¦¿à¦¤ à¦à§°à¦¾ হব."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "à¦à§à¦ নà¦à§°à¦¾à¦à§ à¦
বà§à¦¯à¦¾à¦¹à¦¤ ৰাà¦à¦"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "%s à§° à¦à¦¾à§°à¦£à§ GnuCash à§à§ à¦à¦à¦¾ লঠপà§à§°à¦¾à¦ªà§à¦¤à¦¿ নà¦à§°à§."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8577,7 +8576,7 @@ msgstr ""
"সà§à¦ ডাà¦à¦¾à¦¬à§à¦à¦à¦¨ à¦à¦¨ বà§à¦¯à§±à¦¹à¦¾à§°à¦à§°à§à¦¤à¦¾à§° দà§à¦¬à¦¾à§°à¦¾ বà§à¦¯à§±à¦¹à¦¾à§° হব পাৰà§, যিà¦à§ à¦à§à¦·à§à¦¤à§à§°à¦¤ à¦à¦ªà§à¦¨à¦¿ "
"ডাà¦à¦¾à¦¬à§à¦à¦à¦¨ à¦à§à¦²à¦¿à¦¬ নà§à§±à§°à¦¿à¦¬. à¦à¦ªà§à¦¨à¦¿ à¦à¦¿ à¦à§°à¦¿à¦¬ বিà¦à¦¾à§°à¦¿à¦¬?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8589,44 +8588,44 @@ msgstr ""
"à¦à§°à¦£à§ লিà¦à¦¾ à¦
নà§à¦®à¦¤à¦¿ নাথাà¦à¦¿à¦¬ পাৰà§. যদি à¦à¦ªà§à¦¨à¦¿ à¦à¦à¦¬à¦¾à¦¢à¦¼à§ à¦à¦ªà§à¦¨à¦¿ à¦à§à¦¨à§ সলনি à¦à§à¦ à¦à§°à¦¿à¦¬à¦²à§ "
"সà¦à§à¦·à¦® নহব. à¦à¦ªà§à¦¨à¦¿ à¦à¦¿ à¦à§°à¦¿à¦¬ বিà¦à¦¾à§°à¦¿à¦¬?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "à¦à§à§±à¦² পঢ়া হিà¦à¦¾à¦ªà§ à¦à§à¦²à¦"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "à¦à¦à¦¾ নতà§à¦¨ ফাà¦à¦² সà§à¦·à§à¦à¦¿ à¦à§°à¦"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "যিà¦à§à¦¨à§ à¦à¦ªà¦¾à§à§ à¦à§à¦²à¦"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "সà§à¦¥à¦¾à¦¨à¦§à¦¾à§°à¦"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "à¦à§°à¦¿ দিà§à¦"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "বà§à¦¯à§±à¦¹à¦¾à§°à¦à§°à§à¦¤à¦¾à§° ডাà¦à¦¾ লà§à¦¡ হৠà¦à¦à§..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "বà§à¦¯à§±à¦¹à¦¾à§°à¦à§°à§à¦¤à¦¾à§° ডাà¦à¦¾ পà§à¦¨à§° à¦à§à¦ হৠà¦à¦à§..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "ফাà¦à¦² ৰপà§à¦¤à¦¾à¦¨à¦¿ হৠà¦à¦à§..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8637,7 +8636,7 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
@@ -8645,7 +8644,7 @@ msgstr ""
"à¦à§à§±à¦²-পঢ়া হিà¦à¦¾à¦ªà§ ডাà¦à¦¾à¦¬à§à¦à¦à§ à¦à§à¦²à¦¾ হà§à¦à¦¿à¦². à¦à¦ªà§à¦¨à¦¿ বà§à¦²à§à¦ à¦à¦à¦¾ সà§à¦¥à¦¾à¦¨à¦¤ à¦à¦à¦à§ à¦à§à¦ à¦à§°à¦¿à¦¬ "
"বিà¦à¦¾à§°à§ নà§à¦à¦¿?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
@@ -8653,7 +8652,7 @@ msgid ""
msgstr ""
"%s ফাà¦à¦²à¦à§ à¦à¦¤à¦¿à¦®à¦§à§à¦¯à§ বৰà§à¦¤à¦¿ à¦à¦à§. à¦à¦ªà§à¦¨à¦¿ à¦à¦à¦à§ à¦
à¦à¦¾à§°à§°à¦¾à¦à¦ à¦à§°à¦¿à¦¬ বিà¦à¦¾à§°à§ বà§à¦²à¦¿ নিশà§à¦à¦¿à¦¤à¦¨à§?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<à¦
়à¦à§à¦à¦¾à¦¤>"
@@ -9201,7 +9200,7 @@ msgstr ""
"নà¦à¦² লà§à¦¨à¦¦à§à¦¨à§° à¦à§°à§à§±à¦¾ তাৰিà¦à¦à§ à¦à¦ à¦à¦¿à¦¤à¦¾à¦ªà¦à¦¨à§° বাবৠà¦à§à¦ à¦à§°à¦¾ \"Read-Only Threshold\" "
"তà¦à§ পà§à§°à¦£à¦¿. à¦à¦ à¦à§à¦à¦¿à¦à¦à§ ফাà¦à¦²->বà§à¦¶à¦¿à¦·à§à¦à§à¦¯à¦¬à§à§°->à¦à¦à¦¾à¦à¦¨à§à¦à¦¬à§à§° ত সলনি à¦à§°à¦¿à¦¬ পাৰি."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/az.po b/po/az.po
index 5e648bf7d..153b66d49 100644
--- a/po/az.po
+++ b/po/az.po
@@ -7,7 +7,7 @@ msgstr ""
"Project-Id-Version: gnucash-1.7.0\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2001-11-27 17:55+0200\n"
"Last-Translator: Vasif İsmayıloÄlu MD <azerb_linux at hotmail.com>\n"
"Language-Team: Azerbaijani <linuxaz at azerimail.net>\n"
@@ -1223,7 +1223,7 @@ msgstr ""
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2536,7 +2536,7 @@ msgstr "Axtar"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Aç"
@@ -3337,7 +3337,7 @@ msgid "Open an existing GnuCash file"
msgstr ""
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
#, fuzzy
@@ -6068,7 +6068,7 @@ msgid "You cannot save to that file."
msgstr ""
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7300,7 +7300,7 @@ msgid "There was an error parsing the file."
msgstr ""
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr ""
@@ -8135,7 +8135,7 @@ msgid "Import"
msgstr "İxrac Et"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Qeyd Et"
@@ -8306,8 +8306,7 @@ msgstr ""
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8318,27 +8317,27 @@ msgid ""
"Please try again in a different directory."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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 ""
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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 ""
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 ""
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8347,7 +8346,7 @@ msgid ""
"gnucash.org/show_bug.cgi?id=611936 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8355,7 +8354,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8363,16 +8362,16 @@ msgid ""
"you wish to preserve the old version, exit without saving."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8381,22 +8380,22 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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 ""
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
msgid ""
"That database may be on a read-only file system, you may not have write "
"permission for the directory, or your anti-virus software is preventing this "
@@ -8404,43 +8403,43 @@ msgid ""
"you like to do?"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
msgid "Create _New File"
msgstr "Yeni bir fayl yarat"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
#, fuzzy
msgid "Open _Anyway"
msgstr "Yeni Hesab"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
msgid "Open _Folder"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
#, fuzzy
msgid "_Quit"
msgstr "_DüzÉlt"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8448,20 +8447,20 @@ msgid ""
"%s"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
#, fuzzy
msgid "<unknown>"
@@ -9026,7 +9025,7 @@ msgid ""
">Properties->Accounts."
msgstr ""
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/bg.po b/po/bg.po
index 6d2ec1731..0e489aeb0 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -11,7 +11,7 @@ msgstr ""
"Project-Id-Version: GnuCash 2.4.2\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2011-10-25 13:27+0200\n"
"Last-Translator: Rosi Dimova <pocu at bk.ru>\n"
"Language-Team: Bulgarian <dict at fsa-bg.org>\n"
@@ -1327,7 +1327,7 @@ msgstr "ÐзÑÑиване на инвеÑÑиÑионна ÑÑока?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2633,7 +2633,7 @@ msgstr "ТÑÑÑене на задание"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "ÐÑваÑÑне"
@@ -3444,7 +3444,7 @@ msgid "Open an existing GnuCash file"
msgstr "ÐÑваÑÑне на ÑÑÑеÑÑвÑÐ²Ð°Ñ Ñайл на GnuCash"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6199,7 +6199,7 @@ msgid "You cannot save to that file."
msgstr "Ðе можеÑе да запиÑваÑе вÑв Ñайла."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7497,7 +7497,7 @@ msgid "There was an error parsing the file."
msgstr "ÐÑзникна гÑеÑка пÑи инÑеÑпÑеÑаÑÐ¸Ñ Ð½Ð° Ñайла."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "ÐапиÑване на Ñайл..."
@@ -8348,7 +8348,7 @@ msgstr "ÐнаÑÑне"
# FIXME Save Ðапазване
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Ðапазване"
@@ -8544,8 +8544,7 @@ msgstr "ÐÑма пÑава за ÑеÑене Ð¾Ñ Ñайла %s."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8562,7 +8561,7 @@ msgstr ""
"\n"
"ÐолÑ, опиÑайÑе в дÑÑга папка."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8570,7 +8569,7 @@ msgstr ""
"ÐазаÑа Ð¾Ñ Ð´Ð°Ð½Ð½Ð¸ е Ð¾Ñ Ð¿Ð¾-ÑÑаÑа веÑÑÐ¸Ñ Ð½Ð° GnuCash. ÐзбеÑеÑе 'OK' за обновÑване "
"до ÑекÑÑаÑа веÑÑÐ¸Ñ Ð¸ 'ÐÑказ', за да Ñ Ð¾ÑбележиÑе Ñамо за ÑеÑене."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
#, fuzzy
msgid ""
"This database is from a newer version of GnuCash. This version can read it, "
@@ -8581,7 +8580,7 @@ msgstr ""
"ÑеÑе, но не може да запазва безопаÑно в неÑ. Ще бÑде оÑбелÑзана Ñамо за "
"ÑеÑене, докаÑо не избеÑеÑе Файл->Ðапазване каÑо."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8591,7 +8590,7 @@ msgstr ""
"не може да Ñе обнови. Ðко в моменÑа нÑма дÑÑги поÑÑебиÑели, пÑовеÑеÑе в "
"докÑменÑаÑиÑÑа как да оÑÑÑÑаниÑе виÑÑÑиÑе ÑеÑии."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -8606,7 +8605,7 @@ msgstr ""
"попÑавÑне ÑÑез използване на дÑÑга веÑÑÐ¸Ñ Ð½Ð° \"libdbi\". Ðа повеÑе "
"инÑоÑмаÑиÑ, молÑ, поÑеÑеÑе https://bugs.gnucash.org/show_bug.cgi?id=611936."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8614,7 +8613,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8623,16 +8622,16 @@ msgid ""
msgstr ""
# FIXME I/O вÑ
одно/изÑ
одна
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "ÐоÑви Ñе непознаÑа вÑ
одно/изÑ
одна гÑеÑка (%d)."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "Ðа Ñе запазÑÑ Ð»Ð¸ пÑомениÑе вÑв Ñайла?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, fuzzy, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8643,16 +8642,16 @@ msgstr[0] ""
msgstr[1] ""
"Ðко не запазиÑе, пÑомениÑе Ð¾Ñ Ð¿Ð¾ÑледниÑе %d минÑÑи Ñе бÑÐ´Ð°Ñ Ð¾Ñменени."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "ÐÑодÑлжаване _без запазване"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash не може да полÑÑи пÑаво за Ð·Ð°Ð¿Ð¸Ñ Ð´Ð¾ %s."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8660,7 +8659,7 @@ msgstr ""
"Ðоже би базаÑа Ð¾Ñ Ð´Ð°Ð½Ð½Ð¸ Ñе използва Ð¾Ñ Ð´ÑÑг поÑÑебиÑел и не бива да Ñ "
"оÑваÑÑÑе. Ðак иÑкаÑе да поÑÑÑпиÑе?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8672,44 +8671,44 @@ msgstr ""
"пÑава за запиÑване вÑÑÑ
Ñ Ð¿Ð°Ð¿ÐºÐ°Ñа. Ðко пÑодÑлжиÑе, може и да не ÑÑпееÑе да "
"запазиÑе пÑомениÑе. Ðак иÑкаÑе да поÑÑÑпиÑе?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_СÑздаване на нов Ñайл"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
#, fuzzy
msgid "Open _Anyway"
msgstr "_ÐÑваÑÑне винаги"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
msgid "Open _Folder"
msgstr "СинÑеÑиÑна ÑмеÑка "
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_ÐзÑ
од"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "ÐаÑеждане на поÑÑебиÑелÑки данни..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "ÐÑезапиÑване на поÑÑебиÑелÑки данни..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "ÐзнаÑÑне на Ñайл..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8720,14 +8719,14 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
#, fuzzy
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr "Ðзглежда базаÑа Ð¾Ñ Ð´Ð°Ð½Ð½Ð¸ %s не ÑÑÑеÑÑвÑва. ÐÑкаÑе ли да Ñ ÑÑздадеÑе?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
@@ -8735,7 +8734,7 @@ msgid ""
msgstr ""
"ФайлÑÑ %s веÑе ÑÑÑеÑÑвÑва. СигÑÑни ли ÑÑе, Ñе иÑкаÑе да го пÑезапиÑеÑе?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<непознаÑ>"
@@ -9285,7 +9284,7 @@ msgid ""
">Properties->Accounts."
msgstr ""
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
#, fuzzy
diff --git a/po/brx.po b/po/brx.po
index f4d15b39d..09f502f54 100644
--- a/po/brx.po
+++ b/po/brx.po
@@ -7,7 +7,7 @@ msgstr ""
"Project-Id-Version: GnuCash 2.6.3\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2014-08-19 21:49-0800\n"
"Last-Translator: Ritu Panwar <ritup at cdac.in>\n"
"Language-Team: NONE \n"
@@ -1320,7 +1320,7 @@ msgstr "बà¥à¤¸à¤¾à¤¦à¤à¥ à¤à¥à¤®à¥à¤°?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2605,7 +2605,7 @@ msgstr "à¤à¤¾à¤®à¤¾à¤¨à¤¿ नाà¤à¤¿à¤°à¤¨à¤¾ दिहà¥à¤¨"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "à¤à¥à¤µ"
@@ -3411,7 +3411,7 @@ msgid "Open an existing GnuCash file"
msgstr "मà¥à¤¨à¤¸à¥ थाà¤à¤¾à¤¨à¤¾à¤¯ GnuCash फाà¤à¤²à¤à¥ à¤à¥à¤µ"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6119,7 +6119,7 @@ msgid "You cannot save to that file."
msgstr "नà¥à¤à¤¥à¤¾à¤à¤¾ बॠफाà¤à¤²à¤à¥ थिना दà¥à¤¨à¤¨à¥ हाया।"
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7400,7 +7400,7 @@ msgid "There was an error parsing the file."
msgstr "फाà¤à¤²à¤à¥ पारà¥à¤¸ à¤à¤¾à¤²à¤¾à¤®à¤¨à¤¾à¤¯à¤¾à¤µ मà¥à¤¨à¤¸à¥ à¤à¥à¤°à¥à¤¨à¥à¤¥à¤¿ à¤à¤¾à¤¦à¥à¤à¥¤"
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "फाà¤à¤²à¤à¥ लिरà¤à¤¾à¤¸à¤¿à¤¨à¥ दà¤..."
@@ -8243,7 +8243,7 @@ msgid "Import"
msgstr "लाबà¥à¤¨à¤¾à¤¯"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "थिना दà¥à¤¨"
@@ -8435,8 +8435,7 @@ msgstr "%s फाà¤à¤² निफà¥à¤°à¤¾à¤¯ फरायनॠà¤à¤¨à¤¾à¤¯à¤¥
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8453,7 +8452,7 @@ msgstr ""
"\n"
"à¤
ननानॠà¤à¥à¤¬à¥à¤¨ डिरà¥à¤à¥à¤à¤°à¤¿à¤à¤µ फिन नाà¤à¤¾à¥¤"
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8461,7 +8460,7 @@ msgstr ""
"बॠडाà¤à¤¾à¤¬à¥à¤¸à¤à¥ GnuCash नि मà¥à¤¨à¤¸à¥ à¤à¥à¤à¤¾à¤® लिरसà¥à¤²à¤¾à¤¯à¤¨à¤¾à¤¯ निफà¥à¤°à¤¾à¤¯ लानाय à¤à¤¾à¤¦à¥à¤à¥¤ बà¥à¤à¥ दानि "
"लिरसà¥à¤²à¤¾à¤¯à¤¨à¤¾à¤¯à¤¾à¤µ à¤à¤ªà¤à¥à¤°à¥à¤¡ à¤à¤¾à¤²à¤¾à¤®à¤¨à¥ OK à¤à¥ सायà¤à¥¤"
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8472,7 +8471,7 @@ msgstr ""
"नà¥à¤à¤¥à¤¾à¤à¤¾ फाà¤à¤²à¤à¥ à¤à¤¾à¤²à¤¾à¤®à¤¾->बादि थिना दà¥à¤¨à¤¾, नाथाय डाà¤à¤¾à¤¯à¤¾ à¤à¥à¤à¤¾à¤® बिसानà¤à¤µ लिरनायाव "
"à¤à¥à¤®à¤¾à¤¨à¥ हाà¤à¥à¥¤"
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8482,7 +8481,7 @@ msgstr ""
"à¤à¤ªà¤à¥à¤°à¥à¤à¤à¥ à¤à¤¾à¤²à¤¾à¤®à¤¨à¥ हाया। दासानà¥à¤¦à¤¿ à¤à¥à¤¬à¥ à¤à¥à¤¬à¥à¤¨ बाहायà¤à¥à¤°à¤¾ à¤à¥à¤¯à¤¾à¤¬à¥à¤²à¤¾ डà¥à¤à¤²à¤¿à¤ लà¤à¤¿à¤¨ à¤à¤¥à¥à¤®à¥à¤®à¤¾à¤à¥ माबà¥à¤°à¥ "
"साफा à¤à¤¾à¤²à¤¾à¤®à¤¨à¤¾à¤¯à¤à¥ सà¥à¤²à¥à¤à¤¨à¥ थाà¤à¤¾à¤¯ डà¤à¥à¤®à¥à¤¨à¥à¤à¥à¤¸à¤¨ निफà¥à¤°à¤¾à¤¯ बà¥à¤¸à¥à¤¨ ला।"
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -8497,7 +8496,7 @@ msgstr ""
"à¤à¤¾à¤²à¤¾à¤®à¤¨à¤¾à¤¨à¥ थि à¤à¤¾à¤²à¤¾à¤®à¤à¤¾à¤¯à¤¾à¥¤ à¤à¥à¤¬à¤¾à¤ मà¥à¤¨à¤¥à¤¿à¤¨à¥ थाà¤à¤¾à¤¯ https://bugs.gnucash.org/show_bug."
"cgi?id=611936 à¤à¥ नाय।"
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8508,7 +8507,7 @@ msgstr ""
"फà¥à¤à¥à¤¬à¤¨à¥ हायाà¤à¥à¥¤ बà¥à¤¯à¥ नà¥à¤à¤¥à¤¾à¤à¤¨à¤¿ SQL डाà¤à¤¾à¤¬à¥à¤¸à¤¨à¤¿ à¤à¤¨à¤¾à¤¯à¤¥à¤¿ à¤à¤¾à¤à¥à¤°à¤¿ बाà¤à¤à¥à¤®à¤¹à¤°à¤à¥à¤ à¤à¤¾à¤¨à¥ हाà¤à¥à¥¤ "
"à¤à¥à¤¬à¤¾à¤ मà¥à¤¨à¤¥à¤¿à¤¨à¥ थाà¤à¤¾à¤¯ https://bugs.gnucash.org/show_bug.cgi?id=645216 à¤à¥ नाय।"
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8521,16 +8520,16 @@ msgstr ""
"रिपरà¥à¤ à¤à¤¾à¤²à¤¾à¤®à¤à¥à¤¨)। नà¥à¤à¤¥à¤¾à¤à¤¾ à¤à¥à¤à¤¾à¤¨ बिसानà¤à¥ सà¤à¤°à¥à¤à¤¾ à¤à¤¾à¤²à¤¾à¤®à¤¨à¥ लà¥à¤¬à¥à¤¯à¥à¤¬à¥à¤²à¤¾, थिना दà¥à¤¨à¤¾à¤¬à¤¾à¤²à¤¾à¤¨à¥ "
"à¤à¤à¤à¤¾à¤° लाà¤à¥¤"
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "मà¥à¤¨à¤¸à¥ मà¥à¤¨à¤¥à¤¿à¤®à¥à¤¨à¥ I/O à¤à¥à¤°à¥à¤¨à¥à¤¥à¤¿ (%d) à¤à¤¾à¤¦à¥à¤à¥¤"
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "सà¥à¤²à¤¾à¤¯à¤¨à¤¾à¤¯à¤«à¥à¤°à¤à¥ फाà¤à¤²à¤¾à¤µ थिना दà¥à¤¨?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8541,16 +8540,16 @@ msgstr[0] ""
msgstr[1] ""
"नà¥à¤à¤¥à¤¾à¤à¤¾ थिना दà¥à¤¨à¤¾à¤¬à¥à¤²à¤¾, सिà¤à¤¾à¤à¤¨à¤¿ %d मिनिà¤à¤¨à¤¿ सà¥à¤²à¤¾à¤¯à¤¨à¤¾à¤¯à¤«à¥à¤°à¤à¥ नाà¤à¤¾à¤°à¤¨à¤¾à¤¯ à¤à¤¾à¤à¥à¤¨à¥¤"
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "थिना दà¥à¤¨à¤¾à¤¬à¤¾à¤²à¤¾à¤¨à¥ सालाय लाà¤à¤¬à¤¾à¤¯ था"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash ठ%s नि थाà¤à¤¾à¤¯ लà¤à¤à¥ मà¥à¤¨à¤¨à¥ हायाà¤à¥à¥¤"
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8558,7 +8557,7 @@ msgstr ""
"बॠडाà¤à¤¾à¤¬à¥à¤¸à¤ à¤à¥à¤¬à¥à¤¨ मà¥à¤¨à¤¸à¥ बाहायà¤à¥à¤°à¤¾à¤à¥à¤ बाहाय à¤à¤¾à¤¦à¥à¤ à¤à¤¾à¤¨à¥ हाà¤à¥, à¤à¤¾à¤¯ बà¥à¤¬à¥à¤²à¤¿à¤¯à¤¾à¤µ नà¥à¤à¤¥à¤¾à¤à¤¾ "
"डाà¤à¤¾à¤¬à¥à¤¸à¤à¥ à¤à¥à¤µà¤¨à¥ नाà¤à¤¾à¥¤ नà¥à¤à¤¥à¤¾à¤à¤¾ मा à¤à¤¾à¤²à¤¾à¤®à¤¨à¥ लà¥à¤¬à¥à¤¯à¥?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8570,44 +8569,44 @@ msgstr ""
"लिरनायनि à¤à¤¨à¤¾à¤¯à¤¥à¤¿ à¤à¥à¤¯à¤¾ à¤à¤¾à¤¨à¥ हाà¤à¥à¥¤ नà¥à¤à¤¥à¤¾à¤à¤¾ दावà¤à¤¾ लाà¤à¥à¤¬à¥à¤²à¤¾ नà¥à¤à¤¥à¤¾à¤à¤¾ à¤à¥à¤¬à¥ सà¥à¤²à¤¾à¤¯à¤¨à¤¾à¤¯à¤à¥ "
"थिना दà¥à¤¨à¤¨à¥ हानाय नà¤à¤¾ à¤à¤¾à¤¨à¥ हाà¤à¥à¥¤ नà¥à¤à¤¥à¤¾à¤à¤¾ मा à¤à¤¾à¤²à¤¾à¤®à¤¨à¥ लà¥à¤¬à¥à¤¯à¥?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "फरायनà¥-थाà¤à¤¾à¤¯à¤²'à¤à¤µ à¤à¥à¤µ"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "à¤à¥à¤¦à¤¾à¤¨ फाà¤à¤² सà¥à¤°à¤à¤¿"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "फरायनà¥-थाà¤à¤¾à¤¯à¤²'à¤à¥ à¤à¥à¤µ"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "पà¥à¤²à¥à¤¸à¤¹'लà¥à¤¡à¤¾à¤°"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "नाà¤à¤¾à¤° लाà¤"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "बाहायà¤à¥à¤°à¤¾à¤¨à¤¿ डाà¤à¤¾à¤à¥ लड à¤à¤¾à¤²à¤¾à¤® à¤à¤¾à¤¸à¤¿à¤¨à¥ दà¤..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "बाहायà¤à¥à¤°à¤¾à¤¨à¤¿ डाà¤à¤¾à¤à¥ फिन थिना दà¥à¤¨à¤à¤¾à¤¸à¤¿à¤¨à¥ दà¤..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "फाà¤à¤²à¤à¥ लाबà¥à¤à¤¾à¤¸à¤¿à¤¨à¥ दà¤.."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8618,7 +8617,7 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
@@ -8626,14 +8625,14 @@ msgstr ""
"डाà¤à¤¾à¤¬à¥à¤¸à¤à¥ फरायनà¥-थाà¤à¤¾à¤¯à¤²' à¤à¥à¤µà¤¦à¥à¤à¤®à¥à¤¨à¥¤ बà¥à¤à¥ नà¥à¤à¤¥à¤¾à¤à¤¾ à¤à¥à¤¬à¥à¤¨ à¤à¤¾à¤¯à¤à¤¾à¤¯à¤¾à¤µ थिना दà¥à¤¨à¤¨à¥ लà¥à¤¬à¥à¤¯à¥ "
"नामा?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "%s फाà¤à¤²à¤ सिà¤à¤¾à¤à¤¾à¤µà¤¨à¥ दà¤à¥¤ थारà¥à¤¨à¥ नà¥à¤à¤¥à¤¾à¤à¤¾ बà¥à¤à¥ à¤
à¤à¤¾à¤°à¤°à¤¾à¤à¤ à¤à¤¾à¤²à¤¾à¤®à¤¨à¥ लà¥à¤¬à¥à¤¯à¥ नामा?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<मà¥à¤¨à¤¥à¤¿à¤®à¥à¤¨à¥>"
@@ -9184,7 +9183,7 @@ msgstr ""
"डà¥à¤ªà¥à¤²à¤¿à¤à¥à¤ लà¥à¤¨à¤¦à¥à¤¨à¤¨à¤¿ हाबहà¥à¤¨à¤¾à¤¯ à¤
à¤à¥à¤'ठबॠबà¥à¤(बिà¤à¤¾à¤¬)नि थाà¤à¤¾à¤¯ फà¤à¤à¤¾à¤¨à¤¾à¤¯ \"फरायनà¥-थाà¤à¤¾à¤¯à¤²' "
"थà¥à¤°à¥à¤¸à¤¹'लà¥à¤¡\" निà¤à¥à¤°à¥à¤ à¤à¥à¤à¤¾à¤®à¤¸à¤¿à¤¨à¥¤ बॠसà¥à¤à¤¿à¤à¤à¥ फाà¤à¤²->à¤à¤à¥à¤¥à¤¾à¤¯->à¤à¤à¤¾à¤à¤¨à¥à¤à¤à¤µ सà¥à¤²à¤¾à¤¯à¤¨à¥ हायà¥à¥¤"
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/ca.po b/po/ca.po
index 7cbea3bb4..f384ab056 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -44,7 +44,7 @@ msgstr ""
"Project-Id-Version: gnucash 2.6.15\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2016-12-23 08:34+0100\n"
"Last-Translator: Walter Garcia-Fontes <walter.garcia at upf.edu>\n"
"Language-Team: Catalan <ca at dodds.net>\n"
@@ -1363,7 +1363,7 @@ msgstr "Voleu suprimir l'acció o divisa?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2652,7 +2652,7 @@ msgstr "Cerca una tasca"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Obre"
@@ -3468,7 +3468,7 @@ msgid "Open an existing GnuCash file"
msgstr "Obre un fitxer del GnuCash"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6199,7 +6199,7 @@ msgid "You cannot save to that file."
msgstr "No podeu desar en aquest fitxer."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7498,7 +7498,7 @@ msgid "There was an error parsing the file."
msgstr "Hi ha hagut un error en analitzar el fitxer."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "S'està escrivint el fitxer..."
@@ -8355,7 +8355,7 @@ msgid "Import"
msgstr "_Importa"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Desa"
@@ -8552,8 +8552,7 @@ msgstr "No teniu permÃs de lectura per al fitxer %s."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8570,7 +8569,7 @@ msgstr ""
"\n"
"Si us plau proveu un altre cop a un directori diferent."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8579,7 +8578,7 @@ msgstr ""
"per actualitzar-la a la versió actual. Cancel·leu per marcar-la com de sols-"
"lectura."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8590,7 +8589,7 @@ msgstr ""
"lectura fins que feu un Fitxer->Desar Com, però es poden perdre dades en "
"escriure a la versió antiga."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8601,7 +8600,7 @@ msgstr ""
"connectats, consulteu la documentació per a determinar com eliminar sessions "
"penjades."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -8617,7 +8616,7 @@ msgstr ""
"Si us plau mireu https://bugs.gnucash.org/show_bug.cgi?id=611936 per a més "
"informació."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8630,7 +8629,7 @@ msgstr ""
"SQL. Si us plau mireu https://bugs.gnucash.org/show_bug.cgi?id=645216 \n"
"per a més informació."
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8642,16 +8641,16 @@ msgstr ""
"més antiga de GnuCash (informarà d'un error \"analitzant el fitxer\"). Si "
"voleu preservar la versió antiga, sortiu sense desar."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "S'ha produït un error desconegut (%d) d'E/S"
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "Voleu desar els canvis del fitxer?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8660,16 +8659,16 @@ msgid_plural ""
msgstr[0] "Si no deseu, els canvis de l'últim minut %d es descartaran."
msgstr[1] "Si no deseu, es descartaran els canvis dels darrers %d minuts."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "Continua _sense desar"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "El GnuCash no ha pogut blocar %s."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8677,7 +8676,7 @@ msgstr ""
"Ãs possible que un altre usuari estigui utilitzant aquella base de dades, i "
"en tal cas no haurÃeu d'obrir la base de dades. Que voleu fer?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8689,44 +8688,44 @@ msgstr ""
"potser no teniu permisos d'escriptura al directori. Si continueu potser no "
"podreu desar cap canvi. Què voldrÃeu fer?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "Ob_re de sols lectura"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_Crea un fitxer nou"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "_Obre de totes maneres"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "contenidor"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_Surt"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "S'estan carregant les dades d'usuari..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "S'estan recarregant les dades d'usuari..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "S'està exportant el fitxer..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8737,7 +8736,7 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
@@ -8745,7 +8744,7 @@ msgstr ""
"La base de dades s'ha obert com de sols-lectura. Voleu desar-la en un lloc "
"diferent?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
@@ -8754,7 +8753,7 @@ msgstr ""
"Refer eliminarà tots els canvis no desats a %s. Teniu seguretat de voler "
"continuar?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<desconegut>"
@@ -9313,7 +9312,7 @@ msgstr ""
"sols lectura\" establert per a aquest llibre. Aquest parà metre es pot "
"canviar a Fitxer->Propietats->Comptes."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/cs.po b/po/cs.po
index 527195df5..46541c924 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: gnucash 2.4.7\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2012-03-29 11:39+0200\n"
"Last-Translator: Petr Pisar <petr.pisar at atlas.cz>\n"
"Language-Team: Czech <translation-team-cs at lists.sourceforge.net>\n"
@@ -1316,7 +1316,7 @@ msgstr "Odstranit komoditu?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2620,7 +2620,7 @@ msgstr "NajÃt práci"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "OtevÅÃt"
@@ -3441,7 +3441,7 @@ msgid "Open an existing GnuCash file"
msgstr "OtevÅÃt existujÃcà soubor GnuCash"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6212,7 +6212,7 @@ msgid "You cannot save to that file."
msgstr "Nemůžete ukládat do tohoto souboru."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7515,7 +7515,7 @@ msgid "There was an error parsing the file."
msgstr "PÅi zpracovávánà souboru doÅ¡lo k chybÄ."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "Zapisuji soubor..."
@@ -8386,7 +8386,7 @@ msgid "Import"
msgstr "Importovat"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Uložit"
@@ -8578,8 +8578,7 @@ msgstr "Chybà oprávnÄnà ÄÃst ze souboru %s."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8590,7 +8589,7 @@ msgid ""
"Please try again in a different directory."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
#, fuzzy
msgid ""
"This database is from an older version of GnuCash. Select OK to upgrade it "
@@ -8599,14 +8598,14 @@ msgstr ""
"Tato databáze je ze staršà verze GnuCash. Chcete databázi aktualizovat na "
"aktuálnà verzi?"
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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 ""
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8616,7 +8615,7 @@ msgstr ""
"dokud se neodhlásÃ. Jestliže ji momentálnÄ Å¾Ã¡dnà dalšà uživatelé "
"nepoužÃvajÃ, najdÄte v dokumentaci, jak vymazat neplatná pÅihlaÅ¡ovacà sezenÃ."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8625,7 +8624,7 @@ msgid ""
"gnucash.org/show_bug.cgi?id=611936 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8633,7 +8632,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8641,16 +8640,16 @@ msgid ""
"you wish to preserve the old version, exit without saving."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "DoÅ¡lo k neznámé chybÄ V/V (%d)."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "Uložit zmÄny do souboru?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, fuzzy, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8660,16 +8659,16 @@ msgstr[0] "Pokud je neuložÃte, budou zmÄny za poslednÃch %d minut ztraceny."
msgstr[1] "Pokud je neuložÃte, budou zmÄny za poslednÃch %d minut ztraceny."
msgstr[2] "Pokud je neuložÃte, budou zmÄny za poslednÃch %d minut ztraceny."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "PokraÄovat _bez uloženÃ"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash nemohl zÃskat zámek pro %s."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8677,7 +8676,7 @@ msgstr ""
"Tuto databázi možná použÃvá jiný uživatel. V tom pÅÃpadÄ byste nemÄli "
"databázi otevÃrat. Co chcete udÄlat?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8689,46 +8688,46 @@ msgstr ""
"k zápisu pro daný adresáÅ. Pokud budete pokraÄovat, možná nebudete moci "
"uložit zmÄny. Co chcete udÄlat?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "VytvoÅit _nový soubor"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
#, fuzzy
msgid "Open _Anyway"
msgstr "PÅesto _otevÅÃt"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
msgid "Open _Folder"
msgstr "Držà mÃsto"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "U_konÄit"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
#, fuzzy
msgid "Loading user data..."
msgstr "NaÄÃtám data..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
#, fuzzy
msgid "Re-saving user data..."
msgstr "NaÄÃtám data..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "Exportuji soubor..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8739,21 +8738,21 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
#, fuzzy
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr "Databáze %s zÅejmÄ neexistuje. Chcete ji vytvoÅit?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "Soubor %s již existuje. Opravdu jej chcete pÅepsat?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<neznámé>"
@@ -9308,7 +9307,7 @@ msgid ""
">Properties->Accounts."
msgstr ""
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
#, fuzzy
diff --git a/po/da.po b/po/da.po
index 5babdbc19..272d6d164 100644
--- a/po/da.po
+++ b/po/da.po
@@ -107,7 +107,7 @@ msgstr ""
"Project-Id-Version: gnucash 2.6.14\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2016-09-20 22:41+0200\n"
"Last-Translator: Joe Hansen <joedalton2 at yahoo.dk>\n"
"Language-Team: Danish <dansk at dansk-gruppen.dk>\n"
@@ -1413,7 +1413,7 @@ msgstr "Slet vare?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2706,7 +2706,7 @@ msgstr "Find job"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Ã
bn"
@@ -3517,7 +3517,7 @@ msgid "Open an existing GnuCash file"
msgstr "Ã
bn en eksisterende GnuCash-fil"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6235,7 +6235,7 @@ msgid "You cannot save to that file."
msgstr "Du kan ikke gemme i den fil."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7514,7 +7514,7 @@ msgid "There was an error parsing the file."
msgstr "Der opstod en fejl under fortolkning af filen."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "Skriver fil ..."
@@ -8345,7 +8345,7 @@ msgid "Import"
msgstr "Indlæsning"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Gem"
@@ -8537,8 +8537,7 @@ msgstr "Ingen læserettighed til at læse fra fil %s."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8549,7 +8548,7 @@ msgid ""
"Please try again in a different directory."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8558,14 +8557,14 @@ msgstr ""
"opgradere den til den nuværende version, Annuller for at markere den "
"skrivebeskyttet."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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 ""
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8576,7 +8575,7 @@ msgstr ""
"dokumentationen for at finde ud af hvordan man fjerner hængende logind-"
"sessioner."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8585,7 +8584,7 @@ msgid ""
"gnucash.org/show_bug.cgi?id=611936 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8593,7 +8592,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8601,16 +8600,16 @@ msgid ""
"you wish to preserve the old version, exit without saving."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "Der opstod en ukendt I/O-fejl (%d)."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "Gem ændringer til filen?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8620,16 +8619,16 @@ msgstr[0] "Hvis du ikke gemmer, vil ændringer fra det sidste %d minut gå tabt.
msgstr[1] ""
"Hvis du ikke gemmer, vil ændringer fra de sidste %d minutter gå tabt."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "Fortsæt _uden at gemme"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash kunne ikke hente låsen for %s."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8637,7 +8636,7 @@ 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?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8649,44 +8648,44 @@ msgstr ""
"måske ikke skriverettigheder til mappen. Hvis du fortsætter, vil du ikke "
"kunne gemme ændringer. Hvad ønsker du at gøre?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "Ã
bn _skrivebeskyttet"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_Opret ny fil"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "Ã
bn _alligevel"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "sum_konto"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_Afslut"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "Indlæser brugerdata ..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "Gemmer brugerdata igen ..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "Eksporterer fil ..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8697,14 +8696,14 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr ""
"Databasen blev Ã¥bnet skrivebeskyttet. Ãnsker du at gemme den et andet sted?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
@@ -8713,7 +8712,7 @@ msgstr ""
"Forkast vil fjerne alle ugemte ændringer til %s. Er du sikker på, at du vil "
"fortsætte?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<ukendt>"
@@ -9272,7 +9271,7 @@ msgstr ""
"skrivebeskyttet« angivet for denne bog. Denne indstilling kan ændres i Fil-"
">Egenskaber->Konti."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/de.po b/po/de.po
index 221816a22..c9aafba9c 100644
--- a/po/de.po
+++ b/po/de.po
@@ -31,7 +31,7 @@ msgstr ""
"Project-Id-Version: GnuCash 3.10+\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2021-01-05 15:29+0000\n"
"Last-Translator: Christian Wehling <christian.wehling at web.de>\n"
"Language-Team: German <https://hosted.weblate.org/projects/gnucash/gnucash/"
@@ -1374,7 +1374,7 @@ msgstr "Devise/Wertpapier löschen?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2652,7 +2652,7 @@ msgstr "Auftrag suchen"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Ãffnen"
@@ -3487,7 +3487,7 @@ msgid "Open an existing GnuCash file"
msgstr "Eine existierende GnuCash-Datei öffnen"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6138,7 +6138,7 @@ msgid "You cannot save to that file."
msgstr "Sie können nicht in diese Datei speichern."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7452,7 +7452,7 @@ msgid "There was an error parsing the file."
msgstr "Beim Verarbeiten der Datei ist ein Fehler aufgetreten."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "Datei wird geschrieben..."
@@ -8321,7 +8321,7 @@ msgid "Import"
msgstr "Import"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Speichern"
@@ -8534,8 +8534,7 @@ msgstr "Sie haben keine Leseberechtigung für die Datei »%s«."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8552,7 +8551,7 @@ msgstr ""
"\n"
"Bitte wählen Sie einen Dateinamen in einem anderen Ordner."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8561,7 +8560,7 @@ msgstr ""
"die Datei zur aktuellen GnuCash-Version aktualisieren oder »Abbrechen«, um "
"sie schreibgeschützt zu öffnen."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8574,7 +8573,7 @@ msgstr ""
"Wenn Sie die Datei in dieser älteren Version speichern, könnten allerdings "
"Daten aus der neueren GnuCash-Version verloren gehen."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8587,7 +8586,7 @@ msgstr ""
"Wenn keine anderen Anwender mehr im System sind, konsultieren Sie bitte das "
"Handbuch, um Anweisungen zum Löschen von 'dangling login sessions' zu finden."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8601,7 +8600,7 @@ msgstr ""
"öffnen oder dahin speichern, bis eine andere Version von »libdbi« "
"installiert ist. Siehe auch https://bugs.gnucash.org/show_bug.cgi?id=611936."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8614,7 +8613,7 @@ msgstr ""
"bugs.gnucash.org/show_bug.cgi?id=645216 und prüfen, ob Sie dort die passende "
"Korrektur nachlesen können."
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8628,16 +8627,16 @@ msgstr ""
"das alte Dateiformat behalten möchten, beenden Sie das aktuelle GnuCash, "
"ohne zu speichern."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "Ein unbekannter Eingabe/Ausgabefehler (%d) ist aufgetreten."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "Ãnderungen in Datei speichern?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8650,16 +8649,16 @@ msgstr[1] ""
"Wenn Sie nicht speichern, gehen die Ãnderungen der letzten %d Minuten "
"verloren."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "SchlieÃen _ohne zu speichern"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash konnte keine exklusive Schreibberechtigung für %s erreichen."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8673,7 +8672,7 @@ msgstr ""
"\n"
"Was möchten Sie tun?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
msgid ""
"That database may be on a read-only file system, you may not have write "
"permission for the directory, or your anti-virus software is preventing this "
@@ -8690,40 +8689,40 @@ msgstr ""
"\n"
"Was möchten Sie tun?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "_Schreibgeschützt öffnen"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
msgid "Create _New File"
msgstr "_Neue Datei anlegen"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "Tr_otzdem öffnen"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
msgid "Open _Folder"
msgstr "_Verzeichnis öffnen"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_Beenden"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "Daten laden..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "Daten erneut speichern..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "Datei exportieren..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8734,7 +8733,7 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
@@ -8742,7 +8741,7 @@ msgstr ""
"Diese Datenbank wurde schreibgeschützt geöffnet. Wollen Sie die Daten an "
"eine andere Stelle speichern?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
@@ -8752,7 +8751,7 @@ msgstr ""
"verwerfen und die Datei neu laden.\n"
"Sind Sie sicher, dass sie fortfahren wollen?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<unbekannt>"
@@ -9316,7 +9315,7 @@ msgstr ""
"Schwelle\" dieser Datei. Diese Einstellung kann in Datei->Eigenschaften-"
">Konten geändert werden."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/doi.po b/po/doi.po
index eacbce006..96764e83c 100644
--- a/po/doi.po
+++ b/po/doi.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Gnucash 2.6.3\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2014-04-28 20:16-0500\n"
"Last-Translator: Chandrakant Dhutadmal <chandrakantd at cdac.in>\n"
"Language-Team: NONE\n"
@@ -1323,7 +1323,7 @@ msgstr "à¤à¥à¤¯à¤¾ à¤à¤¿à¤¨à¤¸à¤¾ à¤à¥ मà¥à¤¹à¥à¤¸à¥ दितà¥à¤¤
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2628,7 +2628,7 @@ msgstr "à¤à¥à¤¬ तà¥à¤ªà¥à¤ªà¥"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "à¤à¥à¤¹à¥âलà¥à¤²à¥"
@@ -3434,7 +3434,7 @@ msgid "Open an existing GnuCash file"
msgstr "à¤à¤ मà¤à¥à¤¦ GnuCash फ़ाà¤à¤² à¤à¥à¤¹à¥âलà¥à¤²à¥"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6198,7 +6198,7 @@ msgid "You cannot save to that file."
msgstr " तà¥à¤¸ à¤à¤¸ फ़ाà¤à¤² ठबà¤à¤¾à¤à¤¯à¥ नà¥à¤à¤ रà¤à¥à¤à¥ सà¤à¤¤à¥. "
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7490,7 +7490,7 @@ msgid "There was an error parsing the file."
msgstr "फ़ाà¤à¤² दॠवà¥à¤¯à¤¾à¤à¥à¤¯à¤¾ ठà¤à¥à¤ à¤à¤²à¥à¤¤à¥ हà¥. "
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "फ़ाà¤à¤² लिà¤à¥ à¤à¤¾ à¤à¤°à¤¦à¥ à¤..."
@@ -8344,7 +8344,7 @@ msgid "Import"
msgstr "दरामद à¤à¤°à¥ "
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "बà¤à¤¾à¤à¤¯à¥ रà¤à¥à¤à¥"
@@ -8534,8 +8534,7 @@ msgstr "फ़ाà¤à¤² %s थमाठपढ़नॠà¤à¤¸à¥à¤¤à¥ पढ
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, fuzzy, c-format
msgid ""
"You attempted to save in\n"
@@ -8553,7 +8552,7 @@ msgstr ""
"\n"
"à¤à¥à¤ªà¤¾ à¤à¤°à¤¿à¤¯à¥ बà¤à¥à¤à¤°à¥ डायरà¥à¤à¥à¤à¤°à¥ ठदà¥à¤¬à¤¾à¤°à¤¾ à¤à¥à¤¶à¤¶ à¤à¤°à¥. "
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8561,7 +8560,7 @@ msgstr ""
" à¤à¤¹à¥ डà¥à¤à¤¾à¤¬à¥à¤¸ GnuCashदॠà¤à¥à¤¸à¥ परानॠसरà¥à¤ª à¤à¤¨à¥à¤¨à¥ सरबà¤à¤§à¤¤ ठ. à¤à¤¸à¥ à¤à¤¾à¤²à¥ सरà¥à¤ª ठà¤
पडà¥à¤ à¤à¤°à¤¨à¥ à¤à¤¸à¥à¤¤à¥ "
"OK à¤à¥à¤¨à¥, सिरà¥à¤«-पढ़ॠदॠरà¥à¤ª ठà¤à¤¿à¤±à¤¨à¥à¤¨à¤¤ à¤à¤°à¤¨à¥ à¤à¤¸à¥à¤¤à¥ रदà¥à¤¦ à¤à¤°à¥ à¤à¥à¤¨à¥. "
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
#, fuzzy
msgid ""
"This database is from a newer version of GnuCash. This version can read it, "
@@ -8572,7 +8571,7 @@ msgstr ""
"ठ, पर à¤à¤¸ ठसà¥à¤°à¤à¥à¤·à¤¤ तरà¥à¤à¥ à¤à¤¨à¥à¤¨à¥ बà¤à¤¾à¤à¤¯à¥ नà¥à¤à¤ रà¤à¥à¤à¥ सà¤à¤¦à¤¾. à¤à¤¸à¥ सिरà¥à¤«-पढ़ॠदॠरà¥à¤ª ठà¤à¤¿à¤±à¤¨à¥à¤¨à¤¤ "
"à¤à¤°à¥ दितà¥à¤¤à¤¾ à¤à¤¾à¤¹à¥âठà¤à¤¿à¤¸à¤²à¥ तà¤à¤° तà¥à¤¸ फ़ाà¤à¤²->सà¥à¤µ à¤à¤à¤¼ नà¥à¤à¤ à¤à¤°à¤¤à¥ न . "
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8583,7 +8582,7 @@ msgstr ""
"नà¥à¤à¤ ठ, ताठनà¥à¤à¤ मà¥à¤à¥à¤à¥ दॠलाà¤-à¤à¤¨ सतà¥à¤°à¥à¤ à¤à¥ à¤à¤¿à¤±à¤¯à¤¾à¤ ठà¥à¤ à¤à¤°à¤¨à¤¾ ठ, à¤à¤¹à¥ सिà¤à¥à¤à¤¨à¥ à¤à¤¸à¥à¤¤à¥ "
"दसà¥à¤¤à¤¾à¤µà¥à¤à¥à¤à¤°à¤£ à¤à¤¨à¥à¤¨à¥ मशबरा à¤à¤°à¥. "
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -8598,7 +8597,7 @@ msgstr ""
"Gnucash SQL डà¥à¤à¤¾à¤¬à¥à¤¸à¥à¤ ठà¤à¥à¤¹à¥âलà¥à¤ à¤à¤¾à¤ बà¤à¤¾à¤à¤¯à¥ नà¥à¤à¤ रà¤à¥à¤à¥à¤ à¤à¤¾à¤¹à¥âà¤. हà¥à¤° मतॠà¤à¤¾à¤¨à¤à¤¾à¤°à¥ à¤à¤¸à¥à¤¤à¥ à¤à¥à¤ªà¤¾ "
"à¤à¤°à¤¿à¤¯à¥ https://bugs.gnucash.org/show_bug.cgi?id=611936 दिà¤à¥à¤à¥. "
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8606,7 +8605,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8614,16 +8613,16 @@ msgid ""
"you wish to preserve the old version, exit without saving."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "à¤à¤ à¤
नà¤à¤¾à¤à¤¤à¥ I/O à¤à¤²à¥à¤¤à¥ (%d) पà¥à¤¶ à¤à¤. "
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "तबà¥à¤¦à¥à¤²à¤¿à¤¯à¥à¤ à¤à¥ फ़ाà¤à¤² ठबà¤à¤¾à¤à¤¯à¥ रà¤à¥à¤à¥? "
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, fuzzy, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8634,16 +8633,16 @@ msgstr[0] ""
msgstr[1] ""
" à¤à¥à¤à¤° तà¥à¤¸ बà¤à¤¾à¤à¤¯à¥ नà¥à¤à¤ रà¤à¤¦à¥, ताठपिà¤à¤²à¥ %d मिà¤à¤à¥à¤ दियà¥à¤ तबà¥à¤¦à¥à¤²à¤¿à¤¯à¥à¤ à¤à¥ à¤à¤¾à¤°à¤ à¤à¤°à¥ दितà¥à¤¤à¤¾ à¤à¤¾à¤¹à¥âà¤."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "बà¤à¤¾à¤à¤¯à¥ रà¤à¥à¤à¥ बिà¤à¤¨_à¤à¤¾à¤°à¥ रà¤à¥à¤à¥ ."
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash %s à¤à¤¸à¥à¤¤à¥ à¤à¤à¤¦à¤°à¤¾ हासल नà¥à¤à¤ à¤à¤°à¥ सà¤à¥à¤. "
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8651,7 +8650,7 @@ msgstr ""
"सà¤à¤à¤¾à¤µà¤¨à¤¾ ठà¤à¥ à¤à¥à¤ हà¥à¤° बरतà¥à¤¨à¥ à¤à¤¸ डà¥à¤à¤¾à¤¬à¥à¤¸ à¤à¥ बरता दा à¤, à¤à¤¸ सà¥à¤¥à¤¿à¤¤à¤¿ ठतà¥à¤¸à¥à¤ डà¥à¤à¤¾à¤¬à¥à¤¸ à¤à¥ "
"à¤à¥à¤¹à¥âलना नà¥à¤à¤ à¤à¤¾à¤¹à¤¿à¤¦à¤¾. तà¥à¤¸ à¤à¥à¤¹à¥ à¤à¤°à¤¨à¤¾ à¤à¤¾à¤¹à¥âà¤à¥à¤? "
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8663,44 +8662,44 @@ msgstr ""
"लिà¤à¤¨à¥ दॠà¤à¤à¤¾à¤à¤¼à¤¤ थà¥à¤à¤¢à¤¼à¥ à¤à¥à¤² नà¥à¤à¤ ठ. à¤à¥à¤à¤° तà¥à¤¸ पà¥à¤°à¤à¥à¤°à¤¿à¤¯à¤¾ à¤
à¤à¥à¤à¥à¤ à¤à¤²à¤¾à¤à¤¦à¥ ठताठहà¥à¤ "
"सà¤à¤¦à¤¾ ठà¤à¥ तà¥à¤¸ तबà¥à¤¦à¥à¤²à¤¿à¤¯à¥à¤ à¤à¥ बà¤à¤¾à¤à¤¯à¥ रà¤à¥à¤à¤¨à¥ ठसमरà¥à¤¥ नà¥à¤à¤ हà¥à¤µà¥. तà¥à¤¸ à¤à¥à¤¹à¥ à¤à¤°à¤¨à¤¾ à¤à¤¾à¤¹à¥âà¤à¥à¤?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_नमà¥à¤ फ़ाà¤à¤² बनाà¤"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
#, fuzzy
msgid "Open _Anyway"
msgstr "_फà¥à¤¹à¥ बॠà¤à¥à¤¹à¥âलà¥à¤²à¥ "
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
msgid "Open _Folder"
msgstr "पà¥à¤²à¥à¤¸à¤¹à¥à¤²à¥à¤¡à¤° "
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_à¤à¥à¤¡à¤¼à¥ दà¥à¤ "
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "बरतà¥à¤¨à¥à¤¦à¤¾ डà¥à¤à¤¾ लà¥à¤¡ हà¥à¤ दा ठ... "
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "बरतà¥à¤¨à¥ दा डà¥à¤à¤¾ परतियॠबà¤à¤¾à¤à¤¯à¥ रà¤à¥à¤à¥à¤ à¤à¤¾ दा ठ... "
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "फ़ाà¤à¤² बरामद à¤à¥à¤¤à¥ à¤à¤¾ à¤à¤°à¤¦à¥ ठ... "
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8711,21 +8710,21 @@ msgstr ""
"\n"
"%s "
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
#, fuzzy
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr "à¤à¤±à¤¯à¤¾à¤ लà¤à¤¦à¤¾ ठà¤à¥ डà¥à¤à¤¾à¤¬à¥à¤¸ %s मà¤à¥à¤¦ नà¥à¤à¤ ठ. à¤à¥à¤¯à¤¾ तà¥à¤¸ à¤à¤¸à¥ बनाना à¤à¤¾à¤à¤¹à¥âदॠठ? "
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "फ़ाà¤à¤² %s पà¥à¤¹à¥âलà¥à¤ थमाठमà¤à¥à¤¦ ठ. à¤à¥à¤¯à¤¾ तà¥à¤¸ सà¤à¥à¤à¥à¤ à¤à¥ à¤à¤¸à¥ à¤à¤µà¤°-राà¤à¤ à¤à¤°à¤¨à¤¾ à¤à¤¾à¤à¤¹à¥âदॠठ? "
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<à¤
नà¤à¤¾à¤à¤¤à¤¾> "
@@ -9278,7 +9277,7 @@ msgid ""
">Properties->Accounts."
msgstr ""
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
#, fuzzy
diff --git a/po/el.po b/po/el.po
index 0839c176a..c389195d3 100644
--- a/po/el.po
+++ b/po/el.po
@@ -36,7 +36,7 @@ msgstr ""
"Project-Id-Version: GnuCash 2.4\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2018-02-20 23:10+0200\n"
"Last-Translator: Nikolaos Charonitakis <nikosx at gmail.com>\n"
"Language-Team: Greek <team at gnome.gr>\n"
@@ -1294,7 +1294,7 @@ msgstr "ÎιαγÏαÏή αξίαÏ;"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2580,7 +2580,7 @@ msgstr "ÎÏÏεÏη εÏγαÏίαÏ"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Îνοιγμα"
@@ -3394,7 +3394,7 @@ msgid "Open an existing GnuCash file"
msgstr "Îνοιγμα ενÏÏ Ï
ÏάÏÏονÏÎ¿Ï Î±ÏÏείοÏ
GnuCash"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6151,7 +6151,7 @@ msgid "You cannot save to that file."
msgstr "Îεν είναι δÏ
ναÏή η αÏοθήκεÏ
Ïη Ïε αÏ
ÏÏ Ïο αÏÏείο."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7396,7 +7396,7 @@ msgid "There was an error parsing the file."
msgstr "Î¥ÏήÏξε ÏÏάλμα καÏά Ïην ανάλÏ
Ïη ÏοÏ
αÏÏείοÏ
."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "ÎγγÏαÏή αÏÏείοÏ
..."
@@ -8254,7 +8254,7 @@ msgid "Import"
msgstr "ÎιÏαγÏγή"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "ÎÏοθήκεÏ
Ïη"
@@ -8453,8 +8453,7 @@ msgstr "Îεν ÎÏεÏε δικαίÏμα ανάγνÏÏÎ·Ï ÏÏο αÏÏεί
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8465,7 +8464,7 @@ msgid ""
"Please try again in a different directory."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
#, fuzzy
msgid ""
"This database is from an older version of GnuCash. Select OK to upgrade it "
@@ -8474,14 +8473,14 @@ msgstr ""
"ÎÏ
Ïή η βάÏη δεδομÎνÏν ÏÏοÎÏÏεÏαι αÏÏ ÏαλαιÏÏεÏη ÎκδοÏη ÏοÏ
GnuCash. ÎÎλεÏε "
"να αναβαθμιÏÏεί η βάÏη δεδομÎνÏν ÏÏην ÏÏÎÏοÏ
Ïα ÎκδοÏη;"
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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 ""
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8493,7 +8492,7 @@ msgstr ""
"θα εκκαθαÏίÏεÏε Ïην ÏÏ
νεδÏία αÏÏ ÏÏ
νδÎÏÎµÎ¹Ï ÏοÏ
εμÏανίζονÏαι ÏÏ ÎµÎ½ÎµÏγÎÏ ÎµÎ½Ï "
"δεν είναι."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8502,7 +8501,7 @@ msgid ""
"gnucash.org/show_bug.cgi?id=611936 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8510,7 +8509,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8518,16 +8517,16 @@ msgid ""
"you wish to preserve the old version, exit without saving."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "ΣÏ
νÎβει Îνα άγνÏÏÏο ÏÏάλμα I/O (%d)."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "ÎÏοθήκεÏ
Ïη αλλαγÏν ÏÏο αÏÏείο;"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, fuzzy, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8540,16 +8539,16 @@ msgstr[1] ""
"Îν δεν γίνει αÏοθήκεÏ
Ïη, οι αλλαγÎÏ ÏοÏ
Îγιναν Ïα ÏÏοηγοÏμενα %d λεÏÏά θα "
"ÏαθοÏν."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "ΣÏ
νÎÏεια _ÏÏÏÎ¯Ï Î±ÏοθήκεÏ
Ïη"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "Το GnuCash δεν μÏÏÏεÏε να εÏιÏÏÏει κλείδÏμα για Ïο %s."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8557,7 +8556,7 @@ msgstr ""
"ΠβάÏη δεδομÎνÏν μÏοÏεί να είναι Ïε ÏÏήÏη αÏÏ Î¬Î»Î»Î¿Î½ ÏÏήÏÏη, Ïε αÏ
Ïή Ïην "
"ÏεÏίÏÏÏÏη δεν ÏÏÎÏει να ανοίξεÏε Ïην βάÏη δεδομÎνÏν. Τι θÎλεÏε να κάνεÏε;"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8569,45 +8568,45 @@ msgstr ""
"ή να μην ÎÏεÏε δικαιÏμαÏα εγγÏαÏÎ®Ï ÏÏον καÏάλογο. Îν ÏÏοÏÏÏήÏεÏε μÏοÏεί να "
"μην είναι δÏ
ναÏÏ Î½Î± αÏοθηκεÏÏεÏε ÏÎ¹Ï Î±Î»Î»Î±Î³ÎÏ. Τι θα θÎλαÏε να κάνεÏε;"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_ÎημιοÏ
Ïγία νÎοÏ
αÏÏείοÏ
"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "Îα ανοιÏÏεί _οÏÏÏδήÏοÏε"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "ÏÏ
γκενÏÏÏÏικÏÏ"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "Î_ξοδοÏ"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "ΦÏÏÏÏÏη δεδομÎνÏν ÏÏήÏÏη..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
#, fuzzy
msgid "Re-saving user data..."
msgstr "ΦÏÏÏÏÏη δεδομÎνÏν ÏÏήÏÏη..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "ÎξαγÏγή αÏÏείοÏ
..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8618,7 +8617,7 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
#, fuzzy
msgid ""
"The database was opened read-only. Do you want to save it to a different "
@@ -8626,7 +8625,7 @@ msgid ""
msgstr ""
"ΠβάÏη δεδομÎνÏν %s ÏαίνεÏαι να μην Ï
ÏάÏÏει. ÎÎλεÏε να Ïη δημιοÏ
ÏγήÏεÏε;"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
@@ -8635,7 +8634,7 @@ msgstr ""
"Το αÏÏείο %s Ï
ÏάÏÏει ήδη. ÎίÏÏε ÏίγοÏ
Ïοι ÏÏι θÎλεÏε να γÏάÏεÏε εÏÎ¬Î½Ï Î±ÏÏ "
"αÏ
ÏÏ;"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<άγνÏÏÏο>"
@@ -9194,7 +9193,7 @@ msgid ""
">Properties->Accounts."
msgstr ""
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
#, fuzzy
diff --git a/po/en_GB.po b/po/en_GB.po
index a8f0b600b..7fd4e4f9d 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: en_GB\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2013-12-28 15:16+0000\n"
"Last-Translator: Mike Evans <mikee at saxicola.co.uk>\n"
"Language-Team: British English <kde-i18n-doc at kde.org>\n"
@@ -1307,7 +1307,7 @@ msgstr "Delete commodity?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2603,7 +2603,7 @@ msgstr "Find Job"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Open"
@@ -3414,7 +3414,7 @@ msgid "Open an existing GnuCash file"
msgstr "Open an existing GnuCash file"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6168,7 +6168,7 @@ msgid "You cannot save to that file."
msgstr "You cannot save to that file."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7460,7 +7460,7 @@ msgid "There was an error parsing the file."
msgstr "There was an error parsing the file."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "Writing file..."
@@ -8302,7 +8302,7 @@ msgid "Import"
msgstr "Import"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Save"
@@ -8492,8 +8492,7 @@ msgstr "No read permission to read from file %s."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8504,7 +8503,7 @@ msgid ""
"Please try again in a different directory."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
#, fuzzy
msgid ""
"This database is from an older version of GnuCash. Select OK to upgrade it "
@@ -8513,14 +8512,14 @@ msgstr ""
"This database is from an older version of GnuCash. Do you want to want to "
"upgrade the database to the current version?"
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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 ""
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8530,7 +8529,7 @@ msgstr ""
"performed until they logoff. If there are currently no other users, consult "
"the documentation to learn how to clear out dangling login sessions."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8539,7 +8538,7 @@ msgid ""
"gnucash.org/show_bug.cgi?id=611936 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8547,7 +8546,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8555,16 +8554,16 @@ msgid ""
"you wish to preserve the old version, exit without saving."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "An unknown I/O error (%d) occurred."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "Save changes to the file?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, fuzzy, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8575,16 +8574,16 @@ msgstr[0] ""
msgstr[1] ""
"If you don't save, changes from the past %d minutes will be discarded."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "Continue _Without Saving"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash could not obtain the lock for %s."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8592,7 +8591,7 @@ msgstr ""
"That database may be in use by another user, in which case you should not "
"open it. What would you like to do?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8604,45 +8603,45 @@ msgstr ""
"permission for the directory. If you proceed you may not be able to save any "
"changes. What would you like to do?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_Create New File"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
#, fuzzy
msgid "Open _Anyway"
msgstr "_Open Anyway"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
msgid "Open _Folder"
msgstr "Placeholder"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_Quit"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
#, fuzzy
msgid "Re-saving user data..."
msgstr "Loading data..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "Exporting file..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8653,21 +8652,21 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
#, fuzzy
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr "The database %s doesn't seem to exist. Do you want to create it?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "The file %s already exists. Are you sure you want to overwrite it?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<unknown>"
@@ -9220,7 +9219,7 @@ msgid ""
">Properties->Accounts."
msgstr ""
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
#, fuzzy
diff --git a/po/es.po b/po/es.po
index 76488661a..b2c12a379 100644
--- a/po/es.po
+++ b/po/es.po
@@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: gnucash 2.7.8\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2019-01-09 15:53+0100\n"
"Last-Translator: Francisco Javier Serrador <fserrador at gmail.com>\n"
"Language-Team: Spanish <es at tp.org.es>\n"
@@ -1391,7 +1391,7 @@ msgstr "¿Borrar mercancÃa?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2672,7 +2672,7 @@ msgstr "Encontrar Ejercicio"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Abrir"
@@ -3502,7 +3502,7 @@ msgid "Open an existing GnuCash file"
msgstr "Abre un fichero GnuCash existente"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6222,7 +6222,7 @@ msgid "You cannot save to that file."
msgstr "No puede guardar a ese fichero."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7567,7 +7567,7 @@ msgid "There was an error parsing the file."
msgstr "Hubo un error al interpretar el fichero."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "Escribiendo ficheroâ¦"
@@ -8433,7 +8433,7 @@ msgid "Import"
msgstr "Importar"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Guardar"
@@ -8629,8 +8629,7 @@ msgstr "Sin permiso de lectura para leer desde %s."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8647,7 +8646,7 @@ msgstr ""
"\n"
"Intente otra vez en un directorio diferente."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8656,7 +8655,7 @@ msgstr ""
"para modernizarlo a la versión actual, Cancelar para marcarlo en solo "
"lectura."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8667,7 +8666,7 @@ msgstr ""
"lectura hasta que haga âArchivoâGuardar comoâ, pero los datos pueden "
"perderse al escribir en la versión antigua."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8678,7 +8677,7 @@ msgstr ""
"usuarios, consulte la documentación para saber cómo expulsa sesiones "
"bloqueadas."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8692,7 +8691,7 @@ msgstr ""
"que esto sea solucionado instalando un versión distinta de âlibdbâ. Vea "
"https://bugs.gnucash.org/show_bug.cgi?id=611936 para más información."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8704,7 +8703,7 @@ msgstr ""
"errónea de los permisos de su base de datos SQL. Por favor, vea https://"
"bugs.gnucash.org/show_bug.cgi?id=645216 para mayor información."
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8716,16 +8715,16 @@ msgstr ""
"versión anterior de GnuCash (boletinará un \"error al filtrar el fichero\"). "
"Si desea conservar la versión antigua, salga sin guardarlo."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "Ocurrió un error de E/S desconocido (%d)."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "¿Guardar cambios al fichero?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8734,16 +8733,16 @@ msgid_plural ""
msgstr[0] "Si no guarda, los cambios del último minuto se perderán."
msgstr[1] "Si no guarda, los cambios de los últimos %d minutos se perderán."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "Continuar _sin guardar"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash no pudo obtener el bloqueo para %s."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8751,7 +8750,7 @@ msgstr ""
"Esa base de datos podrÃa estar abierta por otro usuario, en cuyo caso no "
"deberÃa abrir la base de datos. ¿Qué quiere hacer?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
msgid ""
"That database may be on a read-only file system, you may not have write "
"permission for the directory, or your anti-virus software is preventing this "
@@ -8763,44 +8762,44 @@ msgstr ""
"antivirus está impidiendo esta operación. Si continúa quizá no es capaz de "
"poder guardar las modificaciones. ¿Qué quiere hacer?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "Abrir a _solo lectura"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_Crear un fichero nuevo"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "Abrir de _todas formas"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "contenedor"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_Salir"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "Cargando datos del usuarioâ¦"
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "Re-guardar datos del usuarioâ¦"
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "Exportando ficheroâ¦"
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8811,7 +8810,7 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
@@ -8819,7 +8818,7 @@ msgstr ""
"La base de datos fue abierta con solo lectura. ¿Quiere guardarlo en un lugar "
"diferente?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
@@ -8828,7 +8827,7 @@ msgstr ""
"La reversión descartará todas los cambios no registrados a %s. ¿Seguro que "
"quiere hacerlo?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<desconocido>"
@@ -9384,7 +9383,7 @@ msgstr ""
"«LÃmite de Solo Lectura» establecido para este libro. Esta opción puede "
"cambiarse en ArchivoâPropiedadesâCuentas."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/es_NI.po b/po/es_NI.po
index b0e2100ab..49fe6667d 100644
--- a/po/es_NI.po
+++ b/po/es_NI.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: GNUCash 1.5\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2001-10-22 14:04-0600\n"
"Last-Translator: Georg Lehner <Jorge.Lehner at gmx.net>, Juan Manuel GarcÃa "
"Molina <juanmagm at mail.com>\n"
@@ -1317,7 +1317,7 @@ msgstr "Valores"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2692,7 +2692,7 @@ msgstr "Buscar "
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Abrir"
@@ -3534,7 +3534,7 @@ msgid "Open an existing GnuCash file"
msgstr "Abrir el Manual de GnuCash"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
#, fuzzy
@@ -6439,7 +6439,7 @@ msgid "You cannot save to that file."
msgstr "No puede guardar a este archivo."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, fuzzy, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7750,7 +7750,7 @@ msgstr ""
"%s"
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
#, fuzzy
msgid "Writing file..."
msgstr "Trabajando..."
@@ -8614,7 +8614,7 @@ msgid "Import"
msgstr "Importar QIF"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Guardar"
@@ -8863,8 +8863,7 @@ msgstr ""
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8875,7 +8874,7 @@ msgid ""
"Please try again in a different directory."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
#, fuzzy
msgid ""
"This database is from an older version of GnuCash. Select OK to upgrade it "
@@ -8884,21 +8883,21 @@ msgstr ""
"Este archivo es de una versión anterior de GnuCash. \n"
"¿Quiere continuar?"
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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 ""
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 ""
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8907,7 +8906,7 @@ msgid ""
"gnucash.org/show_bug.cgi?id=611936 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8915,7 +8914,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8923,17 +8922,17 @@ msgid ""
"you wish to preserve the old version, exit without saving."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, fuzzy, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "Ocurrio un error de entrada salida desconocido."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
#, fuzzy
msgid "Save changes to the file?"
msgstr "Cargar otro archivo"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8942,16 +8941,16 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
#, fuzzy
msgid ""
"That database may be in use by another user, in which case you should not "
@@ -8964,7 +8963,7 @@ msgstr ""
"\n"
"¿Quiere proceder de todas formass?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8979,45 +8978,45 @@ msgstr ""
"\n"
"¿Quiere proceder de todas formass?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
msgid "Create _New File"
msgstr "Crear un archivo nuevo"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
#, fuzzy
msgid "Open _Anyway"
msgstr "_Abrir cuenta"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
msgid "Open _Folder"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
#, fuzzy
msgid "_Quit"
msgstr "Quitar"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
#, fuzzy
msgid "Loading user data..."
msgstr "Balance de Cierre..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
#, fuzzy
msgid "Re-saving user data..."
msgstr "Balance de Cierre..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, fuzzy, c-format
msgid ""
"There was an error saving the file.\n"
@@ -9025,7 +9024,7 @@ msgid ""
"%s"
msgstr "Hubo un error al guardar el archivo."
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
#, fuzzy
msgid ""
"The database was opened read-only. Do you want to save it to a different "
@@ -9035,7 +9034,7 @@ msgstr ""
" %s\n"
"no existe. ¿Quiere crearla?\n"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
@@ -9046,7 +9045,7 @@ msgstr ""
" ya existe.\n"
"¿Está seguro de que desea sobreescribirlo?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
#, fuzzy
msgid "<unknown>"
@@ -9652,7 +9651,7 @@ msgid ""
">Properties->Accounts."
msgstr ""
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
#, fuzzy
diff --git a/po/et.po b/po/et.po
index d8af55c20..cc2792a1d 100644
--- a/po/et.po
+++ b/po/et.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: GnuCash 4.1\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2020-08-28 20:47+0200\n"
"Last-Translator: Siim Sellis <siim.sellis at gmail.com>\n"
"Language-Team: Estonian <linux-ee at lists.eenet.ee>\n"
@@ -1210,7 +1210,7 @@ msgstr ""
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2464,7 +2464,7 @@ msgstr "Leia Töö"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Avatud"
@@ -3237,7 +3237,7 @@ msgid "Open an existing GnuCash file"
msgstr "Ava olemasolev GnuCashi fail"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -5794,7 +5794,7 @@ msgid "You cannot save to that file."
msgstr ""
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -6979,7 +6979,7 @@ msgid "There was an error parsing the file."
msgstr ""
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr ""
@@ -7765,7 +7765,7 @@ msgid "Import"
msgstr ""
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr ""
@@ -7935,8 +7935,7 @@ msgstr ""
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -7947,27 +7946,27 @@ msgid ""
"Please try again in a different directory."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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 ""
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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 ""
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 ""
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -7976,7 +7975,7 @@ msgid ""
"gnucash.org/show_bug.cgi?id=611936 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -7984,7 +7983,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -7992,16 +7991,16 @@ msgid ""
"you wish to preserve the old version, exit without saving."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8010,22 +8009,22 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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 ""
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
msgid ""
"That database may be on a read-only file system, you may not have write "
"permission for the directory, or your anti-virus software is preventing this "
@@ -8033,42 +8032,42 @@ msgid ""
"you like to do?"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "Create a new file"
msgid "Create _New File"
msgstr "Loo uus fail"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
msgid "Open _Folder"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8076,20 +8075,20 @@ msgid ""
"%s"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr ""
@@ -8618,7 +8617,7 @@ msgid ""
">Properties->Accounts."
msgstr ""
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/eu.po b/po/eu.po
index ff0a5eedc..3fad5630e 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: gnucash-1.8.10pre2\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2005-08-05 10:45+0200\n"
"Last-Translator: Mikel Olasagasti <hey_neken at mundurat.net>\n"
"Language-Team: Basque <translation-team-eu at lists.sourceforge.net>\n"
@@ -1321,7 +1321,7 @@ msgstr "_Ezabatu kontua"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2638,7 +2638,7 @@ msgstr "Bilatu lana"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Ireki"
@@ -3491,7 +3491,7 @@ msgid "Open an existing GnuCash file"
msgstr "Ireki GnuCash-en laguntza"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
#, fuzzy
@@ -6358,7 +6358,7 @@ msgid "You cannot save to that file."
msgstr "Ezin duzu gorde fitxategi horretan."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, fuzzy, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7666,7 +7666,7 @@ msgstr ""
"%s"
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "Fitxategia idazten..."
@@ -8536,7 +8536,7 @@ msgid "Import"
msgstr "_Inportatu"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Gorde"
@@ -8782,8 +8782,7 @@ msgstr ""
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8794,7 +8793,7 @@ msgid ""
"Please try again in a different directory."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
#, fuzzy
msgid ""
"This database is from an older version of GnuCash. Select OK to upgrade it "
@@ -8803,14 +8802,14 @@ msgstr ""
"Datu-base hau GnuCash-en bertsio zaharragokoa da.\n"
"Datu-basea uneko bertsiora pasatu nahi duzu?"
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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 ""
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
#, fuzzy
msgid ""
"The SQL database is in use by other users, and the upgrade cannot be "
@@ -8823,7 +8822,7 @@ msgstr ""
"dokumentazioa, zintzilik geratutako saioak nola \n"
"itxi ikusteko."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8832,7 +8831,7 @@ msgid ""
"gnucash.org/show_bug.cgi?id=611936 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8840,7 +8839,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8848,17 +8847,17 @@ msgid ""
"you wish to preserve the old version, exit without saving."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, fuzzy, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "S/Iko errore ezezaguna gertatu da."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
#, fuzzy
msgid "Save changes to the file?"
msgstr "Kargatu beste fitxategi bat"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8867,16 +8866,16 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
#, fuzzy
msgid ""
"That database may be in use by another user, in which case you should not "
@@ -8889,7 +8888,7 @@ msgstr ""
"\n"
"Zer egin nahi duzu?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8905,47 +8904,47 @@ msgstr ""
"\n"
"Zer egin nahi duzu?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
#, fuzzy
msgid "Open _Read-Only"
msgstr "%s [irakurtzeko soilik]"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
msgid "Create _New File"
msgstr "Sortu fitxategi berria"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
#, fuzzy
msgid "Open _Anyway"
msgstr "Ireki hala ere"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
msgid "Open _Folder"
msgstr "Leku-marka"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
#, fuzzy
msgid "_Quit"
msgstr "Irten"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
#, fuzzy
msgid "Loading user data..."
msgstr "Datuak kargatzen..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
#, fuzzy
msgid "Re-saving user data..."
msgstr "Datuak kargatzen..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "Fitxategia esportatzen..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8956,7 +8955,7 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
#, fuzzy
msgid ""
"The database was opened read-only. Do you want to save it to a different "
@@ -8966,7 +8965,7 @@ msgstr ""
"datu-basea ez dago.\n"
"Sortu nahi duzu?\n"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
@@ -8977,7 +8976,7 @@ msgstr ""
" badago.\n"
"Gainidatzi nahi duzu?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
#, fuzzy
msgid "<unknown>"
@@ -9573,7 +9572,7 @@ msgid ""
">Properties->Accounts."
msgstr ""
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
#, fuzzy
diff --git a/po/fa.po b/po/fa.po
index f1f2640e8..0cc63f67f 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: gnucash-3.5\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2019-05-01 06:11+0330\n"
"Last-Translator: Hamidreza Jafari <hamidrjafari at gmail.com>\n"
"Language-Team: Persian <translation-team-fa at lists.sourceforge.net>\n"
@@ -1320,7 +1320,7 @@ msgstr "Ú©Ø§ÙØ§Û Ø§Ø³Ø§Ø³Û ØØ°Ù Ø´ÙØ¯Ø"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2602,7 +2602,7 @@ msgstr "ÛØ§Ùت٠کار"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "بازکردÙ"
@@ -3420,7 +3420,7 @@ msgid "Open an existing GnuCash file"
msgstr "باز کرد٠ÛÚ© پرÙÙØ¯Ù Ú¯ÙÙÚ©Ø´ Ù
ÙØ¬Ùد"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6102,7 +6102,7 @@ msgid "You cannot save to that file."
msgstr "ب٠آ٠پرÙÙØ¯Ù ÙÙ
ÛâØªÙØ§ÙÛØ¯ Ø°Ø®ÛØ±Ù ÙÙ
اÛÛØ¯."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7372,7 +7372,7 @@ msgid "There was an error parsing the file."
msgstr "خطاÛÛ ØÛ٠تجزÛÙ Ù ØªØ±Ú©ÛØ¨ پرÙÙØ¯Ù رخ داد."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "در ØØ§Ù ÙÙØ´ØªÙ پرÙÙØ¯Ù â¦"
@@ -8217,7 +8217,7 @@ msgid "Import"
msgstr "ÙØ±Ùد"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Ø°Ø®ÛØ±Ù"
@@ -8413,8 +8413,7 @@ msgstr "Ø§Ø¬Ø§Ø²Ù Ø®ÙØ§Ùد٠از پرÙÙØ¯Ù %s Ù
ÙØ¬Ùد ÙÛØ³Øª."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8431,7 +8430,7 @@ msgstr ""
"\n"
"ÙØ·ÙØ§Ù Ø¯ÙØ¨Ø§Ø±Ù در ÛÚ© Ù¾ÙØ´Ù Ù
ØªÙØ§Ùت ØªÙØ§Ø´ Ú©Ù."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8439,7 +8438,7 @@ msgstr ""
"اÛ٠پاÛگاÙâØ¯Ø§Ø¯Ù Ø§Ø² ÛÚ© ÙØ³Ø®Ù ÙØ¯ÛÙ
ÛâØªØ± Ú¯ÙÙÚ©Ø´ است. Ø¨Ø±Ø§Û Ø§Ø±ØªÙØ§ Ø¢Ù Ø¨Ù ÙØ³Ø®Ù Ø¬Ø§Ø±Û "
"«باشد» را Ø§ÙØªØ®Ø§Ø¨ Ú©Ù ÛØ§ Â«ÙØºÙ» را Ø¨Ø±Ø§Û Ø¹ÙØ§Ù
تâÚ¯Ø°Ø§Ø±Û Ø¢Ù Ø¨Ù Ø¹ÙÙØ§Ù ÙÙØ·âØ®ÙØ§ÙدÙÛ Ø¨ÙØ´Ø§Ø±."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8450,7 +8449,7 @@ msgstr ""
"عÙÙØ§Ù را Ø§ÙØ¬Ø§Ù
ÙØ¯ÙÛ Ø¢Ù Ø¨Ù Ø¹ÙÙØ§Ù ÙÙØ·âØ®ÙØ§ÙدÙÛ Ø¹ÙØ§Ù
تâÚ¯Ø°Ø§Ø±Û Ù
ÛâØ´ÙØ¯Ø اÙ
ا Ù
Ù
ک٠است "
"داد٠ÙÙگاÙ
ÙÙØ´ØªÙ در ÙØ³Ø®Ù ÙØ¯ÛÙ
Û Ø§Ø² Ù
ÛØ§Ù Ø¨Ø±ÙØ¯."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8460,7 +8459,7 @@ msgstr ""
"ÙÙ
ÛâØªÙØ§Ù Ø§Ø±ØªÙØ§ را Ø§ÙØ¬Ø§Ù
داد. اگر در ØØ§Ù ØØ§Ø¶Ø± کاربرا٠دÛÚ¯Ø±Û ÙÛØ³ØªÙØ¯Ø Ø¨Ù Ù
Ø³ØªÙØ¯Ø§Øª "
"Ù
راجع٠ک٠تا Ø¨ÛØ§Ù
ÙØ²Û ÚÚ¯ÙÙÙ Ø¬ÙØ³Ø§Øª ÙØ±ÙØ¯ÙØ§Û Ù
عÙÙ Ø¬ÙØ³Ø§Øª را پاک Ú©ÙÛ."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8474,7 +8473,7 @@ msgstr ""
"را باز ÛØ§ Ø°Ø®ÛØ±Ù ÙØ®ÙØ§ÙØ¯ کرد. ÙØ·ÙØ§Ù Ø¨Ø±Ø§Û Ø§Ø·ÙØ§Ø¹Ø§Øª Ø¨ÛØ´ØªØ± https://bugzilla.gnome."
"org/show_bug.cgi?id=611936 را ببÛÙ."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8486,7 +8485,7 @@ msgstr ""
"SQLات باشد. ÙØ·ÙØ§Ù Ø¨Ø±Ø§Û Ø§Ø·ÙØ§Ø¹Ø§Øª Ø¨ÛØ´ØªØ± https://bugzilla.gnome.org/show_bug.cgi?"
"id=645216 را ببÛÙ."
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8498,16 +8497,16 @@ msgstr ""
"Ø¨Ø®ÙØ§ÙÛ («خطا در ØªØ¬Ø²Ù Ù ØªØ±Ú©ÛØ¨ پرÙÙØ¯Ù» را گزارش Ø®ÙØ§Ùد کرد). اگر Ù
ÛâØ®ÙØ§ÙÛ ÙØ³Ø®Ù "
"ÙØ¯ÛÙ
Û Ø±Ø§ ØÙظ Ú©ÙÛØ بدÙÙ Ø°Ø®ÛØ±ÙâØ³Ø§Ø²Û Ø®Ø§Ø±Ø¬ Ø´Ù."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "ÛÚ© Ø®Ø·Ø§Û Ù/Ø® ÙØ§Ø´Ùاخت٠(%d) رخ داد."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "تغÛÛØ±Ø§Øª در پرÙÙØ¯Ù Ø°Ø®ÛØ±Ù Ø´ÙØ¯Ø"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8516,16 +8515,16 @@ msgid_plural ""
msgstr[0] "اگر Ø°Ø®ÛØ±Ù ÙÚ©ÙÛØ تغÛÛØ±Ø§Øª از %d دÙÛÙ٠گذشت٠Ù
ÙØºÛ Ø®ÙØ§Ùد شد."
msgstr[1] "اگر Ø°Ø®ÛØ±Ù ÙÚ©ÙÛØ تغÛÛØ±Ø§Øª از %d دÙÛÙ٠گذشت٠Ù
ÙØºÛ Ø®ÙØ§Ùد شد."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "_اداÙ
٠بدÙÙ Ø°Ø®ÛØ±ÙâØ³Ø§Ø²Û"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "Ú¯ÙÙÚ©Ø´ ÙØªÙØ§ÙØ³Øª ÙÙÙ Ø¨Ø±Ø§Û %s را Ø¯Ø±ÛØ§Ùت Ú©ÙØ¯."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8533,7 +8532,7 @@ msgstr ""
"Ù
Ù
ک٠است پاÛگاÙâØ¯Ø§Ø¯Ù Ø¯Ø± Ø§Ø³ØªÙØ§Ø¯Ù ÙØ±Ø¯ دÛÚ¯Ø±Û Ø¨Ø§Ø´Ø¯ ک٠در اÛÙ ØµÙØ±Øª ÙØ¨Ø§Ûد آ٠را باز "
"Ú©ÙÛ. Ù
اÛÙÛ ÚÙ Ú©ÙÛØ"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
msgid ""
"That database may be on a read-only file system, you may not have write "
"permission for the directory, or your anti-virus software is preventing this "
@@ -8544,43 +8543,43 @@ msgstr ""
"ÙÙØ´ØªÙ Ø¯Ø§Ø®Ù Ù¾ÙØ´Ù ÙØ¨Ø§Ø´Û ÛØ§ ÙØ±Ù
âØ§ÙØ²Ø§Ø± ضدÙÛØ±Ùست از اÛ٠عÙ
٠جÙÙÚ¯ÛØ±Û Ù
ÛâÚ©ÙØ¯. اگر "
"اداÙ
٠دÙÛ Ø´Ø§ÛØ¯ ÙØªÙاÙÛ ÙÛÚ ØªØºÛÛØ±Û را Ø°Ø®ÛØ±Ù Ú©ÙÛ. Ù
اÛÙÛ ÚÙ Ú©ÙÛØ"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "_ÙÙØ· Ø®ÙØ§ÙدÙÛ Ø¨Ø§Ø² Ú©Ù"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_Ø§ÛØ¬Ø§Ø¯ پرÙÙØ¯Ù Ø¬Ø¯ÛØ¯"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "_Ø¨Ù ÙØ±ØØ§Ù باز Ú©Ù"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
msgid "Open _Folder"
msgstr "Ù¾Ø°ÛØ±Ø§ÙÙ"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_ØªÙØ±Ú©"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "در ØØ§Ù Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±Û Ø§Ø·ÙØ§Ø¹Ø§Øª کاربر..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "Ø°Ø®ÛØ±Ù Ø³Ø§Ø²Û Ù
جدد Ø§Ø·ÙØ§Ø¹Ø§Øª کاربر..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "صادر کرد٠پرÙÙØ¯Ù..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8588,20 +8587,20 @@ msgid ""
"%s"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<ÙØ§Ø´ÙاختÙ>"
@@ -9147,7 +9146,7 @@ msgstr ""
"ØªÙØ¸ÛÙ
Ø´Ø¯Ù ÙØ¯ÛÙ
ÛâØªØ± است. اÛÙ ØªÙØ¸ÛÙ
را Ù
ÛâØªÙØ§Ù از پرÙÙØ¯Ù->ÙÛÚÚ¯ÛâÙØ§->ØØ³Ø§Ø¨âÙØ§ تغÛÛØ± "
"داد."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/fi.po b/po/fi.po
index c5abf4bd5..c351e3540 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: GnuCash 3.10\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2021-01-03 02:29+0000\n"
"Last-Translator: Jyri-Petteri Paloposki <jyri-petteri.paloposki at iki.fi>\n"
"Language-Team: Finnish <https://hosted.weblate.org/projects/gnucash/gnucash/"
@@ -1248,7 +1248,7 @@ msgstr "Poista hyödyke?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2504,7 +2504,7 @@ msgstr "Etsi hanke"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Avaa"
@@ -3278,7 +3278,7 @@ msgid "Open an existing GnuCash file"
msgstr "Avaa olemassa oleva GnuCash-tiedosto"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -5840,7 +5840,7 @@ msgid "You cannot save to that file."
msgstr "Et voi tallentaa tähän tiedostoon."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7051,7 +7051,7 @@ msgid "There was an error parsing the file."
msgstr "Tiedoston tulkinnassa tapahtui virhe."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "Kirjoitetaan tiedostoa..."
@@ -7864,7 +7864,7 @@ msgid "Import"
msgstr "Tuo"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Tallenna"
@@ -8038,8 +8038,7 @@ msgstr ""
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8050,27 +8049,27 @@ msgid ""
"Please try again in a different directory."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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 ""
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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 ""
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 ""
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8079,7 +8078,7 @@ msgid ""
"gnucash.org/show_bug.cgi?id=611936 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8087,7 +8086,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8095,16 +8094,16 @@ msgid ""
"you wish to preserve the old version, exit without saving."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "Tallenna muutokset tiedostoon?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8113,22 +8112,22 @@ msgid_plural ""
msgstr[0] "Jos et tallenna, muutokset edellisen minuutin ajalta hukataan."
msgstr[1] "Jos et tallenna, muutokset edellisten %d minuutin ajalta hukataan."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "J_atka tallentamatta"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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 ""
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
msgid ""
"That database may be on a read-only file system, you may not have write "
"permission for the directory, or your anti-virus software is preventing this "
@@ -8136,40 +8135,40 @@ msgid ""
"you like to do?"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "Avaa _kirjoitussuojattuna"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
msgid "Create _New File"
msgstr "Luo _uusi tiedosto"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "_Avaa siitä huolimatta"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
msgid "Open _Folder"
msgstr "_Avaa hakemisto"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_Lopeta"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "Ladataan käyttäjätietoja..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "Tallennetaan käyttäjätietoja..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "Viedään tiedostoa..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8177,20 +8176,20 @@ msgid ""
"%s"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<tuntematon>"
@@ -8732,7 +8731,7 @@ msgstr ""
"kirjoitussuojatun aikarajan asetus. Voit halutessasi muuttaa asetusta "
"Tiedosto->Ominaisuudet->Tilit."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/fr.po b/po/fr.po
index 0e834e05c..f241c578f 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -25,7 +25,7 @@ msgstr ""
"Project-Id-Version: GnuCash 3.3\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2021-01-22 04:32+0000\n"
"Last-Translator: Julien Humbert <julroy67 at gmail.com>\n"
"Language-Team: French <https://hosted.weblate.org/projects/gnucash/gnucash/"
@@ -1409,7 +1409,7 @@ msgstr "Supprimer le bien ?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2828,7 +2828,7 @@ msgstr "Chercher une prestation"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Ouvrir"
@@ -3732,7 +3732,7 @@ msgstr "Ouvrir un fichier GnuCash existant"
# messages-i18n.c:327
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6822,7 +6822,7 @@ msgstr "Impossible d'enregistrer dans ce fichier"
# messages-i18n.c:40
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -8247,7 +8247,7 @@ msgid "There was an error parsing the file."
msgstr "Une erreur s'est produite lors de la lecture du fichier."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "Ãcriture du fichier..."
@@ -9198,7 +9198,7 @@ msgstr "Importer"
# messages-i18n.c:327
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Enregistrer"
@@ -9416,8 +9416,7 @@ msgstr "Vous n'avez pas les droits d'accès en lecture au fichier %s."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -9435,7 +9434,7 @@ msgstr ""
"Veuillez essayer à nouveau dans un répertoire différent."
# messages-i18n.c:31
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -9444,7 +9443,7 @@ msgstr ""
"Sélectionnez OK pour mettre à niveau vers cette version, Annuler pour passer "
"en lecture seule."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -9456,7 +9455,7 @@ msgstr ""
">Enregistrer sous..., mais des données pourraient être perdues en écrivant "
"sur lâancienne version."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -9467,7 +9466,7 @@ msgstr ""
"n'y a pas actuellement d'autres utilisateurs, consultez la documentation "
"pour savoir comment nettoyer les sessions fantômes."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -9483,7 +9482,7 @@ msgstr ""
"lâinstallation dâune autre version de « libdbi ». Veuillez vous référer à "
"https://bugs.gnucash.org/show_bug.cgi?id=611936 pour plus dâinformations."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -9491,7 +9490,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -9499,17 +9498,17 @@ msgid ""
"you wish to preserve the old version, exit without saving."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "Une erreur inconnue d'entrée/sortie (%d) s'est produite."
# src/gnome/glade-gnc-dialogs.c:300
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "Enregistrer les modifications du fichier ?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -9522,16 +9521,16 @@ msgstr[1] ""
"Si vous n'enregistrez pas, les modifications réalisées dans les %d dernières "
"minutes seront perdues."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "Continuer _sans enregistrer"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash ne peut pas obtenir le verrouillage pour %s."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -9541,7 +9540,7 @@ msgstr ""
"\n"
"Que voulez-vous faire ?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -9554,23 +9553,23 @@ msgstr ""
"continuez, vous ne pourrez pas enregistrer vos modifications. Voulez-vous "
"continuer ?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "Ouvrir en _lecture seule"
# messages-i18n.c:93
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_Créer un nouveau fichier"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "_Ouvrir quand même"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
@@ -9578,25 +9577,25 @@ msgstr "virtuel"
# messages-i18n.c:282 po/guile_strings.txt:8
# src/gnome/glade-gnc-dialogs.c:650
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_Quitter"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "Chargement des données de l'utilisateur..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "Ré-enregistrement des données de l'utilisateur..."
# Exportation n'est pas français
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "Export du fichier..."
# messages-i18n.c:34
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -9608,7 +9607,7 @@ msgstr ""
"%s"
# messages-i18n.c:54
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
@@ -9617,14 +9616,14 @@ msgstr ""
"sauvegarder à un autre emplacement ?"
# messages-i18n.c:40
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "Le fichier %s existe déjà . Voulez-vous l'écraser ?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<inconnu>"
@@ -10245,7 +10244,7 @@ msgid ""
">Properties->Accounts."
msgstr ""
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/gu.po b/po/gu.po
index 4bae80bf8..1fcf83a32 100644
--- a/po/gu.po
+++ b/po/gu.po
@@ -7,7 +7,7 @@ msgstr ""
"Project-Id-Version: GnuCash 2.6.3\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2014-10-19 16:37-0500\n"
"Last-Translator: Ronak Shah <ronaks at cdac.in>\n"
"Language-Team: NONE\n"
@@ -1310,7 +1310,7 @@ msgstr "àªà«àª®à«àª¡àª¿àªà«àª¨à« દà«àª° àªàª°à«àª?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2610,7 +2610,7 @@ msgstr "àªàª¾àª®àªà«àª°à« શà«àª§à« "
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "àªà«àª²à«"
@@ -3413,7 +3413,7 @@ msgid "Open an existing GnuCash file"
msgstr "àªàª àª
સà«àª¤àª¿àª¤à«àªµ ધરાવતૠGnuCash ફાàªàª² àªà«àª²à« "
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6158,7 +6158,7 @@ msgid "You cannot save to that file."
msgstr "તમૠતૠફાàªàª²àª®àª¾àª સà«àªµ નહà«àª àªàª°à« શàªà«"
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7447,7 +7447,7 @@ msgid "There was an error parsing the file."
msgstr "ફાàªàª²àª¨à« સમàªàªµàª¾àª®àª¾àª તà«àª°à«àªàª¿ સરà«àªàª¾àª હતà«. "
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "ફાàªàª² રાàªàª થઠરહૠàªà«..."
@@ -8300,7 +8300,7 @@ msgid "Import"
msgstr "àªàª¯àª¾àª¤ àªàª°à«"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "સà«àªµ àªàª°à« "
@@ -8488,8 +8488,7 @@ msgstr "ફાàªàª² %s વાàªàªàªµàª¾ માàªà« વાàªàªàªµàª¾àª¨à«
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, fuzzy, c-format
msgid ""
"You attempted to save in\n"
@@ -8506,7 +8505,7 @@ msgstr ""
"\n"
" àªà«àªªàª¾ àªàª°à«àª¨à« àªàª નવૠડિરà«àªà«àªàª°à«àª®àª¾àª પà«àª°àª¯àª¤à«àª¨ àªàª°à«."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8514,7 +8513,7 @@ msgstr ""
"ઠડà«àªàª¾àª¬à«àª GnuCashનૠàªàª àªà«àª¨à« àªàªµà«àª¤à«àª¤àª¿ સાથૠસàªàª¬àªàª§àª¿àª¤ àªà«. તà«àª¨à« હાલનૠàªàªµà«àª¤à«àª¤àª¿àª®àª¾àª àª
પડà«àª àªàª°àªµàª¾ માàªà« "
"OK પસàªàª¦ àªàª°à«, માતà«àª° વાàªàªàªµàª¾ માàªà« àªàª¿àª¹à«àª¨ àªàª°àªµàª¾ માàªà« àªà«àª¨à«àª¸àª² પસàªàª¦ àªàª°à«."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
#, fuzzy
msgid ""
"This database is from a newer version of GnuCash. This version can read it, "
@@ -8525,7 +8524,7 @@ msgstr ""
"સà«àªµ àªàª°à« શàªàª¾àª¤àª¾ નથà«. તà«àª¨à« àªà«àª¯àª¾àª સà«àª§à« ફાàªàª²->સà«àªµ àªàª ન àªàª°àªµàª¾àª®àª¾àª àªàªµà« તà«àª¯àª¾àª સà«àª§à« માતà«àª° વાàªàªàªµàª¾ માàªà« "
"àªàª¿àª¹à«àª¨ àªàª°àªµàª¾àª®àª¾àª àªàªµàª¶à«."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8535,7 +8534,7 @@ msgstr ""
"લà«àªàªàª« ન થાય તà«àª¯àª¾àª સà«àª§à« àª
પàªà«àª°à«àª¡àª¨à«àª àªàª¾àª°à«àª¯ પà«àª°à«àª થઠશàªàª¶à« નહà«àª. àªà« હાલમાઠàªà«àª àª
નà«àª¯ વપરાશàªàª¾àª° ન "
"હà«àª¯ તૠલàªàª¬àª¿àª¤ લà«àªàª¿àª¨ સà«àª¤à«àª°à«àª¨à« àªà«àªµà« રà«àª¤à« પà«àª°àª¾ àªàª°àªµàª¾ ઠàª
àªàªà« શà«àªàªµàª¾ માàªà« દસà«àª¤àª¾àªµà«àªà«àªàª°àª£àª¨à« સલાહ લà«."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -8549,7 +8548,7 @@ msgstr ""
"àªàª°àªµàª¾àª®àª¾àª નહà«àª àªàªµà« તà«àª¯àª¾àª સà«àª§à« SQL ડà«àªàª¾àª¬à«àªà«àª®àª¾àª àªà«àª²à« àªà« સà«àªµ àªàª°à« શàªàª¾àª¶à« નહà«àª. વધૠàªàª¾àª£àªàª¾àª°à« માàªà« "
"àªà«àªªàª¾ àªàª°à«àª¨à« https://bugs.gnucash.org/show_bug.cgi?id=611936 àªà«àª."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8557,7 +8556,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8565,16 +8564,16 @@ msgid ""
"you wish to preserve the old version, exit without saving."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "àªàª àª
àªàª¾àª£à« I/O તà«àª°à«àªàª¿ (%d) સરà«àªàª¾àª àªà«."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "ફà«àª°àª«àª¾àª°à«àª¨à« ફાàªàª²àª®àª¾àª સà«àªµ àªàª°à«? "
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, fuzzy, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8583,16 +8582,16 @@ msgid_plural ""
msgstr[0] "àªà« તમૠસà«àªµ àªàª°àª¶à« નહà«àª, તૠપાàªàª³àª¨àª¾ %d મિનિàªà«àª¨àª¾ ફà«àª°àª«àª¾àª°à«àª¨à« રદ àªàª°àªµàª¾àª®àª¾àª àªàªµàª¶à«. "
msgstr[1] "àªà« તમૠસà«àªµ àªàª°àª¶à« નહà«àª, તૠપાàªàª³àª¨àª¾ %d મિનિàªà«àª¨àª¾ ફà«àª°àª«àª¾àª°à«àª¨à« રદ àªàª°àªµàª¾àª®àª¾àª àªàªµàª¶à«. "
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "સà«àªµ àªàª°à«àª¯àª¾ વિના_àªàªàª³ વધà«"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash %s માàªà« લà«àªàª¨à« પà«àª°àª¾àªªà«àª¤ àªàª°à« શàªàª¾àª¯à«àª નથà«."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8600,7 +8599,7 @@ msgstr ""
"àªàª¦àª¾àª ડà«àªàª¾àª¬à«àªàª¨à« àªàªªàª¯à«àª àª
નà«àª¯ વપરાશàªàª¾àª° દà«àªµàª¾àª°àª¾ àªàª°àªµàª¾àª®àª¾àª àªàªµà« રહà«àª¯à« àªà«, àªà« àªàª¿àª¸à«àª¸àª¾àª®àª¾àª તમૠડà«àªàª¾àª¬à«àª "
"àªàªªàª¨ àªàª°àªµà« ન àªà«àªàª. તમૠશà«àª પસàªàª¦ àªàª°àª¶à«? "
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8612,44 +8611,44 @@ msgstr ""
"હà«àª શàªà«. àªà« તમૠàªàªàª³ વધવા માàªàª¤àª¾ હà«àª¯ તૠતમૠàªà«àª ફà«àª°àª«àª¾àª°à«àª¨à« સà«àªµ àªàª°à« શàªàª¶à« નહà«àª. તમૠશà«àª પસàªàª¦ "
"àªàª°àª¶à«? "
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_નવૠફાàªàª² બનાવà«"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
#, fuzzy
msgid "Open _Anyway"
msgstr "_àªà«àª²à« "
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
msgid "Open _Folder"
msgstr "àªàª¾àª¤àª¾àª§àª¾àª°àª "
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_àªà«àª¡à« દà«"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "વપરાશàªàª°à«àª¤àª¾àª¨àª¾ ડà«àªàª¾ લà«àª¡ થઠરહà«àª¯àª¾ àªà«... "
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "વપરાશàªàª°à«àª¤àª¾àª¨àª¾ ડà«àªàª¾àª¨à« ફરૠસà«àªµ àªàª°àªµàª¾àª®àª¾àª àªàªµà« રહà«àª¯àª¾ àªà«..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "ફાàªàª² શà«àª§àªµàª¾àª®àª¾àª àªàªµà« રહૠàªà«..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8660,21 +8659,21 @@ msgstr ""
"\n"
"%s "
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
#, fuzzy
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr "àªàªµà«àª લાàªà« àªà« àªà« ડà«àªàª¾àª¬à«àª %s àª
સà«àª¤àª¿àª¤à«àª¤à«àªµàª®àª¾àª નથà«. શà«àª તમૠતà«àª¨à« બનાવવા માàªà« àªà«? "
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "ફાàªàª² %s થૠપહà«àª²àª¾ àª
સà«àª¤àª¿àª¤à«àª¤à«àªµàª®àª¾àª àªà«. શà«àª તમૠàªàª°à«àªàª° àªàª¨à« દà«àª° àªàª°à«àª¨à« લàªàªµàª¾ માàªà« àªà«?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "(àª
àªà«àªàª¾àª¤)"
@@ -9222,7 +9221,7 @@ msgid ""
">Properties->Accounts."
msgstr ""
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
#, fuzzy
diff --git a/po/he.po b/po/he.po
index a3e083da3..e0bdc64e9 100644
--- a/po/he.po
+++ b/po/he.po
@@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: GnuCash 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2021-01-15 09:32+0000\n"
"Last-Translator: Avi Markovitz <avi.markovitz at gmail.com>\n"
"Language-Team: Hebrew <https://hosted.weblate.org/projects/gnucash/gnucash/"
@@ -1310,7 +1310,7 @@ msgstr "×××קת ס××ר×?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2574,7 +2574,7 @@ msgstr "××פ×ש ר××××"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "פת×××"
@@ -3368,7 +3368,7 @@ msgid "Open an existing GnuCash file"
msgstr "פת××ת ×§×××¥ ×× ××§×ש ×§×××"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -5940,7 +5940,7 @@ msgid "You cannot save to that file."
msgstr "×× × ××ª× ×ש××ר ××§×××¥ ××."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7199,7 +7199,7 @@ msgid "There was an error parsing the file."
msgstr "××¨×¢× ×©×××× ×× ×ת×× ××§×××¥."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "×ת××ת ×§×××¥..."
@@ -8030,7 +8030,7 @@ msgid "Import"
msgstr "××××"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "ש××ר×"
@@ -8222,8 +8222,7 @@ msgstr "××× ×רש×ת קר××× ×קר××× ×××§×××¥ %s."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8239,7 +8238,7 @@ msgstr ""
"\n"
"× × ×× ×¡×ת ש×× ×ספר×× ××רת."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8247,7 +8246,7 @@ msgstr ""
"××¡× ×× ×ª×× ×× ××× ×××¨×¡× ××©× × ××תר ×©× ×× ××§×ש. × × ××××ר × '××ש×ר' ×ש××¨× ×××¨×¡× "
"×× ××××ת, ×× '×××××' ××× ×ס×× × ×קר××× ××××."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8257,7 +8256,7 @@ msgstr ""
"××××× ××צע ש×××¨× ×ª×§×× ×. ××§×××¥ ×ס××× ×קר××× ×××× ×¢× ××צ××¢ '×§×××¥ -> ש×××¨× "
"×ש×', ×× ××ת×× ×©× ×ª×× ×× ××××× ××ת××× ×××¨×¡× ×××©× ×."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8267,7 +8266,7 @@ msgstr ""
"×××ª× ×ª×§×ת. ×× ××× ×שת×ש×× ××ר×× ×©××××ר×× ×ר××¢, × × ××¢××× ×ת××¢×× ×××× ××××× "
"×××¦× ×× ×§×ת × ×¢××ת ×ת××ר×ת."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8280,7 +8279,7 @@ msgstr ""
"××ס×× × ×ª×× ×× SQL ×¢× ×××ª×§× ×ª ××¨×¡× ×©×× × ×©× 'libdbi'. ×× × ×¨×× https://bugs."
"gnucash.org/show_bug.cgi?id=611936 ××§××ת ××××¢ × ×סף."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8291,7 +8290,7 @@ msgstr ""
"×¢×§× ×ª×¦×רת ×רש××ת ש×××× ×××¡× ×× ×ª×× ×× SQL. ×× × ×¨×× https://bugs.gnucash.org/"
"show_bug.cgi?id=645216 ××§××ת ××××¢ × ×סף."
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8303,16 +8302,16 @@ msgstr ""
"×פר×שת ××§×××¥'). ×¢× ×× ×ª ×ש×ר ×ת ×××¨×¡× ×××©× × ×©× ××§×××¥, × × ××××ר ××צ××× ××× "
"ש××ר×."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "××¨×¢× ×©×××ת ×§××/פ×× (%d) ×× ××××¢×."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "ש××רת ש×× ×××× ××§×××¥?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8321,16 +8320,16 @@ msgid_plural ""
msgstr[0] "××××× ××× ×ª×ª×צע ש××ר×, ×ש×× ×××× × %d ×××§× ×××ר×× × ××××."
msgstr[1] "×× ×× ×ª×ª×צע ש××ר×, ×ש×× ×××× × %d ×××§×ת ×××ר×× ×ת ×××××."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "×××ש×× _××× ×©××ר×"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "××× ××§×ש ×× ×××ª× ×פשר×ת ×× ×¢×× ×ת %s."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8338,7 +8337,7 @@ msgstr ""
"××¡× × ×ª×× ×× ×× ×¢×©×× ××××ת ×ש×××ש ×¢×-××× ×שת×ש ××ר, ××××§×¨× ×× ×ס×ר ×פת×× ×ת "
"××¡× ×× ×ª×× ××. ×××¦× ×××ש××?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
msgid ""
"That database may be on a read-only file system, you may not have write "
"permission for the directory, or your anti-virus software is preventing this "
@@ -8349,40 +8348,40 @@ msgstr ""
"×ספר××, ×× ×©×ª××× ×ª ×× ××-××ר×ס ××× ×¢×ª פע××× ××. ××××¨× ×××ש××, עש×××× ×©×× ××פשר "
"ש××רת ש×× ×××× ××ש××. ×××¦× ×××ש××?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "פת××× _×קר××× ××××"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
msgid "Create _New File"
msgstr "×צ×רת _×§×××¥ ××ש"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "פת××× _××× ××ת"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
msgid "Open _Folder"
msgstr "פת××ת _ת××§×××"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "×_צ×××"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "×××¢× × ×ª×× × ×שת×ש..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "ש×××¨× ×××ש ×©× × ×ª×× × ×שת×ש..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "××§×××¥ ×××צ×..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8393,20 +8392,20 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr "××¡× ×× ×ª×× ×× × ×¤×ª× ×קר××× ××××. ××× ×ש××ר ×××ª× ×××§×× ××ר?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "××ס×× ×ª×©××× ×ת ×× ×ש×× ×××× × %s ש××¨× × ×©×ר×. ××× ×××ש×× ?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<×× ××××¢>"
@@ -8937,7 +8936,7 @@ msgstr ""
"ת×ר×× ××ª× ××¢× ××ש××פ×ת ×§××× ××¢×¨× 'סף קר××× ××××' ×¢××ר ספר ×ש××× ×ת ××. × ××ª× "
"××©× ×ת ××××¨× ×× ×תפר×× '×§×××¥ -> ××פ××× ×× -> ×ש××× ×ת'."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/hi.po b/po/hi.po
index 99d5dc11d..f83045591 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -7,7 +7,7 @@ msgstr ""
"Project-Id-Version: GnuCash 2.6.3\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2014-09-25 20:13-0500\n"
"Last-Translator: Parimal Khade <parimal.khade at gmail.com>\n"
"Language-Team: NONE\n"
@@ -1314,7 +1314,7 @@ msgstr "à¤à¤®à¥à¤¡à¤¿à¤à¥ à¤à¥ मिà¤à¤¾à¤à¤?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2597,7 +2597,7 @@ msgstr "à¤à¤¾à¤°à¥à¤¯ à¤à¥à¤à¥à¤ "
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "à¤à¥à¤²à¥à¤ "
@@ -3401,7 +3401,7 @@ msgid "Open an existing GnuCash file"
msgstr "à¤à¤ मà¥à¤à¥à¤¦à¤¾ GnuCash फ़ाà¤à¤² à¤à¥à¤²à¥à¤ "
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6087,7 +6087,7 @@ msgid "You cannot save to that file."
msgstr "à¤à¤ª à¤à¤¸ फ़ाà¤à¤² मà¥à¤ सहà¥à¤ नहà¥à¤ सà¤à¤¤à¥."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7357,7 +7357,7 @@ msgid "There was an error parsing the file."
msgstr "फ़ाà¤à¤² à¤à¥ समà¤à¤¨à¥ मà¥à¤ à¤à¤ तà¥à¤°à¥à¤à¤¿ à¤à¤¤à¥à¤ªà¤¨à¥à¤¨ हà¥à¤ थà¥. "
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "फ़ाà¤à¤² à¤à¥ लिठरहॠहà¥à¤..."
@@ -8202,7 +8202,7 @@ msgid "Import"
msgstr "à¤à¤¯à¤¾à¤¤ à¤à¤°à¥à¤"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "सहà¥à¤à¥à¤ "
@@ -8390,8 +8390,7 @@ msgstr "फ़ाà¤à¤² %s सॠपढ़नॠà¤à¥ लिठपढ़न
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8408,7 +8407,7 @@ msgstr ""
"\n"
"à¤à¥à¤ªà¤¯à¤¾ à¤à¤ à¤
लठडायरà¥à¤à¥à¤à¥à¤°à¥ मà¥à¤ फिर सॠपà¥à¤°à¤¯à¤¾à¤¸ à¤à¤°à¥à¤."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8416,7 +8415,7 @@ msgstr ""
"यह डà¥à¤à¤¾à¤¬à¥à¤¸ GnuCash à¤à¥ à¤à¤ पà¥à¤°à¤¾à¤¨à¥ सà¤à¤¸à¥à¤à¤°à¤£ सॠसà¤à¤¬à¤à¤§à¤¿à¤¤ हà¥. à¤à¤¸à¥ वरà¥à¤¤à¤®à¤¾à¤¨ सà¤à¤¸à¥à¤à¤°à¤£ मà¥à¤ à¤
पडà¥à¤ à¤à¤°à¤¨à¥ à¤à¥ लिठ"
"OK à¤à¥à¤¨à¥à¤, à¤à¥à¤µà¤²-पढ़à¥à¤ à¤à¥ रà¥à¤ª मà¥à¤ à¤à¤¿à¤¹à¥à¤¨à¤¿à¤¤ à¤à¤°à¤¨à¥ à¤à¥ लिठà¤à¥à¤à¤¸à¤² à¤à¥à¤¨à¥à¤. "
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8427,7 +8426,7 @@ msgstr ""
"à¤à¤ª 'फ़ाà¤à¤²->à¤à¤¸ रà¥à¤ª मà¥à¤ सहà¥à¤à¥à¤' नहà¥à¤ à¤à¤°à¤¤à¥ हà¥à¤, लà¥à¤à¤¿à¤¨ पà¥à¤°à¤¾à¤¨à¥ सà¤à¤¸à¥à¤à¤°à¤£ मà¥à¤ लिà¤à¤¨à¥ मà¥à¤ डà¥à¤à¤¾ à¤à¤¾à¤¯à¤¬ हॠसà¤à¤¤à¤¾ "
"हà¥."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8438,7 +8437,7 @@ msgstr ""
"à¤à¤ªà¤¯à¥à¤à¤à¤°à¥à¤¤à¤¾ नहà¥à¤ हà¥, तॠलà¤à¤¬à¤¿à¤¤ लà¥à¤à¤à¤¨ सतà¥à¤°à¥à¤ à¤à¥ à¤à¥à¤¸à¥ ठà¥à¤ à¤à¤°à¥à¤, यह सà¥à¤à¤¨à¥ à¤à¥ लिठदसà¥à¤¤à¤¾à¤µà¥à¤à¥à¤à¤°à¤£ सॠ"
"सà¤à¤ªà¤°à¥à¤ à¤à¤°à¥à¤. "
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -8453,7 +8452,7 @@ msgstr ""
"\" à¤à¤¾ à¤à¤ à¤
लठसà¤à¤¸à¥à¤à¤°à¤£ à¤à¤à¤¸à¥à¤à¥à¤² à¤à¤°à¤à¥ à¤à¤¸ समसà¥à¤¯à¤¾ à¤à¥ दà¥à¤° नहà¥à¤ à¤à¤¿à¤¯à¤¾ à¤à¤¾à¤¤à¤¾ हà¥. à¤
धिठà¤à¤¾à¤¨à¤à¤¾à¤°à¥ à¤à¥ "
"लिठà¤à¥à¤ªà¤¯à¤¾ दà¥à¤à¥à¤ https://bugs.gnucash.org/show_bug.cgi?id=611936."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8464,7 +8463,7 @@ msgstr ""
"सà¤à¤¤à¤¾ हà¥. à¤à¤¸à¤¾ à¤à¤ªà¤à¥ SQL डà¥à¤à¤¾à¤¬à¥à¤¸ मà¥à¤ à¤
नà¥à¤®à¤¤à¤¿ à¤à¥ à¤à¤²à¤¤ à¤à¥à¤¨à¥à¤«à¤¼à¤¿à¤à¤°à¥à¤¶à¤¨ à¤à¥ à¤à¤¾à¤°à¤£ हॠसà¤à¤¤à¤¾ हà¥. à¤
धिठ"
"à¤à¤¾à¤¨à¤à¤¾à¤°à¥ à¤à¥ लिठà¤à¥à¤ªà¤¯à¤¾ दà¥à¤à¥à¤ https://bugs.gnucash.org/show_bug.cgi?id=645216. "
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8476,16 +8475,16 @@ msgstr ""
"हà¥à¤à¤à¥ (यह à¤à¤ \"error parsing the file\" रिपà¥à¤°à¥à¤ à¤à¤°à¥à¤à¤¾). à¤
à¤à¤° à¤à¤ª पà¥à¤°à¤¾à¤¨à¥ सà¤à¤¸à¥à¤à¤°à¤£ à¤à¥ "
"सà¤à¤°à¤à¥à¤·à¤¿à¤¤ à¤à¤°à¤¨à¤¾ à¤à¤¾à¤¹à¤¤à¥ हॠतॠसहà¥à¤à¥ बिना बाहर निà¤à¤²à¥à¤."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "à¤à¤ à¤
à¤à¥à¤à¤¾à¤¤ I/O तà¥à¤°à¥à¤à¤¿ (%d) à¤à¤¤à¥à¤ªà¤¨à¥à¤¨ हà¥à¤. "
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "बदलावà¥à¤ à¤à¥ फ़ाà¤à¤² मà¥à¤ सहà¥à¤à¥à¤? "
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8494,16 +8493,16 @@ msgid_plural ""
msgstr[0] "à¤
à¤à¤° à¤à¤ª नहà¥à¤ सहà¥à¤à¤¤à¥ हà¥à¤, तॠपिà¤à¤²à¥ %d मिनà¤à¥à¤ à¤à¥ बदलावà¥à¤ à¤à¥ हà¤à¤¾ दिया à¤à¤¾à¤à¤à¤¾. "
msgstr[1] "à¤
à¤à¤° à¤à¤ª नहà¥à¤ सहà¥à¤à¤¤à¥ हà¥à¤, तॠपिà¤à¤²à¥ %d मिनà¤à¥à¤ à¤à¥ बदलावà¥à¤ à¤à¥ हà¤à¤¾ दिया à¤à¤¾à¤à¤à¤¾. "
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "सहà¥à¤à¥ बिना_à¤à¤¾à¤°à¥ रà¤à¥à¤ "
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash %s à¤à¥ लिठतालॠà¤à¥ पà¥à¤°à¤¾à¤ªà¥à¤¤ नहà¥à¤ à¤à¤° पाया."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8511,7 +8510,7 @@ msgstr ""
"सà¤à¤à¤µà¤¤à¤ डà¥à¤à¤¾à¤¬à¥à¤¸ à¤à¤¾ à¤à¤¸à¥à¤¤à¥à¤®à¤¾à¤² à¤
नà¥à¤¯ à¤à¤ªà¤¯à¥à¤à¤à¤°à¥à¤¤à¤¾ दà¥à¤µà¤¾à¤°à¤¾ à¤à¤¿à¤¯à¤¾ à¤à¤¾ रहा हà¥, à¤à¤¿à¤¸ सà¥à¤¥à¤¿à¤¤à¤¿ मà¥à¤ à¤à¤ªà¤à¥ "
"डà¥à¤à¤¾à¤¬à¥à¤¸ à¤à¥ नहà¥à¤ à¤à¥à¤²à¤¨à¤¾ à¤à¤¾à¤¹à¤¿à¤. à¤à¤ª à¤à¥à¤¯à¤¾ à¤à¤°à¤¨à¤¾ पसà¤à¤¦ à¤à¤°à¥à¤à¤à¥? "
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8523,44 +8522,44 @@ msgstr ""
"à¤à¥ à¤
नà¥à¤®à¤¤à¤¿ नहà¥à¤ हà¥. à¤
à¤à¤° à¤à¤ª à¤à¤à¥ बढ़तॠहà¥à¤ तॠà¤à¤ª à¤à¤¿à¤¸à¥ à¤à¥ बदलाव à¤à¥ सहà¥à¤à¤¨à¥ मà¥à¤ सà¤à¥à¤·à¤® नहà¥à¤ हॠ"
"सà¤à¤¤à¥ हà¥à¤. à¤à¤ª à¤à¥à¤¯à¤¾ à¤à¤°à¤¨à¤¾ पसà¤à¤¦ à¤à¤°à¥à¤à¤à¥? "
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "_à¤à¥à¤µà¤²-पठन रà¥à¤ª मà¥à¤ à¤à¥à¤²à¥à¤"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_नयॠफ़ाà¤à¤² बनाà¤à¤ "
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "_à¤à¤¿à¤¸à¥ à¤à¥ तरह सॠà¤à¥à¤²à¥à¤"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "सà¥à¤¥à¤¾à¤¨à¤§à¤¾à¤°à¤"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_à¤à¥à¤¡à¤¼ दà¥à¤ "
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "à¤à¤ªà¤¯à¥à¤à¤à¤°à¥à¤¤à¤¾ à¤à¤¾ डà¥à¤à¤¾ लà¥à¤¡ हॠरहा हà¥... "
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "à¤à¤ªà¤¯à¥à¤à¤à¤°à¥à¤¤à¤¾ à¤à¤¾ डà¥à¤à¤¾ पà¥à¤¨à¤-सहà¥à¤à¤¾ à¤à¤¾ रहा हà¥..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "फ़ाà¤à¤² निरà¥à¤à¤¤ à¤à¥ à¤à¤¾ रहॠहà¥..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8571,21 +8570,21 @@ msgstr ""
"\n"
"%s "
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr ""
"डà¥à¤à¤¾à¤¬à¥à¤¸ à¤à¥ à¤à¥à¤µà¤²-पठन रà¥à¤ª मà¥à¤ à¤à¥à¤²à¤¾ à¤à¤¯à¤¾ था. à¤à¥à¤¯à¤¾ à¤à¤ª à¤à¤¸à¥ à¤à¤ à¤
लठसà¥à¤¥à¤¾à¤¨ पर सहà¥à¤à¤¨à¤¾ à¤à¤¾à¤¹à¤¤à¥ हà¥à¤? "
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "फ़ाà¤à¤² %s पहलॠसॠमà¥à¤à¥à¤¦ हà¥. à¤à¥à¤¯à¤¾ à¤à¤ª सà¤à¤®à¥à¤ à¤à¤¸à¥ मिà¤à¤¾à¤à¤° लिà¤à¤¨à¤¾ à¤à¤¾à¤¹à¤¤à¥ हà¥à¤?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<à¤
à¤à¥à¤à¤¾à¤¤>"
@@ -9133,7 +9132,7 @@ msgstr ""
"Threshold\" सॠà¤
धिठपà¥à¤°à¤¾à¤¨à¤¾ हà¥. 'फ़ाà¤à¤²->पà¥à¤°à¥à¤ªà¤°à¥à¤à¥à¤->à¤à¤¾à¤¤à¥' मà¥à¤ à¤à¤¸ सà¥à¤à¤¿à¤à¤ à¤à¥ बदला à¤à¤¾ सà¤à¤¤à¤¾ "
"हà¥."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/hr.po b/po/hr.po
index 7df7b3117..599814730 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -7,7 +7,7 @@ msgstr ""
"Project-Id-Version: GnuCash 4.2\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2021-01-16 18:32+0000\n"
"Last-Translator: Milo Ivir <mail at milotype.de>\n"
"Language-Team: Croatian <https://hosted.weblate.org/projects/gnucash/gnucash/"
@@ -1331,7 +1331,7 @@ msgstr "Izbrisati robu?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2610,7 +2610,7 @@ msgstr "NaÄi nalog"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Otvori"
@@ -3427,7 +3427,7 @@ msgid "Open an existing GnuCash file"
msgstr "Otvori postojeÄu GnuCash datoteku"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6038,7 +6038,7 @@ msgid "You cannot save to that file."
msgstr "Ne možeš spremiti u tu datoteku."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7319,7 +7319,7 @@ msgid "There was an error parsing the file."
msgstr "Došlo je do greške prilikom obrade datoteke."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "Zapisivanje datoteke â¦"
@@ -8173,7 +8173,7 @@ msgid "Import"
msgstr "Uvezi"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Spremi"
@@ -8372,8 +8372,7 @@ msgstr "NemaÅ¡ korisniÄka prava za Äitanje iz datoteke â%sâ."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8390,7 +8389,7 @@ msgstr ""
"\n"
"Pokušaj ponovo u nekoj drugoj mapi."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8399,7 +8398,7 @@ msgstr ""
"aktualiziranje na trenutaÄno izdanje. Odaberi âPrekiniâ za oznaÄavanje, da "
"je samo-za-Äitanje."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8410,7 +8409,7 @@ msgstr ""
"sve dok je ne spremiÅ¡ pod âDatotekaâSpremi kaoâ, ali može doÄi do gubljenja "
"podataka prilikom zapisivanja u staro izdanje."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8420,7 +8419,7 @@ msgstr ""
"sve dok se oni ne odjave. Ako trenutaÄno nema drugih korisnika, proÄitaj "
"dokumentaciju i saznaj kako izbrisati nesvršene sesije prijavljivanja."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8434,7 +8433,7 @@ msgstr ""
"popravi ugradnjom drugaÄijeg izdanja biblioteke âlibdbiâ. Za daljnje "
"informacije pogledaj âhttps://bugs.gnucash.org/show_bug.cgi?id=611936â."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8445,7 +8444,7 @@ msgstr ""
"Uzrok tome mogu biti neispravne dozvole tvoje SQL baze podataka. Za daljnje "
"informacije pogledaj âhttps://bugs.gnucash.org/show_bug.cgi?id=645216â."
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8457,16 +8456,16 @@ msgstr ""
"(javit Äe âgreÅ¡ka u obradi datotekeâ). Ako želiÅ¡ spremiti staro izdanje, "
"izaÄi bez spremanja."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "Došlo je do nepoznate U/I greške (%d)."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "Spremiti izmjene u datoteku?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8478,16 +8477,16 @@ msgstr[1] "Ako ne spremiÅ¡, uklonit Äe se promjene uÄinjene u zadnje %d minute
msgstr[2] ""
"Ako ne spremiÅ¡, uklonit Äe se promjene uÄinjene u zadnjih %d minuta."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "Nastavi bez _spremanja"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash nije ustanovio pravilno zatvaranje datoteke â%sâ."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8495,7 +8494,7 @@ msgstr ""
"Možda tu bazu podataka koristi neki drugi korisnik. U tom sluÄaju je nemoj "
"otvarati. Što želiš uraditi?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
msgid ""
"That database may be on a read-only file system, you may not have write "
"permission for the directory, or your anti-virus software is preventing this "
@@ -8507,40 +8506,40 @@ msgstr ""
"radnju. Ako nastaviÅ¡, možda neÄeÅ¡ biti u stanju spremiti promjene. Å to želiÅ¡ "
"napraviti?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "Otvori u _zaÅ¡tiÄenom stanju"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
msgid "Create _New File"
msgstr "Stvori _novu datoteku"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "_Svejedno otvori"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
msgid "Open _Folder"
msgstr "Otvori _mapu"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_Zatvori"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "UÄitavanje korisniÄkih podataka â¦"
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "Ponovo spremanje korisniÄkih podataka â¦"
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "Izvoz datoteke â¦"
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8551,7 +8550,7 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
@@ -8559,7 +8558,7 @@ msgstr ""
"Baza podataka je otvorena u zastiÄenom stanju (samo-za-Äitanje). ŽeliÅ¡ li je "
"spremiti na jednom drugom mjestu?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
@@ -8567,7 +8566,7 @@ msgid ""
msgstr ""
"Odbacit Äe se sve nespremljene promjene u â%sâ. Stvarno želiÅ¡ nastaviti?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<nepoznato>"
@@ -9108,7 +9107,7 @@ msgstr ""
"postavljenog za ovu knjigu. Ovu postavku možeš izmijeniti u izborniku "
"âDatotekaâSvojstvaâKontiâ."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/hu.po b/po/hu.po
index 4ac6d4d33..1f283906e 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: gnucash 2.4\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2011-07-30 16:57+0100\n"
"Last-Translator: Takó Kornél <takokornel at gmail.com>\n"
"Language-Team: Hungarian\n"
@@ -1437,7 +1437,7 @@ msgstr "Pénznem törlése?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2735,7 +2735,7 @@ msgstr "MegbÃzás keresése"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Megnyitás"
@@ -3548,7 +3548,7 @@ msgid "Open an existing GnuCash file"
msgstr "MeglévŠGnuCash-fájl megnyitása"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6292,7 +6292,7 @@ msgid "You cannot save to that file."
msgstr "E fájlba nem lehet menteni."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7561,7 +7561,7 @@ msgid "There was an error parsing the file."
msgstr "A fájl elemzése során hiba történt."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "Fájl Ãrása..."
@@ -8387,7 +8387,7 @@ msgid "Import"
msgstr "Importálás"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Mentés"
@@ -8581,8 +8581,7 @@ msgstr "Ãnnek nincs hozzáférési joga %s fájlhoz."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8593,7 +8592,7 @@ msgid ""
"Please try again in a different directory."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8602,14 +8601,14 @@ msgstr ""
"frissÃti az adatbázist a jelenlegi verzióra, vagy MegszakÃtást, ha megjelöli "
"csak olvashatónak."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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 ""
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8620,7 +8619,7 @@ msgstr ""
"rendszerben, nézze meg a dokumentációban, hogyan kell félbeszakadt "
"bejelentkezésektÅl megszabadulni."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8629,7 +8628,7 @@ msgid ""
"gnucash.org/show_bug.cgi?id=611936 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8637,7 +8636,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8645,16 +8644,16 @@ msgid ""
"you wish to preserve the old version, exit without saving."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "Ismeretlen I/O hiba (%d) történt."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "Változások rögzÃtése a fájlba?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, fuzzy, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8662,16 +8661,16 @@ msgid_plural ""
"If you don't save, changes from the past %d minutes will be discarded."
msgstr[0] "Ha nem rögzÃti a változásokat az elÅzÅ %d percbÅl, azok elvesznek."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "Folytatás mentés nélkül"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash nem tudta zárolni %s fájlt."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8679,7 +8678,7 @@ msgstr ""
"Lehet, hogy egy másik felhasználó használja az adatbázist, mely esetben ön "
"nem nyithatja meg. Mit akar tenni?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8691,44 +8690,44 @@ msgstr ""
"jogosultság a mappára. Ha folytatja, nem mentheti el a változtatásokat. Mit "
"akar tenni?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "Ãj fájl létrehozása"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
#, fuzzy
msgid "Open _Anyway"
msgstr "Megnyitás mindenképpen"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
msgid "Open _Folder"
msgstr "Töltelék"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "Kilépés"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "Adatok betöltése..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "Adatok újra mentése"
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "Exportálás fájlba..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8739,21 +8738,21 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
#, fuzzy
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr "Ãgy tűnik, %s adatbázis nem létezik. Akar létrehozni egyet ?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "%s fájl már létezik. Biztos, hogy felül akarja Ãrni?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<ismeretlen>"
@@ -9297,7 +9296,7 @@ msgid ""
">Properties->Accounts."
msgstr ""
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
#, fuzzy
diff --git a/po/id.po b/po/id.po
index 6a457b9fa..2f6121505 100644
--- a/po/id.po
+++ b/po/id.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: GnuCash 4.1\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2021-01-14 13:32+0000\n"
"Last-Translator: Ferdinand Tampubolon <dnandz at gmail.com>\n"
"Language-Team: Indonesian <https://hosted.weblate.org/projects/gnucash/"
@@ -1338,7 +1338,7 @@ msgstr "Hapus komoditas?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2609,7 +2609,7 @@ msgstr "Cari Pekerjaan"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Buka"
@@ -3432,7 +3432,7 @@ msgid "Open an existing GnuCash file"
msgstr "Buka berkas GnuCash yang sudah ada"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6055,7 +6055,7 @@ msgid "You cannot save to that file."
msgstr "Anda tidak dapat menyimpan ke berkas itu."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7343,7 +7343,7 @@ msgid "There was an error parsing the file."
msgstr "Galat saat mengurai berkas."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "Menulis berkas..."
@@ -8188,7 +8188,7 @@ msgid "Import"
msgstr "Impor"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Simpan"
@@ -8382,8 +8382,7 @@ msgstr "Tak ada hak akses untuk membaca dari berkas %s."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8400,7 +8399,7 @@ msgstr ""
"\n"
"Silakan mencoba lagi di direktori lain."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8408,7 +8407,7 @@ msgstr ""
"Basis data ini dari versi GnuCash yang lebih lama. Pilih OK untuk "
"memutakhirkannya ke versi saat ini, Batal untuk menandainya hanya-baca."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8419,7 +8418,7 @@ msgstr ""
"hanya-baca hingga Anda melakukan Berkas->Simpan Sebagai, tetapi data mungkin "
"hilang saat menulis ke versi yang lebih lama."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8430,7 +8429,7 @@ msgstr ""
"pengguna lain, lihat dokumentasi untuk mempelajari cara membersihkan sesi "
"log masuk yang teruntai."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8445,7 +8444,7 @@ msgstr ""
"dari \"libdbi\". Lihat https://bugs.gnucash.org/show_bug.cgi?id=611936 untuk "
"informasi lebih lanjut."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8457,7 +8456,7 @@ msgstr ""
"hak akses pada basis data SQL Anda. Lihat https://bugs.gnucash.org/show_bug."
"cgi?id=645216 untuk informasi lebih lanjut."
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8469,16 +8468,16 @@ msgstr ""
"dengan versi GnuCash yang lebih lama (akan ada laporan \"galat saat mengurai "
"berkas\"). Jika Anad ingin mempertahankan versi lama, keluar tanpa menyimpan."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "Terjadi galat I/O yang tak diketahui (%d)."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "Simpan perubahan pada berkas?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8489,16 +8488,16 @@ msgstr[0] ""
msgstr[1] ""
"Jika Anda tidak menyimpan, perubahan pada %d menit terakhir akan diabaikan."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "Lanjutkan _Tanpa Menyimpan"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash tak bisa mendapatkan kunci untuk %s."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8506,7 +8505,7 @@ msgstr ""
"Basis data tersebut mungkin sedang digunakan oleh pengguna lain, dengan "
"demikian Anda tidak bisa membuka basis data. Apa yang ingin Anda lakukan?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
msgid ""
"That database may be on a read-only file system, you may not have write "
"permission for the directory, or your anti-virus software is preventing this "
@@ -8518,40 +8517,40 @@ msgstr ""
"mencegah aksi ini. Jika Anda melanjutkan, Anda mungkin tidak bisa menyimpan "
"perubahan. Apa yang ingin Anda lakukan?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "Buka _Hanya-Baca"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
msgid "Create _New File"
msgstr "_Buat Berkas Baru"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "Tetap Buk_a"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
msgid "Open _Folder"
msgstr "Buka_folder"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_Keluar"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "Memuat data pengguna..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "Menyimpan ulang data pengguna..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "Mengekspor berkas..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8562,7 +8561,7 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
@@ -8570,7 +8569,7 @@ msgstr ""
"Basis data dibuka hanya-baca. Apakah Anda ingin menyimpannya di tempat yang "
"lain?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
@@ -8579,7 +8578,7 @@ msgstr ""
"Mengembalikan akan membuang semua perubahan %s yang belum disimpan. Apakah "
"Anda yakin ingin melanjutkan?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<tak diketahui>"
@@ -9123,7 +9122,7 @@ msgstr ""
"\"Ambang Batas Hanya-Baca\" yang disetel untuk buku ini. Pengaturan ini "
"dapat diubah di Berkas->Properti->Akun."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/it.po b/po/it.po
index f38a0f620..61a1a978d 100644
--- a/po/it.po
+++ b/po/it.po
@@ -54,7 +54,7 @@ msgstr ""
"Project-Id-Version: Gnucash 4.3\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2020-12-29 15:29+0000\n"
"Last-Translator: Giuseppe Foti <foti.giuseppe at gmail.com>\n"
"Language-Team: Italian <https://hosted.weblate.org/projects/gnucash/gnucash/"
@@ -1392,7 +1392,7 @@ msgstr "Eliminare la commodity?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2671,7 +2671,7 @@ msgstr "Trova lavoro"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Aperto"
@@ -3501,7 +3501,7 @@ msgid "Open an existing GnuCash file"
msgstr "Apre un file esistente di GnuCash"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6193,7 +6193,7 @@ msgid "You cannot save to that file."
msgstr "Non è possibile salvare in quel file."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7500,7 +7500,7 @@ msgid "There was an error parsing the file."
msgstr "Si è verificato un errore durante l'analisi del file."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "Scrittura in corso..."
@@ -8373,7 +8373,7 @@ msgid "Import"
msgstr "Importa"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Salva"
@@ -8574,8 +8574,7 @@ msgstr "Mancano i permessi di lettura per il file «%s»."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8592,7 +8591,7 @@ msgstr ""
"\n"
"Riprovare con una cartella differente."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8601,7 +8600,7 @@ msgstr ""
"«OK» per aggiornarlo alla versione corrente, «Annulla» per renderlo "
"accessibile solo in lettura."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8613,7 +8612,7 @@ msgstr ""
"verrà selezionato «File->Salva come» ma può verificarsi una perdita di dati "
"durante il salvataggio nella vecchia versione."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8624,7 +8623,7 @@ msgstr ""
"consulta la documentazione per vedere come cancellare le sessioni di login "
"in sospeso."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8639,7 +8638,7 @@ msgstr ""
"installando una versione diversa di «libdbi». Consultare https://bugzilla."
"gnome.org/show_bug.cgi?id=611936 per maggiori informazioni."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8651,7 +8650,7 @@ msgstr ""
"del proprio database SQL. Consultare https://bugs.gnucash.org/show_bug.cgi?"
"id=645216 per maggiori informazioni."
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8664,16 +8663,16 @@ msgstr ""
"errore del tipo «errore nell'analisi del file»). Per continuare ad "
"utilizzare il file con la vecchia versione di GnuCash, uscire senza salvare."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "Si è verificato un errore sconosciuto di I/O (%d)."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "Salvare le modifiche al file?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8685,16 +8684,16 @@ msgstr[1] ""
"Se non si salva, le modifiche apportate negli ultimi %d minuti andranno "
"perse."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "Continua _senza salvare"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash non riesce a bloccare il file «%s»."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8702,7 +8701,7 @@ msgstr ""
"Il database potrebbe essere in uso, nel qual caso non dovrebbe essere "
"aperto. Che cosa si desidera fare?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
msgid ""
"That database may be on a read-only file system, you may not have write "
"permission for the directory, or your anti-virus software is preventing this "
@@ -8714,40 +8713,40 @@ msgstr ""
"impedendo questa operazione. Procedendo, si potrebbe non essere in grado di "
"salvare alcuna modifica. Cosa si desidera fare?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "Apri in s_ola lettura"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
msgid "Create _New File"
msgstr "Crea un _nuovo file"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "_Apri comunque"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
msgid "Open _Folder"
msgstr "Apri _cartella"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_Esci"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "Caricamento dei dati utente in corso..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "Nuovo salvataggio dei dati utente in corso..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "Esportazione del file..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8758,7 +8757,7 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
@@ -8766,7 +8765,7 @@ msgstr ""
"Il database è stato aperto in sola lettura. Salvarlo in una posizione "
"diversa?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
@@ -8774,7 +8773,7 @@ msgid ""
msgstr ""
"Il ripristino annullerà tutte le modifiche non salvate in %s. Vuoi procedere?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<sconosciuto>"
@@ -9346,7 +9345,7 @@ msgstr ""
"sola lettura» impostato per questo conto. L'impostazione può essere "
"modificata dal menu «File->Proprietà ->Conti»."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/ja.po b/po/ja.po
index dad8e315f..518d110b6 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -21,7 +21,7 @@ msgstr ""
"Project-Id-Version: gnucash 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2021-01-16 09:32+0000\n"
"Last-Translator: YOSHINO Yoshihito <yy.y.ja.jp at gmail.com>\n"
"Language-Team: Japanese <https://hosted.weblate.org/projects/gnucash/gnucash/"
@@ -1323,7 +1323,7 @@ msgstr "ååãåé¤ãã¾ãã?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2584,7 +2584,7 @@ msgstr "è«æ±ã®ã¾ã¨ããæ¤ç´¢"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "éã"
@@ -3383,7 +3383,7 @@ msgid "Open an existing GnuCash file"
msgstr "æ¢åã® GnuCash ãã¡ã¤ã«ãéãã¾ãã"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -5977,7 +5977,7 @@ msgid "You cannot save to that file."
msgstr "ãã®ãã¡ã¤ã«ã«ã¯ä¿åã§ãã¾ãã"
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7235,7 +7235,7 @@ msgid "There was an error parsing the file."
msgstr "ãã¡ã¤ã«è§£æä¸ã«ã¨ã©ã¼ãããã¾ããã"
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "ãã¡ã¤ã«æ¸è¾¼ã¿ä¸..."
@@ -8063,7 +8063,7 @@ msgid "Import"
msgstr "ã¤ã³ãã¼ã"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "ä¿å"
@@ -8257,8 +8257,7 @@ msgstr "ãã¡ã¤ã« %s ã®èªåºã権éãããã¾ããã"
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8269,7 +8268,7 @@ msgid ""
"Please try again in a different directory."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8278,7 +8277,7 @@ msgstr ""
"ã¹ãç¾å¨ã®ãã¼ã¸ã§ã³ç¨ã«æ´æ°ãã¾ãããã£ã³ã»ã«ã鏿ããã¨èªã¿åãå°ç¨ã«ãã¾"
"ãã"
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8289,7 +8288,7 @@ msgstr ""
"å°ç¨ã«ãªãã¾ãããããããã®å¤ããã¼ã¸ã§ã³ã«ä¿åãã¦ããã¼ã¿ã失ãããããã"
"ãã¾ããã"
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8299,7 +8298,7 @@ msgstr ""
"è¡ã§ãã¾ãããããç¾å¨ä»ã«ã¦ã¼ã¶ãããªãã¨ããã°ãéªéãªãã°ã¤ã³ã»ãã·ã§ã³ã®"
"æ¶å»æ¹æ³ã«ã¤ãã¦ããã¥ã¡ã³ãã調ã¹ã¦ãã ããã"
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8313,7 +8312,7 @@ msgstr ""
"ããã¯å¥ã®ãã¼ã¸ã§ã³ã® \"libdbi\" ãã¤ã³ã¹ãã¼ã«ããã°ä¿®æ£ã§ãã¾ãã詳細㯠"
"https://bugs.gnucash.org/show_bug.cgi?id=611936 ãã覧ãã ããã"
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8325,7 +8324,7 @@ msgstr ""
"ããã¦ããªãããããããã¾ããã詳細㯠https://bugs.gnucash.org/show_bug.cgi?"
"id=645216 ãã覧ãã ããã"
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8337,16 +8336,16 @@ msgstr ""
"ããªããªãã¾ã (\"ãã¡ã¤ã«è§£æä¸ã«ã¨ã©ã¼ãããã¾ãã\" ã¨è¡¨ç¤ºããã¾ã)ãå¤ã"
"ãã¼ã¸ã§ã³ãç¶æãããå ´åã¯ãä¿åããã«çµäºãã¦ãã ããã"
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "æªç¥ã® I/O ã¨ã©ã¼ (%d) ãçºçãã¾ããã"
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "ãã¡ã¤ã«ã¸ã®å¤æ´ãä¿åãã¾ãã?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8354,16 +8353,16 @@ msgid_plural ""
"If you don't save, changes from the past %d minutes will be discarded."
msgstr[0] "ä¿åããªãå ´åãããã¾ã§ã® %d åéã®å¤æ´ã失ããã¾ãã"
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "ä¿åããã«ç¶ãã(_W)"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash 㯠%s ãããã¯ãããã¨ãã§ãã¾ããã§ããã"
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8371,7 +8370,7 @@ msgstr ""
"ãã®ãã¼ã¿ãã¼ã¹ã¯å¥ã®ã¦ã¼ã¶ã«ä½¿ç¨ããã¦ããå¯è½æ§ãããããã®å ´åã¯ããã¼ã¿"
"ãã¼ã¹ãéãã¹ãã§ã¯ããã¾ãããã©ããã¾ãã?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
msgid ""
"That database may be on a read-only file system, you may not have write "
"permission for the directory, or your anti-virus software is preventing this "
@@ -8383,40 +8382,40 @@ msgstr ""
"è½æ§ãããã¾ãããã®ã¾ã¾ç¶ããã¨å¤æ´ãä¿åã§ããªãããããã¾ãããã©ããã¾ã"
"ã?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "èªã¿åãå°ç¨ã§éã(_R)"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
msgid "Create _New File"
msgstr "ãã¡ã¤ã«ãæ°è¦ä½æãã(_N)"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "æ§ããã«éã(_A)"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
msgid "Open _Folder"
msgstr "ãã©ã«ãã¼ãéã(_F)"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "çµäº(_Q)"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "ã¦ã¼ã¶ã¼ãã¼ã¿ããã¼ãä¸..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "ã¦ã¼ã¶ã¼ãã¼ã¿ãåä¿åä¸..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "ãã¡ã¤ã«ã®ã¨ã¯ã¹ãã¼ãä¸..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8427,13 +8426,13 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr "ãã¼ã¿ãã¼ã¹ã¯èªã¿åãå°ç¨ã§éããã¾ãããå¥ã®å ´æã«ä¿åãã¾ãã?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
@@ -8442,7 +8441,7 @@ msgstr ""
"å
ã«æ»ãã¨ã%s ã«å¯¾ãããã¹ã¦ã®æªä¿åã®å¤æ´ã¯ç ´æ£ããã¾ããæ¬å½ã«å®è¡ãã¾ã"
"ã?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<æªç¥>"
@@ -8980,7 +8979,7 @@ msgstr ""
"ãå¤ãå¤ã«ãªã£ã¦ãã¾ãããã®è¨å®ã¯ ãã¡ã¤ã«->ããããã£ã¼->åå®ç§ç® ã§å¤æ´ã§"
"ãã¾ãã"
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/kn.po b/po/kn.po
index 95d3a484c..62a8a6451 100644
--- a/po/kn.po
+++ b/po/kn.po
@@ -7,7 +7,7 @@ msgstr ""
"Project-Id-Version: GnuCash 2.6.3\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2014-06-02 10:43+0530\n"
"Last-Translator: Ritu Panwar <ritup at cdac.in> \n"
"Language-Team: NONE\n"
@@ -1333,7 +1333,7 @@ msgstr "ಸರà²à²¨à³à²¨à³ (à²à²®à³à²¡à²¿à²à²¿) à²
ಳಿಸಬà³à²à³?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2618,7 +2618,7 @@ msgstr "à²à³à²²à²¸à²µà²¨à³à²¨à³ ಹà³à²¡à³à²à³ "
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "ತà³à²°à³"
@@ -3432,7 +3432,7 @@ msgid "Open an existing GnuCash file"
msgstr "à²
ಸà³à²¤à²¿à²¤à³à²µà²¦à²²à³à²²à²¿à²°à³à²µ à²à³à²¨à³à²à³à²¯à²¾à²¶à³â à²à²¡à²¤à²µà²¨à³à²¨à³ ತà³à²°à³à²¯à²¿à²°à²¿"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6150,7 +6150,7 @@ msgid "You cannot save to that file."
msgstr "ನà³à²µà³ ಠà²à²¡à²¤à²µà²¨à³à²¨à³ à²à²³à²¿à²¸à²²à³ ಸಾಧà³à²¯à²µà²¿à²²à³à²²."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7446,7 +7446,7 @@ msgid "There was an error parsing the file."
msgstr "à²à²¡à²¤à²µà²¨à³à²¨à³ ಪಾರà³à²¸à³ ಮಾಡà³à²µà²¾à² ದà³à²· à²à²¦à³à²°à²¾à²à²¿à²¦à³."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "à²à²¡à²¤à²µà²¨à³à²¨à³ ಬರà³à²¯à²²à²¾à²à³à²¤à³à²¤à²¿à²¦à³..."
@@ -8296,7 +8296,7 @@ msgid "Import"
msgstr "à²à²®à²¦à³ ಮಾಡಿ"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "à²à²³à²¿à²¸à²¿"
@@ -8491,8 +8491,7 @@ msgstr "%s à²à²¡à²¤à²¦à²¿à²à²¦ à²à²¦à²²à³ ಯಾವà³à²¦à³ à²à²¦à³ à²
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8509,7 +8508,7 @@ msgstr ""
"\n"
"ದಯವಿà²à³à²à³ ಬà³à²°à³à²à²¦à³ à²à³à²¶à²µà²¨à³à²¨à³ ಪà³à²°à²¯à²¤à³à²¨à²¿à²¸à²¿."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8517,7 +8516,7 @@ msgstr ""
"ಠಡà³à²à²¬à³à²¸à³ à²à³à²¨à³à²à³à²¯à²¾à²¶à³âನ à²à²à²¦à³ ಹಳà³à²¯ à²à²µà³à²¤à³à²¤à²¿à²à³ ಸà²à²¬à²à²§à²ªà²à³à²à²¿à²¦à³. ಪà³à²°à²¸à²à³à²¤ à²à²µà³à²¤à³à²¤à²¿à²à³ ನವà³à²à²°à²¿à²¸à²²à³ "
"ಸರಿ à²
ನà³à²¨à³, à²à²¦à²²à³ ಮಾತà³à²° à²à²à²¦à³ à²à³à²°à³à²¤à³ ಹಾà²à²²à³ ರದà³à²¦à³à²à³à²³à²¿à²¸à²¿ à²
ನà³à²¨à³ à²à²¯à³à²à³ ಮಾಡಿ."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8528,7 +8527,7 @@ msgstr ""
"ಮಾತà³à²° à²à²à²¦à³ à²à³à²°à³à²¤à³ ಹಾà²à²¿à²°à²²à²¾à²à²¿à²°à³à²¤à³à²¤à²¦à³, à²à²¦à²°à³ ಹಳà³à²¯ à²à²µà³à²¤à³à²¤à²¿à²à³ ಬರà³à²¯à³à²µà²¾à² ದತà³à²¤à²¾à²à²¶à²µà³ "
"à²à²²à³à²²à²µà²¾à²à²¬à²¹à³à²¦à³."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8539,7 +8538,7 @@ msgstr ""
"ಸà³à²¥à²¿à²¤à²¿à²¯à²²à³à²²à²¿à²¨ à²
ಧಿವà³à²¶à²¨à²à²³à²¨à³à²¨à³ ಹà³à²à³ ತà³à²à³à²¦à³à²¹à²¾à²à²¬à³à²à³ à²à²¨à³à²¨à³à²µà³à²¦à²¨à³à²¨à³ ತಿಳಿದà³à²à³à²³à³à²³à²²à³ "
"ಡಾà²à³à²¯à³à²®à³à²à²à³à²¶à²¨à³ à²
ನà³à²¨à³ ನà³à²¡à²¿."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -8554,7 +8553,7 @@ msgstr ""
"ಸಾಧà³à²¯à²µà²¿à²°à³à²µà³à²¦à²¿à²²à³à²². ಹà³à²à³à²à²¿à²¨ ಮಾಹಿತಿà²à²¾à²à²¿ https://bugs.gnucash.org/show_bug.cgi?"
"id=611936 à²
ನà³à²¨à³ ನà³à²¡à²¿."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8566,7 +8565,7 @@ msgstr ""
"à²à²¾à²°à²£à²µà²¾à²à²¿à²°à²¬à²¹à³à²¦à³. ಹà³à²à³à²à²¿à²¨ ಮಾಹಿತಿà²à²¾à²à²¿ ದಯವಿà²à³à²à³ https://bugs.gnucash.org/show_bug."
"cgi?id=645216 à²
ನà³à²¨à³ ನà³à²¡à²¿."
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8578,16 +8577,16 @@ msgstr ""
"ಸಾಧà³à²¯à²µà²¿à²°à³à²µà³à²¦à²¿à²²à³à²² (\"à²à²¡à²¤à²µà²¨à³à²¨à³ ಪಾರà³à²¸à³ ಮಾಡà³à²µà²²à³à²²à²¿ ದà³à²·\" à²à²à²¦à³ ವರದಿ ಮಾಡಲಾà²à³à²¤à³à²¤à²¦à³). ನà³à²µà³ "
"ಹಳà³à²¯ à²à²µà³à²¤à³à²¤à²¿à²¯à²¨à³à²¨à³ à²à²°à²¿à²¸à²¿à²à³à²³à³à²³à²²à³ ಬಯಸಿದಲà³à²²à²¿, à²à²³à²¿à²¸à²¦à³ ಮà³à²à³à²à²¿."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "à²à²à²¦à³ à²à³à²¤à³à²¤à²¿à²°à²¦ à²/ಠದà³à²· (%d) ಸà²à²à²µà²¿à²¸à²¿à²¦à³."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "ಬದಲಾವಣà³à²à²³à²¨à³à²¨à³ à²à²¡à²¤à²à³à²à³ à²à²³à²¿à²¸à²¬à³à²à³?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8598,16 +8597,16 @@ msgstr[0] ""
msgstr[1] ""
"ನà³à²µà³ à²à²³à²¿à²¸à²¦à³ à²à²¦à³à²¦à²°à³, à²à²³à³à²¦ %d ನಿಮಿಷà²à²³à²²à³à²²à²¿ ಮಾಡಲಾದ ಬದಲಾವಣà³à²à²³à³ à²à²²à³à²²à²µà²¾à²à³à²¤à³à²¤à²µà³."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "à²à²³à²¿à²¸à²¦à³ ಮà³à²à²¦à³à²µà²°à³ (_W)"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "%s à²à²¾à²à²¿à²¨ ಬà³à²à²®à³à²¦à³à²°à³à²¯à²¨à³à²¨à³ ಪಡà³à²¯à²²à³ à²à³à²¨à³à²à³à²¯à²¾à²¶à³âà²à³ ಸಾಧà³à²¯à²µà²¾à²à²¿à²²à³à²²."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8615,7 +8614,7 @@ msgstr ""
"ಠಡà³à²à²¬à³à²¸à³ ಬà³à²°à³à²¬à³à²¬ ಬಳà²à³à²¦à²¾à²°à²¨à²¿à²à²¦ ಬಳಸಲà³à²ªà²¡à³à²¤à³à²¤à²¿à²°à²¬à²¹à³à²¦à³, à²
à²à²¤à²¹ ಸà²à²¦à²°à³à²à²à²³à²²à³à²²à²¿ ನà³à²µà³ ಡà³à²à²¬à³à²¸à²¨à³à²¨à³ "
"ತà³à²°à³à²¯à³à²µà²à²¤à²¿à²²à³à²². ನà³à²µà³ à²à²¨à²¨à³à²¨à³ ಮಾಡಲೠಬಯಸà³à²µà²¿à²°à²¿?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8627,44 +8626,44 @@ msgstr ""
"ಬರà³à²¯à³à²µ à²
ನà³à²®à²¤à²¿ à²à²²à³à²²à²¦à³ à²à²°à²¬à²¹à³à²¦à³. ನà³à²µà³ ಮà³à²à²¦à³à²µà²°à³à²¦à²²à³à²²à²¿, ಯಾವà³à²¦à³ ಬದಲಾವಣà³à²à²³à²¨à³à²¨à³ ನà³à²µà³ "
"à²à²³à²¿à²¸à²²à³ ಸಾಧà³à²¯à²µà²¿à²°à³à²µà³à²¦à²¿à²²à³à²². ನà³à²µà³ à²à²¨à²¨à³à²¨à³ ಮಾಡಲೠಬಯಸà³à²µà²¿à²°à²¿?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "à²à²¦à²²à³-ಮಾತà³à²° ತà³à²°à³ (_R)"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "ಹà³à²¸ à²à²¡à²¤à²µà²¨à³à²¨à³ ರà²à²¿à²¸à²¿ (_C)"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "à²à²¦à²°à³ ಸಹ ತà³à²°à³ (_A)"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "ಪà³à²²à³à²¸à³âಹà³à²²à³à²¡à²°à³â"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "ನಿರà³à²à²®à²¿à²¸à³ (_Q)"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "ಬಳà²à³à²¦à²¾à²° ಮಾಹಿತಿಯನà³à²¨à³ ತà³à²à²¬à²¿à²¸à²²à²¾à²à³à²¤à³à²¤à²¿à²¦à³..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "ದತà³à²¤à²µà²¨à³à²¨à³ ಮರಳಿ à²à²³à²¿à²¸à²²à²¾à²à³à²¤à³à²¤à²¿à²¦à³..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "à²à²¡à²¤à²µà²¨à³à²¨à³ ರಫà³à²¤à³ ಮಾಡಲಾà²à³à²¤à³à²¤à²¿à²¦à³..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8675,7 +8674,7 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
@@ -8683,14 +8682,14 @@ msgstr ""
"ಠದತà³à²¤à²¸à²à²à²¯à²µà²¨à³à²¨à³ à²à²¦à²²à³-ಮಾತà³à²°à²µà²¾à²à²¿ ತà³à²°à³à²¯à²²à²¾à²à²¿à²¦à³. ನà³à²µà³ à²à²¦à²¨à³à²¨à³ ಬà³à²°à³à²à²¦à³ ಸà³à²¥à²³à²à³à²à³ à²à²³à²¿à²¸à³ "
"ಬಯಸà³à²µà²¿à²°à²¾?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "%s à²à²à²¬ à²à²¡à²¤à²µà³ à²à²à²¾à²à²²à³ à²
ಸà³à²¤à²¿à²¤à³à²µà²¦à²²à³à²²à²¿à²¦à³. ನà³à²µà³ ನಿà²à²µà²¾à²à²²à³ ತಿದà³à²¦à²¿à²¬à²°à³à²¯à²²à³ ಬಯಸà³à²¤à³à²¤à³à²°à³?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<à²
à²à³à²à²¾à²¤>"
@@ -9244,7 +9243,7 @@ msgstr ""
"ನà²à²²à³ ಮಾಡಿದ ವà³à²¯à²µà²¹à²¾à²°à²¦ ನಮà³à²¦à²¿à²¸à²²à²¾à²¦ ದಿನಾà²à²à²µà³ ಠಪà³à²¸à³à²¤à²à²à³à²à²¾à²à²¿ ಹà³à²à²¦à²¿à²¸à²²à²¾à²¦ \"à²à²¦à²²à³-ಮಾತà³à²°à²¦ "
"ಮಿತಿ\"à²à²¿à²à²¤ ಹಳà³à²¯à²¦à²¾à²à²¿à²¦à³. ಠಸಿದà³à²§à²¤à³à²¯à²¨à³à²¨à³ à²à²¡à²¤->à²à³à²£à²à²³à³->à²à²¾à²¤à³à²à²³à²²à³à²²à²¿ ಬದಲಾಯಿಸಬಹà³à²¦à³."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/ko.po b/po/ko.po
index 4122955cc..8f25ff88b 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: GnuCash 2.3.2\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2009-07-15 11:40+0900\n"
"Last-Translator: Jin-Hwan Jeong <yongdoria at gmail.com>\n"
"Language-Team: \n"
@@ -1219,7 +1219,7 @@ msgstr "ìíì ìì í ê¹ì?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2509,7 +2509,7 @@ msgstr "ìì
찾기"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "ì´ê¸°"
@@ -3307,7 +3307,7 @@ msgid "Open an existing GnuCash file"
msgstr "기존 GnuCash íì¼ ì´ê¸°"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6048,7 +6048,7 @@ msgid "You cannot save to that file."
msgstr "ê·¸ íì¼ë¡ ì ì¥í ì ììµëë¤."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7298,7 +7298,7 @@ msgid "There was an error parsing the file."
msgstr "íì¼ ë¶ì ì¤ ì¤ë¥ì
ëë¤."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "íì¼ ì°ë ì¤..."
@@ -8126,7 +8126,7 @@ msgid "Import"
msgstr "ì½ì´ì¤ê¸°"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "ì ì¥"
@@ -8296,8 +8296,7 @@ msgstr "íì¼ %s를 ì½ì ì ìë ê¶íì ì½ì ì ììµëë¤."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8308,27 +8307,27 @@ msgid ""
"Please try again in a different directory."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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 ""
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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 ""
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 ""
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8337,7 +8336,7 @@ msgid ""
"gnucash.org/show_bug.cgi?id=611936 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8345,7 +8344,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8353,16 +8352,16 @@ msgid ""
"you wish to preserve the old version, exit without saving."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "ìë ¤ì§ì§ ìì I?O ì¤ë¥ (%d) ë°ìí¨."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "ë³ê²½ë´ì©ì íì¼ì ì ì¥í ê¹ì?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, fuzzy, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8371,22 +8370,22 @@ msgid_plural ""
msgstr[0] "ì ì¥íì§ ìì¼ë©´ ì´ì %d ë¶ ëì ìì
í ë´ì©ì 무ìë©ëë¤."
msgstr[1] "ì ì¥íì§ ìì¼ë©´ ì´ì %d ë¶ ëì ìì
í ë´ì©ì 무ìë©ëë¤."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "ì ì¥íì§ ìê³ ê³ìí기(_W)"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GunCashê° %s ì ê¸íì¼ì ì»ì ì ììµëë¤."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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 ""
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
msgid ""
"That database may be on a read-only file system, you may not have write "
"permission for the directory, or your anti-virus software is preventing this "
@@ -8394,46 +8393,46 @@ msgid ""
"you like to do?"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "ì íì¼ ìì±(_C)"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
#, fuzzy
msgid "Open _Anyway"
msgstr "ì´ì§¸ë¬ ì´ê¸°(_O)"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
msgid "Open _Folder"
msgstr "ì리íìì"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "ì¢
ë£(_Q)"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
#, fuzzy
msgid "Loading user data..."
msgstr "ìë£ ì½ì´ì¤ë ì¤..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
#, fuzzy
msgid "Re-saving user data..."
msgstr "ìë£ ì½ì´ì¤ë ì¤..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "íì¼ ë´ë³´ë´ë ì¤..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8444,20 +8443,20 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<ì ì ìì>"
@@ -9007,7 +9006,7 @@ msgid ""
">Properties->Accounts."
msgstr ""
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
#, fuzzy
diff --git a/po/kok.po b/po/kok.po
index 630f57e9a..86c638ce0 100644
--- a/po/kok.po
+++ b/po/kok.po
@@ -7,7 +7,7 @@ msgstr ""
"Project-Id-Version: GnuCash 2.6.3\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2014-09-26 19:47-0500\n"
"Last-Translator: Rahul Borade <rahulborade01 at gmail.com>\n"
"Language-Team: NONE\n"
@@ -1309,7 +1309,7 @@ msgstr "वसà¥à¤¤ à¤à¤¾à¤¡à¥à¤¨ à¤à¤¡à¥à¤µà¤ªà¤¾à¤à¥?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2591,7 +2591,7 @@ msgstr "à¤à¤¾à¤® सà¥à¤¦à¤¾à¤¤"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "à¤à¤à¤¡à¤¾à¤¤"
@@ -3386,7 +3386,7 @@ msgid "Open an existing GnuCash file"
msgstr "सदà¥à¤¯à¤¾à¤à¥ GnuCash फायल à¤à¤à¤¡à¤¾à¤¤"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6074,7 +6074,7 @@ msgid "You cannot save to that file."
msgstr "तà¥à¤¯à¤¾ फायलà¥à¤¨ à¤à¤¤à¤¨à¤¾à¤¯ à¤à¤°à¤ªà¤¾à¤ शà¤à¤¨à¤¾."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7345,7 +7345,7 @@ msgid "There was an error parsing the file."
msgstr "फायल पारà¥à¤¸ à¤à¤°à¤¤à¤¨à¤¾ à¤à¤°à¤°."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "फायल बरयता..."
@@ -8183,7 +8183,7 @@ msgid "Import"
msgstr "à¤à¤¯à¤¾à¤¤"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "à¤à¤¤à¤¨à¤¾à¤¯ à¤à¤°à¤¾à¤¤"
@@ -8367,8 +8367,7 @@ msgstr " %s फायलà¥à¤¤à¤²à¥à¤¯à¤¾à¤¨ वाà¤à¤ªà¤¾à¤à¥ परवा
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8385,7 +8384,7 @@ msgstr ""
"\n"
"वà¥à¤à¤³à¥à¤¯à¤¾ निदà¥à¤¶à¤¿à¤à¥à¤à¤¤ परतà¥à¤¨ यतà¥à¤¨ à¤à¤°à¤¾à¤¤."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8393,7 +8392,7 @@ msgstr ""
"हॠडà¥à¤à¤¾à¤¬à¥à¤¸ GnuCash à¤à¥à¤¯à¤¾ पà¥à¤¨à¥à¤¨à¥à¤¯à¤¾ à¤à¤µà¥à¤¤à¥à¤¤à¥à¤¤à¤²à¥à¤¯à¤¾à¤¨ à¤à¤¸à¤¾. तॠसदà¥à¤¯à¤¾à¤à¥à¤¯à¤¾ à¤à¤µà¥à¤¤à¥à¤¤à¥à¤¨ सà¥à¤¦à¤¾à¤°à¤ªà¤¾à¤ OK à¤à¥à¤²à¥à¤ "
"à¤à¤°à¤¾à¤¤. तॠफà¤à¤¤ वाà¤à¤ªà¤¾à¤à¥ à¤à¥à¤£ à¤à¤°à¤ªà¤¾à¤ रदà¥à¤¦ à¤à¤°à¤¾à¤¤."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8403,7 +8402,7 @@ msgstr ""
"पणान तातà¥à¤¨ à¤à¤¤à¤¨à¤¾à¤¯ à¤à¤°à¤ªà¤¾à¤ शà¤à¤¨à¤¾. तà¥à¤®à¥ फायल->मà¥à¤¹à¤£ à¤à¤¤à¤¨à¤¾à¤¯ à¤à¤°à¤¾à¤¤ à¤à¤°à¤¤à¤¾à¤®à¥à¤°à¥à¤¨ तॠफà¤à¤¤-"
"वाà¤à¤ªà¤¾à¤à¤¾à¤¤à¥à¤° मà¥à¤¹à¤£ à¤à¥à¤£ à¤à¥à¤²à¥ वतलà¥,पà¥à¤£ पà¥à¤¨à¥à¤¨à¥à¤¯à¤¾ à¤à¤µà¥à¤¤à¥à¤¤à¥à¤¨ बरयतना डà¥à¤à¤¾ शà¥à¤£à¤ªà¤¾à¤à¥ शà¤à¥à¤¯à¤¤à¤¾ à¤à¤¸à¤¾."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8413,7 +8412,7 @@ msgstr ""
"सदà¥à¤¯à¤¾ à¤à¤° हà¥à¤° वापरपॠना, à¤à¤¾à¤²à¥à¤¯à¤¾à¤° à¤à¥à¤à¤®à¤³à¤ªà¥ लà¥à¤à¥à¤¨ सतà¥à¤°à¤¾à¤ साफ à¤à¤°à¤ªà¤¾à¤ शिà¤à¤ªà¤¾à¤ दसà¥à¤¤à¤¾à¤µà¥à¤à¥à¤à¤°à¤£à¤¾à¤ "
"सà¤à¤ªà¤°à¥à¤ à¤à¤°à¤¾à¤¤."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -8427,7 +8426,7 @@ msgstr ""
"पà¥à¤°à¤¤à¤¿à¤·à¥à¤ ापित à¤à¤°à¤¤à¤¾à¤®à¥à¤°à¥à¤¨ Gnucash SQL डà¥à¤à¤¾à¤¬à¥à¤¸à¥ à¤à¤à¤¡à¤à¥ ना वॠतातà¥à¤¨ à¤à¤¤à¤¨à¤¾à¤¯ à¤à¤°à¤à¥ ना. मातà¥à¤¶à¥ "
"à¤
दिठमाहितà¥à¤à¤¾à¤¤à¥à¤° https://bugs.gnucash.org/show_bug.cgi?id=611936 पळयात."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8438,7 +8437,7 @@ msgstr ""
"à¤à¤¾à¤°à¤£ तà¥à¤®à¤à¥à¤¯à¤¾ SQL डà¥à¤à¤¾à¤¬à¥à¤¸à¥à¤à¥à¤¯à¤¾ परवानà¤à¥à¤¯à¤¾à¤à¤à¥ à¤à¥à¤à¥à¤à¥ सà¤à¤°à¤à¤¨à¤¾à¤¯ à¤à¤¾à¤µ शà¤à¤¤à¤¾. मातà¥à¤¶à¥ à¤
दिठ"
"माहितà¥à¤à¤¾à¤¤à¥à¤° https://bugs.gnucash.org/show_bug.cgi?id=645216 पळयात."
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8450,16 +8449,16 @@ msgstr ""
"à¤à¤°à¤¤à¤¨à¤¾ à¤à¤°à¤°\" à¤à¤³à¤¯à¤²à¥ वतलà¥). पà¥à¤¨à¥à¤¨à¥à¤¯à¤¾ à¤à¤µà¥à¤¤à¥à¤¤à¥à¤à¥ à¤à¤¤à¤¨à¤¾à¤¯ à¤à¤°à¤ªà¤¾à¤ à¤à¤¾à¤¯ à¤à¤¾à¤²à¥à¤¯à¤¾à¤°, à¤à¤¤à¤¨à¤¾à¤¯ "
"à¤à¤°à¥à¤¨à¤¾à¤¸à¥à¤¤à¤¨à¤¾ à¤à¤¾à¤¯à¤° सरात."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "à¤
à¤à¥à¤à¤¾à¤¤ I/O à¤à¤°à¤° (%d) à¤à¤¯à¤²à¥."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "फायलà¥à¤à¤¤à¤²à¥ बदल à¤à¤¤à¤¨à¤¾à¤¯ à¤à¤°à¥à¤¯à¤¾?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8468,16 +8467,16 @@ msgid_plural ""
msgstr[0] "तà¥à¤®à¥ à¤à¤¤à¤¨à¤¾à¤¯ à¤à¤°à¥ ना à¤à¤¾à¤²à¥à¤¯à¤¾à¤°, फाà¤à¤²à¥à¤¯à¤¾ %d मिनà¥à¤à¤¾à¤à¤¸à¤¾à¤µà¤¨ à¤à¥à¤²à¥à¤²à¥ बदल à¤à¤¾à¤¡à¥à¤¨ à¤à¤¡à¤¯à¤²à¥ वतलà¥."
msgstr[1] "तà¥à¤®à¥ à¤à¤¤à¤¨à¤¾à¤¯ à¤à¤°à¥ ना à¤à¤¾à¤²à¥à¤¯à¤¾à¤°, फाà¤à¤²à¥à¤¯à¤¾ %d मिनà¥à¤à¤¾à¤à¤¸à¤¾à¤µà¤¨ à¤à¥à¤²à¥à¤²à¥ बदल à¤à¤¾à¤¡à¥à¤¨ à¤à¤¡à¤¯à¤²à¥ वतलà¥."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "à¤à¤¤à¤¨à¤¾à¤¯ à¤à¤°à¥à¤¨à¤¾à¤¸à¥à¤¤à¤¨à¤¾ फà¥à¤¡à¥ वà¤à¤¾à¤¤"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash %s à¤à¤¾à¤¤à¥à¤° à¤à¥à¤²à¥à¤ª मà¥à¤³à¥à¤µà¤ªà¤¾à¤ शà¤à¤¨à¤¾."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8485,7 +8484,7 @@ msgstr ""
"तॠडà¥à¤à¤¾à¤¬à¥à¤¸ हà¥à¤° वापरपॠवापरता à¤à¤¸à¤¤, à¤à¥à¤¯à¤¾ à¤à¥à¤¸à¥à¤¨ तà¥à¤®à¥ डà¥à¤à¤¾à¤¬à¥à¤¸ à¤à¤à¤¡à¤ªà¤¾à¤ à¤à¤¾à¤¯à¤¨à¤¾. तà¥à¤®à¤à¤¾ à¤à¤¿à¤¦à¥ "
"à¤à¤°à¤ªà¤¾à¤à¥ à¤à¤¸à¤¾?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8496,44 +8495,44 @@ msgstr ""
"तॠडà¥à¤à¤¾à¤¬à¥à¤¸ फà¤à¤¤-वाà¤à¤ªà¤¾à¤à¤¾à¤¤à¥à¤° फायल वà¥à¤¯à¤µà¤¸à¥à¤¥à¥à¤° à¤à¤¸à¥ शà¤à¤¤à¤¾, वॠतà¥à¤®à¤à¤¾ निदà¥à¤¶à¤¿à¤à¥à¤à¤¾à¤¤à¥à¤° बरà¥à¤µà¤ªà¤¾à¤à¥ "
"परवानà¤à¥ नासत. तà¥à¤®à¥ फà¥à¤¡à¥ à¤à¥à¤²à¥à¤¯à¤¾à¤° तà¥à¤®à¥ à¤à¤à¤¯à¤à¥à¤ बदल à¤à¤¤à¤¨ à¤à¤°à¤ªà¤¾à¤ शà¤à¤à¥ ना. तà¥à¤®à¤à¤¾ à¤
शॠà¤à¤°à¤ªà¤¾à¤à¥ à¤à¤¸à¤¾?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "फà¤à¤¤-वाà¤à¤ªà¤¾à¤à¤¾à¤¤à¥à¤° à¤à¤à¤¡à¤¾à¤¤"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "नवॠफायल तयार à¤à¤°à¤¾à¤¤"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "à¤à¤¶à¥à¤¯ à¤à¤à¤¡à¤¾à¤¤"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "पà¥à¤²à¥à¤¸ हà¥à¤²à¥à¤¡à¤°"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "à¤à¤¾à¤¯à¤° वà¤à¤¾à¤¤"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "वापरपà¥à¤¯à¤¾à¤²à¥ डà¥à¤à¤¾ लाà¤à¥ à¤à¤°à¤¤à¤¾..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "वापरपॠडà¥à¤à¤¾ परतà¥à¤¨ à¤à¤¤à¤¨à¤¾à¤¯ à¤à¤°à¤¤à¤¾..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "फायल निरà¥à¤¯à¤¾à¤¤ à¤à¤°à¤¤à¤¾..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8544,20 +8543,20 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr "डà¥à¤à¤¾à¤¬à¥à¤¸ फà¤à¤¤-वाà¤à¤ªà¤¾à¤à¤¾à¤¤à¥à¤° à¤à¤à¤¡à¤²à¥à¤¯à¤¾. तà¥à¤®à¥ तà¥à¤à¥ हà¥à¤° à¤à¤¾à¤à¥à¤¯à¤¾à¤° à¤à¤¤à¤¨à¤¾à¤¯ à¤à¤°à¤ªà¤¾à¤à¥ à¤à¤¸à¤¾?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "%s फायल पयलà¥à¤ à¤
सà¥à¤¤à¤¿à¤¤à¥à¤µà¤¾à¤à¤¤ à¤à¤¸à¤¾. तà¥à¤®à¥ तिà¤à¥ वयर बरà¥à¤µà¤ªà¤¾à¤ सà¥à¤¦à¤¤à¤¾?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<à¤
à¤à¥à¤à¤¾à¤¤>"
@@ -9101,7 +9100,7 @@ msgstr ""
"नà¤à¤² à¤à¥à¤²à¥à¤²à¥à¤¯à¤¾ वà¥à¤¯à¤µà¤¹à¤¾à¤°à¤¾à¤à¥ दिलà¥à¤²à¥ तारà¥à¤ हà¥à¤¯à¤¾ पà¥à¤¸à¥à¤¤à¤à¤¾à¤à¤¾à¤¤à¥à¤° थारायलà¥à¤²à¥à¤¯à¤¾ \"फà¤à¤¤-वाà¤à¤ªà¤¾à¤à¤¾à¤¤à¥à¤° "
"थà¥à¤°à¥à¤¶à¥à¤²à¥à¤¡\" परस पà¥à¤¨à¥à¤¨à¥ à¤à¤¸à¤¾. हॠसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ फायल->वà¥à¤¶à¤¿à¤·à¥à¤à¥à¤¯à¤¾->à¤à¤¾à¤¤à¥ न बदलà¥à¤ªà¤¾à¤ यà¥à¤¤à¤¾."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/kok at latin.po b/po/kok at latin.po
index ac7df8631..a08030660 100644
--- a/po/kok at latin.po
+++ b/po/kok at latin.po
@@ -7,7 +7,7 @@ msgstr ""
"Project-Id-Version: GnuCash 2.6.3\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2014-10-19 16:48-0500\n"
"Last-Translator: Ravikumar Ragam <ragamrravi at gmail.com>\n"
"Language-Team: NONE\n"
@@ -1324,7 +1324,7 @@ msgstr "mhal dosonv ?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2611,7 +2611,7 @@ msgstr "Vavr sod"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "ugodd"
@@ -3418,7 +3418,7 @@ msgid "Open an existing GnuCash file"
msgstr "Protiokxant asleli Cash fail ugodd"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6126,7 +6126,7 @@ msgid "You cannot save to that file."
msgstr "Tem tujean te failik samballunk zaina"
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7416,7 +7416,7 @@ msgid "There was an error parsing the file."
msgstr "Failichi foddnixi kortana chuk zali"
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "Fail boroitam"
@@ -8265,7 +8265,7 @@ msgid "Import"
msgstr "aiat"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "samball"
@@ -8457,8 +8457,7 @@ msgstr "%s savnfail vachunk vachpachi porvangi na"
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8475,7 +8474,7 @@ msgstr ""
"\n"
"Vegllea margdorxikent proiotn kor"
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8483,7 +8482,7 @@ msgstr ""
"Ho mhaiti kox GnuCash hachea pornnea avrut'tintlo.Tachi xrenni chalont "
"avrutentvaddovnk OK vench. Fokot vachpa khatir tem rod'd khunnai."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8494,7 +8493,7 @@ msgstr ""
">Oxi samballkori poriant, punn thoddi mhaiti pornnea avrutint ghoddiek "
"borovpant luskonn zavnk xokta"
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8505,7 +8504,7 @@ msgstr ""
"dostavez polle koxe porim humkollttelim login sotram nivllavpak zata tea "
"vixim."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -8520,7 +8519,7 @@ msgstr ""
"veglli avruti \"libdbi\"sthapun. Odik mhaite khatir polle:https://bugzilla."
"gnome.org/show_bug.cgi?id=611936 "
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8532,7 +8531,7 @@ msgstr ""
"chukiche ghoddnnek lagun zalam asot. Odik mhaite khatir polle: https://bugs."
"gnucash.org/show_bug.cgi?id=645216"
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8544,16 +8543,16 @@ msgstr ""
"fail ghoddiek vachunk zavchemna( ti \"failichi foddnixi kortana chuk\" oxem "
"dakhoiteli. Tuka pornni avruti tigovnk zai zalear, samballnastana bhair podd."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "Onvollkhi I/O chuk (%d) ghoddli"
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "Failiche bodol samballum?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8562,16 +8561,16 @@ msgid_plural ""
msgstr[0] "Tum saballna zalear, fattle bodol %d minut kaddun uddovpant ietleo"
msgstr[1] "Tum zogoinai tor, pattlea %d minuttanchio bodlavnnio sanddtelio"
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "Samballnastana mukhar voch "
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash %s haka talem ghevnk ghoddlem na"
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8579,7 +8578,7 @@ msgstr ""
"Mhaitikox ghoddiek dusro vaporpi vaporta astolo, jea babtint tuvem mhaitikox "
"ugddunk upkarna. Tuka kitem korunk zai ?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8591,44 +8590,44 @@ msgstr ""
"porvangi nasot. Tum fuddem gelear tuka ghoddiek b?odol samballunk zavche "
"nant. Tum kitem korunk sodta?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "Fokot vach ugodd"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_Novi fail roch"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "Koxeim ugtem kor"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "zago dhorpi"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "Sodd"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "Vaporpeachi mhaiti load kortam...i"
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "`Vaporpeachi mhaiti porot samballttam..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "Fail niriat kortam..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8639,21 +8638,21 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr ""
"Mhaitekox fokot vachpak ugto kelo. Tuka to dusrea zagear samballunk zai?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "Fail%sadinch protiokxant asa. Tuka khorench ti rod'd korunk zai ?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<onvollkhichem>"
@@ -9205,7 +9204,7 @@ msgstr ""
"ji hea pustokant bosoilea. Hem bosovp bodlum ieta File->Properties->Accounts "
"hantunt."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/ks.po b/po/ks.po
index acc037af2..adad2b3c6 100644
--- a/po/ks.po
+++ b/po/ks.po
@@ -7,7 +7,7 @@ msgstr ""
"Project-Id-Version: GnuCash 2.6.3\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2014-06-24 09:34+0530\n"
"Last-Translator: Neha Aphale <kulkarnineha1208 at gmail.com>\n"
"Language-Team: NONE\n"
@@ -1320,7 +1320,7 @@ msgstr "à¤à¤¾à¤®à¥à¤¡à¥à¤à¥ à¤à¤°à¤µà¤¾à¤¹ डà¥à¤²à¤¿à¤?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2607,7 +2607,7 @@ msgstr "à¤à¤¾à¤¬ à¤à¤¼à¥à¤à¤¡à¥à¤µ"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "à¤à¥à¤²à¥à¤µ"
@@ -3421,7 +3421,7 @@ msgid "Open an existing GnuCash file"
msgstr "à¤
ठमà¥à¤à¥à¤¦ à¤à¤¿ à¤à¤¿à¤¨ यॠà¤à¤¿à¤¶ फायà¥à¤² à¤à¥à¤²à¥à¤µ"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6123,7 +6123,7 @@ msgid "You cannot save to that file."
msgstr "तà¥à¤¹à¤¯à¥ हयà¥à¤à¥à¤µ नॠमà¥à¤¹à¤«à¥à¤à¤¼ à¤à¥à¤°à¥à¤¥ तथ फायलॠà¤à¥à¤¨."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7407,7 +7407,7 @@ msgid "There was an error parsing the file."
msgstr "फायà¥à¤² पारस à¤à¤°à¤¨à¤¸ दà¥à¤°à¤¾à¤¨ à¤à¤µ à¤
ठà¤à¤¿à¤°à¤°."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "फायà¥à¤² लिà¤à¤¾à¤¨â¦"
@@ -8258,7 +8258,7 @@ msgid "Import"
msgstr "à¤à¤®à¤ªà¥à¤"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "मà¥à¤¹à¤«à¥à¤à¤¼ à¤à¥à¤°à¥à¤µ"
@@ -8447,8 +8447,7 @@ msgstr "à¤à¤¾à¤à¤¹ रिड à¤à¤à¤¾à¤à¤¼à¤¤ à¤à¥ नॠ%s फायल
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8465,7 +8464,7 @@ msgstr ""
"\n"
"पिलà¥à¤à¤¼ दà¥à¤¬à¤¾à¤° à¤à¥à¤°à¤¿à¤µ à¤à¥à¤¶à¤¿à¤¶ à¤
लठडारà¥à¤à¤à¤°à¥ मनà¤à¤¼."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8473,7 +8472,7 @@ msgstr ""
"यॠडाà¤à¤¾à¤¬à¤¿à¤¸ à¤à¥ GNUCASH à¤à¥ à¤
à¤à¥ परानॠवà¥à¤°à¤à¤¨ पयà¥à¤ . OK à¤à¤¼à¥à¤°à¥à¤µ यॠà¤
पà¤à¤°à¤¿à¤¡ à¤à¤°à¤¨à¥ बापत "
"मà¥à¤à¥à¤¦ वà¥à¤°à¤à¤¨à¤¸ à¤à¥à¤¨, à¤à¥à¤¨à¤¸à¤² à¤à¥à¤°à¥à¤µ यॠरिड à¤à¤¨à¤²à¥ मारà¥à¤ à¤à¤°à¤¨à¥ बापत."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8483,7 +8482,7 @@ msgstr ""
"à¤
थ मनà¤à¤¼ मà¥à¤¹à¤«à¥à¤à¤¼ à¤à¥à¤°à¤¿à¤¥. यि यियि मारà¥à¤ à¤à¤°à¤¨à¥ बतà¥à¤° रà¥à¤¡-à¤à¤¨à¤²à¥ यà¥à¤¤à¤¤à¤¾à¤® तà¥à¤¹à¤¯à¥ à¤à¥à¤°à¤¿à¤µ "
"फायिल->मà¥à¤¹à¤«à¥à¤à¤¼ à¤à¥à¤°à¤¿à¤µ बतà¥à¤°, मà¤à¤° डाà¤à¤¾ मा रावॠपरà¥à¤¨à¤¿à¤¸ वà¥à¤°à¤à¤¨à¤¸ à¤à¥à¤¨ लà¥à¤à¤¨à¤¸ मनà¤à¤¼."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8493,7 +8492,7 @@ msgstr ""
"नॠतà¥à¤® लाà¤à¤à¤« à¤à¤°à¤¨. à¤
à¤à¤° नॠवà¥à¤¨à¤à¥à¤¨à¤¸ बाà¤à¥à¤¯ यà¥à¤à¤¼à¤° à¤à¥, डाà¤à¥à¤®à¥à¤¨à¤à¤¿à¤¶à¤¨ सà¥à¤¤ à¤à¥à¤°à¥à¤µ रà¥à¤¬à¤¤à¥ "
"यॠहà¥à¤à¤¨à¥ बापत à¤à¥ à¤à¥à¤¥ à¤à¥à¤¨ à¤à¥ à¤à¥à¤²à¤¯à¤° à¤à¤°à¤¾à¤¨ डिà¤à¤à¤²à¥à¤à¤ लाà¤à¤à¤¨ सà¥à¤¶à¤¨."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -8508,7 +8507,7 @@ msgstr ""
"à¤à¤¨à¤¸à¤à¤¾à¤² à¤à¤°à¤¨à¥ सà¥à¤¤ à¤
ठà¤
लठवà¥à¤°à¤à¤¨ \"libdbi\" हà¥à¤.पिलà¥à¤à¤¼ वà¥à¤à¤¿à¤µ https://bugzilla."
"gnome.org/show_bug.cgi?id=611936 for more information."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8520,7 +8519,7 @@ msgstr ""
"सà¥à¤¤.पिलà¥à¤à¤¼ वà¥à¤à¤¿à¤µ https://bugs.gnucash.org/show_bug.cgi?id=645216 मà¤à¤¼à¥à¤¦ "
"à¤à¤¨à¤«à¤¾à¤°à¤®à¥à¤¶à¤¨ बापत."
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8532,16 +8531,16 @@ msgstr ""
"GnuCash à¤à¥ परानॠवà¥à¤°à¤à¤¨ पयà¥à¤ (यि à¤à¤°à¥ रिपà¥à¤ à¤
ठ\"à¤à¤°à¤° à¤à¤µ फायिल पारà¥à¤¸ à¤à¤°à¤¨à¤¸ मनà¤à¤¼"
"\"). à¤
à¤à¤° तà¥à¤¹à¤¯à¥ यà¤à¤¼à¤¾à¤¨ à¤à¥à¤µ परà¥à¤¨ वà¥à¤°à¤à¤¨, नà¥à¤¬à¤° नà¥à¤°à¤¿à¤µ मà¥à¤¹à¤«à¥à¤à¤¼ à¤à¤°à¤¨à¥ बà¤à¥à¤°."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "à¤
ठà¤à¥à¤° मालà¥à¤® I/O à¤à¤¿à¤°à¤° (%d) à¤à¤µ."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "फायलॠà¤à¤°à¤µà¤¾à¤¹ तबदिलॠमà¥à¤¹à¤«à¥à¤à¤¼?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8554,16 +8553,16 @@ msgstr[1] ""
"à¤
à¤à¤° नॠतà¥à¤¹à¤¯à¥ मà¥à¤¹à¤«à¥à¤à¤¼ à¤à¥à¤°à¥à¤µ, पà¥à¤¤à¤®à¥à¤µ %d मà¥à¤¨à¤à¤µ पयà¥à¤ à¤à¤°à¤¨à¥ à¤à¤®à¤à¤¼à¥ तबदिलयॠयà¥à¤¯à¤¨ à¤à¥à¤°à¥à¤ "
"à¤à¤°à¤¨à¥."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "मà¥à¤¹à¤«à¥à¤à¤¼ à¤à¤°à¤¨à¥ बà¤à¥à¤° थà¥à¤¯à¥à¤µ à¤à¥à¤°à¥."
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr " GNUCASHहयà¥à¤ नॠलाठहà¥à¤¸à¥à¤² à¤à¥à¤°à¥à¤¥ लाठ%s à¤
स बापत"
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8571,7 +8570,7 @@ msgstr ""
"सॠडाà¤à¤¾ बिस मा à¤à¤¸à¥ शायद बà¥à¤¯à¥à¤¸ यà¥à¤à¤¼à¤°à¥ सà¥à¤¨à¤¦à¥à¤¸ à¤à¤¸à¤¤à¤¿à¤®à¤¾à¤²à¤¸ मà¤à¤à¤¼, यथ à¤à¤¿à¤¸à¤¸ मà¤à¤à¤¼ नॠतà¥à¤¹à¤¯à¥ "
"डाà¤à¤¾ बिस à¤à¥à¤²à¥à¤¨ पà¤à¤¼à¥. तà¥à¤¹à¤¯à¥ à¤à¤¯à¤¾à¤¹ यà¥à¤à¤¼à¥à¤µ à¤à¤°à¥à¤¨?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8583,44 +8582,44 @@ msgstr ""
"à¤à¤à¤¾à¤à¤¼à¤¤ डारिà¤à¤à¤°à¥ बापत. à¤
à¤à¤° तà¥à¤¹à¤¯à¥ बरà¥à¤à¤¹ पà¥à¤°à¥à¤µ तà¥à¤¹à¤¯à¥ मा हयà¥à¤à¥à¤µ नॠशायद à¤à¤¾à¤à¤¹ तॠतबदिलॠ"
"मà¥à¤¹à¤«à¥à¤à¤¼ à¤à¥à¤°à¥à¤¥. तà¥à¤¹à¤¯à¥ à¤à¤¯à¤¾à¤¹ यà¥à¤à¤¼à¥à¤µ à¤à¤°à¥à¤¨?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "à¤à¤ªà¥à¤¨ à¤à¥à¤°à¤¿à¤µ_रà¥à¤¡-à¤à¤¨à¤²à¥"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "नà¥à¤µ फायà¥à¤² बनà¥à¤¯à¥à¤µ"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "à¤à¤ªà¥à¤¨ à¤à¥à¤°à¤¿à¤µ_ à¤à¥à¤¨à¥ तॠतरà¥à¤"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "पिलà¥à¤¸à¤¹à¥à¤²à¤¡à¤°"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "बà¤à¤¦ à¤à¥à¤°à¥à¤µ"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "यà¥à¤à¤¼à¤° डाà¤à¤¾ लà¥à¤¡ à¤à¤°à¤¾à¤¨â¦"
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "यà¥à¤à¤¼à¤° डाà¤à¤¾ दà¥à¤¬à¤¾à¤° मà¥à¤¹à¤«à¥à¤à¤¼ à¤à¤°à¤¾à¤¨â¦"
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "फायà¥à¤² à¤à¤¿à¤à¥à¤¸à¤ªà¥à¤ à¤à¤°à¤¾à¤¨â¦"
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8631,7 +8630,7 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
@@ -8639,14 +8638,14 @@ msgstr ""
"यि डाà¤à¤¾à¤¬à¥à¤¸ à¤à¤µ à¤à¤ªà¥à¤¨ à¤à¤°à¤¨à¥ रà¥à¤¡-à¤à¤¨à¤²à¥. à¤à¤¯à¤¾à¤¹ तà¥à¤¹à¤¯à¥ à¤à¥à¤µ यà¤à¤¼à¤¾à¤¨ यि मà¥à¤¹à¤«à¥à¤à¤¼ à¤à¤°à¥à¤¨ à¤à¤à¤¿à¤¸ à¤
लठ"
"à¤à¤¾à¤¯à¥ पयà¥à¤ ?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "फायà¥à¤² %s à¤à¥ à¤à¥à¤¡à¤¯ मà¥à¤à¥à¤¦. à¤à¤¯à¤¾à¤¹ तà¥à¤¹à¤¯à¥ à¤à¥à¤µ पà¥à¤à¤¼ पà¥à¤ यॠà¤à¤µà¤°à¤°à¤¾à¤¯à¥à¤ यà¤à¤¼à¤¾à¤¨ à¤à¤°à¥à¤¨?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<à¤à¥à¤°à¤®à¤¾à¤²à¥à¤®>"
@@ -9199,7 +9198,7 @@ msgstr ""
"सà¥à¤ à¤à¤°à¤¨à¥ à¤à¤®à¥à¤¤ à¤à¥ यà¥à¤®à¤¿ बà¥à¤à¥ बापत. यि सà¥à¤à¤¿à¤¨à¤ हà¥à¤à¤µ तबदà¥à¤² à¤à¥à¤°à¤¿à¤¥ फायिल ->à¤à¤¸à¥à¤¸à¤¯à¤¤->à¤à¤à¤¾à¤µà¤¨à¤à¤¨ "
"मनà¤à¤¼."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/lt.po b/po/lt.po
index 6541883c5..382f3478c 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: GnuCash 2.6.0\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2013-12-26 17:53+0300\n"
"Last-Translator: Aurimas Fišeras <aurimas at members.fsf.org>\n"
"Language-Team: komp_lt at konf.lt\n"
@@ -1323,7 +1323,7 @@ msgstr "PaÅ¡alinti prekÄ?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2621,7 +2621,7 @@ msgstr "Ieškoti užduoties"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Atverti"
@@ -3431,7 +3431,7 @@ msgid "Open an existing GnuCash file"
msgstr "Atverti esantį GnuCash failÄ
"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6148,7 +6148,7 @@ msgid "You cannot save to that file."
msgstr "Negalite iÅ¡saugoti į šį failÄ
."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7434,7 +7434,7 @@ msgid "There was an error parsing the file."
msgstr "Ä®vyko klaida nagrinÄjant failÄ
."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "Rašomas failas..."
@@ -8290,7 +8290,7 @@ msgid "Import"
msgstr "Importuoti"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Išsaugoti"
@@ -8484,8 +8484,7 @@ msgstr "NÄra leidimo skaityti iÅ¡ failo â%sâ."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8502,7 +8501,7 @@ msgstr ""
"\n"
"MÄginkite dar kartÄ
kitame kataloge."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8510,7 +8509,7 @@ msgstr ""
"Å i duomenų bazÄ yra iÅ¡ ankstesnÄs GnuCash versijos. Pasirinkite âGeraiâ "
"atnaujinimui į dabartinÄ versijÄ
, âAtsisakytiâ pažymÄjimui tik skaitymui."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8521,7 +8520,7 @@ msgstr ""
"kol nepadarysite Failas->Išsaugoti kaip, bet duomenys gali būti prarasti "
"saugant į senÄ
versijÄ
."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8532,7 +8531,7 @@ msgstr ""
"informacijos dokumentacijoje, kad sužinotumÄte, kaip iÅ¡valyti betikslius "
"prisijungimo seansus."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -8547,7 +8546,7 @@ msgstr ""
"kitÄ
âlibdbiâ versijÄ
. Adresu https://bugs.gnucash.org/show_bug.cgi?"
"id=611936 rasite daugiau informacijos."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8559,7 +8558,7 @@ msgstr ""
"konfigūracijos. Adresu https://bugs.gnucash.org/show_bug.cgi?id=645216 "
"rasite daugiau informacijos."
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8571,16 +8570,16 @@ msgstr ""
"versija (ji praneÅ¡ klaidÄ
âklaida nagrinÄjant failÄ
â). Jei norite iÅ¡saugoti "
"senÄ
versijÄ
, išeikite neišsaugodami."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "Įvyko nežinoma Į/I klaida (%d)."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "Išsaugoti failo pakeitimus?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8590,16 +8589,16 @@ msgstr[0] "Jei neiÅ¡saugosite, paskutinÄs %d minutÄs pakeitimai bus atmesti."
msgstr[1] "Jei neiÅ¡saugosite, paskutinių %d minuÄių pakeitimai bus atmesti."
msgstr[2] "Jei neiÅ¡saugosite, paskutinių %d minuÄių pakeitimai bus atmesti."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "_TÄsti be iÅ¡saugojimo"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash nepavyko užblokuoti â%sâ."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8607,7 +8606,7 @@ msgstr ""
"Å i duomenų bazÄ gali bÅ«ti naudojama kito naudotojo, tokiu atveju "
"neturÄtumÄte jos atverti. KÄ
pageidaujate daryti?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8619,44 +8618,44 @@ msgstr ""
"galite neturÄti raÅ¡ymo teisių kataloge. Jeigu tÄsite, tai neturÄsite "
"galimybÄs iÅ¡saugoti pakeitimų. KÄ
pageidaujate daryti?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "Atverti tik _skaitymui"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "Sukurti _naujÄ
failÄ
"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "_Atverti vis tiek"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "aplankas"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "Išei_ti"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "Įkeliami naudotojo duomenys..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "Iš naujo išsaugomi naudotojo duomenys..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "Eksportuojamas failas..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8667,21 +8666,21 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr ""
"Duomenų bazÄ atverta tik skaitymui. Ar norite jÄ
išsaugoti kitoje vietoje?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "Failas â%sâ jau egzistuoja. Ar tikrai norite jį perraÅ¡yti?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<nežinomas>"
@@ -9238,7 +9237,7 @@ msgstr ""
"nustatytÄ
Å¡iai knygai. Å i nuostata gali bÅ«ti pakeista per Failas->SavybÄs-"
">SÄ
skaitos."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/lv.po b/po/lv.po
index a7b1d33f6..8f45cca90 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: gnucash-2.3.14\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2017-08-16 12:19+0300\n"
"Last-Translator: Valdis VÄ«toliÅÅ¡ <valdis.vitolins at odo.lv>\n"
"Language-Team: Latvian <translation-team-lv at lists.sourceforge.net>\n"
@@ -1315,7 +1315,7 @@ msgstr "DzÄst valÅ«tas?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2593,7 +2593,7 @@ msgstr "MeklÄt darbu"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "AtvÄrt"
@@ -3404,7 +3404,7 @@ msgid "Open an existing GnuCash file"
msgstr "AtvÄrt esoÅ¡u GnuCash failu"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6107,7 +6107,7 @@ msgid "You cannot save to that file."
msgstr "Nevar saglabÄt Å¡ajÄ failÄ."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7386,7 +7386,7 @@ msgid "There was an error parsing the file."
msgstr "Kļūda analizÄjot failu."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "Raksta failu..."
@@ -8244,7 +8244,7 @@ msgid "Import"
msgstr "ImportÄt"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "SaglabÄt"
@@ -8437,8 +8437,7 @@ msgstr "Nav lasīšanas atļaujas, lai lasītu failu %s."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8454,7 +8453,7 @@ msgstr ""
"\n"
"LÅ«dzu mÄÄ£iniet saglabÄt vÄlreiz citÄ mapÄ."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8462,7 +8461,7 @@ msgstr ""
"Å Ä« datubÄze ir no vecÄkas GnuCash versijas. Ja vÄlaties to atjaunot, "
"spiediet Labi, vai Atcelt, ja vÄlaties to atstÄt tikai lasÄmÄ režīmÄ."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8473,7 +8472,7 @@ msgstr ""
"to nesaglabÄsiet ar Fails->SaglabÄt kÄ, bet saglabÄjot datus vecÄkajÄ "
"versija, tie var sabojÄties."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8483,7 +8482,7 @@ msgstr ""
"neatsakÄs. Ja paÅ¡reiz neviens to neizmanto, tad izlasiet dokumentÄcijÄ, kÄ "
"novÄkt pieteikÅ¡anÄs sesijas."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -8498,7 +8497,7 @@ msgstr ""
"versiju. Papildu informÄcijai skatiet https://bugs.gnucash.org/show_bug.cgi?"
"id=611936"
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8510,7 +8509,7 @@ msgstr ""
"SQL datu bÄzÄ. Papildu informÄcijai skatiet https://bugs.gnucash.org/"
"show_bug.cgi?id=645216"
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8522,16 +8521,16 @@ msgstr ""
"versiju (tÄ ziÅos: \"kļūda parsÄjot failu\"). Ja vÄlaties saglabÄt vecÄs "
"versijas formÄtu, aizveriet failu, to nesaglabÄjot."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "ParÄdÄ«jusies neatpazÄ«stama I/O kļūda (%d)."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "SaglabÄt izmaiÅas failÄ?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8544,16 +8543,16 @@ msgstr[1] ""
msgstr[2] ""
"Ja nesaglabÄsiet, pÄdÄjÄ %d minÅ«tÄ izdarÄ«tÄs izmaiÅas tiks pazaudÄtas."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "TurpinÄt _bez saglabÄÅ¡anas"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash nevarÄja iegÅ«t slÄgumu priekÅ¡ %s."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8561,7 +8560,7 @@ msgstr ""
"DatubÄzi, iespÄjams, izmanto cits lietotÄjs, tÄdÄ gadÄ«jumÄ jums nevajadzÄtu "
"to atvÄrt. Ko jÅ«s gribÄtu darÄ«t?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8573,44 +8572,44 @@ msgstr ""
"ierakstÄ«jis atļauju. Ja turpinÄsiet, nevarÄsiet saglabÄt izmaiÅas. Ko jÅ«s "
"darīsiet?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "AtvÄrt tikai _lasÄmu"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_Izveidot jaunu failu"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "_AtvÄrt tik un tÄ"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "vietturis"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_Iziet"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "IelÄdÄ lietotÄja datus..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "PÄrsaglabÄ lietotÄja datus..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "EksportÄ failu..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8621,14 +8620,14 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr ""
"DatubÄze tika atvÄrta tikai lasÄmÄ režīmÄ. Vai vÄlaties to saglabÄt citur?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
@@ -8637,7 +8636,7 @@ msgstr ""
"Atceļot tiks pazaudÄtas visas %s nesaglabÄtÄs izmaiÅas. Vai tieÅ¡Äm vÄlaties "
"turpinÄt?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<nezinÄms>"
@@ -9188,7 +9187,7 @@ msgstr ""
"IevadÄ«tÄ darÄ«juma datums ir senÄks par Å¡ajÄ grÄmatÄ norÄdÄ«to \"Tikai lasÄms"
"\" robežu. Å o iestatÄ«jumu var mainÄ«t izvÄlnÄ Fails->Īpašības->Konti."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/mai.po b/po/mai.po
index 3b48463df..66a458c7e 100644
--- a/po/mai.po
+++ b/po/mai.po
@@ -7,7 +7,7 @@ msgstr ""
"Project-Id-Version: gnucash-2.6\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2014-11-09 17:59+0530\n"
"Last-Translator: Sangeeta <gistlrc at gmail.com>\n"
"Language-Team: Maithili <gistlrc at gmail.com>\n"
@@ -1315,7 +1315,7 @@ msgstr "वसà¥à¤¤à¥ à¤à¥à¤ मà¥à¤à¤¾à¤?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2600,7 +2600,7 @@ msgstr "à¤à¤¾à¤ ताà¤à¥ "
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "à¤à¥à¤²à¥ "
@@ -3406,7 +3406,7 @@ msgid "Open an existing GnuCash file"
msgstr "à¤à¤à¤à¤¾ मà¥à¤à¥à¤¦à¤¾ GnuCash फाà¤à¤² à¤à¥à¤²à¥ "
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6109,7 +6109,7 @@ msgid "You cannot save to that file."
msgstr "à¤
हाठà¤à¤¹à¤¿ फाà¤à¤² मॠसहà¥à¤ नहि सà¤à¤¬."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7384,7 +7384,7 @@ msgid "There was an error parsing the file."
msgstr "फाà¤à¤² à¤à¥à¤ बà¥à¤à¤ मॠà¤à¤à¤à¤¾ तà¥à¤°à¥à¤à¤¿ à¤à¤¤à¥à¤ªà¤¨à¥à¤¨ à¤à¥à¤² à¤à¤²à¤¾. "
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "फाà¤à¤² à¤à¥à¤ लिठरहल à¤
à¤à¤¿..."
@@ -8229,7 +8229,7 @@ msgid "Import"
msgstr "à¤à¤¯à¤¾à¤¤ à¤à¤°à¥"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "सहà¥à¤à¥ "
@@ -8419,8 +8419,7 @@ msgstr "फाà¤à¤² %s सठपà¥à¤ à¤' लà¥à¤² पà¥à¤¬à¤¾à¤ à¤
न
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8437,7 +8436,7 @@ msgstr ""
"\n"
"à¤à¥à¤ªà¤¯à¤¾ à¤à¤à¤à¤¾ à¤
लठडायरà¥à¤à¥à¤à¥à¤°à¥ मॠफà¥à¤° सठपà¥à¤°à¤¯à¤¾à¤¸ à¤à¤°à¥"
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8445,7 +8444,7 @@ msgstr ""
"ठडाà¤à¤¾à¤¬à¥à¤¸ GnuCash à¤à¥à¤° à¤à¤à¤à¤¾ पà¥à¤°à¤¾à¤¨ सà¤à¤¸à¥à¤à¤°à¤£ सठसà¤à¤¬à¤à¤§à¤¿à¤¤ à¤
à¤à¤¿. à¤à¤à¤°à¤¾ वरà¥à¤¤à¤®à¤¾à¤¨ सà¤à¤¸à¥à¤à¤°à¤£ मॠà¤
पडà¥à¤ "
"à¤à¤°à¤¬à¤¾à¤ à¤' लà¥à¤² OK à¤à¥à¤¨à¥, à¤à¥à¤µà¤²-पà¥à¥ à¤à¥à¤° रà¥à¤ªà¥à¤ à¤à¤¿à¤¹à¥à¤¨à¤¿à¤¤ à¤à¤°à¤¬à¤¾à¤ à¤' लà¥à¤² रदà¥à¤¦ à¤à¤°à¥ à¤à¥à¤¨à¥. "
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8456,7 +8455,7 @@ msgstr ""
"तठà¤à¥ à¤
हाठ'à¥à¤¾à¤à¤²->ठरà¥à¤ªà¥à¤ सहà¥à¤à¥' नहि à¤à¤°à¥à¤¤ à¤
à¤à¤¿, मà¥à¤¦à¤¾ पà¥à¤°à¤¾à¤¨ सà¤à¤¸à¥à¤à¤°à¤£ मॠलिà¤à¤ मॠडà¥à¤à¤¾ à¤à¤¾à¤¯à¤¬ ठ"
"सà¤à¥à¤¤ à¤
à¤à¤¿."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8467,7 +8466,7 @@ msgstr ""
"पà¥à¤°à¤¯à¥à¤à¥à¤¤à¤¾ नहि à¤
à¤à¤¿, तठलà¤à¤¬à¤¿à¤¤ लाà¤à¤à¤¨ सतà¥à¤° à¤à¥à¤ à¤à¥à¤¨à¥ ठà¥à¤ à¤à¤°à¥, ठसà¥à¤à¤¬ à¤' लà¥à¤² दसà¥à¤¤à¤¾à¤µà¥à¤à¥à¤à¤°à¤£ सठ"
"सà¤à¤ªà¤°à¥à¤ à¤à¤°à¥. "
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -8482,7 +8481,7 @@ msgstr ""
"\"libdbi\" ठà¤à¤à¤à¤¾ à¤
लठसà¤à¤¸à¥à¤à¤°à¤£ à¤à¤à¤¸à¥à¤à¥à¤² à¤à¤à¤ à¤à¤¹à¤¿ समसà¥à¤¯à¤¾ à¤à¥à¤ दà¥à¤° नहि à¤à¤à¤² à¤à¤¾à¤à¤¤ à¤
à¤à¤¿. बà¥à¤¸à¥ "
"à¤à¤¾à¤¨à¤à¤¾à¤°à¥ à¤à¤²à¥à¤² à¤à¥à¤ªà¤¯à¤¾ दà¥à¤à¥ https://bugs.gnucash.org/show_bug.cgi?id=611936."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8493,7 +8492,7 @@ msgstr ""
"सà¤à¤¤à¤¾ à¤
à¤à¤¿. à¤à¤¹à¤¨ à¤
हाà¤à¤ SQL डà¥à¤à¤¾à¤¬à¥à¤¸ मॠà¤
नà¥à¤®à¤¤à¤¿ à¤à¥à¤° à¤à¤²à¤¤ à¤à¥à¤¨à¥à¥à¤¿à¤à¤°à¥à¤¶à¤¨ à¤à¥à¤° à¤à¤¾à¤°à¤£ ठसà¤à¥à¤¤ à¤
à¤à¤¿. बà¥à¤¸à¥ "
"à¤à¤¾à¤¨à¤à¤¾à¤°à¥ à¤à¤²à¥à¤² à¤à¥à¤ªà¤¯à¤¾ दà¥à¤à¥ https://bugs.gnucash.org/show_bug.cgi?id=645216. "
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8505,16 +8504,16 @@ msgstr ""
"नहि हाà¤à¤¤ (ठà¤à¤à¤à¤¾ \"error parsing the file\" रिपà¥à¤°à¥à¤ à¤à¤°à¥à¤¤). à¤à¤ à¤
हाठपà¥à¤°à¤¾à¤¨ सà¤à¤¸à¥à¤à¤°à¤£ à¤à¥à¤ "
"सà¤à¤°à¤à¥à¤·à¤¿à¤¤ à¤à¤à¤¨à¤¾à¤ à¤à¤¾à¤¹à¥à¤¤ à¤
à¤à¤¿ तठसहà¥à¤à¤² बिनॠबाहर निà¤à¤²à¥."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "à¤à¤à¤à¤¾ à¤
à¤à¥à¤à¤¾à¤¤ I/O तà¥à¤°à¥à¤à¤¿ (%d) à¤à¤¤à¥à¤ªà¤¨à¥à¤¨ à¤à¥à¤². "
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "बदलाव à¤à¥à¤ फाà¤à¤² मॠसहà¥à¤à¥? "
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8523,16 +8522,16 @@ msgid_plural ""
msgstr[0] "à¤à¤ à¤
हाठनहि सहà¥à¤à¥à¤¤ à¤à¥, तठपà¤à¤¿à¤²à¤¾ %d मिनठà¤à¥à¤° बदलाव à¤à¥à¤ हà¤à¤¾à¤ दà¥à¤² à¤à¤¾à¤à¤¤. "
msgstr[1] "à¤à¤ à¤
हाठनहि सहà¥à¤à¥à¤¤ à¤à¥, तठपà¤à¤¿à¤²à¤¾ %d मिनठà¤à¥à¤° बदलाव à¤à¥à¤ हà¤à¤¾à¤ दà¥à¤² à¤à¤¾à¤à¤¤. "
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "सहà¥à¤à¤¨à¥ बिनॠà¤à¤¾à¤°à¥ राà¤à¥ (_W)"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash %s à¤' लà¥à¤² ताला à¤à¥à¤ पà¥à¤°à¤¾à¤ªà¥à¤¤ नहि à¤à¤ सà¤à¤²."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8540,7 +8539,7 @@ msgstr ""
"सà¤à¤à¤µà¤¤à¤ डाà¤à¤¾à¤¬à¥à¤¸ à¤' à¤à¤¸à¥à¤¤à¥à¤®à¤¾à¤² à¤à¤¨ पà¥à¤°à¤¯à¥à¤à¥à¤¤à¤¾ दà¥à¤µà¤¾à¤°à¤¾ à¤à¤à¤² à¤à¤¾à¤ रहल à¤
à¤à¤¿, à¤à¥ सà¥à¤¥à¤¿à¤¤à¤¿ मॠà¤
हाà¤à¤ "
"डाà¤à¤¾à¤¬à¥à¤¸ à¤à¥à¤ नहि à¤à¥à¤²à¤¨à¤¾à¤ à¤à¤¾à¤¹à¥. à¤
हाठà¤à¥ à¤à¤à¤¨à¤¾à¤ पसिनà¥à¤¨ à¤à¤°à¤¬? "
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8552,44 +8551,44 @@ msgstr ""
"लिà¤à¤ à¤à¥à¤° à¤
नà¥à¤®à¤¤à¤¿ नहि à¤
à¤à¤¿. à¤à¤ à¤
हाठà¤à¤à¤¾à¤ बà¥à¥à¤¤ à¤à¥ तठà¤
हाठà¤à¥à¤¨à¥ बदलाव à¤à¥à¤ सहà¥à¤à¤ मॠसà¤à¥à¤·à¤® नहि "
"à¤' सà¤à¥à¤¤ à¤à¥. à¤
हाठà¤à¥ à¤à¤à¤¨à¤¾à¤ पसिनà¥à¤¨ à¤à¤°à¤¬?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "à¤à¥à¤µà¤²-पठन रà¥à¤ªà¥à¤ à¤à¥à¤²à¥"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "नव फाà¤à¤² बनाठ(_C)"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "à¤à¥à¤¨à¥ तरहà¥à¤ à¤à¥à¤²à¥"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "सà¥à¤¥à¤¾à¤¨à¤§à¤¾à¤°à¤"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "à¤à¥à¥ दिà¤
' (_Q)"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "पà¥à¤°à¤¯à¥à¤à¥à¤¤à¤¾ à¤' डाà¤à¤¾ लà¥à¤¡ à¤' रहल à¤
à¤à¤¿... "
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "पà¥à¤°à¤¯à¥à¤à¥à¤¤à¤¾ à¤' डाà¤à¤¾ पà¥à¤¨à¤-सहà¥à¤à¤² à¤à¤¾à¤ रहल à¤
à¤à¤¿..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "फाà¤à¤² निरà¥à¤à¤¤ à¤à¤à¤² à¤à¤¾à¤ रहल à¤
à¤à¤¿..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8600,21 +8599,21 @@ msgstr ""
"\n"
"%s "
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr ""
"डà¥à¤à¤¾à¤¬à¥à¤¸ à¤à¥à¤ à¤à¥à¤µà¤²-पठन रà¥à¤ªà¥à¤ à¤à¥à¤²à¤² à¤à¥à¤² à¤à¤²à¤¾. à¤à¥ à¤
हाठà¤à¤à¤°à¤¾ à¤à¤à¤à¤¾ à¤
लठसà¥à¤¥à¤¾à¤¨ पर सहà¥à¤à¤¨à¤¾à¤ à¤à¤¾à¤¹à¥à¤¤ à¤
à¤à¤¿?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "फाà¤à¤² %s पहिनॠसठमà¥à¤à¥à¤¦ à¤
à¤à¤¿. à¤à¥ à¤
हाठसà¤à¤®à¥à¤ à¤à¤à¤°à¤¾ मà¥à¤à¤¾à¤à¤ लिà¤à¤¨à¤¾à¤ à¤à¤¾à¤¹à¥à¤¤ à¤à¥?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<à¤
à¤à¥à¤à¤¾à¤¤>"
@@ -9160,7 +9159,7 @@ msgstr ""
"Threshold\" सठबà¥à¤¸à¥ पà¥à¤°à¤¾à¤¨ à¤
à¤à¤¿. 'à¥à¤¾à¤à¤²->पà¥à¤°à¥à¤ªà¤°à¥à¤à¥à¤->à¤à¤¾à¤¤à¤¾' मॠà¤à¤¹à¤¿ सà¥à¤à¤¿à¤à¤ à¤à¥à¤ बदलल à¤à¤¾à¤ सà¤à¥à¤¤ "
"à¤
à¤à¤¿."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/mni.po b/po/mni.po
index e352a2234..b7d980a07 100644
--- a/po/mni.po
+++ b/po/mni.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: gnucash-2.6\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2014-10-10 22:22+0530\n"
"Last-Translator: Chandrakant Dhutadmal <cpdhutadmal at yahoo.com>\n"
"Language-Team: Manipuri (MM) <gistlrc at gmail.com>\n"
@@ -1318,7 +1318,7 @@ msgstr "ê¯ê¯ê¯£ê¯ê¯¤ê¯ê¯¤ ê¯ê¯¨ê¯ ê¯ê¯ ê¯ê¯ê¯ê¯ê¯¥?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2600,7 +2600,7 @@ msgstr "ê¯ê¯ê¯ ê¯ê¯¤ê¯ê¯£ê¯ê¯"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "ê¯ê¯¥ê¯¡ê¯ê¯£ê¯ê¯"
@@ -3404,7 +3404,7 @@ msgid "Open an existing GnuCash file"
msgstr "ê¯ê¯©ê¯ê¯¤ê¯ GnuCash ê¯ê¯¥ê¯ê¯ ê¯ê¯¥ê¯¡ê¯ê¯£ê¯ê¯"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6099,7 +6099,7 @@ msgid "You cannot save to that file."
msgstr "ê¯ê¯ê¯£ê¯ê¯
ê¯ê¯¥ê¯ê¯ ê¯ê¯ê¯¨ê¯ ê¯ê¯¦ê¯ ê¯ê¯§ê¯ ê¯ê¯¥ê¯ê¯¦."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7376,7 +7376,7 @@ msgid "There was an error parsing the file."
msgstr "ê¯ê¯¥ê¯ê¯ ê¯ê¯¥ê¯ê¯ê¯¤ê¯¡ ê¯ê¯§ê¯ê¯ ê¯ê¯ê¯£ê¯ê¯ ê¯ê¯ ê¯ê¯£ê¯ê¯ê¯ê¯¦"
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "ê¯ê¯¥ê¯ê¯ ê¯ê¯ê¯¤..."
@@ -8216,7 +8216,7 @@ msgid "Import"
msgstr "ê¯ê¯¨ê¯ê¯¤ê¯ê¯ê¯ê¯"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "ê¯ê¯¦ê¯ ê¯ê¯§ê¯"
@@ -8400,8 +8400,7 @@ msgstr "ê¯ê¯¥ê¯ê¯ %s ê¯ê¯ê¯¤ ê¯ê¯¥ê¯
ê¯
ê¯ ê¯ê¯¥ê¯ê¯ê¯¤ ê¯ê¯ê¯¥ê¯
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8418,7 +8417,7 @@ msgstr ""
"\n"
"ê¯ê¯ê¯£ê¯ê¯ ê¯ê¯¥ê¯ê¯ê¯¦ê¯ê¯ê¯ê¯¤ ê¯ê¯ê¯ ê¯ê¯ê¯¨ê¯ ê¯ê¯ê¯
ê¯ê¯£ê¯ ê¯
ê¯ê¯¤ê¯ê¯¨ê¯«"
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8426,7 +8425,7 @@ msgstr ""
"ê¯ê¯¥ê¯ê¯¥ê¯ê¯¦ê¯ ê¯ê¯ê¯¤ GnuCash ê¯ê¯¤ ê¯ê¯ê¯¤ê¯ ê¯ê¯ê¯ê¯ ê¯ê¯ê¯ê¯ê¯¤ê¯
ꯤ. ê¯ê¯§ê¯ê¯¤ê¯ê¯ê¯¤ ê¯ê¯ê¯ê¯ ê¯ê¯ê¯¤ê¯ ê¯ê¯ê¯ê¯ê¯ê¯¦ê¯ ê¯ê¯§ê¯
ê¯ ê¯ê¯¥ê¯ê¯¦ "
"ê¯ê¯¥ê¯ê¯ê¯ê¯¤ ê¯ê¯ê¯ê¯¤ê¯ê¯£, ê¯ê¯¥ê¯ê¯ê¯ê¯ ê¯ê¯£ê¯ê¯
ê¯ê¯¥ê¯ê¯ ê¯ê¯§ê¯
ê¯ ê¯ê¯ê¯ê¯ ê¯ ê¯ê¯ê¯ê¯¤ê¯ê¯£."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8436,7 +8435,7 @@ msgstr ""
"ê¯ê¯ê¯£ê¯-ê¯ê¯ê¯¥ê¯ ê¯ê¯¥ê¯ê¯ê¯
ê¯ê¯¦ê¯ ê¯ê¯§ê¯ ê¯ê¯ê¯ê¯¦ê¯« ê¯ê¯ê¯£ê¯ê¯
File->Save As ê¯ê¯§ê¯ê¯ê¯ê¯¤ê¯ê¯¥ê¯ê¯ ê¯ê¯ê¯¤ ê¯ê¯¥ê¯ê¯ê¯ê¯ê¯ê¯¤ê¯
ꯤ ê¯ê¯¥ê¯ê¯
"
"ê¯ê¯¥ê¯ê¯ ê¯ê¯§ê¯ê¯
ꯤ, ê¯ê¯ê¯¨ê¯ê¯¨ ê¯ê¯ê¯¤ê¯ ê¯ê¯ê¯ê¯ê¯ ê¯ê¯ ê¯ê¯ê¯ê¯ ê¯ê¯¥ê¯ê¯¥ ê¯ê¯¥ê¯¡ê¯ê¯¤ê¯ ê¯ê¯¥ê¯ê¯«"
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8446,7 +8445,7 @@ msgstr ""
"ê¯ê¯¥ê¯ê¯£ê¯. ê¯ê¯§ê¯ê¯¤ê¯ê¯ê¯¤ ê¯ê¯£ê¯ê¯
ê¯ê¯ê¯£ê¯ê¯ ê¯ê¯¤ê¯ê¯¤ê¯ê¯
ê¯ê¯¤ê¯ ê¯ê¯©ê¯ê¯ê¯ê¯ê¯ê¯¤, ê¯ê¯¥ê¯ ê¯ê¯¤ê¯ ê¯ê¯£ê¯ê¯ê¯ ê¯ê¯¦ê¯ê¯ ê¯ê¯ê¯ê¯
ê¯ê¯£ê¯ê¯ê¯£ê¯ê¯ê¯
ꯤ "
"ê¯ê¯¥ê¯ê¯ ê¯ê¯ªê¯
ê¯ ê¯ê¯£ê¯ê¯¨ê¯ê¯¦ê¯ê¯ê¯¦ê¯ê¯ê¯ ê¯ê¯¦ê¯¡ê¯ê¯¤ê¯ê¯¨."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -8461,7 +8460,7 @@ msgstr ""
"ê¯ê¯¦ê¯ ê¯ê¯§ê¯ê¯« ê¯ê¯ê¯¨ê¯ê¯ ê¯ê¯ê¯£ê¯ê¯ê¯¤ê¯ê¯ê¯ https://bugs.gnucash.org/show_bug.cgi?id=611936 ê¯ "
"ê¯ê¯¦ê¯¡ê¯ê¯¤ê¯ê¯¨ê¯«"
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8472,7 +8471,7 @@ msgstr ""
"ê¯ê¯ê¯£ê¯ê¯ê¯¤ SQL ê¯ê¯¥ê¯ê¯¥ê¯ê¯¦ê¯ê¯ê¯¤ ê¯ê¯¤ê¯ê¯ê¯ê¯ê¯¤ê¯ê¯ê¯ê¯¨ê¯ê¯¦ê¯ê¯ ê¯ê¯¥ê¯ê¯ê¯¤ê¯ê¯ ê¯ê¯ê¯
ê¯ê¯£ê¯ê¯ê¯ê¯ ê¯ê¯£ê¯ê¯ ê¯ê¯¥ê¯ê¯« ê¯ê¯ê¯¨ê¯ê¯ ê¯ê¯ê¯£ê¯ê¯ê¯¤ê¯ê¯ê¯ "
"https://bugs.gnucash.org/show_bug.cgi?id=645216 ê¯ ê¯ê¯¦ê¯¡ê¯ê¯¤ê¯ê¯¨ê¯«"
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8484,16 +8483,16 @@ msgstr ""
"parsing the file\" ê¯ê¯¤ ê¯ê¯¤ê¯ê¯£ê¯ê¯ ê¯ê¯ ê¯ê¯¤ê¯ê¯ê¯ê¯
ꯤ). ê¯ê¯ê¯£ê¯ê¯
ê¯ê¯ê¯¤ê¯ ê¯ê¯ê¯ê¯ ê¯ê¯ê¯ ê¯ê¯¥ê¯ê¯ê¯ê¯ê¯¤ ê¯ê¯¦ê¯ "
"ê¯ê¯§ê¯ê¯
ê¯ê¯£ê¯ê¯ê¯ê¯ê¯£ê¯«"
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "ê¯ê¯ê¯ê¯ªê¯ê¯ I/O ê¯ê¯ê¯£ê¯ê¯ (%d) ê¯ê¯£ê¯ê¯ê¯ê¯¦."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "ê¯ê¯ê¯£ê¯¡ê¯ê¯ê¯¤ê¯¡ê¯ê¯¤ ê¯ê¯¥ê¯ê¯ê¯ ê¯ê¯¦ê¯ ê¯ê¯§ê¯ê¯ê¯ê¯ê¯¥?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8502,16 +8501,16 @@ msgid_plural ""
msgstr[0] "ê¯ê¯ê¯£ê¯ê¯
ê¯ê¯¦ê¯ ê¯ê¯§ê¯ê¯ê¯ê¯ê¯ê¯¤, ê¯ê¯§ê¯ê¯¤ê¯ ê¯ê¯¤ê¯
ê¯¤ê¯ %d ê¯ê¯ê¯¤ ê¯ê¯£ê¯ê¯ ê¯ê¯ê¯£ê¯¡ê¯ê¯ê¯¤ê¯¡ê¯ê¯¨ ê¯ê¯¨ê¯ê¯ê¯£ê¯ê¯ê¯ê¯ê¯ê¯
ꯤ."
msgstr[1] "ê¯ê¯ê¯£ê¯ê¯
ê¯ê¯¦ê¯ ê¯ê¯§ê¯ê¯ê¯ê¯ê¯ê¯¤, ê¯ê¯§ê¯ê¯¤ê¯ ê¯ê¯¤ê¯
ê¯¤ê¯ %d ê¯ê¯ê¯¤ ê¯ê¯£ê¯ê¯ ê¯ê¯ê¯£ê¯¡ê¯ê¯ê¯¤ê¯¡ê¯ê¯¨ ê¯ê¯¨ê¯ê¯ê¯£ê¯ê¯ê¯ê¯ê¯ê¯
ꯤ."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "Continue _ê¯ê¯¦ê¯ ê¯ê¯§ê¯ê¯
ê¯ê¯ê¯¥ ê¯ê¯ ê¯ê¯ê¯£"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash ê¯
%s ê¯ê¯¤ ê¯ê¯£ê¯ ê¯ê¯ªê¯ ê¯ê¯ê¯ê¯¦."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8519,7 +8518,7 @@ msgstr ""
"ê¯ê¯¥ê¯ê¯¥ê¯ê¯¦ê¯ ê¯ê¯ê¯¨ ê¯ê¯ê¯£ê¯ê¯ ê¯ê¯¤ê¯ê¯¤ê¯ê¯
ê¯ê¯¤ê¯ ê¯ê¯ê¯
ê¯ê¯¤ê¯ê¯¤ê¯ê¯
ê¯ê¯¤ê¯ ê¯ê¯¥ê¯ê¯ê¯¤, ê¯ê¯ê¯¤ê¯ê¯¨ê¯ê¯ ê¯ê¯¤ê¯ê¯ê¯ ê¯ê¯ê¯£ê¯ê¯
ê¯ê¯¥ê¯ê¯¥ê¯ê¯¦ê¯ ê¯ê¯ê¯¤ "
"ê¯ê¯¥ê¯¡ê¯ê¯£ê¯ê¯ê¯£ê¯ê¯ê¯ê¯
ꯤ. ê¯ê¯ê¯£ê¯ ê¯ê¯ê¯¤ ê¯ê¯§ê¯ ê¯ê¯¥ê¯ê¯ê¯¤ê¯ê¯ê¯¦?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8531,44 +8530,44 @@ msgstr ""
"ê¯ê¯©ê¯ê¯ ê¯ê¯¥ê¯ê¯ê¯¤. ê¯ê¯ê¯£ê¯ê¯
ê¯ê¯ê¯¥ ê¯ê¯ ê¯ê¯ê¯ê¯ê¯¤ ê¯ê¯ê¯£ê¯¡ê¯ ê¯ê¯ê¯ ê¯ ê¯ê¯¦ê¯ ê¯ê¯§ê¯ ê¯ê¯ê¯ê¯ ê¯ê¯¥ê¯. ê¯ê¯ê¯£ê¯ê¯
ê¯ê¯ê¯¤ ê¯ê¯§ê¯ "
"ê¯ê¯¥ê¯ê¯ê¯¤ê¯ê¯ê¯¦?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "_ê¯ê¯¥ê¯ê¯ê¯ê¯ ê¯ê¯¥ê¯¡ê¯ê¯£ê¯ê¯"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "ê¯ê¯
ê¯§ê¯ ê¯ê¯¥ê¯ê¯ _ê¯ê¯¦ê¯ê¯ê¯ ê¯ê¯£"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "_ê¯ê¯¦ê¯ê¯ ê¯ê¯¥ê¯¡ê¯ê¯£ê¯ê¯"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "ê¯ê¯ê¯ê¯¦ê¯ê¯ê¯£ê¯ê¯ê¯"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_ê¯ê¯¥ê¯ê¯£ê¯ê¯"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "ê¯ê¯¤ê¯ê¯¤ê¯ê¯
ê¯ê¯¤ê¯ê¯ê¯¤ ê¯ê¯¥ê¯ê¯¥ ê¯ê¯£ê¯ ê¯ê¯§ê¯ê¯¤..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "ê¯ê¯¤ê¯ê¯¤ê¯ê¯
ê¯ê¯¤ê¯ê¯ê¯¤ ê¯ê¯¥ê¯ê¯¥ ê¯ê¯¤-ê¯ê¯¦ê¯ê¯¤ê¯¡ ê¯ê¯§ê¯..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "ê¯ê¯¥ê¯ê¯ ê¯ê¯¥ê¯ê¯£ê¯ê¯ê¯¤..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8579,20 +8578,20 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr "ê¯ê¯¥ê¯ê¯¥ê¯ê¯¦ê¯ ê¯ê¯ê¯¨ ê¯ê¯¥ê¯ê¯ê¯ê¯ê¯ê¯¤ ê¯ê¯£ê¯ê¯
ê¯ê¯¥ê¯¡ê¯ê¯£ê¯ê¯ê¯¦ê¯« ê¯ê¯ê¯£ê¯ê¯
ê¯ê¯ê¯¤ ê¯ê¯ê¯£ê¯ê¯ ê¯ê¯ê¯ê¯ ê¯ê¯¦ê¯ ê¯ê¯§ê¯ ê¯ê¯¥ê¯ê¯ê¯ê¯ê¯¥?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "ê¯ê¯¥ê¯ê¯ %s ê¯ê¯ê¯¤ ê¯ê¯¥ê¯ê¯
ê¯ê¯©ê¯ê¯¦. ê¯ê¯ê¯£ê¯ê¯
ê¯ê¯ê¯¤ ê¯ê¯ê¯ê¯ ê¯ê¯ê¯¤ê¯ê¯ ê¯ê¯¥ê¯ê¯ê¯¤ ê¯ê¯¥ê¯ê¯ê¯ê¯¤ ê¯ê¯£ê¯ê¯ê¯ê¯ê¯ê¯ê¯ê¯¥?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<ê¯ê¯ê¯ê¯ªê¯ê¯>"
@@ -9142,7 +9141,7 @@ msgstr ""
"ê¯ê¯¨ê¯ê¯ê¯ê¯¤ê¯ê¯¦ê¯ ê¯ê¯£ê¯ê¯ ê¯ê¯ê¯ê¯¥ê¯ê¯ê¯¦ê¯ê¯ê¯ ê¯ê¯ê¯¤ê¯ê¯¤ ê¯ê¯ªê¯ê¯¤ê¯ê¯ê¯¤ê¯ ê¯ê¯¥ê¯¡ ê¯ê¯ê¯¤ ê¯ê¯¨ê¯ ê¯ê¯ê¯¤ê¯ê¯¤ \"Read-Only Threshold\" "
"ê¯ê¯¦ê¯ ê¯ê¯ê¯¤ê¯ê¯ê¯¤ ê¯ê¯¤ê¯ ê¯ê¯£ê¯ê¯ê¯¦ê¯« ê¯ê¯¦ê¯ ê¯ê¯¤ê¯¡ ê¯ê¯ê¯¤ ê¯ê¯¥ê¯ê¯->ê¯ê¯ê¯ê¯£ê¯ê¯ê¯ê¯¤ê¯->ê¯ê¯¦ê¯ê¯¥ê¯ê¯ê¯ ê¯ê¯ ê¯ê¯£ê¯¡ê¯ê¯£ê¯ê¯ ê¯ê¯¥ê¯ê¯«"
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/mni at bengali.po b/po/mni at bengali.po
index 505784006..c4049f187 100644
--- a/po/mni at bengali.po
+++ b/po/mni at bengali.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: GnuCash 2.6\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2014-08-19 15:04+0530\n"
"Last-Translator: Chandrakant Dhutadmal <cpdhutadmal at yahoo.com>\n"
"Language-Team: Manipuri (Bengali Script) <gistlrc at gmail.com>\n"
@@ -1328,7 +1328,7 @@ msgstr "à¦à¦®à§à¦¦à¦¿à¦¤à¦¿ মà§à¦¤à§à¦¥à§à¦à¦¦à§à¦°à¦¾?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2634,7 +2634,7 @@ msgstr "থবঠথিদà§à¦à¦"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "হাà¦à¦¦à§à¦à¦ªà¦¾"
@@ -3447,7 +3447,7 @@ msgid "Open an existing GnuCash file"
msgstr "লà§à¦°à¦¿à¦¬à¦¾ GnuCash ফাà¦à¦² হাà¦à¦¦à§à¦à¦"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6159,7 +6159,7 @@ msgid "You cannot save to that file."
msgstr "à¦
দà§à¦®à§à¦¨à¦¾ ফাà¦à¦² à¦
দà§à¦¦à¦¾ সà§à¦ তà§à¦¬à¦¾ à§à¦¾à¦¦à§."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7446,7 +7446,7 @@ msgid "There was an error parsing the file."
msgstr "ফাà¦à¦² পারà§à¦¸à¦¿à¦ তà§à¦¬à¦¦à¦¾ à¦
শà§à§à¦¬à¦¾ à¦
মা থà§à¦à§à¦²à§"
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "ফাà¦à¦² à¦à¦°à¦¿..."
@@ -8296,7 +8296,7 @@ msgid "Import"
msgstr "পà§à¦¶à¦¿à¦²à§à¦²à¦à¦ªà¦¾"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "সà§à¦ তà§à¦¬à¦¾"
@@ -8483,8 +8483,7 @@ msgstr "ফাà¦à¦² %s দà¦à§ পাননবা পাবà¦à§ à¦
à§à¦¾
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8501,7 +8500,7 @@ msgstr ""
"\n"
"à¦à¦¾à¦¨à¦¬à§à¦¦à§à¦¨à¦¾ à¦
তà§à¦ªà§à¦ªà¦¾ দিরà§à¦à§à¦¤à¦°à¦¿ à¦
মদা à¦
মà§à¦ হনà§à¦¨à¦¾ হà§à§à¦¨à¦¬à§à§à§à¥¤"
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8509,7 +8508,7 @@ msgstr ""
"দাতাবà§à¦ à¦
সি GnuCash à¦à§ à¦
রিবা à¦à¦°à§à¦¸ à¦
মদà¦à§à¦¨à¦¿. হà§à¦à¦¿à¦à§à¦à§ à¦à¦°à§à¦¸à¦¨ à¦
সিদা à¦
পà¦à§à¦°à§à¦¦ তà§à¦¨à¦¬à¦¾ "
"à§à¦¾à¦°à§ হাà§à¦¬à¦¸à¦¿ à¦à¦¨à¦¬à¦¿à¦°à§, পাবতমঠà¦à¦à¦¨à¦¾ মারà§à¦ তà§à¦¨à¦¬à¦¾ à¦à¦à¦¥à§à¦ªà¦¾ à¦à¦¨à¦¬à¦¿à¦°à§."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8519,7 +8518,7 @@ msgstr ""
"মদà§à¦¦à¦¾ সà§à§-à¦à¦¾à¦®à¦¦à¦¨à¦¾ সà§à¦ তà§à¦¬à¦¦à¦¿ à¦à¦®à¦¦à§à¥¤ নহাà¦à§à¦¨à¦¾ ফাà¦à¦²->সà§à¦ à¦à¦ তà§à¦¦à§à¦°à¦¿à¦«à¦¾à¦à¦¬à¦¾ মদৠপাবা-à¦à¦à§à¦¤à¦¾ "
"হাà§à¦¨à¦¾ মারà§à¦ তà§à¦à¦¨à¦¿, à¦
দà§à¦¬à§ à¦
রিবা à¦à¦°à§à¦¸à¦¨à§à¦¦à¦¾ à¦à¦¬à¦¾ মতমদা দà§à¦¤à¦¾ মাà¦à¦à¦¿à¦¬à¦¾ à§à¦¾à¦à¥¤"
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8529,7 +8528,7 @@ msgstr ""
"à¦
পà¦à§à¦°à§à¦¦ তà§à¦¬à¦¾ à§à¦¾à¦°à§à¦. হà§à¦à¦¿à¦à§à¦à§ à¦à¦à¦¨à¦¾ à¦
তà§à¦ªà§à¦ªà¦¾ শিà¦à¦¿à¦¨à§à¦¨à¦°à¦¿à¦¬à¦¾ লà§à¦¤à§à¦°à¦¬à¦¦à¦¿, ৱাà§à¦²à¦¿à¦¬à¦¾ লà§à¦à¦¿à¦ "
"সà§à¦¸à¦¨ à¦à¦°à¦®à§à¦¨à¦¾ তà§à¦à¦¥à§à¦à§à¦à¦¨à¦¿ হাà§à¦¬à¦¾ à¦à¦à¦¨à¦¬à¦¾ দà§à¦à§à¦®à§à¦¨à§à¦¤à§à¦¸à¦¨à¦¦à¦¾ à§à§à¦à¦¬à¦¿à§à§"
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -8544,7 +8543,7 @@ msgstr ""
"GnuCash হাà¦à¦²à§à¦ নতà§à¦¤à§à¦°à¦à¦¾ সà§à¦ তà§à¦°à§à¦à¥¤ à¦à¦¾à¦¨à¦¬à§à¦¦à§à¦¨à¦¾ à¦
হà§à¦¨à¦¬à¦¾ à¦à¦¨à¦«à§à¦°à§à¦®à§à¦¸à¦¨à¦à§à¦¦à¦®à¦ https://bugs."
"gnucash.org/show_bug.cgi?id=611936 à§à§à¦à¦¬à§à§à§à¥¤"
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8556,7 +8555,7 @@ msgstr ""
"থà§à¦à¦¹à¦¨à¦¬à¦¾ à¦à¦à¦°à¦®à§à¦¬à¦¾ à§à¦¾à¦à¥¤ à¦à¦¾à¦¨à¦¬à§à¦¦à§à¦¨à¦¾ à¦
হà§à¦¨à¦¬à¦¾ à¦à¦¨à¦«à§à¦°à§à¦®à§à¦¸à¦¨à¦à§à¦¦à¦®à¦à§à¦¤à¦¾ https://bugzilla.gnome."
"org/show_bug.cgi?id=645216 à§à§à¦à¦¬à§à§à§à¥¤"
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8568,16 +8567,16 @@ msgstr ""
"পাবা à¦à¦®à§à¦²à§à¦ (মসিনা \"ফাà¦à¦² পারà§à¦¸à¦¿à¦ তà§à¦¬à¦¦à¦¾ à¦
সà§à§à¦¬à¦¾\" à¦
মা রিপà§à¦°à§à¦¤ পà§à¦à¦¨à¦¿)। à¦à¦°à¦¿à¦à§à¦®à§à¦¬à¦¾ "
"নহাà¦à§à¦¨à¦¾ à¦
রিবা à¦à¦°à§à¦¸à¦¨ à¦
দৠতà§à¦à¦à§à¦¦à¦®à¦ থমà¦à§ হাà§à¦¨à¦¾ à¦à¦²à§à¦²à¦¬à¦¦à¦¿, সà§à¦ তà§à¦¦à¦¨à¦¾ থà§à¦à§à¦²à¦à¦à¥¤"
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "শà¦à¦à¦à¦¦à¦¬à¦¾ I/O à¦
শà§à§à¦¬à¦¾ (%d) থà§à¦à§à¦²à§."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "à¦
হà§à¦à¦¬à¦¶à¦¿à¦à¦¸à¦¿ ফাà¦à¦²à¦¦à¦¾ সà§à¦ তà§à¦à¦¦à§à¦°à¦¾?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8586,16 +8585,16 @@ msgid_plural ""
msgstr[0] "à¦
দà§à¦®à§à¦¨à¦¾ সà§à¦ তà§à¦¦à§à¦°à¦¬à¦¦à¦¿, হà§à¦à¦¿à¦¬à¦¾ মিনিত %d দà¦à§ à¦à¦à¦¬à¦¾ à¦
হà§à¦à¦¬à¦¶à¦¿à¦à¦¦à§ হà§à¦¨à§à¦¦à§à¦à¦à§à¦°à¦à¦¨à¦¿."
msgstr[1] "à¦
দà§à¦®à§à¦¨à¦¾ সà§à¦ তà§à¦¦à§à¦°à¦¬à¦¦à¦¿, হà§à¦à¦¿à¦¬à¦¾ মিনিত %d দà¦à§ à¦à¦à¦¬à¦¾ à¦
হà§à¦à¦¬à¦¶à¦¿à¦à¦¦à§ হà§à¦¨à§à¦¦à§à¦à¦à§à¦°à¦à¦¨à¦¿."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "Continue _সà§à¦ তà§à¦¦à¦¨à¦¾ মà¦à¦¾ à¦à¦¤à§à¦¥à¦°à§"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash না %s à¦à§ লà§à¦ ফà¦à¦¬à¦¾ à¦à¦®à¦¦à§."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8603,7 +8602,7 @@ msgstr ""
"দাতাবà§à¦ à¦
দৠà¦
তà§à¦ªà§à¦ªà¦¾ শিà¦à¦¿à¦¨à§à¦¨à¦°à¦¿à¦¬à¦¾ à¦
মনা শিà¦à¦¿à¦¨à§à¦¨à¦°à¦¿à¦¬à¦¾ মালà§à¦²à¦¿, à¦
সিà¦à§à¦®à§à¦¬à¦¾ ফিবমদা à¦
দà§à¦®à§à¦¨à¦¾ "
"দাতাবà§à¦ à¦
সি হাà¦à¦¦à§à¦à§à¦²à§à¦à¦¦à¦¬à¦¨à¦¿. à¦
দà§à¦® à¦à¦°à¦¿ তà§à¦¬à¦¾ পামà§à¦¬à¦¿à¦¬à¦à§?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8616,44 +8615,44 @@ msgstr ""
"à¦
দà§à¦®à§à¦¨à¦¾ à¦à¦°à¦¿ তà§à¦¬à¦¾ পামà§à¦¬à¦¿à¦¬à¦à§?"
# Considering as "Open (as) Read Only)
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "_পাবা-à¦à¦à§à¦à§ à¦à¦à¦¨à¦¾ হাà¦à¦"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "à¦
নà§à¦¬à¦¾ ফাà¦à¦² _শà§à¦®à¦à§à¦²à§"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "_মà¦à¦ à¦
মদা হà§à¦à§à¦¤à¦¾ হাà¦à¦"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "পà§à¦²à§à¦¸à¦¹à§à¦²à§à¦¡à¦°"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_থাদà§à¦à¦ªà¦¾"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "শিà¦à¦¿à¦¨à§à¦¨à¦°à¦¿à¦¬à¦à§ দাতা লà§à¦¦ তà§à¦°à¦¿..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "শিà¦à¦¿à¦¨à§à¦¨à¦°à¦¿à¦¬à¦à§ দাতা রি-সà§à¦à¦¿à¦ তà§à¦¬à¦¾..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "থাদà§à¦à§à¦²à¦¿à¦¬à¦¾ ফাà¦à¦²..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8664,21 +8663,21 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr ""
"দà§à¦¤à¦¾à¦¬à§à¦ à¦
দৠপাবা-à¦à¦à§à¦¤à¦¾ হাà¦à¦à§à¦°à§à¥¤ নহাà¦à§à¦¨à¦¾ মদৠতà§à¦à¦¾à¦¨à¦¬à¦¾ মফম à¦
মদা সà§à¦ তà§à¦¬à¦¾ পামà§à¦¬à§à¦°à¦¾?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "ফাà¦à¦² %s à¦
সি হানà§à¦¨à¦¾ লà§à¦°à§. à¦
দà§à¦®à§à¦¨à¦¾ মসি মথà¦à§à¦¤à¦¾ à¦à¦¶à¦¿à¦¨à¦¬à¦¾ পামà§à¦®à§ হাà§à¦¬à¦¸à¦¿ শà§à§à¦¦à§à¦°à¦¬à§à¦°à¦¾?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<শà¦à¦à¦à¦¦à¦¬à¦¾>"
@@ -9234,7 +9233,7 @@ msgstr ""
"হà§à¦à¦¦à§à¦-হà§à¦à¦à¦¿à¦¨ তà§à¦¬à¦¾ à§à¦¾à¦à¥¤"
# the word "Blank" can be translated as "à¦
হাà¦à¦¬à¦¾" in Manipuri. But, if the same is banking terminology, it may be kept as "বà§à¦²à§à¦à§à¦" also considering the context.
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/mr.po b/po/mr.po
index 907d1e77c..64eca2e74 100644
--- a/po/mr.po
+++ b/po/mr.po
@@ -7,7 +7,7 @@ msgstr ""
"Project-Id-Version: GnuCash 2.6.3\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2014-09-26 19:58-0500\n"
"Last-Translator: Chandrakant Dhutadmal <cpdhutadmal at yahoo.com>\n"
"Language-Team: NONE\n"
@@ -1319,7 +1319,7 @@ msgstr "à¤à¤®à¥à¤¡à¤¿à¤à¥ डिलà¥à¤ à¤à¤°à¤¾à¤¯à¤à¥?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2600,7 +2600,7 @@ msgstr "à¤à¥à¤¬ शà¥à¤§à¤¾"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "à¤à¤à¤¡à¤¾"
@@ -3400,7 +3400,7 @@ msgid "Open an existing GnuCash file"
msgstr "à¤
सà¥à¤¤à¤¿à¤¤à¥à¤µà¤¾à¤¤ à¤
सलà¥à¤²à¥ GnuCash फाà¤à¤² à¤à¤à¤¡à¤¾"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6091,7 +6091,7 @@ msgid "You cannot save to that file."
msgstr "तà¥à¤®à¥à¤¹à¥ तà¥à¤¯à¤¾ फाà¤à¤²à¤µà¤° साठवॠशà¤à¤¤ नाहà¥."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7370,7 +7370,7 @@ msgid "There was an error parsing the file."
msgstr "फाà¤à¤² पारà¥à¤¸ à¤à¤°à¤£à¥à¤¯à¤¾à¤¤ तà¥à¤°à¥à¤à¥ à¤à¤²à¥ हà¥à¤¤à¥."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "फाà¤à¤² लिहà¥à¤¤ à¤à¤¹à¥"
@@ -8214,7 +8214,7 @@ msgid "Import"
msgstr "à¤à¤¯à¤¾à¤¤ à¤à¤°à¤¾"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "साठवा "
@@ -8401,8 +8401,7 @@ msgstr "%s या फाà¤à¤²à¤®à¤§à¥à¤¨ वाà¤à¤£à¥à¤¯à¤¾à¤à¥ परव
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8419,7 +8418,7 @@ msgstr ""
"\n"
"à¤à¥à¤ªà¤¯à¤¾ पà¥à¤¨à¥à¤¹à¤¾ वà¥à¤à¤³à¥à¤¯à¤¾ मारà¥à¤à¤¦à¤°à¥à¤¶à¤¿à¤à¥à¤®à¤§à¥à¤¯à¥ पà¥à¤°à¤¯à¤¤à¥à¤¨ à¤à¤°à¤¾."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8427,7 +8426,7 @@ msgstr ""
"हा डà¥à¤à¤¾à¤¬à¥à¤¸ GnuCash à¤à¥à¤¯à¤¾ à¤à¥à¤¨à¥à¤¯à¤¾ à¤à¤µà¥à¤¤à¥à¤¤à¥à¤®à¤§à¥à¤² à¤à¤¹à¥. तà¥à¤¯à¤¾à¤¸ वरà¥à¤¤à¤®à¤¾à¤¨ à¤à¤µà¥à¤¤à¥à¤¤à¥à¤®à¤§à¥à¤¯à¥ à¤
दà¥à¤¯à¤¤à¤¨ à¤à¤°à¤£à¥à¤¯à¤¾à¤¸à¤¾à¤ ॠ"
"ठà¥à¤ à¤à¤¹à¥ वर à¤à¥à¤²à¤¿à¤ à¤à¤°à¤¾, तà¥à¤¯à¤¾à¤¸ रà¥à¤¡-à¤à¤¨à¥à¤²à¥ à¤
सॠà¤à¤¿à¤¨à¥à¤¹à¤¿à¤¤ à¤à¤°à¤£à¥à¤¯à¤¾à¤¸à¤¾à¤ ॠरदà¥à¤¦ à¤à¤°à¤¾ वर à¤à¥à¤²à¤¿à¤ à¤à¤°à¤¾."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8437,7 +8436,7 @@ msgstr ""
"सà¥à¤°à¤à¥à¤·à¤¿à¤¤à¤ªà¤£à¥ तà¥à¤¯à¤¾à¤®à¤§à¥à¤¯à¥ सà¥à¤µà¥à¤¹ à¤à¤°à¥ शà¤à¤¤ नाहà¥. तà¥à¤®à¥à¤¹à¥ धारिà¤à¤¾->या नावानॠसà¥à¤µà¥à¤¹ à¤à¤°à¤¾ à¤à¤°à¥à¤ªà¤°à¥à¤¯à¤à¤¤ तà¥à¤¯à¤¾à¤µà¤° "
"à¤à¥à¤µà¤³-वाà¤à¤£à¥à¤¯à¤¾à¤¯à¥à¤à¥à¤¯ मà¥à¤¹à¤£à¥à¤¨ à¤à¥à¤£ à¤à¥à¤²à¥ à¤à¤¾à¤à¤², मातà¥à¤° à¤à¥à¤¨à¥à¤¯à¤¾ à¤à¤µà¥à¤¤à¥à¤¤à¥à¤µà¤° लिहà¥à¤¤à¤¾à¤¨à¤¾ डाà¤à¤¾ हरवॠशà¤à¤¤à¥."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8447,7 +8446,7 @@ msgstr ""
"शà¤à¥à¤¯ नाहà¥. à¤à¤° à¤à¤¤à¥à¤¤à¤¾ à¤à¥à¤£à¤¤à¥à¤¹à¥ यà¥à¤à¤°à¥à¤¸ नसतà¥à¤² तर विनाà¤à¤¾à¤°à¤£ à¤à¤à¤¡à¥ राहà¥à¤²à¥à¤²à¥ लà¥à¤-à¤à¤¨ सतà¥à¤° à¤à¤¸à¥ "
"थाà¤à¤¬à¤µà¤¾à¤¯à¤à¥ हॠपाहणà¥à¤¯à¤¾à¤¸à¤¾à¤ ॠयाà¤à¥ माहितà¥à¤ªà¥à¤¸à¥à¤¤à¤ पाहा. "
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -8462,7 +8461,7 @@ msgstr ""
"माहितॠसाठा à¤à¤à¤¡à¤¤à¤¾ यà¥à¤£à¤¾à¤° नाहॠà¤à¤¿à¤à¤µà¤¾ तà¥à¤¯à¤¾à¤®à¤§à¥à¤¯à¥ सà¤à¤à¥à¤°à¤¹à¤¿à¤¤ à¤à¤°à¤¤à¤¾ यà¥à¤£à¤¾à¤° नाहà¥. à¤à¥à¤ªà¤¯à¤¾ à¤
धिठ"
"माहितà¥à¤¸à¤¾à¤ ॠhttps://bugs.gnucash.org/show_bug.cgi?id=611936 पाहा."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8474,7 +8473,7 @@ msgstr ""
"शà¤à¤¤à¥. à¤à¥à¤ªà¤¯à¤¾ à¤
धिठमाहितà¥à¤¸à¤¾à¤ ॠhttps://bugs.gnucash.org/show_bug.cgi?id=645216 "
"पाहा."
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8486,16 +8485,16 @@ msgstr ""
"\"धारिà¤à¥à¤à¥à¤¯à¤¾ पदनिरà¥à¤ªà¤£à¤¾à¤¤ à¤à¥à¤\" à¤
सलà¥à¤¯à¤¾à¤à¥ नà¥à¤à¤¦ à¤à¤°à¥à¤²). à¤à¥à¤¨à¥ à¤à¤µà¥à¤¤à¥à¤¤à¥ साठवà¥à¤¨ ठà¥à¤µà¤£à¥à¤¯à¤¾à¤à¥ तà¥à¤®à¤à¥ "
"à¤à¤à¥à¤à¤¾ à¤
सलà¥à¤¯à¤¾à¤¸, न साठवता बाहà¥à¤° पडा. "
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "à¤à¤ à¤
परिà¤à¤¿à¤¤ I/O तà¥à¤°à¥à¤à¥(%d) à¤à¤²à¥. "
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "फाà¤à¤²à¤®à¤§à¥à¤¯à¥ बदल साठवायà¤à¥ à¤à¤¾?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8504,16 +8503,16 @@ msgid_plural ""
msgstr[0] "तà¥à¤®à¥à¤¹à¥ न साठवलà¥à¤¯à¤¾à¤¸ माà¤à¥à¤² %d मिनà¥à¤à¤¾à¤à¤ªà¤¾à¤¸à¥à¤¨à¤à¥ बदल तà¥à¤¯à¤¾à¤à¤²à¥ à¤à¤¾à¤¤à¥à¤²."
msgstr[1] "तà¥à¤®à¥à¤¹à¥ न साठवलà¥à¤¯à¤¾à¤¸ माà¤à¥à¤² %d मिनà¥à¤à¤¾à¤à¤ªà¤¾à¤¸à¥à¤¨à¤à¥ बदल तà¥à¤¯à¤¾à¤à¤²à¥ à¤à¤¾à¤¤à¥à¤²."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "न _साठवता पà¥à¤¢à¥ à¤à¤¾à¤²à¥ ठà¥à¤µà¤¾"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash %s साठॠलà¥à¤ पà¥à¤°à¤¾à¤ªà¥à¤¤ à¤à¤°à¥ शà¤à¤²à¤¾ नाहà¥."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8521,7 +8520,7 @@ msgstr ""
"à¤
नà¥à¤¯ à¤à¤à¤¾à¤¦à¤¾ यà¥à¤à¤° तà¥à¤¯à¤¾ डà¥à¤à¤¾à¤¬à¥à¤¸à¤à¤¾ à¤à¤ªà¤¯à¥à¤ à¤à¤°à¤¤ à¤
सावा, व à¤
शा सà¥à¤¥à¤¿à¤¤à¥à¤¤ तà¥à¤®à¥à¤¹à¥ हा डà¥à¤à¤¾à¤¬à¥à¤¸ à¤à¤à¤¡à¥ "
"नयà¥. तà¥à¤®à¥à¤¹à¥ à¤à¤¾à¤¯ à¤à¤°à¥ à¤à¤à¥à¤à¤¿à¤¤à¤¾?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8533,44 +8532,44 @@ msgstr ""
"लिहà¥à¤£à¥à¤¯à¤¾à¤à¥ परवानà¤à¥ नसावà¥. तà¥à¤®à¥à¤¹à¥ पà¥à¤¢à¥ à¤à¤¾à¤® à¤à¤¾à¤²à¥ ठà¥à¤µà¤²à¥ तरॠà¤à¥à¤²à¥à¤²à¥ बदल साठवॠशà¤à¤£à¤¾à¤° नाहà¥. "
"तà¥à¤®à¥à¤¹à¥ à¤à¤¾à¤¯ à¤à¤°à¥ à¤à¤à¥à¤à¤¿à¤¤à¤¾?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "à¤à¤à¤¡à¤¾_à¤à¥à¤µà¤³-वाà¤à¤¾"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_नवà¥à¤¨ फाà¤à¤² तयार à¤à¤°à¤¾"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "तरà¥à¤¹à¥_à¤à¤à¤¡à¤¾"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "सà¥à¤¥à¤¾à¤¨à¤§à¤¾à¤°à¤"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_बाहà¥à¤° पडा"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "यà¥à¤à¤° डà¥à¤à¤¾ लà¥à¤¡ à¤à¤°à¤¤ à¤à¤¹à¥"
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "यà¥à¤à¤° डà¥à¤à¤¾à¤à¥ पà¥à¤¨à¤à¤¸à¤¾à¤ वणॠà¤à¤°à¤¤ à¤à¤¹à¥... "
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "फाà¤à¤² निरà¥à¤¯à¤¾à¤¤ à¤à¤°à¤¤ à¤à¤¹à¥..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8581,7 +8580,7 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
@@ -8589,14 +8588,14 @@ msgstr ""
"माहितॠसà¤à¤à¥à¤°à¤¹ à¤à¥à¤µà¤³-वाà¤à¤£à¥à¤¯à¤¾à¤¯à¥à¤à¥à¤¯ मà¥à¤¹à¤£à¥à¤¨ à¤à¤à¤¡à¤²à¤¾ हà¥à¤¤à¤¾. तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ तॠवà¥à¤à¤³à¥à¤¯à¤¾ ठिà¤à¤¾à¤£à¥ सà¥à¤µà¥à¤¹ "
"à¤à¤°à¤¾à¤¯à¤à¤¾ à¤à¤¹à¥ à¤à¤¾?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "%s हॠफाà¤à¤² à¤à¤§à¥à¤ªà¤¾à¤¸à¥à¤¨ à¤
सà¥à¤¤à¤¿à¤¤à¥à¤µà¤¾à¤¤ à¤à¤¹à¥. तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ तॠनà¤à¥à¤à¥ à¤à¤µà¥à¤¹à¤°à¤°à¤¾à¤à¤ à¤à¤°à¤¾à¤¯à¤à¥ à¤à¤¹à¥ à¤à¤¾?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<à¤
परिà¤à¤¿à¤¤>"
@@ -9147,7 +9146,7 @@ msgstr ""
"नà¤à¥à¤à¤² वà¥à¤¯à¤µà¤¹à¤¾à¤°à¤¾à¤à¥ à¤à¤¾à¤¤à¤²à¥à¤²à¥ तारà¥à¤ या पà¥à¤¸à¥à¤¤à¤à¤¾à¤¸à¤¾à¤ ॠनिशà¥à¤à¤¿à¤¤ à¤à¥à¤²à¥à¤²à¥à¤¯à¤¾ \"à¤à¥à¤µà¤³-वाà¤à¤¾ सà¥à¤®à¤¾à¤°à¥à¤·à¥à¤ªà¥à¤à¥à¤·à¤¾"
"\" à¤à¥à¤¨à¥ à¤à¤¹à¥. हॠमाà¤à¤¡à¤£à¥ धारिà¤à¤¾->वà¥à¤¶à¤¿à¤·à¥à¤à¥à¤¯à¥->à¤à¤¾à¤¤à¥ यामधà¥à¤¯à¥ बदललॠà¤à¤¾à¤ शà¤à¤¤à¥."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/nb.po b/po/nb.po
index 91a69902b..fde8320fe 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: GnuCash 4.1\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2021-01-11 12:32+0000\n"
"Last-Translator: Allan Nordhøy <epost at anotheragency.no>\n"
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/gnucash/"
@@ -1304,7 +1304,7 @@ msgstr "Slette varen?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2589,7 +2589,7 @@ msgstr "Finn jobb"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Ã
pne"
@@ -3421,7 +3421,7 @@ msgid "Open an existing GnuCash file"
msgstr "Ã
pne en eksisterende GnuCash-fil"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6170,7 +6170,7 @@ msgid "You cannot save to that file."
msgstr "Du kan ikke lagre til den filen."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7452,7 +7452,7 @@ msgid "There was an error parsing the file."
msgstr "Det oppstod en feil under tolking av filen."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "Skriver fil..."
@@ -8299,7 +8299,7 @@ msgid "Import"
msgstr "Importer"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Lagre"
@@ -8488,8 +8488,7 @@ msgstr "Du har ikke tillatelse til å aksessere %s."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8500,7 +8499,7 @@ msgid ""
"Please try again in a different directory."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
#, fuzzy
msgid ""
"This database is from an older version of GnuCash. Select OK to upgrade it "
@@ -8509,14 +8508,14 @@ msgstr ""
"Denne databasen er fra en eldre versjon av GnuCash. Vil du oppgradere "
"databasen til nåværende versjon?"
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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 ""
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8527,7 +8526,7 @@ msgstr ""
"dokumentasjonen for å lære hvordan man fjerner gjenlevende "
"innloggingssesjoner."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8536,7 +8535,7 @@ msgid ""
"gnucash.org/show_bug.cgi?id=611936 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8544,7 +8543,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8552,16 +8551,16 @@ msgid ""
"you wish to preserve the old version, exit without saving."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "En ukjent inn-ut feil (%d) oppstod."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "Lagre endringene til filen?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, fuzzy, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8572,16 +8571,16 @@ msgstr[0] ""
msgstr[1] ""
"Hvis du ikke lagrer, vil endringer fra de siste %d minuttene forkastes."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "Fortsett _uten å lagre"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash får ikke låse %s."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8589,7 +8588,7 @@ msgstr ""
"Databasen kan være i bruk av en annen bruker, og da bør du ikke åpne den. "
"Hva vil du gjøre?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8601,46 +8600,46 @@ msgstr ""
"ikke skriverettigheter til katalogen. Hvis du fortsetter vil du ikke være i "
"stand til å lagre noen endringer. Hva vil du gjøre?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "Ã
pne _skrivebeskyttet"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_Opprett ny fil"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
#, fuzzy
msgid "Open _Anyway"
msgstr "_Ã
pne uansett"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
msgid "Open _Folder"
msgstr "Plassholder"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_Avslutt"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
#, fuzzy
msgid "Loading user data..."
msgstr "Laster data..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
#, fuzzy
msgid "Re-saving user data..."
msgstr "Laster data..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "Eksporterer filen..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8651,21 +8650,21 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
#, fuzzy
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr "Databasen %s eksisterer ikke. Vil du opprette den?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "Filen %s eksiterer allerede. Er du sikker på at du vil overskrive den?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<ukjent>"
@@ -9222,7 +9221,7 @@ msgid ""
">Properties->Accounts."
msgstr ""
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/ne.po b/po/ne.po
index bf0403d57..375f5d735 100644
--- a/po/ne.po
+++ b/po/ne.po
@@ -12,7 +12,7 @@ msgstr ""
"Project-Id-Version: gnucash 2.0\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2006-08-21 17:18+0545\n"
"Last-Translator: Shiva Prasad Pokharel <pokharelshiva at hotmail.com>\n"
"Language-Team: Nepali <info at mpp.org.np>\n"
@@ -1316,7 +1316,7 @@ msgstr "वसà¥à¤¤à¥ मà¥à¤à¥à¤¨à¥à¤¹à¥à¤¨à¥à¤ ?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2613,7 +2613,7 @@ msgstr "à¤à¤¾à¤® फà¥à¤²à¤¾ पारà¥à¤¨à¥à¤¹à¥à¤¸à¥"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "à¤à¥à¤²à¥à¤¨à¥à¤¹à¥à¤¸à¥"
@@ -3433,7 +3433,7 @@ msgid "Open an existing GnuCash file"
msgstr "à¤à¤à¤à¤¾ à¤
वसà¥à¤¥à¤¿à¤¤ à¤à¤¿à¤à¤¨à¤¯à¥à¤à¥à¤¯à¤¾à¤¸ फाà¤à¤² à¤à¥à¤²à¥à¤¨à¥à¤¹à¥à¤¸à¥"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6197,7 +6197,7 @@ msgid "You cannot save to that file."
msgstr "तपाà¤à¤à¤²à¥ तà¥à¤¯à¥ फाà¤à¤² बà¤à¤¤ à¤à¤°à¥à¤¨ सà¤à¥à¤¨à¥à¤¹à¥à¤¨à¥à¤¨à¥¤"
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7479,7 +7479,7 @@ msgid "There was an error parsing the file."
msgstr "तà¥à¤¯à¤¹à¤¾à¤ फाà¤à¤² पद वरà¥à¤£à¤¨ à¤à¤°à¥à¤¦à¤¾ à¤à¤à¤à¤¾ तà¥à¤°à¥à¤à¤¿ थियà¥à¥¤"
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "फाà¤à¤² लà¥à¤à¥à¤¦à¥..."
@@ -8322,7 +8322,7 @@ msgid "Import"
msgstr "à¤à¤¯à¤¾à¤¤ à¤à¤°à¥à¤¨à¥à¤¹à¥à¤¸à¥"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "बà¤à¤¤ à¤à¤°à¥à¤¨à¥à¤¹à¥à¤¸à¥"
@@ -8510,8 +8510,7 @@ msgstr "तपाà¤à¤¸à¤à¤ %s मा पहà¤à¤ à¤à¤°à¥à¤¨à¥ à¤
नà¥
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8522,7 +8521,7 @@ msgid ""
"Please try again in a different directory."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
#, fuzzy
msgid ""
"This database is from an older version of GnuCash. Select OK to upgrade it "
@@ -8531,14 +8530,14 @@ msgstr ""
"फाà¤à¤² à¤à¤¿à¤à¤¨à¤¯à¥à¤à¥à¤¯à¤¾à¤¸à¤à¥ पà¥à¤°à¤¾à¤¨à¥ सà¤à¤¸à¥à¤à¤°à¤£à¤¬à¤¾à¤ हà¥à¥¤ à¤à¥ तपाà¤à¤ हालà¤à¥ सà¤à¤¸à¥à¤à¤°à¤£à¤®à¤¾ डà¥à¤à¤¾à¤¬à¥à¤¸ सà¥à¤¤à¤°à¤µà¥à¤¦à¥à¤§à¤¿ à¤à¤°à¥à¤¨ "
"à¤à¤¾à¤¹à¤¨à¥à¤¹à¥à¤¨à¥à¤?"
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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 ""
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8548,7 +8547,7 @@ msgstr ""
"समà¥à¤ªà¤¾à¤¦à¤¨ à¤à¤°à¥à¤¨ सà¤à¤¿à¤¦à¥à¤à¤¨à¥¤ यदि तà¥à¤¯à¤¹à¤¾à¤ हाल à¤à¥à¤¨à¥ हनà¥à¤¯ पà¥à¤°à¤¯à¥à¤à¤à¤°à¥à¤¤à¤¾ à¤à¥ à¤à¤¨à¥, लà¤à¤à¤¨ सतà¥à¤°à¤¹à¤°à¥ à¤à¤¸à¤°à¥ à¤à¤¾à¤²à¥ "
"à¤à¤°à¥à¤¨à¥ सॠà¤à¤¾à¤¨à¥à¤¨ à¤
à¤à¤¿à¤²à¥à¤à¤¿à¤à¤°à¤£à¤¸à¤à¤ सलà¥à¤²à¤¾à¤¹ à¤à¤°à¥à¤¨à¥à¤¹à¥à¤¸à¥à¥¤"
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8557,7 +8556,7 @@ msgid ""
"gnucash.org/show_bug.cgi?id=611936 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8565,7 +8564,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8573,16 +8572,16 @@ msgid ""
"you wish to preserve the old version, exit without saving."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "à¤
à¤à¥à¤à¤¾à¤¤ à¤à¤à¤¤/निरà¥à¤à¤¾à¤¤ तà¥à¤°à¥à¤à¤¿ (%d) दà¥à¤à¤¾à¤ªà¤°à¥à¤¯à¥à¥¤"
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "फाà¤à¤²à¤®à¤¾ परिवरà¥à¤¤à¤¨à¤¹à¤°à¥ बà¤à¤¤ à¤à¤°à¥à¤¨à¥ हà¥?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, fuzzy, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8591,16 +8590,16 @@ msgid_plural ""
msgstr[0] "यदि तपाà¤à¤à¤²à¥ बà¤à¤¤ à¤à¤°à¥à¤¨à¥ à¤à¤à¤¨ à¤à¤¨à¥, पà¤à¤¿à¤²à¥à¤²à¥ %d मिनà¥à¤à¤¬à¤¾à¤ परिवरà¥à¤¤à¤¨à¤¹à¤°à¥ à¤à¥à¤¡à¤¿à¤¨à¥à¤à¥¤"
msgstr[1] "यदि तपाà¤à¤à¤²à¥ बà¤à¤¤ à¤à¤°à¥à¤¨à¥ à¤à¤à¤¨ à¤à¤¨à¥, पà¤à¤¿à¤²à¥à¤²à¥ %d मिनà¥à¤à¤¬à¤¾à¤ परिवरà¥à¤¤à¤¨à¤¹à¤°à¥ à¤à¥à¤¡à¤¿à¤¨à¥à¤à¥¤"
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "बà¤à¤¤ नà¤à¤°à¥ à¤à¤¾à¤°à¥ राà¤à¥à¤¨à¥à¤¹à¥à¤¸à¥"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "%s à¤à¥ लाà¤à¤¿ à¤à¤¿à¤à¤¨à¤¯à¥à¤à¥à¤¯à¤¾à¤¸à¤²à¥ लठपà¥à¤°à¤¾à¤ªà¥à¤¤ à¤à¤°à¥à¤¨ सà¤à¥à¤¨à¥¤"
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8608,7 +8607,7 @@ msgstr ""
"तà¥à¤¯à¥ डà¥à¤à¤¾à¤¬à¥à¤¸ à¤
रà¥à¤à¥ पà¥à¤°à¤¯à¥à¤à¤à¤°à¥à¤¤à¤¾à¤¦à¥à¤µà¤¾à¤°à¤¾ पà¥à¤°à¤¯à¥à¤à¤®à¤¾ हà¥à¤¨à¤¸à¤à¥à¤, à¤à¥à¤¨à¤¬à¥à¤²à¤¾ तपाà¤à¤à¤²à¥ डà¥à¤à¤¾à¤µà¥à¤¸ à¤à¥à¤²à¥à¤¨ सà¤à¥à¤¨à¥à¤¹à¥à¤¨à¥à¤¨à¥¤ "
"तपाà¤à¤ à¤à¥ à¤à¤°à¥à¤¨ à¤à¤¾à¤¹à¤¨à¥à¤¹à¥à¤¨à¥à¤?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8620,47 +8619,47 @@ msgstr ""
"नहà¥à¤¨à¤¸à¤à¥à¤à¥¤ यदि तपाà¤à¤à¤²à¤¾à¤ à¤
नà¥à¤®à¤¤à¤¿ ठà¤à¤¨à¥ तपाà¤à¤à¤²à¥ à¤à¥à¤¨à¥ पनि परिवरà¥à¤¤à¤¨à¤¹à¤°à¥ बà¤à¤¤ à¤à¤°à¥à¤¨ सायद सà¤à¥à¤¨à¥à¤¹à¥à¤¨à¥à¤¨à¥¤ "
"तपाà¤à¤ à¤à¥ à¤à¤°à¥à¤¨ à¤à¤¾à¤¹à¤¨à¥à¤¹à¥à¤¨à¥à¤?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "नयाठफाà¤à¤² सिरà¥à¤à¤¨à¤¾ à¤à¤°à¥à¤¨à¥à¤¹à¥à¤¸à¥"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
#, fuzzy
msgid "Open _Anyway"
msgstr "à¤à¥ à¤à¤à¤ªà¤¨à¤¿ à¤à¥à¤²à¥à¤¨à¥à¤¹à¥à¤¸à¥"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "पà¥à¤²à¥à¤¸à¤¹à¥à¤²à¥à¤¡à¤°"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "à¤
नà¥à¤¤à¥à¤¯"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
#, fuzzy
msgid "Loading user data..."
msgstr "डà¥à¤à¤¾ लà¥à¤¡ à¤à¤°à¥à¤¦à¥à¤..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
#, fuzzy
msgid "Re-saving user data..."
msgstr "डà¥à¤à¤¾ लà¥à¤¡ à¤à¤°à¥à¤¦à¥à¤..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "फाà¤à¤² निरà¥à¤¯à¤¾à¤¤ à¤à¤°à¥à¤¦à¤¾..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8671,14 +8670,14 @@ msgstr ""
"\n"
"%s "
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
#, fuzzy
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr "डà¥à¤à¤¾à¤¬à¥à¤¸ %s à¤
वसà¥à¤¥à¤¿à¤¤ ठà¤à¤¸à¥à¤¤à¥ दà¥à¤à¤¿à¤à¤¦à¥à¤¨à¥¤ à¤à¥ तपाà¤à¤ तà¥à¤¯à¥ सिरà¥à¤à¤¨à¤¾ à¤à¤°à¥à¤¨ à¤à¤¾à¤¹à¤¨à¥à¤¹à¥à¤¨à¥à¤?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
@@ -8686,7 +8685,7 @@ msgid ""
msgstr ""
"फाà¤à¤² %s पहिलॠनॠà¤
वसà¥à¤¥à¤¿à¤¤ à¤à¥¤ à¤à¥ तपाà¤à¤ निशà¥à¤à¤¯ रà¥à¤ªà¤®à¤¾ तà¥à¤¯à¤¸ माथि à¤
धिलà¥à¤à¤¨ à¤à¤°à¥à¤¨ à¤à¤¾à¤¹à¤¨à¥à¤¹à¥à¤¨à¥à¤?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<à¤
à¤à¥à¤à¤¾à¤¤>"
@@ -9234,7 +9233,7 @@ msgid ""
">Properties->Accounts."
msgstr ""
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
#, fuzzy
diff --git a/po/nl.po b/po/nl.po
index 3d0070acb..0c1cca106 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -15,7 +15,7 @@ msgstr ""
"Project-Id-Version: GnuCash 4.1\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2020-12-15 17:04+0000\n"
"Last-Translator: Geert Janssens <geert.gnucash at kobaltwit.be>\n"
"Language-Team: Dutch <https://hosted.weblate.org/projects/gnucash/gnucash/nl/"
@@ -1359,7 +1359,7 @@ msgstr "Goed (effect/valuta) verwijderen?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2632,7 +2632,7 @@ msgstr "Opdracht zoeken"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Openen"
@@ -3444,7 +3444,7 @@ msgid "Open an existing GnuCash file"
msgstr "Een bestaand GnuCash-bestand openen"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6114,7 +6114,7 @@ msgid "You cannot save to that file."
msgstr "U kunt niet als dat bestand opslaan."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7390,7 +7390,7 @@ msgid "There was an error parsing the file."
msgstr "Er is een fout opgetreden bij het verwerken van het bestand."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "Bestand aan het opslaan..."
@@ -8243,7 +8243,7 @@ msgid "Import"
msgstr "Importeren"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Opslaan"
@@ -8443,8 +8443,7 @@ msgstr "U hebt geen leesrechten op bestand %s."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8461,7 +8460,7 @@ msgstr ""
"\n"
"Probeer het nogmaals in een andere map."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8470,7 +8469,7 @@ msgstr ""
"de databank te upgraden naar de huidige versie of [Annuleren] om deze als "
"alleen-lezen te markeren."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8482,7 +8481,7 @@ msgstr ""
"âBestandâ£Opslaan als...â uitvoert, maar mogelijk raken er gegevens verloren "
"tijdens het opslaan naar de oude versie."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8493,7 +8492,7 @@ msgstr ""
"gebruikers zijn, raadpleeg dan de documentatie om uit te zoeken hoe u "
"problemen met onafgesloten sessies kunt verhelpen."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8507,7 +8506,7 @@ msgstr ""
"opgelost door de installatie van een andere versie van âlibdbiâ. Zie https://"
"bugs.gnucash.org/show_bug.cgi?id=611936 voor meer informatie."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8519,7 +8518,7 @@ msgstr ""
"verkeerde configuratie van rechten binnen uw SQL-database. Zie https://bugs."
"gnucash.org/show_bug.cgi?id=645216 voor meer informatie."
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8532,16 +8531,16 @@ msgstr ""
"opgetreden bij het verwerken van het bestand\"). Om de oude versie te "
"bewaren: afsluiten zonder opslaan."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "Er is een onbekende I/O fout (%d) opgetreden."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "Wijzigingen in het bestand opslaan?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8553,16 +8552,16 @@ msgstr[1] ""
"Zonder opslaan gaan alle wijzigingen tijdens de afgelopen %d minuten "
"verloren."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "Doorgaan _zonder opslaan"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash kon geen exclusieve schrijfrechten op %s verkrijgen."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8571,7 +8570,7 @@ msgstr ""
"geval u de databank beter niet kunt openen. Wilt u doorgaan met het openen "
"van de databank?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8583,44 +8582,44 @@ msgstr ""
"geen schrijfrechten op de map. Wanneer u doorgaat, kunt u waarschijnlijk de "
"wijzigingen niet opslaan. Wat wilt u doen?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "Open _alleen-lezen"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_Nieuw bestand aanmaken"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "_Toch openen"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "aggregatie"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "A_fsluiten"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "Laden van gebruikersgegevens..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "Opnieuw opslaan van gebruikersgegevens..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "Bestand exporteren..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8631,7 +8630,7 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
@@ -8639,7 +8638,7 @@ msgstr ""
"De databank was geopend voor alleen-lezen. Wilt u deze op een andere plaats "
"opslaan?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
@@ -8648,7 +8647,7 @@ msgstr ""
"Terugdraaien zal alle niet opgeslagen wijzigingen in %s verwerpen. Weet u "
"zeker dat u door wilt gaan?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<onbekend>"
@@ -9211,7 +9210,7 @@ msgstr ""
"lezenâ-drempel die is ingesteld voor deze boekhouding. Deze instelling kan "
"gewijzigd worden onder menukeuze âBestandâ£Eigenschappenâ£Rekeningenâ."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/pl.po b/po/pl.po
index 1e5de4e66..451ca4fbc 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: gnucash 3.8\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2020-01-01 17:51+0000\n"
"Last-Translator: MichaÅ CioÅek <michalciolek at gmail.com>\n"
"Language-Team: Polish <translators at gnomepl.org>\n"
@@ -1288,7 +1288,7 @@ msgstr "UsunÄ
Ä rodzaj Årodków?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2569,7 +2569,7 @@ msgstr "Znajdź zadanie"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Otwórz"
@@ -3384,7 +3384,7 @@ msgid "Open an existing GnuCash file"
msgstr "Otwiera istniejÄ
cy plik GnuCash"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6145,7 +6145,7 @@ msgid "You cannot save to that file."
msgstr "Nie można zapisaÄ do tego pliku."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7439,7 +7439,7 @@ msgid "There was an error parsing the file."
msgstr "WystÄ
piÅ bÅÄ
d w trakcie przetwarzania pliku."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "Zapisywanie pliku..."
@@ -8301,7 +8301,7 @@ msgid "Import"
msgstr "Importuj"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Zapisz"
@@ -8498,8 +8498,7 @@ msgstr "Nie masz uprawnieÅ odczytu pliku %s."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8516,7 +8515,7 @@ msgstr ""
"\n"
"Spróbuj ponownie w innym katalogu."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
#, fuzzy
msgid ""
"This database is from an older version of GnuCash. Select OK to upgrade it "
@@ -8525,7 +8524,7 @@ msgstr ""
"Ta baza danych pochodzi ze starszej wersji GnuCash. Czy chcesz jÄ
uaktualniÄ "
"do formatu bazy danych obecnej wersji?"
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8537,7 +8536,7 @@ msgstr ""
"jako. PamiÄtaj, że dane mogÄ
zostaÄ utracone podczas zapisywania w starszej "
"wersji."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8548,7 +8547,7 @@ msgstr ""
"korzystajÄ
z niej inni użytkownicy, sprawdź w dokumentacji jak usunÄ
Ä "
"zawieszone sesje użytkowników."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8557,7 +8556,7 @@ msgid ""
"gnucash.org/show_bug.cgi?id=611936 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8565,7 +8564,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8573,16 +8572,16 @@ msgid ""
"you wish to preserve the old version, exit without saving."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "WystÄ
piÅ nieznany bÅÄ
d wejÅcia/wyjÅcia (%d)."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "ZapisaÄ zmiany do pliku?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, fuzzy, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8598,16 +8597,16 @@ msgstr[2] ""
"JeÅli nie zapiszesz zmian, wszystkie modyfikacje z ostatnich %d minut bÄdÄ
"
"utracone."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "Kontynuuj _bez zapisywania"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash nie mógÅ uzyskaÄ dostÄpu do blokady dla %s."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8615,7 +8614,7 @@ msgstr ""
"Ta baza danych może byÄ używana przez innego użytkownika, a w tym przypadku "
"nie powinno siÄ jej otwieraÄ. JakÄ
operacjÄ chcesz wykonaÄ?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8628,45 +8627,45 @@ msgstr ""
"kontynuowaÅ pracÄ, możesz nie mieÄ możliwoÅci zapisu jakichkolwiek zmian. "
"JakÄ
operacjÄ chcesz wykonaÄ?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "Otwórz _tylko do odczytu"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_Utwórz nowy plik"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
#, fuzzy
msgid "Open _Anyway"
msgstr "_Otwórz mimo to"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
msgid "Open _Folder"
msgstr "WypeÅniacz"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "Za_koÅcz"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "Wczytywanie danych..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
#, fuzzy
msgid "Re-saving user data..."
msgstr "Wczytywanie danych..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "Eksportowanie pliku..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8677,21 +8676,21 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
#, fuzzy
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr "Baza danych %s prawdopodobnie nie istnieje. Czy chcesz jÄ
utworzyÄ?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "Plik %s już istnieje. Czy na pewno chcesz go zastÄ
piÄ?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<nieznane>"
@@ -9254,7 +9253,7 @@ msgstr ""
"odczytuâ ustawiony dla tej ksiÄ
żki. To ustawienie można zmieniÄ w Plik-"
">WÅaÅciwoÅci->Konta."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
#, fuzzy
diff --git a/po/pt.po b/po/pt.po
index 57724607d..be0e02c30 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: gnucash-4.3-pre1\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2021-01-11 16:57+0000\n"
"Last-Translator: Pedro Albuquerque <pmra at protonmail.com>\n"
"Language-Team: Portuguese <translation-team-pt at lists.sourceforge.net>\n"
@@ -1333,7 +1333,7 @@ msgstr "Eliminar mercadoria?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2607,7 +2607,7 @@ msgstr "Localizar tarefa"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Abrir"
@@ -3430,7 +3430,7 @@ msgid "Open an existing GnuCash file"
msgstr "Abrir um ficheiro existente do GnuCash"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6045,7 +6045,7 @@ msgid "You cannot save to that file."
msgstr "Não pode gravar nesse ficheiro."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7326,7 +7326,7 @@ msgid "There was an error parsing the file."
msgstr "Ocorreu um erro ao processar o ficheiro."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "A escrever o ficheiro..."
@@ -8184,7 +8184,7 @@ msgid "Import"
msgstr "Importar"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Gravar"
@@ -8377,8 +8377,7 @@ msgstr "Sem permissões para ler o ficheiro %s."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8395,7 +8394,7 @@ msgstr ""
"\n"
"Por favor, tente novamente numa pasta diferente."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8405,7 +8404,7 @@ msgstr ""
"anterior do GnuCash. Clique em Aceitar para a actualizar para a versão "
"actual ou Cancelar para a marcar como só de leitura."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8416,7 +8415,7 @@ msgstr ""
"de leitura até que escolha Ficheiro -> Gravar como, mas poderá perder dados "
"ao gravar numa versão anterior."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8427,7 +8426,7 @@ msgstr ""
"utilizadores, consulte a documentação para ver como limpar sessões "
"penduradas."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8441,7 +8440,7 @@ msgstr ""
"uma versão diferente da \"libdbi\". Por favor, veja https://bugs.gnucash.org/"
"show_bug.cgi?id=611936 para mais informação."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8453,7 +8452,7 @@ msgstr ""
"permissões na sua base de dados SQL. Por favor, veja https://bugzilla.gnome."
"org/show_bug.cgi?id=645216 para mais informação."
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8465,16 +8464,16 @@ msgstr ""
"do GnuCash (devolverá um erro \"Erro ao processar o ficheiro\"). Se quiser "
"preservar a versão antiga, saia sem gravar."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "Ocorreu um erro desconhecido (%d) de E/S."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "Gravar alterações ao ficheiro?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8484,16 +8483,16 @@ msgstr[0] "Se não gravar, as alterações do último %d minuto serão descartad
msgstr[1] ""
"Se não gravar, as alterações dos últimos %d minutos serão descartadas."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "Continuar sem gra_var"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "O GnuCash não conseguiu trancar %s."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8501,7 +8500,7 @@ msgstr ""
"Essa base de dados pode estar aberta por outro utilizador e, nesse caso, não "
"deverá tentar abri-la. O que quer fazer?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
msgid ""
"That database may be on a read-only file system, you may not have write "
"permission for the directory, or your anti-virus software is preventing this "
@@ -8512,40 +8511,40 @@ msgstr ""
"escrever nessa pasta ou o seu antivÃrus pode estar a impedir a acção. Se "
"continuar, não poderá gravar nenhumas alterações. O que quer fazer?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "Ab_rir só para leitura"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
msgid "Create _New File"
msgstr "Criar _novo ficheiro"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "_Abrir mesmo assim"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
msgid "Open _Folder"
msgstr "Abrir _pasta"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_Sair"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "A carregar dados..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "A regravar dados..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "A exportar o ficheiro..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8556,7 +8555,7 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
@@ -8564,7 +8563,7 @@ msgstr ""
"A base de dados foi aberta só para leitura. Quer gravá-la num local "
"diferente?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
@@ -8573,7 +8572,7 @@ msgstr ""
"Reverter vai descartar todas as alterações a %s. Tem a certeza que quer "
"continuar?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<desconhecido>"
@@ -9114,7 +9113,7 @@ msgstr ""
"definido para este livro. Pode alterar esta definição em Ficheiro -> "
"Propriedades -> Contas."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 17dfbc561..a07eb2d48 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -16,7 +16,7 @@ msgstr ""
"Project-Id-Version: GnuCash 2.2\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2021-01-21 13:32+0000\n"
"Last-Translator: José Lemos Neto <lemosjosex at protonmail.com>\n"
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
@@ -1344,7 +1344,7 @@ msgstr "Excluir commodity?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2642,7 +2642,7 @@ msgstr "Localizar Projeto"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Abrir"
@@ -3459,7 +3459,7 @@ msgid "Open an existing GnuCash file"
msgstr "Abrir um arquivo do GnuCash"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6159,7 +6159,7 @@ msgid "You cannot save to that file."
msgstr "Não foi possÃvel salvar nesse arquivo."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7450,7 +7450,7 @@ msgid "There was an error parsing the file."
msgstr "Ocorreu um erro ao analisar o arquivo."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "Salvando arquivo..."
@@ -8302,7 +8302,7 @@ msgid "Import"
msgstr "Importar"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Gravar"
@@ -8497,8 +8497,7 @@ msgstr "Sem permissão de leitura para ler o arquivo %s."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8515,7 +8514,7 @@ msgstr ""
"\n"
"Por favor, tente novamente com um diretório diferente."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8524,7 +8523,7 @@ msgstr ""
"atualizar a base de dados para a versão atual, or Cancelar para marca-lo "
"como apenas-leitura."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8535,7 +8534,7 @@ msgstr ""
"marcada como apenas-leitura até que você salve usando o menu Arquivo->Salvar "
"como. Pode haver perda de dados ao escrever em versões mais antigas."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8546,7 +8545,7 @@ msgstr ""
"outros usuários, consulte a documentação para saber como fechar sessões de "
"login penduradas."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -8562,7 +8561,7 @@ msgstr ""
"Por favor, veja o link https://bugs.gnucash.org/show_bug.cgi?id=611936 para "
"mais informações."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8574,7 +8573,7 @@ msgstr ""
"incorretas na sua base de dados. por favor, veja o link https://bugzilla."
"gnome.org/show_bug.cgi?id=645216 para mais informações."
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8586,16 +8585,16 @@ msgstr ""
"antigas do Gnucash (ele irá avisa-lo com a mensagem \"erro ao analisar o "
"arquivo\"). Se você deseja manter a versão antiga, saia sem salvar."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "Ocorreu um erro de E/S (%d) desconhecido."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "Gravar alterações no arquivo?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8605,16 +8604,16 @@ msgstr[0] "Se você não salvar, a mudança do último %d minuto será descartad
msgstr[1] ""
"Se você não salvar, as mudanças dos últimos %d minutos serão descartadas."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "Continuar _Sem Gravar"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "O GnuCash não conseguiu obter trava (\"lock\") para %s."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8622,7 +8621,7 @@ msgstr ""
"Essa base de dados pode estar sendo usada por outro usuário, e nesse caso "
"você não deveria usá-la. O que você deseja fazer?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8635,43 +8634,43 @@ msgstr ""
"prosseguir, talvez não possa salvar quaisquer alterações. O que você "
"gostaria de fazer?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "Abra _Apenas-Leitura"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_Criar um Novo Arquivo"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "_Abrir Assim Mesmo"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
msgid "Open _Folder"
msgstr "não-editável"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "Sai_r"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "Carregando dados..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "Re-escrevendo dados..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "Exportando arquivo..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8682,7 +8681,7 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
@@ -8690,14 +8689,14 @@ msgstr ""
"A base de dados foi aberta como apenas-leitura. Você quer salvar em um local "
"diferente ?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "O arquivo %s já existe. Você tem certeza de que deseja sobrescrevê-lo?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<desconhecido>"
@@ -9253,7 +9252,7 @@ msgstr ""
"(\"Read-Only Threshold\") configurado para esse Livro. Esse ajuste pode ser "
"alterado pelo menu Arquivo->Propriedades->Contas."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/ro.po b/po/ro.po
index 18ed2678c..65c1029c1 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -11,7 +11,7 @@ msgstr ""
"Project-Id-Version: gnucash 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2020-07-01 19:19+0200\n"
"Last-Translator: Daniel ÈerbÄnescu <daniel at serbanescu.dk>\n"
"Language-Team: Romanian <translation-team-ro at lists.sourceforge.net>\n"
@@ -1346,7 +1346,7 @@ msgstr "Ètergi marfa?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2650,7 +2650,7 @@ msgstr "GÄseÈte funcÈie"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Deschide"
@@ -3473,7 +3473,7 @@ msgid "Open an existing GnuCash file"
msgstr "Deschide un fiÈier GnuCash existent"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6303,7 +6303,7 @@ msgid "You cannot save to that file."
msgstr "Nu poÈi salva în acel fiÈier."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7645,7 +7645,7 @@ msgid "There was an error parsing the file."
msgstr "A apÄrut o eroare la analiza fiÈierului."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "Se scrie fiÈierul..."
@@ -8538,7 +8538,7 @@ msgid "Import"
msgstr "ImportÄ"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "SalveazÄ"
@@ -8737,8 +8737,7 @@ msgstr "Nu existÄ permisiuni pentru a citi din fiÈierul %s."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8749,7 +8748,7 @@ msgid ""
"Please try again in a different directory."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
#, fuzzy
msgid ""
"This database is from an older version of GnuCash. Select OK to upgrade it "
@@ -8758,14 +8757,14 @@ msgstr ""
"AceastÄ bazÄ de date este dintr-o versiune veche de GnuCash. Vrei sÄ "
"actualizezi baza de date la versiunea curentÄ?"
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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 ""
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8776,7 +8775,7 @@ msgstr ""
"utilizatori, consultÄ documentaÈia pentru a învÄÈa cum sÄ Ètergi sesiunile "
"de autentificare izolate."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8785,7 +8784,7 @@ msgid ""
"gnucash.org/show_bug.cgi?id=611936 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8793,7 +8792,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8801,16 +8800,16 @@ msgid ""
"you wish to preserve the old version, exit without saving."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "A intervenit o eroare necunoscutÄ (%d) de I/E."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "SalvaÈi schimbÄrile în fiÈier?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, fuzzy, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8823,16 +8822,16 @@ msgstr[1] ""
msgstr[2] ""
"DacÄ nu salvaÈi, schimbÄrile din ultimele %d minute vor fi pierdute."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "ContinuÄ _fÄrÄ salvare"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash nu a putut obÈine accesul exclusiv la %s."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8840,7 +8839,7 @@ msgstr ""
"Baza de date ar putea fi folositÄ de alt utilizator, caz în care nu ar "
"trebui sÄ o deschideÈi. Ce doriÈi sÄ faceÈi?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
#| msgid ""
#| "That database may be on a read-only file system, or you may not have "
@@ -8856,46 +8855,46 @@ msgstr ""
"scriere în director. DacÄ veÈi continua, nu veÈi putea salva schimbÄrile. Ce "
"doriÈi sÄ faceÈi?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_CreazÄ fiÈier nou"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
#, fuzzy
msgid "Open _Anyway"
msgstr "_Deschide oricum"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
msgid "Open _Folder"
msgstr "Global"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "I_eÈire"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
#, fuzzy
msgid "Loading user data..."
msgstr "ÃncÄrcare datÄ..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
#, fuzzy
msgid "Re-saving user data..."
msgstr "ÃncÄrcare datÄ..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "Se exportÄ fiÈierul..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8906,21 +8905,21 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
#, fuzzy
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr "Baza de date %s pare sÄ nu existe. Vrei s-o creezi?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "FiÈierul %s existÄ deja. SunteÈi sigur cÄ doriÈi sÄ o suprascrieÈi?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<necunoscut>"
@@ -9487,7 +9486,7 @@ msgid ""
">Properties->Accounts."
msgstr ""
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
#, fuzzy
diff --git a/po/ru.po b/po/ru.po
index 348367fef..ed85aa18d 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -16,7 +16,7 @@ msgstr ""
"Project-Id-Version: GnuCash 2.7.3\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2021-01-18 10:32+0000\n"
"Last-Translator: Val Saven <val.saven at gmail.com>\n"
"Language-Team: Russian <https://hosted.weblate.org/projects/gnucash/gnucash/"
@@ -1332,7 +1332,7 @@ msgstr "УдалиÑÑ ÑоваÑ?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2619,7 +2619,7 @@ msgstr "ÐайÑи опеÑаÑиÑ"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "ÐÑкÑÑÑÑ"
@@ -3426,7 +3426,7 @@ msgid "Open an existing GnuCash file"
msgstr "ÐÑкÑÑÑÑ ÑÑÑеÑÑвÑÑÑий Ñайл GnuCash"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6131,7 +6131,7 @@ msgid "You cannot save to that file."
msgstr "ÐÑ Ð½Ðµ можеÑе ÑоÑ
ÑанÑÑÑ Ð² ÑÑÐ¾Ñ Ñайл."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7419,7 +7419,7 @@ msgid "There was an error parsing the file."
msgstr "ÐÑоизоÑла оÑибка обÑабоÑки Ñайла."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "ÐапиÑÑ Ñайла..."
@@ -8286,7 +8286,7 @@ msgid "Import"
msgstr "ÐмпоÑÑ"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "_СоÑ
ÑаниÑÑ"
@@ -8481,8 +8481,7 @@ msgstr "ÐÐµÑ Ð¿Ñав на ÑÑение Ñайла \"%s\"."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8499,7 +8498,7 @@ msgstr ""
"\n"
"СледÑÐµÑ Ð²ÑбÑаÑÑ Ð´ÑÑгой каÑалог."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8507,7 +8506,7 @@ msgstr ""
"ÐÑа база даннÑÑ
Ð¾Ñ Ð±Ð¾Ð»ÐµÐµ Ñанней веÑÑии GnuCash. ÐажмиÑе ÐÐ Ð´Ð»Ñ Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ "
"Ð±Ð°Ð·Ñ Ð¸Ð»Ð¸ ÐÑменÑ, ÑÑÐ¾Ð±Ñ Ð¾ÑмеÑиÑÑ ÐµÑ ÑолÑко Ð´Ð»Ñ ÑÑениÑ."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8518,7 +8517,7 @@ msgstr ""
"бÑÐ´ÐµÑ ÑоÑ
Ñанена под дÑÑгим именем, Ñем не менее пÑи запиÑи ÑÑаÑой веÑÑией "
"ÑаÑÑи даннÑÑ
Ð¼Ð¾Ð¶ÐµÑ Ð±ÑÑÑ ÑÑеÑÑна."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8529,7 +8528,7 @@ msgstr ""
"Ð½ÐµÑ Ð´ÑÑгиÑ
полÑзоваÑелей, Ñо обÑаÑиÑеÑÑ Ðº докÑменÑаÑии, ÑÑÐ¾Ð±Ñ Ð¿Ð¾Ð½ÑÑÑ ÐºÐ°Ðº "
"оÑиÑÑиÑÑ Ð¸Ð½ÑоÑмаÑÐ¸Ñ Ð¾Ð± оÑкÑÑÑÑÑ
ÑеÑÑиÑÑ
."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -8544,7 +8543,7 @@ msgstr ""
"иÑпÑавлено ÑÑÑановкой дÑÑгой веÑÑии \"libdbi\". Ðо ÑÑÑлке https://bugzilla."
"gnome.org/show_bug.cgi?id=611936 можно ÑзнаÑÑ Ð¿Ð¾Ð´ÑобноÑÑи."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8556,7 +8555,7 @@ msgstr ""
"пÑавами доÑÑÑпа в ваÑей SQL ÐÐ. Ðолее подÑобнÑÑ Ð¸Ð½ÑоÑмаÑÐ¸Ñ ÑмоÑÑиÑе на "
"ÑÑÑаниÑе https://bugs.gnucash.org/show_bug.cgi?id=645216."
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8568,16 +8567,16 @@ msgstr ""
"веÑÑии (она вÑдаÑÑ Ð¾ÑÐ¸Ð±ÐºÑ \"оÑибка пÑи обÑабоÑке Ñайла\"). ÐÑли Ð²Ñ Ñ
оÑиÑе "
"ÑоÑ
ÑаниÑÑ ÑовмеÑÑимоÑÑÑ Ñо ÑÑаÑой веÑÑией, вÑйдиÑе без ÑоÑ
ÑанениÑ."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "ÐÑоизоÑла неизвеÑÑÐ½Ð°Ñ Ð¾Ñибка ввода-вÑвода (%d)."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "СоÑ
ÑаниÑÑ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð² Ñайл?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8590,16 +8589,16 @@ msgstr[1] ""
msgstr[2] ""
"ÐÑли Ð²Ñ Ð½Ðµ ÑоÑ
ÑаниÑеÑÑ, Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð·Ð° поÑледние %d минÑÑ Ð±ÑдÑÑ Ð¿Ð¾ÑеÑÑнÑ."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "ÐÑодолжиÑÑ _без ÑоÑ
ÑанениÑ"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash не Ð¼Ð¾Ð¶ÐµÑ Ð·Ð°Ð±Ð»Ð¾ÐºÐ¸ÑоваÑÑ \"%s\"."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8607,7 +8606,7 @@ msgstr ""
"ÐÑкÑÑваемÑй Ñайл (база даннÑÑ
) Ð¼Ð¾Ð¶ÐµÑ Ð¸ÑполÑзоваÑÑÑÑ Ð´ÑÑгим полÑзоваÑелем, в "
"ÑÑом ÑлÑÑае Ð²Ñ Ð½Ðµ Ð´Ð¾Ð»Ð¶Ð½Ñ ÐµÐ³Ð¾ оÑкÑÑваÑÑ. ÐÑодолжиÑÑ?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8619,44 +8618,44 @@ msgstr ""
"ÑÑениÑ, или Ñ Ð²Ð°Ñ Ð½ÐµÑ Ð¿Ñав на запиÑÑ Ð½Ð° папкÑ. ÐÑли Ð²Ñ Ð¿ÑодолжиÑе, Ñо не "
"ÑможеÑе ÑоÑ
ÑаниÑÑ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ. ÐÑодолжиÑÑ?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "ÐÑкÑÑÑÑ ÑолÑко Ð´Ð»Ñ _ÑÑениÑ"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_СоздаÑÑ Ð½Ð¾Ð²Ñй Ñайл"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "ÐÑÑ Ñавно _оÑкÑÑÑÑ"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "виÑÑÑалÑнÑй"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "Ð_ÑÑ
од"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "ÐагÑÑжаÑÑÑÑ Ð´Ð°Ð½Ð½Ñе..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "ÐеÑеÑоÑ
ÑанÑÑÑÑÑ Ð´Ð°Ð½Ð½Ñе..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "ÐкÑпоÑÑ Ñайла..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8667,7 +8666,7 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
@@ -8675,7 +8674,7 @@ msgstr ""
"Ðаза даннÑÑ
бÑла оÑкÑÑÑа ÑолÑко Ð´Ð»Ñ ÑÑениÑ. ÐÑ Ñ
оÑиÑе ÑоÑ
ÑаниÑÑ ÐµÑ Ð² дÑÑгое "
"меÑÑо?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
@@ -8684,7 +8683,7 @@ msgstr ""
"ÐозвÑÐ°Ñ Ð¾ÑÐ¼ÐµÐ½Ð¸Ñ Ð²Ñе неÑоÑ
ÑанÑннÑе Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð² %s. ÐÑ ÑвеÑенÑ, ÑÑо Ñ
оÑиÑе "
"пÑодолжиÑÑ?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<неизвеÑÑно>"
@@ -9241,7 +9240,7 @@ msgstr ""
"пÑоводок, ÑÑÑановленнÑÑ Ð² наÑÑÑойкаÑ
Ð´Ð»Ñ ÑÑой книги. ÐÑа наÑÑÑойка Ð¼Ð¾Ð¶ÐµÑ "
"бÑÑÑ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð° в Ð¼ÐµÐ½Ñ Ð¤Ð°Ð¹Ð»->СвойÑÑва->СÑеÑа."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/rw.po b/po/rw.po
index e122c2fa0..ec0e6a27e 100644
--- a/po/rw.po
+++ b/po/rw.po
@@ -17,7 +17,7 @@ msgstr ""
"Project-Id-Version: gnucash 1.8.9\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2005-04-04 10:55-0700\n"
"Last-Translator: Steven Michael Murphy <murf at e-tools.com>\n"
"Language-Team: Kinyarwanda <translation-team-rw at lists.sourceforge.net>\n"
@@ -1306,7 +1306,7 @@ msgstr "Guhitamo a"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2703,7 +2703,7 @@ msgstr ""
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Gufungura"
@@ -3565,7 +3565,7 @@ msgid "Open an existing GnuCash file"
msgstr "i"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
#, fuzzy
@@ -6628,7 +6628,7 @@ msgid "You cannot save to that file."
msgstr "Kubika Kuri IDOSIYE"
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, fuzzy, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7998,7 +7998,7 @@ msgid "There was an error parsing the file."
msgstr "Ikosa Mu kubika i IDOSIYE"
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
#, fuzzy
msgid "Writing file..."
msgstr "IDOSIYE"
@@ -8909,7 +8909,7 @@ msgid "Import"
msgstr "Kuzana"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Kubika"
@@ -9096,8 +9096,7 @@ msgstr ""
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -9108,7 +9107,7 @@ msgid ""
"Please try again in a different directory."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
#, fuzzy
msgid ""
"This database is from an older version of GnuCash. Select OK to upgrade it "
@@ -9117,14 +9116,14 @@ msgstr ""
"Ububikoshingiro ni Bivuye Verisiyo Bya Kuri Kuri i Ububikoshingiro Kuri i "
"KIGEZWEHO Verisiyo"
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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 ""
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
#, fuzzy
msgid ""
"The SQL database is in use by other users, and the upgrade cannot be "
@@ -9134,7 +9133,7 @@ msgstr ""
"Ububikoshingiro ni in Gukoresha ku Ikindi Na i Oya Ikindi i Kuri Kuri Gusiba "
"Inyuma"
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -9143,7 +9142,7 @@ msgid ""
"gnucash.org/show_bug.cgi?id=611936 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -9151,7 +9150,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -9159,17 +9158,17 @@ msgid ""
"you wish to preserve the old version, exit without saving."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, fuzzy, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "Kitazwi Ikosa"
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
#, fuzzy
msgid "Save changes to the file?"
msgstr "IDOSIYE"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -9178,16 +9177,16 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
#, fuzzy
msgid ""
"That database may be in use by another user, in which case you should not "
@@ -9196,7 +9195,7 @@ msgstr ""
"OYA i Ububikoshingiro Gicurasi in Gukoresha ku Ukoresha: in OYA Gufungura i "
"Ububikoshingiro nka Kuri"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -9209,49 +9208,49 @@ msgstr ""
"Kuri"
# sfx2/source\view\view.src:STR_READONLY.text
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
#, fuzzy
msgid "Open _Read-Only"
msgstr "%s[gusoma gusa)"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
msgid "Create _New File"
msgstr "Idosiye"
# svtools/source\dialogs\logindlg.src:DLG_LOGIN.FT_LOGIN_ACCOUNT.text
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
#, fuzzy
msgid "Open _Anyway"
msgstr "Aderesi"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
msgid "Open _Folder"
msgstr "Akarindamwanya"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
#, fuzzy
msgid "_Quit"
msgstr "Kuvamo"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
#, fuzzy
msgid "Loading user data..."
msgstr "Ibyatanzwe"
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
#, fuzzy
msgid "Re-saving user data..."
msgstr "Ibyatanzwe"
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
#, fuzzy
msgid "Exporting file..."
msgstr "IDOSIYE"
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, fuzzy, c-format
msgid ""
"There was an error saving the file.\n"
@@ -9259,21 +9258,21 @@ msgid ""
"%s"
msgstr "Ikosa Mu kubika i IDOSIYE"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
#, fuzzy
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr "Kuri Kuri Kurema"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "Idosiyeisanzweho."
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
#, fuzzy
msgid "<unknown>"
@@ -9873,7 +9872,7 @@ msgid ""
">Properties->Accounts."
msgstr ""
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
#, fuzzy
diff --git a/po/sk.po b/po/sk.po
index 329e400ff..09ad637c5 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: gnucash-2.7.8\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2018-04-02 13:29+0100\n"
"Last-Translator: Zdenko Podobný <zdenop at gmail.com>\n"
"Language-Team: Slovak <sk-i18n at lists.linux.sk>\n"
@@ -1260,7 +1260,7 @@ msgstr "Odstrániť komoditu?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2557,7 +2557,7 @@ msgstr "Hľadať úlohu"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Otvoriť"
@@ -3356,7 +3356,7 @@ msgid "Open an existing GnuCash file"
msgstr "Otvorà existujúci GnuCash súbor"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6101,7 +6101,7 @@ msgid "You cannot save to that file."
msgstr "Nie je možné uložiť do toho súboru."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7357,7 +7357,7 @@ msgid "There was an error parsing the file."
msgstr "Vyskytla sa chyba poÄas spracovania do súboru."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "Ukladanie..."
@@ -8180,7 +8180,7 @@ msgid "Import"
msgstr "Import"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Uložiť"
@@ -8365,8 +8365,7 @@ msgstr "Nepodarilo sa preÄÃtaÅ¥ doÄasný súbor"
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8377,27 +8376,27 @@ msgid ""
"Please try again in a different directory."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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 ""
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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 ""
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 ""
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8406,7 +8405,7 @@ msgid ""
"gnucash.org/show_bug.cgi?id=611936 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8414,7 +8413,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8422,16 +8421,16 @@ msgid ""
"you wish to preserve the old version, exit without saving."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, fuzzy, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "Neznáma systémová chyba"
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "Uložiť zmeny do súboru?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, fuzzy, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8444,16 +8443,16 @@ msgstr[1] ""
msgstr[2] ""
"Ak nevykonáte uloženie dát, zmeny za posledných %d minút budú ignorované."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "PokraÄovaÅ¥ _bez uloženia"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash nevie zÃskaÅ¥ zámok pre %s."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8461,7 +8460,7 @@ msgstr ""
"Databázu môže použÃvaÅ¥ iný použÃvateľ a vtedy by ste ju nemali otváraÅ¥. Äo "
"si prajete vykonať?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8473,46 +8472,46 @@ msgstr ""
"alebo nemáte práva na zapisovanie do prieÄinku. Ak budete pokraÄovaÅ¥, možno "
"nebudete vedieÅ¥ zapÃsaÅ¥ zmeny. Äo si prajete vykonaÅ¥?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_Vytvoriť nový súbor"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
#, fuzzy
msgid "Open _Anyway"
msgstr "_Otvoriť aj tak"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
msgid "Open _Folder"
msgstr "Držà miesto (syntetický úÄet)"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_Koniec"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
#, fuzzy
msgid "Loading user data..."
msgstr "Ukazovateľ na anonymné užÃvateľské dáta"
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
#, fuzzy
msgid "Re-saving user data..."
msgstr "Chyba pri ukladanà použÃvateľských konfiguraÄných údajov."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "Exportovanie súboru..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8523,20 +8522,20 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "Súbor %s už existuje. Ste si istý, že ho chcete prepÃsaÅ¥?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<neznámy>"
@@ -9080,7 +9079,7 @@ msgid ""
">Properties->Accounts."
msgstr ""
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
#, fuzzy
diff --git a/po/sr.po b/po/sr.po
index c96b10984..6d93899d8 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -7,7 +7,7 @@ msgstr ""
"Project-Id-Version: gnucash-2.6.18\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2017-11-05 08:54+0200\n"
"Last-Translator: ÐиÑоÑлав ÐÐ¸ÐºÐ¾Ð»Ð¸Ñ <miroslavnikolic at rocketmail.com>\n"
"Language-Team: Serbian <(nothing)>\n"
@@ -1317,7 +1317,7 @@ msgstr "Ðа обÑиÑем ÑобÑ?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2605,7 +2605,7 @@ msgstr "ÐаÑиÑе поÑао"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "ÐÑвоÑи"
@@ -3420,7 +3420,7 @@ msgid "Open an existing GnuCash file"
msgstr "ÐÑвоÑиÑе поÑÑоÑеÑÑ Ð´Ð°ÑоÑÐµÐºÑ ÐнÑовог новÑиÑа"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6128,7 +6128,7 @@ msgid "You cannot save to that file."
msgstr "Ðе можеÑе ÑаÑÑваÑи Ñ ÑÑ Ð´Ð°ÑоÑекÑ."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7414,7 +7414,7 @@ msgid "There was an error parsing the file."
msgstr "ÐоÑло Ñе до гÑеÑке обÑаде даÑоÑеке."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "УпиÑÑÑем даÑоÑекÑ..."
@@ -8271,7 +8271,7 @@ msgid "Import"
msgstr "Увези"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "СаÑÑваÑ"
@@ -8467,8 +8467,7 @@ msgstr "ÐемаÑе овлаÑÑеÑе да ÑиÑаÑе из даÑоÑеке
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8485,7 +8484,7 @@ msgstr ""
"\n"
"ÐÑобаÑÑе поново Ñ Ð´ÑÑгом диÑекÑоÑиÑÑмÑ."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8493,7 +8492,7 @@ msgstr ""
"Ðва база подаÑака Ñе из ÑÑаÑиÑег издаÑа ÐнÑовог новÑиÑа. ÐзабеÑиÑе âУ ÑедÑâ "
"да Ñе ажÑÑиÑаÑе на ÑекÑÑе издаÑе, âÐдÑÑÑаниâ да Ñе ознаÑиÑе Ñамо за ÑиÑаÑе."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8504,7 +8503,7 @@ msgstr ""
"ÑиÑаÑе Ñве док не одÑадиÑе âÐаÑоÑекаâСаÑÑÐ²Ð°Ñ ÐºÐ°Ð¾â, али подаÑи Ð¼Ð¾Ð³Ñ Ð±Ð¸Ñи "
"изгÑбÑени пÑиликом ÑпиÑиваÑа Ñ ÑÑаÑом издаÑÑ."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8514,7 +8513,7 @@ msgstr ""
"док Ñе они не одÑаве. Ðко ÑÑенÑÑно нема дÑÑгиÑ
коÑиÑника, погледаÑÑе "
"докÑменÑаÑиÑÑ Ð´Ð° ÑазнаÑе како да обÑиÑеÑе виÑеÑе ÑеÑиÑе пÑиÑавÑиваÑа."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -8530,7 +8529,7 @@ msgstr ""
"ÐогледаÑÑе âhttps://bugs.gnucash.org/show_bug.cgi?id=611936â за виÑе "
"инÑоÑмаÑиÑа."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8542,7 +8541,7 @@ msgstr ""
"СÐÑРбазе подаÑака. ÐогледаÑÑе âhttps://bugs.gnucash.org/show_bug.cgi?"
"id=645216â за виÑе инÑоÑмаÑиÑа."
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8554,16 +8553,16 @@ msgstr ""
"даÑоÑÐµÐºÑ Ð¸Ð· ÑÑаÑиÑег издаÑа ÐнÑовог новÑиÑа (пÑиÑавиÑе âгÑеÑÐºÑ Ñ Ð¾Ð±Ñади "
"даÑоÑеке). Ðко желиÑе да ÑаÑÑваÑе ÑÑаÑо издаÑе, изаÑиÑе без ÑÑваÑа."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "ÐоÑло Ñе до непознаÑе У/РгÑеÑке (%d)."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "Ðа ÑаÑÑвам измене Ñ Ð´Ð°ÑоÑекÑ?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8576,16 +8575,16 @@ msgstr[1] ""
msgstr[2] ""
"Ðко не ÑаÑÑваÑе, измене наÑиÑене Ñ Ð¿Ð¾ÑледÑиÑ
%d минÑÑа биÑе одбаÑене."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "ÐаÑÑави без _ÑÑваÑа"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "Ðе Ð¼Ð¾Ð³Ñ Ð´Ð° издеÑÑÑвÑÑем закÑÑÑаваÑе за â%sâ."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8593,7 +8592,7 @@ msgstr ""
"Ðоже биÑи да ÑÑ Ð±Ð°Ð·Ñ Ð¿Ð¾Ð´Ð°Ñака коÑиÑÑи неки дÑÑги коÑиÑник, и Ñ Ñом ÑлÑÑаÑÑ "
"не ÑÑеба да Ñе оÑваÑаÑе. ШÑа биÑÑе желели да ÑÑадиÑе?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8605,44 +8604,44 @@ msgstr ""
"моÑда немаÑе овлаÑÑеÑа за пиÑаÑе Ñ Ð´Ð¸ÑекÑоÑиÑÑм. Ðко наÑÑавиÑе неÑеÑе моÑи "
"да ÑаÑÑваÑе никакве измене. ШÑа желиÑе да ÑÑадиÑе?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "ÐÑвоÑи _Ñамо за ÑиÑаÑе"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_ÐапÑави Ð½Ð¾Ð²Ñ Ð´Ð°ÑоÑекÑ"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "_Ðпак оÑвоÑи"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "меÑÑодÑжаÑ"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_ÐзаÑи"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "УÑиÑавам коÑиÑниÑке подаÑке..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "Ðоново ÑÑвам коÑиÑниÑке подаÑке..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "Ðзвозим даÑоÑекÑ..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8653,7 +8652,7 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
@@ -8661,7 +8660,7 @@ msgstr ""
"Ðаза подаÑака Ñе оÑвоÑена Ñамо за ÑиÑаÑе. Ðа ли желиÑе да Ñе ÑаÑÑваÑе на "
"дÑÑгом меÑÑÑ?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
@@ -8670,7 +8669,7 @@ msgstr ""
"ÐÑаÑаÑе Ñе одбаÑиÑи Ñве неÑаÑÑване измене Ñ â%sâ. Ðа ли ÑигÑÑно желиÑе да "
"наÑÑавиÑе?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<непознаÑо>"
@@ -9226,7 +9225,7 @@ msgstr ""
"подеÑеног за Ð¾Ð²Ñ ÐºÑигÑ. ÐожеÑе да измениÑе ов подеÑаваÑе Ñ Ð¸Ð·Ð±Ð¾ÑÐ½Ð¸ÐºÑ "
"âÐаÑоÑекаâСвоÑÑÑваâÐалозиâ."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/sv.po b/po/sv.po
index dc23ba087..76c4bd16e 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -14,7 +14,7 @@ msgstr ""
"Project-Id-Version: gnucash 2.6.11\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2016-01-14 21:51+0100\n"
"Last-Translator: Erik Johansson <erik at ejohansson.se>\n"
"Language-Team: Swedish <tp-sv at listor.tp-sv.se>\n"
@@ -1285,7 +1285,7 @@ msgstr "Ta bort varan?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2566,7 +2566,7 @@ msgstr "Sök jobb"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Ãppna"
@@ -3365,7 +3365,7 @@ msgid "Open an existing GnuCash file"
msgstr "Ãppna en GnuCash-fil"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6034,7 +6034,7 @@ msgid "You cannot save to that file."
msgstr "Du kan inte spara i den filen."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7267,7 +7267,7 @@ msgid "There was an error parsing the file."
msgstr "Ett fel inträffade när filen skulle tolkas."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "Skriver fil..."
@@ -8081,7 +8081,7 @@ msgid "Import"
msgstr "Importera"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Spara"
@@ -8275,8 +8275,7 @@ msgstr "Du har inte rättighet att komma åt filen %s."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8287,7 +8286,7 @@ msgid ""
"Please try again in a different directory."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
#, fuzzy
msgid ""
"This database is from an older version of GnuCash. Select OK to upgrade it "
@@ -8296,14 +8295,14 @@ msgstr ""
"Denna databas kommer från en äldre version av GnuCash. Vill du uppgradera "
"databasen till den aktuella versionen?"
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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 ""
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8314,7 +8313,7 @@ msgstr ""
"dokumentationen för information om hur kvarvarande inloggningssessioner kan "
"tas bort."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8323,7 +8322,7 @@ msgid ""
"gnucash.org/show_bug.cgi?id=611936 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8331,7 +8330,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8339,16 +8338,16 @@ msgid ""
"you wish to preserve the old version, exit without saving."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "Ett okänt in-/utmatningsfel (%d) inträffade."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "Spara ändringar till filen?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8361,16 +8360,16 @@ msgstr[1] ""
"Om du inte sparar så kommer förändringar gjorda under de %d senaste "
"minuterna att gå förlorade."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "Fortsätt _utan att spara"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash kunde inte få ett lås på %s."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8378,7 +8377,7 @@ msgstr ""
"Den databasen används kanske av en annan användare och i så fall ska du inte "
"öppna databasen. Vad vill du göra?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8390,44 +8389,44 @@ msgstr ""
"skrivrättigheter till katalogen. Om du fortsätter kan du kanske inte spara "
"ändringar. Vad vill du göra?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "Ãppna _skrivskyddad"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_Skapa ny fil"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "_Ãppna ändÃ¥"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "platshållare"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_Avsluta"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "Läser in användardata..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "Sparar om användardata..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "Exporterar fil..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8438,20 +8437,20 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "Filen %s finns redan. Ãr du säker pÃ¥ att du vill skriva över den?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<okänt>"
@@ -8994,7 +8993,7 @@ msgid ""
">Properties->Accounts."
msgstr ""
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/ta.po b/po/ta.po
index 6b4be6b47..ff8e45c49 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -7,7 +7,7 @@ msgstr ""
"Project-Id-Version: GnuCash 2.6.3\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2014-06-02 12:18+0530\n"
"Last-Translator: Shanmugam R. <shanfaace at yahoo.co.in>\n"
"Language-Team: NONE \n"
@@ -1328,7 +1328,7 @@ msgstr "à®à®°à®à¯à®à¯ à®
ழிà®à¯à®à®µà®¾?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2613,7 +2613,7 @@ msgstr "பணிய௠தà¯à®à¯"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "திற"
@@ -3425,7 +3425,7 @@ msgid "Open an existing GnuCash file"
msgstr "à®à®±à¯à®à®©à®µà¯ à®à®°à¯à®à¯à®à¯à®®à¯ à®à®°à¯ GnuCash à®à¯à®ªà¯à®ªà®¿à®©à¯à®¤à¯ திற"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6135,7 +6135,7 @@ msgid "You cannot save to that file."
msgstr "à®
நà¯à®¤ à®à¯à®ªà¯à®ªà®¿à®©à¯ à®à¯à®®à®¿à®à¯à® à®®à¯à®à®¿à®¯à®¾à®¤à¯."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7415,7 +7415,7 @@ msgid "There was an error parsing the file."
msgstr "à®à®¨à¯à®¤ à®à¯à®ªà¯à®ªà®¿à®©à¯ பà®à¯à®à¯à®à¯à®®à¯ பà¯à®¤à¯ à®à®°à¯ பிழ௠à®à®±à¯à®ªà®à¯à®à®¤à¯."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "à®à¯à®ªà¯à®ªà®¿à®©à¯ à®à®´à¯à®¤à¯à®à®¿à®±à®¤à¯..."
@@ -8260,7 +8260,7 @@ msgid "Import"
msgstr "à®à®±à®à¯à®à¯à®®à®¤à®¿"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "à®à¯à®®à®¿"
@@ -8452,8 +8452,7 @@ msgstr "à®à¯à®ªà¯à®ªà¯ %s லிரà¯à®¨à¯à®¤à¯ வாà®à®¿à®à¯à® வ
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8470,7 +8469,7 @@ msgstr ""
"\n"
"à®à®°à¯ வà¯à®±à¯à®ªà®à¯à® à®
à®à¯à®µà®¿à®²à¯ à®®à¯à®£à¯à®à¯à®®à¯ à®®à¯à®¯à®±à¯à®à®¿à®à¯à®à®µà¯à®®à¯."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8478,7 +8477,7 @@ msgstr ""
"à®à®¨à¯à®¤ தரவà¯à®¤à¯à®¤à®³à®®à®¾à®©à®¤à¯ GnuCash à®à®©à¯ à®à®°à¯ பழà¯à®¯ பதிபà¯à®ªà¯à®³à¯à®³à®¤à®¾à®à¯à®®à¯. à®à®¤à¯ நà®à®ªà¯à®ªà¯ பதிபà¯à®ªà¯à®à¯à®à¯ "
"à®®à¯à®®à¯à®ªà®à¯à®¤à¯à®¤ à®à®°à®¿ à®à®©à¯à®ªà®¤à¯à®¯à¯à®®à¯, வாà®à®¿à®à¯à®-à®®à®à¯à®à¯à®®à¯ à®à®©à¯à®ªà®¤à¯ à®à¯à®±à®¿à®à¯à® ரதà¯à®¤à¯ à®à®©à¯à®ªà®¤à¯ தà¯à®°à¯à®¨à¯à®¤à¯à®à¯à®à¯à®à®à®µà¯à®®à¯."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8489,7 +8488,7 @@ msgstr ""
"à®à¯à®¯à¯à®¯à¯à®®à¯ வர௠à®à®¤à¯ வாà®à®¿à®à¯à®-à®®à®à¯à®à¯à®®à¯ à®à®© à®à¯à®±à®¿à®à¯à®à®ªà¯à®ªà®à¯à®®à¯, à®à®©à®¾à®²à¯ பழà¯à®¯ பதிபà¯à®ªà®¿à®±à¯à®à¯ à®à®´à¯à®¤à¯à®®à¯ பà¯à®¤à¯ "
"தரவ௠à®à®´à®à¯à® நà¯à®°à®¿à®à®²à®¾à®®à¯."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8499,7 +8498,7 @@ msgstr ""
"வà¯à®³à®¿à®¯à¯à®±à¯à®®à¯ வர௠à®à¯à®¯à®±à¯à®ªà®à¯à®¤à¯à®¤ à®®à¯à®à®¿à®¯à®¾à®¤à¯. மறà¯à®± பயனரà¯à®à®³à¯ தறà¯à®ªà¯à®¤à¯ à®à®²à¯à®²à¯à®¯à¯à®©à®¿à®²à¯, à®à®µà¯à®µà®¾à®±à¯ "
"à®à¯à®¯à®²à®¿à®´à®à¯à®à¯à®®à¯ à®à®³à¯à®¨à¯à®´à¯à®µà¯ à®
மரà¯à®µà¯à®à®³à¯ à®à®°à®¿ à®à¯à®¯à¯à®µà®¤à¯ à®à®©à¯à®ªà®¤à®±à¯à®à¯ à®à®µà®£à®¤à¯à®¤à¯ à®
ணà¯à®à®µà¯à®®à¯."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -8514,7 +8513,7 @@ msgstr ""
"\"libdbi\" நிறà¯à®µà¯à®¤à®²à¯ பà¯à®°à¯à®¤à¯à®¤à¯à®®à¯ வர௠à®à¯à®®à®¿à®à¯à®à®¿à®±à®¤à¯. à®®à¯à®²à¯à®®à¯ தà®à®µà®²à¯à®à¯à®à¯ https://bugs."
"gnucash.org/show_bug.cgi?id=611936 -஠பாரà¯à®à¯à®à®µà¯à®®à¯."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8526,7 +8525,7 @@ msgstr ""
"à®à®¾à®°à®£à®®à®¾à® à®à®°à¯à®à¯à®à®²à®¾à®®à¯. à®®à¯à®²à¯à®®à¯ தà®à®µà®²à¯à®à¯à®à¯ https://bugs.gnucash.org/show_bug.cgi?"
"id=645216-஠பாரà¯à®à¯à®à®µà¯à®®à¯."
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8538,16 +8537,16 @@ msgstr ""
"à®à¯à®¾à®ªà¯à®ªà¯ பà®à®¿à®à¯à® à®®à¯à®à®¿à®¯à®¾à®¤à¯ (à®
த௠à®à®°à¯ \"à®à¯à®¾à®ªà¯à®ªà¯ à®
லà®à®²à¯ பிழà¯\" à®à®© à®
றிà®à¯à®à¯à®¯à®¿à®à¯à®®à¯). நà¯à®à¯à®à®³à¯ "
"பழà¯à®¯ பதிபà¯à®ªà¯ வà¯à®¤à¯à®¤à¯à®à¯à®à¯à®³à¯à®³ விரà¯à®®à¯à®ªà®¿à®©à®¾à®²à¯, à®à¯à®®à®¿à®à¯à®à®¾à®®à®²à¯ வà¯à®³à®¿à®¯à¯à®±à®µà¯à®®à¯."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "à®à®°à¯ தà¯à®°à®¿à®¯à®¾à®¤ I/O பிழ௠(%d) à®à®±à¯à®ªà®à¯à®à®¤à¯."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "à®à¯à®ªà¯à®ªà®¿à®²à¯ மாறà¯à®±à®à¯à®à®³à¯ à®à¯à®®à®¿à®à¯à®à®µà®¾?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8556,16 +8555,16 @@ msgid_plural ""
msgstr[0] "நà¯à®à¯à®à®³à¯ à®à¯à®®à®¿à®à¯à®à®¾à®µà®¿à®à®¿à®²à¯, à®à®à®¨à¯à®¤ %d நிமிà®à®¤à¯à®¤à®¿à®²à¯ à®à®°à¯à®¨à¯à®¤à¯ மாறà¯à®±à®à¯à®à®³à¯ நà¯à®à¯à®à®ªà¯à®ªà®à¯à®®à¯."
msgstr[1] "நà¯à®à¯à®à®³à¯ à®à¯à®®à®¿à®à¯à®à®¾à®µà®¿à®à®¿à®²à¯, à®à®à®¨à¯à®¤ %d நிமிà®à®à¯à®à®³à®¿à®²à®¿à®°à¯à®¨à¯à®¤à¯ மாறà¯à®±à®à¯à®à®³à¯ நà¯à®à¯à®à®ªà¯à®ªà®à¯à®®à¯."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "à®à¯à®®à®¿à®à¯à®à®¾à®®à®²à¯ தà¯à®à®°à®µà¯à®®à¯ (_W)"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash à®à®²à¯ %sà®à¯à®à®¾à®© பà¯à®à¯à®à®¿à®©à¯ பà¯à®± à®®à¯à®à®¿à®¯à®µà®¿à®²à¯à®²à¯."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8573,7 +8572,7 @@ msgstr ""
"தரவà¯à®¤à¯à®¤à®³à®®à®¾à®©à®¤à¯ மறà¯à®±à¯à®°à¯ பயனரால௠பயனà¯à®ªà®à¯à®¤à¯à®¤à®ªà¯à®ªà®à¯à®à®¿à®±à®¤à¯, à®à®¤à®¤à®°à¯à®£à®¤à¯à®¤à®¿à®²à¯ நà¯à®à¯à®à®³à¯ தரவà¯à®¤à¯à®¤à®³à®¤à¯à®¤à¯ "
"திறà®à¯à® à®à¯à®à®¾à®¤à¯. à®à®¤à¯ நà¯à®à¯à®à®³à¯ à®à¯à®¯à¯à®µà¯à®°à¯à®à®³à®¾?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8585,44 +8584,44 @@ msgstr ""
"à®à®´à¯à®¤ à®à®à¯à®à®³à¯à®à¯à®à¯ à®
னà¯à®®à®¤à®¿ à®à®²à¯à®²à®¾à®®à®²à¯ à®à®°à¯à®à¯à®à®²à®¾à®®à¯. நà¯à®à¯à®à®³à¯ à®à®¤à¯ à®à¯à®¯à®²à¯à®ªà®à¯à®¤à¯à®¤à®¿à®©à®¾à®²à¯ à®à®à¯à®à®³à®¾à®²à¯ à®à®¨à¯à®¤ "
"மாறà¯à®±à®à¯à®à®³à¯à®¯à¯à®®à¯ à®à¯à®®à®¿à®à¯à® à®®à¯à®à®¿à®¯à®¾à®¤à¯. நà¯à®à¯à®à®³à¯ à®à®¤à¯ à®à¯à®¯à¯à®¯ விரà¯à®®à¯à®ªà¯à®à®¿à®±à¯à®°à¯à®à®³à®¾?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "வாà®à®¿à®à¯à®-à®®à®à¯à®à¯à®®à¯à®©à¯à®ªà®¤à¯ திற(_R)"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "பà¯à®¤à®¿à®¯ à®à¯à®ªà¯à®ªà®¿à®©à¯ à®à®°à¯à®µà®¾à®à¯à®à®µà¯à®®à¯ (_C)"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "à®à®°à¯à®¨à¯à®¤à®¾à®²à¯à®®à¯ திற(_A)"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "பிளà¯à®¸à¯à®¹à¯à®²à¯à®à®°à¯"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "வà¯à®³à®¿à®¯à¯à®±à¯ (_Q)"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "பயனர௠தரவ௠à®à®±à¯à®±à¯à®à®¿à®±à®¤à¯..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "பயனர௠தரவ௠மà¯à®£à¯à®à¯à®®à¯ à®à¯à®®à®¿à®à¯à®à®¿à®±à®¤à¯..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "à®à¯à®ªà¯à®ªà®¿à®©à¯ à®à®±à¯à®±à¯à®®à®¤à®¿ à®à¯à®¯à¯à®à®¿à®±à®¤à¯..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8633,7 +8632,7 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
@@ -8641,14 +8640,14 @@ msgstr ""
"தரவà¯à®¤à¯à®¤à®³à®®à¯ பà®à®¿à®à¯à®-à®®à®à¯à®à¯à®®à¯ à®à®© திறà®à¯à®à®ªà¯à®ªà®à¯à®à®¤à¯. நà¯à®à¯à®à®³à¯ வà¯à®±à¯ à®à®°à¯ à®à®à®¤à¯à®¤à®¿à®²à¯ à®
த௠à®à¯à®®à®¿à®à¯à® "
"வà¯à®£à¯à®à¯à®®à®¾?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "à®à¯à®ªà¯à®ªà¯ %s à®à®±à¯à®à®©à®µà¯ à®à®³à¯à®³à®¤à¯. à®
த௠நà¯à®à¯à®à®³à¯ à®®à¯à®²à¯à®´à¯à®¤ விரà¯à®®à¯à®ªà¯à®à®¿à®±à¯à®°à¯à®à®³à®¾?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<தà¯à®°à®¿à®¯à®¾à®¤>"
@@ -9200,7 +9199,7 @@ msgstr ""
"நà®à®²à®¾à®à¯à®à®ªà¯à®ªà®à¯à® பரிமாறà¯à®±à®¤à¯à®¤à®¿à®²à¯ à®à®³à¯à®³à®¿à®à¯à® தà¯à®¤à®¿, à®à®¨à¯à®¤ பà¯à®¤à¯à®¤à®à®¤à¯à®¤à®¿à®²à¯ à®
à®®à¯à®¤à¯à®¤ \"Read-Only Threshold"
"\"-஠வி஠பழமà¯à®¯à®¾à®©à®¤à¯. à®à®¨à¯à®¤ à®
à®®à¯à®ªà¯à®ªà¯ à®à¯à®¾à®ªà¯à®ªà¯->தனà¯à®®à¯à®à®³à¯->à®à®£à®à¯à®à¯à®à®³à®¿à®²à¯ மாறà¯à®±à®®à¯à®à®¿à®¯à¯à®®à¯."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/te.po b/po/te.po
index dfed92571..a00679778 100644
--- a/po/te.po
+++ b/po/te.po
@@ -7,7 +7,7 @@ msgstr ""
"Project-Id-Version: GnuCash 2.6.3\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2014-09-25 20:34-0500\n"
"Last-Translator: Ravi Kumar Ragam <ragamrravi at gmail.com>\n"
"Language-Team: NONE\n"
@@ -1304,7 +1304,7 @@ msgstr "సరà±à°à±à°¨à± à°¤à±à°²à°à°¿à°à°à°¾à°²à°¾?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2583,7 +2583,7 @@ msgstr "పని à°µà±à°¤à±à°à±"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "à°¤à±à°°à±à°µà±"
@@ -3379,7 +3379,7 @@ msgid "Open an existing GnuCash file"
msgstr "à°à°¨à°¿à°à°¿à°²à±à°¨à°¿ GnuCash à°«à±à°²à±âనౠతà±à°°à±à°µà±"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6064,7 +6064,7 @@ msgid "You cannot save to that file."
msgstr "à°®à±à°°à± à° à°«à±à°²à±ââà°à± à°à°¦à±à°°à°ªà°°à°à°²à±à°°à±. "
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7334,7 +7334,7 @@ msgid "There was an error parsing the file."
msgstr "à°«à±à°²à±ââనౠవిడà°à±à°à±à°à±à°à°ªà±à°ªà±à°¡à± à°¦à±à°·à°"
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "à°«à±à°²à±âనౠరాసà±à°¤à±à°à°¦à°¿..."
@@ -8169,7 +8169,7 @@ msgid "Import"
msgstr "దిà°à±à°®à°¤à°¿"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "à°à°¦à±à°°à°ªà°°à°à±"
@@ -8353,8 +8353,7 @@ msgstr "à°«à±à°²à± %s à°¨à±à°à°à°¿ à°à°¦à°µà°¡à°¾à°¨à°¿à°à°¿à°
à°¨à±à°®
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8371,7 +8370,7 @@ msgstr ""
"\n"
"దయà°à±à°¸à°¿ à°à°¿à°¨à±à°¨à°®à±à°¨ à°¡à±à°°à±à°à±à°à°°à±à°²à± మళà±à°²à± à°ªà±à°°à°¯à°¤à±à°¨à°¿à°à°à±."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8379,7 +8378,7 @@ msgstr ""
"à° à°¡à±à°à°¾à°¬à±à°¸à± GnuCash పాత à°µà±à°°à±à°·à°¨à±â à°¨à±à°à°à°¿ à°µà°à±à°à°¿à°à°¦à°¿. à°ªà±à°°à°¸à±à°¤à±à°¤ à°°à±à°ªà°¾à°à°¤à°°à°¾à°¨à°¿à°à°¿ నవà±à°à°°à°¿à°à°à°¡à°¾à°¨à°¿à°à°¿ OK à°à°à°à±à°à±à°µà°¾à°²à°¿. "
"దానిని పఠితఠమాతà±à°°à°®à± à°à±à°°à±à°¤à± à°µà±à°¸à±à°à°¦à±à°à± à°°à°¦à±à°¦à± à°à°à°à±à°à±. "
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
#, fuzzy
msgid ""
"This database is from a newer version of GnuCash. This version can read it, "
@@ -8390,7 +8389,7 @@ msgstr ""
"à°à±à°¯à°¦à±. à°®à±à°°à± à°«à±à°²à±>à°à°²à°¾ à°¸à±à°µà± à°à±à°¯à°¿à°¨à°¿ à°à±à°¸à±à°à°¤à°µà°°à°à± à°à°¦à°¿ à°à°¦à°µà°¡à°¾à°¨à°¿à°à°¿ మాతà±à°°à°®à±à°à°¾ à°à±à°°à±à°¤à± à°ªà±à°à±à°à°¬à°¡à±à°¤à±à°à°¦à°¿, à°à°¾à°¨à± పాత "
"à°µà±à°°à±à°·à°¨à±âà°à± రాయడà°à°²à± à°¡à±à°à°¾à°¨à± à°à±à°²à±à°ªà±à°µà°à±à°à±. "
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8400,7 +8399,7 @@ msgstr ""
"à°ªà±à°°à°¸à±à°¤à±à°¤à° వాà°à°¿à°à°¿ à°à°¤à°° వాడà±à°à°°à±à°²à± à°²à±à°à±à°à°à±, à°à°à±à°²à°¾à°¡à± లాà°à°¿à°¨à± à°¸à±à°·à°¨à±âలనౠశà±à°à±à°°à°ªà°°à°à°¡à° à°¨à±à°°à±à°à±à°à±à°µà°¡à°¾à°¨à°¿à°à°¿ "
"à°¡à°¾à°à±à°¯à±à°®à±à°à°à±à°·à°¨à±âనౠసà°à°ªà±à°°à°¦à°¿à°à°à±. "
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -8414,7 +8413,7 @@ msgstr ""
"à°à±à°¸à± వరà°à± Gnuà°à±à°¯à°¾à°·à± à°¤à±à°°à°µà°¡à° à°à°¾à°¨à± SQL à°¡à±à°à°¾à°¬à±à°¸à±âà°²à°à± à°¸à±à°µà± à°à±à°¯à°¡à° à°à°¾à°¨à± à°à°°à°à°¦à±. మరిà°à°¤ సమాà°à°¾à°°à° à°à±à°¸à° దయà°à±à°¸à°¿ "
"https://bugs.gnucash.org/show_bug.cgi?id=611936 నౠà°à±à°¡à°à°²à°°à±. "
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8425,7 +8424,7 @@ msgstr ""
"à°¯à±à°à±à° à°
à°¨à±à°®à°¤à±à°² తపà±à°ªà±à°¡à± à°à°à±à°¤à±à°à°°à°£ à°¦à±à°µà°¾à°°à°¾ à°à°¦à°¿ à°¸à°à°à°µà°¿à°à°à°µà°à±à°à±. మరిà°à°¤ సమాà°à°¾à°°à° à°à±à°¸à° దయà°à±à°¸à°¿ https://"
"bugs.gnucash.org/show_bug.cgi?id=645216 నౠà°à±à°¡à°à°²à°°à±. "
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8436,16 +8435,16 @@ msgstr ""
"పాత à°µà±à°°à±à°·à°¨à± à°¨à±à°à°à°¿ à°¸à±à°µà± à°à±à°¸à°¿à°¨ à°«à±à°²à±âనౠà°à°¦à°µà°¡à° à°®à±à°à± à°µà±à°²à± à°à°¾à°¦à±. (à°à°¦à°¿ à°à° \"à°«à±à°²à± à°ªà±à°°à°à±à°·à°¾à°³à°¨ à°à±à°¯à°¡à°à°²à± à°¦à±à°·à°\"నౠ"
"నివà±à°¦à°¿à°¸à±à°¤à±à°à°¦à°¿). పాత à°µà±à°°à±à°·à°¨à±âనౠà°à°¾à°ªà°¾à°¡à±à°à±à°µà°¾à°²à°¨à°¿ à°®à±à°°à± à°à±à°°à±à°à±à°à°à±, à°¸à±à°µà± à°à±à°¯à°à±à°à°¡à°¾ నిషà±à°à±à°°à°®à°¿à°à°à±. "
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr " à°¤à±à°²à°¿à°¯à°¨à°¿ I/O à°¦à±à°·à°(%d) à°¸à°à°à°µà°¿à°à°à°¿à°à°¦à°¿. "
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "à° à°«à±à°²à±âà°à± మారà±à°ªà±à°²à°¨à± à°à°¦à±à°°à°ªà°°à°à°¾à°²à°¾?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8454,16 +8453,16 @@ msgid_plural ""
msgstr[0] "à°®à±à°°à± à°¸à±à°µà± à°à±à°¯à°à±à°à°à±, à°à°¤ %dనిమిషఠనà±à°à°à°¿ à°à±à°¸à°¿à°¨ మారà±à°ªà±à°²à± à°¤à±à°¯à°à°¿à°à°à°¬à°¡à±à°¤à°¾à°¯à°¿. "
msgstr[1] "à°®à±à°°à± à°¸à±à°µà± à°à±à°¯à°à±à°à°à±, à°à°¤ %dనిమిషాల à°¨à±à°à°à°¿ à°à±à°¸à°¿à°¨ మారà±à°ªà±à°²à± à°¤à±à°¯à°à°¿à°à°à°¬à°¡à±à°¤à°¾à°¯à°¿. "
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "_à°à°¦à±à°°à°ªà°°à±à°à°à±à°à°¡à°¾ à°à±à°¨à°¸à°¾à°à°¿à°à°à±"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "%s à°à± GnuCash తాళà°à°¨à± à°ªà±à°à°¦à°¡à° సాధà±à°¯à° à°à°¾à°²à±à°¦à±."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8471,7 +8470,7 @@ msgstr ""
"à°¡à±à°à°¾à°¬à±à°¸à±â మరà±à° వాడà±à°à°°à°¿ à°¦à±à°µà°¾à°°à°¾ à°à°ªà°¯à±à°à°à°²à± à°à°à°¡à°µà°à±à°à±. à°
లాà°à°à°¿ à°¸à±à°¥à°¿à°¤à°¿à°²à± à°®à±à°°à± à°¡à±à°à°¾à°¬à±à°¸à±âనౠతà±à°°à°µà°°à°¾à°¦à±. à°®à±à°°à±à° "
"à°à±à°¯à°¾à°²à°¨à±à°à±à°à°à±à°¨à±à°¨à°¾à°°à±?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8482,44 +8481,44 @@ msgstr ""
"à° à°¡à±à°à°¾à°¬à±à°¸à± పఠిత à°µà±à°¯à°µà°¸à±à°¥à°²à± à°à°à°¡à°µà°à±à°à± à°²à±à°¦à°¾ à°¡à±à°°à±à°à±à°à°°à± à°à±à°¸à° à°®à±à°°à± రాసౠà°
à°¨à±à°®à°¤à°¿ à°²à±à°à°ªà±à°µà°à±à°à±. à°®à±à°°à± à°®à±à°à°¦à±à°à± "
"à°µà±à°³à°¿à°¤à±, à°®à±à°°à± à°à°²à°¾à°à°à°¿ మారà±à°ªà±à°²à°¨à± à°à°¦à±à°°à°ªà°°à°à°²à±à°à°ªà±à°µà°à±à°à±. à°®à±à°°à±à° à°à±à°¯à°¾à°²à°¨à±à°à±à°à°à±à°¨à±à°¨à°¾à°°à±?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "à°à°¦à°µà°¡à°¾à°¨à°¿à°à°¿-మాతà±à°°à°®à±_నౠతà±à°°à±à°µà±"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "à°à±à°¤à±à°¤ à°«à±à°²à±âనౠ_à°¸à±à°·à±à°à°¿à°à°à±"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "à°à°²à°¾à°à±à°¨à°¾_à°¤à±à°°à±à°µà±"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "à°ªà±à°²à±à°¸à±à°¹à±à°²à±à°¡à°°à±"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_నిషà±à°à±à°°à°®à°¿à°à°à±"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "వాడà±à°à°°à°¿ à°¡à±à°à°¾ à°²à±à°¡à°µà±à°¤à±à°à°¦à°¿..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "వాడà±à°à°°à°¿ à°¡à±à°à°¾à°¨à± తిరిà°à°¿ à°à°¦à±à°°à°ªà°°à°à±à°¤à±à°à°¦à°¿. "
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "à°«à±à°²à±â à°à°à±à°®à°¤à°¿ à°
à°µà±à°¤à±à°à°¦à°¿â¦"
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8530,21 +8529,21 @@ msgstr ""
"\n"
"%s à°«à±à°²à±âనౠà°à°¦à±à°°à°ªà°°à°à°¡à°à°²à± à°¦à±à°·à° à°à°à°¦à°¿."
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr ""
"à°¡à±à°à°¾à°¬à±à°¸à±â à°°à±à°¡à±-à°à°¨à±à°²à±à°à°¾ మాతà±à°°à°®à± à°¤à±à°°à°µà°¬à°¡à±à°¤à±à°à°¦à°¿. à°®à±à°°à± à°¦à±à°¨à°¿à°¨à°¿ à°à°¿à°¨à±à°¨à°®à±à°¨ à°ªà±à°°à°¦à±à°¶à°¾à°¨à°¿à°à°¿ à°¸à±à°µà± à°à±à°¯à°¾à°²à°¨à°¿ à°à±à°°à±à°à±à°à°à±à°¨à±à°¨à°¾à°°à°¾?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "%s à°«à±à°²à± à°à°ªà±à°ªà°à°¿à°à± à°à°à°¦à°¿. à°®à±à°°à± à°à°à±à°à°¿à°¤à°à°à°¾ à°¦à±à°¨à±à°¨à°¿ à°¶à±à°à±à°°à°ªà°°à°¿à°à°¿ రాయాలనà±à°à±à°à°à±à°¨à±à°¨à°¾à°°à°¾?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<à°¤à±à°²à°¿à°¯à°¨à°¿>"
@@ -9088,7 +9087,7 @@ msgstr ""
"à°¡à±à°ªà±à°²à°¿à°à±à°à± à°à±à°¸à°¿à°¨ లావాదà±à°µà± à°¤à±à°¦à± à° à°ªà±à°¸à±à°¤à°à°¾à°¨à°¿à°à°¿ à°
మరà±à°à°¿à°¨ \"à°à°¦à°µà°¡à°¾à°¨à°¿à°à°¿-మాతà±à°°à°®à± à°ªà±à°°à°¾à°°à°à°à°\" à°à°¨à±à°¨à°¾ పాతది. à° à°¸à±à°à°¿à°à°à±âనౠ"
"à°«à±à°²à±->à°²à°à±à°·à°£à°¾à°²à±->à°à°¾à°¤à°¾à°²à±à°²à± మారà±à°à°µà°à±à°à±. "
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/tr.po b/po/tr.po
index 77aa7cf58..cf8b979a0 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: GnuCash 2.7.3\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2018-01-25 22:58+0300\n"
"Last-Translator: Emin Tufan Ãetin <etcetin at gmail.com>\n"
"Language-Team: Turkish <gnu-tr-u12a at lists.sourceforge.net>\n"
@@ -1305,7 +1305,7 @@ msgstr "Kıymeti sil?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2589,7 +2589,7 @@ msgstr "Grup Ara"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Aç"
@@ -3388,7 +3388,7 @@ msgid "Open an existing GnuCash file"
msgstr "Mevcut bir dosyayı aç"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6086,7 +6086,7 @@ msgid "You cannot save to that file."
msgstr "Bu dosyaya kaydedemezsiniz."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7367,7 +7367,7 @@ msgid "There was an error parsing the file."
msgstr "Dosya ayrıÅtırılırken hata oluÅtu."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "Dosya yazılıyor..."
@@ -8202,7 +8202,7 @@ msgid "Import"
msgstr "İçe aktar"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Kaydet"
@@ -8393,8 +8393,7 @@ msgstr "%s dosyasını okuma izniniz yoktur."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8411,7 +8410,7 @@ msgstr ""
"\n"
"Lütfen farklı bir dizinle yeniden deneyin."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8420,7 +8419,7 @@ msgstr ""
"sürümüne yükseltmek için Tamam'ı, salt okunur olarak iÅaretlemek için "
"İptal'i seçin."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8431,7 +8430,7 @@ msgstr ""
"komutunu alana kadar salt okunur olarak iÅaretlenir, ancak eski sürüme "
"yazarken veriler kaybolabilir."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8442,7 +8441,7 @@ msgstr ""
"oturumları sizin kapatmanız gerekir. Ayrıntılar için ilgili belgelere "
"baÅvurun."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8457,7 +8456,7 @@ msgstr ""
"Daha çok bilgi için lütfen https://bugs.gnucash.org/show_bug.cgi?id=611936 "
"adresini ziyaret edin."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8469,7 +8468,7 @@ msgstr ""
"nedeniyle oluÅabilir. Daha çok bilgi için lütfen https://bugs.gnucash.org/"
"show_bug.cgi?id=645216 adresini ziyaret edin."
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8481,16 +8480,16 @@ msgstr ""
"sürümünden okuyamazsınız (bir \"dosya ayrıÅtırma hatası\" bildirilecektir). "
"Eski sürümü korumak isterseniz, kaydetmeden çıkın."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "Bilinmeyen bir G/à hatası (%d) oluÅtu."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "Dosya deÄiÅiklikleri kaydedilsin mi?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8498,16 +8497,16 @@ msgid_plural ""
"If you don't save, changes from the past %d minutes will be discarded."
msgstr[0] "Kaydetmezseniz, son %d dakikada yapılan iÅlemler kaybolacaktır."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "Kaydet_meden devam et"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "%s kilitlenemedi."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8515,7 +8514,7 @@ msgstr ""
"Bu veri tabanı baÅkası tarafından kullanılıyorsa sizin eriÅmeniz uygun "
"olmayabilir. Ne yapmak istersiniz?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8527,44 +8526,44 @@ msgstr ""
"yazma izniniz olmayabilir. Devam ederseniz deÄiÅiklikleri kayıt "
"edemeyebilirsiniz. Ne yapmak istersiniz?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "_Salt-Okunur Aç"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "Yeni _Dosya OluÅtur"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "Yine de _Aç"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "yer tutucu"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "Ãı_k"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "Kullanıcı verileri yükleniyor..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "Kullanıcı verisi yeniden kaydediliyor..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "Dosya dıÅarıya aktarılıyor..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8575,7 +8574,7 @@ msgstr ""
"dosyası kayıt edilirken bir hata oldu.\n"
" "
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
@@ -8583,7 +8582,7 @@ msgstr ""
"Veri tabanı salt okunur olarak açıldı. Farklı bir yere kaydetmek istiyor "
"musunuz?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
@@ -8592,7 +8591,7 @@ msgstr ""
"Geri döndürme, %s'e kaydedilmemiÅ tüm deÄiÅiklikleri çıkarır. Devam etmek "
"istediÄinden emin misin?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<bilinmiyor>"
@@ -9144,7 +9143,7 @@ msgstr ""
"Okunurluk EÅiÄi\" deÄerinden eski. Bu ayar Dosya->Ãzellikler->Hesaplar'da "
"deÄiÅtirilebilir."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/uk.po b/po/uk.po
index 0db6e3e67..c46778df6 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -11,7 +11,7 @@ msgstr ""
"Project-Id-Version: gnucash 4.3-pre1\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2020-12-14 11:39+0200\n"
"Last-Translator: Yuri Chornoivan <yurchor at ukr.net>\n"
"Language-Team: Ukrainian <trans-uk at lists.fedoraproject.org>\n"
@@ -1350,7 +1350,7 @@ msgstr "ÐилÑÑиÑи ÑоваÑ?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2636,7 +2636,7 @@ msgstr "ÐнайÑи ÑобоÑÑ"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "ÐÑдкÑиÑи"
@@ -3465,7 +3465,7 @@ msgid "Open an existing GnuCash file"
msgstr "ÐÑдкÑиÑи Ñайл GnuCash, Ñо ÑÑнÑÑ"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6093,7 +6093,7 @@ msgid "You cannot save to that file."
msgstr "Ðе можна збеÑегÑи Ñей Ñайл."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7383,7 +7383,7 @@ msgid "There was an error parsing the file."
msgstr "ÐÑд ÑÐ°Ñ ÑпÑоби обÑобиÑи Ñайл ÑÑалаÑÑ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "ÐÐ°Ð¿Ð¸Ñ Ñайлаâ¦"
@@ -8263,7 +8263,7 @@ msgid "Import"
msgstr "ÐмпоÑÑ"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "ÐбеÑегÑи"
@@ -8459,8 +8459,7 @@ msgstr "ÐÐµÐ¼Ð°Ñ Ð¿Ñав на ÑиÑÐ°Ð½Ð½Ñ Ð· Ñайла %s."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8477,7 +8476,7 @@ msgstr ""
"\n"
"ÐÑÐ´Ñ Ð»Ð°Ñка, ÑпÑобÑйÑе збеÑегÑи Ð´Ð°Ð½Ñ Ð´Ð¾ ÑнÑого каÑалогÑ."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8486,7 +8485,7 @@ msgstr ""
"оновиÑи Ð±Ð°Ð·Ñ Ð´Ð°Ð½Ð¸Ñ
до поÑоÑÐ½Ð¾Ñ Ð²ÐµÑÑÑÑ, або СкаÑÑваÑи - Ñоб познаÑиÑи ÑÑ Ñк "
"ÑакÑ, Ñо викоÑиÑÑовÑÑÑÑÑÑ ÑÑлÑки Ð´Ð»Ñ ÑиÑаннÑ."
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8498,7 +8497,7 @@ msgstr ""
"â ÐбеÑегÑи Ñк». ÐÑÑм, Ñ ÑезÑлÑÑаÑÑ Ð·Ð°Ð¿Ð¸ÑÑ Ð·Ð° Ð´Ð¾Ð¿Ð¾Ð¼Ð¾Ð³Ð¾Ñ Ð·Ð°ÑÑаÑÑÐ»Ð¾Ñ Ð²ÐµÑÑÑÑ "
"пÑогÑами може бÑÑи вÑÑаÑено данÑ."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8508,7 +8507,7 @@ msgstr ""
"оновиÑи доки вони не звÑлÑнÑÑÑ ÑÑ. ЯкÑо ж наÑÐ°Ð·Ñ ÑÑ Ð½ÑÑ
Ñо не викоÑиÑÑовÑÑ, "
"знайдÑÑÑ Ñ Ð´Ð¾ÐºÑменÑаÑÑÑ ÑпоÑÑб оÑиÑÐµÐ½Ð½Ñ Ð·Ð°Ð²Ð¸ÑлиÑ
ÑеанÑÑв."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8523,7 +8522,7 @@ msgstr ""
"ÑнÑÐ¾Ñ Ð²ÐµÑÑÑÑ Â«libdbi». Щоб дÑзнаÑиÑÑ Ð±ÑлÑÑе, бÑÐ´Ñ Ð»Ð°Ñка, ознайомÑеÑÑ Ð·Ñ "
"ÑÑоÑÑÐ½ÐºÐ¾Ñ https://bugs.gnucash.org/show_bug.cgi?id=611936"
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8536,7 +8535,7 @@ msgstr ""
"бÑÐ´Ñ Ð»Ð°Ñка, ознайомÑеÑÑ Ñз вмÑÑÑом ÑÑоÑÑнки https://bugs.gnucash.org/"
"show_bug.cgi?id=645216"
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8549,16 +8548,16 @@ msgstr ""
"пÑо Â«Ð¿Ð¾Ð¼Ð¸Ð»ÐºÑ Ð¿Ñд ÑÐ°Ñ Ð¾Ð±Ñобки Ñайла»). ЯкÑо ви Ñ
оÑеÑе збеÑегÑи ÑÑаÑÑ Ð²ÐµÑÑÑÑ, "
"вийдÑÑÑ Ð· пÑогÑами без збеÑÐµÐ¶ÐµÐ½Ð½Ñ Ð´Ð°Ð½Ð¸Ñ
."
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "ÐевÑдома помилка вводÑ/Ð²Ð¸Ð²Ð¾Ð´Ñ (%d)."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "ÐбеÑегÑи змÑни Ñ ÑайлÑ?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8577,16 +8576,16 @@ msgstr[3] ""
"ЯкÑо ви не збеÑежеÑе Ñайл, змÑни, внеÑÐµÐ½Ñ Ð¿ÑоÑÑгом оÑÑаннÑÐ¾Ñ Ñ
вилини, бÑде "
"вÑÑаÑено."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "ÐÑодовжиÑи б_ез збеÑеженнÑ"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash не вдаÑÑÑÑÑ Ð²ÑÑановиÑи блокÑÐ²Ð°Ð½Ð½Ñ Ð´Ð»Ñ %s."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8594,7 +8593,7 @@ msgstr ""
"Ðожливо, база даниÑ
викоÑиÑÑовÑÑÑÑÑÑ ÑнÑим коÑиÑÑÑваÑем, Ñ ÑÑÐ¾Ð¼Ñ Ð²Ð¸Ð¿Ð°Ð´ÐºÑ Ð½Ðµ "
"ÑлÑд вÑдкÑиваÑи Ð±Ð°Ð·Ñ Ð´Ð°Ð½Ð¸Ñ
. Що ви бажаÑÑе зÑобиÑи?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
msgid ""
"That database may be on a read-only file system, you may not have write "
"permission for the directory, or your anti-virus software is preventing this "
@@ -8606,40 +8605,40 @@ msgstr ""
"запобÑÐ³Ð°Ñ Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ ÑÑÑÑ Ð´ÑÑ. ЯкÑо ви пÑодовжиÑи, ви не зможеÑе збеÑегÑи "
"змÑни. Що ви бажаÑÑе зÑобиÑи?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "ÐÑдкÑиÑи _лиÑе Ð´Ð»Ñ ÑиÑаннÑ"
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
msgid "Create _New File"
msgstr "С_ÑвоÑиÑи Ñайл"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "ÐÑдкÑиÑи _попÑи вÑе"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
msgid "Open _Folder"
msgstr "ÐÑдкÑиÑи _ÑекÑ"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "Ðи_йÑи"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "ÐаванÑÐ°Ð¶ÐµÐ½Ð½Ñ ÐºÐ¾ÑиÑÑÑваÑÑкиÑ
даниÑ
â¦"
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "ÐовÑоÑне збеÑÐµÐ¶ÐµÐ½Ð½Ñ ÐºÐ¾ÑиÑÑÑваÑÑкиÑ
даниÑ
â¦"
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "ÐкÑпоÑÑÑваÑи Ñайлâ¦"
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8650,7 +8649,7 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
@@ -8658,7 +8657,7 @@ msgstr ""
"ÐÐ°Ð·Ñ Ð´Ð°Ð½Ð¸Ñ
бÑло вÑдкÑиÑо лиÑе Ð´Ð»Ñ ÑиÑаннÑ. ХоÑеÑе збеÑегÑи ÑÑ Ð´Ð¾ ÑнÑого "
"мÑÑÑÑ?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
@@ -8667,7 +8666,7 @@ msgstr ""
"СкаÑÑÐ²Ð°Ð½Ð½Ñ ÑÑÑÑ Ð´ÑÑ Ð¿Ñизведе до вÑÐ´ÐºÐ¸Ð´Ð°Ð½Ð½Ñ ÑÑÑÑ
незбеÑежениÑ
змÑн Ñ %s. Ðи "
"ÑпÑÐ°Ð²Ð´Ñ ÑÑого Ñ
оÑеÑе?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<невÑдомо>"
@@ -9211,7 +9210,7 @@ msgstr ""
"дÑапазон змÑнÑваниÑ
запиÑÑв можна за Ð´Ð¾Ð¿Ð¾Ð¼Ð¾Ð³Ð¾Ñ Ð¿ÑнкÑÑ Ð¼ÐµÐ½Ñ Â«Ð¤Ð°Ð¹Ð» â "
"ÐлаÑÑивоÑÑÑ â РаÑ
Ñнки»."
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/ur.po b/po/ur.po
index 3edf8808d..e672e1b44 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -7,7 +7,7 @@ msgstr ""
"Project-Id-Version: GnuCash 2.6.3\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2014-07-14 08:57-0800\n"
"Last-Translator: Atiur Rahman Khan <ciil_khan at yahoo.co.in>\n"
"Language-Team: NONE\n"
@@ -1328,7 +1328,7 @@ msgstr "ÙÙÙ
ÛÚÛÙ¹Û Ù٠خارج ÙØ±ÛÚºØ"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2614,7 +2614,7 @@ msgstr "ÙØ§Ù
ÙÙ ØªÙØ§Ø´ ÙØ±Ù"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "ÙÚ¾ÙÙÙ"
@@ -3424,7 +3424,7 @@ msgid "Open an existing GnuCash file"
msgstr "اÛÙ Ù
ÙØ¬ÙØ¯Û GnuCash ÙØ§Ø¦Ù ÙÚ¾ÙÙÙ"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6130,7 +6130,7 @@ msgid "You cannot save to that file."
msgstr "آپ ÙÛ ÙØ§Ø¦Ù ÙÙ Ù
ØÙÙØ¸ ÙÛÛÚº ÙØ±Ø³ÙتÛÛ "
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7417,7 +7417,7 @@ msgid "There was an error parsing the file."
msgstr "ÙØ§Ø¦Ù Ù٠تØÙÛ٠صرÙÛ Ù
ÛÚº اÛ٠خاÙ
Û ØªÚ¾ÛÛ"
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "ÙØ§Ø¦Ù ÙÙ ÙÙھا Ø¬Ø§Ø±ÛØ§..."
@@ -8264,7 +8264,7 @@ msgid "Import"
msgstr "درآÙ
د"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Ù
ØÙÙØ¸ ÙØ±Ù"
@@ -8456,8 +8456,7 @@ msgstr "ÙØ§Ø¦Ù %s Ø³Û Ù¾ÚÚ¾ÙÛ ÙÛ ÙÛÛ Ù¾ÚÚ¾ÙÛ ÙÛ Ø§Ø¬Ø§Ø²Øª ÙÛ
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8474,7 +8473,7 @@ msgstr ""
"\n"
"اÛÚ© Ù
ختÙÙ ÚØ§Ø¦Ø±ÛÚ©Ù¹Ø±Û Ù
ÛÚº Ø¯ÙØ¨Ø§Ø±Û Ú©ÙØ´Ø´ کرÛÚº."
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8482,7 +8481,7 @@ msgstr ""
"ÛÛ ÚØ§Ù¹Ø§ Ø¨ÛØ³ GnuCash ÙÛ Ø§Û٠پراÙÛ ÙØ±ÚÙ Ø³Û ÛÛÛ Ø§Ø³Û Ø¬Ø§Ø±Û ÙØ±ÚÙ Ù
ÛÚº اپ ÚÛÙ¹ ÙØ±ÙÛ "
"ÙÛ ÙÛÛ OK Ù
ÙØªØ®Ø¨ ÙØ±ÙØ ØµØ±Ù Û Ù¾ÚÚ¾Û ÙÛ Ø¬ÛØ³Û ÙØ´Ø§Ù ÙØ±ÙÛ ÙÛ ÙÛÛ Ù
ÙØ³ÙØ® ÙÙ ÚÙÙÛÛ "
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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-"
@@ -8492,7 +8491,7 @@ msgstr ""
"طرÛÙÛ Ø³Û Ø§Ø³ Ú©Ù Ù
ØÙÙØ¸ ÙÛÛÚº ÙØ±Ø³Ú©ØªÛ. آپ ÙØ§Ø¦Ù->Ù
ØÙÙØ¸ Ø¬ÛØ³Û ÙØ±ÙÛ ØªÙ ÛÛ ØµØ±Ù Ù¾ÚÚ¾ÙÛ "
"Ø³Û ÙØ´Ø§Ù Ùگا Ø¯ÛØ§ Ø¬Ø§Ø¦Û Ú¯Ø§Ø ÙÛÚ©Ù ÚØ§Ù¹Ø§ پراÙÛ ÙØ±ÚÙ Ù
ÛÚº رائٹ ÙØ±ÙÛ Ø³Û Ø®ØªÙ
ÛÙØ³Ú©ØªØ§."
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8503,7 +8502,7 @@ msgstr ""
"صارÙÛÙ ÙÛÛÚº ÛÛØ ت٠ÚÛÙÚ¯ ÙÛÙÚ¯ ÙØ§Ú¯ Ø§Ù Ø³ÛØ´Ùز ÙÙ ÙÛØ³Û Ù¹Ú¾ÛÙ ÙØ±ÛÚº Ø ÛÛ Ø³ÛÙÚ¾ÙÛ ÙÛ "
"ÙÛÛ Ø¯Ø³ØªØ§ÙÛØ²Ø§Øª Ø³Û Ø±Ø§Ø¨Ø·Û ÙØ±ÛÚºÛ"
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
#, fuzzy
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
@@ -8519,7 +8518,7 @@ msgstr ""
"Ù
Ø²ÛØ¯ Ù
عÙÙÙ
ات Ú©Û ÙØ¦Û https://bugs.gnucash.org/show_bug.cgiØid=611936 Ù
ÙØ§ØØ¸Û "
"کرÛÚº."
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8531,7 +8530,7 @@ msgstr ""
"Ø³Û Û٠سکتا ÛÛ. Ù
Ø²ÛØ¯ Ù
عÙÙÙ
ات Ú©Û ÙØ¦Û https://bugs.gnucash.org/show_bug.cgiØ"
"id=645216 Ù
ÙØ§ØØ¸Û کرÛÚº."
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8543,16 +8542,16 @@ msgstr ""
"ÙÛ ÙØ§Ø¨Ù ÙÛÛÚº ÛÙÙÚ¯Û ÛÛ Ø§ÛÚ©( \"ÙØ§Ø¦Ù پارسÛÙÚ¯ خاÙ
Û Ø±Ù¾ÙØ±Ù¹ ÙØ±Û گا \") اگر آپ پراÙÛ "
"ÙØ±ÚÙ ÙÙ Ù
ØÙÙØ· ÙØ±Ùا ÚØ§ÛØªÛ ÛÛ ØªÙ Ø Ø¨ØºÛØ± Ù
ØÙÙØ¸ ÙÛÛ Ø§ÛÙØ²ÛÙ¹ ÙØ±ÛÚº Û"
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "اÛÙ ÙØ§Ù
عÙÙÙ
I/O خاÙ
Û (%d ) ÙØ§Ùع ÛÙØ¦Û Û"
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "ÙØ§Ø¦Ù Ù
ÛÚº تبدÛÙÛÙÚº ÙÙ Ù
ØÙÙØ¸ ÙØ±ÙØ"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8565,16 +8564,16 @@ msgstr[1] ""
"اگر آپ ÙÛÛÚº Ù
ØÙÙØ¸ ÙÛÛÚº ÙØ±ØªÛ ÛÛØ ت٠پÚÚ¾ÙÛ %d Ù
ÙÙ¹ÙÚº ÙÛ ØªØ¨Ø¯ÛÙÙÚº ÙÙ Ûٹا Ø¯ÛØ§ "
"Ø¬Ø§Ø¦Û Ú¯Ø§Û"
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "Ù
ØÙÙØ¸ ÙÛÛ Ø¨ØºÛØ± Ø¬Ø§Ø±Û Ø±ÙÚ¾Û"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash %s ÙÛ ÙÛÛ ÙÙÙ ÙÙ ØØ§ØµÙ ÙÛÛÚº ÙØ± Ù¾Ø§ÛØ§Û"
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8582,7 +8581,7 @@ msgstr ""
"ÚØ§Ù¹Ø§ Ø¨ÛØ³ ÙØ§ استعÙ
ا٠دÛگر صار٠ÙÛ Ø°Ø±ÛØ¹Û ÙÛØ§ Ø¬Ø§Ø³ÙØªØ§ ÛÛØ جس ØØ§Ù Ù
ÛÚº آپ ÙÙ ÚØ§Ù¹Ø§ "
"Ø¨ÛØ³ ÙÙ ÙÛÛÚº ÙÚ¾ÙÙÙØ§ ÚØ§ÛÛÛ Û Ø¢Ù¾ ÙÛØ§ ÙØ±Ùا Ù¾Ø³ÙØ¯ ÙØ±ÛÚº Ú¯ÛØ"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8594,44 +8593,44 @@ msgstr ""
"ÙÙÚ¾ÙÛ ÙÛ Ø§Ø¬Ø§Ø²Øª ÙÛÛÚº ÛÛÛ Ø§Ú¯Ø± آپ Ø¢Ú¯Û Ø¨ÚÚ¾ØªÛ ÛÛ ØªÙ Ø¢Ù¾ ÙØ³Û Ø¨Ú¾Û ØªØ¨Ø±ÛÙÛ ÙÙ Ù
ØÙÙØ¸ "
"ÙØ±ÙÛ ÙÛ ÙØ§Ø¨Ù ÙÛÛÚº ÛÙØ³ÙØªÛ ÛÛÛ Ø¢Ù¾ ÙÛØ§ ÙØ±Ùا Ù¾Ø³ÙØ¯ ÙØ±Ù Ú¯ÛØ"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr "صر٠پÚÚ¾ÛÚº_ ÙÚ¾ÙÙÛÚº "
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "_ÙØ¦Û ÙØ§Ø¦Ù Ù٠تخÙÛÙ ÙØ±Ù "
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "آپÙ_اÛÙÛ ÙÛ"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "Ù¾ÙÛØ³ ÛÙÙÚØ±"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "_Ø¨ÙØ¯ ÙØ±Ù"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "ØµØ§Ø±Ù ÚØ§Ù¹Ø§ ÙÙÚ ÛÙ Ø±ÛØ§ ÛÛ... "
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "ØµØ§Ø±Ù ÙØ§ ÚØ§Ù¹Ø§ Ø¯ÙØ¨Ø§Ø±Û Ù
ØÙÙØ¸ ÛÙØ±Ûا ÛÛ... "
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "ÙØ§Ø¦Ù برآÙ
د ÙÛ Ø¬Ø§Ø±ÛÛ ÛÛ..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8642,7 +8641,7 @@ msgstr ""
"\n"
"%s "
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
@@ -8650,14 +8649,14 @@ msgstr ""
"ÚØ§Ù¹Ø§ Ø¨ÛØ³ صر٠پÚÚ¾ÙÛ ÙÛ ÙÛÛ ÙÚ¾ÙÙØ§ Ú¯ÛØ§ تھا. ÙÛØ§ آپ اÛÚ© Ù
ختÙÙ Ø¬Ú¯Û Ù¾Ø± Ù
ØÙÙØ¸ Ú©Ø±ÙØ§ "
"ÚØ§ÛØªÛ ÛÛÚºØ"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "ÙØ§Ø¦Ù %s Ù¾ÛÙÛ Ø³Û Ù
ÙØ¬Ùد ÛÛÛ ÙÛØ§ آپ ÙØ§ÙØ¹Û Ø§Ø³Û Ù¾Ø± Ø¯ÙØ¨Ø§Ø±Û ÙÙÚ¾ÙØ§ ÚØ§ÛØªÛ ÛÛÚºØ"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<ÙØ§Ù
عÙÙÙ
>"
@@ -9210,7 +9209,7 @@ msgstr ""
"اس کتاب Ú©Û ÙØ¦Û ÙÙÙ ÙÛ٠دÛÙ Ú©Û Ø¯Ø§Ø®Ù Ø´Ø¯Û ØªØ§Ø±ÛØ® \"صر٠پÚÚ¾ÙÛ ØªÚ¾Ø±ÛØ´ÙÙÚ \" سÛÙ¹ Ø³Û "
"Ù¾Ø±Ø§ÙØ§ ÛÛ. ÛÛ ØªØ±ØªÛØ¨ ÙØ§Ø¦Ù->Ù¾Ø±Ø§Ù¾Ø±Ù¹ÛØ²->اکاؤÙٹس.Ù
ÛÚº تبدÛÙ Ú©Û Ø¬Ø§ Ø³Ú©ØªÛ ÛÛ "
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/vi.po b/po/vi.po
index 48c93286e..5192d08e5 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -7,7 +7,7 @@ msgstr ""
"Project-Id-Version: GnuCash 2.2.2\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2007-12-29 17:09+1030\n"
"Last-Translator: Clytie Siddall <clytie at riverland.net.au>\n"
"Language-Team: Vietnamese <vi-VN at googlegroups.com>\n"
@@ -1301,7 +1301,7 @@ msgstr "Xoá hà ng hoá ?"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2595,7 +2595,7 @@ msgstr "Tìm công viá»c"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "Má»"
@@ -3404,7 +3404,7 @@ msgid "Open an existing GnuCash file"
msgstr "Má» má»t táºp tin GnuCash Äã có"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6175,7 +6175,7 @@ msgid "You cannot save to that file."
msgstr "Không thá» lưu và o táºp tin Äó."
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7468,7 +7468,7 @@ msgid "There was an error parsing the file."
msgstr "Gặp lá»i khi phân tÃch táºp tin."
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "Äang ghi táºp tin..."
@@ -8317,7 +8317,7 @@ msgid "Import"
msgstr "Nháºp"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "Lưu"
@@ -8510,8 +8510,7 @@ msgstr "Không có quyá»n Äá»c từ táºp tin %s."
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8522,7 +8521,7 @@ msgid ""
"Please try again in a different directory."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
#, fuzzy
msgid ""
"This database is from an older version of GnuCash. Select OK to upgrade it "
@@ -8531,14 +8530,14 @@ msgstr ""
"CÆ¡ sá» dữ liá»u nà y thuá»c vá» phiên bản GnuCash cÅ©. Bạn có muá»n nâng cấp cÆ¡ sá» "
"dữ liá»u lên cần phải hiá»n thá»i không?"
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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 ""
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8548,7 +8547,7 @@ msgstr ""
"khi há» ÄÄng xuất. Nếu không có ngưá»i dùng khác, xem tà i liá»u hưá»ng dẫn Äá» "
"tìm biết xoá sạch các phiên chạy ÄÄng nháºp theo sát như thế nà o."
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8557,7 +8556,7 @@ msgid ""
"gnucash.org/show_bug.cgi?id=611936 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8565,7 +8564,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8573,16 +8572,16 @@ msgid ""
"you wish to preserve the old version, exit without saving."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "Gặp lá»i V/R không rõ (%d)."
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "Lưư các thay Äá»i vá» táºp tin không?"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, fuzzy, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8590,16 +8589,16 @@ msgid_plural ""
"If you don't save, changes from the past %d minutes will be discarded."
msgstr[0] "Không lưu thì các thay Äá»i trong vòng %d phút cuá»i cùng sẽ bá» mất."
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "Tiếp tụ_c mà không lưu"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash không thỠlấy khóa cho %s."
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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?"
@@ -8607,7 +8606,7 @@ msgstr ""
"CÆ¡ sá» dữ liá»u Äó có lẽ Äang ÄÆ°á»£c dùng bá»i ngưá»i dùng khác, trong trưá»ng hợp "
"Äó bạn không nên má» cÆ¡ sá» dữ liá»u. Bạn có muá»n là m gì váºy?"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8619,47 +8618,47 @@ msgstr ""
"quyá»n ghi và o thư mục. Tiếp tục thì có lẽ bạn không thá» lưu thay Äá»i. Bạn có "
"muá»n là m gì váºy?"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "Tạ_o táºp tin má»i"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
#, fuzzy
msgid "Open _Anyway"
msgstr "Vẫn _má»"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
#| msgid "placeholder"
msgid "Open _Folder"
msgstr "Bá» giữ chá»"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "T_hoát"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
#, fuzzy
msgid "Loading user data..."
msgstr "Äang nạp dữ liá»u..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
#, fuzzy
msgid "Re-saving user data..."
msgstr "Äang nạp dữ liá»u..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "Äang xuất khẩu táºp tin..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8670,21 +8669,21 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
#, fuzzy
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr "Có vẻ là cÆ¡ sá» dữ liá»u %s không tá»n tại. Bạn có muá»n tạo nó không?"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "Táºp tin %s Äã có. Bạn có chắc muá»n ghi Äè lên nó không?"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<không rõ>"
@@ -9247,7 +9246,7 @@ msgid ""
">Properties->Accounts."
msgstr ""
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
#, fuzzy
diff --git a/po/zh_CN.po b/po/zh_CN.po
index e05c35b6e..fbec1eab6 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -16,7 +16,7 @@ msgstr ""
"Project-Id-Version: gnucash 3.7\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2019-12-25 22:26-0500\n"
"Last-Translator: Boyuan Yang <073plan at gmail.com>\n"
"Language-Team: Chinese (simplified) <i18n-zh at googlegroups.com>\n"
@@ -1277,7 +1277,7 @@ msgstr "å é¤ååï¼"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2563,7 +2563,7 @@ msgstr "æ¥æ¾å·¥ä½"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "æå¼"
@@ -3351,7 +3351,7 @@ msgid "Open an existing GnuCash file"
msgstr "æå¼å·²æç GnuCash æä»¶"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6073,7 +6073,7 @@ msgid "You cannot save to that file."
msgstr "æ¨ä¸è½åå°é£ä¸ªæä»¶ã"
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7348,7 +7348,7 @@ msgid "There was an error parsing the file."
msgstr "è§£ææä»¶æ¶éå°é误ã"
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "æ£å¨åå
¥æä»¶..."
@@ -8174,7 +8174,7 @@ msgid "Import"
msgstr "导å
¥"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "ä¿å"
@@ -8357,8 +8357,7 @@ msgstr "没æä»æä»¶ %s ä¸è¯»åæ°æ®çæéã"
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8369,7 +8368,7 @@ msgid ""
"Please try again in a different directory."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8377,14 +8376,14 @@ msgstr ""
"è¿ä¸ªæ°æ®åºæ¥èªè¾æ§çæ¬ç GnuCashãéæ©ç¡®å®å¯ä»¥å°å
¶åçº§ä¸ºææ°çæ¬ï¼åæ¶åä¼å°"
"å
¶æ 记为åªè¯»ã"
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
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 ""
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8393,7 +8392,7 @@ msgstr ""
"å
¶ä»ç¨æ·æ£å¨ä½¿ç¨æ¤ SQL æ°æ®åºï¼å¨ä»ä»¬æ³¨éåä¸è½è¿è¡å级çæä½ã妿å½å没æå
¶"
"ä»çç¨æ·ï¼è¯·åé
æä»¶å¦ä¹ å¦ä½æ¸
餿å¨ç«ä¸çç»å½ä»»å¡é¶æ®µã"
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8402,7 +8401,7 @@ msgid ""
"gnucash.org/show_bug.cgi?id=611936 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8410,7 +8409,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8418,16 +8417,16 @@ msgid ""
"you wish to preserve the old version, exit without saving."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "åçæªç¥çè¾å
¥/è¾åºé误(%d)ã"
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "å°æ´æ¹åå°æä»¶ä¸ï¼"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, fuzzy, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8435,22 +8434,22 @@ msgid_plural ""
"If you don't save, changes from the past %d minutes will be discarded."
msgstr[0] "妿æ¨ä¸ä¿åï¼å°æ¾å¼æ¤å %d åéçä¿®æ¹ã"
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "ç»§ç»ä¸ä¸ä¿å(_W)"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr "GnuCash æ æ³è·å¾ %s çéã"
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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 "æ°æ®åºæ£è¢«å
¶å®ç¨æ·è®¿é®ï¼å æ¤æ¨ä¸åºè¯¥æå¼æ¤æ°æ®åºãæ¨æ³åä»ä¹ï¼"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8461,45 +8460,45 @@ msgstr ""
"è¿ä¸ªæ°æ®åºä¹è®¸æ¯å¨ä¸ä¸ªåªè¯»æä»¶ç³»ç»ä¸ï¼æè
æ¨å¯¹è¯¥ç®å½æ²¡æåæéã妿æ¨ç»§ç»ï¼"
"æ¨å°æ æ³ä¿çä»»ä½ä¿®æ¹ãæ¨æ³åä»ä¹ï¼"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "åå»ºæ°æä»¶(_C)"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
#, fuzzy
msgid "Open _Anyway"
msgstr "æ 论å¦ä½é½æå¼(_O)"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
msgid "Open _Folder"
msgstr "å ä½ç¬¦"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "éåº(_Q)"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "æ£å¨å è½½ç¨æ·æ°æ®..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
#, fuzzy
msgid "Re-saving user data..."
msgstr "æ£å¨å è½½ç¨æ·æ°æ®..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "å¯¼åºæä»¶"
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8510,21 +8509,21 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
#, fuzzy
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr "æ°æ®åº %s ä¼¼ä¹ä¸åå¨ãæ¨è¦å建å®åï¼"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "æä»¶ %s å·²åå¨ãæ¨ç¡®å®æ¨è¦è¦çå®åï¼"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<æªç¥>"
@@ -9074,7 +9073,7 @@ msgid ""
">Properties->Accounts."
msgstr ""
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
msgid "Not enough information for Blank Transaction?"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 59fec4cb7..4389b1b4e 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: GnuCash-2.4.3\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2021-01-22 10:21+0100\n"
+"POT-Creation-Date: 2021-01-22 11:07+0100\n"
"PO-Revision-Date: 2012-05-13 16:21+0800\n"
"Last-Translator: Kuang-che Wu <kcwu at csie.org>\n"
"Language-Team: Chinese (traditional) <zh-l10n at linux.org.tw>\n"
@@ -1255,7 +1255,7 @@ msgstr "åªé¤ååï¼"
#: gnucash/gnome-utils/dialog-options.c:224
#: gnucash/gnome-utils/dialog-tax-table.c:603
#: gnucash/gnome-utils/gnc-file.c:118 gnucash/gnome-utils/gnc-file.c:366
-#: gnucash/gnome-utils/gnc-file.c:664 gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-file.c:663 gnucash/gnome-utils/gnc-gui-query.c:300
#: gnucash/gnome-utils/gnc-main-window.c:1307
#: gnucash/gnome-utils/gnc-main-window.c:1448
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
@@ -2548,7 +2548,7 @@ msgstr "å°æ¾å·¥ä½"
#: gnucash/gnome/gnc-plugin-page-budget.c:208
#: gnucash/gnome/window-reconcile2.c:1634 gnucash/gnome/window-reconcile.c:1790
#: gnucash/gnome-utils/gnc-file.c:90 gnucash/gnome-utils/gnc-file.c:327
-#: gnucash/gnome-utils/gnc-file.c:1140
+#: gnucash/gnome-utils/gnc-file.c:1139
msgid "Open"
msgstr "éå"
@@ -3335,7 +3335,7 @@ msgid "Open an existing GnuCash file"
msgstr "éåå·²åå¨ç GnuCash æªæ¡"
#: gnucash/gnome/gnc-plugin-basic-commands.c:121
-#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:666
+#: gnucash/gnome-utils/gnc-file.c:100 gnucash/gnome-utils/gnc-file.c:665
#: gnucash/gnome-utils/gnc-main-window.c:1308
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
@@ -6072,7 +6072,7 @@ msgid "You cannot save to that file."
msgstr "æ¨ä¸è½å²åæ¤æªæ¡ã"
#: gnucash/gnome/gnc-plugin-page-report.c:1610
-#: gnucash/gnome-utils/gnc-file.c:1320 gnucash/gnome-utils/gnc-file.c:1567
+#: gnucash/gnome-utils/gnc-file.c:1319 gnucash/gnome-utils/gnc-file.c:1566
#: gnucash/import-export/csv-exp/assistant-csv-export.c:741
#, c-format
msgid "The file %s already exists. Are you sure you want to overwrite it?"
@@ -7324,7 +7324,7 @@ msgid "There was an error parsing the file."
msgstr "è§£ææ¤æªæ¡æç¼çé¯èª¤ã"
#: gnucash/gnome-utils/assistant-xml-encoding.c:1149
-#: gnucash/gnome-utils/gnc-file.c:1409 gnucash/gnome-utils/gnc-file.c:1648
+#: gnucash/gnome-utils/gnc-file.c:1408 gnucash/gnome-utils/gnc-file.c:1647
msgid "Writing file..."
msgstr "寫å
¥æªæ¡ä¸..."
@@ -8146,7 +8146,7 @@ msgid "Import"
msgstr "å¯å
¥"
#: gnucash/gnome-utils/gnc-file.c:102 gnucash/gnome-utils/gnc-file.c:343
-#: gnucash/gnome-utils/gnc-file.c:1194 gnucash/gnome-utils/gnc-file.c:1466
+#: gnucash/gnome-utils/gnc-file.c:1193 gnucash/gnome-utils/gnc-file.c:1465
msgid "Save"
msgstr "å²åæªæ¡"
@@ -8328,8 +8328,7 @@ msgstr "æ¨æ²ææ¬éè®åæªæ¡ %sã"
#. Translators: the first %s is a path in the filesystem,
#. the second %s is PACKAGE_NAME, which by default is "GnuCash"
-#.
-#: gnucash/gnome-utils/gnc-file.c:481
+#: gnucash/gnome-utils/gnc-file.c:480
#, c-format
msgid ""
"You attempted to save in\n"
@@ -8340,7 +8339,7 @@ msgid ""
"Please try again in a different directory."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:488
+#: gnucash/gnome-utils/gnc-file.c:487
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."
@@ -8348,7 +8347,7 @@ msgstr ""
"éåè³æåº«ä¾èªè¼èçæ¬ç GnuCashãæç¢ºå®å°è³æåº«åç´è³æ°ççæ¬ï¼æåæ¶å°è³æ"
"庫æ¨è¨çºå¯è®ã"
-#: gnucash/gnome-utils/gnc-file.c:497
+#: gnucash/gnome-utils/gnc-file.c:496
#, fuzzy
msgid ""
"This database is from a newer version of GnuCash. This version can read it, "
@@ -8358,7 +8357,7 @@ msgstr ""
"éåè³æåº«ä¾èªè¼æ°çæ¬ç GnuCashãç¾å¨éåçæ¬è½å¤ è®åï¼ä½ç¡æ³å®å
¨ç寫å
¥ãè³"
"æåº«å°è¢«æ¨è¨çºå¯è®ï¼ç´å°æ¨å·è¡ æªæ¡->å¦åæ°æªã"
-#: gnucash/gnome-utils/gnc-file.c:506
+#: gnucash/gnome-utils/gnc-file.c:505
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 "
@@ -8367,7 +8366,7 @@ msgstr ""
"å
¶ä»ä½¿ç¨è
æ£å¨ä½¿ç¨æ¤ SQL è³æåº«ï¼å¨ä»åç»åºåä¸è½é²è¡åç´çåä½ã妿ç®åæ²æ"
"å
¶ä»ç使ç¨è
ï¼è«å鱿件å¸ç¿å¦ä½æ¸
餿å¨ç«ä¸çç»å
¥å·¥ä½é段ã"
-#: gnucash/gnome-utils/gnc-file.c:516
+#: gnucash/gnome-utils/gnc-file.c:515
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store "
"large numbers. This means GnuCash cannot use SQL databases correctly. "
@@ -8376,7 +8375,7 @@ msgid ""
"gnucash.org/show_bug.cgi?id=611936 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:528
+#: gnucash/gnome-utils/gnc-file.c:527
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 "
@@ -8384,7 +8383,7 @@ msgid ""
"id=645216 for more information."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:538
+#: gnucash/gnome-utils/gnc-file.c:537
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 "
@@ -8392,16 +8391,16 @@ msgid ""
"you wish to preserve the old version, exit without saving."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:549
+#: gnucash/gnome-utils/gnc-file.c:548
#, c-format
msgid "An unknown I/O error (%d) occurred."
msgstr "ç¼çæªç¥ç輸å
¥/輸åºé¯èª¤(%d)ã"
-#: gnucash/gnome-utils/gnc-file.c:643
+#: gnucash/gnome-utils/gnc-file.c:642
msgid "Save changes to the file?"
msgstr "å°è®æ´åå°æªæ¡ä¸ï¼"
-#: gnucash/gnome-utils/gnc-file.c:656
+#: gnucash/gnome-utils/gnc-file.c:655
#: gnucash/gnome-utils/gnc-main-window.c:1301
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
@@ -8410,23 +8409,23 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: gnucash/gnome-utils/gnc-file.c:660
+#: gnucash/gnome-utils/gnc-file.c:659
msgid "Continue _Without Saving"
msgstr "ä¸åæªï¼ç¹¼çºæä½(_W)"
-#: gnucash/gnome-utils/gnc-file.c:822
+#: gnucash/gnome-utils/gnc-file.c:821
#, c-format
msgid "GnuCash could not obtain the lock for %s."
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:824
+#: gnucash/gnome-utils/gnc-file.c:823
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 ""
"å¯è½æå
¶ä»ä½¿ç¨è
å¨ä½¿ç¨æ¤è³æåº«ï¼å¨æ¤æ
形䏿¨ä¸æè©²éåå®ãæ¨æ³è¦æéº¼åï¼"
-#: gnucash/gnome-utils/gnc-file.c:827
+#: gnucash/gnome-utils/gnc-file.c:826
#, fuzzy
msgid ""
"That database may be on a read-only file system, you may not have write "
@@ -8437,43 +8436,43 @@ msgstr ""
"éåè³æåº«å¯è½æ¾å¨å¯è®çæªæ¡ç³»çµ±ï¼ææ¯æ¨æ²æè©²ç®éç寫å
¥æ¬éãæ¨è¥ç¹¼çºæä½ï¼"
"å¯è½æç¡æ³åä¸ä»»ä½è³æä¿®æ¹ãæ¨æ³è¦æéº¼åï¼"
-#: gnucash/gnome-utils/gnc-file.c:850
+#: gnucash/gnome-utils/gnc-file.c:849
#: gnucash/gtkbuilder/dialog-file-access.glade:98
msgid "Open _Read-Only"
msgstr ""
-#: gnucash/gnome-utils/gnc-file.c:853
+#: gnucash/gnome-utils/gnc-file.c:852
#, fuzzy
#| msgid "_Create New File"
msgid "Create _New File"
msgstr "å»ºç«æ°æªæ¡(_C)"
-#: gnucash/gnome-utils/gnc-file.c:856
+#: gnucash/gnome-utils/gnc-file.c:855
msgid "Open _Anyway"
msgstr "ç¡è«å¦ä½é½éå(_A)"
-#: gnucash/gnome-utils/gnc-file.c:859
+#: gnucash/gnome-utils/gnc-file.c:858
#, fuzzy
msgid "Open _Folder"
msgstr "Placeholder"
-#: gnucash/gnome-utils/gnc-file.c:865 gnucash/gnome-utils/gnc-main-window.c:310
+#: gnucash/gnome-utils/gnc-file.c:864 gnucash/gnome-utils/gnc-main-window.c:310
msgid "_Quit"
msgstr "é¢é(_Q)"
-#: gnucash/gnome-utils/gnc-file.c:951 gnucash/gnome-utils/gnc-file.c:971
+#: gnucash/gnome-utils/gnc-file.c:950 gnucash/gnome-utils/gnc-file.c:970
msgid "Loading user data..."
msgstr "è¼å
¥ä½¿ç¨è
è³æ..."
-#: gnucash/gnome-utils/gnc-file.c:987
+#: gnucash/gnome-utils/gnc-file.c:986
msgid "Re-saving user data..."
msgstr "éæ°å²å使ç¨è
è³æ..."
-#: gnucash/gnome-utils/gnc-file.c:1349
+#: gnucash/gnome-utils/gnc-file.c:1348
msgid "Exporting file..."
msgstr "å¯åºæªæ¡ä¸..."
-#: gnucash/gnome-utils/gnc-file.c:1362
+#: gnucash/gnome-utils/gnc-file.c:1361
#, c-format
msgid ""
"There was an error saving the file.\n"
@@ -8484,21 +8483,21 @@ msgstr ""
"\n"
"%s"
-#: gnucash/gnome-utils/gnc-file.c:1397
+#: gnucash/gnome-utils/gnc-file.c:1396
#, fuzzy
msgid ""
"The database was opened read-only. Do you want to save it to a different "
"place?"
msgstr "è³æåº« %s ä¼¼ä¹ä¸åå¨ãæ¨è¦å»ºç«å®åï¼"
-#: gnucash/gnome-utils/gnc-file.c:1692
+#: gnucash/gnome-utils/gnc-file.c:1691
#, fuzzy, c-format
msgid ""
"Reverting will discard all unsaved changes to %s. Are you sure you want to "
"proceed ?"
msgstr "æªæ¡ %s å·²åå¨ãæ¨ç¢ºå®è¦è¦èå®ï¼"
-#: gnucash/gnome-utils/gnc-file.c:1700
+#: gnucash/gnome-utils/gnc-file.c:1699
#: gnucash/gnome-utils/gnc-main-window.c:1269
msgid "<unknown>"
msgstr "<æªç¥>"
@@ -9043,7 +9042,7 @@ msgid ""
">Properties->Accounts."
msgstr ""
-#. Translators: This message will be presented when a use
+#. Translators: This message will be presented when a user
#. attempts to record a transaction without splits
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1723
#, fuzzy
Summary of changes:
bindings/guile/test/test-scm-utilities.scm | 15 +---
bindings/guile/utilities.scm | 16 ----
gnucash/gnome-utils/dialog-account.c | 3 -
gnucash/gnome-utils/gnc-file.c | 3 +-
gnucash/gnome-utils/gnc-tree-control-split-reg.c | 2 +-
gnucash/gnome/assistant-hierarchy.c | 3 +-
gnucash/gnome/gnc-plugin-page-account-tree.c | 8 --
libgnucash/app-utils/gnc-ui-util.c | 6 +-
po/ar.po | 69 ++++++++-------
po/as.po | 69 ++++++++-------
po/az.po | 69 ++++++++-------
po/bg.po | 69 ++++++++-------
po/brx.po | 69 ++++++++-------
po/ca.po | 69 ++++++++-------
po/cs.po | 69 ++++++++-------
po/da.po | 69 ++++++++-------
po/de.po | 69 ++++++++-------
po/doi.po | 69 ++++++++-------
po/el.po | 103 +++++++++++------------
po/en_GB.po | 69 ++++++++-------
po/es.po | 69 ++++++++-------
po/es_NI.po | 69 ++++++++-------
po/et.po | 69 ++++++++-------
po/eu.po | 69 ++++++++-------
po/fa.po | 69 ++++++++-------
po/fi.po | 69 ++++++++-------
po/fr.po | 69 ++++++++-------
po/gu.po | 69 ++++++++-------
po/he.po | 69 ++++++++-------
po/hi.po | 69 ++++++++-------
po/hr.po | 69 ++++++++-------
po/hu.po | 69 ++++++++-------
po/id.po | 69 ++++++++-------
po/it.po | 69 ++++++++-------
po/ja.po | 69 ++++++++-------
po/kn.po | 69 ++++++++-------
po/ko.po | 69 ++++++++-------
po/kok.po | 69 ++++++++-------
po/kok at latin.po | 69 ++++++++-------
po/ks.po | 69 ++++++++-------
po/lt.po | 69 ++++++++-------
po/lv.po | 69 ++++++++-------
po/mai.po | 69 ++++++++-------
po/mni.po | 69 ++++++++-------
po/mni at bengali.po | 69 ++++++++-------
po/mr.po | 69 ++++++++-------
po/nb.po | 69 ++++++++-------
po/ne.po | 69 ++++++++-------
po/nl.po | 69 ++++++++-------
po/pl.po | 69 ++++++++-------
po/pt.po | 69 ++++++++-------
po/pt_BR.po | 69 ++++++++-------
po/ro.po | 69 ++++++++-------
po/ru.po | 69 ++++++++-------
po/rw.po | 69 ++++++++-------
po/sk.po | 69 ++++++++-------
po/sr.po | 69 ++++++++-------
po/sv.po | 69 ++++++++-------
po/ta.po | 69 ++++++++-------
po/te.po | 69 ++++++++-------
po/tr.po | 69 ++++++++-------
po/uk.po | 69 ++++++++-------
po/ur.po | 69 ++++++++-------
po/vi.po | 69 ++++++++-------
po/zh_CN.po | 69 ++++++++-------
po/zh_TW.po | 69 ++++++++-------
66 files changed, 1999 insertions(+), 2093 deletions(-)
More information about the gnucash-changes
mailing list