gnucash master: Multiple changes pushed
John Ralls
jralls at code.gnucash.org
Fri Sep 13 13:10:59 EDT 2019
Updated via https://github.com/Gnucash/gnucash/commit/fb09555f (commit)
via https://github.com/Gnucash/gnucash/commit/e38cc914 (commit)
via https://github.com/Gnucash/gnucash/commit/26a9ccc1 (commit)
via https://github.com/Gnucash/gnucash/commit/da655cfa (commit)
via https://github.com/Gnucash/gnucash/commit/41c58ec0 (commit)
via https://github.com/Gnucash/gnucash/commit/c23f3f05 (commit)
via https://github.com/Gnucash/gnucash/commit/70eb7172 (commit)
via https://github.com/Gnucash/gnucash/commit/82b3af96 (commit)
via https://github.com/Gnucash/gnucash/commit/84dede1a (commit)
via https://github.com/Gnucash/gnucash/commit/23d0fa13 (commit)
via https://github.com/Gnucash/gnucash/commit/7a36c229 (commit)
via https://github.com/Gnucash/gnucash/commit/70cb3a0b (commit)
via https://github.com/Gnucash/gnucash/commit/ff8c5725 (commit)
via https://github.com/Gnucash/gnucash/commit/b05c57a9 (commit)
via https://github.com/Gnucash/gnucash/commit/d3f86d2a (commit)
via https://github.com/Gnucash/gnucash/commit/a91b3ff4 (commit)
via https://github.com/Gnucash/gnucash/commit/fa4fc551 (commit)
via https://github.com/Gnucash/gnucash/commit/e6e2258a (commit)
via https://github.com/Gnucash/gnucash/commit/4cd9f5a6 (commit)
via https://github.com/Gnucash/gnucash/commit/b1d0dd7d (commit)
via https://github.com/Gnucash/gnucash/commit/cce25271 (commit)
from https://github.com/Gnucash/gnucash/commit/617c4c4a (commit)
commit fb09555fa14b4626921ab5370c7d384f03ef6aa5
Author: John Ralls <jralls at ceridwen.us>
Date: Fri Sep 13 10:09:29 2019 -0700
Fix html-charts build failure when runing ninja check without running ninja.
diff --git a/gnucash/report/CMakeLists.txt b/gnucash/report/CMakeLists.txt
index b5e9ac57d..4292f3ca3 100644
--- a/gnucash/report/CMakeLists.txt
+++ b/gnucash/report/CMakeLists.txt
@@ -90,6 +90,7 @@ set(GUILE_DEPENDS
scm-app-utils
scm-scm
scm-gnc-module
+ guile-json
)
gnc_add_scheme_targets(scm-report-1
commit e38cc914522eee2ba07f27d19ef8b36b58c9da86
Merge: 617c4c4ad 26a9ccc18
Author: John Ralls <jralls at ceridwen.us>
Date: Fri Sep 13 09:40:01 2019 -0700
Merge branch 'maint'
Bumping the required cmake to 3.10 and removing GncPkgConfig.cmake as
no longer required.
diff --cc CMakeLists.txt
index 792e9fa69,0654dfb5a..d07d4b470
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@@ -1,6 -1,6 +1,6 @@@
# CMakeLists.txt for GnuCash
--cmake_minimum_required (VERSION 3.5)
++cmake_minimum_required (VERSION 3.10)
project (gnucash)
@@@ -196,8 -196,12 +196,8 @@@ find_package(PkgConfig REQUIRED
if (NOT PKG_CONFIG_FOUND)
message (SEND_ERROR "pkg-config not found, but is required")
- endif (NOT PKG_CONFIG_FOUND)
+ endif (NOT PKG_CONFIG_FOUND)
-if (CMAKE_VERSION VERSION_LESS 3.6)
- include(GncPkgConfig)
-endif()
-
# glib et al.
pkg_check_modules (GLIB2 REQUIRED glib-2.0>=2.40)
pkg_check_modules (GIO REQUIRED gio-2.0)
@@@ -209,31 -213,42 +209,21 @@@ pkg_check_modules (LIBXML2 REQUIRED lib
pkg_check_modules (LIBXSLT REQUIRED libxslt)
if (WITH_GNUCASH)
if (WIN32 OR APPLE)
- pkg_check_modules (WEBKIT1 REQUIRED webkitgtk-3.0)
- set(WEBKIT1 1)
- set(WEBKIT_CFLAGS ${WEBKIT2_CFLAGS})
- set(WEBKIT_INCLUDE_DIRS ${WEBKIT1_INCLUDE_DIRS})
- set(WEBKIT_LDFLAGS ${WEBKIT1_LDFLAGS})
- set(WEBKIT_LIBRARIES ${WEBKIT1_LIBRARIES})
- if (NOT CMAKE_VERSION VERSION_LESS 3.6)
- pkg_check_modules (WEBKIT REQUIRED IMPORTED_TARGET webkitgtk-3.0)
- else()
- pkg_check_modules (WEBKIT REQUIRED webkitgtk-3.0)
- endif()
++ pkg_check_modules (WEBKIT REQUIRED IMPORTED_TARGET webkitgtk-3.0)
+ set(WEBKIT1 1 CACHE INTERNAL "WebKitGtk")
- _pkg_create_imp_target(WEBKIT)
else (WIN32 OR APPLE)
- pkg_check_modules (WEBKIT2_4 webkit2gtk-4.0)
- if (NOT WEBKIT2_4_FOUND)
- pkg_check_modules (WEBKIT2_3 REQUIRED webkit2gtk-3.0)
- set(WEBKIT2_3 1)
- set(WEBKIT_CFLAGS ${WEBKIT2_3_CFLAGS})
- set(WEBKIT_INCLUDE_DIRS ${WEBKIT2_3_INCLUDE_DIRS})
- set(WEBKIT_LDFLAGS ${WEBKIT2_3_LDFLAGS})
- set(WEBKIT_LIBRARIES ${WEBKIT2_3_LIBRARIES})
- else (NOT WEBKIT2_4_FOUND)
- set(WEBKIT2_4 1)
- set(WEBKIT_CFLAGS ${WEBKIT2_4_CFLAGS})
- set(WEBKIT_INCLUDE_DIRS ${WEBKIT2_4_INCLUDE_DIRS})
- set(WEBKIT_LDFLAGS ${WEBKIT2_4_LDFLAGS})
- set(WEBKIT_LIBRARIES ${WEBKIT2_4_LIBRARIES})
- endif (NOT WEBKIT2_4_FOUND)
- If (NOT CMAKE_VERSION VERSION_LESS 3.6)
- pkg_check_modules (WEBKIT IMPORTED_TARGET webkit2gtk-4.0)
- else()
- pkg_check_modules (WEBKIT webkit2gtk-4.0)
- endif()
++ pkg_check_modules (WEBKIT IMPORTED_TARGET webkit2gtk-4.0)
+ if (NOT WEBKIT_FOUND)
- if (NOT CMAKE_VERSION VERSION_LESS 3.6)
- pkg_check_modules (WEBKIT REQUIRED IMPORTED_TARGET webkit2gtk-3.0)
- else()
- pkg_check_modules (WEBKIT REQUIRED webkit2gtk-3.0)
- endif()
++ pkg_check_modules (WEBKIT REQUIRED IMPORTED_TARGET webkit2gtk-3.0)
+ set(WEBKIT2_3 1 CACHE INTERNAL "WebKit2Gtk3")
+ else (NOT WEBKIT_FOUND)
+ if (NOT WEBKIT2_3)
+ set(WEBKIT2_4 1 CACHE INTERNAL "WebKit2Gtk4")
+ endif(NOT WEBKIT2_3)
+ endif (NOT WEBKIT_FOUND)
- if (CMAKE_VERSION VERSION_LESS 3.6)
- _pkg_create_imp_target(WEBKIT)
- endif()
endif (WIN32 OR APPLE)
- pkg_check_modules (GTK3 REQUIRED gtk+-3.0>=3.18.0)
- if (NOT CMAKE_VERSION VERSION_LESS 3.6)
- pkg_check_modules (GTK3 REQUIRED IMPORTED_TARGET gtk+-3.0>=3.10.0)
- else()
- pkg_check_modules (GTK3 REQUIRED gtk+-3.0>=3.10.0)
- _pkg_create_imp_target(GTK3)
- endif()
++ pkg_check_modules (GTK3 REQUIRED IMPORTED_TARGET gtk+-3.0>=3.18.0)
endif (WITH_GNUCASH)
pkg_check_modules (ZLIB REQUIRED zlib)
diff --cc gnucash/CMakeLists.txt
index 227c5faab,e2761c7d0..b9d446dbf
--- a/gnucash/CMakeLists.txt
+++ b/gnucash/CMakeLists.txt
@@@ -65,9 -65,9 +65,9 @@@ if (BUILDING_FROM_VCS
endif (BUILDING_FROM_VCS)
target_link_libraries (gnucash
- gncmod-ledger-core gncmod-report-gnome gnc-gnome gncmod-gnome-utils
- gncmod-app-utils gncmod-engine gnc-module gnc-core-utils gncmod-report-system
+ gncmod-ledger-core gnc-gnome gncmod-gnome-utils gncmod-app-utils
+ gncmod-engine gnc-module gnc-core-utils gncmod-report
- ${GUILE_LDFLAGS} ${GLIB2_LDFLAGS} ${GTK3_LDFLAGS} ${GTK_MAC_LDFLAGS}
+ PkgConfig::GTK3 ${GUILE_LDFLAGS} ${GLIB2_LDFLAGS} ${GTK_MAC_LDFLAGS}
)
# Get glib executable for generating the gresource file
diff --cc gnucash/gnome-utils/CMakeLists.txt
index 086b6573c,3c9c6d195..604b34c6b
--- a/gnucash/gnome-utils/CMakeLists.txt
+++ b/gnucash/gnome-utils/CMakeLists.txt
@@@ -211,8 -211,8 +211,9 @@@ add_library (gncmod-gnome-util
${gnome_utils_noinst_HEADERS}
)
- target_link_libraries(gncmod-gnome-utils gncmod-app-utils gncmod-engine gnc-backend-xml-utils
- ${CMAKE_DL_LIBS} ${GTK3_LDFLAGS} ${LIBSECRET_LDFLAGS} ${GTK_MAC_LDFLAGS})
-target_link_libraries(gncmod-gnome-utils gncmod-app-utils gncmod-engine gnc-backend-xml-utils ${GTK3_LDFLAGS}
- ${CMAKE_DL_LIBS} ${LIBSECRET_LDFLAGS} ${GTK_MAC_LDFLAGS})
++target_link_libraries(gncmod-gnome-utils gncmod-app-utils gncmod-engine
++ gnc-backend-xml-utils PkgConfig::GTK3 ${CMAKE_DL_LIBS} ${LIBSECRET_LDFLAGS}
++ ${GTK_MAC_LDFLAGS})
target_compile_options(gncmod-gnome-utils PRIVATE -Wno-deprecated-declarations)
target_compile_definitions(gncmod-gnome-utils PUBLIC ${GTK_MAC_CFLAGS_OTHER}
@@@ -229,7 -229,7 +230,6 @@@ endif(MAC_INTEGRATION
target_include_directories(gncmod-gnome-utils
PUBLIC
-- ${GTK3_INCLUDE_DIRS}
${CMAKE_CURRENT_SOURCE_DIR}
PRIVATE
${GTK_MAC_INCLUDE_DIRS}
diff --cc gnucash/gnome-utils/test/CMakeLists.txt
index fbb26769d,25e82319c..385a07ecf
--- a/gnucash/gnome-utils/test/CMakeLists.txt
+++ b/gnucash/gnome-utils/test/CMakeLists.txt
@@@ -16,7 -16,7 +16,6 @@@ set(GNOME_UTILS_GUI_TEST_INCLUDE_DIR
${CMAKE_BINARY_DIR}/common
${CMAKE_SOURCE_DIR}/gnucash/gnome-utils
${CMAKE_SOURCE_DIR}/libgnucash/engine
- ${GTK3_INCLUDE_DIRS}
-# ${GTK3_INCLUDE_DIRS}
)
set(GNOME_UTILS_GUI_TEST_LIBS
${GNOME_UTILS_TEST_LIBS}
diff --cc gnucash/gnome/CMakeLists.txt
index 848d878f1,0a0292475..3333f92b4
--- a/gnucash/gnome/CMakeLists.txt
+++ b/gnucash/gnome/CMakeLists.txt
@@@ -136,8 -124,8 +136,9 @@@ set (gnc_gnome_SOURCE
set_source_files_properties (${gnc_gnome_SOURCES} PROPERTIES OBJECT_DEPENDS ${CONFIG_H})
add_library (gnc-gnome ${gnc_gnome_SOURCES} ${gnc_gnome_noinst_HEADERS} ${SWIG_GNOME_C})
- target_link_libraries(gnc-gnome gncmod-gnome-search gncmod-ledger-core gncmod-html gncmod-report
- gncmod-register-gnome gncmod-register-core gncmod-gnome-utils gncmod-engine ${GTK3_LDFLAGS} ${GTK_MAC_LDFLAGS})
-target_link_libraries(gnc-gnome gncmod-gnome-search gncmod-ledger-core gncmod-report-gnome gncmod-report-system
- gncmod-register-gnome gncmod-register-core gncmod-gnome-utils gncmod-engine PkgConfig::GTK3 ${GTK_MAC_LDFLAGS})
++target_link_libraries(gnc-gnome gncmod-gnome-search gncmod-ledger-core
++ gncmod-html gncmod-report gncmod-register-gnome gncmod-register-core
++ gncmod-gnome-utils gncmod-engine PkgConfig::GTK3 ${GTK_MAC_LDFLAGS})
target_compile_definitions (gnc-gnome PRIVATE -DG_LOG_DOMAIN=\"gnc.gui\" ${GTK_MAC_CFLAGS_OTHER})
target_compile_options(gnc-gnome PRIVATE -Wno-deprecated-declarations)
diff --cc gnucash/report/CMakeLists.txt
index 8fc62a115,c27148319..b5e9ac57d
--- a/gnucash/report/CMakeLists.txt
+++ b/gnucash/report/CMakeLists.txt
@@@ -1,144 -1,13 +1,144 @@@
-add_subdirectory(business-reports)
add_subdirectory(jqplot)
-add_subdirectory(locale-specific)
-add_subdirectory(report-gnome)
-add_subdirectory(report-system)
-add_subdirectory(standard-reports)
+add_subdirectory(reports)
add_subdirectory(stylesheets)
-add_subdirectory(utility-reports)
+add_subdirectory(test)
-set_local_dist(report_DIST_local CMakeLists.txt )
-set(report_DIST ${report_DIST_local} ${business_reports_DIST} ${jqplot_DIST} ${locale_specific_DIST} ${report_gnome_DIST} ${report_system_DIST}
- ${standard_reports_DIST} ${stylesheets_DIST} ${utility_reports_DIST} PARENT_SCOPE)
+set (report_HEADERS
+ gnc-report.h
+)
+
+# Command to generate the swig-report.c wrapper file
+gnc_add_swig_guile_command (swig-report-c
+ SWIG_REPORT_C swig-report.c
+ ${CMAKE_CURRENT_SOURCE_DIR}/report.i ${report_HEADERS}
+)
+
+set (report_SOURCES
+ gncmod-report.c
+ gnc-report.c
+)
+
+add_library (gncmod-report
+ ${report_SOURCES}
+ ${report_HEADERS}
+ ${SWIG_REPORT_C}
+)
+
+target_compile_definitions(gncmod-report PRIVATE -DG_LOG_DOMAIN=\"gnc.report.core\")
+
- target_link_libraries(gncmod-report gnc-module gncmod-app-utils ${GTK3_LDFLAGS} ${GUILE_LDFLAGS})
++target_link_libraries(gncmod-report gnc-module gncmod-app-utils PkgConfig::GTK3 ${GUILE_LDFLAGS})
+
+target_include_directories (gncmod-report
- PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} PRIVATE ${GTK3_INCLUDE_DIRS}
++ PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}
+)
+
+
+if (APPLE)
+ set_target_properties (gncmod-report PROPERTIES INSTALL_NAME_DIR "${CMAKE_INSTALL_FULL_LIBDIR}/gnucash")
+endif()
+
+install(TARGETS gncmod-report
+ LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}/gnucash
+ ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}/gnucash
+ RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
+
+install(FILES ${report_HEADERS} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/gnucash)
+
+# Scheme
+
+set (report_SCHEME
+ report.scm
+)
+
+set (report_SCHEME_2
+ commodity-utilities.scm
+ html-acct-table.scm
+ html-chart.scm
+ html-barchart.scm
+ html-document.scm
+ html-fonts.scm
+ html-piechart.scm
+ html-scatter.scm
+ html-linechart.scm
+ html-style-info.scm
+ html-style-sheet.scm
+ html-anytag.scm
+ html-table.scm
+ html-text.scm
+ html-utilities.scm
+ options-utilities.scm
+ report-core.scm
+ report-utilities.scm
+ report-register-hooks.scm
+ trep-engine.scm
+)
+
+set (report_eguile_parts_SCHEME
+ eguile-utilities.scm
+ eguile-html-utilities.scm
+)
+
+set (report_eguile_SCHEME
+ eguile.scm
+)
+
+set(GUILE_DEPENDS
+ gncmod-html
+ scm-gnome-utils
+ gncmod-report
+ scm-app-utils
+ scm-scm
+ scm-gnc-module
+ )
+
+gnc_add_scheme_targets(scm-report-1
+ "${report_SCHEME}"
+ "gnucash"
+ "${GUILE_DEPENDS}"
+ FALSE
+)
+
+gnc_add_scheme_targets(scm-report-2
+ "${report_SCHEME_2}"
+ "gnucash/report"
+ scm-report-1
+ TRUE
+)
+
+gnc_add_scheme_targets(scm-report-eguile-parts
+ "${report_eguile_parts_SCHEME}"
+ "gnucash/eguile"
+ scm-report-1
+ FALSE
+)
+
+gnc_add_scheme_targets(scm-report-eguile
+ "${report_eguile_SCHEME}"
+ "gnucash"
+ scm-report-eguile-parts
+ FALSE
+)
+
+# Module interfaces deprecated in 4.x, will be removed for 5.x
+gnc_add_scheme_deprecated_module ("gnucash report eguile-gnc" "gnucash eguile" "scm-report-eguile" "")
+gnc_add_scheme_deprecated_module ("gnucash report eguile-html-utilities" "gnucash eguile" "scm-report-eguile" "")
+gnc_add_scheme_deprecated_module ("gnucash report eguile-utilities" "gnucash eguile" "scm-report-eguile" "")
+gnc_add_scheme_deprecated_module ("gnucash report report-system" "gnucash report" "scm-report-1" "")
+
+gnc_add_scheme_deprecated_module ("gnucash report business-reports" "" "" "")
+gnc_add_scheme_deprecated_module ("gnucash report report-system collectors" "" "" "")
+gnc_add_scheme_deprecated_module ("gnucash report report-system report-collectors" "" "" "")
+gnc_add_scheme_deprecated_module ("gnucash report stylesheets" "" "" "")
+gnc_add_scheme_deprecated_module ("gnucash report utility-reports" "" "" "")
+
+add_custom_target(scm-report ALL DEPENDS scm-report-2 scm-report-eguile)
+
+set_local_dist(report_DIST_local CMakeLists.txt
+ report.i
+ ${report_HEADERS} ${report_SOURCES}
+ ${report_SCHEME} ${report_SCHEME_1} ${report_SCHEME_2}
+ ${report_eguile_parts_SCHEME} ${report_eguile_SCHEME})
+
+set(report_DIST ${report_DIST_local} ${jqplot_DIST}
+ ${reports_DIST} ${stylesheets_DIST} ${test_report_DIST} PARENT_SCOPE)
commit 26a9ccc1810ef6fe5baf042d1e7893c22e16d13f
Author: Christopher Lam <christopher.lck at gmail.com>
Date: Fri Sep 13 18:29:52 2019 +0800
Bug 797408 - Find Transaction Window -> Search Criteria Section -> Add Search Criteria -> Section does not expand to new size to include a newly added Search Criteria
diff --git a/gnucash/gtkbuilder/dialog-search.glade b/gnucash/gtkbuilder/dialog-search.glade
index 37631aee4..2f46d8cfd 100644
--- a/gnucash/gtkbuilder/dialog-search.glade
+++ b/gnucash/gtkbuilder/dialog-search.glade
@@ -302,7 +302,7 @@
</child>
</object>
<packing>
- <property name="expand">False</property>
+ <property name="expand">True</property>
<property name="fill">True</property>
<property name="position">1</property>
</packing>
commit da655cfaa9091e5922453129873f401ab0975310
Author: Christopher Lam <christopher.lck at gmail.com>
Date: Thu Sep 12 22:32:01 2019 +0800
[balsheet-pnl] ensure txns on last report-date are processed
bugfix. after writing commit message to 23d0fa132, I had to verify the
strong statement regarding txns on last report-date, and found that I
was incorrect. ensure txns are previously accounted for.
diff --git a/gnucash/report/standard-reports/balsheet-pnl.scm b/gnucash/report/standard-reports/balsheet-pnl.scm
index 76a878228..6f9b3b8d6 100644
--- a/gnucash/report/standard-reports/balsheet-pnl.scm
+++ b/gnucash/report/standard-reports/balsheet-pnl.scm
@@ -706,12 +706,14 @@ also show overall period profit & loss."))
;; get all options values
(let* ((report-title (get-option gnc:pagename-general gnc:optname-reportname))
- (startdate (gnc:date-option-absolute-time
- (get-option gnc:pagename-general
- optname-startdate)))
- (enddate (gnc:date-option-absolute-time
- (get-option gnc:pagename-general
- optname-enddate)))
+ (startdate ((if (eq? report-type 'pnl)
+ gnc:time64-start-day-time
+ gnc:time64-end-day-time)
+ (gnc:date-option-absolute-time
+ (get-option gnc:pagename-general optname-startdate))))
+ (enddate (gnc:time64-end-day-time
+ (gnc:date-option-absolute-time
+ (get-option gnc:pagename-general optname-enddate))))
(disable-account-indent? (get-option gnc:pagename-display
optname-account-full-name))
(incr (get-option gnc:pagename-general optname-period))
@@ -761,15 +763,13 @@ also show overall period profit & loss."))
common-currency)))))
(price-source (and common-currency
(get-option pagename-commodities optname-price-source)))
- (report-dates (map (if (eq? report-type 'balsheet)
- gnc:time64-end-day-time
- gnc:time64-start-day-time)
- (if incr
- (gnc:make-date-list
- startdate enddate (gnc:deltasym-to-delta incr))
- (if (eq? report-type 'balsheet)
- (list enddate)
- (list startdate enddate)))))
+
+ (report-dates
+ (cond
+ (incr (gnc:make-date-list startdate enddate (gnc:deltasym-to-delta incr)))
+ ((eq? report-type 'pnl) (list startdate enddate))
+ (else (list enddate))))
+
(accounts-balances (map
(lambda (acc)
(cons acc
commit 41c58ec00ab2276ca9b326570d07689fc47bc7e9
Author: John Ralls <jralls at ceridwen.us>
Date: Thu Sep 12 14:45:23 2019 -0700
Convert Gtk3 and Webkit to imported targets.
This causes CMake to include their headers with -isystem instead of -I,
so the compiler doesn't generate warnings on them. ArchLinux was failing
to build because of such warnings.
Includes a function from cmake 3.6 to allow this to work on systems like
Ubuntu 14.04 that still provide only cmake 3.5.
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c21e30a63..0654dfb5a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -196,7 +196,11 @@ find_package(PkgConfig REQUIRED)
if (NOT PKG_CONFIG_FOUND)
message (SEND_ERROR "pkg-config not found, but is required")
-endif (NOT PKG_CONFIG_FOUND)
+ endif (NOT PKG_CONFIG_FOUND)
+
+if (CMAKE_VERSION VERSION_LESS 3.6)
+ include(GncPkgConfig)
+endif()
# glib et al.
pkg_check_modules (GLIB2 REQUIRED glib-2.0>=2.40)
@@ -209,31 +213,42 @@ pkg_check_modules (LIBXML2 REQUIRED libxml-2.0>=2.7.0)
pkg_check_modules (LIBXSLT REQUIRED libxslt)
if (WITH_GNUCASH)
if (WIN32 OR APPLE)
- pkg_check_modules (WEBKIT1 REQUIRED webkitgtk-3.0)
- set(WEBKIT1 1)
- set(WEBKIT_CFLAGS ${WEBKIT2_CFLAGS})
- set(WEBKIT_INCLUDE_DIRS ${WEBKIT1_INCLUDE_DIRS})
- set(WEBKIT_LDFLAGS ${WEBKIT1_LDFLAGS})
- set(WEBKIT_LIBRARIES ${WEBKIT1_LIBRARIES})
+ if (NOT CMAKE_VERSION VERSION_LESS 3.6)
+ pkg_check_modules (WEBKIT REQUIRED IMPORTED_TARGET webkitgtk-3.0)
+ else()
+ pkg_check_modules (WEBKIT REQUIRED webkitgtk-3.0)
+ endif()
+ set(WEBKIT1 1 CACHE INTERNAL "WebKitGtk")
+ _pkg_create_imp_target(WEBKIT)
else (WIN32 OR APPLE)
- pkg_check_modules (WEBKIT2_4 webkit2gtk-4.0)
- if (NOT WEBKIT2_4_FOUND)
- pkg_check_modules (WEBKIT2_3 REQUIRED webkit2gtk-3.0)
- set(WEBKIT2_3 1)
- set(WEBKIT_CFLAGS ${WEBKIT2_3_CFLAGS})
- set(WEBKIT_INCLUDE_DIRS ${WEBKIT2_3_INCLUDE_DIRS})
- set(WEBKIT_LDFLAGS ${WEBKIT2_3_LDFLAGS})
- set(WEBKIT_LIBRARIES ${WEBKIT2_3_LIBRARIES})
- else (NOT WEBKIT2_4_FOUND)
- set(WEBKIT2_4 1)
- set(WEBKIT_CFLAGS ${WEBKIT2_4_CFLAGS})
- set(WEBKIT_INCLUDE_DIRS ${WEBKIT2_4_INCLUDE_DIRS})
- set(WEBKIT_LDFLAGS ${WEBKIT2_4_LDFLAGS})
- set(WEBKIT_LIBRARIES ${WEBKIT2_4_LIBRARIES})
- endif (NOT WEBKIT2_4_FOUND)
+ If (NOT CMAKE_VERSION VERSION_LESS 3.6)
+ pkg_check_modules (WEBKIT IMPORTED_TARGET webkit2gtk-4.0)
+ else()
+ pkg_check_modules (WEBKIT webkit2gtk-4.0)
+ endif()
+ if (NOT WEBKIT_FOUND)
+ if (NOT CMAKE_VERSION VERSION_LESS 3.6)
+ pkg_check_modules (WEBKIT REQUIRED IMPORTED_TARGET webkit2gtk-3.0)
+ else()
+ pkg_check_modules (WEBKIT REQUIRED webkit2gtk-3.0)
+ endif()
+ set(WEBKIT2_3 1 CACHE INTERNAL "WebKit2Gtk3")
+ else (NOT WEBKIT_FOUND)
+ if (NOT WEBKIT2_3)
+ set(WEBKIT2_4 1 CACHE INTERNAL "WebKit2Gtk4")
+ endif(NOT WEBKIT2_3)
+ endif (NOT WEBKIT_FOUND)
+ if (CMAKE_VERSION VERSION_LESS 3.6)
+ _pkg_create_imp_target(WEBKIT)
+ endif()
endif (WIN32 OR APPLE)
- pkg_check_modules (GTK3 REQUIRED gtk+-3.0>=3.10.0)
+ if (NOT CMAKE_VERSION VERSION_LESS 3.6)
+ pkg_check_modules (GTK3 REQUIRED IMPORTED_TARGET gtk+-3.0>=3.10.0)
+ else()
+ pkg_check_modules (GTK3 REQUIRED gtk+-3.0>=3.10.0)
+ _pkg_create_imp_target(GTK3)
+ endif()
endif (WITH_GNUCASH)
pkg_check_modules (ZLIB REQUIRED zlib)
diff --git a/common/cmake_modules/GncPkgConfig.cmake b/common/cmake_modules/GncPkgConfig.cmake
new file mode 100644
index 000000000..8dc88aaac
--- /dev/null
+++ b/common/cmake_modules/GncPkgConfig.cmake
@@ -0,0 +1,52 @@
+#Pinched from FindPkgConfig in CMake 3.6 because we need to do this in
+#CMake 3.5. Delete this file and the corresponding calls in master
+#after merging up.
+
+# given directories, and create an imported target from them
+function(_pkg_create_imp_target _prefix)
+ unset(_libs)
+ unset(_find_opts)
+
+ # set the options that are used as long as the .pc file does not provide a library
+ # path to look into
+
+ foreach (flag IN LISTS ${_prefix}_LDFLAGS)
+ if (flag MATCHES "^-L(.*)")
+ # only look into the given paths from now on
+ set(_find_opts "HINTS ${${CMAKE_MATCH_1}} NO_DEFAULT_PATH")
+ continue()
+ endif()
+ if (flag MATCHES "^-l(.*)")
+ set(_pkg_search "${CMAKE_MATCH_1}")
+ else()
+ continue()
+ endif()
+
+ find_library(pkgcfg_lib_${_prefix}_${_pkg_search}
+ NAMES ${_pkg_search}
+ ${_find_opts})
+ list(APPEND _libs "${pkgcfg_lib_${_prefix}_${_pkg_search}}")
+ endforeach()
+
+ # only create the target if it is linkable, i.e. no executables
+ if (NOT TARGET PkgConfig::${_prefix}
+ AND ( ${_prefix}_INCLUDE_DIRS OR _libs OR ${_prefix}_CFLAGS_OTHER ))
+ add_library(PkgConfig::${_prefix} INTERFACE IMPORTED)
+
+ unset(_props)
+ if(${_prefix}_INCLUDE_DIRS)
+ set_property(TARGET PkgConfig::${_prefix} PROPERTY
+ INTERFACE_INCLUDE_DIRECTORIES "${${_prefix}_INCLUDE_DIRS}")
+ endif()
+ if(_libs)
+ set_property(TARGET PkgConfig::${_prefix} PROPERTY
+ INTERFACE_LINK_LIBRARIES "${_libs}")
+ endif()
+ if(${_prefix}_CFLAGS_OTHER)
+ set_property(TARGET PkgConfig::${_prefix} PROPERTY
+ INTERFACE_COMPILE_OPTIONS "${${_prefix}_CFLAGS_OTHER}")
+ endif()
+ endif()
+endfunction()
+
+
diff --git a/gnucash/CMakeLists.txt b/gnucash/CMakeLists.txt
index 179a3a66c..e2761c7d0 100644
--- a/gnucash/CMakeLists.txt
+++ b/gnucash/CMakeLists.txt
@@ -65,9 +65,9 @@ if (BUILDING_FROM_VCS)
endif (BUILDING_FROM_VCS)
target_link_libraries (gnucash
- gncmod-ledger-core gncmod-report-gnome gnc-gnome gncmod-gnome-utils gncmod-app-utils
- gncmod-engine gnc-module gnc-core-utils gncmod-report-system
- ${GUILE_LDFLAGS} ${GLIB2_LDFLAGS} ${GTK3_LDFLAGS} ${GTK_MAC_LDFLAGS}
+ gncmod-ledger-core gncmod-report-gnome gnc-gnome gncmod-gnome-utils
+ gncmod-app-utils gncmod-engine gnc-module gnc-core-utils gncmod-report-system
+ PkgConfig::GTK3 ${GUILE_LDFLAGS} ${GLIB2_LDFLAGS} ${GTK_MAC_LDFLAGS}
)
# Get glib executable for generating the gresource file
diff --git a/gnucash/gnome-search/CMakeLists.txt b/gnucash/gnome-search/CMakeLists.txt
index dc58d3218..f45c0a046 100644
--- a/gnucash/gnome-search/CMakeLists.txt
+++ b/gnucash/gnome-search/CMakeLists.txt
@@ -46,7 +46,7 @@ add_library (gncmod-gnome-search
${gnome_search_noinst_HEADERS}
)
-target_link_libraries(gncmod-gnome-search gncmod-gnome-utils ${GTK3_LDFLAGS})
+target_link_libraries(gncmod-gnome-search gncmod-gnome-utils PkgConfig::GTK3)
target_compile_definitions(gncmod-gnome-search PRIVATE -DG_LOG_DOMAIN=\"gnc.gui.search\")
diff --git a/gnucash/gnome-utils/CMakeLists.txt b/gnucash/gnome-utils/CMakeLists.txt
index 4d5c6688f..3c9c6d195 100644
--- a/gnucash/gnome-utils/CMakeLists.txt
+++ b/gnucash/gnome-utils/CMakeLists.txt
@@ -211,8 +211,8 @@ add_library (gncmod-gnome-utils
${gnome_utils_noinst_HEADERS}
)
-target_link_libraries(gncmod-gnome-utils gncmod-app-utils gncmod-engine gnc-backend-xml-utils
- ${CMAKE_DL_LIBS} ${GTK3_LDFLAGS} ${LIBSECRET_LDFLAGS} ${GTK_MAC_LDFLAGS})
+target_link_libraries(gncmod-gnome-utils gncmod-app-utils gncmod-engine gnc-backend-xml-utils ${GTK3_LDFLAGS}
+ ${CMAKE_DL_LIBS} ${LIBSECRET_LDFLAGS} ${GTK_MAC_LDFLAGS})
target_compile_options(gncmod-gnome-utils PRIVATE -Wno-deprecated-declarations)
target_compile_definitions(gncmod-gnome-utils PUBLIC ${GTK_MAC_CFLAGS_OTHER}
diff --git a/gnucash/gnome-utils/test/CMakeLists.txt b/gnucash/gnome-utils/test/CMakeLists.txt
index fc47735ab..25e82319c 100644
--- a/gnucash/gnome-utils/test/CMakeLists.txt
+++ b/gnucash/gnome-utils/test/CMakeLists.txt
@@ -16,7 +16,7 @@ set(GNOME_UTILS_GUI_TEST_INCLUDE_DIRS
${CMAKE_BINARY_DIR}/common
${CMAKE_SOURCE_DIR}/gnucash/gnome-utils
${CMAKE_SOURCE_DIR}/libgnucash/engine
- ${GTK3_INCLUDE_DIRS}
+# ${GTK3_INCLUDE_DIRS}
)
set(GNOME_UTILS_GUI_TEST_LIBS
${GNOME_UTILS_TEST_LIBS}
diff --git a/gnucash/gnome/CMakeLists.txt b/gnucash/gnome/CMakeLists.txt
index 444f20439..0a0292475 100644
--- a/gnucash/gnome/CMakeLists.txt
+++ b/gnucash/gnome/CMakeLists.txt
@@ -125,7 +125,7 @@ set_source_files_properties (${gnc_gnome_SOURCES} PROPERTIES OBJECT_DEPENDS ${CO
add_library (gnc-gnome ${gnc_gnome_SOURCES} ${gnc_gnome_noinst_HEADERS} ${SWIG_GNOME_C})
target_link_libraries(gnc-gnome gncmod-gnome-search gncmod-ledger-core gncmod-report-gnome gncmod-report-system
- gncmod-register-gnome gncmod-register-core gncmod-gnome-utils gncmod-engine ${GTK3_LDFLAGS} ${GTK_MAC_LDFLAGS})
+ gncmod-register-gnome gncmod-register-core gncmod-gnome-utils gncmod-engine PkgConfig::GTK3 ${GTK_MAC_LDFLAGS})
target_compile_definitions (gnc-gnome PRIVATE -DG_LOG_DOMAIN=\"gnc.gui\" ${GTK_MAC_CFLAGS_OTHER})
target_compile_options(gnc-gnome PRIVATE -Wno-deprecated-declarations)
diff --git a/gnucash/html/CMakeLists.txt b/gnucash/html/CMakeLists.txt
index 9dc8687c1..834cc8f4a 100644
--- a/gnucash/html/CMakeLists.txt
+++ b/gnucash/html/CMakeLists.txt
@@ -40,15 +40,14 @@ add_library (gncmod-html
${html_HEADERS}
)
-target_link_libraries(gncmod-html gncmod-engine gnc-module gncmod-gnome-utils ${WEBKIT_LDFLAGS} ${GUILE_LDFLAGS})
+target_link_libraries(gncmod-html gncmod-engine gnc-module gncmod-gnome-utils
+ PkgConfig::GTK3 PkgConfig::WEBKIT ${GUILE_LDFLAGS})
target_compile_definitions(gncmod-html PRIVATE -DG_LOG_DOMAIN=\"gnc.html\")
target_include_directories (gncmod-html
PUBLIC
- ${GTK3_INCLUDE_DIRS}
- ${WEBKIT_INCLUDE_DIRS}
${CMAKE_CURRENT_SOURCE_DIR}
)
diff --git a/gnucash/html/gnc-html.c b/gnucash/html/gnc-html.c
index a14368838..3b97ec22d 100644
--- a/gnucash/html/gnc-html.c
+++ b/gnucash/html/gnc-html.c
@@ -71,10 +71,10 @@ G_DEFINE_ABSTRACT_TYPE(GncHtml, gnc_html, GTK_TYPE_BIN)
static void gnc_html_class_init( GncHtmlClass* klass );
static void gnc_html_dispose( GObject* obj );
static void gnc_html_finalize( GObject* obj );
-
-//#define GNC_HTML_GET_PRIVATE(o) \
+/*
+#define GNC_HTML_GET_PRIVATE(o) \
((GncHtmlPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_HTML))
-
+*/
#define GNC_HTML_GET_PRIVATE(o) (GNC_HTML(o)->priv)
#include "gnc-html-p.h"
diff --git a/gnucash/import-export/CMakeLists.txt b/gnucash/import-export/CMakeLists.txt
index cca8359a2..413889878 100644
--- a/gnucash/import-export/CMakeLists.txt
+++ b/gnucash/import-export/CMakeLists.txt
@@ -51,7 +51,7 @@ add_library (gncmod-generic-import
${generic_import_noinst_HEADERS}
)
-target_link_libraries(gncmod-generic-import gncmod-gnome-utils gncmod-engine ${GTK3_LDFLAGS} ${GLIB2_LDFLAGS})
+target_link_libraries(gncmod-generic-import gncmod-gnome-utils gncmod-engine PkgConfig::GTK3 ${GLIB2_LDFLAGS})
target_compile_definitions (gncmod-generic-import PRIVATE -DG_LOG_DOMAIN=\"gnc.import\")
diff --git a/gnucash/import-export/log-replay/CMakeLists.txt b/gnucash/import-export/log-replay/CMakeLists.txt
index 5fd8b0f8e..b7bb5d7a6 100644
--- a/gnucash/import-export/log-replay/CMakeLists.txt
+++ b/gnucash/import-export/log-replay/CMakeLists.txt
@@ -16,7 +16,7 @@ set(log_replay_noinst_HEADERS
add_library(gncmod-log-replay ${log_replay_SOURCES} ${log_replay_noinst_HEADERS})
target_link_libraries(gncmod-log-replay gncmod-gnome-utils gncmod-app-utils gncmod-engine
- gnc-core-utils gnc-module ${GTK3_LDFLAGS})
+ gnc-core-utils gnc-module PkgConfig::GTK3)
target_compile_definitions(gncmod-log-replay PRIVATE -DG_LOG_DOMAIN=\"gnc.import.log-replay\")
diff --git a/gnucash/register/ledger-core/CMakeLists.txt b/gnucash/register/ledger-core/CMakeLists.txt
index ea26a993e..972106734 100644
--- a/gnucash/register/ledger-core/CMakeLists.txt
+++ b/gnucash/register/ledger-core/CMakeLists.txt
@@ -43,7 +43,7 @@ set_source_files_properties (${ledger_core_SOURCES} PROPERTIES OBJECT_DEPENDS ${
add_library (gncmod-ledger-core ${ledger_core_SOURCES} ${ledger_core_HEADERS})
target_link_libraries(gncmod-ledger-core gncmod-register-gnome gncmod-register-core gncmod-gnome-utils
- gncmod-engine gnc-core-utils ${GTK3_LDFLAGS})
+ gncmod-engine gnc-core-utils PkgConfig::GTK3)
target_compile_definitions (gncmod-ledger-core PRIVATE -DG_LOG_DOMAIN=\"gnc.register.ledger\")
diff --git a/gnucash/register/register-gnome/CMakeLists.txt b/gnucash/register/register-gnome/CMakeLists.txt
index f3527484b..5aa82ffa3 100644
--- a/gnucash/register/register-gnome/CMakeLists.txt
+++ b/gnucash/register/register-gnome/CMakeLists.txt
@@ -55,13 +55,13 @@ set_source_files_properties (${register_gnome_SOURCES} PROPERTIES OBJECT_DEPENDS
add_library (gncmod-register-gnome ${register_gnome_SOURCES} ${register_gnome_noinst_HEADERS})
-target_link_libraries(gncmod-register-gnome gncmod-register-core ${GTK3_LDFLAGS})
+target_link_libraries(gncmod-register-gnome gncmod-register-core PkgConfig::GTK3)
target_compile_definitions(gncmod-register-gnome PRIVATE -DG_LOG_DOMAIN=\"gnc.register.gnome\")
target_include_directories(gncmod-register-gnome
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}
- PRIVATE ${CMAKE_SOURCE_DIR}/gnucash/register/ledger-core ${GTK3_INCLUDE_DIRS}
+ PRIVATE ${CMAKE_SOURCE_DIR}/gnucash/register/ledger-core
)
if (APPLE)
diff --git a/gnucash/report/report-gnome/CMakeLists.txt b/gnucash/report/report-gnome/CMakeLists.txt
index 7f20c3fa0..959a3c826 100644
--- a/gnucash/report/report-gnome/CMakeLists.txt
+++ b/gnucash/report/report-gnome/CMakeLists.txt
@@ -29,7 +29,7 @@ add_library (gncmod-report-gnome
${SWIG_REPORT_GNOME_C}
)
target_link_libraries(gncmod-report-gnome gncmod-report-system gncmod-html gncmod-gnome-utils
- ${GUILE_LDFLAGS} ${GTK3_LDFLAGS})
+ PkgConfig::GTK3 ${GUILE_LDFLAGS} )
target_compile_definitions (gncmod-report-gnome PRIVATE -DG_LOG_DOMAIN=\"gnc.report.gui\")
target_compile_options(gncmod-report-gnome PRIVATE -Wno-deprecated-declarations)
diff --git a/gnucash/report/report-system/CMakeLists.txt b/gnucash/report/report-system/CMakeLists.txt
index c5c57902f..c9dcf1eba 100644
--- a/gnucash/report/report-system/CMakeLists.txt
+++ b/gnucash/report/report-system/CMakeLists.txt
@@ -23,10 +23,10 @@ add_library (gncmod-report-system
target_compile_definitions(gncmod-report-system PRIVATE -DG_LOG_DOMAIN=\"gnc.report.core\")
-target_link_libraries(gncmod-report-system gnc-module gncmod-app-utils ${GTK3_LDFLAGS} ${GUILE_LDFLAGS})
+target_link_libraries(gncmod-report-system gnc-module gncmod-app-utils PkgConfig::GTK3 ${GUILE_LDFLAGS})
target_include_directories (gncmod-report-system
- PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} PRIVATE ${GTK3_INCLUDE_DIRS}
+ PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}
)
diff --git a/gnucash/report/stylesheets/CMakeLists.txt b/gnucash/report/stylesheets/CMakeLists.txt
index 285662cb8..3f1fa748c 100644
--- a/gnucash/report/stylesheets/CMakeLists.txt
+++ b/gnucash/report/stylesheets/CMakeLists.txt
@@ -12,7 +12,7 @@ set(stylesheets_noinst_HEADERS
add_library(gncmod-stylesheets MODULE ${stylesheets_SOURCES} ${stylesheets_noinst_HEADERS})
target_link_libraries(gncmod-stylesheets gncmod-report-gnome gncmod-report-system gncmod-gnome-utils gnc-module
- ${GUILE_LDFLAGS} ${GTK3_LDFLAGS} ${GLIB2_LDFLAGS})
+ PkgConfig::GTK3 ${GUILE_LDFLAGS} ${GLIB2_LDFLAGS})
target_compile_definitions(gncmod-stylesheets PRIVATE -DG_LOG_DOMAIN=\"gnc.report.core\")
commit c23f3f05e311d81ce0fbb7bbc6b850e5acd5776d
Author: John Ralls <jralls at ceridwen.us>
Date: Tue Sep 10 16:33:33 2019 -0700
Fix deprecated G_TYPE_INSTANCE_GET_PRIVATE and G_INLINE_FUNC
with the function/declaration that they substituted.
Note that this doesn't use the recommended new GObject creation macros
because the class names in libgnucash/engine don't follow the gnome
naming convention.
diff --git a/gnucash/gnome-search/gnc-general-search.c b/gnucash/gnome-search/gnc-general-search.c
index 174c00a31..6c96d1547 100644
--- a/gnucash/gnome-search/gnc-general-search.c
+++ b/gnucash/gnome-search/gnc-general-search.c
@@ -78,7 +78,7 @@ struct _GNCGeneralSearchPrivate
G_DEFINE_TYPE_WITH_PRIVATE(GNCGeneralSearch, gnc_general_search, GTK_TYPE_BOX)
#define _PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_GENERAL_SEARCH, GNCGeneralSearchPrivate))
+ ((GNCGeneralSearchPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_GENERAL_SEARCH))
static GtkBoxClass *parent_class;
static guint general_search_signals[LAST_SIGNAL];
diff --git a/gnucash/gnome-search/search-account.c b/gnucash/gnome-search/search-account.c
index 6bce8894e..de41c7676 100644
--- a/gnucash/gnome-search/search-account.c
+++ b/gnucash/gnome-search/search-account.c
@@ -61,7 +61,7 @@ struct _GNCSearchAccountPrivate
G_DEFINE_TYPE_WITH_PRIVATE(GNCSearchAccount, gnc_search_account, GNC_TYPE_SEARCH_CORE_TYPE)
#define _PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_SEARCH_ACCOUNT, GNCSearchAccountPrivate))
+ ((GNCSearchAccountPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_SEARCH_ACCOUNT))
static GNCSearchCoreTypeClass *parent_class;
diff --git a/gnucash/gnome-search/search-boolean.c b/gnucash/gnome-search/search-boolean.c
index 8bc22479e..ddbb85aa1 100644
--- a/gnucash/gnome-search/search-boolean.c
+++ b/gnucash/gnome-search/search-boolean.c
@@ -56,7 +56,7 @@ struct _GNCSearchBooleanPrivate
G_DEFINE_TYPE_WITH_PRIVATE(GNCSearchBoolean, gnc_search_boolean, GNC_TYPE_SEARCH_CORE_TYPE)
#define _PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_SEARCH_BOOLEAN, GNCSearchBooleanPrivate))
+ ((GNCSearchBooleanPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_SEARCH_BOOLEAN))
static GNCSearchCoreTypeClass *parent_class;
diff --git a/gnucash/gnome-search/search-core-type.c b/gnucash/gnome-search/search-core-type.c
index 523309e0d..f3bfa5ae7 100644
--- a/gnucash/gnome-search/search-core-type.c
+++ b/gnucash/gnome-search/search-core-type.c
@@ -58,7 +58,7 @@ struct _GNCSearchCoreTypePrivate
G_DEFINE_TYPE_WITH_PRIVATE(GNCSearchCoreType, gnc_search_core_type, G_TYPE_OBJECT)
#define _PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_SEARCH_CORE_TYPE, GNCSearchCoreTypePrivate))
+ ((GNCSearchCoreTypePrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_SEARCH_CORE_TYPE))
static GObjectClass *parent_class;
diff --git a/gnucash/gnome-search/search-date.c b/gnucash/gnome-search/search-date.c
index 10f82e389..7c55f0f11 100644
--- a/gnucash/gnome-search/search-date.c
+++ b/gnucash/gnome-search/search-date.c
@@ -60,7 +60,7 @@ struct _GNCSearchDatePrivate
G_DEFINE_TYPE_WITH_PRIVATE(GNCSearchDate, gnc_search_date, GNC_TYPE_SEARCH_CORE_TYPE)
#define _PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_SEARCH_DATE, GNCSearchDatePrivate))
+ ((GNCSearchDatePrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_SEARCH_DATE))
static GNCSearchCoreTypeClass *parent_class;
diff --git a/gnucash/gnome-search/search-double.c b/gnucash/gnome-search/search-double.c
index 3f906696e..c815f27d2 100644
--- a/gnucash/gnome-search/search-double.c
+++ b/gnucash/gnome-search/search-double.c
@@ -60,7 +60,7 @@ struct _GNCSearchDoublePrivate
G_DEFINE_TYPE_WITH_PRIVATE(GNCSearchDouble, gnc_search_double, GNC_TYPE_SEARCH_CORE_TYPE)
#define _PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_SEARCH_DOUBLE, GNCSearchDoublePrivate))
+ ((GNCSearchDoublePrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_SEARCH_DOUBLE))
static GNCSearchCoreTypeClass *parent_class;
diff --git a/gnucash/gnome-search/search-int64.c b/gnucash/gnome-search/search-int64.c
index ecf6cadc7..f0c98930b 100644
--- a/gnucash/gnome-search/search-int64.c
+++ b/gnucash/gnome-search/search-int64.c
@@ -61,7 +61,7 @@ struct _GNCSearchInt64Private
G_DEFINE_TYPE_WITH_PRIVATE(GNCSearchInt64, gnc_search_int64, GNC_TYPE_SEARCH_CORE_TYPE)
#define _PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_SEARCH_INT64, GNCSearchInt64Private))
+ ((GNCSearchInt64Private*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_SEARCH_INT64))
static GNCSearchCoreTypeClass *parent_class;
diff --git a/gnucash/gnome-search/search-numeric.c b/gnucash/gnome-search/search-numeric.c
index d5fc64a75..4e57b6ab7 100644
--- a/gnucash/gnome-search/search-numeric.c
+++ b/gnucash/gnome-search/search-numeric.c
@@ -61,7 +61,7 @@ struct _GNCSearchNumericPrivate
G_DEFINE_TYPE_WITH_PRIVATE(GNCSearchNumeric, gnc_search_numeric, GNC_TYPE_SEARCH_CORE_TYPE)
#define _PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_SEARCH_NUMERIC, GNCSearchNumericPrivate))
+ ((GNCSearchNumericPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_SEARCH_NUMERIC))
static GNCSearchCoreTypeClass *parent_class;
diff --git a/gnucash/gnome-search/search-reconciled.c b/gnucash/gnome-search/search-reconciled.c
index f92815378..280b7f858 100644
--- a/gnucash/gnome-search/search-reconciled.c
+++ b/gnucash/gnome-search/search-reconciled.c
@@ -57,7 +57,7 @@ struct _GNCSearchReconciledPrivate
G_DEFINE_TYPE_WITH_PRIVATE(GNCSearchReconciled, gnc_search_reconciled, GNC_TYPE_SEARCH_CORE_TYPE)
#define _PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_SEARCH_RECONCILED, GNCSearchReconciledPrivate))
+ ((GNCSearchReconciledPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_SEARCH_RECONCILED))
static GNCSearchCoreTypeClass *parent_class;
diff --git a/gnucash/gnome-search/search-string.c b/gnucash/gnome-search/search-string.c
index 8f698d11a..df7cb8bbc 100644
--- a/gnucash/gnome-search/search-string.c
+++ b/gnucash/gnome-search/search-string.c
@@ -60,7 +60,7 @@ struct _GNCSearchStringPrivate
G_DEFINE_TYPE_WITH_PRIVATE(GNCSearchString, gnc_search_string, GNC_TYPE_SEARCH_CORE_TYPE)
#define _PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_SEARCH_STRING, GNCSearchStringPrivate))
+ ((GNCSearchStringPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_SEARCH_STRING))
static GNCSearchCoreTypeClass *parent_class;
diff --git a/gnucash/gnome-utils/gnc-combott.c b/gnucash/gnome-utils/gnc-combott.c
index 9f2af1ce4..fd430abca 100644
--- a/gnucash/gnome-utils/gnc-combott.c
+++ b/gnucash/gnome-utils/gnc-combott.c
@@ -49,7 +49,8 @@ enum
PROP_TIP_COL,
};
-#define GNC_COMBOTT_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_COMBOTT, GncCombottPrivate))
+#define GNC_COMBOTT_GET_PRIVATE(o) \
+ ((GncCombottPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_COMBOTT))
static guint combott_signals[LAST_SIGNAL] = {0,};
diff --git a/gnucash/gnome-utils/gnc-currency-edit.c b/gnucash/gnome-utils/gnc-currency-edit.c
index a3ade068d..33baa11ee 100644
--- a/gnucash/gnome-utils/gnc-currency-edit.c
+++ b/gnucash/gnome-utils/gnc-currency-edit.c
@@ -93,7 +93,7 @@ typedef struct _GNCCurrencyEditPrivate
G_DEFINE_TYPE_WITH_PRIVATE(GNCCurrencyEdit, gnc_currency_edit, GTK_TYPE_COMBO_BOX)
#define GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_CURRENCY_EDIT, GNCCurrencyEditPrivate))
+ ((GNCCurrencyEditPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_CURRENCY_EDIT))
/** @name Basic Object Implementation */
/** @{ */
diff --git a/gnucash/gnome-utils/gnc-date-format.c b/gnucash/gnome-utils/gnc-date-format.c
index fe5198c11..b678e5a37 100644
--- a/gnucash/gnome-utils/gnc-date-format.c
+++ b/gnucash/gnome-utils/gnc-date-format.c
@@ -76,7 +76,7 @@ struct _GNCDateFormatPrivate
};
#define GNC_DATE_FORMAT_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_DATE_FORMAT, GNCDateFormatPrivate))
+ ((GNCDateFormatPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_DATE_FORMAT))
static guint date_format_signals [LAST_SIGNAL] = { 0 };
diff --git a/gnucash/gnome-utils/gnc-embedded-window.c b/gnucash/gnome-utils/gnc-embedded-window.c
index 38de73dc2..bb05fcf14 100644
--- a/gnucash/gnome-utils/gnc-embedded-window.c
+++ b/gnucash/gnome-utils/gnc-embedded-window.c
@@ -91,7 +91,7 @@ GNC_DEFINE_TYPE_WITH_CODE(GncEmbeddedWindow, gnc_embedded_window, GTK_TYPE_BOX,
gnc_window_embedded_window_init))
#define GNC_EMBEDDED_WINDOW_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_EMBEDDED_WINDOW, GncEmbeddedWindowPrivate))
+ ((GncEmbeddedWindowPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_EMBEDDED_WINDOW))
/* Display a data plugin page in a window. */
void
diff --git a/gnucash/gnome-utils/gnc-main-window.c b/gnucash/gnome-utils/gnc-main-window.c
index bc9a38e36..3d85d7f1a 100644
--- a/gnucash/gnome-utils/gnc-main-window.c
+++ b/gnucash/gnome-utils/gnc-main-window.c
@@ -235,7 +235,7 @@ GNC_DEFINE_TYPE_WITH_CODE(GncMainWindow, gnc_main_window, GTK_TYPE_WINDOW,
gnc_window_main_window_init))
#define GNC_MAIN_WINDOW_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_MAIN_WINDOW, GncMainWindowPrivate))
+ ((GncMainWindowPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_MAIN_WINDOW))
/** This data structure maintains information about one action groups
* that has been installed in this window. */
diff --git a/gnucash/gnome-utils/gnc-period-select.c b/gnucash/gnome-utils/gnc-period-select.c
index 31fdb8b4d..14c06bac0 100644
--- a/gnucash/gnome-utils/gnc-period-select.c
+++ b/gnucash/gnome-utils/gnc-period-select.c
@@ -112,7 +112,7 @@ struct _GncPeriodSelectPrivate
};
#define GNC_PERIOD_SELECT_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PERIOD_SELECT, GncPeriodSelectPrivate))
+ ((GncPeriodSelectPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PERIOD_SELECT))
/************************************************************/
diff --git a/gnucash/gnome-utils/gnc-plugin-file-history.c b/gnucash/gnome-utils/gnc-plugin-file-history.c
index 44cab3374..da69b5d88 100644
--- a/gnucash/gnome-utils/gnc-plugin-file-history.c
+++ b/gnucash/gnome-utils/gnc-plugin-file-history.c
@@ -106,7 +106,7 @@ typedef struct GncPluginFileHistoryPrivate
#define GNC_PLUGIN_FILE_HISTORY_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_FILE_HISTORY, GncPluginFileHistoryPrivate))
+ ((GncPluginFileHistoryPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN_FILE_HISTORY))
/************************************************************
* Other Functions *
diff --git a/gnucash/gnome-utils/gnc-plugin-manager.c b/gnucash/gnome-utils/gnc-plugin-manager.c
index 73fb9ebea..244e269e8 100644
--- a/gnucash/gnome-utils/gnc-plugin-manager.c
+++ b/gnucash/gnome-utils/gnc-plugin-manager.c
@@ -45,7 +45,7 @@ typedef struct GncPluginManagerPrivate
} GncPluginManagerPrivate;
#define GNC_PLUGIN_MANAGER_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_MANAGER, GncPluginManagerPrivate))
+ ((GncPluginManagerPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN_MANAGER))
enum
{
diff --git a/gnucash/gnome-utils/gnc-plugin-menu-additions.c b/gnucash/gnome-utils/gnc-plugin-menu-additions.c
index 2cc489824..c0e6cc88a 100644
--- a/gnucash/gnome-utils/gnc-plugin-menu-additions.c
+++ b/gnucash/gnome-utils/gnc-plugin-menu-additions.c
@@ -70,7 +70,7 @@ typedef struct GncPluginMenuAdditionsPrivate
} GncPluginMenuAdditionsPrivate;
#define GNC_PLUGIN_MENU_ADDITIONS_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_MENU_ADDITIONS, GncPluginMenuAdditionsPrivate))
+ ((GncPluginMenuAdditionsPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN_MENU_ADDITIONS))
/** Per-window private data for this plugin. This plugin is unique in
diff --git a/gnucash/gnome-utils/gnc-plugin-page.c b/gnucash/gnome-utils/gnc-plugin-page.c
index d238bfe3d..792c8bd92 100644
--- a/gnucash/gnome-utils/gnc-plugin-page.c
+++ b/gnucash/gnome-utils/gnc-plugin-page.c
@@ -108,7 +108,7 @@ GNC_DEFINE_TYPE_WITH_CODE(GncPluginPage, gnc_plugin_page, G_TYPE_OBJECT,
G_ADD_PRIVATE(GncPluginPage))
#define GNC_PLUGIN_PAGE_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_PAGE, GncPluginPagePrivate))
+ ((GncPluginPagePrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN_PAGE))
/* Create the display widget that corresponds to this plugin. This
* function will be called by the main/embedded window manipulation
diff --git a/gnucash/gnome-utils/gnc-plugin.c b/gnucash/gnome-utils/gnc-plugin.c
index d84f359e4..465eb89b4 100644
--- a/gnucash/gnome-utils/gnc-plugin.c
+++ b/gnucash/gnome-utils/gnc-plugin.c
@@ -65,7 +65,7 @@ GNC_DEFINE_TYPE_WITH_CODE(GncPlugin, gnc_plugin, G_TYPE_OBJECT,
G_ADD_PRIVATE(GncPlugin))
#define GNC_PLUGIN_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN, GncPluginPrivate))
+ ((GncPluginPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN))
/** Initialize the class for the new gnucash plugin object. This will
* set up any function pointers that override functions in the parent
diff --git a/gnucash/gnome-utils/gnc-query-view.c b/gnucash/gnome-utils/gnc-query-view.c
index 594fc866f..d5dcfa6c9 100644
--- a/gnucash/gnome-utils/gnc-query-view.c
+++ b/gnucash/gnome-utils/gnc-query-view.c
@@ -53,7 +53,7 @@ struct _GNCQueryViewPrivate
};
#define GNC_QUERY_VIEW_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_QUERY_VIEW, GNCQueryViewPrivate))
+ ((GNCQueryViewPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_QUERY_VIEW))
/** Static Globals ****************************************************/
static GtkTreeViewClass *parent_class = NULL;
diff --git a/gnucash/gnome-utils/gnc-tree-model-account-types.c b/gnucash/gnome-utils/gnc-tree-model-account-types.c
index beca1b54a..6932c8c72 100644
--- a/gnucash/gnome-utils/gnc-tree-model-account-types.c
+++ b/gnucash/gnome-utils/gnc-tree-model-account-types.c
@@ -56,8 +56,7 @@ typedef struct GncTreeModelAccountTypesPrivate
} GncTreeModelAccountTypesPrivate;
#define GNC_TREE_MODEL_ACCOUNT_TYPES_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_TREE_MODEL_ACCOUNT_TYPES, \
- GncTreeModelAccountTypesPrivate))
+ ((GncTreeModelAccountTypesPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_TREE_MODEL_ACCOUNT_TYPES))
static GObjectClass *parent_class = NULL;
diff --git a/gnucash/gnome-utils/gnc-tree-model-account.c b/gnucash/gnome-utils/gnc-tree-model-account.c
index 695878414..21ea030b1 100644
--- a/gnucash/gnome-utils/gnc-tree-model-account.c
+++ b/gnucash/gnome-utils/gnc-tree-model-account.c
@@ -100,7 +100,7 @@ typedef struct GncTreeModelAccountPrivate
} GncTreeModelAccountPrivate;
#define GNC_TREE_MODEL_ACCOUNT_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_TREE_MODEL_ACCOUNT, GncTreeModelAccountPrivate))
+ ((GncTreeModelAccountPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_TREE_MODEL_ACCOUNT))
/************************************************************/
diff --git a/gnucash/gnome-utils/gnc-tree-model-commodity.c b/gnucash/gnome-utils/gnc-tree-model-commodity.c
index ebd0acd0a..dbf1c5cca 100644
--- a/gnucash/gnome-utils/gnc-tree-model-commodity.c
+++ b/gnucash/gnome-utils/gnc-tree-model-commodity.c
@@ -101,7 +101,7 @@ typedef struct GncTreeModelCommodityPrivate
} GncTreeModelCommodityPrivate;
#define GNC_TREE_MODEL_COMMODITY_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_TREE_MODEL_COMMODITY, GncTreeModelCommodityPrivate))
+ ((GncTreeModelCommodityPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_TREE_MODEL_COMMODITY))
/** A pointer to the parent class of a commodity tree model. */
static GObjectClass *parent_class = NULL;
diff --git a/gnucash/gnome-utils/gnc-tree-model-owner.c b/gnucash/gnome-utils/gnc-tree-model-owner.c
index 34d7317ca..27f5f14ea 100644
--- a/gnucash/gnome-utils/gnc-tree-model-owner.c
+++ b/gnucash/gnome-utils/gnc-tree-model-owner.c
@@ -99,7 +99,7 @@ typedef struct GncTreeModelOwnerPrivate
} GncTreeModelOwnerPrivate;
#define GNC_TREE_MODEL_OWNER_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_TREE_MODEL_OWNER, GncTreeModelOwnerPrivate))
+ ((GncTreeModelOwnerPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_TREE_MODEL_OWNER))
/************************************************************/
diff --git a/gnucash/gnome-utils/gnc-tree-model-price.c b/gnucash/gnome-utils/gnc-tree-model-price.c
index 79885f4e1..55311c7ed 100644
--- a/gnucash/gnome-utils/gnc-tree-model-price.c
+++ b/gnucash/gnome-utils/gnc-tree-model-price.c
@@ -132,7 +132,7 @@ typedef struct GncTreeModelPricePrivate
} GncTreeModelPricePrivate;
#define GNC_TREE_MODEL_PRICE_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_TREE_MODEL_PRICE, GncTreeModelPricePrivate))
+ ((GncTreeModelPricePrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_TREE_MODEL_PRICE))
/** A pointer to the parent class of a price tree model. */
static GObjectClass *parent_class = NULL;
diff --git a/gnucash/gnome-utils/gnc-tree-model-selection.c b/gnucash/gnome-utils/gnc-tree-model-selection.c
index b7bd28e76..d6734d440 100644
--- a/gnucash/gnome-utils/gnc-tree-model-selection.c
+++ b/gnucash/gnome-utils/gnc-tree-model-selection.c
@@ -97,7 +97,7 @@ typedef struct GncTreeModelSelectionPrivate
} GncTreeModelSelectionPrivate;
#define GNC_TREE_MODEL_SELECTION_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_TREE_MODEL_SELECTION, GncTreeModelSelectionPrivate))
+ ((GncTreeModelSelectionPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_TREE_MODEL_SELECTION))
static GObjectClass *parent_class = NULL;
diff --git a/gnucash/gnome-utils/gnc-tree-model-split-reg.c b/gnucash/gnome-utils/gnc-tree-model-split-reg.c
index de5020575..2d4a68410 100644
--- a/gnucash/gnome-utils/gnc-tree-model-split-reg.c
+++ b/gnucash/gnome-utils/gnc-tree-model-split-reg.c
@@ -220,7 +220,7 @@ gtm_sr_make_iter (GncTreeModelSplitReg *model, gint f, GList *tnode, GList *snod
#define GNC_TREE_MODEL_SPLIT_REG_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_TREE_MODEL_SPLIT_REG, GncTreeModelSplitRegPrivate))
+ ((GncTreeModelSplitRegPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_TREE_MODEL_SPLIT_REG))
/************************************************************/
/* g_object required functions */
diff --git a/gnucash/gnome-utils/gnc-tree-model.c b/gnucash/gnome-utils/gnc-tree-model.c
index 432bcdf39..645d1efaa 100644
--- a/gnucash/gnome-utils/gnc-tree-model.c
+++ b/gnucash/gnome-utils/gnc-tree-model.c
@@ -51,7 +51,7 @@ GNC_DEFINE_TYPE_WITH_CODE(GncTreeModel, gnc_tree_model, G_TYPE_OBJECT,
G_ADD_PRIVATE(GncTreeModel))
#define GNC_TREE_MODEL_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_TREE_MODEL, GncTreeModelPrivate))
+ ((GncTreeModelPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_TREE_MODEL))
/************************************************************/
diff --git a/gnucash/gnome-utils/gnc-tree-view-account.c b/gnucash/gnome-utils/gnc-tree-view-account.c
index f8f9e67ae..44f9dac18 100644
--- a/gnucash/gnome-utils/gnc-tree-view-account.c
+++ b/gnucash/gnome-utils/gnc-tree-view-account.c
@@ -115,7 +115,7 @@ typedef struct GncTreeViewAccountPrivate
} GncTreeViewAccountPrivate;
#define GNC_TREE_VIEW_ACCOUNT_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_TREE_VIEW_ACCOUNT, GncTreeViewAccountPrivate))
+ ((GncTreeViewAccountPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_TREE_VIEW_ACCOUNT))
/************************************************************/
diff --git a/gnucash/gnome-utils/gnc-tree-view-commodity.c b/gnucash/gnome-utils/gnc-tree-view-commodity.c
index 46dc23fa6..b1fa531be 100644
--- a/gnucash/gnome-utils/gnc-tree-view-commodity.c
+++ b/gnucash/gnome-utils/gnc-tree-view-commodity.c
@@ -58,7 +58,7 @@ typedef struct GncTreeViewCommodityPrivate
} GncTreeViewCommodityPrivate;
#define GNC_TREE_VIEW_COMMODITY_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_TREE_VIEW_COMMODITY, GncTreeViewCommodityPrivate))
+ ((GncTreeViewCommodityPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_TREE_VIEW_COMMODITY))
/************************************************************/
diff --git a/gnucash/gnome-utils/gnc-tree-view-owner.c b/gnucash/gnome-utils/gnc-tree-view-owner.c
index 8c5c6e8bb..ced2bf90d 100644
--- a/gnucash/gnome-utils/gnc-tree-view-owner.c
+++ b/gnucash/gnome-utils/gnc-tree-view-owner.c
@@ -87,7 +87,7 @@ typedef struct GncTreeViewOwnerPrivate
} GncTreeViewOwnerPrivate;
#define GNC_TREE_VIEW_OWNER_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_TREE_VIEW_OWNER, GncTreeViewOwnerPrivate))
+ ((GncTreeViewOwnerPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_TREE_VIEW_OWNER))
/************************************************************/
diff --git a/gnucash/gnome-utils/gnc-tree-view-price.c b/gnucash/gnome-utils/gnc-tree-view-price.c
index 90e7c51b4..544a33c38 100644
--- a/gnucash/gnome-utils/gnc-tree-view-price.c
+++ b/gnucash/gnome-utils/gnc-tree-view-price.c
@@ -58,7 +58,7 @@ typedef struct GncTreeViewPricePrivate
} GncTreeViewPricePrivate;
#define GNC_TREE_VIEW_PRICE_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_TREE_VIEW_PRICE, GncTreeViewPricePrivate))
+ ((GncTreeViewPricePrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_TREE_VIEW_PRICE))
/************************************************************/
diff --git a/gnucash/gnome-utils/gnc-tree-view-split-reg.c b/gnucash/gnome-utils/gnc-tree-view-split-reg.c
index b28e43c1b..f5cec1f90 100644
--- a/gnucash/gnome-utils/gnc-tree-view-split-reg.c
+++ b/gnucash/gnome-utils/gnc-tree-view-split-reg.c
@@ -301,7 +301,7 @@ struct GncTreeViewSplitRegPrivate
#define SHOW_SYMBOL FALSE
#define GNC_TREE_VIEW_SPLIT_REG_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_TREE_VIEW_SPLIT_REG, GncTreeViewSplitRegPrivate))
+ ((GncTreeViewSplitRegPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_TREE_VIEW_SPLIT_REG))
static GObjectClass *parent_class = NULL;
diff --git a/gnucash/gnome-utils/gnc-tree-view-sx-list.c b/gnucash/gnome-utils/gnc-tree-view-sx-list.c
index 32dc45ee4..ff890b18e 100644
--- a/gnucash/gnome-utils/gnc-tree-view-sx-list.c
+++ b/gnucash/gnome-utils/gnc-tree-view-sx-list.c
@@ -59,7 +59,7 @@ typedef struct GncTreeViewSxListPrivate
} GncTreeViewSxListPrivate;
#define GNC_TREE_VIEW_SX_LIST_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_TREE_VIEW_SX_LIST, GncTreeViewSxListPrivate))
+ ((GncTreeViewSxListPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_TREE_VIEW_SX_LIST))
static GObjectClass *parent_class = NULL;
diff --git a/gnucash/gnome-utils/gnc-tree-view.c b/gnucash/gnome-utils/gnc-tree-view.c
index 820c0258d..f89f81e96 100644
--- a/gnucash/gnome-utils/gnc-tree-view.c
+++ b/gnucash/gnome-utils/gnc-tree-view.c
@@ -131,7 +131,7 @@ GNC_DEFINE_TYPE_WITH_CODE(GncTreeView, gnc_tree_view, GTK_TYPE_TREE_VIEW,
G_ADD_PRIVATE(GncTreeView))
#define GNC_TREE_VIEW_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_TREE_VIEW, GncTreeViewPrivate))
+ ((GncTreeViewPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_TREE_VIEW))
/************************************************************/
diff --git a/gnucash/gnome-utils/search-param.c b/gnucash/gnome-utils/search-param.c
index 5b8417f4a..24e35c060 100644
--- a/gnucash/gnome-utils/search-param.c
+++ b/gnucash/gnome-utils/search-param.c
@@ -53,7 +53,7 @@ struct _GNCSearchParamPrivate
};
#define GNC_SEARCH_PARAM_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_SEARCH_PARAM, GNCSearchParamPrivate))
+ ((GNCSearchParamPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_SEARCH_PARAM))
typedef struct _GNCSearchParamSimplePrivate GNCSearchParamSimplePrivate;
@@ -67,7 +67,7 @@ struct _GNCSearchParamSimplePrivate
};
#define GNC_SEARCH_PARAM_SIMPLE_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_SEARCH_PARAM_SIMPLE, GNCSearchParamSimplePrivate))
+ ((GNCSearchParamSimplePrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_SEARCH_PARAM_SIMPLE))
typedef struct _GNCSearchParamCompoundPrivate GNCSearchParamCompoundPrivate;
@@ -80,7 +80,7 @@ struct _GNCSearchParamCompoundPrivate
};
#define GNC_SEARCH_PARAM_COMPOUND_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_SEARCH_PARAM_COMPOUND, GNCSearchParamCompoundPrivate))
+ ((GNCSearchParamCompoundPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_SEARCH_PARAM_COMPOUND))
static GObjectClass *parent_gobject_class;
static GNCSearchParamClass *parent_search_param_class;
diff --git a/gnucash/gnome/gnc-budget-view.c b/gnucash/gnome/gnc-budget-view.c
index 615b91f39..0b4cf4f1c 100644
--- a/gnucash/gnome/gnc-budget-view.c
+++ b/gnucash/gnome/gnc-budget-view.c
@@ -170,7 +170,7 @@ struct GncBudgetViewPrivate
G_DEFINE_TYPE_WITH_PRIVATE(GncBudgetView, gnc_budget_view, GTK_TYPE_BOX)
#define GNC_BUDGET_VIEW_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE((o), GNC_TYPE_BUDGET_VIEW, GncBudgetViewPrivate))
+ ((GncBudgetViewPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_BUDGET_VIEW))
/** \brief Create new gnc budget view.
diff --git a/gnucash/gnome/gnc-plugin-account-tree.c b/gnucash/gnome/gnc-plugin-account-tree.c
index 31b92f139..abe3e5a65 100644
--- a/gnucash/gnome/gnc-plugin-account-tree.c
+++ b/gnucash/gnome/gnc-plugin-account-tree.c
@@ -76,7 +76,7 @@ typedef struct GncPluginAccountTreePrivate
G_DEFINE_TYPE_WITH_PRIVATE(GncPluginAccountTree, gnc_plugin_account_tree, GNC_TYPE_PLUGIN)
#define GNC_PLUGIN_ACCOUNT_TREE_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_ACCOUNT_TREE, GncPluginAccountTreePrivate))
+ ((GncPluginAccountTreePrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN_ACCOUNT_TREE))
/** A pointer to the parent class of a plugin page. */
static GObjectClass *parent_class = NULL;
diff --git a/gnucash/gnome/gnc-plugin-basic-commands.c b/gnucash/gnome/gnc-plugin-basic-commands.c
index 2e5330c01..51de83442 100644
--- a/gnucash/gnome/gnc-plugin-basic-commands.c
+++ b/gnucash/gnome/gnc-plugin-basic-commands.c
@@ -270,7 +270,7 @@ typedef struct GncPluginBasicCommandsPrivate
} GncPluginBasicCommandsPrivate;
#define GNC_PLUGIN_BASIC_COMMANDS_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_BASIC_COMMANDS, GncPluginBasicCommandsPrivate))
+ ((GncPluginBasicCommandsPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN_BASIC_COMMANDS))
/** A pointer to the parent class of a plugin page. */
static GObjectClass *parent_class = NULL;
diff --git a/gnucash/gnome/gnc-plugin-budget.c b/gnucash/gnome/gnc-plugin-budget.c
index 358567303..0a86b0dfb 100644
--- a/gnucash/gnome/gnc-plugin-budget.c
+++ b/gnucash/gnome/gnc-plugin-budget.c
@@ -83,7 +83,7 @@ typedef struct GncPluginBudgetPrivate
} GncPluginBudgetPrivate;
#define GNC_PLUGIN_BUDGET_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_BUDGET, GncPluginBudgetPrivate))
+ ((GncPluginBudgetPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN_BUDGET))
static GObjectClass *parent_class = NULL;
diff --git a/gnucash/gnome/gnc-plugin-business.c b/gnucash/gnome/gnc-plugin-business.c
index f97506bf0..ff9180ad6 100644
--- a/gnucash/gnome/gnc-plugin-business.c
+++ b/gnucash/gnome/gnc-plugin-business.c
@@ -340,7 +340,7 @@ typedef struct GncPluginBusinessPrivate
} GncPluginBusinessPrivate;
#define GNC_PLUGIN_BUSINESS_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_BUSINESS, GncPluginBusinessPrivate))
+ ((GncPluginBusinessPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN_BUSINESS))
static GObjectClass *parent_class = NULL;
diff --git a/gnucash/gnome/gnc-plugin-page-account-tree.c b/gnucash/gnome/gnc-plugin-page-account-tree.c
index 36c7c81d7..2230168c2 100644
--- a/gnucash/gnome/gnc-plugin-page-account-tree.c
+++ b/gnucash/gnome/gnc-plugin-page-account-tree.c
@@ -101,7 +101,7 @@ typedef struct GncPluginPageAccountTreePrivate
} GncPluginPageAccountTreePrivate;
#define GNC_PLUGIN_PAGE_ACCOUNT_TREE_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_PAGE_ACCOUNT_TREE, GncPluginPageAccountTreePrivate))
+ ((GncPluginPageAccountTreePrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN_PAGE_ACCOUNT_TREE))
static GObjectClass *parent_class = NULL;
diff --git a/gnucash/gnome/gnc-plugin-page-budget.c b/gnucash/gnome/gnc-plugin-page-budget.c
index 5d785682e..3dba5d39b 100644
--- a/gnucash/gnome/gnc-plugin-page-budget.c
+++ b/gnucash/gnome/gnc-plugin-page-budget.c
@@ -239,7 +239,7 @@ typedef struct GncPluginPageBudgetPrivate
G_DEFINE_TYPE_WITH_PRIVATE(GncPluginPageBudget, gnc_plugin_page_budget, GNC_TYPE_PLUGIN_PAGE)
#define GNC_PLUGIN_PAGE_BUDGET_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_PAGE_BUDGET, GncPluginPageBudgetPrivate))
+ ((GncPluginPageBudgetPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN_PAGE_BUDGET))
static GObjectClass *parent_class = NULL;
diff --git a/gnucash/gnome/gnc-plugin-page-invoice.c b/gnucash/gnome/gnc-plugin-page-invoice.c
index ba7bafb4c..99eb7ec1c 100644
--- a/gnucash/gnome/gnc-plugin-page-invoice.c
+++ b/gnucash/gnome/gnc-plugin-page-invoice.c
@@ -294,7 +294,7 @@ typedef struct GncPluginPageInvoicePrivate
G_DEFINE_TYPE_WITH_PRIVATE(GncPluginPageInvoice, gnc_plugin_page_invoice, GNC_TYPE_PLUGIN_PAGE)
#define GNC_PLUGIN_PAGE_INVOICE_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_PAGE_INVOICE, GncPluginPageInvoicePrivate))
+ ((GncPluginPageInvoicePrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN_PAGE_INVOICE))
static GObjectClass *parent_class = NULL;
diff --git a/gnucash/gnome/gnc-plugin-page-owner-tree.c b/gnucash/gnome/gnc-plugin-page-owner-tree.c
index d4d2cbd57..5022e7907 100644
--- a/gnucash/gnome/gnc-plugin-page-owner-tree.c
+++ b/gnucash/gnome/gnc-plugin-page-owner-tree.c
@@ -86,7 +86,7 @@ typedef struct GncPluginPageOwnerTreePrivate
} GncPluginPageOwnerTreePrivate;
#define GNC_PLUGIN_PAGE_OWNER_TREE_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_PAGE_OWNER_TREE, GncPluginPageOwnerTreePrivate))
+ ((GncPluginPageOwnerTreePrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN_PAGE_OWNER_TREE))
static GObjectClass *parent_class = NULL;
diff --git a/gnucash/gnome/gnc-plugin-page-register.c b/gnucash/gnome/gnc-plugin-page-register.c
index 452fb1226..59a2f1bcc 100644
--- a/gnucash/gnome/gnc-plugin-page-register.c
+++ b/gnucash/gnome/gnc-plugin-page-register.c
@@ -597,7 +597,7 @@ typedef struct GncPluginPageRegisterPrivate
G_DEFINE_TYPE_WITH_PRIVATE(GncPluginPageRegister, gnc_plugin_page_register, GNC_TYPE_PLUGIN_PAGE)
#define GNC_PLUGIN_PAGE_REGISTER_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_PAGE_REGISTER, GncPluginPageRegisterPrivate))
+ ((GncPluginPageRegisterPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN_PAGE_REGISTER))
static GObjectClass *parent_class = NULL;
diff --git a/gnucash/gnome/gnc-plugin-page-register2.c b/gnucash/gnome/gnc-plugin-page-register2.c
index 41f89ca47..206f04d42 100644
--- a/gnucash/gnome/gnc-plugin-page-register2.c
+++ b/gnucash/gnome/gnc-plugin-page-register2.c
@@ -555,7 +555,7 @@ typedef struct GncPluginPageRegister2Private
} GncPluginPageRegister2Private;
#define GNC_PLUGIN_PAGE_REGISTER2_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_PAGE_REGISTER2, GncPluginPageRegister2Private))
+ ((GncPluginPageRegister2Private*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN_PAGE_REGISTER2))
static GObjectClass *parent_class = NULL;
diff --git a/gnucash/gnome/gnc-plugin-page-sx-list.c b/gnucash/gnome/gnc-plugin-page-sx-list.c
index 10f1b9a27..6cbabc586 100644
--- a/gnucash/gnome/gnc-plugin-page-sx-list.c
+++ b/gnucash/gnome/gnc-plugin-page-sx-list.c
@@ -98,7 +98,7 @@ typedef struct GncPluginPageSxListPrivate
} GncPluginPageSxListPrivate;
#define GNC_PLUGIN_PAGE_SX_LIST_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_PAGE_SX_LIST, GncPluginPageSxListPrivate))
+ ((GncPluginPageSxListPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN_PAGE_SX_LIST))
static GObjectClass *parent_class = NULL;
diff --git a/gnucash/gnome/gnc-plugin-register.c b/gnucash/gnome/gnc-plugin-register.c
index 810c6da1c..181a7f883 100644
--- a/gnucash/gnome/gnc-plugin-register.c
+++ b/gnucash/gnome/gnc-plugin-register.c
@@ -71,7 +71,7 @@ typedef struct GncPluginRegisterPrivate
G_DEFINE_TYPE_WITH_PRIVATE(GncPluginRegister, gnc_plugin_register, GNC_TYPE_PLUGIN)
#define GNC_PLUGIN_REGISTER_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_REGISTER, GncPluginRegisterPrivate))
+ ((GncPluginRegisterPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN_REGISTER))
static GObjectClass *parent_class = NULL;
static QofLogModule log_module = GNC_MOD_GUI;
diff --git a/gnucash/gnome/gnc-plugin-register2.c b/gnucash/gnome/gnc-plugin-register2.c
index 955394574..4207354e6 100644
--- a/gnucash/gnome/gnc-plugin-register2.c
+++ b/gnucash/gnome/gnc-plugin-register2.c
@@ -78,7 +78,7 @@ typedef struct GncPluginRegister2Private
G_DEFINE_TYPE_WITH_PRIVATE(GncPluginRegister2, gnc_plugin_register2, GNC_TYPE_PLUGIN)
#define GNC_PLUGIN_REGISTER2_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_REGISTER2, GncPluginRegister2Private))
+ ((GncPluginRegister2Private*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN_REGISTER2))
static GObjectClass *parent_class = NULL;
static QofLogModule log_module = GNC_MOD_GUI;
diff --git a/gnucash/gnome/search-owner.c b/gnucash/gnome/search-owner.c
index fc49a9e8a..1801a742e 100644
--- a/gnucash/gnome/search-owner.c
+++ b/gnucash/gnome/search-owner.c
@@ -60,7 +60,7 @@ typedef struct _GNCSearchOwnerPrivate
G_DEFINE_TYPE_WITH_PRIVATE(GNCSearchOwner, gnc_search_owner, GNC_TYPE_SEARCH_CORE_TYPE);
#define _PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_SEARCH_OWNER, GNCSearchOwnerPrivate))
+ ((GNCSearchOwnerPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_SEARCH_OWNER))
static GNCSearchCoreTypeClass *parent_class;
diff --git a/gnucash/html/gnc-html.c b/gnucash/html/gnc-html.c
index d9f44567f..a14368838 100644
--- a/gnucash/html/gnc-html.c
+++ b/gnucash/html/gnc-html.c
@@ -72,7 +72,9 @@ static void gnc_html_class_init( GncHtmlClass* klass );
static void gnc_html_dispose( GObject* obj );
static void gnc_html_finalize( GObject* obj );
-//#define GNC_HTML_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE((o), GNC_TYPE_HTML, GncHtmlPrivate))
+//#define GNC_HTML_GET_PRIVATE(o) \
+ ((GncHtmlPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_HTML))
+
#define GNC_HTML_GET_PRIVATE(o) (GNC_HTML(o)->priv)
#include "gnc-html-p.h"
diff --git a/gnucash/import-export/csv-exp/gnc-plugin-csv-export.c b/gnucash/import-export/csv-exp/gnc-plugin-csv-export.c
index 3bf5a0cce..97b1b9f45 100644
--- a/gnucash/import-export/csv-exp/gnc-plugin-csv-export.c
+++ b/gnucash/import-export/csv-exp/gnc-plugin-csv-export.c
@@ -77,7 +77,7 @@ typedef struct GncPluginCsvExportPrivate
G_DEFINE_TYPE_WITH_PRIVATE(GncPluginCsvExport, gnc_plugin_csv_export, GNC_TYPE_PLUGIN)
#define GNC_PLUGIN_CSV_EXPORT_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_CSV_EXPORT, GncPluginCsvExportPrivate))
+ ((GncPluginCsvExportPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN_CSV_EXPORT))
static GObjectClass *parent_class = NULL;
diff --git a/gnucash/import-export/csv-imp/gnc-plugin-csv-import.c b/gnucash/import-export/csv-imp/gnc-plugin-csv-import.c
index df144d115..4257b2594 100644
--- a/gnucash/import-export/csv-imp/gnc-plugin-csv-import.c
+++ b/gnucash/import-export/csv-imp/gnc-plugin-csv-import.c
@@ -72,7 +72,7 @@ typedef struct GncPluginCsvImportPrivate
G_DEFINE_TYPE_WITH_PRIVATE(GncPluginCsvImport, gnc_plugin_csv_import, GNC_TYPE_PLUGIN)
#define GNC_PLUGIN_CSV_IMPORT_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_CSV_IMPORT, GncPluginCsvImportPrivate))
+ ((GncPluginCsvImportPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN_CSV_IMPORT))
static GObjectClass *parent_class = NULL;
diff --git a/gnucash/import-export/log-replay/gnc-plugin-log-replay.c b/gnucash/import-export/log-replay/gnc-plugin-log-replay.c
index b55bfaa19..1356caf4e 100644
--- a/gnucash/import-export/log-replay/gnc-plugin-log-replay.c
+++ b/gnucash/import-export/log-replay/gnc-plugin-log-replay.c
@@ -60,7 +60,7 @@ typedef struct GncPluginLogreplayPrivate
G_DEFINE_TYPE_WITH_PRIVATE(GncPluginLogreplay, gnc_plugin_log_replay, GNC_TYPE_PLUGIN)
#define GNC_PLUGIN_LOG_REPLAY_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_LOG_REPLAY, GncPluginLogreplayPrivate))
+ ((GncPluginLogreplayPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN_LOG_REPLAY))
static GObjectClass *parent_class = NULL;
diff --git a/gnucash/import-export/ofx/gnc-plugin-ofx.c b/gnucash/import-export/ofx/gnc-plugin-ofx.c
index 867583296..be07e1ecd 100644
--- a/gnucash/import-export/ofx/gnc-plugin-ofx.c
+++ b/gnucash/import-export/ofx/gnc-plugin-ofx.c
@@ -58,7 +58,7 @@ typedef struct GncPluginOfxPrivate
G_DEFINE_TYPE_WITH_PRIVATE(GncPluginOfx, gnc_plugin_ofx, GNC_TYPE_PLUGIN)
#define GNC_PLUGIN_OFX_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_OFX, GncPluginOfxPrivate))
+ ((GncPluginOfxPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN_OFX))
static GObjectClass *parent_class = NULL;
diff --git a/gnucash/import-export/qif-imp/gnc-plugin-qif-import.c b/gnucash/import-export/qif-imp/gnc-plugin-qif-import.c
index a2c6a6780..ccf568af9 100644
--- a/gnucash/import-export/qif-imp/gnc-plugin-qif-import.c
+++ b/gnucash/import-export/qif-imp/gnc-plugin-qif-import.c
@@ -59,7 +59,7 @@ typedef struct GncPluginQifImportPrivate
G_DEFINE_TYPE_WITH_PRIVATE(GncPluginQifImport, gnc_plugin_qif_import, GNC_TYPE_PLUGIN);
#define GNC_PLUGIN_QIF_IMPORT_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_QIF_IMPORT, GncPluginQifImportPrivate))
+ ((GncPluginQifImportPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN_QIF_IMPORT))
static GObjectClass *parent_class = NULL;
diff --git a/gnucash/register/register-gnome/gnucash-sheet-private.c b/gnucash/register/register-gnome/gnucash-sheet-private.c
index 92769ce61..b1fbada80 100644
--- a/gnucash/register/register-gnome/gnucash-sheet-private.c
+++ b/gnucash/register/register-gnome/gnucash-sheet-private.c
@@ -283,7 +283,7 @@ static guint32 dec_intensity_10percent(guint32 argb)
/* Actual drawing routines */
-G_INLINE_FUNC void
+static inline void
draw_cell_line (cairo_t *cr, GdkRGBA *bg_color,
double x1, double y1, double x2, double y2,
PhysicalCellBorderLineStyle style);
diff --git a/gnucash/register/register-gnome/gnucash-sheet.c b/gnucash/register/register-gnome/gnucash-sheet.c
index 7de2f0e10..4fe6abc23 100644
--- a/gnucash/register/register-gnome/gnucash-sheet.c
+++ b/gnucash/register/register-gnome/gnucash-sheet.c
@@ -103,7 +103,7 @@ gboolean gnucash_sheet_draw_cb (GtkWidget *widget, cairo_t *cr,
/** Implementation *****************************************************/
-G_INLINE_FUNC gboolean
+static inline gboolean
gnucash_sheet_virt_cell_out_of_bounds (GnucashSheet *sheet,
VirtualCellLocation vcell_loc);
gboolean
diff --git a/gnucash/report/report-gnome/gnc-plugin-page-report.c b/gnucash/report/report-gnome/gnc-plugin-page-report.c
index 1cfc747b0..163be654b 100644
--- a/gnucash/report/report-gnome/gnc-plugin-page-report.c
+++ b/gnucash/report/report-gnome/gnc-plugin-page-report.c
@@ -136,7 +136,7 @@ typedef struct GncPluginPageReportPrivate
G_DEFINE_TYPE_WITH_PRIVATE(GncPluginPageReport, gnc_plugin_page_report, GNC_TYPE_PLUGIN_PAGE)
#define GNC_PLUGIN_PAGE_REPORT_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_PAGE_REPORT, GncPluginPageReportPrivate))
+ ((GncPluginPageReportPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN_PAGE_REPORT))
static void gnc_plugin_page_report_class_init( GncPluginPageReportClass *klass );
static void gnc_plugin_page_report_init( GncPluginPageReport *plugin_page );
diff --git a/gnucash/report/stylesheets/gnc-plugin-stylesheets.c b/gnucash/report/stylesheets/gnc-plugin-stylesheets.c
index ab5c4ed62..e1fd42d88 100644
--- a/gnucash/report/stylesheets/gnc-plugin-stylesheets.c
+++ b/gnucash/report/stylesheets/gnc-plugin-stylesheets.c
@@ -64,7 +64,7 @@ typedef struct GncPluginStylesheetsPrivate
G_DEFINE_TYPE_WITH_PRIVATE(GncPluginStylesheets, gnc_plugin_stylesheets, GNC_TYPE_PLUGIN)
#define GNC_PLUGIN_STYLESHEETS_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_STYLESHEETS, GncPluginStylesheetsPrivate))
+ ((GncPluginStylesheetsPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_PLUGIN_STYLESHEETS))
static GObjectClass *parent_class = NULL;
diff --git a/libgnucash/app-utils/gnc-ui-util.c b/libgnucash/app-utils/gnc-ui-util.c
index 24547664a..eb149eb8d 100644
--- a/libgnucash/app-utils/gnc-ui-util.c
+++ b/libgnucash/app-utils/gnc-ui-util.c
@@ -2088,9 +2088,7 @@ typedef enum
#define done_state(state) (((state) == DONE_ST) || ((state) == NO_NUM_ST))
-G_INLINE_FUNC long long int multiplier (int num_decimals);
-
-long long int
+static inline long long int
multiplier (int num_decimals)
{
switch (num_decimals)
diff --git a/libgnucash/engine/Account.cpp b/libgnucash/engine/Account.cpp
index b6eed3b98..6c9f27dae 100644
--- a/libgnucash/engine/Account.cpp
+++ b/libgnucash/engine/Account.cpp
@@ -121,7 +121,7 @@ enum
};
#define GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_ACCOUNT, AccountPrivate))
+ ((AccountPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_ACCOUNT))
/********************************************************************\
* Because I can't use C++ for this project, doesn't mean that I *
@@ -241,7 +241,7 @@ GList *gnc_account_list_name_violations (QofBook *book, const gchar *separator)
/********************************************************************\
\********************************************************************/
-G_INLINE_FUNC void mark_account (Account *acc);
+static inline void mark_account (Account *acc);
void
mark_account (Account *acc)
{
diff --git a/libgnucash/engine/Transaction.c b/libgnucash/engine/Transaction.c
index 927e64356..0a2243747 100644
--- a/libgnucash/engine/Transaction.c
+++ b/libgnucash/engine/Transaction.c
@@ -228,13 +228,13 @@ xaccTransStillHasSplit(const Transaction *trans, const Split *s)
} \
}
-G_INLINE_FUNC void mark_trans (Transaction *trans);
+static inline void mark_trans (Transaction *trans);
void mark_trans (Transaction *trans)
{
FOR_EACH_SPLIT(trans, mark_split(s));
}
-G_INLINE_FUNC void gen_event_trans (Transaction *trans);
+static inline void gen_event_trans (Transaction *trans);
void gen_event_trans (Transaction *trans)
{
GList *node;
diff --git a/libgnucash/engine/gnc-budget.c b/libgnucash/engine/gnc-budget.c
index ab49be6c5..7b435dd54 100644
--- a/libgnucash/engine/gnc-budget.c
+++ b/libgnucash/engine/gnc-budget.c
@@ -74,7 +74,7 @@ typedef struct GncBudgetPrivate
} GncBudgetPrivate;
#define GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE((o), GNC_TYPE_BUDGET, GncBudgetPrivate))
+ ((GncBudgetPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_BUDGET))
struct _GncBudgetClass
{
diff --git a/libgnucash/engine/gnc-commodity.c b/libgnucash/engine/gnc-commodity.c
index 7d775a7ad..b6ae5a4b3 100644
--- a/libgnucash/engine/gnc-commodity.c
+++ b/libgnucash/engine/gnc-commodity.c
@@ -90,7 +90,7 @@ typedef struct gnc_commodityPrivate
} gnc_commodityPrivate;
#define GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE((o), GNC_TYPE_COMMODITY, gnc_commodityPrivate))
+ ((gnc_commodityPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_COMMODITY))
struct _GncCommodityClass
{
diff --git a/libgnucash/engine/gnc-lot.c b/libgnucash/engine/gnc-lot.c
index a0afc0481..7aac38de6 100644
--- a/libgnucash/engine/gnc-lot.c
+++ b/libgnucash/engine/gnc-lot.c
@@ -95,7 +95,7 @@ typedef struct GNCLotPrivate
} GNCLotPrivate;
#define GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE((o), GNC_TYPE_LOT, GNCLotPrivate))
+ ((GNCLotPrivate*)g_type_instance_get_private((GTypeInstance*)o, GNC_TYPE_LOT))
#define gnc_lot_set_guid(L,G) qof_instance_set_guid(QOF_INSTANCE(L),&(G))
diff --git a/libgnucash/engine/gncAddress.c b/libgnucash/engine/gncAddress.c
index d59ce5455..2b4e5222c 100644
--- a/libgnucash/engine/gncAddress.c
+++ b/libgnucash/engine/gncAddress.c
@@ -61,7 +61,7 @@ static QofLogModule log_module = GNC_MOD_BUSINESS;
#define _GNC_MOD_NAME GNC_ADDRESS_MODULE_NAME
-G_INLINE_FUNC void mark_address (GncAddress *address);
+static inline void mark_address (GncAddress *address);
void mark_address (GncAddress *address)
{
address->dirty = TRUE;
diff --git a/libgnucash/engine/gncCustomer.c b/libgnucash/engine/gncCustomer.c
index 18192d234..13ec64c82 100644
--- a/libgnucash/engine/gncCustomer.c
+++ b/libgnucash/engine/gncCustomer.c
@@ -86,7 +86,7 @@ static QofLogModule log_module = GNC_MOD_BUSINESS;
/* ============================================================== */
/* misc inline funcs */
-G_INLINE_FUNC void mark_customer (GncCustomer *customer);
+static inline void mark_customer (GncCustomer *customer);
void mark_customer (GncCustomer *customer)
{
qof_instance_set_dirty(&customer->inst);
diff --git a/libgnucash/engine/gncEmployee.c b/libgnucash/engine/gncEmployee.c
index 8f5749405..7515d12e2 100644
--- a/libgnucash/engine/gncEmployee.c
+++ b/libgnucash/engine/gncEmployee.c
@@ -71,7 +71,7 @@ static QofLogModule log_module = GNC_MOD_BUSINESS;
#define _GNC_MOD_NAME GNC_ID_EMPLOYEE
-G_INLINE_FUNC void mark_employee (GncEmployee *employee);
+static inline void mark_employee (GncEmployee *employee);
void mark_employee (GncEmployee *employee)
{
qof_instance_set_dirty(&employee->inst);
diff --git a/libgnucash/engine/gncEntry.c b/libgnucash/engine/gncEntry.c
index 785255a41..528c7e97a 100644
--- a/libgnucash/engine/gncEntry.c
+++ b/libgnucash/engine/gncEntry.c
@@ -200,7 +200,7 @@ gboolean gncEntryPaymentStringToType (const char *str, GncEntryPaymentType *type
member = tmp; \
}
-G_INLINE_FUNC void mark_entry (GncEntry *entry);
+static inline void mark_entry (GncEntry *entry);
void mark_entry (GncEntry *entry)
{
qof_instance_set_dirty(&entry->inst);
diff --git a/libgnucash/engine/gncJob.c b/libgnucash/engine/gncJob.c
index 2ee97b796..715363ab8 100644
--- a/libgnucash/engine/gncJob.c
+++ b/libgnucash/engine/gncJob.c
@@ -61,7 +61,7 @@ static QofLogModule log_module = GNC_MOD_BUSINESS;
/* ================================================================== */
/* misc inline functions */
-G_INLINE_FUNC void mark_job (GncJob *job);
+static inline void mark_job (GncJob *job);
void mark_job (GncJob *job)
{
qof_instance_set_dirty(&job->inst);
diff --git a/libgnucash/engine/gncOrder.c b/libgnucash/engine/gncOrder.c
index 2130e6d9f..fbf1b3bd9 100644
--- a/libgnucash/engine/gncOrder.c
+++ b/libgnucash/engine/gncOrder.c
@@ -74,7 +74,7 @@ static QofLogModule log_module = GNC_MOD_BUSINESS;
member = tmp; \
}
-G_INLINE_FUNC void mark_order (GncOrder *order);
+static inline void mark_order (GncOrder *order);
void mark_order (GncOrder *order)
{
qof_instance_set_dirty(&order->inst);
diff --git a/libgnucash/engine/gncVendor.c b/libgnucash/engine/gncVendor.c
index 5f01a0314..709664314 100644
--- a/libgnucash/engine/gncVendor.c
+++ b/libgnucash/engine/gncVendor.c
@@ -78,7 +78,7 @@ static QofLogModule log_module = GNC_MOD_BUSINESS;
/* ============================================================ */
/* Misc inline funcs */
-G_INLINE_FUNC void mark_vendor (GncVendor *vendor);
+static inline void mark_vendor (GncVendor *vendor);
void mark_vendor (GncVendor *vendor)
{
qof_instance_set_dirty(&vendor->inst);
diff --git a/libgnucash/engine/qofinstance.cpp b/libgnucash/engine/qofinstance.cpp
index 34a6c5bbc..9f2952f3c 100644
--- a/libgnucash/engine/qofinstance.cpp
+++ b/libgnucash/engine/qofinstance.cpp
@@ -112,7 +112,7 @@ typedef struct QofInstancePrivate
} QofInstancePrivate;
#define GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), QOF_TYPE_INSTANCE, QofInstancePrivate))
+ ((QofInstancePrivate*)g_type_instance_get_private((GTypeInstance*)o, QOF_TYPE_INSTANCE))
G_DEFINE_TYPE_WITH_PRIVATE(QofInstance, qof_instance, G_TYPE_OBJECT);
QOF_GOBJECT_FINALIZE(qof_instance);
commit 70eb7172d5801d0377a0e80789db589be2505da5
Author: Geert Janssens <geert at kobaltwit.be>
Date: Thu Sep 12 22:49:44 2019 +0200
Drop special case for old cmake versions
We require 3.5 which is more recent than 3.3
diff --git a/common/cmake_modules/MakeDistFiles.cmake b/common/cmake_modules/MakeDistFiles.cmake
index dd6a0751d..277374dc1 100644
--- a/common/cmake_modules/MakeDistFiles.cmake
+++ b/common/cmake_modules/MakeDistFiles.cmake
@@ -1,9 +1,4 @@
-if (${CMAKE_VERSION} VERSION_LESS 3.3)
- include(CMakeParseArguments)
-endif()
-
-
function(set_local_dist output)
set(dist_files "")
foreach(file ${ARGN})
commit 82b3af969571077d584eb550aa5edb4e35663d54
Author: Geert Janssens <geert at kobaltwit.be>
Date: Thu Sep 12 22:21:09 2019 +0200
Change scheme file compile command invocation
This
* adds normal double quotes around the guild function call
* removes escaped quotes from paths
* add 'VERBATIM' keyword to let cmake perform its own escape logic on the commands
Verified to work on Windows and linux with both ninja and make.
diff --git a/common/cmake_modules/GncAddSchemeTargets.cmake b/common/cmake_modules/GncAddSchemeTargets.cmake
index 740845096..977ef1bfd 100644
--- a/common/cmake_modules/GncAddSchemeTargets.cmake
+++ b/common/cmake_modules/GncAddSchemeTargets.cmake
@@ -119,7 +119,7 @@ function(gnc_add_scheme_targets _TARGET _SOURCE_FILES _OUTPUT_DIR _GUILE_DEPENDS
if (MINGW64)
set(fpath "")
file(TO_CMAKE_PATH "$ENV{PATH}" fpath)
- set(LIBRARY_PATH "PATH=\"${BINDIR_BUILD};${fpath}\"")
+ set(LIBRARY_PATH "PATH=${BINDIR_BUILD};${fpath}")
else (MINGW64)
set (LIBRARY_PATH "LD_LIBRARY_PATH=${LIBDIR_BUILD}:${LIBDIR_BUILD}/gnucash")
endif (MINGW64)
@@ -150,13 +150,14 @@ function(gnc_add_scheme_targets _TARGET _SOURCE_FILES _OUTPUT_DIR _GUILE_DEPENDS
COMMAND ${CMAKE_COMMAND} -E env
"${LIBRARY_PATH}"
"GNC_UNINSTALLED=YES"
- "GNC_BUILDDIR=\"${CMAKE_BINARY_DIR}\""
- "GUILE_LOAD_PATH=\"${_GUILE_LOAD_PATH}\""
- "GUILE_LOAD_COMPILED_PATH=\"${_GUILE_LOAD_COMPILED_PATH}\""
- "GNC_MODULE_PATH=\"${_GNC_MODULE_PATH}\""
- ${GUILE_EXECUTABLE} -e '\(@@ \(guild\) main\)' -s ${GUILD_EXECUTABLE} compile -o ${output_file} ${source_file_abs_path}
+ "GNC_BUILDDIR=${CMAKE_BINARY_DIR}"
+ "GUILE_LOAD_PATH=${_GUILE_LOAD_PATH}"
+ "GUILE_LOAD_COMPILED_PATH=${_GUILE_LOAD_COMPILED_PATH}"
+ "GNC_MODULE_PATH=${_GNC_MODULE_PATH}"
+ ${GUILE_EXECUTABLE} -e "\(@@ \(guild\) main\)" -s ${GUILD_EXECUTABLE} compile -o ${output_file} ${source_file_abs_path}
DEPENDS ${guile_depends}
MAIN_DEPENDENCY ${source_file_abs_path}
+ VERBATIM
)
endforeach(source_file)
if (__DEBUG)
commit 84dede1ab7a59d569878a3fed6568e65d53597ee
Author: Geert Janssens <geert at kobaltwit.be>
Date: Thu Sep 12 22:19:05 2019 +0200
Remove leaked work in progress file from POTFILES.in
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 74f442854..61f879b4f 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -157,7 +157,6 @@ gnucash/gnome-utils/gnc-main-window.c
gnucash/gnome-utils/gnc-menu-extensions.c
gnucash/gnome-utils/gnc-menu-extensions.scm
gnucash/gnome-utils/gncmod-gnome-utils.c
-gnucash/gnome-utils/gnc-option-wrapper.cpp
gnucash/gnome-utils/gnc-period-select.c
gnucash/gnome-utils/gnc-plugin.c
gnucash/gnome-utils/gnc-plugin-file-history.c
commit 23d0fa132414faab93acb46214c7c6197938044e
Author: Christopher Lam <christopher.lck at gmail.com>
Date: Sun Sep 8 23:37:10 2019 +0800
[balsheet-pnl] bugfix last pnl period must not be decreased by 1 day
logic error to calculate last period date pair for col-header.
pnl report-dates are stored as a list of time64. consider a regular
profit&loss for "quarterly income & expense amounts for last
calendar year". dates are 1-jan to 31-dec. the report-dates are
'(1-jan 1-apr 1-jul 1-oct 31-dec). the inc/exp accounts balances are
queried for the above dates, and the delta change (sans closing
entries) constitutes the desired answer.
the col-header needs to report "1-jan to 31-mar", which it does by
retrieving 2 consecutive dates in the list (1-jan 1-apr), then
decrease second date by 1 day to obtain "1-jan to 31-mar" . however
this fails for the last period which would return '1-oct to 30-dec'.
this commit changes display for last period to return last report-date
so that the header is fixed to '1-oct to 31-dec'.
this is cosmetic for header dates only, calculations of periodic
income/expense amounts were never affected and included entries on the
last report-date (e.g. 31-dec as above).
diff --git a/gnucash/report/standard-reports/balsheet-pnl.scm b/gnucash/report/standard-reports/balsheet-pnl.scm
index 2a4d511b4..76a878228 100644
--- a/gnucash/report/standard-reports/balsheet-pnl.scm
+++ b/gnucash/report/standard-reports/balsheet-pnl.scm
@@ -1081,14 +1081,17 @@ also show overall period profit & loss."))
(closing-regexp (get-option pagename-entries optname-closing-regexp))
(include-overall-period? (get-option gnc:pagename-general
optname-include-overall-period))
- (col-idx->datepair (lambda (idx)
- (if (eq? idx 'overall-period)
- (cons (car report-dates) (last report-dates))
- (cons (list-ref report-dates idx)
- (gnc:time64-end-day-time
- (decdate
- (list-ref report-dates (1+ idx))
- DayDelta))))))
+ (col-idx->datepair
+ (lambda (idx)
+ (cond
+ ((eq? idx 'overall-period)
+ (cons (car report-dates) (last report-dates)))
+ ((= idx (- (length report-dates) 2))
+ (cons (list-ref report-dates idx) (last report-dates)))
+ (else
+ (cons (list-ref report-dates idx)
+ (decdate (list-ref report-dates (1+ idx)) DayDelta))))))
+
(col-idx->monetarypair (lambda (balancelist idx)
(if (eq? idx 'overall-period)
(cons (car balancelist) (last balancelist))
commit 7a36c229c54a54d27444a30be44cae3622681a99
Author: Christopher Lam <christopher.lck at gmail.com>
Date: Sun Sep 8 20:39:09 2019 +0800
[balsheet-pnl] speed up by pre-appending accounts
minor efficiency change. append-reverse is faster than append, and
storing the appended lists is rather convenient for this
report which uses them a lot.
diff --git a/gnucash/report/standard-reports/balsheet-pnl.scm b/gnucash/report/standard-reports/balsheet-pnl.scm
index 8e9afe25e..2a4d511b4 100644
--- a/gnucash/report/standard-reports/balsheet-pnl.scm
+++ b/gnucash/report/standard-reports/balsheet-pnl.scm
@@ -546,7 +546,7 @@ also show overall period profit & loss."))
monetary)))
(loop (cdr accounts)
(if (list? amt)
- (append amt result)
+ (append-reverse amt result)
(cons amt result))))))))
(define (is-not-zero? accts)
@@ -866,6 +866,10 @@ also show overall period profit & loss."))
(assoc-ref split-up-accounts ACCT-TYPE-EQUITY))
(trading-accounts
(assoc-ref split-up-accounts ACCT-TYPE-TRADING))
+
+ (asset-liability (append-reverse asset-accounts liability-accounts))
+ (income-expense (append-reverse income-accounts expense-accounts))
+
(doc (gnc:make-html-document))
(multicol-table-left (gnc:make-html-table))
(multicol-table-right (if enable-dual-columns?
@@ -915,8 +919,7 @@ also show overall period profit & loss."))
(let ((asset-liab-balances
(map cdr (filter
(lambda (acc-balances)
- (member (car acc-balances)
- (append asset-accounts liability-accounts)))
+ (member (car acc-balances) asset-liability))
accounts-balances))))
(if (null? asset-liab-balances)
(map (const (gnc:make-commodity-collector)) report-dates)
@@ -927,8 +930,7 @@ also show overall period profit & loss."))
(map cdr
(filter
(lambda (acc-balances)
- (member (car acc-balances)
- (append income-accounts expense-accounts)))
+ (member (car acc-balances) income-expense))
accounts-balances))))
(if (null? inc-exp-balances)
(map (const (gnc:make-commodity-collector)) report-dates)
@@ -956,7 +958,7 @@ also show overall period profit & loss."))
(list-ref asset-liability-balances col-idx))
(asset-liability-basis
(gnc:accounts-get-comm-total-assets
- (append asset-accounts liability-accounts)
+ asset-liability
(lambda (acc)
(gnc:account-get-comm-value-at-date acc date #f))))
(unrealized (gnc:make-commodity-collector)))
@@ -973,9 +975,7 @@ also show overall period profit & loss."))
(list-ref income-expense-balances col-idx)))
(if (and common-currency
(every has-price?
- (map xaccAccountGetCommodity
- (append income-accounts
- expense-accounts))))
+ (gnc:accounts-get-commodities income-expense #f)))
(gnc:monetary-neg
(monetaries->exchanged income-expense-balance
common-currency price-source date))
@@ -992,8 +992,7 @@ also show overall period profit & loss."))
(list "General" "Step Size" incr)
(list "General" "Price Source"
(or price-source 'pricedb-nearest))
- (list "Accounts" "Accounts"
- (append asset-accounts liability-accounts))))))
+ (list "Accounts" "Accounts" asset-liability)))))
(get-col-header-fn (lambda (accounts col-idx)
(let* ((date (list-ref report-dates col-idx))
(header (qof-print-date date))
@@ -1065,7 +1064,7 @@ also show overall period profit & loss."))
(if (and common-currency show-rates?)
(add-to-table multicol-table-right (_ "Exchange Rates")
- (append asset-accounts liability-accounts)
+ asset-liability
#:get-col-header-fn get-exchange-rates-fn
#:show-accounts? #f
#:show-total? #f))
@@ -1098,7 +1097,7 @@ also show overall period profit & loss."))
(closing-entries (let ((query (qof-query-create-for-splits)))
(qof-query-set-book query (gnc-get-current-book))
(xaccQueryAddAccountMatch
- query (append income-accounts expense-accounts)
+ query income-expense
QOF-GUID-MATCH-ANY QOF-QUERY-AND)
(if (and closing-str (not (string-null? closing-str)))
(xaccQueryAddDescriptionMatch
@@ -1166,8 +1165,7 @@ also show overall period profit & loss."))
(list "General" "Step Size" (or incr 'MonthDelta))
(list "General" "Price Source"
(or price-source 'pricedb-nearest))
- (list "Accounts" "Accounts"
- (append income-accounts expense-accounts))))))
+ (list "Accounts" "Accounts" income-expense)))))
(get-col-header-fn
(lambda (accounts col-idx)
(let* ((datepair (col-idx->datepair col-idx))
@@ -1236,14 +1234,14 @@ also show overall period profit & loss."))
(unless (or (null? income-accounts)
(null? expense-accounts))
(add-to-table multicol-table-left (_ "Net Income")
- (append income-accounts expense-accounts)
+ income-expense
#:show-accounts? #f
#:negate-amounts? #t
#:force-total? #t))
(if (and common-currency show-rates?)
(add-to-table multicol-table-left (_ "Exchange Rates")
- (append income-accounts expense-accounts)
+ income-expense
#:get-col-header-fn get-exchange-rates-fn
#:show-accounts? #f
#:show-total? #f))
commit 70cb3a0b979991cc34a00278d9de246ad5fac1c5
Author: Christopher Lam <christopher.lck at gmail.com>
Date: Tue Sep 10 00:34:25 2019 +0800
[utilities] compact sort-and-delete-duplicates
This is still readable IMHO. kons is the result constructor, and adds
item to result iff different from previous add.
diff --git a/libgnucash/scm/utilities.scm b/libgnucash/scm/utilities.scm
index 105f49341..aa69e277f 100644
--- a/libgnucash/scm/utilities.scm
+++ b/libgnucash/scm/utilities.scm
@@ -188,12 +188,8 @@
;; uses quicksort internally.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define* (sort-and-delete-duplicates lst < #:optional (= =))
- (let lp ((lst (sort lst <)) (result '()))
- (cond
- ((null? lst) '())
- ((null? (cdr lst)) (reverse (cons (car lst) result)))
- ((= (car lst) (cadr lst)) (lp (cdr lst) result))
- (else (lp (cdr lst) (cons (car lst) result))))))
+ (define (kons a b) (if (and (pair? b) (= a (car b))) b (cons a b)))
+ (reverse (fold kons '() (sort lst <))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
commit ff8c5725cde0d6bbdeba6ea53ad6a08198a4db0a
Author: Christopher Lam <christopher.lck at gmail.com>
Date: Sun Sep 8 18:54:06 2019 +0800
[test-extras] rewrite strip-string to avoid repeat string-append
this is marginally more efficient, by keeping a list of (shared)
substrings, and only concatenating them when returning the stripped
string.
diff --git a/gnucash/report/report-system/test/test-extras.scm b/gnucash/report/report-system/test/test-extras.scm
index 0354e544f..210708381 100644
--- a/gnucash/report/report-system/test/test-extras.scm
+++ b/gnucash/report/report-system/test/test-extras.scm
@@ -61,14 +61,14 @@
render)))
(define (strip-string s1 s2)
- (let loop ((str s1))
+ (let loop ((str s1)
+ (res '()))
(let ((startpos (string-contains str (format #f "<~a" s2)))
(endpos (string-contains str (format #f "</~a>" s2))))
(if (and startpos endpos)
- (loop (string-append
- (string-take str startpos)
- (string-drop str (+ endpos (string-length s2) 3))))
- str))))
+ (loop (substring str (+ endpos (string-length s2) 3))
+ (cons (substring str 0 startpos) res))
+ (string-concatenate-reverse (cons str res))))))
(export gnc:options->sxml)
(define* (gnc:options->sxml uuid options prefix test-title #:key strip-tag)
commit b05c57a948cac6c665c6134ccf03335f3135900e
Author: Christopher Lam <christopher.lck at gmail.com>
Date: Sat Sep 7 19:36:34 2019 +0800
[html-acct-table] compact functions
diff --git a/gnucash/report/report-system/html-acct-table.scm b/gnucash/report/report-system/html-acct-table.scm
index 8d49f32c4..c0fff8db3 100644
--- a/gnucash/report/report-system/html-acct-table.scm
+++ b/gnucash/report/report-system/html-acct-table.scm
@@ -495,6 +495,7 @@
;; user. This class simply maps its contents to the html-table.
;;
+(use-modules (srfi srfi-2))
(use-modules (srfi srfi-9))
;; this is to work around a bug in the HTML export sytmem
@@ -554,39 +555,28 @@
;; helper for fetching values from the key/val environment alist
(define (get-val alist key)
(let ((lst (assoc-ref alist key)))
- (if lst (car lst) lst)))
-
-
+ (and lst (car lst))))
;; helper to plop <env> in the next available env cell
(define (add-row env)
(let* ((html-table (gnc:_html-acct-table-matrix_ acct-table))
(row (gnc:html-table-num-rows html-table)))
- (gnc:html-table-set-cell!
- html-table
- row
- 0
- env)
- row
- )
- )
+ (gnc:html-table-set-cell! html-table row 0 env)
+ row))
;; Add more stuff to an existing row
(define (append-to-row row env)
(gnc:html-acct-table-set-row-env! acct-table row
(append (gnc:html-acct-table-get-row-env acct-table row) env)))
-
+
(let* ((env (gnc:_html-acct-table-env_ acct-table))
;; establish all input parameters and their defaults
(depth-limit (let ((lim (get-val env 'display-tree-depth)))
- (if (or (equal? lim 'unlimited)
- (equal? lim 'all))
- #f ;; BUG? other code expects integer here
- lim)))
+ (and (number? lim) lim)))
(limit-behavior (or (get-val env 'depth-limit-behavior) 'summarize))
(indent (or (get-val env 'initial-indent) 0))
(less-p (let ((pred (get-val env 'account-less-p)))
- (if (equal? pred #t) gnc:account-code-less-p pred)))
+ (if (eq? pred #t) gnc:account-code-less-p pred)))
(start-date (get-val env 'start-date))
(end-date (or (get-val env 'end-date)
(gnc:get-today)))
@@ -594,18 +584,15 @@
(gnc-default-report-currency)))
;; BUG: other code expects a real function here, maybe
;; someone was thinking price-source?
- (exchange-fn (or (get-val env 'exchange-fn)
- #f))
- (get-balance-fn (or (get-val env 'get-balance-fn) #f))
+ (exchange-fn (get-val env 'exchange-fn))
+ (get-balance-fn (get-val env 'get-balance-fn))
(column-header (let ((cell (get-val env 'column-header)))
- (if (equal? cell #t)
+ (if (eq? cell #t)
(gnc:make-html-table-cell "Account name")
cell)))
(subtotal-mode (get-val env 'parent-account-subtotal-mode))
(zero-mode (let ((mode (get-val env 'zero-balance-mode)))
- (or (if (equal? mode #t) 'show-leaf-acct mode)
- 'show-leaf-acct)
- ))
+ (if (boolean? mode) 'show-leaf-acct mode)))
(label-mode (or (get-val env 'account-label-mode) 'anchor))
(balance-mode (or (get-val env 'balance-mode) 'post-closing))
(closing-pattern (or (get-val env 'closing-pattern)
@@ -613,16 +600,12 @@
(list 'str (_ "Closing Entries"))
(list 'cased #f)
(list 'regexp #f)
- (list 'closing #t)
- )
- ))
+ (list 'closing #t))))
(adjusting-pattern (or (get-val env 'adjusting-pattern)
(list
(list 'str (_ "Adjusting Entries"))
(list 'cased #f)
- (list 'regexp #f)
- )
- ))
+ (list 'regexp #f))))
(report-budget (or (get-val env 'report-budget) #f))
;; local variables
(toplvl-accts
@@ -637,19 +620,15 @@
;; helper to calculate the balances for all required accounts
(define (calculate-balances accts start-date end-date get-balance-fn)
- (define (calculate-balances-helper accts start-date end-date acct-balances)
- (if (not (null? accts))
- (begin
- ;; using the existing function that cares about balance-mode
- ;; maybe this should get replaces at some point.
- (hash-set! acct-balances (gncAccountGetGUID (car accts))
- (get-balance-fn (car accts) start-date end-date))
- (calculate-balances-helper (cdr accts) start-date end-date acct-balances)
- )
- acct-balances)
- )
+ (define ret-hash (make-hash-table))
+ (define (calculate-balances-helper)
+ (for-each
+ (lambda (acct)
+ (hash-set! ret-hash (gncAccountGetGUID acct)
+ (get-balance-fn acct start-date end-date)))
+ accts))
- (define (calculate-balances-simple accts start-date end-date hash-table)
+ (define (calculate-balances-simple)
(define (merge-splits splits subtract?)
(for-each
(lambda (split)
@@ -657,101 +636,72 @@
(guid (gncAccountGetGUID acct))
(acct-comm (xaccAccountGetCommodity acct))
(shares (xaccSplitGetAmount split))
- (hash (hash-ref hash-table guid)))
- (if (not hash)
- (begin (set! hash (gnc:make-commodity-collector))
- (hash-set! hash-table guid hash)))
- (hash 'add acct-comm (if subtract?
- (gnc-numeric-neg shares)
- shares))))
+ (hash (hash-ref ret-hash guid)))
+ (unless hash
+ (set! hash (gnc:make-commodity-collector))
+ (hash-set! ret-hash guid hash))
+ (hash 'add acct-comm (if subtract? (- shares) shares))))
splits))
- ;; If you pass a null account list to gnc:account-get-trans-type-splits-interval
- ;; it returns splits from all accounts rather than from no accounts. This is
- ;; probably a bug but we'll work around it for now.
- (if (not (null? accts))
- (begin
- (merge-splits (gnc:account-get-trans-type-splits-interval
- accts #f start-date end-date)
- #f)
- (cond
- ((equal? balance-mode 'post-closing) #t)
-
- ((equal? balance-mode 'pre-closing)
- (merge-splits (gnc:account-get-trans-type-splits-interval
- accts closing-pattern start-date end-date)
- #t))
-
- ((equal? balance-mode 'pre-adjusting)
- (merge-splits (gnc:account-get-trans-type-splits-interval
- accts closing-pattern start-date end-date)
- #t)
- (merge-splits (gnc:account-get-trans-type-splits-interval
- accts adjusting-pattern start-date end-date)
- #t))
- (else (begin (display "you fail it")
- (newline))))))
- hash-table
- )
+ (merge-splits (gnc:account-get-trans-type-splits-interval
+ accts #f start-date end-date)
+ #f)
+
+ (case balance-mode
+ ((post-closing) #f)
+
+ ;; remove closing entries
+ ((pre-closing)
+ (merge-splits (gnc:account-get-trans-type-splits-interval
+ accts closing-pattern start-date end-date) #t))
+
+ ;; remove closing and adjusting entries
+ ((pre-adjusting)
+ (merge-splits (gnc:account-get-trans-type-splits-interval
+ accts closing-pattern start-date end-date) #t)
+ (merge-splits (gnc:account-get-trans-type-splits-interval
+ accts adjusting-pattern start-date end-date) #t))
+
+ (else
+ (display "you fail it\n"))))
(if get-balance-fn
- (calculate-balances-helper accts start-date end-date
- (make-hash-table 23))
- (calculate-balances-simple accts start-date end-date
- (make-hash-table 23))
- )
- )
+ (calculate-balances-helper)
+ (calculate-balances-simple))
+ ret-hash)
(define (traverse-accounts! accts acct-depth logi-depth new-balances)
-
+
(define (use-acct? acct)
;; BUG? when depth-limit is not integer but boolean?
- (and (or (equal? limit-behavior 'flatten) (< logi-depth depth-limit))
- (member acct accounts)
- )
- )
+ (and (or (eq? limit-behavior 'flatten)
+ (< logi-depth depth-limit))
+ (member acct accounts)))
;; helper function to return a cached balance from a list of
;; ( acct . balance ) cells
(define (get-balance acct-balances acct)
- (let ((this-collector (gnc:make-commodity-collector)))
- (this-collector
- 'merge
- (or (hash-ref acct-balances (gncAccountGetGUID acct))
- ;; return a zero commodity collector
- (gnc:make-commodity-collector))
- #f)
- this-collector
- )
- )
+ (let ((this-collector (gnc:make-commodity-collector))
+ (acct-coll (hash-ref acct-balances (gncAccountGetGUID acct)
+ (gnc:make-commodity-collector))))
+ (this-collector 'merge acct-coll #f)
+ this-collector))
-
- ;; helper function that returns a cached balance from a list of
- ;; ( acct . balance ) cells for the given account *and* its
+ ;; helper function that returns a cached balance from a list of
+ ;; ( acct . balance) cells for the given account *and* its
;; sub-accounts.
(define (get-balance-sub acct-balances account)
- ;; its important to make a *new* collector for this, otherwise we're dealing with
- ;; pointers to the current collectors in our acct-balances hash and that's a
- ;; problem -- the balances get changed.
- (let ((this-collector (gnc:make-commodity-collector)))
- ;; get the balance of the parent account and stick it on the collector
- ;; that nice shiny *NEW* collector!!
- (this-collector 'merge (get-balance acct-balances account) #f)
- (for-each
- (lambda (x) (if x (this-collector 'merge x #f)))
- (gnc:account-map-descendants
- (lambda (a)
- (get-balance acct-balances a ))
- account))
+ (let ((this-collector (gnc:make-commodity-collector)))
+ (for-each
+ (lambda (acct)
+ (this-collector 'merge (get-balance acct-balances acct) #f))
+ (gnc:accounts-and-all-descendants (list account)))
this-collector))
-
-
- (let ((disp-depth
- (if (integer? depth-limit)
- (min (- depth-limit 1) logi-depth)
- logi-depth))
- (row-added? #f)
- )
+
+ (let ((disp-depth (if (integer? depth-limit)
+ (min (- depth-limit 1) logi-depth)
+ logi-depth))
+ (row-added? #f))
(for-each
(lambda (acct)
@@ -816,11 +766,9 @@
(list 'exchange-fn exchange-fn)
)))
(row-env #f)
- (label (or (and (equal? label-mode 'anchor)
- account-anchor)
- (and (equal? label-mode 'name)
- (gnc:make-html-text account-name))
- ))
+ (label (case label-mode
+ ((anchor) account-anchor)
+ ((name) (gnc:make-html-text account-name))))
(row #f)
(children-displayed? #f)
)
@@ -1201,38 +1149,32 @@
((not (null? children)) parent-acct-bal-mode)
(else 'immediate-bal)))
- (comm-amt
- (get-val env (assq-ref '((immediate-bal . account-bal)
- (recursive-bal . recursive-bal)
- (omit-bal . #f))
- bal-method)))
- (amt (and comm-amt
- (if (gnc-reverse-balance acct)
- (gnc:commodity-collector-get-negated comm-amt)
- comm-amt)))
-
(zero-mode (let ((mode (get-val env 'zero-balance-display-mode)))
(if (boolean? mode)
'show-balance
mode)))
- (native-comm?
- (lambda (amt)
- (gnc:uniform-commodity? amt report-commodity)))
+ (amt (and-let* ((bal-syms '((immediate-bal . account-bal)
+ (recursive-bal . recursive-bal)
+ (omit-bal . #f)))
+ (bal-sym (assq-ref bal-syms bal-method))
+ (comm-amt (get-val env bal-sym)))
+ (cond
+ ((and (eq? zero-mode 'omit-balance)
+ (gnc-commodity-collector-allzero? comm-amt)) #f)
+ ((gnc-reverse-balance acct)
+ (gnc:commodity-collector-get-negated comm-amt))
+ (else comm-amt))))
- ;; amount is either a <gnc:monetary> or #f
- (amount (and amt
- (not (and (eq? zero-mode 'omit-balance)
- (gnc-commodity-collector-allzero? amt)))
- (cond
- ((and (not (native-comm? amt))
- (eq? multicommodity-mode 'table)
- (eq? row-type 'account-row))
- (gnc-commodity-table
- amt report-commodity exchange-fn))
- (else
- (gnc:sum-collector-commodity
- amt report-commodity exchange-fn)))))
+ (amount
+ (cond
+ ((not amt) #f)
+ ((and (not (gnc:uniform-commodity? amt report-commodity))
+ (eq? multicommodity-mode 'table)
+ (eq? row-type 'account-row))
+ (gnc-commodity-table amt report-commodity exchange-fn))
+ (else
+ (gnc:sum-collector-commodity amt report-commodity exchange-fn))))
(indented-depth (get-val env 'indented-depth))
(account-colspan (get-val env 'account-colspan))
commit d3f86d2adf8a3a3b8358bcf446ba6b18a56815a1
Merge: fa4fc551a a91b3ff45
Author: Frank H. Ellenberger <frank.h.ellenberger at gmail.com>
Date: Tue Sep 10 02:49:36 2019 +0200
Merge branch 'PR579' into maint
commit a91b3ff4535f9f8e02397f328fe9f426d26551bf
Author: Frank H. Ellenberger <frank.h.ellenberger at gmail.com>
Date: Tue Sep 10 02:47:02 2019 +0200
PR #579: update Project-Id-Version of he.po
5358 translated messages.
diff --git a/po/he.po b/po/he.po
index 0220ddcba..71b90b4ed 100644
--- a/po/he.po
+++ b/po/he.po
@@ -5,7 +5,7 @@
# CURRENT AUTHOR: Avi Markovitz <avi.markovitz at gmail.com, 2019
msgid ""
msgstr ""
-"Project-Id-Version: GnuCash 3.6\n"
+"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: 2019-09-09 12:04+0300\n"
commit fa4fc551afa7cb788af717c237d862fe26bd29c7
Author: Frank H. Ellenberger <frank.h.ellenberger at gmail.com>
Date: Mon Sep 9 23:27:30 2019 +0200
Remove obsolete "disambiguation prefix" translator comments
https://lists.gnucash.org/pipermail/gnucash-devel/2019-September/044199.html
Continuation of commit d30fe7a
diff --git a/gnucash/gnome-search/dialog-search.c b/gnucash/gnome-search/dialog-search.c
index a77099dfe..1d90e74f6 100644
--- a/gnucash/gnome-search/dialog-search.c
+++ b/gnucash/gnome-search/dialog-search.c
@@ -1094,8 +1094,7 @@ type_label_to_new_button(const gchar* type_label)
else
{
PWARN("No translatable new-button label found for search type \"%s\", please add one into dialog-search.c!", type_label);
- /* Translators: This string has a disambiguation prefix. Translate only the part behind '|' */
- return Q_("Item represents an unknown object type (in the sense of bill, customer, invoice, transaction, split,...)|New item");
+ return C_("Item represents an unknown object type (in the sense of bill, customer, invoice, transaction, split,...)!", "New item");
}
}
diff --git a/gnucash/gnome-utils/gnc-tree-model-split-reg.c b/gnucash/gnome-utils/gnc-tree-model-split-reg.c
index 3b224e1be..de5020575 100644
--- a/gnucash/gnome-utils/gnc-tree-model-split-reg.c
+++ b/gnucash/gnome-utils/gnc-tree-model-split-reg.c
@@ -2851,9 +2851,7 @@ gnc_tree_model_split_reg_update_action_list (GncTreeModelSplitReg *model)
/* broken ! FIXME bg ????????? What is broken */
case SEARCH_LEDGER2:
- /* Translators: This string has a context prefix; the translation
- must only contain the part after the | character. */
- gtk_list_store_insert_with_values (store, &iter, 100, 0, Q_("Action Column|Deposit"), -1);
+ gtk_list_store_insert_with_values (store, &iter, 100, 0, C_("Action Column", "Deposit"), -1);
gtk_list_store_insert_with_values (store, &iter, 100, 0, _("Withdraw"), -1);
gtk_list_store_insert_with_values (store, &iter, 100, 0, _("Check"), -1);
gtk_list_store_insert_with_values (store, &iter, 100, 0, _("Interest"), -1);
@@ -2952,8 +2950,7 @@ gnc_tree_model_split_reg_update_action_list (GncTreeModelSplitReg *model)
gtk_list_store_insert_with_values (store, &iter, 100, 0, _("Income"), -1);
/* Action: Distribution */
gtk_list_store_insert_with_values (store, &iter, 100, 0, _("Dist"), -1);
- /* Translators: This string has a disambiguation prefix */
- gtk_list_store_insert_with_values (store, &iter, 100, 0, Q_("Action Column|Split"), -1);
+ gtk_list_store_insert_with_values (store, &iter, 100, 0, C_("Action Column", "Split"), -1);
break;
default:
diff --git a/gnucash/gnome-utils/gnc-tree-view-commodity.c b/gnucash/gnome-utils/gnc-tree-view-commodity.c
index 9b34f43ca..46dc23fa6 100644
--- a/gnucash/gnome-utils/gnc-tree-view-commodity.c
+++ b/gnucash/gnome-utils/gnc-tree-view-commodity.c
@@ -404,9 +404,7 @@ gnc_tree_view_commodity_new (QofBook *book,
g_object_set_data(G_OBJECT(col), DEFAULT_VISIBLE, GINT_TO_POINTER(1));
gnc_tree_view_add_toggle_column(
view, _("Get Quotes"),
- /* Translators: This string has a context prefix; the translation
- must only contain the part after the | character. */
- Q_("Column letter for 'Get Quotes'|Q"), "quote_flag",
+ C_("Column letter for 'Get Quotes'", "Q"), "quote_flag",
GNC_TREE_MODEL_COMMODITY_COL_QUOTE_FLAG,
GNC_TREE_MODEL_COMMODITY_COL_VISIBILITY,
sort_by_quote_flag,
diff --git a/gnucash/gnome-utils/gnc-tree-view-owner.c b/gnucash/gnome-utils/gnc-tree-view-owner.c
index 8d6e802ae..8c5c6e8bb 100644
--- a/gnucash/gnome-utils/gnc-tree-view-owner.c
+++ b/gnucash/gnome-utils/gnc-tree-view-owner.c
@@ -476,9 +476,7 @@ gnc_tree_view_owner_new (GncOwnerType owner_type)
GNC_TREE_VIEW_COLUMN_VISIBLE_ALWAYS,
sort_by_string);
gnc_tree_view_add_toggle_column (view, _("Active"),
- /* Translators: This string has a context prefix; the translation
- must only contain the part after the | character. */
- Q_("Column letter for 'Active'|A"),
+ C_("Column letter for 'Active'", "A"),
GNC_OWNER_TREE_ACTIVE_COL,
GNC_TREE_MODEL_OWNER_COL_ACTIVE,
GNC_TREE_VIEW_COLUMN_VISIBLE_ALWAYS,
diff --git a/gnucash/gnome-utils/gnc-tree-view-sx-list.c b/gnucash/gnome-utils/gnc-tree-view-sx-list.c
index c48a5325d..32dc45ee4 100644
--- a/gnucash/gnome-utils/gnc-tree-view-sx-list.c
+++ b/gnucash/gnome-utils/gnc-tree-view-sx-list.c
@@ -138,9 +138,7 @@ gnc_tree_view_sx_list_new(GncSxInstanceModel *sx_instances)
g_object_set_data(G_OBJECT(col), DEFAULT_VISIBLE, GINT_TO_POINTER(1));
col = gnc_tree_view_add_toggle_column(view, _("Enabled"),
- /* Translators: This string has a context prefix; the translation
- must only contain the part after the | character. */
- Q_("Single-character short column-title form of 'Enabled'|E"),
+ C_("Single-character short column-title form of 'Enabled'", "E"),
"enabled", SXLTMA_COL_ENABLED,
GNC_TREE_VIEW_COLUMN_VISIBLE_ALWAYS,
NULL, NULL);
diff --git a/gnucash/gnome/assistant-stock-split.c b/gnucash/gnome/assistant-stock-split.c
index 77fb8b333..d02089f94 100644
--- a/gnucash/gnome/assistant-stock-split.c
+++ b/gnucash/gnome/assistant-stock-split.c
@@ -378,8 +378,8 @@ gnc_stock_split_assistant_finish (GtkAssistant *assistant,
xaccSplitMakeStockSplit (split);
/* Set split-action with gnc_set_num_action which is the same as
* xaccSplitSetAction with these arguments */
- /* Translators: This string has a disambiguation prefix */
- gnc_set_num_action (NULL, split, NULL, Q_("Action Column|Split"));
+
+ gnc_set_num_action (NULL, split, NULL, C_("Action Column", "Split"));
amount = gnc_amount_edit_get_amount (GNC_AMOUNT_EDIT (info->price_edit));
if (gnc_numeric_positive_p (amount))
diff --git a/gnucash/register/ledger-core/split-register.c b/gnucash/register/ledger-core/split-register.c
index a73ac9382..d65c09fa6 100644
--- a/gnucash/register/ledger-core/split-register.c
+++ b/gnucash/register/ledger-core/split-register.c
@@ -2574,9 +2574,7 @@ gnc_split_register_config_action (SplitRegister *reg)
case BANK_REGISTER:
/* broken ! FIXME bg */
case SEARCH_LEDGER:
- /* Translators: This string has a context prefix; the translation
- must only contain the part after the | character. */
- gnc_combo_cell_add_menu_item (cell, Q_("Action Column|Deposit"));
+ gnc_combo_cell_add_menu_item (cell, C_("Action Column", "Deposit"));
gnc_combo_cell_add_menu_item (cell, _("Withdraw"));
gnc_combo_cell_add_menu_item (cell, _("Check"));
gnc_combo_cell_add_menu_item (cell, _("Interest"));
@@ -2675,8 +2673,7 @@ gnc_split_register_config_action (SplitRegister *reg)
gnc_combo_cell_add_menu_item (cell, _("Income"));
/* Action: Distribution */
gnc_combo_cell_add_menu_item (cell, _("Dist"));
- /* Translators: This string has a disambiguation prefix */
- gnc_combo_cell_add_menu_item (cell, Q_("Action Column|Split"));
+ gnc_combo_cell_add_menu_item (cell, C_("Action Column", "Split"));
break;
default:
diff --git a/libgnucash/engine/Split.c b/libgnucash/engine/Split.c
index ddafd2574..335db848c 100644
--- a/libgnucash/engine/Split.c
+++ b/libgnucash/engine/Split.c
@@ -1609,8 +1609,7 @@ xaccSplitGetCorrAccountCode(const Split *sa)
if (!get_corr_account_split(sa, &other_split))
{
if (!split_const)
- /* Translators: This string has a disambiguation prefix */
- split_const = Q_("Displayed account code of the other account in a multi-split transaction|Split");
+ split_const = C_("Displayed account code of the other account in a multi-split transaction", "Split");
return split_const;
}
commit e6e2258a74b843bec159e5a6edb8a41baff80a31
Author: John Ralls <jralls at ceridwen.us>
Date: Mon Sep 9 14:44:10 2019 -0700
Bug 797356 - ninja check fails with GCC-9
diff --git a/gnucash/gnome-utils/gnc-date-edit.c b/gnucash/gnome-utils/gnc-date-edit.c
index 547c121b6..a7539e7f9 100644
--- a/gnucash/gnome-utils/gnc-date-edit.c
+++ b/gnucash/gnome-utils/gnc-date-edit.c
@@ -558,13 +558,13 @@ fill_time_combo (GtkWidget *widget, GNCDateEdit *gde)
static void
gnc_date_edit_set_time_internal (GNCDateEdit *gde, time64 the_time)
{
- char buffer [40];
+ char buffer [MAX_DATE_LENGTH + 1];
struct tm *mytm = gnc_localtime (&the_time);
g_return_if_fail(mytm != NULL);
/* Update the date text. */
- qof_print_date_dmy_buff(buffer, 40,
+ qof_print_date_dmy_buff(buffer, MAX_DATE_LENGTH,
mytm->tm_mday,
mytm->tm_mon + 1,
1900 + mytm->tm_year);
diff --git a/gnucash/gnome-utils/gnc-period-select.c b/gnucash/gnome-utils/gnc-period-select.c
index fe27a54f5..31fdb8b4d 100644
--- a/gnucash/gnome-utils/gnc-period-select.c
+++ b/gnucash/gnome-utils/gnc-period-select.c
@@ -139,7 +139,7 @@ static void
gnc_period_sample_update_date_label (GncPeriodSelect *period)
{
GncPeriodSelectPrivate *priv;
- gchar time_string[MAX_DATE_LENGTH];
+ gchar time_string[MAX_DATE_LENGTH + 1];
GDate *date;
GncAccountingPeriod which;
diff --git a/gnucash/gnome-utils/gnc-tree-model-price.c b/gnucash/gnome-utils/gnc-tree-model-price.c
index 600631583..79885f4e1 100644
--- a/gnucash/gnome-utils/gnc-tree-model-price.c
+++ b/gnucash/gnome-utils/gnc-tree-model-price.c
@@ -735,7 +735,7 @@ gnc_tree_model_price_get_value (GtkTreeModel *tree_model,
g_value_set_string (value, gnc_commodity_get_printname (commodity));
break;
case GNC_TREE_MODEL_PRICE_COL_DATE:
- qof_print_date_buff (datebuff, sizeof(datebuff),
+ qof_print_date_buff (datebuff, MAX_DATE_LENGTH,
gnc_price_get_time64 (price));
g_value_init (value, G_TYPE_STRING);
g_value_set_string (value, datebuff);
diff --git a/gnucash/gnome-utils/gnc-tree-model-split-reg.c b/gnucash/gnome-utils/gnc-tree-model-split-reg.c
index 05ecd8a8d..3b224e1be 100644
--- a/gnucash/gnome-utils/gnc-tree-model-split-reg.c
+++ b/gnucash/gnome-utils/gnc-tree-model-split-reg.c
@@ -850,7 +850,7 @@ gnc_tree_model_split_reg_get_tooltip (GncTreeModelSplitReg *model, gint position
else
{
time64 t = xaccTransRetDatePosted (trans);
- qof_print_date_buff (date_text, sizeof(date_text), t);
+ qof_print_date_buff (date_text, MAX_DATE_LENGTH, t);
desc_text = xaccTransGetDescription (trans);
model->current_trans = trans;
return g_strconcat (date_text, "\n", desc_text, NULL);
diff --git a/gnucash/gnome-utils/gnc-tree-view-split-reg.c b/gnucash/gnome-utils/gnc-tree-view-split-reg.c
index 3dec2f62c..b28e43c1b 100644
--- a/gnucash/gnome-utils/gnc-tree-view-split-reg.c
+++ b/gnucash/gnome-utils/gnc-tree-view-split-reg.c
@@ -1454,7 +1454,7 @@ gtv_sr_cdf0 (GtkTreeViewColumn *col, GtkCellRenderer *cell, GtkTreeModel *s_mode
//date on new transactions
if (t == 0)
t = gnc_time (NULL);
- qof_print_date_buff (datebuff, sizeof(datebuff), t);
+ qof_print_date_buff (datebuff, MAX_DATE_LENGTH, t);
editable = TRUE;
}
else if (is_trow2 && show_extra_dates) {
@@ -1465,7 +1465,7 @@ gtv_sr_cdf0 (GtkTreeViewColumn *col, GtkCellRenderer *cell, GtkTreeModel *s_mode
//date on new transactions
if (t == 0)
t = gnc_time (NULL);
- qof_print_date_buff (datebuff, sizeof(datebuff), t);
+ qof_print_date_buff (datebuff, MAX_DATE_LENGTH, t);
editable = FALSE;
}
else if (is_split && show_extra_dates) {
@@ -1473,7 +1473,7 @@ gtv_sr_cdf0 (GtkTreeViewColumn *col, GtkCellRenderer *cell, GtkTreeModel *s_mode
if (xaccSplitGetReconcile (split) == YREC)
{
time64 t = xaccSplitGetDateReconciled (split);
- qof_print_date_buff (datebuff, sizeof(datebuff), t);
+ qof_print_date_buff (datebuff, MAX_DATE_LENGTH, t);
}
editable = FALSE;
}
@@ -1484,7 +1484,7 @@ gtv_sr_cdf0 (GtkTreeViewColumn *col, GtkCellRenderer *cell, GtkTreeModel *s_mode
/* Is this a template */
if (is_template && is_trow1)
{
- strncpy (datebuff, _(" Scheduled "), sizeof(datebuff)-1);
+ strncpy (datebuff, _(" Scheduled "), MAX_DATE_LENGTH);
editable = FALSE;
}
else if (is_template && is_trow2 && show_extra_dates)
@@ -1514,7 +1514,7 @@ gtv_sr_cdf0 (GtkTreeViewColumn *col, GtkCellRenderer *cell, GtkTreeModel *s_mode
if (type == TXN_TYPE_INVOICE)
{
time64 t = xaccTransRetDateDue (trans);
- qof_print_date_buff (datebuff, sizeof(datebuff), t);
+ qof_print_date_buff (datebuff, MAX_DATE_LENGTH, t);
editable = FALSE;
}
else {
diff --git a/gnucash/gnome/dialog-price-edit-db.c b/gnucash/gnome/dialog-price-edit-db.c
index 3936e5e59..ef89a72e6 100644
--- a/gnucash/gnome/dialog-price-edit-db.c
+++ b/gnucash/gnome/dialog-price-edit-db.c
@@ -364,7 +364,7 @@ get_fiscal_end_date (void)
char datebuff[MAX_DATE_LENGTH + 1];
memset (datebuff, 0, sizeof(datebuff));
end = gnc_accounting_period_fiscal_end();
- qof_print_date_buff(datebuff, sizeof(datebuff),
+ qof_print_date_buff(datebuff, MAX_DATE_LENGTH,
gnc_accounting_period_fiscal_end());
PINFO("Fiscal end date is %s", datebuff);
diff --git a/gnucash/gnome/dialog-trans-assoc.c b/gnucash/gnome/dialog-trans-assoc.c
index 8d8f3b6f6..7c0fe0d20 100644
--- a/gnucash/gnome/dialog-trans-assoc.c
+++ b/gnucash/gnome/dialog-trans-assoc.c
@@ -422,7 +422,7 @@ get_trans_info (AssocDialog *assoc_dialog)
memset (datebuff, 0, sizeof(datebuff));
if (t == 0)
t = gnc_time (NULL);
- qof_print_date_buff (datebuff, sizeof(datebuff), t);
+ qof_print_date_buff (datebuff, MAX_DATE_LENGTH, t);
gtk_list_store_append (GTK_LIST_STORE(model), &iter);
if (!scheme) // path is relative
diff --git a/gnucash/gnome/gnc-budget-view.c b/gnucash/gnome/gnc-budget-view.c
index 3710196b3..615b91f39 100644
--- a/gnucash/gnome/gnc-budget-view.c
+++ b/gnucash/gnome/gnc-budget-view.c
@@ -1227,7 +1227,7 @@ gbv_refresh_col_titles(GncBudgetView *view)
GtkTreeViewColumn *col;
guint titlelen;
gint num_periods_visible;
- gchar title[MAX_DATE_LENGTH];
+ gchar title[MAX_DATE_LENGTH + 1];
GList *col_list;
gint i;
@@ -1420,7 +1420,7 @@ gnc_budget_view_refresh(GncBudgetView *view)
if (priv->total_col == NULL)
{
- gchar title[MAX_DATE_LENGTH];
+ gchar title[MAX_DATE_LENGTH + 1];
guint titlelen;
GDate *date;
GtkCellRenderer* renderer;
diff --git a/gnucash/import-export/csv-exp/csv-transactions-export.c b/gnucash/import-export/csv-exp/csv-transactions-export.c
index 7a1970e6b..4cc53ea85 100644
--- a/gnucash/import-export/csv-exp/csv-transactions-export.c
+++ b/gnucash/import-export/csv-exp/csv-transactions-export.c
@@ -151,7 +151,7 @@ add_reconcile_date (gchar *so_far, Split *split, CsvExportInfo *info)
time64 t = xaccSplitGetDateReconciled (split);
char str_rec_date[MAX_DATE_LENGTH + 1];
memset (str_rec_date, 0, sizeof(str_rec_date));
- qof_print_date_buff (str_rec_date, sizeof(str_rec_date), t);
+ qof_print_date_buff (str_rec_date, MAX_DATE_LENGTH, t);
result = g_strconcat (so_far, str_rec_date, info->mid_sep, NULL);
}
else
diff --git a/gnucash/import-export/csv-imp/gnc-imp-props-price.cpp b/gnucash/import-export/csv-imp/gnc-imp-props-price.cpp
index 0d794b005..0ef97d508 100644
--- a/gnucash/import-export/csv-imp/gnc-imp-props-price.cpp
+++ b/gnucash/import-export/csv-imp/gnc-imp-props-price.cpp
@@ -316,7 +316,7 @@ Result GncImportPrice::create_price (QofBook* book, GNCPriceDB *pdb, bool over)
char date_str [MAX_DATE_LENGTH + 1];
memset (date_str, 0, sizeof(date_str));
- qof_print_date_buff (date_str, sizeof(date_str), date);
+ qof_print_date_buff (date_str, MAX_DATE_LENGTH, date);
DEBUG("Date is %s, Commodity from is '%s', Currency is '%s', "
"Amount is %s", date_str,
gnc_commodity_get_fullname (*m_from_commodity),
diff --git a/gnucash/import-export/qif-imp/assistant-qif-import.c b/gnucash/import-export/qif-imp/assistant-qif-import.c
index ca5591d73..dca69116b 100644
--- a/gnucash/import-export/qif-imp/assistant-qif-import.c
+++ b/gnucash/import-export/qif-imp/assistant-qif-import.c
@@ -1186,7 +1186,7 @@ refresh_old_transactions (QIFImportWindow * wind, int selection)
}
gtk_list_store_append (store, &iter);
- qof_print_date_buff (datebuff, sizeof (datebuff),
+ qof_print_date_buff (datebuff, MAX_DATE_LENGTH,
xaccTransRetDatePosted (gnc_xtn));
gtk_list_store_set
(store, &iter,
@@ -3304,7 +3304,7 @@ gnc_ui_qif_import_duplicates_match_prepare (GtkAssistant *assistant,
gdouble amount_gd = 0;
time64 send_time = 0;
char datebuff [MAX_DATE_LENGTH + 1];
- memset (datebuff, 0, sizeof (datebuff));
+ memset (datebuff, 0, MAX_DATE_LENGTH);
current_xtn = SCM_CAAR(duplicates);
#define FUNC_NAME "xaccTransCountSplits"
gnc_xtn = SWIG_MustGetPtr (current_xtn,
@@ -3323,7 +3323,7 @@ gnc_ui_qif_import_duplicates_match_prepare (GtkAssistant *assistant,
}
gtk_list_store_append (store, &iter);
send_time = xaccTransRetDatePosted (gnc_xtn);
- qof_print_date_buff (datebuff, sizeof (datebuff), send_time);
+ qof_print_date_buff (datebuff, MAX_DATE_LENGTH, send_time);
gtk_list_store_set
(store, &iter,
QIF_TRANS_COL_INDEX, rownum++,
diff --git a/gnucash/register/ledger-core/split-register-model.c b/gnucash/register/ledger-core/split-register-model.c
index 59c5281d8..e7e0a870d 100644
--- a/gnucash/register/ledger-core/split-register-model.c
+++ b/gnucash/register/ledger-core/split-register-model.c
@@ -526,7 +526,7 @@ gnc_split_register_get_recn_tooltip (VirtualLocation virt_loc,
char datebuff[MAX_DATE_LENGTH + 1];
time64 time = xaccSplitGetDateReconciled (split);
memset (datebuff, 0, sizeof(datebuff));
- qof_print_date_buff (datebuff, sizeof(datebuff), time);
+ qof_print_date_buff (datebuff, MAX_DATE_LENGTH, time);
return g_strdup_printf (_("Reconciled on %s"), datebuff);
}
else if (xaccSplitGetReconcile (split) == VREC)
diff --git a/libgnucash/engine/Split.c b/libgnucash/engine/Split.c
index 7893b4cec..ddafd2574 100644
--- a/libgnucash/engine/Split.c
+++ b/libgnucash/engine/Split.c
@@ -656,7 +656,7 @@ xaccSplitDump (const Split *split, const char *tag)
{
char datebuff[MAX_DATE_LENGTH + 1];
memset (datebuff, 0, sizeof(datebuff));
- qof_print_date_buff (datebuff, sizeof(datebuff), split->date_reconciled);
+ qof_print_date_buff (datebuff, MAX_DATE_LENGTH, split->date_reconciled);
printf(" %s Split %p", tag, split);
printf(" Book: %p\n", qof_instance_get_book(split));
printf(" Account: %p (%s)\n", split->acc,
diff --git a/libgnucash/engine/Transaction.c b/libgnucash/engine/Transaction.c
index a83bc48be..927e64356 100644
--- a/libgnucash/engine/Transaction.c
+++ b/libgnucash/engine/Transaction.c
@@ -524,13 +524,14 @@ void
xaccTransDump (const Transaction *trans, const char *tag)
{
GList *node;
+ char datebuff[MAX_DATE_LENGTH + 1];
printf("%s Trans %p", tag, trans);
memset(datebuff, 0, sizeof(datebuff));
- qof_print_date_buff(datebuff, sizeof(datebuff), trans->date_entered);
+ qof_print_date_buff(datebuff, MAX_DATE_LENGTH, trans->date_entered);
printf(" Entered: %s\n", datebuff);
memset(datebuff, 0, sizeof(datebuff));
- qof_print_date_buff(datebuff, sizeof(datebuff), trans->date_posted);
+ qof_print_date_buff(datebuff, MAX_DATE_LENGTH, trans->date_posted);
printf(" Posted: %s\n", datebuff);
printf(" Num: %s\n", trans->num ? trans->num : "(null)");
printf(" Description: %s\n",
diff --git a/libgnucash/engine/gnc-date.cpp b/libgnucash/engine/gnc-date.cpp
index 48b3c062d..5cdf3a655 100644
--- a/libgnucash/engine/gnc-date.cpp
+++ b/libgnucash/engine/gnc-date.cpp
@@ -552,9 +552,10 @@ const gchar *qof_date_text_format_get_string(QofDateFormat df)
}
size_t
-qof_print_date_dmy_buff (char * buff, size_t len, int day, int month, int year)
+qof_print_date_dmy_buff (char * buff, const size_t len, int day, int month, int year)
{
if (!buff) return 0;
+
try
{
GncDate date(year, month, day);
@@ -577,9 +578,10 @@ qof_print_date_dmy_buff (char * buff, size_t len, int day, int month, int year)
}
size_t
-qof_print_date_buff (char * buff, size_t len, time64 t)
+qof_print_date_buff (char * buff, const size_t len, time64 t)
{
if (!buff) return 0;
+
try
{
GncDateTime gncdt(t);
@@ -614,7 +616,7 @@ qof_print_gdate( char *buf, size_t len, const GDate *gd )
char *
qof_print_date (time64 t)
{
- char buff[MAX_DATE_LENGTH];
+ char buff[MAX_DATE_LENGTH + 1];
memset (buff, 0, sizeof (buff));
qof_print_date_buff (buff, MAX_DATE_LENGTH, t);
return g_strdup (buff);
diff --git a/libgnucash/engine/test/test-gnc-date.c b/libgnucash/engine/test/test-gnc-date.c
index d4352f088..ab3795f4b 100644
--- a/libgnucash/engine/test/test-gnc-date.c
+++ b/libgnucash/engine/test/test-gnc-date.c
@@ -642,7 +642,7 @@ static void tm_set_dmy (struct tm *tm, gint year, gint month, gint mday)
static void
test_qof_print_date_dmy_buff (void)
{
- gchar buff[MAX_DATE_LENGTH], t_buff[MAX_DATE_LENGTH];
+ gchar buff[MAX_DATE_LENGTH + 1], t_buff[MAX_DATE_LENGTH + 1];
gchar *locale = g_strdup (setlocale (LC_TIME, NULL));
struct tm tm = { 0, 0, 0, 0, 0, 0, 0, 0, 0
#ifdef HAVE_STRUCT_TM_GMTOFF
@@ -652,47 +652,47 @@ test_qof_print_date_dmy_buff (void)
qof_date_format_set (QOF_DATE_FORMAT_UK);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_dmy_buff (buff, sizeof (buff), 23, 11, 1974), ==, strlen (buff));
+ g_assert_cmpint (qof_print_date_dmy_buff (buff, MAX_DATE_LENGTH, 23, 11, 1974), ==, strlen (buff));
g_assert_cmpstr (buff, ==, "23/11/1974");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_dmy_buff (buff, sizeof (buff), 2, 2, 1961), ==, strlen (buff));
+ g_assert_cmpint (qof_print_date_dmy_buff (buff, MAX_DATE_LENGTH, 2, 2, 1961), ==, strlen (buff));
g_assert_cmpstr (buff, ==, "02/02/1961");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_dmy_buff (buff, sizeof (buff), 16, 6, 2045), ==, strlen (buff));
+ g_assert_cmpint (qof_print_date_dmy_buff (buff, MAX_DATE_LENGTH, 16, 6, 2045), ==, strlen (buff));
g_assert_cmpstr (buff, ==, "16/06/2045");
qof_date_format_set (QOF_DATE_FORMAT_CE);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_dmy_buff (buff, sizeof (buff), 23, 11, 1974), ==, strlen (buff));
+ g_assert_cmpint (qof_print_date_dmy_buff (buff, MAX_DATE_LENGTH, 23, 11, 1974), ==, strlen (buff));
g_assert_cmpstr (buff, ==, "23.11.1974");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_dmy_buff (buff, sizeof (buff), 2, 2, 1961), ==, strlen (buff));
+ g_assert_cmpint (qof_print_date_dmy_buff (buff, MAX_DATE_LENGTH, 2, 2, 1961), ==, strlen (buff));
g_assert_cmpstr (buff, ==, "02.02.1961");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_dmy_buff (buff, sizeof (buff), 16, 6, 2045), ==, strlen (buff));
+ g_assert_cmpint (qof_print_date_dmy_buff (buff, MAX_DATE_LENGTH, 16, 6, 2045), ==, strlen (buff));
g_assert_cmpstr (buff, ==, "16.06.2045");
qof_date_format_set (QOF_DATE_FORMAT_US);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_dmy_buff (buff, sizeof (buff), 23, 11, 1974), ==, strlen (buff));
+ g_assert_cmpint (qof_print_date_dmy_buff (buff, MAX_DATE_LENGTH, 23, 11, 1974), ==, strlen (buff));
g_assert_cmpstr (buff, ==, "11/23/1974");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_dmy_buff (buff, sizeof (buff), 2, 2, 1961), ==, strlen (buff));
+ g_assert_cmpint (qof_print_date_dmy_buff (buff, MAX_DATE_LENGTH, 2, 2, 1961), ==, strlen (buff));
g_assert_cmpstr (buff, ==, "02/02/1961");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_dmy_buff (buff, sizeof (buff), 16, 6, 2045), ==, strlen (buff));
+ g_assert_cmpint (qof_print_date_dmy_buff (buff, MAX_DATE_LENGTH, 16, 6, 2045), ==, strlen (buff));
g_assert_cmpstr (buff, ==, "06/16/2045");
qof_date_format_set (QOF_DATE_FORMAT_ISO);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_dmy_buff (buff, sizeof (buff), 23, 11, 1974), ==, strlen (buff));
+ g_assert_cmpint (qof_print_date_dmy_buff (buff, MAX_DATE_LENGTH, 23, 11, 1974), ==, strlen (buff));
g_assert_cmpstr (buff, ==, "1974-11-23");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_dmy_buff (buff, sizeof (buff), 2, 2, 1961),
+ g_assert_cmpint (qof_print_date_dmy_buff (buff, MAX_DATE_LENGTH, 2, 2, 1961),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "1961-02-02");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_dmy_buff (buff, sizeof (buff), 16, 6, 2045),
+ g_assert_cmpint (qof_print_date_dmy_buff (buff, MAX_DATE_LENGTH, 16, 6, 2045),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "2045-06-16");
@@ -701,7 +701,7 @@ test_qof_print_date_dmy_buff (void)
tm_set_dmy (&tm, 1974, 11, 23);
strftime(t_buff, MAX_DATE_LENGTH, GNC_D_FMT, &tm);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_dmy_buff (buff, sizeof (buff), tm.tm_mday,
+ g_assert_cmpint (qof_print_date_dmy_buff (buff, MAX_DATE_LENGTH, tm.tm_mday,
tm.tm_mon + 1, tm.tm_year + 1900),
==, strlen (buff));
g_assert_cmpstr (buff, ==, t_buff);
@@ -710,7 +710,7 @@ test_qof_print_date_dmy_buff (void)
tm_set_dmy (&tm, 1961, 2, 2);
strftime(t_buff, MAX_DATE_LENGTH, GNC_D_FMT, &tm);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_dmy_buff (buff, sizeof (buff), tm.tm_mday,
+ g_assert_cmpint (qof_print_date_dmy_buff (buff, MAX_DATE_LENGTH, tm.tm_mday,
tm.tm_mon + 1, tm.tm_year + 1900),
==, strlen (buff));
g_assert_cmpstr (buff, ==, t_buff);
@@ -718,7 +718,7 @@ test_qof_print_date_dmy_buff (void)
tm_set_dmy (&tm, 2045, 6, 16);
strftime(t_buff, MAX_DATE_LENGTH, GNC_D_FMT, &tm);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_dmy_buff (buff, sizeof (buff), tm.tm_mday,
+ g_assert_cmpint (qof_print_date_dmy_buff (buff, MAX_DATE_LENGTH, tm.tm_mday,
tm.tm_mon + 1, tm.tm_year + 1900),
==, strlen (buff));
g_assert_cmpstr (buff, ==, t_buff);
@@ -727,22 +727,22 @@ test_qof_print_date_dmy_buff (void)
tm_set_dmy (&tm, 1974, 11, 23);
strftime(t_buff, MAX_DATE_LENGTH, GNC_D_FMT, &tm);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_dmy_buff (buff, sizeof (buff), tm.tm_mday,
+ g_assert_cmpint (qof_print_date_dmy_buff (buff, MAX_DATE_LENGTH, tm.tm_mday,
tm.tm_mon + 1, tm.tm_year + 1900),
==, strlen (buff));
g_assert_cmpstr (buff, ==, t_buff);
tm_set_dmy (&tm, 1961, 2, 2);
strftime(t_buff, MAX_DATE_LENGTH, GNC_D_FMT, &tm);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_dmy_buff (buff, sizeof (buff), tm.tm_mday,
+ g_assert_cmpint (qof_print_date_dmy_buff (buff, MAX_DATE_LENGTH, tm.tm_mday,
tm.tm_mon + 1, tm.tm_year + 1900),
==, strlen (buff));
g_assert_cmpstr (buff, ==, t_buff);
memset ((gpointer)buff, 0, sizeof (buff));
tm_set_dmy (&tm, 2045, 6, 16);
strftime(t_buff, MAX_DATE_LENGTH, GNC_D_FMT, &tm);
- memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_dmy_buff (buff, sizeof (buff), tm.tm_mday,
+ memset ((gpointer)buff, 0, MAX_DATE_LENGTH);
+ g_assert_cmpint (qof_print_date_dmy_buff (buff, MAX_DATE_LENGTH, tm.tm_mday,
tm.tm_mon + 1, tm.tm_year + 1900),
==, strlen (buff));
g_assert_cmpstr (buff, ==, t_buff);
@@ -751,14 +751,14 @@ test_qof_print_date_dmy_buff (void)
tm_set_dmy (&tm, 1974, 11, 23);
strftime(t_buff, MAX_DATE_LENGTH, GNC_D_FMT, &tm);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_dmy_buff (buff, sizeof (buff), tm.tm_mday,
+ g_assert_cmpint (qof_print_date_dmy_buff (buff, MAX_DATE_LENGTH, tm.tm_mday,
tm.tm_mon + 1, tm.tm_year + 1900),
==, strlen (buff));
g_assert_cmpstr (buff, ==, t_buff);
tm_set_dmy (&tm, 1961, 2, 2);
strftime(t_buff, MAX_DATE_LENGTH, GNC_D_FMT, &tm);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_dmy_buff (buff, sizeof (buff), tm.tm_mday,
+ g_assert_cmpint (qof_print_date_dmy_buff (buff, MAX_DATE_LENGTH, tm.tm_mday,
tm.tm_mon + 1, tm.tm_year + 1900),
==, strlen (buff));
g_assert_cmpstr (buff, ==, t_buff);
@@ -766,7 +766,7 @@ test_qof_print_date_dmy_buff (void)
tm_set_dmy (&tm, 2045, 6, 16);
strftime(t_buff, MAX_DATE_LENGTH, GNC_D_FMT, &tm);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_dmy_buff (buff, sizeof (buff), tm.tm_mday,
+ g_assert_cmpint (qof_print_date_dmy_buff (buff, MAX_DATE_LENGTH, tm.tm_mday,
tm.tm_mon + 1, tm.tm_year + 1900),
==, strlen (buff));
g_assert_cmpstr (buff, ==, t_buff);
@@ -787,7 +787,7 @@ test_qof_print_date_dmy_buff (void)
#define test_assert_localized_timestring(time, datestr) \
{ \
- gchar t_buff[MAX_DATE_LENGTH]; \
+ gchar t_buff[MAX_DATE_LENGTH + 1]; \
struct tm *ltime = gnc_localtime ((time64 *)(&time)); \
strftime (t_buff, sizeof (t_buff), GNC_D_FMT, ltime); \
gnc_tm_free (ltime); \
@@ -802,7 +802,7 @@ qof_print_date_buff (char * buff, size_t len, time64 t)// C: 3 in 1 Local: 2:0:
static void
test_qof_print_date_buff (void)
{
- gchar buff[MAX_DATE_LENGTH], ans[MAX_DATE_LENGTH];
+ gchar buff[MAX_DATE_LENGTH + 1], ans[MAX_DATE_LENGTH + 1];
gchar *locale = g_strdup (setlocale (LC_TIME, NULL));
struct tm tm1 = {0, 0, 12, 23, 10, 74};
@@ -814,110 +814,110 @@ test_qof_print_date_buff (void)
qof_date_format_set (QOF_DATE_FORMAT_UK);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_buff (buff, sizeof (buff), time1),
+ g_assert_cmpint (qof_print_date_buff (buff, MAX_DATE_LENGTH, time1),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "23/11/1974");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_buff (buff, sizeof (buff), time2),
+ g_assert_cmpint (qof_print_date_buff (buff, MAX_DATE_LENGTH, time2),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "02/02/1961");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_buff (buff, sizeof (buff), time3),
+ g_assert_cmpint (qof_print_date_buff (buff, MAX_DATE_LENGTH, time3),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "16/06/2045");
qof_date_format_set (QOF_DATE_FORMAT_CE);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_buff (buff, sizeof (buff), time1),
+ g_assert_cmpint (qof_print_date_buff (buff, MAX_DATE_LENGTH, time1),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "23.11.1974");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_buff (buff, sizeof (buff), time2),
+ g_assert_cmpint (qof_print_date_buff (buff, MAX_DATE_LENGTH, time2),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "02.02.1961");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_buff (buff, sizeof (buff), time3),
+ g_assert_cmpint (qof_print_date_buff (buff, MAX_DATE_LENGTH, time3),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "16.06.2045");
qof_date_format_set (QOF_DATE_FORMAT_US);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_buff (buff, sizeof (buff), time1),
+ g_assert_cmpint (qof_print_date_buff (buff, MAX_DATE_LENGTH, time1),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "11/23/1974");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_buff (buff, sizeof (buff), time2),
+ g_assert_cmpint (qof_print_date_buff (buff, MAX_DATE_LENGTH, time2),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "02/02/1961");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_buff (buff, sizeof (buff), time3),
+ g_assert_cmpint (qof_print_date_buff (buff, MAX_DATE_LENGTH, time3),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "06/16/2045");
qof_date_format_set (QOF_DATE_FORMAT_ISO);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_buff (buff, sizeof (buff), time1),
+ g_assert_cmpint (qof_print_date_buff (buff, MAX_DATE_LENGTH, time1),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "1974-11-23");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_buff (buff, sizeof (buff), time2),
+ g_assert_cmpint (qof_print_date_buff (buff, MAX_DATE_LENGTH, time2),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "1961-02-02");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_buff (buff, sizeof (buff), time3),
+ g_assert_cmpint (qof_print_date_buff (buff, MAX_DATE_LENGTH, time3),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "2045-06-16");
qof_date_format_set (QOF_DATE_FORMAT_LOCALE);
test_gnc_setlocale (LC_TIME, "en_US");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_buff (buff, sizeof (buff), time1),
+ g_assert_cmpint (qof_print_date_buff (buff, MAX_DATE_LENGTH, time1),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "11/23/1974");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_buff (buff, sizeof (buff), time2),
+ g_assert_cmpint (qof_print_date_buff (buff, MAX_DATE_LENGTH, time2),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "02/02/1961");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_buff (buff, sizeof (buff), time3),
+ g_assert_cmpint (qof_print_date_buff (buff, MAX_DATE_LENGTH, time3),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "06/16/2045");
test_gnc_setlocale (LC_TIME, "en_GB");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_buff (buff, sizeof (buff), time1),
+ g_assert_cmpint (qof_print_date_buff (buff, MAX_DATE_LENGTH, time1),
==, strlen (buff));
strftime(ans, MAX_DATE_LENGTH, GNC_D_FMT, &tm1);
g_assert_cmpstr (buff, ==, ans);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_buff (buff, sizeof (buff), time2),
+ g_assert_cmpint (qof_print_date_buff (buff, MAX_DATE_LENGTH, time2),
==, strlen (buff));
strftime(ans, MAX_DATE_LENGTH, GNC_D_FMT, &tm2);
g_assert_cmpstr (buff, ==, ans);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_buff (buff, sizeof (buff), time3),
+ g_assert_cmpint (qof_print_date_buff (buff, MAX_DATE_LENGTH, time3),
==, strlen (buff));
strftime(ans, MAX_DATE_LENGTH, GNC_D_FMT, &tm3);
g_assert_cmpstr (buff, ==, ans);
test_gnc_setlocale (LC_TIME, "fr_FR");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_buff (buff, sizeof (buff), time1),
+ g_assert_cmpint (qof_print_date_buff (buff, MAX_DATE_LENGTH, time1),
==, strlen (buff));
strftime(ans, MAX_DATE_LENGTH, GNC_D_FMT, &tm1);
g_assert_cmpstr (buff, ==, ans);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_buff (buff, sizeof (buff), time2),
+ g_assert_cmpint (qof_print_date_buff (buff, MAX_DATE_LENGTH, time2),
==, strlen (buff));
strftime(ans, MAX_DATE_LENGTH, GNC_D_FMT, &tm2);
g_assert_cmpstr (buff, ==, ans);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_date_buff (buff, sizeof (buff), time3),
+ g_assert_cmpint (qof_print_date_buff (buff, MAX_DATE_LENGTH, time3),
==, strlen (buff));
strftime(ans, MAX_DATE_LENGTH, GNC_D_FMT, &tm3);
g_assert_cmpstr (buff, ==, ans);
@@ -932,7 +932,7 @@ qof_print_gdate( char *buf, size_t len, const GDate *gd )// C: 6 in 5 Local: 0:
static void
test_qof_print_gdate (void)
{
- gchar buff[MAX_DATE_LENGTH], t_buff[MAX_DATE_LENGTH];
+ gchar buff[MAX_DATE_LENGTH + 1], t_buff[MAX_DATE_LENGTH + 1];
gchar *locale = g_strdup (setlocale (LC_TIME, NULL));
GDate *gd1 = g_date_new_dmy (23, 11, 1974);
GDate *gd2 = g_date_new_dmy (2, 2, 1961);
@@ -940,59 +940,59 @@ test_qof_print_gdate (void)
qof_date_format_set (QOF_DATE_FORMAT_UK);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_gdate (buff, sizeof (buff), gd1),
+ g_assert_cmpint (qof_print_gdate (buff, MAX_DATE_LENGTH, gd1),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "23/11/1974");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_gdate (buff, sizeof (buff), gd2),
+ g_assert_cmpint (qof_print_gdate (buff, MAX_DATE_LENGTH, gd2),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "02/02/1961");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_gdate (buff, sizeof (buff), gd3),
+ g_assert_cmpint (qof_print_gdate (buff, MAX_DATE_LENGTH, gd3),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "16/06/2045");
qof_date_format_set (QOF_DATE_FORMAT_CE);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_gdate (buff, sizeof (buff), gd1),
+ g_assert_cmpint (qof_print_gdate (buff, MAX_DATE_LENGTH, gd1),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "23.11.1974");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_gdate (buff, sizeof (buff), gd2),
+ g_assert_cmpint (qof_print_gdate (buff, MAX_DATE_LENGTH, gd2),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "02.02.1961");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_gdate (buff, sizeof (buff), gd3),
+ g_assert_cmpint (qof_print_gdate (buff, MAX_DATE_LENGTH, gd3),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "16.06.2045");
qof_date_format_set (QOF_DATE_FORMAT_US);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_gdate (buff, sizeof (buff), gd1),
+ g_assert_cmpint (qof_print_gdate (buff, MAX_DATE_LENGTH, gd1),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "11/23/1974");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_gdate (buff, sizeof (buff), gd2),
+ g_assert_cmpint (qof_print_gdate (buff, MAX_DATE_LENGTH, gd2),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "02/02/1961");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_gdate (buff, sizeof (buff), gd3),
+ g_assert_cmpint (qof_print_gdate (buff, MAX_DATE_LENGTH, gd3),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "06/16/2045");
qof_date_format_set (QOF_DATE_FORMAT_ISO);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_gdate (buff, sizeof (buff), gd1),
+ g_assert_cmpint (qof_print_gdate (buff, MAX_DATE_LENGTH, gd1),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "1974-11-23");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_gdate (buff, sizeof (buff), gd2),
+ g_assert_cmpint (qof_print_gdate (buff, MAX_DATE_LENGTH, gd2),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "1961-02-02");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_gdate (buff, sizeof (buff), gd3),
+ g_assert_cmpint (qof_print_gdate (buff, MAX_DATE_LENGTH, gd3),
==, strlen (buff));
g_assert_cmpstr (buff, ==, "2045-06-16");
@@ -1000,34 +1000,34 @@ test_qof_print_gdate (void)
qof_date_format_set (QOF_DATE_FORMAT_LOCALE);
test_gnc_setlocale (LC_TIME, "en_US");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_gdate (buff, sizeof (buff), gd1),
+ g_assert_cmpint (qof_print_gdate (buff, MAX_DATE_LENGTH, gd1),
==, strlen (buff));
g_date_strftime (t_buff, MAX_DATE_LENGTH, GNC_D_FMT, gd1);
g_assert_cmpstr (buff, ==, t_buff);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_gdate (buff, sizeof (buff), gd2),
+ g_assert_cmpint (qof_print_gdate (buff, MAX_DATE_LENGTH, gd2),
==, strlen (buff));
g_date_strftime (t_buff, MAX_DATE_LENGTH, GNC_D_FMT, gd2);
g_assert_cmpstr (buff, ==, t_buff);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_gdate (buff, sizeof (buff), gd3),
+ g_assert_cmpint (qof_print_gdate (buff, MAX_DATE_LENGTH, gd3),
==, strlen (buff));
g_date_strftime (t_buff, MAX_DATE_LENGTH, GNC_D_FMT, gd3);
g_assert_cmpstr (buff, ==, t_buff);
test_gnc_setlocale (LC_TIME, "en_GB");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_gdate (buff, sizeof (buff), gd1),
+ g_assert_cmpint (qof_print_gdate (buff, MAX_DATE_LENGTH, gd1),
==, strlen (buff));
g_date_strftime (t_buff, MAX_DATE_LENGTH, GNC_D_FMT, gd1);
g_assert_cmpstr (buff, ==, t_buff);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_gdate (buff, sizeof (buff), gd2),
+ g_assert_cmpint (qof_print_gdate (buff, MAX_DATE_LENGTH, gd2),
==, strlen (buff));
g_date_strftime (t_buff, MAX_DATE_LENGTH, GNC_D_FMT, gd2);
g_assert_cmpstr (buff, ==, t_buff);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_gdate (buff, sizeof (buff), gd3),
+ g_assert_cmpint (qof_print_gdate (buff, MAX_DATE_LENGTH, gd3),
==, strlen (buff));
g_date_strftime (t_buff, MAX_DATE_LENGTH, GNC_D_FMT, gd3);
g_assert_cmpstr (buff, ==, t_buff);
@@ -1035,17 +1035,17 @@ test_qof_print_gdate (void)
test_gnc_setlocale (LC_TIME, "fr_FR");
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_gdate (buff, sizeof (buff), gd1),
+ g_assert_cmpint (qof_print_gdate (buff, MAX_DATE_LENGTH, gd1),
==, strlen (buff));
g_date_strftime (t_buff, MAX_DATE_LENGTH, GNC_D_FMT, gd1);
g_assert_cmpstr (buff, ==, t_buff);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_gdate (buff, sizeof (buff), gd2),
+ g_assert_cmpint (qof_print_gdate (buff, MAX_DATE_LENGTH, gd2),
==, strlen (buff));
g_date_strftime (t_buff, MAX_DATE_LENGTH, GNC_D_FMT, gd2);
g_assert_cmpstr (buff, ==, t_buff);
memset ((gpointer)buff, 0, sizeof (buff));
- g_assert_cmpint (qof_print_gdate (buff, sizeof (buff), gd3),
+ g_assert_cmpint (qof_print_gdate (buff, MAX_DATE_LENGTH, gd3),
==, strlen (buff));
g_date_strftime (t_buff, MAX_DATE_LENGTH, GNC_D_FMT, gd3);
g_assert_cmpstr (buff, ==, t_buff);
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 61f879b4f..74f442854 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -157,6 +157,7 @@ gnucash/gnome-utils/gnc-main-window.c
gnucash/gnome-utils/gnc-menu-extensions.c
gnucash/gnome-utils/gnc-menu-extensions.scm
gnucash/gnome-utils/gncmod-gnome-utils.c
+gnucash/gnome-utils/gnc-option-wrapper.cpp
gnucash/gnome-utils/gnc-period-select.c
gnucash/gnome-utils/gnc-plugin.c
gnucash/gnome-utils/gnc-plugin-file-history.c
commit 4cd9f5a605e9e7e05ac7f4be3602bf742234dca0
Author: avma <avi.markovitz at gmail.com>
Date: Mon Sep 9 13:17:11 2019 +0300
Update he.po to v3.7
diff --git a/po/he.po b/po/he.po
index dec468a05..0220ddcba 100644
--- a/po/he.po
+++ b/po/he.po
@@ -8,8 +8,8 @@ msgstr ""
"Project-Id-Version: GnuCash 3.6\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2019-09-03 15:51+0300\n"
-"PO-Revision-Date: 2019-09-04 15:15+0300\n"
+"POT-Creation-Date: 2019-09-09 12:04+0300\n"
+"PO-Revision-Date: 2019-09-09 13:11+0300\n"
"Last-Translator: Avi Markovitz <avi.markovitz at gmail.com>\n"
"Language-Team: Hebrew\n"
"Language: he\n"
@@ -78,10 +78,11 @@ msgstr "××××× ××ת"
msgid "Western"
msgstr "×ער××"
-#: borrowed/goffice/go-charmap-sel.c:84 gnucash/gtkbuilder/assistant-loan.glade:1029
+#: borrowed/goffice/go-charmap-sel.c:84
+#: gnucash/gtkbuilder/assistant-loan.glade:1029
#: gnucash/gtkbuilder/dialog-account.glade:832
#: gnucash/report/standard-reports/account-piecharts.scm:529
-#: gnucash/report/standard-reports/category-barchart.scm:597
+#: gnucash/report/standard-reports/category-barchart.scm:595
msgid "Other"
msgstr "××ר"
@@ -441,28 +442,29 @@ msgstr "×××ר×× ×××§××× ×©× ×× ××§×ש ×ש ××××¢ ×××¢××. ×
#: doc/tip_of_the_day.list.c:4
msgid ""
-"The GnuCash developers are easy to contact. As well as several mailing lists, you "
-"can chat to them live on IRC! Join them on #gnucash at irc.gnome.org"
+"The GnuCash developers are easy to contact. As well as several mailing lists, "
+"you can chat to them live on IRC! Join them on #gnucash at irc.gnome.org"
msgstr ""
-"×§× ××צ×ר קשר ×¢× ×פת×× ×× ××§×ש. ×× ×סף ××ספר ×× ×××¢× ×©× ×¨×©×××ת ××××ר, × ××ª× ×צ'××× ×××ª× "
-"××××¤× ××§××× ×××צע×ת IRC! ×צ××¨×¤× ××××× ×- #gnucash ×- irc.gnome.org"
+"×§× ××צ×ר קשר ×¢× ×פת×× ×× ××§×ש. ×× ×סף ××ספר ×× ×××¢× ×©× ×¨×©×××ת ××××ר, × ××ª× ×צ'××× "
+"×××ª× ××××¤× ××§××× ×××צע×ת IRC! ×צ××¨×¤× ××××× ×- #gnucash ×- irc.gnome.org"
#: doc/tip_of_the_day.list.c:8
msgid ""
-"You can easily import your existing financial data from Quicken, MS Money or other "
-"programs that export QIF files or OFX files. In the File menu, click on the sub-"
-"menu Import and click on QIF or OFX file, respectively. Then, follow the "
-"instructions provided."
+"You can easily import your existing financial data from Quicken, MS Money or "
+"other programs that export QIF files or OFX files. In the File menu, click on "
+"the sub-menu Import and click on QIF or OFX file, respectively. Then, follow "
+"the instructions provided."
msgstr ""
-"× ××ª× ××§××ת ××××× ×ת ×× ×ª×× ×× ×פ×× × ×¡××× ××§××××× × ×××ס ××× ×× ,×§××××§×, ×× ×ª××× ××ת "
+"× ××ª× ××§××ת ××××× ×ת ×× ×ª×× ×× ×פ×× × ×¡××× ××§××××× × ×××ס ××× ××, ×§××××§×, ×× ×ª××× ××ת "
"××ר×ת ש×××××ת ××××¦× ×§××¦× QIF ×× OFX. ×תפר×× ×§×××¥, ×ש ×××§×ש ×¢× ×ª×¤×¨×× ×××©× × ×××× "
"××××§×ש ×¢× ×§×××¥ QIF ×× OFX, ××ת×××. ×××ר ×××, ×××ש×× ×¢× ×¤× ×××ר××ת ש×ס×פק×."
#: doc/tip_of_the_day.list.c:13
msgid ""
"If you are familiar with other financial programs such as Quicken, note that "
-"GnuCash uses accounts instead of categories to track income and expenses. For more "
-"information on income and expense accounts, please see the GnuCash online manual."
+"GnuCash uses accounts instead of categories to track income and expenses. For "
+"more information on income and expense accounts, please see the GnuCash online "
+"manual."
msgstr ""
"××××× ×ת××× ××ת פ×× × ×¡××ת ××ר×ת ×××× ×§××××§× ×××ר×ת ×××, ש××× ×× ×©×× ××§×ש ×שת×ש "
"××ש××× ×ת ×××§×× ××§×××ר××ת ×¢× ×× ×ª ××¢×§×× ××ר ××× ×¡×ת ×××צ××ת. ××§××ת ××××¢ × ×סף ×¢× "
@@ -471,90 +473,96 @@ msgstr ""
#: doc/tip_of_the_day.list.c:18
msgid ""
"It is possible to change which columns display in the Chart of Accounts. Just "
-"locate the triangle at the far right of the column headings, and click it to see "
-"the different columns available."
+"locate the triangle at the far right of the column headings, and click it to "
+"see the different columns available."
msgstr ""
-"× ××ª× ××©× ×ת ×ת ××¢××××ת ×××צ××ת ×תרש×× ×ש××× ×ת. פש×× ×ש ××תר ×ת ××ש××ש ××§×¦× ×××× × "
-"××¢×××× ×©× ××תר×ת ××¢××××ת, ×××§×©× ×¢× ××ש××ש × ××ª× ×ר××ת ×ת ××¢××××ת ××××× ×ת ×ש×× ×ת."
+"× ××ª× ××©× ×ת ×ת ××¢××××ת ×××צ××ת ×תרש×× ×ש××× ×ת. פש×× ×ש ××תר ×ת ××ש××ש ××§×¦× "
+"×××× × ××¢×××× ×©× ××תר×ת ××¢××××ת, ×××§×©× ×¢× ××ש××ש × ××ª× ×ר××ת ×ת ××¢××××ת ××××× ×ת "
+"×ש×× ×ת."
#: doc/tip_of_the_day.list.c:22
msgid ""
-"Click the right mouse button (control-click in Mac OS X) in the Accounts tab of the "
-"main window to bring up the account menu options. Within each register, clicking "
-"the right mouse button brings up the transaction menu options."
+"Click the right mouse button (control-click in Mac OS X) in the Accounts tab "
+"of the main window to bring up the account menu options. Within each register, "
+"clicking the right mouse button brings up the transaction menu options."
msgstr ""
-"××§×©× ×¢× ×××¦× ××¢××ר ×××× × (××§×©× ×¢× control ×-Mac OS X) ××××× ×ר×ש×, ××ש×× ×ת ×ש××× ×ת, "
-"××× ××צ×× ×ת ×פשר×××ת תפר×× ××ש×××. ×ת×× ×× ××¦× ××××, ××§×©× ×¢× ×××¦× ××¢××ר ×××× × ×ª×¢×× "
-"×ת ×פשר×××ת תפר×× ××ª× ××¢×."
+"××§×©× ×¢× ×××¦× ××¢××ר ×××× × (××§×©× ×¢× control ×-Mac OS X) ××××× ×ר×ש×, ××ש×× ×ת "
+"×ש××× ×ת, ××× ××צ×× ×ת ×פשר×××ת תפר×× ××ש×××. ×ת×× ×× ××¦× ××××, ××§×©× ×¢× ×××¦× "
+"××¢××ר ×××× × ×ª×¢×× ×ת ×פשר×××ת תפר×× ××ª× ××¢×."
#: doc/tip_of_the_day.list.c:27
msgid ""
-"Create new accounts by clicking the New button in the main window tool bar. This "
-"will bring up a dialog box where you can enter account details. For more "
-"information on choosing an account type or setting up a chart of accounts, please "
-"see the GnuCash online manual."
+"Create new accounts by clicking the New button in the main window tool bar. "
+"This will bring up a dialog box where you can enter account details. For more "
+"information on choosing an account type or setting up a chart of accounts, "
+"please see the GnuCash online manual."
msgstr ""
-"××צ×רת ×ש××× ×ת ××ש×× ×ש ×××§×ש ×¢× ×××¦× '××ש' ×סר×× ××××× ××××× ×ר×ש×. ×ת××ת ××-×ש×× "
-"שת××¦× × ××ª× ××××× ×ת פר×× ××ש×××. ×××××¢ × ×סף ××××ת ×××רת ס×× ×ש××× ×× ×××רת תרש×× "
-"תרש×× ×ש××× ×ת, × × ××¢××× ×××ר×× ×××§××× ×©× ×× ××§×ש."
+"××צ×רת ×ש××× ×ת ××ש×× ×ש ×××§×ש ×¢× ×××¦× '××ש' ×סר×× ××××× ××××× ×ר×ש×. ×ת××ת ××-"
+"×ש×× ×©×ª××¦× × ××ª× ××××× ×ת פר×× ××ש×××. ×××××¢ × ×סף ××××ת ×××רת ס×× ×ש××× ×× "
+"×××רת תרש×× ×ª×¨×©×× ×ש××× ×ת, × × ××¢××× ×××ר×× ×××§××× ×©× ×× ××§×ש."
#: doc/tip_of_the_day.list.c:33
msgid ""
-"To enter multiple-split transactions such as a paycheck with multiple deductions, "
-"click the Split button in the tool bar. Alternatively, in the View menu, you can "
-"choose the register style Auto-Split Ledger or Transaction Journal."
+"To enter multiple-split transactions such as a paycheck with multiple "
+"deductions, click the Split button in the tool bar. Alternatively, in the View "
+"menu, you can choose the register style Auto-Split Ledger or Transaction "
+"Journal."
msgstr ""
-"×¢× ×× ×ª ××××× ×ª× ××¢×ת ×ר×××ת-פ×צ××××, ×××× ×¤×§××ת ש×ר ×××××× ×ספר × ××××××, ×ש ×××§×ש ×¢× "
-"×××¦× 'פ×צ××' ×סר×× ×××××. ××××פ××, ×תפר×× ×ª×¦×××, × ××ª× ××××ר ס×× ×× ×ר×סת 'פ×צ×× "
-"×××××××' ×× '×××× ×ª× ××¢×ת'."
+"×¢× ×× ×ª ××××× ×ª× ××¢×ת ×ר×××ת-פ×צ××××, ×××× ×¤×§××ת ש×ר ×××××× ×ספר × ××××××, ×ש "
+"×××§×ש ×¢× ×××¦× 'פ×צ××' ×סר×× ×××××. ××××פ××, ×תפר×× ×ª×¦×××, × ××ª× ××××ר ס×× ×× "
+"×ר×סת 'פ×צ×× ×××××××' ×× '×××× ×ª× ××¢×ת'."
#: doc/tip_of_the_day.list.c:38
msgid ""
-"As you enter amounts in the register, you can use the GnuCash calculator to add, "
-"subtract, multiply and divide. Simply type the first value, then select '+', "
-"'-','*', or '/'. Type the second value and press Enter to record the calculated "
-"amount."
+"As you enter amounts in the register, you can use the GnuCash calculator to "
+"add, subtract, multiply and divide. Simply type the first value, then select "
+"'+', '-','*', or '/'. Type the second value and press Enter to record the "
+"calculated amount."
msgstr ""
-"×עת ××× ×ª ס××××× ×××××, × ××ª× ××שת×ש ×××ש××× ×× ××§×ש ××× ×××ר, ××סר, ×××פ×× ×××××§. ×× "
-"×©× ×רש ××× ×××§××× ×ת ××¢×¨× ×ר×ש××, ××××ר ××× ×××§××× ×¡××× '+', '-', '*', ×× '/'. "
-"×××§××× ×ת ××¢×¨× ××©× × ××××¥ ×¢× '×× ×ר' ××× ×רש×× ×ת ×ס××× ××××ש×."
+"×עת ××× ×ª ס××××× ×××××, × ××ª× ××שת×ש ×××ש××× ×× ××§×ש ××× ×××ר, ××סר, ×××פ×× "
+"×××××§. ×× ×©× ×רש ××× ×××§××× ×ת ××¢×¨× ×ר×ש××, ××××ר ××× ×××§××× ×¡××× '+', '-', "
+"'*', ×× '/'. ×××§××× ×ת ××¢×¨× ××©× × ××××¥ ×¢× '×× ×ר' ××× ×רש×× ×ת ×ס××× ××××ש×."
#: doc/tip_of_the_day.list.c:43
msgid ""
"Quick-fill makes it easy to enter common transactions. When you type the first "
-"letter(s) of a common transaction description, then press the Tab key, GnuCash will "
-"automatically complete the remainder of the transaction as it was last entered."
+"letter(s) of a common transaction description, then press the Tab key, GnuCash "
+"will automatically complete the remainder of the transaction as it was last "
+"entered."
msgstr ""
-"××××× ×××ר ××§× ×¢× ××× ×ª ×ª× ××¢×ת ××××ת. ×עת ××§××ת ×××ת ×ר×ש×× × ×©× ×ª×××ר ××ª× ××¢×, ×××§×©× "
-"×¢× ×××¦× ×'×××', ×× ××§×ש ×ש××× ××××¤× ××××××× ×ת ש×ר ××ª× ××¢× ××¤× ×©×××× × ××¤×¢× ×××ר×× ×."
+"××××× ×××ר ××§× ×¢× ××× ×ª ×ª× ××¢×ת ××××ת. ×עת ××§××ת ×××ת ×ר×ש×× × ×©× ×ª×××ר ××ª× ××¢×, "
+"×××§×©× ×¢× ×××¦× ×'×××', ×× ××§×ש ×ש××× ××××¤× ××××××× ×ת ש×ר ××ª× ××¢× ××¤× ×©×××× × ××¤×¢× "
+"×××ר×× ×."
#: doc/tip_of_the_day.list.c:48
msgid ""
"Type the first letter(s) of an existing account name in the Transfer register "
"column, and GnuCash will complete the name from your list of accounts. For "
-"subaccounts, type the first letter(s) of the parent account, followed by ':' and "
-"the first letter(s) of the subaccount (e.g. A:C for Assets:Cash.)"
+"subaccounts, type the first letter(s) of the parent account, followed by ':' "
+"and the first letter(s) of the subaccount (e.g. A:C for Assets:Cash.)"
msgstr ""
"××§××ת ×××ת ×ר×ש×× × ×©× ×©× ×ש××× ×§××× ××¢×××× ××××× ×××¢×ר×ת, ××× ××§×ש ×ש××× ×ת ××©× "
-"×רש××ת ××ש××× ×ת ××§×××××. ××ש××× ×ת ××©× ×, ×ש ×××§××× ×ת ×××ת ×ר×ש×× × ×©× ×ש××× ×××, "
-"×××ר×× ':' ××ת ×××ת ×ר×ש×× × ×©× ×ש××× ×××©× × (××××××, ר:× ×¢××ר ר××ש: ××××× ××.)"
+"×רש××ת ××ש××× ×ת ××§×××××. ××ש××× ×ת ××©× ×, ×ש ×××§××× ×ת ×××ת ×ר×ש×× × ×©× ×ש××× "
+"×××, ×××ר×× ':' ××ת ×××ת ×ר×ש×× × ×©× ×ש××× ×××©× × (××××××, ר:× ×¢××ר ר××ש: "
+"××××× ××.)"
#: doc/tip_of_the_day.list.c:54
msgid ""
-"Want to see all your subaccount transactions in one register? From the Accounts tab "
-"in the main window, highlight the parent account and select Edit -> Open "
-"Subaccounts from the menu."
+"Want to see all your subaccount transactions in one register? From the "
+"Accounts tab in the main window, highlight the parent account and select Edit -"
+"> Open Subaccounts from the menu."
msgstr ""
-"××¢×× ××× ×× ×ר××ת ×ת ×× ××ª× ××¢×ת ×ש××× ×××©× × ××××× ×××? ××ש×× ×ת ×ש××× ×ת ××××× ×ר×ש×, "
-"×ש ×ס×× ×ת ×ש××× ××× ××××רת ער×××-> פת×ת ×ש××× ×ת ××©× × ××תפר××."
+"××¢×× ××× ×× ×ר××ת ×ת ×× ××ª× ××¢×ת ×ש××× ×××©× × ××××× ×××? ××ש×× ×ת ×ש××× ×ת ××××× "
+"×ר×ש×, ×ש ×ס×× ×ת ×ש××× ××× ××××רת ער×××-> פת×ת ×ש××× ×ת ××©× × ××תפר××."
#: doc/tip_of_the_day.list.c:58
msgid ""
-"When entering dates, you can type '+' or '-' to increment or decrement the selected "
-"date. You can use '+' and '-' to increment and decrement check numbers as well."
+"When entering dates, you can type '+' or '-' to increment or decrement the "
+"selected date. You can use '+' and '-' to increment and decrement check "
+"numbers as well."
msgstr ""
-"××שר ×××× ×× ×ª×ר××, × ××ª× ××שת×ש ×××§×©× × '+' ×× '-' ×××× ××§×× ×× ××ס×× ×ת ×ת×ר××. "
-"××××ª× ×××¤× × ××ª× ×× ××§×× ×× ××ס×× ××¡×¤×¨× ×××××."
+"××שר ×××× ×× ×ª×ר××, × ××ª× ××שת×ש ×××§×©× × '+' ×× '-' ×××× ××§×× ×× ××ס×× ×ת "
+"×ת×ר××. ××××ª× ×××¤× × ××ª× ×× ××§×× ×× ××ס×× ××¡×¤×¨× ×××××."
#: doc/tip_of_the_day.list.c:62
msgid ""
@@ -568,116 +576,122 @@ msgid ""
"reconciled. You can also press Tab and Shift-Tab to move between deposits and "
"withdrawals."
msgstr ""
-"××××× ×ת×××, × ××ª× ×××§×ש ×¢× ×××¦× ×ר××× ××× ×ס×× ×ª× ××¢×ת ×××ת×××ת. × ××ª× ×× ×××§×ש ××× "
-"×- ש×פ×+××× ××× ××¢××ר ××× ×פק××ת ××ש×××ת."
+"××××× ×ת×××, × ××ª× ×××§×ש ×¢× ×××¦× ×ר××× ××× ×ס×× ×ª× ××¢×ת ×××ת×××ת. × ××ª× ×× ×××§×ש "
+"××× ×- ש×פ×+××× ××× ××¢××ר ××× ×פק××ת ××ש×××ת."
#: doc/tip_of_the_day.list.c:69
msgid ""
-"To transfer funds between accounts with different currencies, click on the Transfer "
-"button in the register toolbar, select the accounts, and the Currency Transfer "
-"options for entering the exchange rate or the other currency's amount will be "
-"available."
+"To transfer funds between accounts with different currencies, click on the "
+"Transfer button in the register toolbar, select the accounts, and the Currency "
+"Transfer options for entering the exchange rate or the other currency's amount "
+"will be available."
msgstr ""
"××× ×××¢××ר ×ספ×× ××× ×ש××× ×ת ××¢×× ××××¢×ת ש×× ××, ×ש ×××§×ש ×¢× ×××¦× '××¢×ר×' ×סר×× "
-"××××× ×××¦× ××××, ××××ר ×ש××× ×ת ××פשר×××ת ××¢×רת ×××××¢×ת, ×××××× ×ת שער ××××פ×× ×× ×ת "
-"×ס××× ×××××¢ ×××ר."
+"××××× ×××¦× ××××, ××××ר ×ש××× ×ת ××פשר×××ת ××¢×רת ×××××¢×ת, ×××××× ×ת שער ××××פ×× "
+"×× ×ת ×ס××× ×××××¢ ×××ר."
#: doc/tip_of_the_day.list.c:74
msgid ""
-"You can set the Security Editor screen to display the Quote Source of a security, "
-"which makes it easy to see which online sources your securities use. Click the "
-"triangle at the far right of the column headings to change the display."
+"You can set the Security Editor screen to display the Quote Source of a "
+"security, which makes it easy to see which online sources your securities use. "
+"Click the triangle at the far right of the column headings to change the "
+"display."
msgstr ""
-"× ××ª× ×××××ר ×ת ××¡× ×¢××¨× × ××ר×ת ××¢×¨× ×× ×©×צ×× ×ת ××§×ר ××××ר ×©× ×× ××ר, ××ר ×××פשר "
-"×ר××ת ××× ×××§×ר×ת ×××§××× ×× ××©×¢×¨× × ××ר×ת ×ער×. ×ש×× ×× ×××¦× × ××ª× ×××§×ש ×¢× ××ש××ש ××§×¦× "
-"×ש×××× ××¢×××× ×©× ××תר×ת ××¢××××ת."
+"× ××ª× ×××××ר ×ת ××¡× ×¢××¨× × ××ר×ת ××¢×¨× ×× ×©×צ×× ×ת ××§×ר ××××ר ×©× ×× ××ר, ××ר "
+"×××פשר ×ר××ת ××× ×××§×ר×ת ×××§××× ×× ××©×¢×¨× × ××ר×ת ×ער×. ×ש×× ×× ×××¦× × ××ª× ×××§×ש ×¢× "
+"××ש××ש ××§×¦× ×ש×××× ××¢×××× ×©× ××תר×ת ××¢××××ת."
#: doc/tip_of_the_day.list.c:79
msgid ""
-"You can pack multiple reports into a single window, providing all the financial "
-"information you want at a glance. To do so, use the Sample & Custom -> \"Custom "
-"Multicolumn Report\" report."
+"You can pack multiple reports into a single window, providing all the "
+"financial information you want at a glance. To do so, use the Sample & Custom -"
+"> \"Custom Multicolumn Report\" report."
msgstr ""
-"× ××ª× ××ר×× ×ספר ××××ת ×ת×× ×××× ×××× ××ספק ×ת ×× ×××××¢ ×פ×× × ×¡× ××××קש ×××× ××××£. "
-"××©× ××, ×ש ××××ר ××תפר××: ××××ת ->××××× ×××ת×× ××ש×ת-> '×× ×× ×× ×©×¨×©×ר ××××ת'."
+"× ××ª× ××ר×× ×ספר ××××ת ×ת×× ×××× ×××× ××ספק ×ת ×× ×××××¢ ×פ×× × ×¡× ××××קש ×××× "
+"××××£. ××©× ××, ×ש ××××ר ××תפר××: ××××ת ->××××× ×××ת×× ××ש×ת-> '×× ×× ×× ×©×¨×©×ר "
+"××××ת'."
#: doc/tip_of_the_day.list.c:84
msgid ""
-"Style Sheets affect how reports are displayed. Choose a style sheet for your report "
-"as a report option, and use the Edit -> Style Sheets menu to customize style sheets."
+"Style Sheets affect how reports are displayed. Choose a style sheet for your "
+"report as a report option, and use the Edit -> Style Sheets menu to customize "
+"style sheets."
msgstr ""
"×××××× ×ת ×ס×× ×× ×שפ××¢×× ×¢× ×××¤× ×צ×ת ×××××ת. × ××ª× ××××ר ×××××× ×¡×× ×× ×¢××ר ×××× "
-"××פשר×××ת ×××. ××ת××× ××ש×ת ×©× ×××××× ×ת ×ס×× ×× × × ××××ר ××תפר××: ער×××-> ×××××× ×ת "
-"ס×× ××."
+"××פשר×××ת ×××. ××ת××× ××ש×ת ×©× ×××××× ×ת ×ס×× ×× × × ××××ר ××תפר××: ער×××-> "
+"×××××× ×ת ס×× ××."
#: doc/tip_of_the_day.list.c:88
msgid ""
-"To raise the accounts menu in the transfer field of a register page, press the Menu "
-"key or the Ctrl-Down key combination."
+"To raise the accounts menu in the transfer field of a register page, press the "
+"Menu key or the Ctrl-Down key combination."
msgstr ""
-"×¢× ×× ×ª ××צ×× ×ת תפר×× ××ש××× ×ת ×ש×× ×××¢××¨× ×©× ×¢××× ×××××, ××§×©× ×¢× ×ª×¤×¨×× ×× ×¢× ×¦×ר××£ "
-"××קש×× Ctrl-Down."
+"×¢× ×× ×ª ××צ×× ×ת תפר×× ××ש××× ×ת ×ש×× ×××¢××¨× ×©× ×¢××× ×××××, ××§×©× ×¢× ×ª×¤×¨×× ×× ×¢× "
+"צ×ר××£ ××קש×× Ctrl-Down."
#: doc/tip_of_the_day.list.c:91
msgid ""
-"The scheduled transaction editor comes with a very flexible frequency configurator. "
-"Basic frequencies to schedule a transaction include daily, weekly and monthly. But "
-"more advanced schemes can be set up as well. Some examples:\n"
+"The scheduled transaction editor comes with a very flexible frequency "
+"configurator. Basic frequencies to schedule a transaction include daily, "
+"weekly and monthly. But more advanced schemes can be set up as well. Some "
+"examples:\n"
"\n"
"To schedule a transaction every three weeks, you can choose the weekly basic "
"frequency and then set 'Every 3 weeks'.\n"
"\n"
-"To schedule a transaction every year you can choose the monthly basic frequency and "
-"then set 'Every 12 months'."
+"To schedule a transaction every year you can choose the monthly basic "
+"frequency and then set 'Every 12 months'."
msgstr ""
-"×¢××¨× ×ª× ××¢×ת ××××ר××ת ××××¢ ×¢× ××××ר תצ×רת ת××ר×ת ×××ש ××××. ת××ר×××ת ×ס×ס××ת ×ת×××× "
-"×ª× ××¢× ××××××: ××××, ש×××¢× ××××ש×. × ××ª× ×××××ר ×× ×ª××× ××ת ×תק×××ת ××תר. ×××× ×ספר "
-"××××××ת:\n"
+"×¢××¨× ×ª× ××¢×ת ××××ר××ת ××××¢ ×¢× ××××ר תצ×רת ת××ר×ת ×××ש ××××. ת××ר×××ת ×ס×ס××ת "
+"×ת×××× ×ª× ××¢× ××××××: ××××, ש×××¢× ××××ש×. × ××ª× ×××××ר ×× ×ª××× ××ת ×תק×××ת ××תר. "
+"×××× ×ספר ××××××ת:\n"
"\n"
-"×¢× ×× ×ª ×ת××× ×ª× ××¢× ××××ר×ת ××× ×©×××©× ×©×××¢×ת, × ××ª× ××××ר ×ת ×ת××ר×ת ××ס×ס×ת ×ש×××¢× "
-"××××ר ××× ×××××ר '×× 3 ש×××¢×ת'.\n"
+"×¢× ×× ×ª ×ת××× ×ª× ××¢× ××××ר×ת ××× ×©×××©× ×©×××¢×ת, × ××ª× ××××ר ×ת ×ת××ר×ת ××ס×ס×ת "
+"×ש×××¢× ××××ר ××× ×××××ר '×× 3 ש×××¢×ת'.\n"
"\n"
-"×¢× ×× ×ª ×ת××× ×ª× ××¢× ××××ר×ת ××× ×©× ×, × ××ª× ××××ר ×ת ×ת××ר×ת ××ס×ס×ת ×××××©× ××××ר ××× "
-"×××××ר '×× 12 ×××ש××'."
+"×¢× ×× ×ª ×ת××× ×ª× ××¢× ××××ר×ת ××× ×©× ×, × ××ª× ××××ר ×ת ×ת××ר×ת ××ס×ס×ת ×××××©× ××××ר "
+"××× ×××××ר '×× 12 ×××ש××'."
#: doc/tip_of_the_day.list.c:100
msgid ""
-"If you work overnight, you should close and reopen your working registers after "
-"midnight, to get the new date as default for new transactions. It is not necessary "
-"to restart GnuCash."
+"If you work overnight, you should close and reopen your working registers "
+"after midnight, to get the new date as default for new transactions. It is not "
+"necessary to restart GnuCash."
msgstr ""
-"××××× ××¢××××× ×××××, ×××ר ×צ×ת, ×ש ×ס××ר ××פת×× ×××ש ×ת ×××× × ××¢×××× ×¢× ×× ×ª ××§×× ×ת "
-"×ת×ר×× ××¢××× × ××ר×רת ×××× ××ª× ××¢×ת ××ש×ת. ××× ×¦××¨× ××פע×× ×××ש ×ת ×× ××§×ש."
+"××××× ××¢××××× ×××××, ×××ר ×צ×ת, ×ש ×ס××ר ××פת×× ×××ש ×ת ×××× × ××¢×××× ×¢× ×× ×ª "
+"××§×× ×ת ×ת×ר×× ××¢××× × ××ר×רת ×××× ××ª× ××¢×ת ××ש×ת. ××× ×¦××¨× ××פע×× ×××ש ×ת "
+"×× ××§×ש."
#: doc/tip_of_the_day.list.c:104
msgid ""
-"To search through all your transactions, start a search (Edit -> Find...) from the "
-"main accounts hierarchy page. To limit your search to a single account, start the "
-"search from that account's register."
+"To search through all your transactions, start a search (Edit -> Find...) from "
+"the main accounts hierarchy page. To limit your search to a single account, "
+"start the search from that account's register."
msgstr ""
"×¢× ×× ×ª ××פש ××× ××ª× ××¢×ת, ×ש ××צע ×ת××ת ××פ×ש (ער×××-> ××פ×ש...) ××¢××× ×ª×¨×©×× "
-"××ש××× ×ת ×ר×ש×. ×¢× ×× ×ª ×××××× ×ת ×××פ×ש ××ש××× ××××, ×ש ××פע×× ×ת ×××פ×ש ×××××× ×©× "
-"×××ª× ×ש×××."
+"××ש××× ×ת ×ר×ש×. ×¢× ×× ×ª ×××××× ×ת ×××פ×ש ××ש××× ××××, ×ש ××פע×× ×ת ×××פ×ש "
+"×××××× ×©× ×××ª× ×ש×××."
#: doc/tip_of_the_day.list.c:108
msgid ""
-"To visually compare on screen the contents of 2 tabs, in one of the tabs, select "
-"Window -> New Window with Page from the menu to duplicate that tab in a new window."
+"To visually compare on screen the contents of 2 tabs, in one of the tabs, "
+"select Window -> New Window with Page from the menu to duplicate that tab in a "
+"new window."
msgstr ""
"×¢× ×× ×ª ××ש××ת ×××ת×ת ×¢× ×××¡× ×ת ×ת××× ×©× ×©×ª× ×ש×× ××ת, ×××ת ××ש×× ××ת, ×ש ××××ר "
"××תפר×× ××××-> ×××× ××ש ×¢× ×¢××× ××ש××¤× ×ש×× ×ת ×× ××××× ×××ש."
#: doc/tip_of_the_day.list.c:112
msgid ""
-"There is a theory that if ever anyone discovers what the Universe is for and why it "
-"is here, it will instantly disappear and be replaced with something even more "
-"bizarre and inexplicable.\n"
+"There is a theory that if ever anyone discovers what the Universe is for and "
+"why it is here, it will instantly disappear and be replaced with something "
+"even more bizarre and inexplicable.\n"
"There is another theory that this has already happened.\n"
"\n"
"Douglas Adams, \"The Restaurant at the End of the Universe\""
msgstr ""
-"××©× × ×ª××ר×× ××××¢× ×ª ש×× ×× ×¤×¢× ××ש×× ×××× ××××¢ × ×צר ×××§×× ×××××¢ ××× ×××, ××× ×××¢×× "
-"××××¤× ××××× ××××××£ ××ש×× ×פ××× ××תר ×××ר ××××ª× ××ס×ר.\n"
+"××©× × ×ª×××ר×× ××××¢× ×ª ש×× ×× ×¤×¢× ××ש×× ×××× ××××¢ × ×צר ×××§×× ×××××¢ ××× ×××, ××× "
+"×××¢×× ××××¤× ××××× ××××××£ ××ש×× ×פ××× ××תר ×××ר ××××ª× ××ס×ר.\n"
"×ש ×¢×× ×ª×××ר×× ×©×× ××ר קר×.\n"
"\n"
"××××ס ×××ס, \"××סע×× ×ס××£ ×××§××\""
@@ -692,30 +706,31 @@ msgstr "×ספר × ×¡×ר ××צ×××."
#: gnucash/gnome/assistant-acct-period.c:313
#, c-format
msgid ""
-"The earliest transaction date found in this book is %s. Based on the selection made "
-"above, this book will be split into %d book."
+"The earliest transaction date found in this book is %s. Based on the selection "
+"made above, this book will be split into %d book."
msgid_plural ""
-"The earliest transaction date found in this book is %s. Based on the selection made "
-"above, this book will be split into %d books."
+"The earliest transaction date found in this book is %s. Based on the selection "
+"made above, this book will be split into %d books."
msgstr[0] ""
-"ת×ר×× ××ª× ××¢× ××××§×× ×××תר ×ספר×× ××× %s. ××ת×סס ×¢× ×××××¨× ×©× ×¢×©×ª× ××¢××, ספר ××ש××× ×ת "
-"×פ××¦× ×- %d ספר××."
+"ת×ר×× ××ª× ××¢× ××××§×× ×××תר ×ספר×× ××× %s. ××ת×סס ×¢× ×××××¨× ×©× ×¢×©×ª× ××¢××, ספר "
+"××ש××× ×ת ×פ××¦× ×- %d ספר××."
msgstr[1] ""
-"ת×ר×× ××ª× ××¢× ××××§×× ×××תר ×ספר×× ××× %s. ××ת×סס ×¢× ×××××¨× ×©× ×¢×©×ª× ××¢××, ספר ××ש××× ×ת "
-"×פ××¦× ×- %d ספר××."
+"ת×ר×× ××ª× ××¢× ××××§×× ×××תר ×ספר×× ××× %s. ××ת×סס ×¢× ×××××¨× ×©× ×¢×©×ª× ××¢××, ספר "
+"××ש××× ×ת ×פ××¦× ×- %d ספר××."
#. Translators: Run the assistent in your language to see GTK's translation of the button labels.
#: gnucash/gnome/assistant-acct-period.c:369
#, c-format
msgid ""
-"You have asked for a book to be created. This book will contain all transactions up "
-"to midnight %s (for a total of %d transactions spread over %d accounts).\n"
+"You have asked for a book to be created. This book will contain all "
+"transactions up to midnight %s (for a total of %d transactions spread over %d "
+"accounts).\n"
"\n"
" Amend the Title and Notes or Click on \"Next\" to proceed.\n"
" Click on \"Back\" to adjust the dates or \"Cancel\"."
msgstr ""
-"×צ×רת ספר ×ש××× ×ת. ספר ×× ×××× ×ת ×× ××ª× ××¢×ת ×¢× ××צ×ת %s (××¡× ×©× %d ×ª× ××¢×ת שפר×ש×ת "
-"×¢× %d ×ש××× ×ת).\n"
+"×צ×רת ספר ×ש××× ×ת. ספר ×× ×××× ×ת ×× ××ª× ××¢×ת ×¢× ××צ×ת %s (××¡× ×©× %d ×ª× ××¢×ת "
+"שפר×ש×ת ×¢× %d ×ש××× ×ת).\n"
"\n"
"× × ××ª×§× ×ת ×××תרת ×××ער×ת ×× ×××§×ש ×¢× '×××' ××× ×××ש××.\n"
" ××§×©× ×¢× '××§×××' ××× ××××× × ×ת ×ת×ר×××× ×× '×××××'."
@@ -728,11 +743,11 @@ msgstr "תק××¤× %s - %s"
#: gnucash/gnome/assistant-acct-period.c:404
#, c-format
msgid ""
-"The book will be created with the title %s when you click on \"Apply\". Click on "
-"\"Back\" to adjust, or \"Cancel\" to not create any book."
+"The book will be created with the title %s when you click on \"Apply\". Click "
+"on \"Back\" to adjust, or \"Cancel\" to not create any book."
msgstr ""
-"ספר ××ש××× ×ת ××××צר ×¢× ×××תרת %s ×××ר ××§×©× ×¢× '××××'. ××§×©× ×¢× '××§×××' ××× ××××× ×, "
-"×× '×××××' ×× ××שת ×צ×ר ספר ××ש××× ×ת."
+"ספר ××ש××× ×ת ××××צר ×¢× ×××תרת %s ×××ר ××§×©× ×¢× '××××'. ××§×©× ×¢× '××§×××' ××× "
+"××××× ×, ×× '×××××' ×× ××שת ×צ×ר ספר ××ש××× ×ת."
#. Translation FIXME: Can this %s-containing message please be
#. replaced by one single message? Either this closing went
@@ -762,7 +777,7 @@ msgid "Selected"
msgstr "× ××ר"
#: gnucash/gnome/assistant-hierarchy.c:462
-#: gnucash/gnome-utils/gnc-tree-view-account.c:2249
+#: gnucash/gnome-utils/gnc-tree-view-account.c:2247
msgid "Account Types"
msgstr "ס××× ×ש××× ×ת"
@@ -774,7 +789,7 @@ msgstr "×ש××× ×ת ×'%s'"
#: gnucash/gnome/assistant-hierarchy.c:565
msgid "No description provided."
-msgstr "××× ×ª××ר."
+msgstr "××× ×ª×××ר."
#: gnucash/gnome/assistant-hierarchy.c:580
msgid "Accounts in Category"
@@ -788,22 +803,26 @@ msgstr "×פס"
msgid "existing account"
msgstr "×ש××× ×§×××"
-#: gnucash/gnome/assistant-hierarchy.c:944 gnucash/gnome/business-gnome-utils.c:564
+#: gnucash/gnome/assistant-hierarchy.c:944
+#: gnucash/gnome/business-gnome-utils.c:564
msgid "Yes"
msgstr "××"
-#: gnucash/gnome/assistant-hierarchy.c:947 gnucash/gnome/business-gnome-utils.c:566
+#: gnucash/gnome/assistant-hierarchy.c:947
+#: gnucash/gnome/business-gnome-utils.c:566
msgid "No"
msgstr "××"
-#: gnucash/gnome/assistant-hierarchy.c:1024 gnucash/gnome-utils/dialog-options.c:718
+#: gnucash/gnome/assistant-hierarchy.c:1024
+#: gnucash/gnome-utils/dialog-options.c:718
#: gnucash/gnome-utils/gnc-tree-view-account.c:905
msgid "Placeholder"
msgstr "ש××ר ××§××"
-#: gnucash/gnome/assistant-hierarchy.c:1041 gnucash/gnome-utils/dialog-account.c:307
+#: gnucash/gnome/assistant-hierarchy.c:1041
+#: gnucash/gnome-utils/dialog-account.c:307
#: gnucash/gtkbuilder/dialog-account.glade:1605
-#: libgnucash/app-utils/gnc-ui-util.c:1103
+#: libgnucash/app-utils/gnc-ui-util.c:1082
msgid "Opening Balance"
msgstr "×תרת פת×××"
@@ -826,7 +845,8 @@ msgid "Please choose the currency to use for new accounts."
msgstr "× × ××××ר ××××¢ ש×ש×ש ××ש××× ×ת ×××ש××."
#. The options dialog gets added to the notebook so it doesn't need a parent.
-#: gnucash/gnome/assistant-hierarchy.c:1224 gnucash/gnome/assistant-hierarchy.c:1243
+#: gnucash/gnome/assistant-hierarchy.c:1224
+#: gnucash/gnome/assistant-hierarchy.c:1243
#: gnucash/gnome-utils/dialog-utils.c:835
msgid "New Book Options"
msgstr "×פשר×××ת ספר ×ש××× ×ת ××ש"
@@ -930,11 +950,11 @@ msgstr "×פשר×ת פרע×× ××××××: \"%s\""
#: gnucash/report/standard-reports/balsheet-pnl.scm:1039
#: gnucash/report/standard-reports/balsheet-pnl.scm:1044
#: gnucash/report/standard-reports/cashflow-barchart.scm:337
-#: gnucash/report/standard-reports/category-barchart.scm:736
+#: gnucash/report/standard-reports/category-barchart.scm:734
#: gnucash/report/standard-reports/general-journal.scm:101
#: gnucash/report/standard-reports/general-ledger.scm:73
#: gnucash/report/standard-reports/general-ledger.scm:94
-#: gnucash/report/standard-reports/net-charts.scm:486
+#: gnucash/report/standard-reports/net-charts.scm:484
#: gnucash/report/standard-reports/portfolio.scm:51
#: gnucash/report/standard-reports/register.scm:129
#: gnucash/report/standard-reports/register.scm:381
@@ -996,8 +1016,9 @@ msgstr "תש××× × ××× ×ת"
#: gnucash/gnome/assistant-stock-split.c:382
#: gnucash/gnome-utils/gnc-tree-model-split-reg.c:2956
#: gnucash/register/ledger-core/split-register.c:2679
-msgid "Action Column|Split"
-msgstr "×¢×××ת פע×××|פ×צ××"
+msgctxt "Action Column"
+msgid "Split"
+msgstr "פ×צ××"
#: gnucash/gnome/assistant-stock-split.c:408
msgid "Error adding price."
@@ -1023,7 +1044,7 @@ msgstr "ש×××× ×××ספת ×××ר."
#: gnucash/report/standard-reports/budget.scm:49
#: gnucash/report/standard-reports/cash-flow.scm:50
#: gnucash/report/standard-reports/general-journal.scm:106
-#: gnucash/report/standard-reports/portfolio.scm:254
+#: gnucash/report/standard-reports/portfolio.scm:253
#: gnucash/report/standard-reports/register.scm:142
#: gnucash/report/standard-reports/register.scm:406
msgid "Account"
@@ -1032,7 +1053,7 @@ msgstr "×ש×××"
#: gnucash/gnome/assistant-stock-split.c:579
#: gnucash/gnome-utils/gnc-tree-view-commodity.c:362
#: gnucash/report/standard-reports/advanced-portfolio.scm:1069
-#: gnucash/report/standard-reports/portfolio.scm:255
+#: gnucash/report/standard-reports/portfolio.scm:254
msgid "Symbol"
msgstr "ס××"
@@ -1055,8 +1076,9 @@ msgstr "×× ××ת"
msgid "You don't have any stock accounts with balances!"
msgstr "××× ×ש××× ×ת × ××ר×ת ×¢×¨× ×¢× ×תר×ת!"
-#: gnucash/gnome/business-gnome-utils.c:73 gnucash/gnome/business-gnome-utils.c:260
-#: gnucash/gnome/dialog-invoice.c:1354 gnucash/gnome/dialog-invoice.c:1432
+#: gnucash/gnome/business-gnome-utils.c:73
+#: gnucash/gnome/business-gnome-utils.c:260 gnucash/gnome/dialog-invoice.c:1354
+#: gnucash/gnome/dialog-invoice.c:1432
#: gnucash/gnome-utils/gnc-general-select.c:220
msgid "Select..."
msgstr "×××ר×..."
@@ -1100,7 +1122,7 @@ msgstr "ש××ר"
#: gnucash/report/business-reports/receipt.eguile.scm:109
#: gnucash/report/business-reports/receipt.scm:167
#: gnucash/report/business-reports/taxinvoice.eguile.scm:131
-#: gnucash/report/business-reports/taxinvoice.scm:193
+#: gnucash/report/business-reports/taxinvoice.scm:192
#: gnucash/report/report-gnome/gnc-plugin-page-report.c:1804
#: libgnucash/app-utils/prefs.scm:75 libgnucash/engine/gncInvoice.c:1057
msgid "Invoice"
@@ -1117,8 +1139,8 @@ msgstr "×ש××× ×ת"
#: gnucash/report/report-system/trep-engine.scm:336
#: gnucash/report/report-system/trep-engine.scm:421
#: gnucash/report/report-system/trep-engine.scm:994
-#: gnucash/report/standard-reports/register.scm:227 libgnucash/engine/Recurrence.c:495
-#: libgnucash/engine/Recurrence.c:683
+#: gnucash/report/standard-reports/register.scm:227
+#: libgnucash/engine/Recurrence.c:495 libgnucash/engine/Recurrence.c:683
msgid "None"
msgstr "×××"
@@ -1176,8 +1198,8 @@ msgstr "× × ××××× ×©× ××ª× ×× ×תש×××."
#: gnucash/gnome/dialog-billterms.c:328
#, c-format
msgid ""
-"You must provide a unique name for this Billing Term. Your choice \"%s\" is already "
-"in use."
+"You must provide a unique name for this Billing Term. Your choice \"%s\" is "
+"already in use."
msgstr "× × ××××× ×©× ×××××× ××ª× ×× ×תש×××. ××©× \"%s\" × ××¦× ××ר ×ש×××ש."
#: gnucash/gnome/dialog-billterms.c:528 gnucash/gnome-utils/gnc-date-delta.c:222
@@ -1188,7 +1210,8 @@ msgstr "× × ××××× ×©× ×××××× ××ª× ×× ×תש×××. ××©× \"%s\"
msgid "Days"
msgstr "××××"
-#: gnucash/gnome/dialog-billterms.c:531 gnucash/gtkbuilder/dialog-billterms.glade:409
+#: gnucash/gnome/dialog-billterms.c:531
+#: gnucash/gtkbuilder/dialog-billterms.glade:409
#: gnucash/gtkbuilder/dialog-billterms.glade:801
msgid "Proximo"
msgstr "פר×קס×××"
@@ -1207,20 +1230,22 @@ msgstr "×× ××××¢"
msgid "Term \"%s\" is in use. You cannot delete it."
msgstr "×ª× ×× ×ª×©××× \"%s\" × ××¦× ×ש×××ש. ×× × ××ª× ×××××§."
-#: gnucash/gnome/dialog-billterms.c:669 gnucash/gnome-utils/dialog-tax-table.c:667
+#: gnucash/gnome/dialog-billterms.c:669
+#: gnucash/gnome-utils/dialog-tax-table.c:667
#, c-format
msgid "Are you sure you want to delete \"%s\"?"
msgstr "××× ×××××§ ×ת \"%s\"?"
#: gnucash/gnome/dialog-choose-owner.c:78
msgid ""
-"This transaction needs to be assigned to a Customer. Please choose the Customer "
-"below."
+"This transaction needs to be assigned to a Customer. Please choose the "
+"Customer below."
msgstr "×¢× ×ª× ××¢× ×× ××××ת ×ש×××ת ×××§××. × × ××××ר ××§××."
#: gnucash/gnome/dialog-choose-owner.c:85
msgid ""
-"This transaction needs to be assigned to a Vendor. Please choose the Vendor below."
+"This transaction needs to be assigned to a Vendor. Please choose the Vendor "
+"below."
msgstr "×¢× ×ª× ××¢× ×× ××××ת ×ש×××ת ×ספק. × × ××××ר ספק."
#: gnucash/gnome/dialog-commodities.c:168
@@ -1244,22 +1269,26 @@ msgid "Delete commodity?"
msgstr "×××קת ס××ר×?"
#. Add the Cancel button for the matcher
-#: gnucash/gnome/dialog-commodities.c:202 gnucash/gnome/dialog-price-edit-db.c:191
+#: gnucash/gnome/dialog-commodities.c:202
+#: gnucash/gnome/dialog-price-edit-db.c:191
#: gnucash/gnome/dialog-price-editor.c:233 gnucash/gnome/dialog-tax-info.c:1166
#: gnucash/gnome/gnc-plugin-budget.c:303
#: gnucash/gnome/gnc-plugin-page-account-tree.c:1577
#: gnucash/gnome/gnc-plugin-page-invoice.c:165
#: gnucash/gnome/gnc-plugin-page-owner-tree.c:1120
#: gnucash/gnome/gnc-plugin-page-register2.c:1598
-#: gnucash/gnome/gnc-plugin-page-register.c:1740 gnucash/gnome/gnc-split-reg.c:904
-#: gnucash/gnome/gnc-split-reg.c:942 gnucash/gnome/gnc-split-reg.c:1164
-#: gnucash/gnome/gnc-split-reg.c:1208 gnucash/gnome/gnc-split-reg.c:1336
-#: gnucash/gnome/gnc-split-reg.c:1653 gnucash/gnome/gnc-split-reg.c:1693
-#: gnucash/gnome/window-reconcile2.c:2195 gnucash/gnome/window-reconcile.c:2279
-#: gnucash/gnome-search/search-account.c:237 gnucash/gnome-utils/dialog-account.c:657
+#: gnucash/gnome/gnc-plugin-page-register.c:1740
+#: gnucash/gnome/gnc-split-reg.c:904 gnucash/gnome/gnc-split-reg.c:942
+#: gnucash/gnome/gnc-split-reg.c:1164 gnucash/gnome/gnc-split-reg.c:1208
+#: gnucash/gnome/gnc-split-reg.c:1336 gnucash/gnome/gnc-split-reg.c:1653
+#: gnucash/gnome/gnc-split-reg.c:1693 gnucash/gnome/window-reconcile2.c:2195
+#: gnucash/gnome/window-reconcile.c:2279
+#: gnucash/gnome-search/search-account.c:237
+#: gnucash/gnome-utils/dialog-account.c:657
#: gnucash/gnome-utils/dialog-tax-table.c:597 gnucash/gnome-utils/gnc-file.c:131
#: gnucash/gnome-utils/gnc-file.c:314 gnucash/gnome-utils/gnc-file.c:612
-#: gnucash/gnome-utils/gnc-gui-query.c:300 gnucash/gnome-utils/gnc-main-window.c:1284
+#: gnucash/gnome-utils/gnc-gui-query.c:300
+#: gnucash/gnome-utils/gnc-main-window.c:1284
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:886
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1023
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1063
@@ -1289,11 +1318,13 @@ msgstr "×××קת ס××ר×?"
#: gnucash/gtkbuilder/dialog-import.glade:617
#: gnucash/gtkbuilder/dialog-import.glade:1231
#: gnucash/gtkbuilder/dialog-invoice.glade:615
-#: gnucash/gtkbuilder/dialog-invoice.glade:1114 gnucash/gtkbuilder/dialog-job.glade:43
+#: gnucash/gtkbuilder/dialog-invoice.glade:1114
+#: gnucash/gtkbuilder/dialog-job.glade:43
#: gnucash/gtkbuilder/dialog-new-user.glade:152
#: gnucash/gtkbuilder/dialog-options.glade:41
#: gnucash/gtkbuilder/dialog-order.glade:457
-#: gnucash/gtkbuilder/dialog-payment.glade:81 gnucash/gtkbuilder/dialog-price.glade:73
+#: gnucash/gtkbuilder/dialog-payment.glade:81
+#: gnucash/gtkbuilder/dialog-price.glade:73
#: gnucash/gtkbuilder/dialog-price.glade:388
#: gnucash/gtkbuilder/dialog-print-check.glade:147
#: gnucash/gtkbuilder/dialog-print-check.glade:318
@@ -1301,16 +1332,17 @@ msgstr "×××קת ס××ר×?"
#: gnucash/gtkbuilder/dialog-report.glade:458
#: gnucash/gtkbuilder/dialog-report.glade:742
#: gnucash/gtkbuilder/dialog-reset-warnings.glade:27
-#: gnucash/gtkbuilder/dialog-search.glade:69 gnucash/gtkbuilder/dialog-sx.glade:180
-#: gnucash/gtkbuilder/dialog-sx.glade:793 gnucash/gtkbuilder/dialog-sx.glade:1492
+#: gnucash/gtkbuilder/dialog-search.glade:69
+#: gnucash/gtkbuilder/dialog-sx.glade:180 gnucash/gtkbuilder/dialog-sx.glade:793
+#: gnucash/gtkbuilder/dialog-sx.glade:1492
#: gnucash/gtkbuilder/dialog-tax-info.glade:31
#: gnucash/gtkbuilder/dialog-tax-table.glade:348
#: gnucash/gtkbuilder/dialog-transfer.glade:27
#: gnucash/gtkbuilder/dialog-userpass.glade:25
#: gnucash/gtkbuilder/dialog-vendor.glade:67
#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:33
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:271
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:461
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:263
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:451
#: gnucash/gtkbuilder/gnc-plugin-page-register2.glade:33
#: gnucash/gtkbuilder/gnc-plugin-page-register2.glade:192
#: gnucash/gtkbuilder/gnc-plugin-page-register2.glade:707
@@ -1320,7 +1352,8 @@ msgstr "×××קת ס××ר×?"
#: gnucash/gtkbuilder/gnc-plugin-page-register.glade:1172
#: gnucash/gtkbuilder/gnc-tree-view-owner.glade:27
#: gnucash/gtkbuilder/window-autoclear.glade:25
-#: gnucash/gtkbuilder/window-reconcile.glade:25 gnucash/html/gnc-html-webkit1.c:1197
+#: gnucash/gtkbuilder/window-reconcile.glade:25
+#: gnucash/html/gnc-html-webkit1.c:1197
#: gnucash/import-export/aqb/dialog-ab.glade:305
#: gnucash/import-export/aqb/dialog-ab.glade:611
#: gnucash/import-export/aqb/dialog-ab.glade:791
@@ -1335,19 +1368,21 @@ msgstr "×××קת ס××ר×?"
msgid "_Cancel"
msgstr "_×××××"
-#: gnucash/gnome/dialog-commodities.c:203 gnucash/gnome/dialog-price-edit-db.c:192
+#: gnucash/gnome/dialog-commodities.c:203
+#: gnucash/gnome/dialog-price-edit-db.c:192
#: gnucash/gnome/gnc-plugin-page-account-tree.c:1578
#: gnucash/gnome/gnc-plugin-page-invoice.c:170
#: gnucash/gnome/gnc-plugin-page-owner-tree.c:1121
-#: gnucash/gnome/gnc-plugin-page-sx-list.c:161 gnucash/gnome/window-reconcile2.c:2237
-#: gnucash/gnome/window-reconcile.c:2321 gnucash/gtkbuilder/dialog-account.glade:194
+#: gnucash/gnome/gnc-plugin-page-sx-list.c:161
+#: gnucash/gnome/window-reconcile2.c:2237 gnucash/gnome/window-reconcile.c:2321
+#: gnucash/gtkbuilder/dialog-account.glade:194
#: gnucash/gtkbuilder/dialog-billterms.glade:558
#: gnucash/gtkbuilder/dialog-imap-editor.glade:55
#: gnucash/gtkbuilder/dialog-lot-viewer.glade:75
#: gnucash/gtkbuilder/dialog-report.glade:353
#: gnucash/gtkbuilder/dialog-report.glade:641
#: gnucash/gtkbuilder/dialog-tax-table.glade:132
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:787
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:777
msgid "_Delete"
msgstr "_××××§×"
@@ -1502,7 +1537,8 @@ msgstr "×©× ×שת×ש ××¢×××"
msgid "Employee Name"
msgstr "×©× ××¢×××"
-#: gnucash/gnome/dialog-employee.c:712 gnucash/gtkbuilder/dialog-file-access.glade:200
+#: gnucash/gnome/dialog-employee.c:712
+#: gnucash/gtkbuilder/dialog-file-access.glade:200
msgid "Username"
msgstr "×©× ×שת×ש"
@@ -1524,15 +1560,16 @@ msgstr "××פ×ש ×¢×××"
#: gnucash/gnome/dialog-fincalc.c:319
msgid ""
-"This program can only calculate one value at a time. You must enter values for all "
-"but one quantity."
+"This program can only calculate one value at a time. You must enter values for "
+"all but one quantity."
msgstr ""
-"×ת××× ×ת ××××× ×××©× ×¢×¨× ××× ×××× ××× ×¤×¢×. × × ××××× ×¢×¨××× ×¢××ר ×× ××××××ת ×××× ××ת."
+"×ת××× ×ת ××××× ×××©× ×¢×¨× ××× ×××× ××× ×¤×¢×. × × ××××× ×¢×¨××× ×¢××ר ×× ××××××ת ×××× "
+"××ת."
#: gnucash/gnome/dialog-fincalc.c:321
msgid ""
-"GnuCash cannot determine the value in one of the fields. You must enter a valid "
-"expression."
+"GnuCash cannot determine the value in one of the fields. You must enter a "
+"valid expression."
msgstr "×× ××§×ש ××× × ×××× ××§×××¢ ×ת ××¢×¨× ×××× ×ש××ת. × × ××××× ××××× ×××§×."
#: gnucash/gnome/dialog-fincalc.c:360
@@ -1592,15 +1629,15 @@ msgstr "×××××"
#: gnucash/report/standard-reports/balsheet-pnl.scm:345
#: gnucash/report/standard-reports/equity-statement.scm:169
#: gnucash/report/standard-reports/income-statement.scm:269
-#: gnucash/report/standard-reports/trial-balance.scm:296
+#: gnucash/report/standard-reports/trial-balance.scm:295
msgid "Closing Entries"
msgstr "×ª× ××¢×ת ס××ר×"
#: gnucash/gnome/dialog-find-transactions2.c:120
#: gnucash/gnome/dialog-find-transactions.c:118
#: gnucash/gnome/gnc-plugin-page-register2.c:491
-#: gnucash/gnome/gnc-plugin-page-register.c:511 gnucash/gnome/window-reconcile2.c:1327
-#: gnucash/gnome/window-reconcile.c:1377
+#: gnucash/gnome/gnc-plugin-page-register.c:511
+#: gnucash/gnome/window-reconcile2.c:1327 gnucash/gnome/window-reconcile.c:1377
#: gnucash/import-export/csv-exp/csv-transactions-export.c:614
#: gnucash/import-export/csv-exp/csv-transactions-export.c:627
msgid "Reconcile"
@@ -1612,9 +1649,9 @@ msgid "Share Price"
msgstr "×××ר ×× ××"
#. note the "Amount" multichoice option here
-#: gnucash/gnome/dialog-find-transactions2.c:124 gnucash/gnome/dialog-invoice.c:3361
-#: gnucash/gnome/dialog-lot-viewer.c:930 gnucash/gnome/gnc-split-reg.c:615
-#: gnucash/gnome/reconcile-view.c:431
+#: gnucash/gnome/dialog-find-transactions2.c:124
+#: gnucash/gnome/dialog-invoice.c:3361 gnucash/gnome/dialog-lot-viewer.c:930
+#: gnucash/gnome/gnc-split-reg.c:615 gnucash/gnome/reconcile-view.c:431
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:2892
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:2904
#: gnucash/import-export/csv-imp/gnc-imp-props-price.cpp:48
@@ -1642,20 +1679,22 @@ msgid "Amount"
msgstr "ס×××"
#: gnucash/gnome/dialog-find-transactions2.c:126
-#: gnucash/gnome/dialog-find-transactions.c:124 gnucash/gnome/dialog-lot-viewer.c:936
+#: gnucash/gnome/dialog-find-transactions.c:124
+#: gnucash/gnome/dialog-lot-viewer.c:936
#: gnucash/gnome/dialog-sx-since-last-run.c:1028
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:2882
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:2902
#: gnucash/report/standard-reports/advanced-portfolio.scm:1086
-#: gnucash/report/standard-reports/portfolio.scm:259
+#: gnucash/report/standard-reports/portfolio.scm:258
#: gnucash/report/standard-reports/register.scm:157
#: gnucash/report/standard-reports/register.scm:435
msgid "Value"
msgstr "ער×"
#: gnucash/gnome/dialog-find-transactions2.c:128
-#: gnucash/gnome/dialog-find-transactions.c:126 gnucash/gnome/dialog-invoice.c:3114
-#: gnucash/gnome/dialog-invoice.c:3148 gnucash/gnome/dialog-invoice.c:3182
+#: gnucash/gnome/dialog-find-transactions.c:126
+#: gnucash/gnome/dialog-invoice.c:3114 gnucash/gnome/dialog-invoice.c:3148
+#: gnucash/gnome/dialog-invoice.c:3182
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:2720
#: gnucash/gtkbuilder/dialog-invoice.glade:93
msgid "Date Posted"
@@ -1669,7 +1708,8 @@ msgstr "ת×ר×× ×¨×ש××"
#: gnucash/gnome/dialog-find-transactions.c:175
#: gnucash/gnome/gnc-plugin-page-register.c:2260
#: gnucash/gnome/gnc-plugin-page-register.c:3857
-#: gnucash/gnome-search/dialog-search.c:866 gnucash/gnome-search/dialog-search.c:872
+#: gnucash/gnome-search/dialog-search.c:866
+#: gnucash/gnome-search/dialog-search.c:872
#: gnucash/import-export/csv-exp/csv-transactions-export.c:624
#: gnucash/report/report-system/trep-engine.scm:218
msgid "Number/Action"
@@ -1681,13 +1721,14 @@ msgstr "ס××××××/פע×××"
#: gnucash/gnome/dialog-find-transactions.c:131
#: gnucash/gnome/dialog-find-transactions.c:168
#: gnucash/gnome/dialog-find-transactions.c:176
-#: gnucash/gnome/gnc-plugin-page-register.c:2265 gnucash/gnome/gnc-split-reg.c:624
-#: gnucash/gnome-search/dialog-search.c:865 gnucash/gnome-search/dialog-search.c:873
+#: gnucash/gnome/gnc-plugin-page-register.c:2265
+#: gnucash/gnome/gnc-split-reg.c:624 gnucash/gnome-search/dialog-search.c:865
+#: gnucash/gnome-search/dialog-search.c:873
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:2749
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:2751
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:2769
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:2771
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:131
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:129
#: gnucash/import-export/bi-import/dialog-bi-import-gui.c:148
#: gnucash/import-export/csv-exp/csv-transactions-export.c:624
#: gnucash/import-export/csv-imp/gnc-imp-props-tx.cpp:58
@@ -1706,7 +1747,8 @@ msgstr "פע×××"
#: gnucash/gnome/dialog-find-transactions.c:177
#: gnucash/gnome/gnc-plugin-page-register.c:2259
#: gnucash/gnome/gnc-plugin-page-register.c:3856
-#: gnucash/gnome-search/dialog-search.c:868 gnucash/gnome-search/dialog-search.c:874
+#: gnucash/gnome-search/dialog-search.c:868
+#: gnucash/gnome-search/dialog-search.c:874
#: gnucash/import-export/csv-exp/csv-transactions-export.c:612
#: gnucash/import-export/csv-exp/csv-transactions-export.c:621
#: gnucash/report/report-system/trep-engine.scm:232
@@ -1719,8 +1761,9 @@ msgstr "×ספר ×ª× ××¢×"
#: gnucash/gnome/dialog-find-transactions.c:135
#: gnucash/gnome/dialog-find-transactions.c:170
#: gnucash/gnome/dialog-find-transactions.c:178
-#: gnucash/gnome/gnc-plugin-page-register.c:2264 gnucash/gnome/gnc-split-reg.c:612
-#: gnucash/gnome-search/dialog-search.c:867 gnucash/gnome-search/dialog-search.c:875
+#: gnucash/gnome/gnc-plugin-page-register.c:2264
+#: gnucash/gnome/gnc-split-reg.c:612 gnucash/gnome-search/dialog-search.c:867
+#: gnucash/gnome-search/dialog-search.c:875
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:2765
#: gnucash/gtkbuilder/dialog-payment.glade:299
#: gnucash/gtkbuilder/gnc-date-format.glade:98
@@ -1733,7 +1776,7 @@ msgstr "×ספר"
#: gnucash/gnome/dialog-find-transactions2.c:149
#: gnucash/gnome/dialog-find-transactions.c:147
msgid "Description, Notes, or Memo"
-msgstr "ת××ר, ×ער×ת, ×× ×××ר"
+msgstr "ת×××ר, ×ער×ת, ×× ×××ר"
#: gnucash/gnome/dialog-find-transactions2.c:153
#: gnucash/gnome/dialog-find-transactions.c:151 gnucash/gnome/gnc-split-reg.c:618
@@ -1769,7 +1812,8 @@ msgstr "×××ר"
#: gnucash/gtkbuilder/dialog-customer.glade:556
#: gnucash/gtkbuilder/dialog-invoice.glade:386
#: gnucash/gtkbuilder/dialog-invoice.glade:1069
-#: gnucash/gtkbuilder/dialog-order.glade:351 gnucash/gtkbuilder/dialog-order.glade:701
+#: gnucash/gtkbuilder/dialog-order.glade:351
+#: gnucash/gtkbuilder/dialog-order.glade:701
#: gnucash/gtkbuilder/dialog-vendor.glade:551
#: gnucash/import-export/bi-import/dialog-bi-import-gui.c:144
#: gnucash/import-export/csv-exp/csv-transactions-export.c:622
@@ -1783,15 +1827,16 @@ msgstr "×××ר"
#: gnucash/report/report-system/trep-engine.scm:921
#: gnucash/report/report-system/trep-engine.scm:1080
#: gnucash/report/report-system/trep-engine.scm:1175
-#: gnucash/report/standard-reports/account-summary.scm:483
-#: gnucash/report/standard-reports/sx-summary.scm:486
+#: gnucash/report/standard-reports/account-summary.scm:484
+#: gnucash/report/standard-reports/sx-summary.scm:485
msgid "Notes"
msgstr "×ער×ת"
#: gnucash/gnome/dialog-find-transactions2.c:157
-#: gnucash/gnome/dialog-find-transactions.c:155 gnucash/gnome/dialog-lot-viewer.c:924
-#: gnucash/gnome/dialog-tax-info.c:1373 gnucash/gnome/gnc-split-reg.c:621
-#: gnucash/gnome/reconcile-view.c:435 gnucash/gnome-utils/gnc-tree-model-budget.c:102
+#: gnucash/gnome/dialog-find-transactions.c:155
+#: gnucash/gnome/dialog-lot-viewer.c:924 gnucash/gnome/dialog-tax-info.c:1373
+#: gnucash/gnome/gnc-split-reg.c:621 gnucash/gnome/reconcile-view.c:435
+#: gnucash/gnome-utils/gnc-tree-model-budget.c:102
#: gnucash/gnome-utils/gnc-tree-view-account.c:757
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:2812
#: gnucash/gtkbuilder/dialog-choose-owner.glade:103
@@ -1818,13 +1863,13 @@ msgstr "×ער×ת"
#: gnucash/report/report-system/trep-engine.scm:920
#: gnucash/report/report-system/trep-engine.scm:1046
#: gnucash/report/report-system/trep-engine.scm:1165
-#: gnucash/report/standard-reports/account-summary.scm:444
+#: gnucash/report/standard-reports/account-summary.scm:443
#: gnucash/report/standard-reports/general-journal.scm:105
#: gnucash/report/standard-reports/general-ledger.scm:77
#: gnucash/report/standard-reports/general-ledger.scm:97
#: gnucash/report/standard-reports/register.scm:137
#: gnucash/report/standard-reports/register.scm:396
-#: gnucash/report/standard-reports/sx-summary.scm:445
+#: gnucash/report/standard-reports/sx-summary.scm:444
msgid "Description"
msgstr "ת×××ר"
@@ -1894,7 +1939,8 @@ msgid "Due Date"
msgstr "ת×ר×× ×¤×¨×¢××"
#. Should be using standard label for due date?
-#: gnucash/gnome/dialog-invoice.c:728 gnucash/report/business-reports/aging.scm:408
+#: gnucash/gnome/dialog-invoice.c:728
+#: gnucash/report/business-reports/aging.scm:408
#: gnucash/report/business-reports/owner-report.scm:615
msgid "Post Date"
msgstr "ת×ר×× ×¨×ש××"
@@ -1921,8 +1967,8 @@ msgid ""
"One or more of the entries are for accounts different from the invoice/bill "
"currency. You will be asked a conversion rate for each."
msgstr ""
-"××ת ×רש×××ת ×× ××תר ×× ×¢××ר ×ש××× ×ת ש×××××¢ ש××× ×©×× × ×××××¢ ××ש××× ×ת/××××. ת××¦× ××§×©× "
-"×שער ×××¨× ×¢××ר ×× ×××."
+"××ת ×רש×××ת ×× ××תר ×× ×¢××ר ×ש××× ×ת ש×××××¢ ש××× ×©×× × ×××××¢ ××ש××× ×ת/××××. ת××¦× "
+"××§×©× ×שער ×××¨× ×¢××ר ×× ×××."
#: gnucash/gnome/dialog-invoice.c:993
msgid "The post action was canceled because not all exchange rates were given."
@@ -1952,7 +1998,8 @@ msgstr "×¡× ××× ××××:"
#. Set the type label
#: gnucash/gnome/dialog-invoice.c:1745 gnucash/gnome/dialog-payment.c:1259
#: gnucash/gtkbuilder/dialog-invoice.glade:778
-#: gnucash/report/business-reports/invoice.scm:797 libgnucash/engine/gncInvoice.c:1065
+#: gnucash/report/business-reports/invoice.scm:797
+#: libgnucash/engine/gncInvoice.c:1065
msgid "Credit Note"
msgstr "×××עת ×××××"
@@ -1969,7 +2016,8 @@ msgstr "×× ×©×××"
msgid "New Credit Note"
msgstr "×××עת ××××× ××ש×"
-#: gnucash/gnome/dialog-invoice.c:1966 gnucash/gnome/gnc-plugin-page-owner-tree.c:281
+#: gnucash/gnome/dialog-invoice.c:1966
+#: gnucash/gnome/gnc-plugin-page-owner-tree.c:281
#: gnucash/gnome-search/dialog-search.c:1072
#: gnucash/gtkbuilder/dialog-invoice.glade:580
msgid "New Invoice"
@@ -1993,7 +2041,8 @@ msgstr "×צ×ת ×××עת ×××××"
msgid "View Invoice"
msgstr "×צ×ת ×ש××× ×ת"
-#: gnucash/gnome/dialog-invoice.c:1985 gnucash/gnome/gnc-plugin-page-owner-tree.c:280
+#: gnucash/gnome/dialog-invoice.c:1985
+#: gnucash/gnome/gnc-plugin-page-owner-tree.c:280
#: gnucash/gnome-search/dialog-search.c:1056
msgid "New Bill"
msgstr "×××× ××ש"
@@ -2057,14 +2106,16 @@ msgid "View/Edit Invoice"
msgstr "×צ×ת/ער××ת ×ש××× ×ת"
#: gnucash/gnome/dialog-invoice.c:3070 gnucash/gnome/dialog-invoice.c:3079
-#: gnucash/gnome/dialog-invoice.c:3090 gnucash/gnome/gnc-plugin-page-invoice.c:270
+#: gnucash/gnome/dialog-invoice.c:3090
+#: gnucash/gnome/gnc-plugin-page-invoice.c:270
#: gnucash/gnome/gnc-plugin-page-register2.c:487
#: gnucash/gnome/gnc-plugin-page-register.c:507
msgid "Duplicate"
msgstr "ש××פ××"
#: gnucash/gnome/dialog-invoice.c:3071 gnucash/gnome/dialog-invoice.c:3080
-#: gnucash/gnome/dialog-invoice.c:3091 gnucash/gnome/gnc-plugin-page-invoice.c:274
+#: gnucash/gnome/dialog-invoice.c:3091
+#: gnucash/gnome/gnc-plugin-page-invoice.c:274
msgid "Post"
msgstr "ר×ש××"
@@ -2087,7 +2138,8 @@ msgstr "×צ×ת/ער××ת ש××ר"
msgid "Invoice Owner"
msgstr "××¢× ××ש××× ×ת"
-#: gnucash/gnome/dialog-invoice.c:3105 gnucash/report/business-reports/invoice.scm:341
+#: gnucash/gnome/dialog-invoice.c:3105
+#: gnucash/report/business-reports/invoice.scm:341
msgid "Invoice Notes"
msgstr "×ער×ת ××ש××× ×ת"
@@ -2095,7 +2147,8 @@ msgstr "×ער×ת ××ש××× ×ת"
#: gnucash/gnome/dialog-invoice.c:3176 gnucash/gnome/dialog-invoice.c:3205
#: gnucash/gnome/dialog-job.c:573 gnucash/gnome/dialog-job.c:586
#: gnucash/gnome/dialog-order.c:884 gnucash/gtkbuilder/dialog-invoice.glade:292
-#: gnucash/gtkbuilder/dialog-invoice.glade:865 gnucash/gtkbuilder/dialog-job.glade:219
+#: gnucash/gtkbuilder/dialog-invoice.glade:865
+#: gnucash/gtkbuilder/dialog-job.glade:219
#: gnucash/report/business-reports/invoice.scm:331
msgid "Billing ID"
msgstr "×××× ××××"
@@ -2114,7 +2167,8 @@ msgstr "××× × ×¨×©×?"
#: gnucash/gnome/dialog-invoice.c:3188 gnucash/gnome/dialog-order.c:873
#: gnucash/gtkbuilder/dialog-invoice.glade:67
#: gnucash/gtkbuilder/dialog-invoice.glade:702
-#: gnucash/gtkbuilder/dialog-order.glade:137 gnucash/gtkbuilder/dialog-order.glade:550
+#: gnucash/gtkbuilder/dialog-order.glade:137
+#: gnucash/gtkbuilder/dialog-order.glade:550
msgid "Date Opened"
msgstr "ת×ר×× ×¤×ª×××"
@@ -2156,8 +2210,8 @@ msgstr "×ער×ת ×ש××ר"
#: gnucash/report/business-reports/customer-summary.scm:73
#: gnucash/report/business-reports/job-report.scm:45
#: gnucash/report/business-reports/owner-report.scm:55
-#: gnucash/report/standard-reports/account-summary.scm:443
-#: gnucash/report/standard-reports/sx-summary.scm:444
+#: gnucash/report/standard-reports/account-summary.scm:442
+#: gnucash/report/standard-reports/sx-summary.scm:443
msgid "Type"
msgstr "ס××"
@@ -2300,9 +2354,10 @@ msgstr "××פ×ש ר××××"
#: gnucash/gnome/dialog-lot-viewer.c:796
#: gnucash/gnome/gnc-plugin-page-account-tree.c:367
-#: gnucash/gnome/gnc-plugin-page-budget.c:193 gnucash/gnome/window-reconcile2.c:1713
-#: gnucash/gnome/window-reconcile.c:1773 gnucash/gnome-utils/gnc-file.c:103
-#: gnucash/gnome-utils/gnc-file.c:275 gnucash/gnome-utils/gnc-file.c:1065
+#: gnucash/gnome/gnc-plugin-page-budget.c:193
+#: gnucash/gnome/window-reconcile2.c:1713 gnucash/gnome/window-reconcile.c:1773
+#: gnucash/gnome-utils/gnc-file.c:103 gnucash/gnome-utils/gnc-file.c:275
+#: gnucash/gnome-utils/gnc-file.c:1065
msgid "Open"
msgstr "פת×××"
@@ -2327,10 +2382,10 @@ msgstr "××תרת"
#: gnucash/report/business-reports/job-report.scm:208
#: gnucash/report/business-reports/owner-report.scm:321
#: gnucash/report/report-system/html-utilities.scm:711
-#: gnucash/report/standard-reports/account-summary.scm:462
+#: gnucash/report/standard-reports/account-summary.scm:461
#: gnucash/report/standard-reports/balance-forecast.scm:241
#: gnucash/report/standard-reports/register.scm:163
-#: gnucash/report/standard-reports/sx-summary.scm:463
+#: gnucash/report/standard-reports/sx-summary.scm:462
msgid "Balance"
msgstr "×תר×"
@@ -2361,10 +2416,11 @@ msgstr "××××ת ××××ת ×פ××ת רש××× ××ת ××××× ×."
#.
#: gnucash/gnome/dialog-order.c:299
msgid ""
-"This order contains entries that have not been invoiced. Are you sure you want to "
-"close it out before you invoice all the entries?"
+"This order contains entries that have not been invoiced. Are you sure you want "
+"to close it out before you invoice all the entries?"
msgstr ""
-"×××× × ×× ××××× ×¨×©×××ת ש×× ×××××. ××× ×ס××ר ×××ª× ××¤× × ×©×צ×× ×ש××× ××ת ××× ×רש×××ת?"
+"×××× × ×× ××××× ×¨×©×××ת ש×× ×××××. ××× ×ס××ר ×××ª× ××¤× × ×©×צ×× ×ש××× ××ת ××× "
+"×רש×××ת?"
#. Ok, we can close this. Ask for verification and set the closed date
#: gnucash/gnome/dialog-order.c:308
@@ -2422,8 +2478,8 @@ msgstr "תש××× ×ר×ש"
#: gnucash/gnome/dialog-payment.c:951
msgid ""
-"The transfer and post accounts are associated with different currencies. Please "
-"specify the conversion rate."
+"The transfer and post accounts are associated with different currencies. "
+"Please specify the conversion rate."
msgstr "××ש××× ×× ××× ××ש××× ×ר×ש×× ×ש××××× ×××××¢×ת ש×× ××. × × ××××× ×ת שער ×××ר×."
#: gnucash/gnome/dialog-payment.c:1197 gnucash/gnome/search-owner.c:211
@@ -2467,15 +2523,16 @@ msgstr "×¢×××"
#: gnucash/gnome/dialog-payment.c:1344
#, c-format
msgid ""
-"You have no valid \"Post To\" accounts. Please create an account of type \"%s\" "
-"before you continue to process this payment. Perhaps you want to create an Invoice "
-"or Bill first?"
+"You have no valid \"Post To\" accounts. Please create an account of type \"%s"
+"\" before you continue to process this payment. Perhaps you want to create an "
+"Invoice or Bill first?"
msgstr ""
-"×× × ×צ×× ×ש××× ×ת תק×× ×× ×ר×ש×× ××ש××× × ×××. × × ××צ×ר ×ש××× ×ס×× \"%s\" ××¤× × ××צ××¢ "
-"×¢×××× ×ª×©×××××. ××× ××צ×ר ×ש××× ×ת ×× ×××× ×ª××××?"
+"×× × ×צ×× ×ש××× ×ת תק×× ×× ×ר×ש×× ××ש××× × ×××. × × ××צ×ר ×ש××× ×ס×× \"%s\" ××¤× × "
+"××צ××¢ ×¢×××× ×ª×©×××××. ××× ××צ×ר ×ש××× ×ת ×× ×××× ×ª××××?"
#: gnucash/gnome/dialog-payment.c:1497
-msgid "The selected transaction doesn't have splits that can be assigned as a payment"
+msgid ""
+"The selected transaction doesn't have splits that can be assigned as a payment"
msgstr "××ª× ××¢× ×©× ×××¨× ××× ×¤×צ×××× ×©× ××ª× ××קצ×ת ×תש×××"
#: gnucash/gnome/dialog-payment.c:1511
@@ -2497,7 +2554,8 @@ msgstr "×××ר×"
msgid "Continue"
msgstr "××ש×"
-#: gnucash/gnome/dialog-payment.c:1518 gnucash/gnome/gnc-plugin-page-invoice.c:268
+#: gnucash/gnome/dialog-payment.c:1518
+#: gnucash/gnome/gnc-plugin-page-invoice.c:268
#: gnucash/gnome/gnc-plugin-page-register2.c:485
#: gnucash/gnome/gnc-plugin-page-register.c:505
#: gnucash/gnome-utils/gnc-cell-renderer-date.c:159
@@ -2507,8 +2565,8 @@ msgstr "×××××"
#: gnucash/gnome/dialog-payment.c:1630
#, c-format
msgid ""
-"The transaction has at least one split in a business account that is not part of a "
-"business transaction.\n"
+"The transaction has at least one split in a business account that is not part "
+"of a business transaction.\n"
"If you continue these splits will be ignored:\n"
"\n"
"%s\n"
@@ -2564,7 +2622,8 @@ msgstr "× × ××××ר ×××××."
msgid "You must select a Currency."
msgstr "× × ××××ר ××××¢."
-#: gnucash/gnome/dialog-price-editor.c:279 gnucash/gnome-utils/dialog-transfer.c:1708
+#: gnucash/gnome/dialog-price-editor.c:279
+#: gnucash/gnome-utils/dialog-transfer.c:1708
msgid "You must enter a valid amount."
msgstr "× × ××××× ×¡××× ×ª×§××."
@@ -2590,17 +2649,18 @@ msgstr "×§××× ×§×××¥ ת×× ×ת ××××× ×פ××."
#: gnucash/gnome/dialog-print-check.c:1518
#, c-format
msgid ""
-"The GUIDs in the %s check format file '%s' and the %s check format file '%s' match."
+"The GUIDs in the %s check format file '%s' and the %s check format file '%s' "
+"match."
msgstr ""
-"×××××× ×××××××× ×××× ××רס×××× %s ××§×××¥ ת×× ×ת ×××××§× '%s' ×× %s ×§×××¥ ת×× ×ת ××××§×רת "
-"'%s' ת×××××."
+"×××××× ×××××××× ×××× ××רס×××× %s ××§×××¥ ת×× ×ת ×××××§× '%s' ×× %s ×§×××¥ ת×× ×ת "
+"××××§×רת '%s' ת×××××."
#. Translators: This is a directory name. It may be presented to
#. * the user to indicate that some data file was defined by the
#. * gnucash application.
#: gnucash/gnome/dialog-print-check.c:1560
msgid "application"
-msgstr "××ש××"
+msgstr "application"
#. Translators: This is a directory name. It may be presented to
#. * the user to indicate that some data file was defined by a
@@ -2609,7 +2669,8 @@ msgstr "××ש××"
msgid "user"
msgstr "×שת×ש"
-#: gnucash/gnome/dialog-print-check.c:1592 gnucash/gnome/dialog-print-check.c:2605
+#: gnucash/gnome/dialog-print-check.c:1592
+#: gnucash/gnome/dialog-print-check.c:2605
#: gnucash/gtkbuilder/assistant-csv-export.glade:189
#: gnucash/gtkbuilder/assistant-csv-price-import.glade:378
#: gnucash/gtkbuilder/assistant-csv-trans-import.glade:372
@@ -2635,8 +2696,9 @@ msgid "Complete"
msgstr "××ש××"
#: gnucash/gnome/dialog-sx-editor2.c:164 gnucash/gnome/dialog-sx-editor.c:166
-#: gnucash/gnome/gnc-plugin-page-sx-list.c:149 gnucash/gnome/window-reconcile2.c:2232
-#: gnucash/gnome/window-reconcile.c:2316 gnucash/gnome-utils/gnc-main-window.c:266
+#: gnucash/gnome/gnc-plugin-page-sx-list.c:149
+#: gnucash/gnome/window-reconcile2.c:2232 gnucash/gnome/window-reconcile.c:2316
+#: gnucash/gnome-utils/gnc-main-window.c:266
#: gnucash/gtkbuilder/dialog-billterms.glade:740
#: gnucash/gtkbuilder/dialog-commodities.glade:158
#: gnucash/gtkbuilder/dialog-price.glade:869
@@ -2678,9 +2740,10 @@ msgstr "×× × ××ª× ×× ×ª× × ×ס×ת ×××× ×¢××ר פ×צ×× \"%s\"."
#: gnucash/gnome/dialog-sx-editor2.c:690 gnucash/gnome/dialog-sx-editor.c:872
#: gnucash/gnome/dialog-sx-from-trans.c:261
msgid ""
-"The Scheduled Transaction Editor cannot automatically balance this transaction. "
-"Should it still be entered?"
-msgstr "×¢××¨× ××ª× ××¢×ת ×××××ר××ת ×× ×××× ×××× ×××××××ת ×ת ××ª× ××¢×. ××× ××× ××××× ×¨×©×××?"
+"The Scheduled Transaction Editor cannot automatically balance this "
+"transaction. Should it still be entered?"
+msgstr ""
+"×¢××¨× ××ª× ××¢×ת ×××××ר××ת ×× ×××× ×××× ×××××××ת ×ת ××ª× ××¢×. ××× ××× ××××× ×¨×©×××?"
#: gnucash/gnome/dialog-sx-editor2.c:711 gnucash/gnome/dialog-sx-editor.c:492
msgid "Please name the Scheduled Transaction."
@@ -2689,9 +2752,10 @@ msgstr "× × ×תת ×©× ××ª× ××¢× ×××××ר×ת."
#: gnucash/gnome/dialog-sx-editor2.c:738 gnucash/gnome/dialog-sx-editor.c:518
#, c-format
msgid ""
-"A Scheduled Transaction with the name \"%s\" already exists. Are you sure you want "
-"to name this one the same?"
-msgstr "×ª× ××¢× ××××ר×ת ××©× \"%s\" ×§×××ת ××ר. ××× ××× ×ת ×× ×ª× ××¢× ××××ר×ת ×× ××××ª× ×©×?"
+"A Scheduled Transaction with the name \"%s\" already exists. Are you sure you "
+"want to name this one the same?"
+msgstr ""
+"×ª× ××¢× ××××ר×ת ××©× \"%s\" ×§×××ת ××ר. ××× ××× ×ת ×× ×ª× ××¢× ××××ר×ת ×× ××××ª× ×©×?"
#: gnucash/gnome/dialog-sx-editor2.c:766
msgid "Scheduled Transactions with variables cannot be automatically created."
@@ -2720,14 +2784,14 @@ msgstr "×ספר ×××פע×× ×©× ××ª×¨× (%d) ×××× ×××ספר ××××
#: gnucash/gnome/dialog-sx-editor2.c:850 gnucash/gnome/dialog-sx-editor.c:594
msgid ""
-"You have attempted to create a Scheduled Transaction which will never run. Do you "
-"really want to do this?"
+"You have attempted to create a Scheduled Transaction which will never run. Do "
+"you really want to do this?"
msgstr "××ª× ××¢× ×××××ר×ת ××× ×©××צ×ר×, ××£ ×¤×¢× ×× ×ª×¨××¥. ××× ×××ש××?"
#: gnucash/gnome/dialog-sx-editor2.c:1299
msgid ""
-"Note: If you have already accepted changes to the Template, Cancel will not revoke "
-"them."
+"Note: If you have already accepted changes to the Template, Cancel will not "
+"revoke them."
msgstr "×ער×: ×× ××ר × ×ª×§××× ×ש×× ×××× ×ת×× ×ת, ××§×©× ×¢× ××××× ×× ×ª××× ××ת×."
#: gnucash/gnome/dialog-sx-editor2.c:1345 gnucash/gnome/dialog-sx-editor.c:1383
@@ -2736,8 +2800,8 @@ msgstr "(××£ פע×)"
#: gnucash/gnome/dialog-sx-editor2.c:1513 gnucash/gnome/dialog-sx-editor.c:1551
msgid ""
-"The current template transaction has been changed. Would you like to record the "
-"changes?"
+"The current template transaction has been changed. Would you like to record "
+"the changes?"
msgstr "××ª× ××¢× ×× ××××ת ××©×ª× ×ª×. ××× ×רש×× ×ת ×ש×× ××××?"
#: gnucash/gnome/dialog-sx-editor2.c:1780 gnucash/gnome/dialog-sx-editor.c:1831
@@ -2748,8 +2812,8 @@ msgstr "×ª× ××¢×ת ××××ר××ת"
#: gnucash/gnome/dialog-sx-editor.c:616
msgid ""
-"Scheduled Transactions with variables or involving more than one commodity cannot "
-"be automatically created."
+"Scheduled Transactions with variables or involving more than one commodity "
+"cannot be automatically created."
msgstr "×× × ××ª× ××צר ××××¤× ××××××× ×ª× ××¢× ××××ר×ת ×× ××©×ª× ×× ×× ××תר ×ס×××¨× ××ת."
#: gnucash/gnome/dialog-sx-editor.c:674
@@ -2782,17 +2846,17 @@ msgstr "פ×צ×× ×¢× ×××ר %s ×××× × ×ס×ת ×××× ×©××× × × ×
#: gnucash/gnome/dialog-sx-from-trans.c:557
msgid ""
-"The Scheduled Transaction is unbalanced. You are strongly encouraged to correct "
-"this situation."
+"The Scheduled Transaction is unbalanced. You are strongly encouraged to "
+"correct this situation."
msgstr "××ª× ××¢× ×××××ר×ת ××× × ××××× ×ª. ×××××¥ ××ª×§× ××ת."
#: gnucash/gnome/dialog-sx-from-trans.c:788
msgid ""
-"Cannot create a Scheduled Transaction from a Transaction currently being edited. "
-"Please Enter the Transaction before Scheduling."
+"Cannot create a Scheduled Transaction from a Transaction currently being "
+"edited. Please Enter the Transaction before Scheduling."
msgstr ""
-"×× × ××ª× ××צ×ר ×ª× ××¢× ××××ר×ת ××ª× ××¢× ×©× ×צ×ת ×ער×××. × × ××××× ×ת ××ª× ××¢× ××¤× × ×צ×רת "
-"×ª× ××¢× ××××ר×ת."
+"×× × ××ª× ××צ×ר ×ª× ××¢× ××××ר×ת ××ª× ××¢× ×©× ×צ×ת ×ער×××. × × ××××× ×ת ××ª× ××¢× ××¤× × "
+"×צ×רת ×ª× ××¢× ××××ר×ת."
#: gnucash/gnome/dialog-sx-since-last-run.c:389
msgid "Ignored"
@@ -2832,11 +2896,11 @@ msgstr "×ª× ××¢× ×× ×ª×§×× ×"
#: gnucash/gnome/dialog-sx-since-last-run.c:864
#, c-format
msgid ""
-"There are no Scheduled Transactions to be entered at this time. (One transaction "
-"automatically created)"
+"There are no Scheduled Transactions to be entered at this time. (One "
+"transaction automatically created)"
msgid_plural ""
-"There are no Scheduled Transactions to be entered at this time. (%d transactions "
-"automatically created)"
+"There are no Scheduled Transactions to be entered at this time. (%d "
+"transactions automatically created)"
msgstr[0] "××× ×ª× ××¢×ת ××××ר××ת ×ר×ש×× ×¢×ª×. (× ××¦×¨× ×ª× ××¢× ××××ר×ת ××ת ×××××××ת)"
msgstr[1] "××× ×ª× ××¢×ת ××××ר××ת ×ר×ש×× ×¢×ª×. (× ××¦×¨× %d ×ª× ××¢× ××××ר×ת ×××××××ת)"
@@ -2864,8 +2928,8 @@ msgid "Form Line Data: "
msgstr "×× ×ª×× × ×©×ר×: "
#: gnucash/gnome/dialog-tax-info.c:286
-#: gnucash/report/standard-reports/account-summary.scm:442
-#: gnucash/report/standard-reports/sx-summary.scm:443
+#: gnucash/report/standard-reports/account-summary.scm:441
+#: gnucash/report/standard-reports/sx-summary.scm:442
msgid "Code"
msgstr "×§××"
@@ -2877,7 +2941,8 @@ msgstr "×עת"
msgid "Income Tax Identity"
msgstr "×ש×ת ×ס ××× ×¡×"
-#: gnucash/gnome/dialog-tax-info.c:1168 gnucash/gtkbuilder/dialog-options.glade:58
+#: gnucash/gnome/dialog-tax-info.c:1168
+#: gnucash/gtkbuilder/dialog-options.glade:58
#: gnucash/gtkbuilder/dialog-price.glade:88
#: gnucash/gtkbuilder/dialog-reset-warnings.glade:42
msgid "_Apply"
@@ -2888,8 +2953,8 @@ msgid ""
"CAUTION: If you set TXF categories, and later change 'Type', you will need to "
"manually reset those categories one at a time"
msgstr ""
-"×××ר×ת: ×× ×ª×××ר ×§×××ר××ת TXF ××××ר ××× ××©×ª× × ×- ' ס×× ', × ×רש ×××× ××פס ××××¤× ××× × "
-"×§×××ר××ת ××× ××ת ××× ×¤×¢×"
+"×××ר×ת: ×× ×ª×××ר ×§×××ר××ת TXF ××××ר ××× ××©×ª× × ×- ' ס×× ', × ×רש ×××× ××פס ××××¤× "
+"××× × ×§×××ר××ת ××× ××ת ××× ×¤×¢×"
#: gnucash/gnome/dialog-tax-info.c:1369
msgid "Form"
@@ -2938,8 +3003,8 @@ msgstr "××ס×"
#: gnucash/gnome/dialog-vendor.c:214
msgid ""
-"You must enter a company name. If this vendor is an individual (and not a company) "
-"you should enter the same value for:\n"
+"You must enter a company name. If this vendor is an individual (and not a "
+"company) you should enter the same value for:\n"
"Identification - Company Name, and\n"
"Payment Address - Name."
msgstr ""
@@ -2998,8 +3063,8 @@ msgstr "××פ×ש ספק"
#: gnucash/report/report-system/report-utilities.scm:116
#: gnucash/report/standard-reports/advanced-portfolio.scm:1093
#: gnucash/report/standard-reports/balsheet-pnl.scm:1230
-#: gnucash/report/standard-reports/net-charts.scm:409
-#: gnucash/report/standard-reports/net-charts.scm:489
+#: gnucash/report/standard-reports/net-charts.scm:407
+#: gnucash/report/standard-reports/net-charts.scm:487
#: libgnucash/app-utils/prefs.scm:89 libgnucash/engine/Account.cpp:4099
#: libgnucash/engine/Scrub.c:422
msgid "Income"
@@ -3009,8 +3074,8 @@ msgstr "××× ×¡×ת"
#: gnucash/import-export/qif-imp/qif-dialog-utils.scm:80
#: gnucash/import-export/qif-imp/qif-dialog-utils.scm:85
#: gnucash/report/report-system/report-utilities.scm:117
-#: gnucash/report/standard-reports/budget-income-statement.scm:674
-#: gnucash/report/standard-reports/income-statement.scm:610
+#: gnucash/report/standard-reports/budget-income-statement.scm:673
+#: gnucash/report/standard-reports/income-statement.scm:601
msgid "Expenses"
msgstr "××צ××ת"
@@ -3035,7 +3100,7 @@ msgstr "××¢×ר×ת"
#: gnucash/report/standard-reports/budget-flow.scm:169
#: gnucash/report/standard-reports/budget-flow.scm:248
#: gnucash/report/standard-reports/budget.scm:453
-#: gnucash/report/standard-reports/portfolio.scm:279
+#: gnucash/report/standard-reports/portfolio.scm:278
msgid "Total"
msgstr "×¡× ×××"
@@ -3063,8 +3128,9 @@ msgstr "_פת×××..."
msgid "Open an existing GnuCash file"
msgstr "פת××ת ×§×××¥ ×× ××§×ש ×§×××"
-#: gnucash/gnome/gnc-plugin-basic-commands.c:121 gnucash/gnome-utils/gnc-file.c:113
-#: gnucash/gnome-utils/gnc-file.c:614 gnucash/gnome-utils/gnc-main-window.c:1285
+#: gnucash/gnome/gnc-plugin-basic-commands.c:121
+#: gnucash/gnome-utils/gnc-file.c:113 gnucash/gnome-utils/gnc-file.c:614
+#: gnucash/gnome-utils/gnc-main-window.c:1285
#: gnucash/html/gnc-html-webkit1.c:1198
msgid "_Save"
msgstr "_ש××ר×"
@@ -3230,11 +3296,11 @@ msgstr "××× ×עת ×ª× ××¢×ת ××××ר××ת ×רש××."
#: gnucash/gnome/gnc-plugin-basic-commands.c:559
#, c-format
msgid ""
-"There are no Scheduled Transactions to be entered at this time. (%d transaction "
-"automatically created)"
+"There are no Scheduled Transactions to be entered at this time. (%d "
+"transaction automatically created)"
msgid_plural ""
-"There are no Scheduled Transactions to be entered at this time. (%d transactions "
-"automatically created)"
+"There are no Scheduled Transactions to be entered at this time. (%d "
+"transactions automatically created)"
msgstr[0] "×× ×§×××ת ×ª× ××¢× ××××ר×ת ×ר×ש×× ×עת. (%d × ××¦×¨× ×××××××ת)"
msgstr[1] "×× ×§××××ת ×ª× ××¢×ת ××××ר××ת ×ר×ש×× ×עת. (%d × ××¦×¨× ×××××××ת)"
@@ -3268,7 +3334,8 @@ msgstr "×××רת תקצ××"
#: gnucash/gnome/gnc-plugin-budget.c:302 gnucash/gnome/gnc-split-reg.c:1209
#: gnucash/gnome/gnc-split-reg.c:1340 gnucash/gnome-search/search-account.c:238
-#: gnucash/gnome-utils/dialog-account.c:658 gnucash/gnome-utils/gnc-gui-query.c:297
+#: gnucash/gnome-utils/dialog-account.c:658
+#: gnucash/gnome-utils/gnc-gui-query.c:297
#: gnucash/gtkbuilder/assistant-xml-encoding.glade:206
#: gnucash/gtkbuilder/dialog-account.glade:38
#: gnucash/gtkbuilder/dialog-account.glade:633
@@ -3291,13 +3358,15 @@ msgstr "×××רת תקצ××"
#: gnucash/gtkbuilder/dialog-import.glade:632
#: gnucash/gtkbuilder/dialog-import.glade:1247
#: gnucash/gtkbuilder/dialog-invoice.glade:631
-#: gnucash/gtkbuilder/dialog-invoice.glade:1129 gnucash/gtkbuilder/dialog-job.glade:59
+#: gnucash/gtkbuilder/dialog-invoice.glade:1129
+#: gnucash/gtkbuilder/dialog-job.glade:59
#: gnucash/gtkbuilder/dialog-new-user.glade:167
#: gnucash/gtkbuilder/dialog-object-references.glade:26
#: gnucash/gtkbuilder/dialog-options.glade:75
#: gnucash/gtkbuilder/dialog-order.glade:473
#: gnucash/gtkbuilder/dialog-payment.glade:97
-#: gnucash/gtkbuilder/dialog-price.glade:102 gnucash/gtkbuilder/dialog-price.glade:403
+#: gnucash/gtkbuilder/dialog-price.glade:102
+#: gnucash/gtkbuilder/dialog-price.glade:403
#: gnucash/gtkbuilder/dialog-print-check.glade:162
#: gnucash/gtkbuilder/dialog-progress.glade:137
#: gnucash/gtkbuilder/dialog-report.glade:473
@@ -3311,8 +3380,8 @@ msgstr "×××רת תקצ××"
#: gnucash/gtkbuilder/dialog-userpass.glade:40
#: gnucash/gtkbuilder/dialog-vendor.glade:83
#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:48
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:286
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:475
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:278
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:465
#: gnucash/gtkbuilder/gnc-plugin-page-register2.glade:48
#: gnucash/gtkbuilder/gnc-plugin-page-register2.glade:207
#: gnucash/gtkbuilder/gnc-plugin-page-register2.glade:722
@@ -3336,7 +3405,8 @@ msgstr "_××ש×ר"
#. Toplevel
#. Extensions Menu
-#: gnucash/gnome/gnc-plugin-business.c:152 gnucash/gnome/gnc-plugin-business.c:297
+#: gnucash/gnome/gnc-plugin-business.c:152
+#: gnucash/gnome/gnc-plugin-business.c:297
#: gnucash/report/report-system/report.scm:73
msgid "_Business"
msgstr "_עסק×"
@@ -3371,12 +3441,14 @@ msgstr "_××פ×ש ××§××..."
msgid "Open the Find Customer dialog"
msgstr "פת××ת ××-ש×× ××פ×ש ××§××"
-#: gnucash/gnome/gnc-plugin-business.c:172 gnucash/gnome/gnc-plugin-business.c:311
+#: gnucash/gnome/gnc-plugin-business.c:172
+#: gnucash/gnome/gnc-plugin-business.c:311
#: gnucash/gnome/gnc-plugin-page-owner-tree.c:198
msgid "New _Invoice..."
msgstr "×ש××× ×ת _××ש×..."
-#: gnucash/gnome/gnc-plugin-business.c:173 gnucash/gnome/gnc-plugin-business.c:312
+#: gnucash/gnome/gnc-plugin-business.c:173
+#: gnucash/gnome/gnc-plugin-business.c:312
msgid "Open the New Invoice dialog"
msgstr "פת××ת ××-ש×× ×ש××× ×ת ××ש×"
@@ -3388,28 +3460,34 @@ msgstr "××פ×ש _×ש××× ×ת..."
msgid "Open the Find Invoice dialog"
msgstr "פת××ת ×× ×©××× ××פ×ש ×ש××× ×ת"
-#: gnucash/gnome/gnc-plugin-business.c:182 gnucash/gnome/gnc-plugin-business.c:225
+#: gnucash/gnome/gnc-plugin-business.c:182
+#: gnucash/gnome/gnc-plugin-business.c:225
msgid "New _Job..."
msgstr "_ר×××× ××ש..."
-#: gnucash/gnome/gnc-plugin-business.c:183 gnucash/gnome/gnc-plugin-business.c:226
+#: gnucash/gnome/gnc-plugin-business.c:183
+#: gnucash/gnome/gnc-plugin-business.c:226
msgid "Open the New Job dialog"
msgstr "פת××ת ××-ש×× ×¨×××× ××ש"
-#: gnucash/gnome/gnc-plugin-business.c:187 gnucash/gnome/gnc-plugin-business.c:230
+#: gnucash/gnome/gnc-plugin-business.c:187
+#: gnucash/gnome/gnc-plugin-business.c:230
msgid "Find Jo_b..."
msgstr "××פ×ש _ר××××..."
-#: gnucash/gnome/gnc-plugin-business.c:188 gnucash/gnome/gnc-plugin-business.c:231
+#: gnucash/gnome/gnc-plugin-business.c:188
+#: gnucash/gnome/gnc-plugin-business.c:231
msgid "Open the Find Job dialog"
msgstr "פת××ת ××-ש×× ××פ×ש ר××××"
-#: gnucash/gnome/gnc-plugin-business.c:192 gnucash/gnome/gnc-plugin-business.c:235
+#: gnucash/gnome/gnc-plugin-business.c:192
+#: gnucash/gnome/gnc-plugin-business.c:235
#: gnucash/gnome/gnc-plugin-business.c:268
msgid "_Process Payment..."
msgstr "_×¢×××× ×ª×©×××××..."
-#: gnucash/gnome/gnc-plugin-business.c:193 gnucash/gnome/gnc-plugin-business.c:236
+#: gnucash/gnome/gnc-plugin-business.c:193
+#: gnucash/gnome/gnc-plugin-business.c:236
#: gnucash/gnome/gnc-plugin-business.c:269
msgid "Open the Process Payment dialog"
msgstr "פת××ת ××-ש×× ×¢×××× ×ª×©×××××"
@@ -3541,11 +3619,13 @@ msgstr "פת××ת ×××× ××-ש×× ×ª×××רת ×ש××× ××ת ×××××
msgid "E_xport"
msgstr "×_×צ××"
-#: gnucash/gnome/gnc-plugin-business.c:299 gnucash/gnome/gnc-plugin-business.c:300
+#: gnucash/gnome/gnc-plugin-business.c:299
+#: gnucash/gnome/gnc-plugin-business.c:300
msgid "Test Search Dialog"
-msgstr "×××קת ××-ש×× ××פ×ס"
+msgstr "×××קת ××-ש×× ××פ×ש"
-#: gnucash/gnome/gnc-plugin-business.c:304 gnucash/gnome/gnc-plugin-business.c:305
+#: gnucash/gnome/gnc-plugin-business.c:304
+#: gnucash/gnome/gnc-plugin-business.c:305
msgid "Initialize Test Data"
msgstr "×ת××× × ×ª×× × ××××§×"
@@ -3733,15 +3813,15 @@ msgstr "ס×××¨× ×××××××ת ×©× ×ª× ××¢×ת פר×× ××ת, ×¢× ×¡×
#: gnucash/gnome/gnc-plugin-page-account-tree.c:275
#: gnucash/gnome/gnc-plugin-page-register2.c:338
-#: gnucash/gnome/gnc-plugin-page-register.c:362 gnucash/gnome/window-reconcile2.c:2213
-#: gnucash/gnome/window-reconcile.c:2297
+#: gnucash/gnome/gnc-plugin-page-register.c:362
+#: gnucash/gnome/window-reconcile2.c:2213 gnucash/gnome/window-reconcile.c:2297
msgid "_Transfer..."
msgstr "_××¢×ר×..."
#: gnucash/gnome/gnc-plugin-page-account-tree.c:276
#: gnucash/gnome/gnc-plugin-page-register2.c:339
-#: gnucash/gnome/gnc-plugin-page-register.c:363 gnucash/gnome/window-reconcile2.c:2214
-#: gnucash/gnome/window-reconcile.c:2298
+#: gnucash/gnome/gnc-plugin-page-register.c:363
+#: gnucash/gnome/window-reconcile2.c:2214 gnucash/gnome/window-reconcile.c:2298
msgid "Transfer funds from one account to another"
msgstr "××¢×רת ×ספ×× ××ש××× ××× ×××©× ××"
@@ -3775,7 +3855,8 @@ msgstr "×××קת ×ת××§×× ×_ש×××"
#: gnucash/gnome/gnc-plugin-page-account-tree.c:291
#: gnucash/gnome/window-reconcile2.c:2219 gnucash/gnome/window-reconcile.c:2303
-msgid "Check for and repair unbalanced transactions and orphan splits in this account"
+msgid ""
+"Check for and repair unbalanced transactions and orphan splits in this account"
msgstr "××××§× ×ת××§×× ×ª× ××¢×ת ×× ××××× ×× ×פ×צ×××× ×ת×××× ××ש××× ××"
#: gnucash/gnome/gnc-plugin-page-account-tree.c:295
@@ -3784,16 +3865,18 @@ msgstr "×××קת ×ת××§×× ×ש_××× ×ת ××©× ×"
#: gnucash/gnome/gnc-plugin-page-account-tree.c:296
msgid ""
-"Check for and repair unbalanced transactions and orphan splits in this account and "
-"its subaccounts"
-msgstr "××××§× ×ת××§×× ×ª× ××¢×ת ×× ××××× ×× ×פ×צ×××× ×ת×××× ××ש××× ×× ×××ש××× ×ת ×××©× × ×©××"
+"Check for and repair unbalanced transactions and orphan splits in this account "
+"and its subaccounts"
+msgstr ""
+"××××§× ×ת××§×× ×ª× ××¢×ת ×× ××××× ×× ×פ×צ×××× ×ת×××× ××ש××× ×× ×××ש××× ×ת ×××©× × ×©××"
#: gnucash/gnome/gnc-plugin-page-account-tree.c:301
msgid "Check & Repair A_ll"
msgstr "××××§× ×ת××§×× ×_××"
#: gnucash/gnome/gnc-plugin-page-account-tree.c:302
-msgid "Check for and repair unbalanced transactions and orphan splits in all accounts"
+msgid ""
+"Check for and repair unbalanced transactions and orphan splits in all accounts"
msgstr "××××§× ×ת××§×× ×ª× ××¢×ת ×× ××ת×××ת ×פ×צ×××× ×ת×××× ××× ××ש××× ×ת"
#. Extensions Menu
@@ -3885,8 +3968,8 @@ msgstr "×ש××× ×ת"
msgid ""
"The list below shows objects which make use of the account which you want to "
"delete.\n"
-"Before you can delete it, you must either delete those objects or else modify them "
-"so they make use\n"
+"Before you can delete it, you must either delete those objects or else modify "
+"them so they make use\n"
"of another account"
msgstr ""
"×רש××× ×©×××× ×צ××× ××××××§××× ×©×¢×ש×× ×©×××ש ××ש××× ×©× ××ר ×××××§×.\n"
@@ -3952,8 +4035,8 @@ msgid "Delete this budget"
msgstr "×××קת תקצ×× ××"
#: gnucash/gnome/gnc-plugin-page-budget.c:148
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:437
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:642
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:427
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:632
msgid "Budget Options"
msgstr "×פשר×××ת ×תקצ××"
@@ -4407,7 +4490,8 @@ msgid "Dup_licate Transaction"
msgstr "ש×_פ×× ×ª× ××¢×"
#: gnucash/gnome/gnc-plugin-page-register2.c:196
-#: gnucash/gnome/gnc-plugin-page-register.c:208 gnucash/gnome/gnc-split-reg.c:1694
+#: gnucash/gnome/gnc-plugin-page-register.c:208
+#: gnucash/gnome/gnc-split-reg.c:1694
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1064
msgid "_Delete Transaction"
msgstr "_×××קת ×ª× ××¢×"
@@ -4433,7 +4517,8 @@ msgid "Dup_licate Split"
msgstr "ש×_פ×× ×¤×צ××"
#: gnucash/gnome/gnc-plugin-page-register2.c:201
-#: gnucash/gnome/gnc-plugin-page-register.c:216 gnucash/gnome/gnc-split-reg.c:1654
+#: gnucash/gnome/gnc-plugin-page-register.c:216
+#: gnucash/gnome/gnc-split-reg.c:1654
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1024
msgid "_Delete Split"
msgstr "×××קת _פ×צ××"
@@ -4578,11 +4663,11 @@ msgstr "××¢×רת ×ª× ××¢× _××¢××"
#: gnucash/gnome/gnc-plugin-page-register2.c:314
msgid ""
-"Move the current transaction one row upwards. Only available if the date and number "
-"of both rows are identical and the register window is sorted by date."
+"Move the current transaction one row upwards. Only available if the date and "
+"number of both rows are identical and the register window is sorted by date."
msgstr ""
-"××¢×רת ××ª× ××¢× ×× ××××ת ש××¨× ××ת ××¢××. ××¤×©×¨× ×¨×§ ××שר ×ת×ר×××× ××ס×××××× ××©×ª× ×ש×ר×ת "
-"×××× ×××××× ××××× ××¤× ×ª×ר××."
+"××¢×רת ××ª× ××¢× ×× ××××ת ש××¨× ××ת ××¢××. ××¤×©×¨× ×¨×§ ××שר ×ת×ר×××× ××ס×××××× ××©×ª× "
+"×ש×ר×ת ×××× ×××××× ××××× ××¤× ×ª×ר××."
#: gnucash/gnome/gnc-plugin-page-register2.c:318
msgid "Move Transaction Do_wn"
@@ -4593,14 +4678,15 @@ msgid ""
"Move the current transaction one row downwards. Only available if the date and "
"number of both rows are identical and the register window is sorted by date."
msgstr ""
-"××¢×רת ××ª× ××¢× ×× ××××ת ש××¨× ××ת ×××. ××¤×©×¨× ×¨×§ ××שר ×ת×ר×××× ××ס×××××× ××©×ª× ×ש×ר×ת "
-"×××× ×××××× ××××× ××¤× ×ª×ר××."
+"××¢×רת ××ª× ××¢× ×× ××××ת ש××¨× ××ת ×××. ××¤×©×¨× ×¨×§ ××שר ×ת×ר×××× ××ס×××××× ××©×ª× "
+"×ש×ר×ת ×××× ×××××× ××××× ××¤× ×ª×ר××."
#: gnucash/gnome/gnc-plugin-page-register2.c:349
#: gnucash/gnome/gnc-plugin-page-register.c:373
msgid ""
-"Automatically clear individual transactions, so as to reach a certain cleared amount"
-msgstr "×ת××× ×××××××ת ×©× ×ª× ××¢×ת פר×× ××ת, ××× ×××××¢ ×ס××× ××ת×× ×ס××××"
+"Automatically clear individual transactions, so as to reach a certain cleared "
+"amount"
+msgstr "×ת××× ×××××××ת ×©× ×ª× ××¢×ת פר×× ××ת, ××× ×××××¢ ×ס××× ×ת××× ×ס×××"
#: gnucash/gnome/gnc-plugin-page-register2.c:363
#: gnucash/gnome/gnc-plugin-page-register.c:387
@@ -4737,7 +4823,7 @@ msgstr "×צ×ת ×ª× ××¢× ××ר××ת ×¢× ×× ×פ×צ××××"
#: gnucash/gnome/gnc-plugin-page-register.c:503
#: gnucash/gnome-utils/gnc-tree-model-split-reg.c:2877
#: gnucash/register/ledger-core/split-register.c:2600
-#: gnucash/register/ledger-core/split-register-layout.c:727
+#: gnucash/register/ledger-core/split-register-layout.c:715
#: gnucash/register/ledger-core/split-register-model.c:342
#: gnucash/report/standard-reports/register.scm:143
msgid "Transfer"
@@ -4755,14 +4841,15 @@ msgid "Schedule"
msgstr "ת××××"
#: gnucash/gnome/gnc-plugin-page-register2.c:492
-#: gnucash/gnome/gnc-plugin-page-register.c:512 gnucash/gnome/window-autoclear.c:92
+#: gnucash/gnome/gnc-plugin-page-register.c:512
+#: gnucash/gnome/window-autoclear.c:92
msgid "Auto-clear"
msgstr "×ת××× ×××××××ת"
#: gnucash/gnome/gnc-plugin-page-register2.c:655
msgid ""
-"You have tried to open an account in the new register while it is open in the old "
-"register."
+"You have tried to open an account in the new register while it is open in the "
+"old register."
msgstr "×× × ××ª× ×פת×× ×ש××× ××××× ××ש ×××× ×©××× ×¤×ª×× ××××× ××ר."
#: gnucash/gnome/gnc-plugin-page-register2.c:728
@@ -4814,7 +4901,8 @@ msgstr "×× ××××¢"
#: gnucash/gnome/gnc-plugin-page-register2.c:2384
#: gnucash/gnome/gnc-plugin-page-register.c:762
#: gnucash/gnome/gnc-plugin-page-register.c:1794
-#: gnucash/gnome/gnc-plugin-page-register.c:3257 gnucash/gnome/gnc-split-reg.c:720
+#: gnucash/gnome/gnc-plugin-page-register.c:3257
+#: gnucash/gnome/gnc-split-reg.c:720
#: gnucash/report/standard-reports/general-journal.scm:37
msgid "General Journal"
msgstr "×××× ××××"
@@ -4881,7 +4969,7 @@ msgstr "××ש××× ×ת ××©× ×"
#: gnucash/report/report-system/trep-engine.scm:1337
#: gnucash/report/standard-reports/general-journal.scm:90
#: gnucash/report/standard-reports/register.scm:371
-#: gnucash/report/standard-reports/trial-balance.scm:739
+#: gnucash/report/standard-reports/trial-balance.scm:731
#: libgnucash/app-utils/guile-util.c:850
msgid "Credit"
msgstr "×××ת"
@@ -4896,7 +4984,7 @@ msgstr "×××ת"
#: gnucash/report/report-system/trep-engine.scm:1334
#: gnucash/report/standard-reports/general-journal.scm:89
#: gnucash/report/standard-reports/register.scm:369
-#: gnucash/report/standard-reports/trial-balance.scm:736
+#: gnucash/report/standard-reports/trial-balance.scm:728
#: libgnucash/app-utils/guile-util.c:819
msgid "Debit"
msgstr "××××"
@@ -4909,11 +4997,11 @@ msgstr "××פסת ×××××ת ××ש××× ×ת ×ר××××?"
#: gnucash/gnome/gnc-plugin-page-register2.c:2623
#: gnucash/gnome/gnc-plugin-page-register.c:3460
msgid ""
-"This search result contains splits from more than one account. Do you want to print "
-"the checks even though they are not all from the same account?"
+"This search result contains splits from more than one account. Do you want to "
+"print the checks even though they are not all from the same account?"
msgstr ""
-"ת×צ×ת ××פ×ש ×× ××××× ×¤×צ×××× ×××תר ××ש××× ×××. ××× ×××פ×ס ×ת ××××××ת ××ר×ת ש×× ×××× "
-"××××ª× ×ש×××?"
+"ת×צ×ת ××פ×ש ×× ××××× ×¤×צ×××× ×××תר ××ש××× ×××. ××× ×××פ×ס ×ת ××××××ת ××ר×ת ש×× "
+"×××× ××××ª× ×ש×××?"
#: gnucash/gnome/gnc-plugin-page-register2.c:2633
#: gnucash/gnome/gnc-plugin-page-register.c:3470
@@ -4933,7 +5021,7 @@ msgstr "×× × ××ª× ×××× ×ª× ××¢× ×¢× ×¤×צ×× ×©××ת×× ×× × ×¡
#. Translators: The %s is the name of the plugin page
#: gnucash/gnome/gnc-plugin-page-register2.c:2988
#: gnucash/gnome/gnc-plugin-page-register.c:3906
-#: gnucash/gnome-utils/gnc-tree-view-account.c:2210
+#: gnucash/gnome-utils/gnc-tree-view-account.c:2208
#: gnucash/gnome-utils/gnc-tree-view-owner.c:1177
#, c-format
msgid "Filter %s by..."
@@ -4986,8 +5074,8 @@ msgstr "פת××ת ×§×××¥/×××§××"
#: gnucash/gnome/gnc-plugin-page-register.c:691
msgid ""
-"You have tried to open an account in the old register while it is open in the new "
-"register."
+"You have tried to open an account in the old register while it is open in the "
+"new register."
msgstr "×× × ××ª× ×פת×× ×ש××× ××××× ××©× ×××× ×©××× ×¤×ª×× ××××× ××ש."
#: gnucash/gnome/gnc-plugin-page-register.c:3131
@@ -4996,9 +5084,10 @@ msgstr "ס×× ×× ×פ×:"
#: gnucash/gnome/gnc-plugin-page-register.c:3145
#: gnucash/gtkbuilder/assistant-loan.glade:164
-#: gnucash/gtkbuilder/assistant-loan.glade:1236 gnucash/gtkbuilder/dialog-sx.glade:263
+#: gnucash/gtkbuilder/assistant-loan.glade:1236
+#: gnucash/gtkbuilder/dialog-sx.glade:263
#: gnucash/gtkbuilder/gnc-frequency.glade:606
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:345
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:337
msgid "Start Date:"
msgstr "ת×ר×× ×ת×××:"
@@ -5007,7 +5096,8 @@ msgid "Show previous number of days:"
msgstr "×צ×ת ×ספר ×××× ×§×××ת:"
#: gnucash/gnome/gnc-plugin-page-register.c:3157
-#: gnucash/gtkbuilder/assistant-loan.glade:1248 gnucash/gtkbuilder/dialog-sx.glade:335
+#: gnucash/gtkbuilder/assistant-loan.glade:1248
+#: gnucash/gtkbuilder/dialog-sx.glade:335
msgid "End Date:"
msgstr "ת×ר×× ×¡×××:"
@@ -5033,13 +5123,13 @@ msgstr "ס××ר××"
#: gnucash/report/report-system/trep-engine.scm:121
#: gnucash/report/report-system/trep-engine.scm:400
msgid "Reconciled"
-msgstr "××ת××"
+msgstr "××ת××××"
#: gnucash/gnome/gnc-plugin-page-register.c:3170
#: gnucash/gnome-search/search-reconciled.c:224
#: gnucash/report/report-system/trep-engine.scm:122
msgid "Frozen"
-msgstr "××קפ×"
+msgstr "××קפ×"
#: gnucash/gnome/gnc-plugin-page-register.c:3171
#: gnucash/gnome-search/search-reconciled.c:227
@@ -5062,13 +5152,15 @@ msgstr "×צ××:"
msgid "Transaction Report"
msgstr "××× ×ª× ××¢×ת"
-#: gnucash/gnome/gnc-plugin-page-register.c:3672 gnucash/gnome/gnc-split-reg.c:1089
+#: gnucash/gnome/gnc-plugin-page-register.c:3672
+#: gnucash/gnome/gnc-split-reg.c:1089
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:68
#, c-format
msgid "This transaction is marked read-only with the comment: '%s'"
msgstr "×ª× ××¢× ×× ×ס××× ×ª ××ª× ××¢× ×קר××× ×××× ×¢× ××ער×: '%s'"
-#: gnucash/gnome/gnc-plugin-page-register.c:3745 gnucash/gnome/gnc-split-reg.c:1060
+#: gnucash/gnome/gnc-plugin-page-register.c:3745
+#: gnucash/gnome/gnc-split-reg.c:1060
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1121
msgid "A reversing entry has already been created for this transaction."
msgstr "× ××¦×¨× ××ר ×ª× ×עת ×××× ××ª×§× ×ª ××ª× ××¢× ××."
@@ -5094,7 +5186,7 @@ msgstr "_×ת××××"
#: gnucash/gtkbuilder/dialog-report.glade:339
#: gnucash/gtkbuilder/dialog-report.glade:626
#: gnucash/gtkbuilder/dialog-tax-table.glade:147
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:755
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:745
msgid "_New"
msgstr "_××ש"
@@ -5104,7 +5196,7 @@ msgstr "×צ×רת ×ª× ××¢× ××××ר×ת ××ש×"
#: gnucash/gnome/gnc-plugin-page-sx-list.c:143
msgid "_New 2"
-msgstr "_××ש2"
+msgstr "_××ש 2"
#: gnucash/gnome/gnc-plugin-page-sx-list.c:144
msgid "Create a new scheduled transaction 2"
@@ -5116,7 +5208,7 @@ msgstr "ער××ת ××ª× ××¢× ×××××ר×ת ×©× ××ר×"
#: gnucash/gnome/gnc-plugin-page-sx-list.c:155
msgid "_Edit 2"
-msgstr "_ער×××2"
+msgstr "_ער××× 2"
#: gnucash/gnome/gnc-plugin-page-sx-list.c:156
msgid "Edit the selected scheduled transaction 2"
@@ -5152,7 +5244,8 @@ msgstr "_×××× ××××"
msgid "Open a general journal window"
msgstr "פת××ת ×××× ×××× ××××"
-#: gnucash/gnome/gnc-plugin-register2.c:66 gnucash/gnome/gnc-plugin-register2.c:67
+#: gnucash/gnome/gnc-plugin-register2.c:66
+#: gnucash/gnome/gnc-plugin-register2.c:67
msgid "Register2 Open GL Account"
msgstr "××××2 פת××ת ×ש××× ×¡×¤×¨ ר×ש×"
@@ -5202,15 +5295,16 @@ msgstr "×¢×¨× × ××××:"
#: gnucash/gnome/gnc-split-reg2.c:886
msgid "Account Payable / Receivable Register"
-msgstr "×××× ×××××× /×××××"
+msgstr "×××× ×××××× / ×××××"
#: gnucash/gnome/gnc-split-reg2.c:888
msgid ""
-"The register displayed is for Account Payable or Account Receivable. Changing the "
-"entries may cause harm, please use the business options to change the entries."
+"The register displayed is for Account Payable or Account Receivable. Changing "
+"the entries may cause harm, please use the business options to change the "
+"entries."
msgstr ""
-"××××× ××××¦× ××× ×¢××ר ×ש××× ××××× ×× ××××××. ש×× ×× ×ער××× ×¢××× ××ר×× × ××§, × × ××שת×ש "
-"××פשר×××ת ×עסק××ת ×ש×× ×× ×ער×××."
+"××××× ××××¦× ××× ×¢××ר ×ש××× ××××× ×× ××××××. ש×× ×× ×ער××× ×¢××× ××ר×× × ××§, × × "
+"××שת×ש ××פשר×××ת ×עסק××ת ×ש×× ×× ×ער×××."
#: gnucash/gnome/gnc-split-reg2.c:937 gnucash/gnome/gnc-split-reg.c:2555
msgid "This account register is read-only."
@@ -5218,8 +5312,9 @@ msgstr "×××× ×ש××× ×× ×ס××× ×קר××× ××××."
#: gnucash/gnome/gnc-split-reg2.c:980 gnucash/gnome/gnc-split-reg.c:2598
msgid ""
-"This account may not be edited. If you want to edit transactions in this register, "
-"please open the account options and turn off the placeholder checkbox."
+"This account may not be edited. If you want to edit transactions in this "
+"register, please open the account options and turn off the placeholder "
+"checkbox."
msgstr ""
"×× × ××ª× ×ער×× ×ש××× ××. ×× ×רצ×× ×× ×ער×× ×ª× ××¢×ת ××××× ××, × × ×פת×× ×ת ×פשר×××ת "
"××ש××× ×××ס×ר ×ת ×ס×××× ×ת××ת ×ס×××× 'ש××ר ××§××'."
@@ -5227,13 +5322,13 @@ msgstr ""
#: gnucash/gnome/gnc-split-reg2.c:987 gnucash/gnome/gnc-split-reg.c:2605
msgid ""
"One of the sub-accounts selected may not be edited. If you want to edit "
-"transactions in this register, please open the sub-account options and turn off the "
-"placeholder checkbox. You may also open an individual account instead of a set of "
-"accounts."
+"transactions in this register, please open the sub-account options and turn "
+"off the placeholder checkbox. You may also open an individual account instead "
+"of a set of accounts."
msgstr ""
-"×× × ××ª× ×ער×× ×ת ××× ×ש××× ×ת ×××©× ×. ×¢× ×× ×ª ×ער×× ×ª× ××¢×ת ××××× ××ª× ××¢×ת, × × ×פת×× ×ת "
-"×פשר×××ת ×ש××× ××©× × ×××ס×ר ×ת ס×××× 'ש××ר ××§××' ×ת××ת ×ס×××× . × ××ª× ×× ×פת×× ×ש××× "
-"××××× × ×××§×× ×¡××¨× ×©× ×ש××× ×ת."
+"×× × ××ª× ×ער×× ×ת ××× ×ש××× ×ת ×××©× ×. ×¢× ×× ×ª ×ער×× ×ª× ××¢×ת ××××× ××ª× ××¢×ת, × × "
+"×פת×× ×ת ×פשר×××ת ×ש××× ××©× × ×××ס×ר ×ת ס×××× 'ש××ר ××§××' ×ת××ת ×ס××××. × ××ª× ×× "
+"×פת×× ×ש××× ××××× × ×××§×× ×¡××¨× ×©× ×ש××× ×ת."
#: gnucash/gnome/gnc-split-reg.c:600
msgid "Standard Order"
@@ -5270,9 +5365,10 @@ msgstr "×××רת ×פ×צ×× '%s' ×××ª× ××¢× '%s'?"
#: gnucash/gnome/gnc-split-reg.c:843
msgid ""
-"You would be removing a reconciled split! This is not a good idea as it will cause "
-"your reconciled balance to be off."
-msgstr "פ×צ×× ××ת×× ××סר! ×× ××ש רע××× ××× ×©×× ×× ××ר×× ×××ª×¨× ×××ת××ת ×צ×ת ××××××."
+"You would be removing a reconciled split! This is not a good idea as it will "
+"cause your reconciled balance to be off."
+msgstr ""
+"פ×צ×× ××ת×× ××סר! ×× ××ש רע××× ××× ×©×× ×× ××ר×× ×××ª×¨× ×××ת××ת ×צ×ת ××××××."
#: gnucash/gnome/gnc-split-reg.c:846
msgid "You cannot cut this split."
@@ -5280,14 +5376,14 @@ msgstr "×× × ××ª× ××××ר פ×צ×× ××."
#: gnucash/gnome/gnc-split-reg.c:847
msgid ""
-"This is the split anchoring this transaction to the register. You may not remove it "
-"from this register window. You may remove the entire transaction from this window, "
-"or you may navigate to a register that shows another side of this same transaction "
-"and remove the split from that register."
+"This is the split anchoring this transaction to the register. You may not "
+"remove it from this register window. You may remove the entire transaction "
+"from this window, or you may navigate to a register that shows another side of "
+"this same transaction and remove the split from that register."
msgstr ""
-"פ×צ×× ×× ×××ר ×ת ××ª× ××¢× ×××××. ×× × ××ª× ××ס×ר ×××ª× ××××× ××××× ××. × ××ª× ××ס×ר ×ת ×× "
-"××ª× ××¢× ××××× ××ת ×× ×× ××× ××××× ×©×צ×× ×ת ××ש××× ×× ××× ×©× ××ª× ××¢× ×××ס×ר ×ת ×פ×צ×× "
-"××××××."
+"פ×צ×× ×× ×××ר ×ת ××ª× ××¢× ×××××. ×× × ××ª× ××ס×ר ×××ª× ××××× ××××× ××. × ××ª× ××ס×ר "
+"×ת ×× ××ª× ××¢× ××××× ××ת ×× ×× ××× ××××× ×©×צ×× ×ת ××ש××× ×× ××× ×©× ××ª× ××¢× ×××ס×ר "
+"×ת ×פ×צ×× ××××××."
#: gnucash/gnome/gnc-split-reg.c:877 gnucash/gnome/gnc-split-reg.c:1626
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:996
@@ -5309,11 +5405,11 @@ msgstr "×××רת ××ª× ××¢× ×× ××××ת?"
#: gnucash/gnome/gnc-split-reg.c:920
msgid ""
-"You would be removing a transaction with reconciled splits! This is not a good idea "
-"as it will cause your reconciled balance to be off."
+"You would be removing a transaction with reconciled splits! This is not a good "
+"idea as it will cause your reconciled balance to be off."
msgstr ""
-"×ª× ××¢× ×¢× ×¤×צ×××× ××ת×××× ×ª×סר! ×× ××ש רע××× ××× ×©×× ×× ××ר×× ×××ª×¨× ×××ת××ת ×צ×ת "
-"××××××."
+"×ª× ××¢× ×¢× ×¤×צ×××× ××ת×××× ×ª×סר! ×× ××ש רע××× ××× ×©×× ×× ××ר×× ×××ª×¨× ×××ת××ת "
+"×צ×ת ××××××."
#: gnucash/gnome/gnc-split-reg.c:943
msgid "_Cut Transaction"
@@ -5327,8 +5423,8 @@ msgstr "×× × ××ª× ××ס××× ×× ×××××§ ×ת ××ª× ××¢×."
#: gnucash/gnome/gnc-split-reg.c:1101
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:83
msgid ""
-"The date of this transaction is older than the \"Read-Only Threshold\" set for this "
-"book. This setting can be changed in File -> Properties -> Accounts."
+"The date of this transaction is older than the \"Read-Only Threshold\" set for "
+"this book. This setting can be changed in File -> Properties -> Accounts."
msgstr ""
"ת×ר×× ××ª× ××¢× ×§××× ××תר ××¢×¨× \"סף ×קר××× ××××\" ×¢××ר ספר ×ש××× ×ת ××. × ××ª× ××©× ×ת "
"××××¨× ×× ×תפר×× ×§×××¥-> ××פ××× ××-> ×ש××× ×ת."
@@ -5358,7 +5454,8 @@ msgid "Associate File with Transaction"
msgstr "צר××£ ×§×××¥ ××ª× ××¢×"
#: gnucash/gnome/gnc-split-reg.c:1207 gnucash/gnome/gnc-split-reg.c:1335
-#: gnucash/gnome-search/dialog-search.c:693 gnucash/gnome-utils/gnc-recurrence.c:552
+#: gnucash/gnome-search/dialog-search.c:693
+#: gnucash/gnome-utils/gnc-recurrence.c:552
#: gnucash/gtkbuilder/dialog-commodities.glade:140
#: gnucash/gtkbuilder/dialog-price.glade:851
msgid "_Remove"
@@ -5393,9 +5490,10 @@ msgstr "×××קת ×פ×צ×× '%s' ×××ª× ××¢× '%s'?"
#: gnucash/gnome/gnc-split-reg.c:1591
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:964
msgid ""
-"You would be deleting a reconciled split! This is not a good idea as it will cause "
-"your reconciled balance to be off."
-msgstr "פ×צ×× ××ת×× ××××§! ×× ××ש רע××× ××× ×©×× ×× ××ר×× ×××ª×¨× ××ת××ת ×צ×ת ××××××."
+"You would be deleting a reconciled split! This is not a good idea as it will "
+"cause your reconciled balance to be off."
+msgstr ""
+"פ×צ×× ××ת×× ××××§! ×× ××ש רע××× ××× ×©×× ×× ××ר×× ×××ª×¨× ××ת××ת ×צ×ת ××××××."
#: gnucash/gnome/gnc-split-reg.c:1594
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:967
@@ -5405,13 +5503,14 @@ msgstr "×× × ××ª× ×××××§ פ×צ×× ××."
#: gnucash/gnome/gnc-split-reg.c:1595
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:968
msgid ""
-"This is the split anchoring this transaction to the register. You may not delete it "
-"from this register window. You may delete the entire transaction from this window, "
-"or you may navigate to a register that shows another side of this same transaction "
-"and delete the split from that register."
+"This is the split anchoring this transaction to the register. You may not "
+"delete it from this register window. You may delete the entire transaction "
+"from this window, or you may navigate to a register that shows another side of "
+"this same transaction and delete the split from that register."
msgstr ""
-"פ×צ×× ×× ×××ר ×ת ××ª× ××¢× ×××××. ×× × ××ª× ×××××§ ×××ª× ××××× ×××× ××. × ××ª× ×××××§ ×ת ×× "
-"××ª× ××¢× ××××× ××, ×× ××¢××ר ××××× ×©×צ×× ×ת ××ª× ××¢× ××ש××× ×× ××× ××××××§ ×ת ×פ×צ×× ×©×."
+"פ×צ×× ×× ×××ר ×ת ××ª× ××¢× ×××××. ×× × ××ª× ×××××§ ×××ª× ××××× ×××× ××. × ××ª× ×××××§ ×ת "
+"×× ××ª× ××¢× ××××× ××, ×× ××¢××ר ××××× ×©×צ×× ×ת ××ª× ××¢× ××ש××× ×× ××× ××××××§ ×ת "
+"×פ×צ×× ×©×."
#: gnucash/gnome/gnc-split-reg.c:1670
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1040
@@ -5421,8 +5520,8 @@ msgstr "×××××§ ×ת ××ª× ××¢× ×× ××××ת?"
#: gnucash/gnome/gnc-split-reg.c:1671
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1041
msgid ""
-"You would be deleting a transaction with reconciled splits! This is not a good idea "
-"as it will cause your reconciled balance to be off."
+"You would be deleting a transaction with reconciled splits! This is not a good "
+"idea as it will cause your reconciled balance to be off."
msgstr ""
"×ª× ××¢× ×¢× ×¤×צ×××× ××ת×××× ×ª×××§! ×× ××ש רע××× ××× ×©×× ×× ××ר×× ×××ª×¨× ××ת××ת ×צ×ת "
"××××××."
@@ -5431,29 +5530,32 @@ msgstr ""
msgid "Sort By: "
msgstr "×××× ×פ×: "
-#: gnucash/gnome/gnucash.appdata.xml.in.in:5 gnucash/gnome/gnucash.desktop.in.in:6
+#: gnucash/gnome/gnucash.appdata.xml.in.in:5
+#: gnucash/gnome/gnucash.desktop.in.in:6
msgid "GnuCash"
msgstr "×× ××§×ש"
-#: gnucash/gnome/gnucash.appdata.xml.in.in:6 gnucash/gnome/gnucash.desktop.in.in:8
+#: gnucash/gnome/gnucash.appdata.xml.in.in:6
+#: gnucash/gnome/gnucash.desktop.in.in:8
msgid "Manage your finances, accounts, and investments"
msgstr "× ×××× ××ספ××, ××ש××× ×ת ×××שקע×ת"
#: gnucash/gnome/gnucash.appdata.xml.in.in:8
-msgid "GnuCash is a program for personal and small-business financial-accounting."
+msgid ""
+"GnuCash is a program for personal and small-business financial-accounting."
msgstr "×× ××§×ש ××× ×ª××× ×ª ×× ××ת ×ש××× ×ת ×פר×××× ××עסק×× ×§×× ××."
#: gnucash/gnome/gnucash.appdata.xml.in.in:11
msgid ""
-"Designed to be easy to use, yet powerful and flexible, GnuCash allows you to track "
-"bank accounts, stocks, income and expenses. As quick and intuitive to use as a "
-"checkbook register, it is based on professional accounting principles like double-"
-"entry accounting to ensure balanced books and accurate reports."
+"Designed to be easy to use, yet powerful and flexible, GnuCash allows you to "
+"track bank accounts, stocks, income and expenses. As quick and intuitive to "
+"use as a checkbook register, it is based on professional accounting principles "
+"like double-entry accounting to ensure balanced books and accurate reports."
msgstr ""
-"××××¢× ××××ת ×§× ×ש×××ש, ×× ×¢×¦××ª× ××××ש, ×× ××§×ש ××פשר ××¢×§×× ××ר ×ש××× ×ת ×× ×§, ×× ××ת, "
-"××× ×¡×ת ×××צ××ת. ×××ר ×××× ×××××××× ×ש×××ש ××× ×¨×ש×× ××¤× ×§×¡ ×××××ת, ××× ×××סס ×¢× "
-"עקר×× ×ת ×ש××× ×××× ×קצ××¢××× ××× ×ער×ת ×ש××× ××ת ×פ××× ××× ×××××× ×¡×¤×¨×× ××××× ×× ×××××ת "
-"×××××§××."
+"××××¢× ××××ת ×§× ×ש×××ש, ×× ×¢×¦××ª× ××××ש, ×× ××§×ש ××פשר ××¢×§×× ××ר ×ש××× ×ת ×× ×§, "
+"×× ××ת, ××× ×¡×ת ×××צ××ת. ×××ר ×××× ×××××××× ×ש×××ש ××× ×¨×ש×× ××¤× ×§×¡ ×××××ת, ××× "
+"×××סס ×¢× ×¢×§×¨×× ×ת ×ש××× ×××× ×קצ××¢××× ××× ×ער×ת ×ש××× ××ת ×פ××× ××× ×××××× ×¡×¤×¨×× "
+"××××× ×× ×××××ת ×××××§××."
#: gnucash/gnome/gnucash.appdata.xml.in.in:15
msgid "With GnuCash you can (but are not limited to):"
@@ -5481,11 +5583,11 @@ msgstr "×××רת ×ª× ××¢× ××××ר×ת ××× ×עת ××× ×ת ×פ×××
#: gnucash/gnome/gnucash.appdata.xml.in.in:22
msgid ""
-"Exchange by CSV/FinTS(former HBCI) or import SWIFT-MT9xx/QIF/OFX data including "
-"Transaction Matching"
+"Exchange by CSV/FinTS(former HBCI) or import SWIFT-MT9xx/QIF/OFX data "
+"including Transaction Matching"
msgstr ""
-"××¢×ר×ת ×××פ×× ×¢× ××× CSV/FinTS (×שע×ר HBCI) ×× ××××× × ×ª×× ×× × SWIFT-MT9xx/QIF/OFX "
-"×××× ×ת××ת ×ª× ××¢×"
+"××¢×ר×ת ×××פ×× ×¢× ××× CSV/FinTS (×שע×ר HBCI) ×× ××××× × ×ª×× ×× × SWIFT-MT9xx/QIF/"
+"OFX ×××× ×ת××ת ×ª× ××¢×"
#: gnucash/gnome/gnucash.appdata.xml.in.in:23
msgid "Perform financial calculations, such as a loan repayment"
@@ -5504,15 +5606,13 @@ msgstr "× ×××× ×¤×× × ×¡×"
msgid "gnucash-icon"
msgstr "gnucash-icon"
-#. Translators: The abbreviation for 'Reconciled'
-#. in the header row of the register. Please only
-#. translate the portion after the ':' and
-#. leave the rest ("Reconciled:") as is.
+# ×=××ת××
#: gnucash/gnome/reconcile-view.c:425
-#: gnucash/register/ledger-core/split-register-layout.c:699
+#: gnucash/register/ledger-core/split-register-layout.c:691
#: gnucash/register/ledger-core/split-register-model.c:306
-msgid "Reconciled:R"
-msgstr "Reconciled:×"
+msgctxt "Column header for 'Reconciled'"
+msgid "R"
+msgstr "×"
#: gnucash/gnome/search-owner.c:136
msgid "You have not selected an owner"
@@ -5563,11 +5663,11 @@ msgstr "עסק×"
#: gnucash/gnome/window-autoclear.c:138
msgid "Searching for splits to clear ..."
-msgstr "××פ×ש פר×××× ×ס×××¨× ××ת××× ..."
+msgstr "××פ×ש פר×××× ×ס×××¨× ××ת×××..."
#: gnucash/gnome/window-autoclear.c:240
msgid "Cannot uniquely clear splits. Found multiple possibilities."
-msgstr "××× ×פשר×ת ××ת××ת פ×צ×××× ××××¤× ×× ×ש××¢× . × ×צ×× ××תר ××פשר×ת ××ת."
+msgstr "××× ×פשר×ת ××ת××ת פ×צ×××× ××××¤× ×× ×ש××¢×. × ×צ×× ××תר ××פשר×ת ××ת."
#: gnucash/gnome/window-autoclear.c:247
msgid "The selected amount cannot be cleared."
@@ -5660,7 +5760,8 @@ msgstr "×פרש:"
#: gnucash/gnome/window-reconcile2.c:1958 gnucash/gnome/window-reconcile.c:2042
msgid ""
-"You have made changes to this reconcile window. Are you sure you want to cancel?"
+"You have made changes to this reconcile window. Are you sure you want to "
+"cancel?"
msgstr "×××¦×¢× ×©×× ×××× ××××× ××ת×××. ××× ××××?"
#: gnucash/gnome/window-reconcile2.c:2076 gnucash/gnome/window-reconcile.c:2160
@@ -5693,12 +5794,15 @@ msgstr "_×ש×××"
#: gnucash/gtkbuilder/dialog-custom-report.glade:31
#: gnucash/gtkbuilder/dialog-employee.glade:26
#: gnucash/gtkbuilder/dialog-import.glade:1264
-#: gnucash/gtkbuilder/dialog-invoice.glade:599 gnucash/gtkbuilder/dialog-job.glade:27
-#: gnucash/gtkbuilder/dialog-options.glade:24 gnucash/gtkbuilder/dialog-order.glade:28
+#: gnucash/gtkbuilder/dialog-invoice.glade:599
+#: gnucash/gtkbuilder/dialog-job.glade:27
+#: gnucash/gtkbuilder/dialog-options.glade:24
+#: gnucash/gtkbuilder/dialog-order.glade:28
#: gnucash/gtkbuilder/dialog-order.glade:441
#: gnucash/gtkbuilder/dialog-preferences.glade:123
#: gnucash/gtkbuilder/dialog-print-check.glade:303
-#: gnucash/gtkbuilder/dialog-search.glade:24 gnucash/gtkbuilder/dialog-sx.glade:778
+#: gnucash/gtkbuilder/dialog-search.glade:24
+#: gnucash/gtkbuilder/dialog-sx.glade:778
#: gnucash/gtkbuilder/dialog-vendor.glade:50
#: gnucash/import-export/csv-imp/assistant-csv-trans-import.cpp:2049
msgid "_Help"
@@ -5709,7 +5813,8 @@ msgid "_Reconcile Information..."
msgstr "_××××¢ ×ת×××..."
#: gnucash/gnome/window-reconcile2.c:2180 gnucash/gnome/window-reconcile.c:2264
-msgid "Change the reconcile information including statement date and ending balance."
+msgid ""
+"Change the reconcile information including statement date and ending balance."
msgstr "ש×× ×× ××××¢ ×ת××× ×××× ×ª×ר×× ×ª×פ×ס ××תרת ס××ר×."
#: gnucash/gnome/window-reconcile2.c:2185 gnucash/gnome/window-reconcile.c:2269
@@ -5803,7 +5908,8 @@ msgstr "×××ר×"
msgid "Order"
msgstr "×××× ×"
-#: gnucash/gnome-search/dialog-search.c:1080 gnucash/gtkbuilder/dialog-order.glade:422
+#: gnucash/gnome-search/dialog-search.c:1080
+#: gnucash/gtkbuilder/dialog-order.glade:422
msgid "New Order"
msgstr "ס×ר ××ש"
@@ -5817,13 +5923,15 @@ msgstr "פ×צ×× ××ש"
#. Translators: This string has a disambiguation prefix. Translate only the part behind '|'
#: gnucash/gnome-search/dialog-search.c:1098
-msgid ""
-"Item represents an unknown object type (in the sense of bill, customer, invoice, "
-"transaction, split,...)|New item"
+msgctxt ""
+"Item represents an unknown object type (in the sense of bill, customer, "
+"invoice, transaction, split,...)"
+msgid "New item"
msgstr "פר×× ××ש"
#. Set the 'add criterion' button
-#: gnucash/gnome-search/dialog-search.c:1140 gnucash/gnome-utils/gnc-recurrence.c:549
+#: gnucash/gnome-search/dialog-search.c:1140
+#: gnucash/gnome-utils/gnc-recurrence.c:549
#: gnucash/gtkbuilder/dialog-commodities.glade:123
#: gnucash/gtkbuilder/dialog-price.glade:834
msgid "_Add"
@@ -5854,7 +5962,7 @@ msgid "matches no accounts"
msgstr "×× ×ª××× ×××£ ×ש×××"
#: gnucash/gnome-search/search-account.c:195
-#: gnucash/report/standard-reports/cash-flow.scm:263
+#: gnucash/report/standard-reports/cash-flow.scm:261
msgid "Selected Accounts"
msgstr "×ש××× ×ת ×ס××× ××"
@@ -5895,32 +6003,39 @@ msgstr "××ר×"
msgid "is on or after"
msgstr "×××¨× ×× ×"
-#: gnucash/gnome-search/search-double.c:175 gnucash/gnome-search/search-int64.c:177
+#: gnucash/gnome-search/search-double.c:175
+#: gnucash/gnome-search/search-int64.c:177
#: gnucash/gnome-search/search-numeric.c:208
msgid "is less than"
msgstr "×§×× ×"
-#: gnucash/gnome-search/search-double.c:176 gnucash/gnome-search/search-int64.c:178
+#: gnucash/gnome-search/search-double.c:176
+#: gnucash/gnome-search/search-int64.c:178
#: gnucash/gnome-search/search-numeric.c:212
msgid "is less than or equal to"
msgstr "×§×× ×× ×©××× ×"
-#: gnucash/gnome-search/search-double.c:177 gnucash/gnome-search/search-int64.c:179
-#: gnucash/gnome-search/search-numeric.c:215 gnucash/gnome-search/search-string.c:243
+#: gnucash/gnome-search/search-double.c:177
+#: gnucash/gnome-search/search-int64.c:179
+#: gnucash/gnome-search/search-numeric.c:215
+#: gnucash/gnome-search/search-string.c:243
msgid "equals"
msgstr "ש×××"
-#: gnucash/gnome-search/search-double.c:178 gnucash/gnome-search/search-int64.c:180
+#: gnucash/gnome-search/search-double.c:178
+#: gnucash/gnome-search/search-int64.c:180
#: gnucash/gnome-search/search-numeric.c:218
msgid "does not equal"
msgstr "×× ×©××× ×"
-#: gnucash/gnome-search/search-double.c:179 gnucash/gnome-search/search-int64.c:181
+#: gnucash/gnome-search/search-double.c:179
+#: gnucash/gnome-search/search-int64.c:181
#: gnucash/gnome-search/search-numeric.c:221
msgid "is greater than"
msgstr "×××× ×"
-#: gnucash/gnome-search/search-double.c:180 gnucash/gnome-search/search-int64.c:182
+#: gnucash/gnome-search/search-double.c:180
+#: gnucash/gnome-search/search-int64.c:182
#: gnucash/gnome-search/search-numeric.c:225
msgid "is greater than or equal to"
msgstr "×××× ×× ×©××× ×"
@@ -6004,33 +6119,38 @@ msgid ""
"\n"
"The file you are trying to load is from an older version of GnuCash. The file "
"format in the older versions was missing the detailed specification of the "
-"character encoding being used. This means the text in your data file could be read "
-"in multiple ambiguous ways. This ambiguity cannot be resolved automatically, but "
-"the new GnuCash 2.0.0 file format will include all necessary specifications so that "
-"you do not have to go through this step again.\n"
-"\n"
-"GnuCash will try to guess the correct character encoding for your data file. On the "
-"next page GnuCash will show the resulting texts when using this guess. You have to "
-"check whether the words look as expected. Either everything looks fine and you can "
-"simply press \"Next\". Or the words contain unexpected characters, in which case "
-"you should select different character encodings to see different results. You may "
-"have to edit the list of character encodings by clicking on the respective button.\n"
-"\n"
-"Press \"Next\" now to select the correct character encoding for your data file.\n"
-msgstr ""
-"\n"
-"×§×××¥ ×××¢×× × ××× ×××¨×¡× ××©× × ××תר ×©× ×× ××§×ש. ת×× ×ת ××§×××¥ ××רס××ת ××©× ×ת ××¡×¨× ×ת פ×ר×× "
-"×§×××× ×ת×××× ×©×ש×××ש. ××××ר, ×××× ×©××§×××¥ ×× ×ª×× ×× × ××ª× ×קר××× ××ספר ×ר××× ××××¢×רפ×. "
-"×× × ××ª× ×פת×ר ×¢××××ת ×× ××××¤× ×××××××, ×× ××רס ×× ××§×ש 2.0.0 ×××ש, ת×× ×ת ××§×××¥ ××××ת "
-"×ת ×× ××פר××× ××ר×ש××, ×× ×©×× ×××× ×¦××¨× ××¢××ר ×ת ×ש×× ××× ×©××.\n"
-"\n"
-"×× ××§×ש ×× ×¡× ×× ×ש ×ת ×§×××× ×ת×××× ×× ××× ×¢××ר ×§×××¥ ×× ×ª×× ×× ×××¢×× ×. ××¢××× ××× ×× ××§×ש "
-"×צ×× ×ת ×××× ×©×תק×× ×עת × ×ס××× ×× ×××ש. × ×רש ×××××§ ×× ×××××× ××¢××ת ×ש××¢×ת ××צפ××. "
-"××××× ×××× × ×¨×× ×ª×§××, × ××ª× ×¤×©×× ×××§×ש ×¢× ×××¦× . ××××× ××××××× ×××××ת ת×××× ×× "
-"צפ×××, ×××§×¨× ×× ×ש ××××ר ×§×××× ×ª×××× ×©×× × ×¢× ×× ×ª ××§×× ×ª×צ××ת ש×× ×ת. ×ת×× ×××רש "
-"×ער×× ×ת רש××ת ×§×××× ×ת×××× ×¢× ××× ××§×©× ×¢× ××קש ××ת×××.\n"
-"\n"
-"× × ×××§×ש ×¢× ×××¦× '×××' ×עת ×¢× ×× ×ª ××××ר ×ת ×§×××× ×ת×××× ×× ××× ×¢××ר ×§×××¥ ×× ×ª×× ××.\n"
+"character encoding being used. This means the text in your data file could be "
+"read in multiple ambiguous ways. This ambiguity cannot be resolved "
+"automatically, but the new GnuCash 2.0.0 file format will include all "
+"necessary specifications so that you do not have to go through this step "
+"again.\n"
+"\n"
+"GnuCash will try to guess the correct character encoding for your data file. "
+"On the next page GnuCash will show the resulting texts when using this guess. "
+"You have to check whether the words look as expected. Either everything looks "
+"fine and you can simply press \"Next\". Or the words contain unexpected "
+"characters, in which case you should select different character encodings to "
+"see different results. You may have to edit the list of character encodings by "
+"clicking on the respective button.\n"
+"\n"
+"Press \"Next\" now to select the correct character encoding for your data "
+"file.\n"
+msgstr ""
+"\n"
+"×§×××¥ ×××¢×× × ××× ×××¨×¡× ××©× × ××תר ×©× ×× ××§×ש. ת×× ×ת ××§×××¥ ××רס××ת ××©× ×ת ××¡×¨× ×ת "
+"פ×ר×× ×§×××× ×ת×××× ×©×ש×××ש. ××××ר, ×××× ×©××§×××¥ ×× ×ª×× ×× × ××ª× ×קר××× ××ספר ×ר××× "
+"××××¢×רפ×. ×× × ××ª× ×פת×ר ×¢××××ת ×× ××××¤× ×××××××, ×× ××רס ×× ××§×ש 2.0.0 ×××ש, "
+"ת×× ×ת ××§×××¥ ××××ת ×ת ×× ××פר××× ××ר×ש××, ×× ×©×× ×××× ×¦××¨× ××¢××ר ×ת ×ש×× ××× "
+"ש××.\n"
+"\n"
+"×× ××§×ש ×× ×¡× ×× ×ש ×ת ×§×××× ×ת×××× ×× ××× ×¢××ר ×§×××¥ ×× ×ª×× ×× ×××¢×× ×. ××¢××× ××× "
+"×× ××§×ש ×צ×× ×ת ×××× ×©×תק×× ×עת × ×ס××× ×× ×××ש. × ×רש ×××××§ ×× ×××××× ××¢××ת "
+"×ש××¢×ת ××צפ××. ××××× ×××× × ×¨×× ×ª×§××, × ××ª× ×¤×©×× ×××§×ש ×¢× ××צ×. ××××× ××××××× "
+"×××××ת ת×××× ×× ×¦×¤×××, ×××§×¨× ×× ×ש ××××ר ×§×××× ×ª×××× ×©×× × ×¢× ×× ×ª ××§×× ×ª×צ××ת "
+"ש×× ×ת. ×ת×× ×××רש ×ער×× ×ת רש××ת ×§×××× ×ת×××× ×¢× ××× ××§×©× ×¢× ××קש ××ת×××.\n"
+"\n"
+"× × ×××§×ש ×¢× ×××¦× '×××' ×עת ×¢× ×× ×ª ××××ר ×ת ×§×××× ×ת×××× ×× ××× ×¢××ר ×§×××¥ "
+"×× ×ª×× ××.\n"
#: gnucash/gnome-utils/assistant-xml-encoding.c:199
msgid "Ambiguous character encoding"
@@ -6038,14 +6158,14 @@ msgstr "×§×××× ×ª× ×× ×ש××¢×"
#: gnucash/gnome-utils/assistant-xml-encoding.c:202
msgid ""
-"The file has been loaded successfully. If you click \"Apply\" it will be saved and "
-"reloaded into the main application. That way you will have a working file as backup "
-"in the same directory.\n"
+"The file has been loaded successfully. If you click \"Apply\" it will be saved "
+"and reloaded into the main application. That way you will have a working file "
+"as backup in the same directory.\n"
"\n"
"You can also go back and verify your selections by clicking on \"Back\"."
msgstr ""
-"××§×××¥ × ××¢× ××צ×××. ××§×©× ×¢× '××××' ת××× ×ש×××¨×ª× ×××¢×× ×ª× ×××ש ×××ש×× ×ר×ש×. ×××¨× ×× "
-"××××צר ×§×××¥ ×¢×××× ×××××× ××××ª× ×¡×¤×¨××.\n"
+"××§×××¥ × ××¢× ××צ×××. ××§×©× ×¢× '××××' ת××× ×ש×××¨×ª× ×××¢×× ×ª× ×××ש ×××ש×× ×ר×ש×. ×××¨× "
+"×× ××××צר ×§×××¥ ×¢×××× ×××××× ××××ª× ×¡×¤×¨××.\n"
"\n"
"× ××ª× ×× ××××ר ××××ת ×ת ××××ר×ת ×¢× ××× ××§×©× ×¢× '××§×××'."
@@ -6059,7 +6179,7 @@ msgstr "ISO-8859-1 (××¢×¨× ××ר×פ×)"
#: gnucash/gnome-utils/assistant-xml-encoding.c:229
msgid "ISO-8859-2 (East European)"
-msgstr "ISO-8859-2 (×××¨× ××ר×פ×)"
+msgstr "ISO-8859-2 (×××¨× ××ר×פ×ת)"
#: gnucash/gnome-utils/assistant-xml-encoding.c:230
msgid "ISO-8859-3 (South European)"
@@ -6124,7 +6244,8 @@ msgstr "KOI8-U (××קר××× ×ת)"
#: gnucash/gnome-utils/assistant-xml-encoding.c:681
#, c-format
msgid "There are %d unassigned and %d undecodable words. Please add encodings."
-msgstr "×§××××ת %d ××××× ×©××× × ××קצ×ת ×-%d ש××× × × ××ª× ×ת ××¤×¢× ××. × × ×××ס××£ ×§××××××."
+msgstr ""
+"×§××××ת %d ××××× ×©××× × ××קצ×ת ×-%d ש××× × × ××ª× ×ת ××¤×¢× ××. × × ×××ס××£ ×§××××××."
#: gnucash/gnome-utils/assistant-xml-encoding.c:689
#, c-format
@@ -6189,8 +6310,8 @@ msgstr "××רשת ×ס×× ××× ××?"
#: gnucash/gnome-utils/dialog-account.c:685
#, c-format
msgid ""
-"The children of the edited account have to be changed to type \"%s\" to make them "
-"compatible."
+"The children of the edited account have to be changed to type \"%s\" to make "
+"them compatible."
msgstr "× × ××©× ×ת ×ת ס×× ×ש××× ×ת ×צ××¦× ×ס×× \"%s\" ×¢× ×× ×ª ש×××× ×ª×××××."
#. children
@@ -6215,7 +6336,8 @@ msgid "You must select an account type."
msgstr "× × ××××ר ס×× ×ש×××."
#: gnucash/gnome-utils/dialog-account.c:819
-msgid "The selected account type is incompatible with the one of the selected parent."
+msgid ""
+"The selected account type is incompatible with the one of the selected parent."
msgstr "ס×× ××ש××× ×©× ××ר ××× × ×ª××× ×××× ×××ר×× ×©× ××ר×."
#: gnucash/gnome-utils/dialog-account.c:831
@@ -6228,7 +6350,8 @@ msgstr "× × ××××× ×תרת פת××× ×ª×§×× × ×× ××ש××ר ×ת ×
#: gnucash/gnome-utils/dialog-account.c:911
msgid ""
-"You must select a transfer account or choose the opening balances equity account."
+"You must select a transfer account or choose the opening balances equity "
+"account."
msgstr "× × ××××ר ×ש××× ××¢××¨× ×× ××××ר ××ש××× ×תרת פת××× ×××§××¢ ××××."
#: gnucash/gnome-utils/dialog-account.c:1316
@@ -6257,17 +6380,17 @@ msgstr "×ש××× ××ש"
#: gnucash/gnome-utils/dialog-account.c:2073
#, c-format
msgid ""
-"Renumber the immediate sub-accounts of %s? This will replace the account code field "
-"of each child account with a newly generated code."
+"Renumber the immediate sub-accounts of %s? This will replace the account code "
+"field of each child account with a newly generated code."
msgstr ""
-"×ספ×ר ×××ש ×©× ×ש××× ×ת ×××©× × ××ש×ר×× ×©× %s? פע××× ×× ×ª××××£ ×ת ש×× ×§×× ××ש××× ×©× ×× "
-"×ש××× ×ש××× ××©× × ×¢× ×§×× ××ש ש××צר."
+"×ספ×ר ×××ש ×©× ×ש××× ×ת ×××©× × ××ש×ר×× ×©× %s? פע××× ×× ×ª××××£ ×ת ש×× ×§×× ××ש××× ×©× "
+"×× ×ש××× ×ש××× ××©× × ×¢× ×§×× ××ש ש××צר."
#: gnucash/gnome-utils/dialog-account.c:2155
#, c-format
msgid ""
-"Set the account color for account '%s' including all sub-accounts to the selected "
-"color:"
+"Set the account color for account '%s' including all sub-accounts to the "
+"selected color:"
msgstr "×××רת צ××¢ ××ש××× ××ש××× ' %s ' ×××× ×× ×ש××× ×ת ×××©× × ×צ××¢ ×©× ××ר:"
#: gnucash/gnome-utils/dialog-book-close.c:294
@@ -6341,9 +6464,11 @@ msgstr "×××רת ××××¢"
msgid "Cu_rrency:"
msgstr "××_××¢:"
-#: gnucash/gnome-utils/dialog-commodity.c:772 gnucash/gnome-utils/dialog-options.c:702
+#: gnucash/gnome-utils/dialog-commodity.c:772
+#: gnucash/gnome-utils/dialog-options.c:702
#: gnucash/gnome-utils/gnc-tree-view-owner.c:412
-#: gnucash/gnome-utils/gnc-tree-view-price.c:402 libgnucash/engine/Account.cpp:4098
+#: gnucash/gnome-utils/gnc-tree-view-price.c:402
+#: libgnucash/engine/Account.cpp:4098
msgid "Currency"
msgstr "××××¢"
@@ -6386,8 +6511,8 @@ msgstr "×ס×××¨× ××ר ×§×××ת."
#: gnucash/gnome-utils/dialog-commodity.c:1360
msgid ""
-"You must enter a non-empty \"Full name\", \"Symbol/abbreviation\", and \"Type\" for "
-"the commodity."
+"You must enter a non-empty \"Full name\", \"Symbol/abbreviation\", and \"Type"
+"\" for the commodity."
msgstr "× × ××××× ×¢×¨× ×× ×¨××§, \"×©× ×××\", \"ס××/×§×צ×ר\" ×\"ס××\" ×¢××ר ×ס××ר×."
#. The "date" and the "tnum" fields aren't being asked for, this is a split copy
@@ -6399,10 +6524,11 @@ msgstr "פע×××/ס××××××:"
msgid "Open..."
msgstr "פת×××..."
-#: gnucash/gnome-utils/dialog-file-access.c:303 gnucash/gnome-utils/gnc-file.c:101
+#: gnucash/gnome-utils/dialog-file-access.c:303
+#: gnucash/gnome-utils/gnc-file.c:101
#: gnucash/gtkbuilder/dialog-bi-import-gui.glade:112
#: gnucash/gtkbuilder/dialog-customer-import-gui.glade:115
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:771
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:761
msgid "_Open"
msgstr "_פת×××"
@@ -6416,17 +6542,17 @@ msgstr "ש×××¨× ×ש×..."
msgid "_Save As"
msgstr "_ש×××¨× ×ש×"
-#: gnucash/gnome-utils/dialog-file-access.c:318 gnucash/gnome-utils/gnc-file.c:122
-#: gnucash/gnome-utils/gnc-file.c:299
+#: gnucash/gnome-utils/dialog-file-access.c:318
+#: gnucash/gnome-utils/gnc-file.c:122 gnucash/gnome-utils/gnc-file.c:299
#: gnucash/report/report-gnome/gnc-plugin-page-report.c:1104
msgid "Export"
msgstr "â®×צ××â¬"
#: gnucash/gnome-utils/dialog-options.c:642
msgid ""
-"Because no accounts have been set up yet, you will need to return to this dialog "
-"(via File->Properties), after account setup, if you want to set a default gain/loss "
-"account."
+"Because no accounts have been set up yet, you will need to return to this "
+"dialog (via File->Properties), after account setup, if you want to set a "
+"default gain/loss account."
msgstr ""
"×××ר ש×× ×××××¨× ×¢×××× ×ש××× ×ת, ×××× ×¦××¨× ××××ר ×ת××ת ××-ש×× ×× (×××צע×ת ×§×××¥-"
">××פ××× ××), ×××ר ×××רת ××ש×××, ×¢× ×× ×ª ×××××ר ×ש××× ×ר×רת ×××× ×©× ×¨××× / ×פס×."
@@ -6436,17 +6562,13 @@ msgid "Select no account"
msgstr "×××רת ×ש×××"
# ש=ש××ר ××§××
-#. Translators: This string has a context prefix; the
-#. translation must only contain the part after
-#. the | character.
-#. Translators: This string has a context prefix; the translation
-#. must only contain the part after the | character.
-#: gnucash/gnome-utils/dialog-options.c:722
-#: gnucash/gnome-utils/gnc-tree-view-account.c:908
-msgid "Column letter for 'Placeholder'|P"
+#: gnucash/gnome-utils/dialog-options.c:719
+#: gnucash/gnome-utils/gnc-tree-view-account.c:906
+msgctxt "Column header for 'Placeholder'"
+msgid "P"
msgstr "ש"
-#: gnucash/gnome-utils/dialog-options.c:789
+#: gnucash/gnome-utils/dialog-options.c:786
msgid ""
"There are no income or expense accounts of the specified\n"
"book currency; you will have to return to this dialog\n"
@@ -6458,93 +6580,97 @@ msgstr ""
"(×תפר×× ×§×××¥-> ××פ××× ××), ×××ר ×××רת ××ש×××, ××× ××××ר\n"
"×ר×רת ×××× ××ש××× ×¨×××/×פס×."
-#: gnucash/gnome-utils/dialog-options.c:858
+#: gnucash/gnome-utils/dialog-options.c:855
#: gnucash/import-export/import-account-matcher.c:180
#: gnucash/import-export/qif-imp/dialog-account-picker.c:299
#, c-format
msgid ""
-"The account %s is a placeholder account and does not allow transactions. Please "
-"choose a different account."
-msgstr "××ש××× %s ××× ×ס×× ×צ××× ×××§×× ×××× × ××פשר ר×ש×× ×ª× ××¢×ת. × × ××××ר ×ש××× ××ר."
+"The account %s is a placeholder account and does not allow transactions. "
+"Please choose a different account."
+msgstr ""
+"××ש××× %s ××× ×ס×× ×צ××× ×××§×× ×××× × ××פשר ר×ש×× ×ª× ××¢×ת. × × ××××ר ×ש××× ××ר."
-#: gnucash/gnome-utils/dialog-options.c:1292
+#: gnucash/gnome-utils/dialog-options.c:1289
msgid "Book currency:"
msgstr "××××¢ ספר××:"
-#: gnucash/gnome-utils/dialog-options.c:1321
+#: gnucash/gnome-utils/dialog-options.c:1318
msgid "Default lot tracking policy:"
msgstr "×××× ××ת ××¢×§× ××××§× ×ר×רת ××××:"
-#: gnucash/gnome-utils/dialog-options.c:1349
+#: gnucash/gnome-utils/dialog-options.c:1346
msgid "Default gain/loss account:"
msgstr "×ש××× ×¨××/××¤×¡× ×ר×רת ××××:"
-#: gnucash/gnome-utils/dialog-options.c:1521 gnucash/gnome-utils/dialog-options.c:1664
+#: gnucash/gnome-utils/dialog-options.c:1518
+#: gnucash/gnome-utils/dialog-options.c:1661
msgid "Select All"
msgstr "×××רת ×××"
-#: gnucash/gnome-utils/dialog-options.c:1523
+#: gnucash/gnome-utils/dialog-options.c:1520
msgid "Select all accounts."
msgstr "×××רת ×× ××ש××× ×ת."
-#: gnucash/gnome-utils/dialog-options.c:1528 gnucash/gnome-utils/dialog-options.c:1671
+#: gnucash/gnome-utils/dialog-options.c:1525
+#: gnucash/gnome-utils/dialog-options.c:1668
msgid "Clear All"
msgstr "× ××§×× ×××"
-#: gnucash/gnome-utils/dialog-options.c:1530
+#: gnucash/gnome-utils/dialog-options.c:1527
msgid "Clear the selection and unselect all accounts."
msgstr "× ××§×× ××××¨× ×××××× ×××רת ×× ××ש××× ×ת."
-#: gnucash/gnome-utils/dialog-options.c:1535
+#: gnucash/gnome-utils/dialog-options.c:1532
msgid "Select Children"
msgstr "×××רת ×ש××× ×ת ××©× ×"
-#: gnucash/gnome-utils/dialog-options.c:1537
+#: gnucash/gnome-utils/dialog-options.c:1534
msgid "Select all descendents of selected account."
msgstr "×××רת ×× ×צ×צ××× ×©× ××ש××× ×©× ××ר."
-#: gnucash/gnome-utils/dialog-options.c:1543 gnucash/gnome-utils/dialog-options.c:1678
+#: gnucash/gnome-utils/dialog-options.c:1540
+#: gnucash/gnome-utils/dialog-options.c:1675
msgid "Select Default"
msgstr "×××רת ×ר×רת ××××"
-#: gnucash/gnome-utils/dialog-options.c:1545
+#: gnucash/gnome-utils/dialog-options.c:1542
msgid "Select the default account selection."
msgstr "×××רת ×ר×רת ×××× ××××רת ×ש××× ×ת."
-#: gnucash/gnome-utils/dialog-options.c:1559
+#: gnucash/gnome-utils/dialog-options.c:1556
msgid "Show Hidden Accounts"
msgstr "×צ×ת ×ש××× ×ת ××סתר××"
-#: gnucash/gnome-utils/dialog-options.c:1561
+#: gnucash/gnome-utils/dialog-options.c:1558
msgid "Show accounts that have been marked hidden."
msgstr "×צ×ת ×ש××× ×ת שס××× × ×××סתר××."
-#: gnucash/gnome-utils/dialog-options.c:1666
+#: gnucash/gnome-utils/dialog-options.c:1663
msgid "Select all entries."
msgstr "×××רת ×× ×רש×××ת."
-#: gnucash/gnome-utils/dialog-options.c:1673
+#: gnucash/gnome-utils/dialog-options.c:1670
msgid "Clear the selection and unselect all entries."
msgstr "× ××§×× ××××¨× ×××××× ×××רת ×× ×רש×××ת."
-#: gnucash/gnome-utils/dialog-options.c:1680
+#: gnucash/gnome-utils/dialog-options.c:1677
msgid "Select the default selection."
msgstr "×××רת ×ר×רת ×××× ××××ר×."
#. The reset button on each option page
-#: gnucash/gnome-utils/dialog-options.c:1854
+#: gnucash/gnome-utils/dialog-options.c:1851
msgid "Reset defaults"
msgstr "××פ×ס ××ר×רת ××××"
-#: gnucash/gnome-utils/dialog-options.c:1856
+#: gnucash/gnome-utils/dialog-options.c:1853
msgid "Reset all values to their defaults."
msgstr "××פ×ס ×× ×ער××× ××ר×ר×ת ×××××."
-#: gnucash/gnome-utils/dialog-options.c:2251
+#: gnucash/gnome-utils/dialog-options.c:2248
msgid "Page"
msgstr "×¢×××"
-#: gnucash/gnome-utils/dialog-options.c:2910
+#: gnucash/gnome-utils/dialog-options.c:2907
#: gnucash/gnome-utils/dialog-preferences.c:1352
#: gnucash/gtkbuilder/dialog-fincalc.glade:220
#: gnucash/gtkbuilder/dialog-fincalc.glade:274
@@ -6554,23 +6680,23 @@ msgstr "×¢×××"
msgid "Clear"
msgstr "× ××§××"
-#: gnucash/gnome-utils/dialog-options.c:2911
+#: gnucash/gnome-utils/dialog-options.c:2908
msgid "Clear any selected image file."
msgstr "×× ×§×ת ×× ×§×××¥ ת××× × ×©× ××ר."
-#: gnucash/gnome-utils/dialog-options.c:2913
+#: gnucash/gnome-utils/dialog-options.c:2910
msgid "Select image"
msgstr "×××רת ת××× ×"
-#: gnucash/gnome-utils/dialog-options.c:2915
+#: gnucash/gnome-utils/dialog-options.c:2912
msgid "Select an image file."
msgstr "×××רת ×§×××¥ ת××× ×."
-#: gnucash/gnome-utils/dialog-options.c:3101
+#: gnucash/gnome-utils/dialog-options.c:3098
msgid "Pixels"
msgstr "פקס×××"
-#: gnucash/gnome-utils/dialog-options.c:3107
+#: gnucash/gnome-utils/dialog-options.c:3104
msgid "Percent"
msgstr "××××"
@@ -6601,8 +6727,8 @@ msgstr "× × ××××× ×©× ××××ת ××ס."
#: gnucash/gnome-utils/dialog-tax-table.c:124
#, c-format
msgid ""
-"You must provide a unique name for this Tax Table. Your choice \"%s\" is already in "
-"use."
+"You must provide a unique name for this Tax Table. Your choice \"%s\" is "
+"already in use."
msgstr "× × ××××ר ×©× ×××××× ×¢××ר ×××ת ××ס. ××©× \"%s\" × ××¦× ××ר ×ש×××ש."
#: gnucash/gnome-utils/dialog-tax-table.c:138
@@ -6638,10 +6764,11 @@ msgstr "×××ת ×ס \"%s\" × ×צ×ת ×ש×××ש. ×× × ××ª× ×××××§."
#: gnucash/gnome-utils/dialog-tax-table.c:707
msgid ""
-"You cannot remove the last entry from the tax table. Try deleting the tax table if "
-"you want to do that."
+"You cannot remove the last entry from the tax table. Try deleting the tax "
+"table if you want to do that."
msgstr ""
-"×× × ××ª× ××ס×ר ×ת ×רש××× ×××ר×× × ××××ת ××ס. × × ×××××§ ×ת ×××ת ××ס ×¢× ×× ×ª ××צע ××ת."
+"×× × ××ª× ××ס×ר ×ת ×רש××× ×××ר×× × ××××ת ××ס. × × ×××××§ ×ת ×××ת ××ס ×¢× ×× ×ª ××צע "
+"××ת."
#: gnucash/gnome-utils/dialog-tax-table.c:714
msgid "Are you sure you want to delete this entry?"
@@ -6657,9 +6784,10 @@ msgstr "ש××××"
#: gnucash/gnome-utils/dialog-transfer.c:1319
msgid ""
-"Retrieve the current online quote. This will fail if there is a manually-created "
-"price for today."
-msgstr "××××ר ××§××× ×©× ×©×¢×¨×× × ××××××. ×××××ר ××××©× ×× ×××× ×©×¢×¨ ××××¤× ××× × ×¢××ר ××××."
+"Retrieve the current online quote. This will fail if there is a manually-"
+"created price for today."
+msgstr ""
+"××××ר ××§××× ×©× ×©×¢×¨×× × ××××××. ×××××ר ××××©× ×× ×××× ×©×¢×¨ ××××¤× ××× × ×¢××ר ××××."
#: gnucash/gnome-utils/dialog-transfer.c:1323
msgid "Finance::Quote must be installed to enable this button."
@@ -6667,11 +6795,11 @@ msgstr "××פש×ר ×קש ×× × ×רש ××תק×× Finance::Quote."
#: gnucash/gnome-utils/dialog-transfer.c:1425
msgid ""
-"You must specify an account to transfer from, or to, or both, for this transaction. "
-"Otherwise, it will not be recorded."
+"You must specify an account to transfer from, or to, or both, for this "
+"transaction. Otherwise, it will not be recorded."
msgstr ""
-"× × ××§×××¢ ×ש××× ××× × ×ª×ª×צע ×××¢×ר×, ×× ×× ×ש×××, ×× ×©× ×××, ×¢××ר ×ª× ××¢× ××. ××רת, ××× "
-"×× ×ª×רש×."
+"× × ××§×××¢ ×ש××× ××× × ×ª×ª×צע ×××¢×ר×, ×× ×× ×ש×××, ×× ×©× ×××, ×¢××ר ×ª× ××¢× ××. ××רת, "
+"××× ×× ×ª×רש×."
#: gnucash/gnome-utils/dialog-transfer.c:1435
msgid "You can't transfer from and to the same account!"
@@ -6687,11 +6815,11 @@ msgstr "×ש××× %s ××× × ××פשר ×ª× ××¢×ת."
#: gnucash/gnome-utils/dialog-transfer.c:1462
msgid ""
-"You can't transfer from a non-currency account. Try reversing the \"from\" and \"to"
-"\" accounts and making the \"amount\" negative."
+"You can't transfer from a non-currency account. Try reversing the \"from\" and "
+"\"to\" accounts and making the \"amount\" negative."
msgstr ""
-"×× × ××ª× ×××¢××ר ××ש××× ×©××× × ××××¢×. × ×¡× ××פ×× ×ת ס×ר ×ער××× \"××ש×××\" ×-\"××ש×××\" "
-"××××× × ×ת × \"ס×××\" ××ספר ש××××."
+"×× × ××ª× ×××¢××ר ××ש××× ×©××× × ××××¢×. × ×¡× ××פ×× ×ת ס×ר ×ער××× \"××ש×××\" ×-"
+"\"××ש×××\" ××××× × ×ת × \"ס×××\" ××ספר ש××××."
#: gnucash/gnome-utils/dialog-transfer.c:1480
msgid "You must enter a valid price."
@@ -6733,8 +6861,9 @@ msgstr "ס××× ×:"
#: gnucash/gnome-utils/dialog-utils.c:461
msgid ""
-"The entered date is out of the range 01/01/1400 - 31/12/9999, resetting to this year"
-msgstr "×ת×ר×× ×©×××× ××××¥ ××××× 01/01/1400 - 31/12/9999, ××פ×ס ××©× × ××"
+"The entered date is out of the range 01/01/1400 - 31/12/9999, resetting to "
+"this year"
+msgstr "×ת×ר×× ×©×××× × ××¦× ××××¥ ××××× 01/01/1400 - 31/12/9999, ××פ×ס ××©× × ×ש××פת"
#: gnucash/gnome-utils/dialog-utils.c:463
msgid "Date out of range"
@@ -6768,36 +6897,36 @@ msgstr "ש××רת ×§×××¥ ×××××××ת?"
#: gnucash/gnome-utils/gnc-autosave.c:106
#, c-format
msgid ""
-"Your data file needs to be saved to your hard disk to save your changes. GnuCash "
-"has a feature to save the file automatically every %d minute, just as if you had "
-"pressed the \"Save\" button each time. \n"
+"Your data file needs to be saved to your hard disk to save your changes. "
+"GnuCash has a feature to save the file automatically every %d minute, just as "
+"if you had pressed the \"Save\" button each time. \n"
"\n"
-"You can change the time interval or turn off this feature under Edit -> Preferences "
-"-> General -> Auto-save time interval. \n"
+"You can change the time interval or turn off this feature under Edit -> "
+"Preferences -> General -> Auto-save time interval. \n"
"\n"
"Should your file be saved automatically?"
msgid_plural ""
-"Your data file needs to be saved to your hard disk to save your changes. GnuCash "
-"has a feature to save the file automatically every %d minutes, just as if you had "
-"pressed the \"Save\" button each time. \n"
+"Your data file needs to be saved to your hard disk to save your changes. "
+"GnuCash has a feature to save the file automatically every %d minutes, just as "
+"if you had pressed the \"Save\" button each time. \n"
"\n"
-"You can change the time interval or turn off this feature under Edit -> Preferences "
-"-> General -> Auto-save time interval. \n"
+"You can change the time interval or turn off this feature under Edit -> "
+"Preferences -> General -> Auto-save time interval. \n"
"\n"
"Should your file be saved automatically?"
msgstr[0] ""
-"×§×××¥ ×× ×ª×× ×× ×¦×¨×× ×××ש×ר ×××× × ×קש×× ××× ×ש××ר ×ת ×ש×× ×××× ×©××צע×. ××× ××§×ש ×ש ת××× × "
-"×ש××ר ×ת ××§×××¥ ××××¤× ××××××× ×× %d ××§×, ×××××§ ××××× ××קש ×¢× ×××¦× \"ש××ר×\" ××× "
-"פע×. \n"
+"×§×××¥ ×× ×ª×× ×× ×¦×¨×× ×××ש×ר ×××× × ×קש×× ××× ×ש××ר ×ת ×ש×× ×××× ×©××צע×. ××× ××§×ש ×ש "
+"ת××× × ×ש××ר ×ת ××§×××¥ ××××¤× ××××××× ×× %d ××§×, ×××××§ ××××× ××קש ×¢× ×××¦× \"ש××ר×"
+"\" ××× ×¤×¢×. \n"
"\n"
"× ××ª× ××©× ×ת ×ת ×ר××× ×××× ×× ×××× ×ª××× × ×× ×תפר×× ×¢×¨×××-> ××¢×פ×ת-> ××××-> ת×××× "
"ש×××¨× ×××××××ת. \n"
"\n"
"××× ×ש××ר ×ת ××§×××¥ ××××¤× ×××××××?"
msgstr[1] ""
-"×§×××¥ ×× ×ª×× ×× ×¦×¨×× ×××ש×ר ×××× × ×קש×× ××× ×ש××ר ×ת ×ש×× ×××× ×©××צע×. ××× ××§×ש ×ש ת××× × "
-"×ש××ר ×ת ××§××צ×× ××××¤× ××××××× ×× %d ××§×ת, ×××××§ ××××× ××קש ×¢× ×××¦× \"ש××ר×\" ××× "
-"פע×. \n"
+"×§×××¥ ×× ×ª×× ×× ×¦×¨×× ×××ש×ר ×××× × ×קש×× ××× ×ש××ר ×ת ×ש×× ×××× ×©××צע×. ××× ××§×ש ×ש "
+"ת××× × ×ש××ר ×ת ××§××צ×× ××××¤× ××××××× ×× %d ××§×ת, ×××××§ ××××× ××קש ×¢× ×××¦× "
+"\"ש××ר×\" ××× ×¤×¢×. \n"
"\n"
"× ××ª× ××©× ×ת ×ת ×ר××× ×××× ×× ×××× ×ª××× × ×× ×תפר×× ×¢×¨×××-> ××¢×פ×ת-> ××××-> ת×××× "
"ש×××¨× ×××××××ת. \n"
@@ -6833,12 +6962,14 @@ msgstr "××××"
msgid "Weeks"
msgstr "ש×××¢×ת"
-#: gnucash/gnome-utils/gnc-date-delta.c:226 gnucash/gtkbuilder/assistant-loan.glade:12
+#: gnucash/gnome-utils/gnc-date-delta.c:226
+#: gnucash/gtkbuilder/assistant-loan.glade:12
#: gnucash/report/standard-reports/price-scatter.scm:231
msgid "Months"
msgstr "×××ש××"
-#: gnucash/gnome-utils/gnc-date-delta.c:228 gnucash/gtkbuilder/assistant-loan.glade:15
+#: gnucash/gnome-utils/gnc-date-delta.c:228
+#: gnucash/gtkbuilder/assistant-loan.glade:15
#: gnucash/report/standard-reports/price-scatter.scm:232
msgid "Years"
msgstr "×©× ××"
@@ -6957,11 +7088,11 @@ msgstr "××× ×פשר×ת ××ת××ר ×× %s. ×××××ר ×××, ×× × ×
#: gnucash/gnome-utils/gnc-file.c:255
msgid ""
-"This file/URL appears to be from a newer version of GnuCash. You must upgrade your "
-"version of GnuCash to work with this data."
+"This file/URL appears to be from a newer version of GnuCash. You must upgrade "
+"your version of GnuCash to work with this data."
msgstr ""
-"× ×¨×× ×©×§×××¥/URL ×× ×××¨×¡× ×××©× ××תר ×©× ×× ××§×ש. × × ×ש××¨× ××רסת ×× ××§×ש ×¢× ×× ×ª ש×ת×פשר "
-"××¢××× ×¢× × ×ª×× ×× ×××."
+"× ×¨×× ×©×§×××¥/URL ×× ×××¨×¡× ×××©× ××תר ×©× ×× ××§×ש. × × ×ש××¨× ××רסת ×× ××§×ש ×¢× ×× ×ª "
+"ש×ת×פשר ××¢××× ×¢× × ×ª×× ×× ×××."
#: gnucash/gnome-utils/gnc-file.c:262
#, c-format
@@ -6971,52 +7102,56 @@ msgstr "× ×¨×× ×× ××¡× ×× ×ª×× ×× %s ××× × ×§×××. ××× ××צ
#: gnucash/gnome-utils/gnc-file.c:276
#, c-format
msgid ""
-"GnuCash could not obtain the lock for %s. That database may be in use by another "
-"user, in which case you should not open the database. Do you want to proceed with "
-"opening the database?"
+"GnuCash could not obtain the lock for %s. That database may be in use by "
+"another user, in which case you should not open the database. Do you want to "
+"proceed with opening the database?"
msgstr ""
-"××× ××§×ש ×× ×××ª× ×פשר×ת ×× ×¢×ת ×ת %s. ××¡× × ×ª×× ×× ×× ×¢×©×× ××××ת ×ש×××ש ×¢×-××× ×שת×ש "
-"××ר, ××××§×¨× ×× ×ס×ר ×פת×× ×ת ××¡× ×× ×ª×× ××. ××× ×××ש×× ×פת××ת ××¡× ×× ×ª×× ××?"
+"××× ××§×ש ×× ×××ª× ×פשר×ת ×× ×¢×ת ×ת %s. ××¡× × ×ª×× ×× ×× ×¢×©×× ××××ת ×ש×××ש ×¢×-××× "
+"×שת×ש ××ר, ××××§×¨× ×× ×ס×ר ×פת×× ×ת ××¡× ×× ×ª×× ××. ××× ×××ש×× ×פת××ת ××¡× ×× ×ª×× ××?"
#: gnucash/gnome-utils/gnc-file.c:284
#, c-format
msgid ""
-"GnuCash could not obtain the lock for %s. That database may be in use by another "
-"user, in which case you should not import the database. Do you want to proceed with "
-"importing the database?"
+"GnuCash could not obtain the lock for %s. That database may be in use by "
+"another user, in which case you should not import the database. Do you want to "
+"proceed with importing the database?"
msgstr ""
-"××× ××§×ש ×× ×××ª× ×פשר×ת ×× ×¢×× ×ת %s. ××¡× × ×ª×× ×× ×× ×¢×©×× ××××ת ×ש×××ש ×¢×-××× ×שת×ש "
-"××ר, ××××§×¨× ×× ×× ×¦×¨×× ××××× ×ת ××¡× ×× ×ª×× ××. ××× ×××ש×× ×××××× ××¡× ×× ×ª×× ××?"
+"××× ××§×ש ×× ×××ª× ×פשר×ת ×× ×¢×× ×ת %s. ××¡× × ×ª×× ×× ×× ×¢×©×× ××××ת ×ש×××ש ×¢×-××× "
+"×שת×ש ××ר, ××××§×¨× ×× ×× ×¦×¨×× ××××× ×ת ××¡× ×× ×ª×× ××. ××× ×××ש×× ×××××× ××¡× "
+"×× ×ª×× ××?"
#: gnucash/gnome-utils/gnc-file.c:292
#, c-format
msgid ""
-"GnuCash could not obtain the lock for %s. That database may be in use by another "
-"user, in which case you should not save the database. Do you want to proceed with "
-"saving the database?"
+"GnuCash could not obtain the lock for %s. That database may be in use by "
+"another user, in which case you should not save the database. Do you want to "
+"proceed with saving the database?"
msgstr ""
-"××× ××§×ש ×× ×××ª× ×פשר×ת ×× ×¢×× ×ת %s. ××¡× × ×ª×× ×× ×× ×¢×©×× ××××ת ×ש×××ש ×¢×-××× ×שת×ש "
-"××ר, ××××§×¨× ×× ×× ×¦×¨×× ×ש××ר ×ת ××¡× ×× ×ª×× ××. ××× ×××ש×× ×ש××רת ××¡× ×× ×ª×× ××?"
+"××× ××§×ש ×× ×××ª× ×פשר×ת ×× ×¢×× ×ת %s. ××¡× × ×ª×× ×× ×× ×¢×©×× ××××ת ×ש×××ש ×¢×-××× "
+"×שת×ש ××ר, ××××§×¨× ×× ×× ×¦×¨×× ×ש××ר ×ת ××¡× ×× ×ª×× ××. ××× ×××ש×× ×ש××רת ××¡× "
+"×× ×ª×× ××?"
#: gnucash/gnome-utils/gnc-file.c:300
#, c-format
msgid ""
-"GnuCash could not obtain the lock for %s. That database may be in use by another "
-"user, in which case you should not export the database. Do you want to proceed with "
-"exporting the database?"
+"GnuCash could not obtain the lock for %s. That database may be in use by "
+"another user, in which case you should not export the database. Do you want to "
+"proceed with exporting the database?"
msgstr ""
-"××× ××§×ש ×× ×××ª× ×פשר×ת ×× ×¢×× ×ת %s. ××¡× × ×ª×× ×× ×× ×¢×©×× ××××ת ×ש×××ש ×¢×-××× ×שת×ש "
-"××ר, ××××§×¨× ×× ×× ×¦×¨×× ××××¦× ×ת ××¡× ×× ×ª×× ××. ××× ×××ש×× ×××צ×× ××¡× ×× ×ª×× ××?"
+"××× ××§×ש ×× ×××ª× ×פשר×ת ×× ×¢×× ×ת %s. ××¡× × ×ª×× ×× ×× ×¢×©×× ××××ת ×ש×××ש ×¢×-××× "
+"×שת×ש ××ר, ××××§×¨× ×× ×× ×¦×¨×× ××××¦× ×ת ××¡× ×× ×ª×× ××. ××× ×××ש×× ×××צ×× ××¡× "
+"×× ×ª×× ××?"
#: gnucash/gnome-utils/gnc-file.c:325
#, c-format
msgid ""
-"GnuCash could not write to %s. 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 action."
+"GnuCash could not write to %s. 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 action."
msgstr ""
-"××× ××§×ש ×× ×××ª× ×פשר×ת ××ת×× ×- %s. ××¡× × ×ª×× ×× ×× ×¢×©×× ××××ת ××ער×ת ×§×צ×× ×קר××× "
-"××××, ××ת×× ×©××× ×רש×ת ×ת××× ×¢××ר ×ספר×× ×× ×©×ª××× ×ª ××× ××-××ר×ס ××× ×¢×ª פע××× ××."
+"××× ××§×ש ×× ×××ª× ×פשר×ת ××ת×× ×- %s. ××¡× × ×ª×× ×× ×× ×¢×©×× ××××ת ××ער×ת ×§×צ×× "
+"×קר××× ××××, ××ת×× ×©××× ×רש×ת ×ת××× ×¢××ר ×ספר×× ×× ×©×ª××× ×ª ××× ××-××ר×ס ××× ×¢×ª "
+"פע××× ××."
#: gnucash/gnome-utils/gnc-file.c:333
#, c-format
@@ -7025,7 +7160,8 @@ msgstr "××§×××¥/×ת××ת URL ×- %s ××× × ×××× × ×ª×× × ×× ××§×
#: gnucash/gnome-utils/gnc-file.c:339
#, c-format
-msgid "The server at URL %s experienced an error or encountered bad or corrupt data."
+msgid ""
+"The server at URL %s experienced an error or encountered bad or corrupt data."
msgstr "×שרת ×- URL %s × ×ª×§× ×ש×××× ×× × ×ª×§× ×× ×ª×× ×× ×¤×××××."
#: gnucash/gnome-utils/gnc-file.c:345
@@ -7033,7 +7169,8 @@ msgstr "×שרת ×- URL %s × ×ª×§× ×ש×××× ×× × ×ª×§× ×× ×ª×× ××
msgid "You do not have permission to access %s."
msgstr "××× ×רש××ת ××שת ×× %s."
-#: gnucash/gnome-utils/gnc-file.c:350 gnucash/register/register-core/formulacell.c:118
+#: gnucash/gnome-utils/gnc-file.c:350
+#: gnucash/register/register-core/formulacell.c:118
#: gnucash/register/register-core/pricecell.c:181
#, c-format
msgid "An error occurred while processing %s."
@@ -7086,11 +7223,11 @@ msgstr "×× ×××ª× ×פשר×ת ××צע ××××× ×©× ××§×××¥ %s"
#: gnucash/gnome-utils/gnc-file.c:414
#, c-format
msgid ""
-"Could not write to file %s. Check that you have permission to write to this file "
-"and that there is sufficient space to create it."
+"Could not write to file %s. Check that you have permission to write to this "
+"file and that there is sufficient space to create it."
msgstr ""
-"×× ×××ª× ×פשר×ת ××ת×× ××§×××¥ %s. × × ××××× ×©×ש ×רש×× ××ת×× ××§×××¥ ×× ×שק××× ×× ××§×× "
-"××צ×רת×."
+"×× ×××ª× ×פשר×ת ××ת×× ××§×××¥ %s. × × ××××× ×©×ש ×רש×× ××ת×× ××§×××¥ ×× ×שק××× ×× "
+"××§×× ××צ×רת×."
#: gnucash/gnome-utils/gnc-file.c:421
#, c-format
@@ -7105,8 +7242,8 @@ msgstr "××× ×רש×ת קר××× ×קר××× ×××§×××¥ %s."
msgid ""
"You attempted to save in\n"
"%s\n"
-"or a subdirectory thereof. This is not allowed as %s reserves that directory for "
-"internal use.\n"
+"or a subdirectory thereof. This is not allowed as %s reserves that directory "
+"for internal use.\n"
"\n"
"Please try again in a different directory."
msgstr ""
@@ -7118,21 +7255,21 @@ msgstr ""
#: gnucash/gnome-utils/gnc-file.c:436
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."
+"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:445
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."
+"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:454
msgid ""
@@ -7141,43 +7278,44 @@ msgid ""
"documentation to learn how to clear out dangling login sessions."
msgstr ""
"××¡× ×× ×ª×× ×× SQL × ××¦× ×ש×××ש ×שת×ש×× ××ר××, ××× ××× ×פשר×ת ××צע ×ת ×ש×ר×× ×¢× "
-"×××ª× ×ª×§×ת. ×× ××× ×שת×ש×× ××ר×× ×©××××ר×× ×ר××¢, × × ××¢××× ×ת××¢×× ×××× ××××× ×××¦× ×× ×§×ת "
-"× ×¢××ת ×ת××ר×ת."
+"×××ª× ×ª×§×ת. ×× ××× ×שת×ש×× ××ר×× ×©××××ר×× ×ר××¢, × × ××¢××× ×ת××¢×× ×××× ××××× ×××¦× "
+"×× ×§×ת × ×¢××ת ×ת××ר×ת."
#: gnucash/gnome-utils/gnc-file.c:464
msgid ""
"The library \"libdbi\" installed on your system doesn't correctly store large "
-"numbers. This means GnuCash cannot use SQL databases correctly. Gnucash will not "
-"open or save to SQL databases until this is fixed by installing a different version "
-"of \"libdbi\". Please see https://bugs.gnucash.org/show_bug.cgi?id=611936 for more "
-"information."
+"numbers. This means GnuCash cannot use SQL databases correctly. Gnucash will "
+"not open or save to SQL databases until this is fixed by installing a "
+"different version of \"libdbi\". Please see https://bugs.gnucash.org/show_bug."
+"cgi?id=611936 for more information."
msgstr ""
"×ספר×× \"libdbi\" ××××ª×§× ×ª ××ער×ת ××× × ××××¡× ×ª ×ר××× ×ספר×× ××××××. פ×ר×ש ×××ר "
-"ש×× ××§×ש ×× ×××× ××שת×ש ×ר××× ××ס×× × ×ª×× ×× ×©× SQL. ×× ××§×ש ×× ××¤×ª× ×× ×ש××ר ××ס×× "
-"× ×ª×× ×× SQL ×¢× ×××ª×§× ×ª ××¨×¡× ×©×× × ×©× \"libdbi\". ×× × ×¨×× https://bugs.gnucash.org/"
-"show_bug.cgi?id=611936 ××§××ת ××××¢ × ×סף."
+"ש×× ××§×ש ×× ×××× ××שת×ש ×ר××× ××ס×× × ×ª×× ×× ×©× SQL. ×× ××§×ש ×× ××¤×ª× ×× ×ש××ר "
+"××ס×× × ×ª×× ×× SQL ×¢× ×××ª×§× ×ª ××¨×¡× ×©×× × ×©× \"libdbi\". ×× × ×¨×× https://bugs."
+"gnucash.org/show_bug.cgi?id=611936 ××§××ת ××××¢ × ×סף."
#: gnucash/gnome-utils/gnc-file.c:476
msgid ""
-"GnuCash could not complete a critical test for the presence of a bug in the \"libdbi"
-"\" library. This may be caused by a permissions misconfiguration of your SQL "
-"database. Please see https://bugs.gnucash.org/show_bug.cgi?id=645216 for more "
-"information."
+"GnuCash could not complete a critical test for the presence of a bug in the "
+"\"libdbi\" library. This may be caused by a permissions misconfiguration of "
+"your SQL database. Please see https://bugs.gnucash.org/show_bug.cgi?id=645216 "
+"for more information."
msgstr ""
-"×× ××§×ש ×× ×××× ××ש××× ××××§× ×§×¨×××ת ×× ××××ת ×ª×§× ×ספר××× \"libdbi\". ×ת×× ×©× ××¨× ×¢×§× "
-"תצ×רת ×רש××ת ש×××× ×××¡× ×× ×ª×× ×× SQL. ×× × ×¨×× https://bugs.gnucash.org/show_bug.cgi?"
-"id=645216 ××§××ת ××××¢ × ×סף."
+"×× ××§×ש ×× ×××× ××ש××× ××××§× ×§×¨×××ת ×× ××××ת ×ª×§× ×ספר××× \"libdbi\". ×ת×× ×©× ××¨× "
+"×¢×§× ×ª×¦×רת ×רש××ת ש×××× ×××¡× ×× ×ª×× ×× SQL. ×× × ×¨×× https://bugs.gnucash.org/"
+"show_bug.cgi?id=645216 ××§××ת ××××¢ × ×סף."
#: gnucash/gnome-utils/gnc-file.c:486
msgid ""
-"This file is from an older version of GnuCash and will be upgraded when saved by "
-"this version. You will not be able to read the saved file from the older version of "
-"Gnucash (it will report an \"error parsing the file\"). If you wish to preserve the "
-"old version, exit without saving."
+"This file is from an older version of GnuCash and will be upgraded when saved "
+"by this version. You will not be able to read the saved file from the older "
+"version of Gnucash (it will report an \"error parsing the file\"). If you wish "
+"to preserve the old version, exit without saving."
msgstr ""
-"××§×××¥ ×××¨×¡× ××©× × ××תר ×©× ×× ××§×ש ××ש×××¨× ×עת ש×××¨×ª× ×¢× ××× ×××¨×¡× ×× ××××ת. ×× × ××ª× "
-"×××× ×קר×× ×§×××¥ ×©× ×©×ר ×¢× ××× ××¨×¡× ××©× × ××תר ×©× ×× ××§×ש ( ××××× × \"ש×××× ×פר×שת ××§×××¥"
-"\"). ×¢× ×× ×ª ×ש×ר ×ת ×××¨×¡× ×××©× × ×©× ××§×××¥, × × ××××ר ××צ××× ××× ×©××ר×."
+"××§×××¥ ×××¨×¡× ××©× × ××תר ×©× ×× ××§×ש ××ש×××¨× ×עת ש×××¨×ª× ×¢× ××× ×××¨×¡× ×× ××××ת. ×× "
+"× ××ª× ×××× ×קר×× ×§×××¥ ×©× ×©×ר ×¢× ××× ××¨×¡× ××©× × ××תר ×©× ×× ××§×ש ( ××××× × \"ש×××× "
+"×פר×שת ××§×××¥\"). ×¢× ×× ×ª ×ש×ר ×ת ×××¨×¡× ×××©× × ×©× ××§×××¥, × × ××××ר ××צ××× ××× "
+"ש××ר×."
#: gnucash/gnome-utils/gnc-file.c:497
#, c-format
@@ -7191,7 +7329,8 @@ msgstr "ש××רת ש×× ×××× ××§×××¥?"
#: gnucash/gnome-utils/gnc-file.c:604 gnucash/gnome-utils/gnc-main-window.c:1278
#, c-format
msgid "If you don't save, changes from the past %d minute will be discarded."
-msgid_plural "If you don't save, changes from the past %d minutes will be discarded."
+msgid_plural ""
+"If you don't save, changes from the past %d minutes will be discarded."
msgstr[0] "××××× ××× ×ª×ª×צע ש××ר×, ×ש×× ×××× × %d ×××§× ×××ר×× × ××××."
msgstr[1] "×× ×× ×ª×ª×צע ש××ר×, ×ש×× ×××× × %d ×××§×ת ×××ר×× ×ת ×××××."
@@ -7206,21 +7345,22 @@ msgstr "××× ××§×ש ×× ×××ª× ×פשר×ת ×× ×¢×× ×ת %s."
#: gnucash/gnome-utils/gnc-file.c:768
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?"
+"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:771
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 action. If you "
-"proceed you may not be able to save any changes. What would you like to do?"
+"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 "
+"action. If you proceed you may not be able to save any changes. What would you "
+"like to do?"
msgstr ""
-"××¡× × ×ª×× ×× ×× ×¢×©×× ××××ת ××ער×ת ×§×צ×× ×קר××× ××××, ××ת×× ×©××× ×רש×ת ×ת××× ×ספר××, "
-"×× ×©×ª××× ×ª ×× ××-××ר×ס ××× ×¢×ª פע××× ××. ××××¨× ×××ש××, עש×××× ×©×× ××פשר ש××רת ש×× ×××× "
-"××ש××. ×××¦× ×××ש××?"
+"××¡× × ×ª×× ×× ×× ×¢×©×× ××××ת ××ער×ת ×§×צ×× ×קר××× ××××, ××ת×× ×©××× ×רש×ת ×ת××× "
+"×ספר××, ×× ×©×ª××× ×ª ×× ××-××ר×ס ××× ×¢×ª פע××× ××. ××××¨× ×××ש××, עש×××× ×©×× ××פשר "
+"ש××רת ש×× ×××× ××ש××. ×××¦× ×××ש××?"
#: gnucash/gnome-utils/gnc-file.c:794
msgid "_Open Read-Only"
@@ -7278,7 +7418,8 @@ msgstr "××¡× ×× ×ª×× ×× × ×¤×ª× ×קר××× ××××. ××× ×ש××ר
#: gnucash/gnome-utils/gnc-file.c:1604
#, c-format
msgid ""
-"Reverting will discard all unsaved changes to %s. Are you sure you want to proceed ?"
+"Reverting will discard all unsaved changes to %s. Are you sure you want to "
+"proceed ?"
msgstr "××ס×× ×ª×©××× ×ת ×× ×ש×× ×××× × %s ש××¨× × ×©×ר×. ××× ×××ש×× ?"
#: gnucash/gnome-utils/gnc-file.c:1612 gnucash/gnome-utils/gnc-main-window.c:1246
@@ -7291,19 +7432,20 @@ msgstr "×צ×..."
#: gnucash/gnome-utils/gnc-gnome-utils.c:284
msgid ""
-"GnuCash could not find the files for the help documentation. This is likely because "
-"the 'gnucash-docs' package is not installed"
+"GnuCash could not find the files for the help documentation. This is likely "
+"because the 'gnucash-docs' package is not installed"
msgstr ""
-"×× ××§×ש ×× ×צ××× ××צ×× ×ת ×§××¦× ×ª××¢×× ××¢×ר×. ס××ר ××× ×× ×©×ס××× ××× ××× ×©×××××× ' "
-"gnucash-docs ' ××× × ×××ª×§× ×ª"
+"×× ××§×ש ×× ×צ××× ××צ×× ×ת ×§××¦× ×ª××¢×× ××¢×ר×. ס××ר ××× ×× ×©×ס××× ××× ××× ×©×××××× "
+"'gnucash-docs ' ××× × ×××ª×§× ×ª"
-#: gnucash/gnome-utils/gnc-gnome-utils.c:377 gnucash/gnome-utils/gnc-gnome-utils.c:443
+#: gnucash/gnome-utils/gnc-gnome-utils.c:377
+#: gnucash/gnome-utils/gnc-gnome-utils.c:443
msgid ""
-"GnuCash could not find the files for the help documentation. This is likely because "
-"the 'gnucash-docs' package is not installed."
+"GnuCash could not find the files for the help documentation. This is likely "
+"because the 'gnucash-docs' package is not installed."
msgstr ""
-"×× ××§×ש ×× ×צ××× ××צ×× ×ת ×§××¦× ×ª××¢×× ××¢×ר×. ס××ר ××× ×× ×©×ס××× ××× ××× ×©×××××× ' "
-"gnucash-docs ' ××× × ×××ª×§× ×ª."
+"×× ××§×ש ×× ×צ××× ××צ×× ×ת ×§××¦× ×ª××¢×× ××¢×ר×. ס××ר ××× ×× ×©×ס××× ××× ××× ×©×××××× "
+"'gnucash-docs ' ××× × ×××ª×§× ×ª."
#: gnucash/gnome-utils/gnc-gnome-utils.c:408
msgid "GnuCash could not find the files for the help documentation."
@@ -7401,7 +7543,7 @@ msgstr "ער××ת ×××פ××× ×× ×©× ××§×××¥ ×× ××××"
#: gnucash/gtkbuilder/dialog-tax-table.glade:26
#: gnucash/gtkbuilder/dialog-totd.glade:59
#: gnucash/gtkbuilder/dialog-trans-assoc.glade:79
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:695
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:685
#: gnucash/import-export/aqb/dialog-ab.glade:46
msgid "_Close"
msgstr "_ס××ר×"
@@ -7476,7 +7618,7 @@ msgstr "_ת××× ××¢× ××× ××"
#: gnucash/gnome-utils/gnc-main-window.c:383
msgid "Open the GnuCash Help"
-msgstr "פת××ת ×¢××¨× ×× ××§×ש"
+msgstr "פת××ת ×¢×רת ×× ××§×ש"
#: gnucash/gnome-utils/gnc-main-window.c:387
msgid "_About"
@@ -7558,13 +7700,15 @@ msgstr "ש××רת ש×× ×××× ××§×××¥ %s ××¤× × ×¡××ר×?"
#: gnucash/gnome-utils/gnc-main-window.c:1233
#, c-format
msgid ""
-"If you don't save, changes from the past %d hours and %d minutes will be discarded."
+"If you don't save, changes from the past %d hours and %d minutes will be "
+"discarded."
msgstr "××××× ××ש×× ×××× × %d ×שע×ת × %d ×××§×ת ×××ר×× ×ת ×× ×ש×ר×, ×× ××××××."
#: gnucash/gnome-utils/gnc-main-window.c:1235
#, c-format
msgid ""
-"If you don't save, changes from the past %d days and %d hours will be discarded."
+"If you don't save, changes from the past %d days and %d hours will be "
+"discarded."
msgstr "××××× ××ש×× ×××× × %d ××××× × %d ×××§×ת ×××ר×× ×ת ×× ×ש×ר×, ×× ××××××."
#: gnucash/gnome-utils/gnc-main-window.c:1283
@@ -7579,7 +7723,7 @@ msgstr "(×קר××× ××××)"
#: gnucash/gnome-utils/gnc-main-window.c:1519
msgid "Unsaved Book"
-msgstr "ספר ×ש××× ×ת ×× ×©××ר"
+msgstr "ספר ×ש××× ×ת ×× × ×©×ר"
#: gnucash/gnome-utils/gnc-main-window.c:1679
msgid "Last modified on %a, %b %d, %Y at %I:%M %p"
@@ -7722,7 +7866,8 @@ msgid "never"
msgstr "××£ פע×"
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:113
-msgid "You can not change this transaction, the Book or Register is set to Read Only."
+msgid ""
+"You can not change this transaction, the Book or Register is set to Read Only."
msgstr "×× × ××ª× ××©× ×ת ×ª× ××¢× ××, ×ספר×× ×× ××××× ×××××¨× ×קר××× ××××."
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:131
@@ -7807,8 +7952,8 @@ msgstr "××××¢ פ×צ×× ××ש"
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1303
msgid ""
-"This is the split anchoring this transaction to the register. You can not duplicate "
-"it from this register window."
+"This is the split anchoring this transaction to the register. You can not "
+"duplicate it from this register window."
msgstr "×פ×צ×× ××¢×× ×ª× ××¢× ×× ×××××. ×× × ××ª× ×ש××¤× ×ת ××ª× ××¢× ××××× ×××× ××."
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1357
@@ -7822,11 +7967,11 @@ msgstr "×× × ××ª× ×רש×× ×ª× ××¢× ×ת×ר×× ××"
#: gnucash/register/ledger-core/split-register.c:615
msgid ""
"The entered date of the duplicated transaction is older than the \"Read-Only "
-"Threshold\" set for this book. This setting can be changed in File -> Properties -> "
-"Accounts."
+"Threshold\" set for this book. This setting can be changed in File -> "
+"Properties -> Accounts."
msgstr ""
-"×ת×ר×× ××ª× ××¢× ××ש××פ×ת ×§××× ××¢×¨× \"סף קר××× ××××\" ×¢××ר ספר ×ש××× ×ת ××. × ××ª× ××©× ×ת "
-"××××¨× ×× ××§×××¥> ××פ××× ××-> ×ש××× ×ת."
+"×ת×ר×× ××ª× ××¢× ××ש××פ×ת ×§××× ××¢×¨× \"סף קר××× ××××\" ×¢××ר ספר ×ש××× ×ת ××. × ××ª× "
+"××©× ×ת ××××¨× ×× ××§×××¥> ××פ××× ××-> ×ש××× ×ת."
#. Translators: This message will be presented when a user *
#. * attempts to record a transaction without splits
@@ -7836,11 +7981,11 @@ msgstr "××× ×ספ××§ ××××¢ ××ª× ××¢× ×¨××§×?"
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1725
msgid ""
-"The blank transaction does not have enough information to save it. Would you like "
-"to return to the transaction to update, or cancel the save?"
+"The blank transaction does not have enough information to save it. Would you "
+"like to return to the transaction to update, or cancel the save?"
msgstr ""
-"××× ×× ××××¢ ××ª× ××¢× ×ר××§× ×¢× ×× ×ª ×©× ××ª× ×××× ×ש××ר ××ת×. ××× ××××ר ××ª× ××¢× ××× ××¢××× "
-"×××ª× ××, ×××× ×ת ×ש××ר×?"
+"××× ×× ××××¢ ××ª× ××¢× ×ר××§× ×¢× ×× ×ª ×©× ××ª× ×××× ×ש××ר ××ת×. ××× ××××ר ××ª× ××¢× ××× "
+"××¢××× ×××ª× ××, ×××× ×ת ×ש××ר×?"
#. Translators: Return to the transaction to update
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1737
@@ -7858,8 +8003,8 @@ msgid ""
"You are about to mark a reconciled split as unreconciled. Doing so might make "
"future reconciliation difficult! Continue with this change?"
msgstr ""
-"פע××× ×× ×ª×¡×× ×¤×צ×× ×©××ת×× ××××ª× ××ת××. ××צ××¢ פע××× ×× ×¢××× ××פ×× ×ת×××ת ×עת××××ת "
-"××§×©× ××תר! ××× ×××ש×× ×ש×× ×× ××?"
+"פע××× ×× ×ª×¡×× ×¤×צ×× ×©××ת×× ××××ª× ××ת××. ××צ××¢ פע××× ×× ×¢××× ××פ×× ×ת×××ת "
+"×עת××××ת ××§×©× ××תר! ××× ×××ש×× ×ש×× ×× ××?"
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1826
#: gnucash/register/ledger-core/split-register-control.c:1850
@@ -7867,7 +8012,7 @@ msgid "_Unreconcile"
msgstr "_××××× ×ת×××"
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1911
-#: gnucash/register/ledger-core/split-register-model.c:2205
+#: gnucash/register/ledger-core/split-register-model.c:2207
msgid "Change reconciled split?"
msgstr "ש×× ×× ×¤×צ×× ××ת××?"
@@ -7876,8 +8021,8 @@ msgid ""
"You are about to change a reconciled split. Doing so might make future "
"reconciliation difficult! Continue with this change?"
msgstr ""
-"פע××× ×× ×ª×©× × ×¤×צ×× ×©××ת××. ××צ××¢ פע××× ×× ×¢××× ××פ×× ×ת×××ת ×עת××××ת ××§×©× ××תר! "
-"××× ×××ש×× ×ש×× ×× ××?"
+"פע××× ×× ×ª×©× × ×¤×צ×× ×©××ת××. ××צ××¢ פע××× ×× ×¢××× ××פ×× ×ת×××ת ×עת××××ת ××§×©× "
+"××תר! ××× ×××ש×× ×ש×× ×× ××?"
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1918
msgid "Change split linked to a reconciled split?"
@@ -7888,11 +8033,11 @@ msgid ""
"You are about to change a split that is linked to a reconciled split. Doing so "
"might make future reconciliation difficult! Continue with this change?"
msgstr ""
-"פע××× ×× ×ª×©× × ×¤×צ×× ×××§×שר ×פ×צ×× ×©××ת××. ××צ××¢ פע××× ×× ×¢××× ××פ×× ×ת×××ת ×עת××××ת "
-"××§×©× ××תר! ××× ×××ש×× ×ש×× ×× ××?"
+"פע××× ×× ×ª×©× × ×¤×צ×× ×××§×שר ×פ×צ×× ×©××ת××. ××צ××¢ פע××× ×× ×¢××× ××פ×× ×ת×××ת "
+"×עת××××ת ××§×©× ××תר! ××× ×××ש×× ×ש×× ×× ××?"
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1934
-#: gnucash/register/ledger-core/split-register-model.c:2229
+#: gnucash/register/ledger-core/split-register-model.c:2231
msgid "Chan_ge Split"
msgstr "ש×× ×_× ×¤×צ××"
@@ -7915,7 +8060,8 @@ msgstr "×ש××× ×¨×× ×¢×××× × ××ש"
#. must only contain the part after the | character.
#: gnucash/gnome-utils/gnc-tree-model-split-reg.c:2856
#: gnucash/register/ledger-core/split-register.c:2579
-msgid "Action Column|Deposit"
+msgctxt "Action Column"
+msgid "Deposit"
msgstr "×פק××"
#: gnucash/gnome-utils/gnc-tree-model-split-reg.c:2857
@@ -8113,10 +8259,10 @@ msgstr "ש×ר"
#: gnucash/import-export/qif-imp/qif-dialog-utils.scm:72
#: gnucash/import-export/qif-imp/qif-dialog-utils.scm:76
#: gnucash/register/ledger-core/split-register.c:2659
-#: gnucash/report/standard-reports/balance-sheet.scm:657
+#: gnucash/report/standard-reports/balance-sheet.scm:656
#: gnucash/report/standard-reports/balsheet-pnl.scm:1057
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:813
-#: libgnucash/app-utils/gnc-ui-util.c:1048 libgnucash/engine/Account.cpp:4101
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:812
+#: libgnucash/app-utils/gnc-ui-util.c:1027 libgnucash/engine/Account.cpp:4101
msgid "Equity"
msgstr "×××"
@@ -8135,7 +8281,7 @@ msgstr "×××"
#: gnucash/report/standard-reports/general-journal.scm:108
#: gnucash/report/standard-reports/general-ledger.scm:86
#: gnucash/report/standard-reports/general-ledger.scm:106
-#: gnucash/report/standard-reports/portfolio.scm:258
+#: gnucash/report/standard-reports/portfolio.scm:257
#: gnucash/report/standard-reports/price-scatter.scm:39
#: gnucash/report/standard-reports/price-scatter.scm:346
#: gnucash/report/standard-reports/register.scm:149
@@ -8168,8 +8314,8 @@ msgid "Dist"
msgstr "×פצ×"
#: gnucash/gnome-utils/gnc-tree-util-split-reg.c:45
-#: gnucash/report/standard-reports/register.scm:228 libgnucash/engine/Split.c:1579
-#: libgnucash/engine/Split.c:1596
+#: gnucash/report/standard-reports/register.scm:228
+#: libgnucash/engine/Split.c:1579 libgnucash/engine/Split.c:1596
msgid "-- Split Transaction --"
msgstr "-- פ×צ×× ×ª× ××¢× --"
@@ -8177,27 +8323,30 @@ msgstr "-- פ×צ×× ×ª× ××¢× --"
msgid "-- Stock Split --"
msgstr "-- פ×צ×× × ×ר ×¢×¨× --"
+#. Translators: This is a date format, see i.e.
+#. https://www.gnu.org/software/libc/manual/html_node/Formatting-Calendar-Time.html
#: gnucash/gnome-utils/gnc-tree-util-split-reg.c:436
#: gnucash/register/ledger-core/gncEntryLedgerModel.c:576
-#: gnucash/register/ledger-core/split-register-model.c:1006
+#: gnucash/register/ledger-core/split-register-model.c:1008
msgid "%A %d %B %Y"
msgstr "%A %d %B %Y"
#: gnucash/gnome-utils/gnc-tree-util-split-reg.c:479
msgid ""
-"The entered date of the new transaction is older than the \"Read-Only Threshold\" "
-"set for this book. This setting can be changed in File -> Properties -> Accounts."
+"The entered date of the new transaction is older than the \"Read-Only Threshold"
+"\" set for this book. This setting can be changed in File -> Properties -> "
+"Accounts."
msgstr ""
-"×ת×ר×× ××ª× ××¢× ××××©× ×§××× ××¢×¨× \"סף קר××× ××××\" ×¢××ר ספר ×ש××× ×ת ××. × ××ª× ××©× ×ת "
-"××××¨× ×× ××§×××¥> ××פ××× ××-> ת××§× ××§×××ת."
+"×ת×ר×× ××ª× ××¢× ××××©× ×§××× ××¢×¨× \"סף קר××× ××××\" ×¢××ר ספר ×ש××× ×ת ××. × ××ª× "
+"××©× ×ת ××××¨× ×× ××§×××¥> ××פ××× ××-> ת××§× ××§×××ת."
#: gnucash/gnome-utils/gnc-tree-util-split-reg.c:861
msgid ""
-"Exchange Rate Canceled, using existing rate or default 1 to 1 rate if this is a new "
-"transaction."
+"Exchange Rate Canceled, using existing rate or default 1 to 1 rate if this is "
+"a new transaction."
msgstr ""
-"שער ××××פ×× ××××, ××¢×©× ×©×××ש ×שער ×§×××, ×× ××ר×רת ×××× ×©× ×©×¢×¨ ×××¨× 1 × 1, ×× ×× "
-"×ª× ××¢× ××ש×."
+"שער ××××פ×× ××××, ××¢×©× ×©×××ש ×שער ×§×××, ×× ××ר×רת ×××× ×©× ×©×¢×¨ ×××¨× 1 × 1, ×× "
+"×× ×ª× ××¢× ××ש×."
#: gnucash/gnome-utils/gnc-tree-util-split-reg.c:1122
#: gnucash/register/ledger-core/split-register.c:2038
@@ -8207,8 +8356,8 @@ msgstr "××ש×× ×ª× ××¢× ×××ש"
#: gnucash/gnome-utils/gnc-tree-util-split-reg.c:1123
#: gnucash/register/ledger-core/split-register.c:2039
msgid ""
-"The values entered for this transaction are inconsistent. Which value would you "
-"like to have recalculated?"
+"The values entered for this transaction are inconsistent. Which value would "
+"you like to have recalculated?"
msgstr "×ער××× ×©×××× × ×¢××ר ×ª× ××¢× ×× ××× × ×¢×§××××. ×××× ×¢×¨× ×××©× ×××ש?"
#: gnucash/gnome-utils/gnc-tree-util-split-reg.c:1130
@@ -8249,7 +8398,7 @@ msgstr "_××ש×× ×××ש"
#: gnucash/report/report-system/trep-engine.scm:1047
#: gnucash/report/standard-reports/general-ledger.scm:79
#: gnucash/report/standard-reports/general-ledger.scm:99
-#: gnucash/report/standard-reports/trial-balance.scm:742
+#: gnucash/report/standard-reports/trial-balance.scm:734
msgid "Account Name"
msgstr "×©× ×ש×××"
@@ -8332,38 +8481,38 @@ msgid "Tax Info"
msgstr "××××¢ ×ס"
#. Translators: %s is a currency mnemonic.
-#: gnucash/gnome-utils/gnc-tree-view-account.c:1718
+#: gnucash/gnome-utils/gnc-tree-view-account.c:1716
#, c-format
msgid "Present (%s)"
msgstr "× ×××× (%s)"
#. Translators: %s is a currency mnemonic.
-#: gnucash/gnome-utils/gnc-tree-view-account.c:1721
+#: gnucash/gnome-utils/gnc-tree-view-account.c:1719
#: gnucash/gnome-utils/gnc-tree-view-owner.c:926
#, c-format
msgid "Balance (%s)"
msgstr "××ª×¨× (%s)"
#. Translators: %s is a currency mnemonic.
-#: gnucash/gnome-utils/gnc-tree-view-account.c:1724
+#: gnucash/gnome-utils/gnc-tree-view-account.c:1722
#, c-format
msgid "Cleared (%s)"
msgstr "× ××§× (%s)"
#. Translators: %s is a currency mnemonic.
-#: gnucash/gnome-utils/gnc-tree-view-account.c:1727
+#: gnucash/gnome-utils/gnc-tree-view-account.c:1725
#, c-format
msgid "Reconciled (%s)"
msgstr "××ת×× (%s)"
#. Translators: %s is a currency mnemonic.
-#: gnucash/gnome-utils/gnc-tree-view-account.c:1730
+#: gnucash/gnome-utils/gnc-tree-view-account.c:1728
#, c-format
msgid "Future Minimum (%s)"
msgstr "××× ×××× ×¢×ª××× (%s)"
#. Translators: %s is a currency mnemonic.
-#: gnucash/gnome-utils/gnc-tree-view-account.c:1733
+#: gnucash/gnome-utils/gnc-tree-view-account.c:1731
#, c-format
msgid "Total (%s)"
msgstr "×¡× ××× (%s)"
@@ -8398,12 +8547,13 @@ msgstr "ש×ר×ר"
msgid "Get Quotes"
msgstr "××××ר שער××"
-# ×= ×©×¢×¨× ×××פ××
+# ×=×©×¢×¨× ××רס×
#. Translators: This string has a context prefix; the translation
#. must only contain the part after the | character.
#: gnucash/gnome-utils/gnc-tree-view-commodity.c:409
-msgid "Column letter for 'Get Quotes'|Q"
-msgstr "×"
+msgctxt "Column letter for 'Get Quotes'"
+msgid "Q"
+msgstr "×"
#: gnucash/gnome-utils/gnc-tree-view-commodity.c:415
#: gnucash/gnome-utils/gnc-tree-view-price.c:414
@@ -8470,7 +8620,8 @@ msgstr "×××\"×"
#: gnucash/gnome-utils/gnc-tree-view-owner.c:478
#: gnucash/gtkbuilder/dialog-customer.glade:165
#: gnucash/gtkbuilder/dialog-employee.glade:141
-#: gnucash/gtkbuilder/dialog-invoice.glade:197 gnucash/gtkbuilder/dialog-job.glade:305
+#: gnucash/gtkbuilder/dialog-invoice.glade:197
+#: gnucash/gtkbuilder/dialog-job.glade:305
#: gnucash/gtkbuilder/dialog-order.glade:218
#: gnucash/gtkbuilder/dialog-vendor.glade:166
#: gnucash/report/business-reports/aging.scm:57
@@ -8482,7 +8633,8 @@ msgstr "פע××"
#. Translators: This string has a context prefix; the translation
#. must only contain the part after the | character.
#: gnucash/gnome-utils/gnc-tree-view-owner.c:481
-msgid "Column letter for 'Active'|A"
+msgctxt "Column letter for 'Active'"
+msgid "A"
msgstr "פ"
#: gnucash/gnome-utils/gnc-tree-view-price.c:396
@@ -8494,7 +8646,8 @@ msgid "Status Bar"
msgstr "סר×× ×צ×"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:1247
-#: gnucash/report/business-reports/balsheet-eg.scm:445 libgnucash/engine/Scrub.c:365
+#: gnucash/report/business-reports/balsheet-eg.scm:445
+#: libgnucash/engine/Scrub.c:365
msgid "Imbalance"
msgstr "××סר ×××××"
@@ -8536,7 +8689,8 @@ msgid "Date Posted / Entered / Reconciled"
msgstr "ת×ר×× ×¨×ש×× / ××× × / ×ת×××"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:2747
-#: gnucash/gtkbuilder/dialog-order.glade:272 gnucash/gtkbuilder/dialog-order.glade:631
+#: gnucash/gtkbuilder/dialog-order.glade:272
+#: gnucash/gtkbuilder/dialog-order.glade:631
#: gnucash/report/business-reports/customer-summary.scm:72
#: gnucash/report/business-reports/job-report.scm:44
#: gnucash/report/business-reports/owner-report.scm:54
@@ -8565,7 +8719,7 @@ msgstr "ספק / ×××ר"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:2818
msgid "Description / Notes / Memo"
-msgstr "ת××ר / ×ער×ת / ×××ר"
+msgstr "ת×××ר / ×ער×ת / ×××ר"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:2848
#: gnucash/import-export/csv-exp/csv-transactions-export.c:623
@@ -8625,8 +8779,8 @@ msgstr "תק×××××"
#: gnucash/report/business-reports/customer-summary.scm:140
#: gnucash/report/business-reports/customer-summary.scm:343
#: gnucash/report/standard-reports/balsheet-pnl.scm:1234
-#: gnucash/report/standard-reports/net-charts.scm:409
-#: gnucash/report/standard-reports/net-charts.scm:489
+#: gnucash/report/standard-reports/net-charts.scm:407
+#: gnucash/report/standard-reports/net-charts.scm:487
#: libgnucash/app-utils/prefs.scm:73 libgnucash/engine/Account.cpp:4100
#: libgnucash/engine/gncInvoice.c:1061
msgid "Expense"
@@ -8663,43 +8817,43 @@ msgid "Enter the transaction number, such as the check number"
msgstr "× × ××××× ×ספר ס×××××× ××ª× ××¢×, ××× ×ספר ×××××"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3193
-#: gnucash/register/ledger-core/split-register-model.c:1138
+#: gnucash/register/ledger-core/split-register-model.c:1140
msgid "Enter the name of the Customer"
msgstr "× × ××××× ×©× ××§××"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3195
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3204
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3213
-#: gnucash/register/ledger-core/split-register-model.c:1175
+#: gnucash/register/ledger-core/split-register-model.c:1177
msgid "Enter notes for the transaction"
msgstr "× × ××××× ×ער×ת ××ª× ××¢×"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3197
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3206
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3215
-#: gnucash/register/ledger-core/split-register-model.c:1335
+#: gnucash/register/ledger-core/split-register-model.c:1337
msgid "Enter a description of the split"
msgstr "× × ××××× ×ª×××ר ×פ×צ××"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3202
-#: gnucash/register/ledger-core/split-register-model.c:1141
+#: gnucash/register/ledger-core/split-register-model.c:1143
msgid "Enter the name of the Vendor"
msgstr "× × ××××× ×©× ×ספק"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3211
-#: gnucash/register/ledger-core/split-register-model.c:1144
+#: gnucash/register/ledger-core/split-register-model.c:1146
msgid "Enter a description of the transaction"
msgstr "××× ×ª ת×××ר ××ª× ××¢×"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3225
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3229
-#: gnucash/register/ledger-core/split-register-model.c:1497
-#: gnucash/register/ledger-core/split-register-model.c:1564
+#: gnucash/register/ledger-core/split-register-model.c:1499
+#: gnucash/register/ledger-core/split-register-model.c:1566
msgid "Enter the account to transfer from, or choose one from the list"
msgstr "× × ××××× ×ש××× ××× × ×ש ×××¢××ר, ×× ×××רת ×ש××× ××רש×××"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3227
-#: gnucash/register/ledger-core/split-register-model.c:1208
+#: gnucash/register/ledger-core/split-register-model.c:1210
msgid "Reason the transaction was voided"
msgstr "ס××ת ××××× ××ª× ××¢×"
@@ -8718,7 +8872,7 @@ msgstr "× × ××××× ×¢×¨× ××× ××ת ×©× ×§× × ×× × ××ר×"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3269
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3281
-#: gnucash/register/ledger-core/split-register-model.c:1445
+#: gnucash/register/ledger-core/split-register-model.c:1447
msgid "Enter the number of shares bought or sold"
msgstr "× × ××××× ×ספר ××× ××ת ×©× ×§× × ×× × ××ר×"
@@ -8731,17 +8885,17 @@ msgid "Enter the rate"
msgstr "× × ××××× ×שער"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3311
-#: gnucash/register/ledger-core/split-register-model.c:1409
+#: gnucash/register/ledger-core/split-register-model.c:1411
msgid "Enter the effective share price"
msgstr "× × ××××× ×××ר ×× ×× ×פק××××"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3321
-#: gnucash/register/ledger-core/split-register-model.c:2370
+#: gnucash/register/ledger-core/split-register-model.c:2372
msgid "Enter credit formula for real transaction"
msgstr "××× ×ª × ×ס×ת ×××ת ××ª× ××¢× ×××ת×ת"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3331
-#: gnucash/register/ledger-core/split-register-model.c:2336
+#: gnucash/register/ledger-core/split-register-model.c:2338
msgid "Enter debit formula for real transaction"
msgstr "××× ×ª × ×ס×ת ×××× ××ª× ××¢× ×××ת×ת"
@@ -8751,12 +8905,13 @@ msgstr "××× ×ª × ×ס×ת ×××× ××ª× ××¢× ×××ת×ת"
msgid "Enabled"
msgstr "×××פשר"
-# ×=××פשר
+# ר=×××פשר
#. Translators: This string has a context prefix; the translation
#. must only contain the part after the | character.
#: gnucash/gnome-utils/gnc-tree-view-sx-list.c:143
-msgid "Single-character short column-title form of 'Enabled'|E"
-msgstr "×"
+msgctxt "Single-character short column-title form of 'Enabled'"
+msgid "E"
+msgstr "ר"
#: gnucash/gnome-utils/gnc-tree-view-sx-list.c:154
msgid "Last Occur"
@@ -8822,11 +8977,11 @@ msgstr ""
#: gnucash/gnucash-bin.c:130
msgid ""
-"File to log into; defaults to \"/tmp/gnucash.trace\"; can be \"stderr\" or \"stdout"
-"\"."
+"File to log into; defaults to \"/tmp/gnucash.trace\"; can be \"stderr\" or "
+"\"stdout\"."
msgstr ""
-"×§×××¥ ××× ××ת×××; ×ר×רת ××××× ××× ×- \"/tmp/gnucash.trace\"; ×××× ××××ת \"stderr\" "
-"×× \"stdout\"."
+"×§×××¥ ××× ××ת×××; ×ר×רת ××××× ××× ×- \"/tmp/gnucash.trace\"; ×××× ××××ת \"stderr"
+"\" ×× \"stdout\"."
#: gnucash/gnucash-bin.c:136
msgid "Do not load the last file opened"
@@ -8834,11 +8989,11 @@ msgstr "×× ×××¢×× ×ת ××§×××¥ ×©× ×¤×ª× ×××ר×× ×"
#: gnucash/gnucash-bin.c:140
msgid ""
-"Set the prefix for gsettings schemas for gsettings queries. This can be useful to "
-"have a different settings tree while debugging."
+"Set the prefix for gsettings schemas for gsettings queries. This can be useful "
+"to have a different settings tree while debugging."
msgstr ""
-"×××רת ××§××××ת ×ס××××ת gsettings ×ש×××ת×ת gsettings. עש×× ××××ת ש××××©× ××××× ××ת×ר "
-"תק××× ××××××§ ×¢×¥ ×××ר×ת ש×× ×."
+"×××רת ××§××××ת ×ס××××ת gsettings ×ש×××ת×ת gsettings. עש×× ××××ת ש××××©× ××××× "
+"××ת×ר תק××× ××××××§ ×¢×¥ ×××ר×ת ש×× ×."
#. Translators: Argument description for autohelp; see
#. http://developer.gnome.org/doc/API/2.0/glib/glib-Commandline-option-parser.html
@@ -8857,7 +9012,8 @@ msgid "FILE"
msgstr "×§×××¥"
#: gnucash/gnucash-bin.c:154
-msgid "Regular expression determining which namespace commodities will be retrieved"
+msgid ""
+"Regular expression determining which namespace commodities will be retrieved"
msgstr "××××× ×¨××× ××§×××¢ ×××× ×ר××× ×©× ×¡××ר×ת ×××××ר×"
#. Translators: Argument description for autohelp; see
@@ -8927,8 +9083,8 @@ msgstr "×××¢× × ×ª×× ××..."
#: gnucash/gnucash-bin.c:923
msgid ""
-"Error: could not initialize graphical user interface and option add-price-quotes "
-"was not set.\n"
+"Error: could not initialize graphical user interface and option add-price-"
+"quotes was not set.\n"
" Perhaps you need to set the $DISPLAY environment variable ?"
msgstr ""
"ש××××: ×× ×××ª× ×פשר×ת ××ת×× ××שק ×שת×ש ××¨×¤× ×××פשר×ת ××ספ×-שער×× ×× ××××ר×.\n"
@@ -9014,12 +9170,12 @@ msgstr "×××× ××××§×× ×××× ××ר××"
#: gnucash/import-export/aqb/gschemas/org.gnucash.dialogs.import.hbci.gschema.xml.in:6
#: gnucash/import-export/aqb/gschemas/org.gnucash.dialogs.import.hbci.gschema.xml.in:65
msgid ""
-"This setting describes the size and position of the window when it was last closed. "
-"The numbers are the X and Y coordinates of the top left corner of the window "
-"followed by the width and height of the window."
+"This setting describes the size and position of the window when it was last "
+"closed. The numbers are the X and Y coordinates of the top left corner of the "
+"window followed by the width and height of the window."
msgstr ""
-"××××¨× ×× ×§××עת ×ת ×××§×× ××××× ×©× ×¡×ר ×××ר×× ×. ××ספר×× ×× ×¢×¨×× ×¦××¨× × X × Y ×©× ×פ×× × "
-"×ש××××ת ×©× ××××× ×××××©× ×¨××× ××××× ×××××."
+"××××¨× ×× ×§××עת ×ת ×××§×× ××××× ×©× ×¡×ר ×××ר×× ×. ××ספר×× ×× ×¢×¨×× ×¦××¨× × X × Y ×©× "
+"×פ×× × ×ש××××ת ×©× ××××× ×××××©× ×¨××× ××××× ×××××."
#: gnucash/gschemas/org.gnucash.dialogs.business.gschema.xml.in:24
#: gnucash/gschemas/org.gnucash.dialogs.business.gschema.xml.in:39
@@ -9038,11 +9194,11 @@ msgstr "××פ×ש רק ×פר×××× ×¤×¢××××"
#: gnucash/gschemas/org.gnucash.dialogs.business.gschema.xml.in:85
#: gnucash/gschemas/org.gnucash.dialogs.business.gschema.xml.in:100
msgid ""
-"If active, only the 'active' items in the current class will be searched. Otherwise "
-"all items in the current class will be searched."
+"If active, only the 'active' items in the current class will be searched. "
+"Otherwise all items in the current class will be searched."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ×ת×צע ××פ×ש רק ×פר×××× ' פע××××' ×××××§× ×× ××××ת. ××רת, ×ת×צע "
-"××פ×ש ××× ×פר×××× ×××××§× ×× ××××ת."
+"××××× ×××פשר×ת ××פע××, ×ת×צע ××פ×ש רק ×פר×××× ' פע××××' ×××××§× ×× ××××ת. ××רת, "
+"×ת×צע ××פ×ש ××× ×פר×××× ×××××§× ×× ××××ת."
#: gnucash/gschemas/org.gnucash.dialogs.business.gschema.xml.in:107
#: gnucash/gschemas/org.gnucash.dialogs.business.gschema.xml.in:149
@@ -9055,8 +9211,8 @@ msgid ""
"If set to active then tax is included by default in entries of this type. This "
"setting is inherited by new customers and vendors."
msgstr ""
-"××××× ×××פשר×ת ××פע×× ××ס × ××× ××ר×רת ×××× ×ער××× ×ס×× ××. ××××¨× ×× ×¢××רת ××ר××©× "
-"×××§×××ת ×ספק×× ××ש××."
+"××××× ×××פשר×ת ××פע×× ××ס × ××× ××ר×רת ×××× ×ער××× ×ס×× ××. ××××¨× ×× ×¢××רת "
+"××ר××©× ×××§×××ת ×ספק×× ××ש××."
#: gnucash/gschemas/org.gnucash.dialogs.business.gschema.xml.in:112
#: gnucash/gschemas/org.gnucash.dialogs.business.gschema.xml.in:154
@@ -9066,15 +9222,16 @@ msgstr "תש××× ××××××× ×××× ×¨×ש××."
#: gnucash/gschemas/org.gnucash.dialogs.business.gschema.xml.in:113
#: gnucash/gtkbuilder/business-prefs.glade:204
msgid ""
-"At post time, automatically attempt to pay customer documents with outstanding pre-"
-"payments and counter documents. The pre-payments and documents obviously have to be "
-"against the same customer. Counter documents are documents with opposite sign. For "
-"example for an invoice, customer credit notes and negative invoices are considered "
-"counter documents."
+"At post time, automatically attempt to pay customer documents with outstanding "
+"pre-payments and counter documents. The pre-payments and documents obviously "
+"have to be against the same customer. Counter documents are documents with "
+"opposite sign. For example for an invoice, customer credit notes and negative "
+"invoices are considered counter documents."
msgstr ""
-"×עת ×ר×ש××, ×ת×צע × ×ס××× ×תש××× ××××××× ×©× ×ס××× ××§×× ×× ×××× ×ס××× ××§××× ××ס×××× "
-"× ×××××. ×××§××× ××ס×××× ×¦×¨×××× ××××× ××××ת ×× ×× ×××ª× ××§××. ×ס×××× × ××××× ×× ×ס×××× "
-"×¢× ×¡××× ×©××××. ×××©× ×ס×××× × ××××× ××ש××× ×ת ××××: ××××××× ××ש××× ××ת ש××××ת."
+"×עת ×ר×ש××, ×ת×צע × ×ס××× ×תש××× ××××××× ×©× ×ס××× ××§×× ×× ×××× ×ס××× ××§××× "
+"××ס×××× × ×××××. ×××§××× ××ס×××× ×¦×¨×××× ××××× ××××ת ×× ×× ×××ª× ××§××. ×ס×××× "
+"× ××××× ×× ×ס×××× ×¢× ×¡××× ×©××××. ×××©× ×ס×××× × ××××× ××ש××× ×ת ××××: ××××××× "
+"××ש××× ××ת ש××××ת."
#: gnucash/gschemas/org.gnucash.dialogs.business.gschema.xml.in:117
msgid "Show invoices due reminder at startup"
@@ -9082,14 +9239,14 @@ msgstr "×צ×ת ×××× ××-ש×× ×ª×××רת ×ש××× ××ת ×××××
#: gnucash/gschemas/org.gnucash.dialogs.business.gschema.xml.in:118
msgid ""
-"If active, at startup GnuCash will check to see whether any invoices will become "
-"due soon. If so, it will present the user with a reminder dialog. The definition of "
-"\"soon\" is controlled by the \"Days in Advance\" setting. Otherwise GnuCash does "
-"not check for due invoices."
+"If active, at startup GnuCash will check to see whether any invoices will "
+"become due soon. If so, it will present the user with a reminder dialog. The "
+"definition of \"soon\" is controlled by the \"Days in Advance\" setting. "
+"Otherwise GnuCash does not check for due invoices."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ××ת××× ×× ××§×ש ×××××§ ×× ××©× × ×ש××× ××ת ×תש××× ××××¢× ×§×¨××. ×× "
-"××, ת××¦× ××שת×ש ת××ת ××-ש×× ×©× ×ª×××רת. ×××××¨× ×©× \"×קר××\" × ×©××ת ×¢× ××× ×××××¨× "
-"\"×××× ×ר×ש\". ××רת, ×× ××§×ש ×× ×××××§ ××צ××ת ×ש××× ××ת ×תש×××."
+"××××× ×××פשר×ת ××פע××, ××ת××× ×× ××§×ש ×××××§ ×× ××©× × ×ש××× ××ת ×תש××× ××××¢× ×§×¨××. "
+"×× ××, ת××¦× ××שת×ש ת××ת ××-ש×× ×©× ×ª×××רת. ×××××¨× ×©× \"×קר××\" × ×©××ת ×¢× ××× "
+"×××××¨× \"×××× ×ר×ש\". ××רת, ×× ××§×ש ×× ×××××§ ××צ××ת ×ש××× ××ת ×תש×××."
#: gnucash/gschemas/org.gnucash.dialogs.business.gschema.xml.in:122
msgid "Show invoices due within this many days"
@@ -9097,8 +9254,9 @@ msgstr "×צ×ת ×ש××× ×ת ×פ×רע×× ×ת×× ×ספר ××××× ××
#: gnucash/gschemas/org.gnucash.dialogs.business.gschema.xml.in:123
msgid ""
-"This field defines the number of days in advance that GnuCash will check for due "
-"invoices. Its value is only used if the \"Notify when due\" setting is active."
+"This field defines the number of days in advance that GnuCash will check for "
+"due invoices. Its value is only used if the \"Notify when due\" setting is "
+"active."
msgstr ""
"ש×× ×× ××××ר ×ת ×ספר ××××× ×ר×ש ש×× ××§×ש ×××××§ ×× ×ש ×ש××× ××ת ×פרע××. ××¢×¨× ×××× "
"×ש××ש רק ×× ×××××¨× \"×תר×× ×קר×ת ×××¢× ×¤×¨×¢××\" פע×××."
@@ -9110,11 +9268,11 @@ msgstr "×פש×ר ×צ×ת ×××¦× ×× × ×ספ×× ×סר×× ×¢×¡×§×"
#: gnucash/gschemas/org.gnucash.dialogs.business.gschema.xml.in:128
#: gnucash/gtkbuilder/business-prefs.glade:73
msgid ""
-"If active, extra toolbar buttons for common business functions are shown as well. "
-"Otherwise they are not shown."
+"If active, extra toolbar buttons for common business functions are shown as "
+"well. Otherwise they are not shown."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ××צ×× ×××¦× ×× × ×ספ×× ×סר×× ××××× ×©× ×פשר×××ת עסק××ת × ×¤×צ×ת. "
-"××רת ×× ×× ××צ×××."
+"××××× ×××פשר×ת ××פע××, ××צ×× ×××¦× ×× × ×ספ×× ×סר×× ××××× ×©× ×פשר×××ת עסק××ת "
+"× ×¤×צ×ת. ××רת ×× ×× ××צ×××."
#: gnucash/gschemas/org.gnucash.dialogs.business.gschema.xml.in:132
#: gnucash/gtkbuilder/business-prefs.glade:330
@@ -9131,11 +9289,11 @@ msgstr "פת××ת ×ש××× ×ת ×××©× ××××× ××ש"
#: gnucash/gschemas/org.gnucash.dialogs.business.gschema.xml.in:138
msgid ""
-"If active, each new invoice will be opened in a new window. Otherwise a new invoice "
-"will be opened as a tab in the main window."
+"If active, each new invoice will be opened in a new window. Otherwise a new "
+"invoice will be opened as a tab in the main window."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ×× ×ש××× ×ת ×××©× ×ª××¤×ª× ××××× ××ש. ××רת, ×ש××× ×ת ×××©× ×ª××¤×ª× "
-"××ש×× ×ת ××××× ×ר×ש×."
+"××××× ×××פשר×ת ××פע××, ×× ×ש××× ×ת ×××©× ×ª××¤×ª× ××××× ××ש. ××רת, ×ש××× ×ת ×××©× "
+"ת××¤×ª× ××ש×× ×ת ××××× ×ר×ש×."
#: gnucash/gschemas/org.gnucash.dialogs.business.gschema.xml.in:142
msgid "Accumulate multiple splits into one"
@@ -9143,25 +9301,25 @@ msgstr "××××× ×¤×צ×××× ×ר×××× ×פ×צ×× ×××"
#: gnucash/gschemas/org.gnucash.dialogs.business.gschema.xml.in:143
msgid ""
-"If this field is active then multiple entries in an invoice that transfer to the "
-"same account will be accumulated into a single split. This field can be overridden "
-"per invoice in the Posting dialog."
+"If this field is active then multiple entries in an invoice that transfer to "
+"the same account will be accumulated into a single split. This field can be "
+"overridden per invoice in the Posting dialog."
msgstr ""
-"××××× ×ש×× ×× ×¤×¢××, רש×××ת ×ר×××× ××ש××× ×ת ××××¢×ר×× ××××ª× ×ש××× ×צ××¨× ×פ×צ×× ××××. "
-"× ××ª× ××ר×ס ש×× ×× ××× ×ש××× ×ת ×ת××ת ××-×ש×× 'ר×ש××'."
+"××××× ×ש×× ×× ×¤×¢××, רש×××ת ×ר×××× ××ש××× ×ת ××××¢×ר×× ××××ª× ×ש××× ×צ××¨× ×פ×צ×× "
+"××××. × ××ª× ××ר×ס ש×× ×× ××× ×ש××× ×ת ×ת××ת ××-×ש×× 'ר×ש××'."
#: gnucash/gschemas/org.gnucash.dialogs.business.gschema.xml.in:155
#: gnucash/gtkbuilder/business-prefs.glade:284
msgid ""
-"At post time, automatically attempt to pay vendor documents with outstanding pre-"
-"payments and counter documents. The pre-payments and documents obviously have to be "
-"against the same vendor. Counter documents are documents with opposite sign. For "
-"example for a bill, vendor credit notes and negative bills are considered counter "
-"documents."
+"At post time, automatically attempt to pay vendor documents with outstanding "
+"pre-payments and counter documents. The pre-payments and documents obviously "
+"have to be against the same vendor. Counter documents are documents with "
+"opposite sign. For example for a bill, vendor credit notes and negative bills "
+"are considered counter documents."
msgstr ""
-"×עת ×ר×ש××, ×ת×צע × ×ס××× ×תש××× ××××××× ×©× ×ס××× ×¡×¤×§ ×× ×××× ×ס××× ××§××× ××ס×××× "
-"× ×××××. ×××§××× ××ס×××× ×¦×¨×××× ××××× ××××ת ×× ×× ×××ª× ×¡×¤×§. ×ס×××× × ××××× ×× ×ס×××× ×¢× "
-"ס××× ×©××××. ×××©× ×ס×××× × ××××× ××××× ××××: ××××××× ××××××× ×©×××××."
+"×עת ×ר×ש××, ×ת×צע × ×ס××× ×תש××× ××××××× ×©× ×ס××× ×¡×¤×§ ×× ×××× ×ס××× ××§××× "
+"××ס×××× × ×××××. ×××§××× ××ס×××× ×¦×¨×××× ××××× ××××ת ×× ×× ×××ª× ×¡×¤×§. ×ס×××× × ××××× "
+"×× ×ס×××× ×¢× ×¡××× ×©××××. ×××©× ×ס×××× × ××××× ××××× ××××: ××××××× ××××××× ×©×××××."
#: gnucash/gschemas/org.gnucash.dialogs.business.gschema.xml.in:159
msgid "Show bills due reminder at startup"
@@ -9169,14 +9327,14 @@ msgstr "×צ×ת ת×××רת ×××××× ×תש××× ×¢× ××ת×××"
#: gnucash/gschemas/org.gnucash.dialogs.business.gschema.xml.in:160
msgid ""
-"If active, at startup GnuCash will check to see whether any bills will become due "
-"soon. If so, it will present the user with a reminder dialog. The definition of "
-"\"soon\" is controlled by the \"Days in Advance\" setting. Otherwise GnuCash does "
-"not check for due bills."
+"If active, at startup GnuCash will check to see whether any bills will become "
+"due soon. If so, it will present the user with a reminder dialog. The "
+"definition of \"soon\" is controlled by the \"Days in Advance\" setting. "
+"Otherwise GnuCash does not check for due bills."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ×× ××§×ש ×××××§ ×××× ××ת××× ××× ×§××××× ×××××× ××××¢× ×ª×©××× ×§×¨××. "
-"×× ××, ת××¦× ×ª××ת ××-ש×× ×ת×××רת. ×××××¨× \"קר××\" × ×©××ת ×¢× ××× ××¢×¨× ×ש×× \"×××× ×ר×ש"
-"\". ××רת ×× ××§×ש ×× ×××××§ ×× ××××××× ××××ר××."
+"××××× ×××פשר×ת ××פע××, ×× ××§×ש ×××××§ ×××× ××ת××× ××× ×§××××× ×××××× ××××¢× ×ª×©××× "
+"קר××. ×× ××, ת××¦× ×ª××ת ××-ש×× ×ת×××רת. ×××××¨× \"קר××\" × ×©××ת ×¢× ××× ××¢×¨× ×ש×× "
+"\"×××× ×ר×ש\". ××רת ×× ××§×ש ×× ×××××§ ×× ××××××× ××××ר××."
#: gnucash/gschemas/org.gnucash.dialogs.business.gschema.xml.in:164
msgid "Show bills due within this many days"
@@ -9184,8 +9342,8 @@ msgstr "×צ×ת ×××××× ×תש××× ×ת×× ×ספר ××××× ×××"
#: gnucash/gschemas/org.gnucash.dialogs.business.gschema.xml.in:165
msgid ""
-"This field defines the number of days in advance that GnuCash will check for due "
-"bills. Its value is only used if the \"Notify when due\" setting is active."
+"This field defines the number of days in advance that GnuCash will check for "
+"due bills. Its value is only used if the \"Notify when due\" setting is active."
msgstr ""
"ש×× ×× ××××ר ×ת ×ספר ××××× ×ר×ש ש×× ××§×ש ×××××§ ×× ×ש ×ש××× ×ת ×תש×××. ××¢×¨× ×××× "
"×ש×××ש רק ×× ×××××¨× \"×תר×× ×קר×ת ×××¢× ×ª×©×××\" פע×××."
@@ -9196,11 +9354,11 @@ msgstr "ש×××ש ×ת×× ×ת ××××× ×××× ×××××× ××× ××רס
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:6
msgid ""
-"This value specifies the predefined check format to use. The number is the guid of "
-"a known check format."
+"This value specifies the predefined check format to use. The number is the "
+"guid of a known check format."
msgstr ""
-"×¢×¨× ×× ×צ××× ×ת ת×× ×ת ×××××× ×××××רת ×ר×ש ×ש×××ש. ××ספר ××× × guid ×©× ×ª×× ×ת ××××× "
-"×××רת."
+"×¢×¨× ×× ×צ××× ×ת ת×× ×ת ×××××× ×××××רת ×ר×ש ×ש×××ש. ××ספר ××× × guid ×©× ×ª×× ×ת "
+"××××× ×××רת."
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:10
msgid "Which check position to print"
@@ -9208,13 +9366,13 @@ msgstr "×××§×× ××××× ×××פס×"
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:11
msgid ""
-"On preprinted checks containing multiple checks per page, this setting specifies "
-"which check position to print. The possible values are 0, 1 and 2, corresponding to "
-"the top, middle and bottom checks on the page."
+"On preprinted checks containing multiple checks per page, this setting "
+"specifies which check position to print. The possible values are 0, 1 and 2, "
+"corresponding to the top, middle and bottom checks on the page."
msgstr ""
-"××××¨× ×× ×××××¨× ×ת ×××§×× ×××××× ××××¤×¡× ××××××ת ×××פס×ת ×ר×ש ××××××ת ×××××ת ×ר×××ת "
-"××× ×¢××× . ×ער××× ××פשר××× ×× 0, 1 ×-2, ××ת××× ×××××× ××¢×××× ×, ×××צע×ת ××ת×ת×× × "
-"××¢×××."
+"××××¨× ×× ×××××¨× ×ת ×××§×× ×××××× ××××¤×¡× ××××××ת ×××פס×ת ×ר×ש ××××××ת ×××××ת "
+"×ר×××ת ××× ×¢×××. ×ער××× ××פשר××× ×× 0, 1 ×-2, ××ת××× ×××××× ××¢×××× ×, ×××צע×ת "
+"××ת×ת×× × ××¢×××."
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:15
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:16
@@ -9235,14 +9393,14 @@ msgstr "ת×× ×ת ת×ר×× ××ת××ת ××ש×ת"
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:26
msgid ""
-"If the date format is set to indicate a custom date format, this value is used as "
-"an argument to strftime to produce the date to be printed. It may be any valid "
-"strftime string; for more information about this format, read the manual page of "
-"strftime by \"man 3 strftime\"."
+"If the date format is set to indicate a custom date format, this value is used "
+"as an argument to strftime to produce the date to be printed. It may be any "
+"valid strftime string; for more information about this format, read the manual "
+"page of strftime by \"man 3 strftime\"."
msgstr ""
-"××××× ×ת×× ×ת ×ת×ר×× ××××רת ×ת×× ×ת ת×ר×× ××ת××ת ××ש×ת, ××¢×¨× ×ש×ש ×××©×ª× × × strftime "
-"××צ×ר ×ת ×ת×ר×× ×©×××פס. ×××× ××××ת ×× ××ר××ת strftime תקפ×; ××§××ת ××××¢ × ×סף ××××ת "
-"ת×× ×ת ××, × × ×קר×× ×ת ××¢××× ×××ר××, \"man 3 strftime\"."
+"××××× ×ת×× ×ת ×ת×ר×× ××××רת ×ת×× ×ת ת×ר×× ××ת××ת ××ש×ת, ××¢×¨× ×ש×ש ×××©×ª× × × "
+"strftime ××צ×ר ×ת ×ת×ר×× ×©×××פס. ×××× ××××ת ×× ××ר××ת strftime תקפ×; ××§××ת "
+"××××¢ × ×סף ××××ת ת×× ×ת ××, × × ×קר×× ×ת ××¢××× ×××ר××, \"man 3 strftime\"."
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:30
msgid "Units in which the custom coordinates are expressed"
@@ -9250,7 +9408,8 @@ msgstr "×××××ת ××× ××××××ת ××§×××ר××× ××ת ×××ת××
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:31
msgid "Units in which the custom coordinates are expressed (inches, mm, ...)."
-msgstr "×××××ת ש××× ××××××ת ××§×××ר××× ××ת ×××ת×××ת ××ש×ת (××× ×¦'××, ××××××ר××,...)."
+msgstr ""
+"×××××ת ש××× ××××××ת ××§×××ר××× ××ת ×××ת×××ת ××ש×ת (××× ×¦'××, ××××××ר××,...)."
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:35
msgid "Position of payee name"
@@ -9269,10 +9428,11 @@ msgstr "×××§×× ×©×רת ת×ר××"
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:41
msgid ""
"This value contains the X,Y coordinates for the start of the date line on the "
-"check. Coordinates are from the lower left corner of the specified check position."
+"check. Coordinates are from the lower left corner of the specified check "
+"position."
msgstr ""
-"××¢×¨× ×××× ×§×××ר××× ××ת X, Y ×¢××ר ת×××ת ש×רת ×ת×ר×× ××××××. ×§×××ר××× ××ת ×× ××פ×× × "
-"×ש××××ת ×ת×ת×× × ×©× ×××§×× ×××××× ×©××××ר×."
+"××¢×¨× ×××× ×§×××ר××× ××ת X, Y ×¢××ר ת×××ת ש×רת ×ת×ר×× ××××××. ×§×××ר××× ××ת ×× "
+"××פ×× × ×ש××××ת ×ת×ת×× × ×©× ×××§×× ×××××× ×©××××ר×."
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:45
msgid "Position of check amount in words"
@@ -9280,12 +9440,12 @@ msgstr "×××§×× ×©×רת ס××× ×××××× ××××××"
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:46
msgid ""
-"This value contains the X,Y coordinates for the start of the written amount line on "
-"the check. Coordinates are from the lower left corner of the specified check "
-"position."
+"This value contains the X,Y coordinates for the start of the written amount "
+"line on the check. Coordinates are from the lower left corner of the specified "
+"check position."
msgstr ""
-"××¢×¨× ×××× ×§×××ר××× ××ת X, Y ×¢××ר ×ת××ת ש×רת ×ס××× ×××× ××××××. ×§×××ר××× ××ת ×× ××פ×× × "
-"×ש××××ת ×ת×ת×× × ×©× ×××§×× ×××××× ×©××××ר×."
+"××¢×¨× ×××× ×§×××ר××× ××ת X, Y ×¢××ר ×ת××ת ש×רת ×ס××× ×××× ××××××. ×§×××ר××× ××ת ×× "
+"××פ×× × ×ש××××ת ×ת×ת×× × ×©× ×××§×× ×××××× ×©××××ר×."
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:50
msgid "Position of check amount in numbers"
@@ -9293,12 +9453,12 @@ msgstr "×××§×× ×©×רת ס××× ×××××× ××ספר××"
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:51
msgid ""
-"This value contains the X,Y coordinates for the start of the numerical amount line "
-"on the check. Coordinates are from the lower left corner of the specified check "
-"position."
+"This value contains the X,Y coordinates for the start of the numerical amount "
+"line on the check. Coordinates are from the lower left corner of the specified "
+"check position."
msgstr ""
-"××¢×¨× ×××× ×§×××ר××× ××ת X, Y ×¢××ר ××ת××× ×©× ×©×רת ×ס××× ×ספר×ת ××××××. ×§×××ר××× ××ת ×× "
-"××פ×× × ×ש××××ת ×ת×ת×× × ×©× ×××§×× ×××××× ×©××××ר×."
+"××¢×¨× ×××× ×§×××ר××× ××ת X, Y ×¢××ר ××ת××× ×©× ×©×רת ×ס××× ×ספר×ת ××××××. "
+"×§×××ר××× ××ת ×× ××פ×× × ×ש××××ת ×ת×ת×× × ×©× ×××§×× ×××××× ×©××××ר×."
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:55
msgid "Position of payee address"
@@ -9306,12 +9466,12 @@ msgstr "×××§×× ×ת××ת ××××"
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:56
msgid ""
-"This value contains the X,Y coordinates for the start of the payee address line on "
-"the check. Coordinates are from the lower left corner of the specified check "
-"position."
+"This value contains the X,Y coordinates for the start of the payee address "
+"line on the check. Coordinates are from the lower left corner of the specified "
+"check position."
msgstr ""
-"××¢×¨× ×××× ×§×××ר××× ××ת X, Y ×¢××ר ××ת××× ×©× ×©×רת ×ת××ת ××××× ××××××. ×§×××ר××× ××ת ×× "
-"××פ×× × ×ש××××ת ×ת×ת×× × ×©× ×××§×× ×××××× ×©××××ר×."
+"××¢×¨× ×××× ×§×××ר××× ××ת X, Y ×¢××ר ××ת××× ×©× ×©×רת ×ת××ת ××××× ××××××. ×§×××ר××× ××ת "
+"×× ××פ×× × ×ש××××ת ×ת×ת×× × ×©× ×××§×× ×××××× ×©××××ר×."
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:60
msgid "Position of notes line"
@@ -9320,10 +9480,11 @@ msgstr "×××§×× ×©×רת ×ער×ת"
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:61
msgid ""
"This value contains the X,Y coordinates for the start of the notes line on the "
-"check. Coordinates are from the lower left corner of the specified check position."
+"check. Coordinates are from the lower left corner of the specified check "
+"position."
msgstr ""
-"××¢×¨× ×××× ×§×××ר××× ××ת X, Y ×¢××ר ×ת××ת ש×רת ××ער×ת ××××××. ×§×××ר××× ××ת ×× ××פ×× × "
-"×ש××××ת ×ת×ת×× × ×©× ×××§×× ×××××× ×©××××ר×."
+"××¢×¨× ×××× ×§×××ר××× ××ת X, Y ×¢××ר ×ת××ת ש×רת ××ער×ת ××××××. ×§×××ר××× ××ת ×× "
+"××פ×× × ×ש××××ת ×ת×ת×× × ×©× ×××§×× ×××××× ×©××××ר×."
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:65
msgid "Position of memo line"
@@ -9332,7 +9493,8 @@ msgstr "×××§×× ×©×רת ×××ר"
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:66
msgid ""
"This value contains the X,Y coordinates for the start of the memo line on the "
-"check. Coordinates are from the lower left corner of the specified check position."
+"check. Coordinates are from the lower left corner of the specified check "
+"position."
msgstr ""
"××¢×¨× ×××× ×§×××ר××× ××ת X, Y ×¢××ר ×ת××ת ש×רת ××××ר ××××××. ×§×××ר××× ××ת ×× ××פ×× × "
"×ש××××ת ×ת×ת×× × ×©× ×××§×× ×××××× ×©××××ר×."
@@ -9343,11 +9505,11 @@ msgstr "×§×××× ×××× ××××× ×©××ש×××"
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:71
msgid ""
-"This value contains the X,Y offset for the complete check. Coordinates are from the "
-"lower left corner of the specified check position."
+"This value contains the X,Y offset for the complete check. Coordinates are "
+"from the lower left corner of the specified check position."
msgstr ""
-"××¢×¨× ×××× ××××¡× ×©× X, Y ×××××× ××××. ×§×××ר××× ××ת ×× ××פ×× × ×ש××××ת ×ת×ת×× × ×©× ×××§×× "
-"×××××× ×©××××ר×."
+"××¢×¨× ×××× ××××¡× ×©× X, Y ×××××× ××××. ×§×××ר××× ××ת ×× ××פ×× × ×ש××××ת ×ת×ת×× × ×©× "
+"×××§×× ×××××× ×©××××ר×."
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:75
msgid "Rotation angle"
@@ -9363,12 +9525,12 @@ msgstr "×××§×× ×¡××× ×¤×צ×× ××ספר××"
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:81
msgid ""
-"This value contains the X,Y coordinates for the start of the split's amount line on "
-"the check. Coordinates are from the lower left corner of the specified check "
-"position."
+"This value contains the X,Y coordinates for the start of the split's amount "
+"line on the check. Coordinates are from the lower left corner of the specified "
+"check position."
msgstr ""
-"××¢×¨× ×××× ×§×××ר××× ××ת X, Y ×¢××ר ××ת××× ×©× ×©×רת ס××× ×פ×צ×× ××××××. ×§×××ר××× ××ת ×× "
-"××פ×× × ×ש××××ת ×ת×ת×× × ×©× ×××§×× ×××××× ×©××××ר×."
+"××¢×¨× ×××× ×§×××ר××× ××ת X, Y ×¢××ר ××ת××× ×©× ×©×רת ס××× ×פ×צ×× ××××××. ×§×××ר××× ××ת "
+"×× ××פ×× × ×ש××××ת ×ת×ת×× × ×©× ×××§×× ×××××× ×©××××ר×."
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:85
msgid "Position of split's memo line"
@@ -9376,12 +9538,12 @@ msgstr "×××§×× ×¤×צ××× ×©×רת ×××ר"
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:86
msgid ""
-"This value contains the X,Y coordinates for the start of the split's memo line on "
-"the check. Coordinates are from the lower left corner of the specified check "
-"position."
+"This value contains the X,Y coordinates for the start of the split's memo line "
+"on the check. Coordinates are from the lower left corner of the specified "
+"check position."
msgstr ""
-"××¢×¨× ×××× ×§×××ר××× ××ת X, Y ×¢××ר ××ת××× ×©× ×©×רת ××××ר ×©× ×פ×צ×× ××××××. ×§×××ר××× ××ת "
-"×× ××פ×× × ×ש××××ת ×ת×ת×× × ×©× ×××§×× ×××××× ×©××××ר×."
+"××¢×¨× ×××× ×§×××ר××× ××ת X, Y ×¢××ר ××ת××× ×©× ×©×רת ××××ר ×©× ×פ×צ×× ××××××. "
+"×§×××ר××× ××ת ×× ××פ×× × ×ש××××ת ×ת×ת×× × ×©× ×××§×× ×××××× ×©××××ר×."
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:90
msgid "Position of split's account line"
@@ -9389,12 +9551,12 @@ msgstr "×××§×× ×©×רת פ×צ×× ×ש×××"
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:91
msgid ""
-"This value contains the X,Y coordinates for the start of the split's account line "
-"on the check. Coordinates are from the lower left corner of the specified check "
-"position."
+"This value contains the X,Y coordinates for the start of the split's account "
+"line on the check. Coordinates are from the lower left corner of the specified "
+"check position."
msgstr ""
-"××¢×¨× ×××× ×§×××ר××× ××ת X, Y ×¢××ר ××ת××× ×©× ×©×רת ××ש××× ×©× ×פ×צ×× ××××××. ×§×××ר××× ××ת "
-"×× ××פ×× × ×ש××××ת ×ת×ת×× × ×©× ×××§×× ×××××× ×©××××ר×."
+"××¢×¨× ×××× ×§×××ר××× ××ת X, Y ×¢××ר ××ת××× ×©× ×©×רת ××ש××× ×©× ×פ×צ×× ××××××. "
+"×§×××ר××× ××ת ×× ××פ×× × ×ש××××ת ×ת×ת×× × ×©× ×××§×× ×××××× ×©××××ר×."
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:95
msgid "Print the date format below the date."
@@ -9402,9 +9564,10 @@ msgstr "××פסת ת×× ×ת ת×ר×× ×ª×ת ×ת×ר××."
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:96
msgid ""
-"Each time the date is printed, print the date format immediately below in 8 point "
-"type using the characters Y, M, and D."
-msgstr "××× ×¤×¢× ×©×ת×ר×× ×××פס, ×××פ×ס ×ת ×ת×ר×× ××××¤× ××××× ×ת×× ×ת 8 ת××××, Y, M ×-D."
+"Each time the date is printed, print the date format immediately below in 8 "
+"point type using the characters Y, M, and D."
+msgstr ""
+"××× ×¤×¢× ×©×ת×ר×× ×××פס, ×××פ×ס ×ת ×ת×ר×× ××××¤× ××××× ×ת×× ×ת 8 ת××××, Y, M ×-D."
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:100
msgid "The default check printing font"
@@ -9412,11 +9575,11 @@ msgstr "×××¤× ×ר×רת ××××× ×××פסת ×××××"
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:101
msgid ""
-"The default font to use when printing checks. This value will be overridden by any "
-"font specified in a check description file."
+"The default font to use when printing checks. This value will be overridden by "
+"any font specified in a check description file."
msgstr ""
-"×××¤× ×ר×רת ××××× ×©×ש×ש ×עת ××פסת ×××××ת. ×¢×¨× ×× ×××רס ×¢×-××× ××××¤× ×©××××ר ××§×××¥ "
-"ת×××ר ××××××."
+"×××¤× ×ר×רת ××××× ×©×ש×ש ×עת ××פסת ×××××ת. ×¢×¨× ×× ×××רס ×¢×-××× ××××¤× ×©××××ר "
+"××§×××¥ ת×××ר ××××××."
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:105
#: gnucash/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in:106
@@ -9450,11 +9613,11 @@ msgstr "× ×ª×× ××ר×× ×ש×××ש"
#: gnucash/import-export/aqb/gschemas/org.gnucash.dialogs.import.hbci.gschema.xml.in:56
#: gnucash/import-export/ofx/gschemas/org.gnucash.dialogs.import.ofx.gschema.xml.in:6
msgid ""
-"This field contains the last pathname used by this window. It will be used as the "
-"initial filename/pathname the next time this window is opened."
+"This field contains the last pathname used by this window. It will be used as "
+"the initial filename/pathname the next time this window is opened."
msgstr ""
-"ש×× ×× ×××× ×ת ×©× ×× ×ª×× ×××ר×× ××ש×ש ×××× ××. ×ש×ש ××©× ××§×××¥ × ×ª××/×©× ×§×××¥ ××¤×¢× ×××× "
-"ש×××× ×× ××פת×."
+"ש×× ×× ×××× ×ת ×©× ×× ×ª×× ×××ר×× ××ש×ש ×××× ××. ×ש×ש ××©× ××§×××¥ × ×ª××/×©× ×§×××¥ ××¤×¢× "
+"×××× ×©×××× ×× ××פת×."
#: gnucash/gschemas/org.gnucash.dialogs.export.csv.gschema.xml.in:17
msgid "Window geometry"
@@ -9473,11 +9636,11 @@ msgstr "×××§×× ×××× ×ת ×פר×× ××פק×ת."
#: gnucash/gschemas/org.gnucash.dialogs.gschema.xml.in:133
msgid ""
-"This setting indicates whether to search in all items in the current class, or only "
-"in 'active' items in the current class."
+"This setting indicates whether to search in all items in the current class, or "
+"only in 'active' items in the current class."
msgstr ""
-"××××¨× ×× ×§××עת ×× ×ש ××פש ××× ×פר×××× ×××××§× ×× ××××ת, ×× ×¨×§ ×פר×××× 'פע××××' ×××××§× "
-"×× ××××ת."
+"××××¨× ×× ×§××עת ×× ×ש ××פש ××× ×פר×××× ×××××§× ×× ××××ת, ×× ×¨×§ ×פר×××× 'פע××××' "
+"×××××§× ×× ××××ת."
#: gnucash/gschemas/org.gnucash.dialogs.gschema.xml.in:187
#: gnucash/gschemas/org.gnucash.dialogs.gschema.xml.in:188
@@ -9489,7 +9652,8 @@ msgid "Show the new user window"
msgstr "×צ×ת ×××× ×שת×ש ××ש"
#: gnucash/gschemas/org.gnucash.dialogs.gschema.xml.in:203
-msgid "If active, the new user window will be shown. Otherwise it will not be shown."
+msgid ""
+"If active, the new user window will be shown. Otherwise it will not be shown."
msgstr "××××× ×××פשר×ת ××פע××, ×××× ××שת×ש ×××ש ××צ×. ××רת, ××× ×× ××צ×."
#: gnucash/gschemas/org.gnucash.dialogs.gschema.xml.in:217
@@ -9498,11 +9662,11 @@ msgstr "×××× ×ª×¨×©×× ×ש××× ×ת ××ש ×¢× \"×§×××¥ ××ש\""
#: gnucash/gschemas/org.gnucash.dialogs.gschema.xml.in:218
msgid ""
-"If active, the \"New Hierarchy\" window will be shown whenever the \"New File\" "
-"menu item is chosen. Otherwise it will not be shown."
+"If active, the \"New Hierarchy\" window will be shown whenever the \"New File"
+"\" menu item is chosen. Otherwise it will not be shown."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ××××× \"תרש×× ×ש××× ×ת ××ש\" ×××¦× ××× ×¤×¢× ×©× ××ר פר×× ×תפר×× "
-"\"×§×××¥ ××ש\". ××רת, ××× ×× ××צ×."
+"××××× ×××פשר×ת ××פע××, ××××× \"תרש×× ×ש××× ×ת ××ש\" ×××¦× ××× ×¤×¢× ×©× ××ר פר×× "
+"×תפר×× \"×§×××¥ ××ש\". ××רת, ××× ×× ××צ×."
#: gnucash/gschemas/org.gnucash.dialogs.gschema.xml.in:225
#: gnucash/gschemas/org.gnucash.dialogs.gschema.xml.in:226
@@ -9516,9 +9680,9 @@ msgstr "×פש×ר פע××ת ××××× ×ª× ××¢×"
#: gnucash/gschemas/org.gnucash.dialogs.import.generic.gschema.xml.in:6
#: gnucash/gtkbuilder/dialog-import.glade:345
msgid ""
-"Enable the SKIP action in the transaction matcher. If enabled, a transaction whose "
-"best match's score is in the yellow zone (above the Auto-ADD threshold but below "
-"the Auto-CLEAR threshold) will be skipped by default."
+"Enable the SKIP action in the transaction matcher. If enabled, a transaction "
+"whose best match's score is in the yellow zone (above the Auto-ADD threshold "
+"but below the Auto-CLEAR threshold) will be skipped by default."
msgstr ""
"×פ×× ×ת פע××ת ×××××× ××××× × ××ת××× ××ª× ××¢×ת. ×× ×פשר×ת ×× ×××× ×, ××ª× ××¢× ×©×ª×צ×ת "
"××ת××× ××××× ×××תר ש×× × ×צ×ת ××××ר ×צ××× (××¢× ×סף ××××¡×¤× ××××××××ת ×× ×ת×ת ×סף "
@@ -9531,10 +9695,10 @@ msgstr "×פש×ר פע××ת ×¢×××× ×ת×××"
#: gnucash/gschemas/org.gnucash.dialogs.import.generic.gschema.xml.in:11
#: gnucash/gtkbuilder/dialog-import.glade:365
msgid ""
-"Enable the UPDATE AND RECONCILE action in the transaction matcher. If enabled, a "
-"transaction whose best match's score is above the Auto-CLEAR threshold and has a "
-"different date or amount than the matching existing transaction will cause the "
-"existing transaction to be updated and cleared by default."
+"Enable the UPDATE AND RECONCILE action in the transaction matcher. If enabled, "
+"a transaction whose best match's score is above the Auto-CLEAR threshold and "
+"has a different date or amount than the matching existing transaction will "
+"cause the existing transaction to be updated and cleared by default."
msgstr ""
"×פ×× ×ת פע××ת ××¢×××× ×××ת××× ××××× ×ת ××ת××× ××ª× ××¢×ת. ×× ×××פשר, ××ª× ××¢× ×©×ª×צ×ת "
"××ת××× ××××× ×××תר ש×× ××× ××¢× ×סף ××ת××× ×××××××× ×××××ת ת×ר×× ×× ×¡××× ×©×× ×× "
@@ -9547,8 +9711,8 @@ msgstr "ש×××ש ××ת××× ×××ס××× ×ת"
#: gnucash/gschemas/org.gnucash.dialogs.import.generic.gschema.xml.in:16
msgid ""
"Enables bayesian matching when matching imported transaction against existing "
-"transactions. Otherwise a less sophisticated rule-based matching mechanism will be "
-"used."
+"transactions. Otherwise a less sophisticated rule-based matching mechanism "
+"will be used."
msgstr ""
"××פשר ×ת××ת ×××ס××× ×ת ×עת ×ת××ת ×ª× ××¢× ×××××ת ××ª× ××¢× ×§××××ת. ××רת, × ×¢×©× ×©×××ש "
"××× ×× ×× ×ת××× ×××סס-×××§×× ×¤××ת ×ת××××."
@@ -9559,10 +9723,11 @@ msgstr "× ××§×× ×××¢×¨× ××צ××"
#: gnucash/gschemas/org.gnucash.dialogs.import.generic.gschema.xml.in:21
msgid ""
-"This field specifies the minimum matching score a potential matching transaction "
-"must have to be displayed in the match list."
+"This field specifies the minimum matching score a potential matching "
+"transaction must have to be displayed in the match list."
msgstr ""
-"×ש×× ××××ר ×ת צ××× ××ת××× ××××¢×¨× ××ת××ת ×ª× ××¢× ×¤××× ×¦××××ת ×¢× ×× ×ª שת××¦× ×רש××ת ××ת×××."
+"×ש×× ××××ר ×ת צ××× ××ת××× ××××¢×¨× ××ת××ת ×ª× ××¢× ×¤××× ×¦××××ת ×¢× ×× ×ª שת××¦× ×רש××ת "
+"××ת×××."
#: gnucash/gschemas/org.gnucash.dialogs.import.generic.gschema.xml.in:25
msgid "Add matching transactions below this score"
@@ -9570,14 +9735,14 @@ msgstr "××ספת ×ª× ××¢×ת ת××××ת ×ת×ת ×× ××§×× ××"
#: gnucash/gschemas/org.gnucash.dialogs.import.generic.gschema.xml.in:26
msgid ""
-"This field specifies the threshold below which a matching transaction will be added "
-"automatically. A transaction whose best match's score is in the red zone (above the "
-"display minimum score but below or equal to the Add match score) will be added to "
-"the GnuCash file by default."
+"This field specifies the threshold below which a matching transaction will be "
+"added automatically. A transaction whose best match's score is in the red zone "
+"(above the display minimum score but below or equal to the Add match score) "
+"will be added to the GnuCash file by default."
msgstr ""
-"×ש×× ××××ר ×ת ×סף ש×ת×ת×× ×ª× ××¢× ×ª×××ת תת××סף ×××××××ת. ×ª× ××¢× ×©×צ××× ××ת××× ×××××× "
-"ש×× × ××¦× ××××ר ××××× (××¢× ×צ××× ××××¢×¨× ×תצ××× ×× ××¢× ×× ×©××× ×צ××× ×ת××× ××××¡×¤× "
-"×רש×××) ×ת×××¡×¤× ××§×××¥ ×× ××§×ש ××ר×רת ××××."
+"×ש×× ××××ר ×ת ×סף ש×ת×ת×× ×ª× ××¢× ×ª×××ת תת××סף ×××××××ת. ×ª× ××¢× ×©×צ××× ××ת××× "
+"×××××× ×©×× × ××¦× ××××ר ××××× (××¢× ×צ××× ××××¢×¨× ×תצ××× ×× ××¢× ×× ×©××× ×צ××× "
+"×ת××× ××××¡×¤× ×רש×××) ×ת×××¡×¤× ××§×××¥ ×× ××§×ש ××ר×רת ××××."
#: gnucash/gschemas/org.gnucash.dialogs.import.generic.gschema.xml.in:30
msgid "Clear matching transactions above this score"
@@ -9586,8 +9751,8 @@ msgstr "ס××רת ×ª× ××¢×ת ת××××ת ××¢× ×× ××§×× ×××"
#: gnucash/gschemas/org.gnucash.dialogs.import.generic.gschema.xml.in:31
msgid ""
"This field specifies the threshold above which a matching transaction will be "
-"cleared by default. A transaction whose best match's score is in the green zone "
-"(above or equal to this Clear threshold) will be cleared by default."
+"cleared by default. A transaction whose best match's score is in the green "
+"zone (above or equal to this Clear threshold) will be cleared by default."
msgstr ""
"×ש×× ××××ר ×ת ×סף ש××¢××× ××ª× ××¢× ×ª×¡××× ×××ת××ת ××ר×רת ××××. ××ª× ××¢× ×©×¦××× ××ת××× "
"×××××× ×©×× × ×צ×× ××××ר ××ר××§ (××¢× ×× ×©××× ×סף ×ת××× ××) ת×ת×× ××ר×רת ××××."
@@ -9599,21 +9764,22 @@ msgstr "ס××× ×¢××ת ×ספ××× ××ר×× ××××ר ש×××"
#: gnucash/gschemas/org.gnucash.dialogs.import.generic.gschema.xml.in:36
msgid ""
"This field specifies the extra fee that is taken into account when matching "
-"imported transactions. In some places commercial ATMs (not belonging to a financial "
-"institution) are installed in places like convenience stores. These ATMs add their "
-"fee directly to the amount instead of showing up as a separate transaction or in "
-"your monthly banking fees. For example, you withdraw $100, and you are charged "
-"$101,50 plus Interac fees. If you manually entered that $100, the amounts won't "
-"match. You should set this to whatever is the maximum such fee in your area (in "
-"units of your local currency), so the transaction will be recognised as a match."
-msgstr ""
-"×ש×× ××××ר ×ת ×תש××× ×× ×סף ש×××§× ××ש××× ×עת ×ת××ת ×ª× ××¢× ××××××ת. ×××§×××ת ×ס×××××, "
-"×ספ××××× ×ס×ר××× (ש××× × ×©××××× ××××¡× ×¤×× × ×¡×) ×××ª×§× ×× ×××§×××ת צ×××ר××× ××× ×× ×××ת "
-"× ×××ת. ×ספ××××× ××× ××ס×פ×× ×ת ××¢××× ×©××× ×ש×ר×ת ×ס××× ×××§×× ×××פ××¢ ××ª× ××¢× × ×¤×¨×ת ×× "
-"××¢×××ת ××× ×§ ××××ש××× ×××£ ×ש××× ××× ×§. ××××××, ××ש××× ×©× 100 ש×, × ×¨×× ×פ××¢× ×××£ ××× ×§ "
-"×××× ×©× 101.50 ×©× ××××××× ×ת ×¢××ת ×ש×××. ×× ×××× ××××¤× ××× × ×¨×§ 100 ש×, ×ס××××× ×× "
-"×ת××××. ××× ×ש ×××××ר ×ת ס××× ××¢××× ××ר×× ×××תר ××××ר (××××××ת ×©× ×××××¢ ×××§×××), ×× "
-"ש××ª× ××¢× ×ª×××× ××ת×××."
+"imported transactions. In some places commercial ATMs (not belonging to a "
+"financial institution) are installed in places like convenience stores. These "
+"ATMs add their fee directly to the amount instead of showing up as a separate "
+"transaction or in your monthly banking fees. For example, you withdraw $100, "
+"and you are charged $101,50 plus Interac fees. If you manually entered that "
+"$100, the amounts won't match. You should set this to whatever is the maximum "
+"such fee in your area (in units of your local currency), so the transaction "
+"will be recognised as a match."
+msgstr ""
+"×ש×× ××××ר ×ת ×תש××× ×× ×סף ש×××§× ××ש××× ×עת ×ת××ת ×ª× ××¢× ××××××ת. ×××§×××ת "
+"×ס×××××, ×ספ××××× ×ס×ר××× (ש××× × ×©××××× ××××¡× ×¤×× × ×¡×) ×××ª×§× ×× ×××§×××ת צ×××ר××× "
+"××× ×× ×××ת × ×××ת. ×ספ××××× ××× ××ס×פ×× ×ת ××¢××× ×©××× ×ש×ר×ת ×ס××× ×××§×× ×××פ××¢ "
+"××ª× ××¢× × ×¤×¨×ת ×× ××¢×××ת ××× ×§ ××××ש××× ×××£ ×ש××× ××× ×§. ××××××, ××ש××× ×©× 100 ש×, "
+"× ×¨×× ×פ××¢× ×××£ ××× ×§ ×××× ×©× 101.50 ×©× ××××××× ×ת ×¢××ת ×ש×××. ×× ×××× ××××¤× "
+"××× × ×¨×§ 100 ש×, ×ס××××× ×× ×ת××××. ××× ×ש ×××××ר ×ת ס××× ××¢××× ××ר×× ×××תר "
+"××××ר (××××××ת ×©× ×××××¢ ×××§×××), ×× ×©××ª× ××¢× ×ª×××× ××ת×××."
#. Preferences->Online Banking:Generic
#: gnucash/gschemas/org.gnucash.dialogs.import.generic.gschema.xml.in:40
@@ -9625,11 +9791,11 @@ msgstr "×צ×רת ס××ר×ת ××ש×ת ×××××××ת"
#: gnucash/gtkbuilder/dialog-import.glade:560
msgid ""
"Enables the automatic creation of new commodities if any unknown commodity is "
-"encountered during import. Otherwise the user will be asked what to do with each "
-"unknown commodity."
+"encountered during import. Otherwise the user will be asked what to do with "
+"each unknown commodity."
msgstr ""
-"××פשר ×צ××¨× ×××××××ת ×©× ×¡××ר×ת ××ש×ת ×× ××××× ×××××× ×ª××¦× ×¡×××¨× ×× ××××¢×. ××רת, "
-"××שת×ש ×ת×קש ×עש×ת ××ת ××× ×¡×××¨× ×× ××××¢× ×× ×¤×¨×."
+"××פשר ×צ××¨× ×××××××ת ×©× ×¡××ר×ת ××ש×ת ×× ××××× ×××××× ×ª××¦× ×¡×××¨× ×× ××××¢×. "
+"××רת, ××שת×ש ×ת×קש ×עש×ת ××ת ××× ×¡×××¨× ×× ××××¢× ×× ×¤×¨×."
#: gnucash/gschemas/org.gnucash.dialogs.import.generic.gschema.xml.in:58
msgid "Display or hide reconciled matches"
@@ -9674,12 +9840,12 @@ msgstr "××××¨× ×ר×ש ×©× ×ª× ××¢×ת ס××ר×ת"
#: gnucash/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in:6
msgid ""
-"If active, all transactions marked as cleared in the register will appear already "
-"selected in the reconcile dialog. Otherwise no transactions will be initially "
-"selected."
+"If active, all transactions marked as cleared in the register will appear "
+"already selected in the reconcile dialog. Otherwise no transactions will be "
+"initially selected."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ×× ××ª× ××¢×ת ××××× ×©×¡××× × ×××ת×××ת, ××פ××¢× ×ס××× ×ת ×ת××ת ××-"
-"×ש×× ×ת×××ת. ××רת ×× ×××××¨× ×× ×ª× ××¢×ת ×××ת××××."
+"××××× ×××פשר×ת ××פע××, ×× ××ª× ××¢×ת ××××× ×©×¡××× × ×××ת×××ת, ××פ××¢× ×ס××× ×ת ×ת××ת "
+"××-×ש×× ×ת×××ת. ××רת ×× ×××××¨× ×× ×ª× ××¢×ת ×××ת××××."
#: gnucash/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in:10
msgid "Prompt for interest charges"
@@ -9688,12 +9854,14 @@ msgstr "×××× ×ª×××ר ×××× ××××× ×¨×××ת"
#: gnucash/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in:11
#: gnucash/gtkbuilder/dialog-preferences.glade:2133
msgid ""
-"Prior to reconciling an account which charges or pays interest, prompt the user to "
-"enter a transaction for the interest charge or payment. Currently only enabled for "
-"Bank, Credit, Mutual, Asset, Receivable, Payable, and Liability accounts."
+"Prior to reconciling an account which charges or pays interest, prompt the "
+"user to enter a transaction for the interest charge or payment. Currently only "
+"enabled for Bank, Credit, Mutual, Asset, Receivable, Payable, and Liability "
+"accounts."
msgstr ""
-"××¤× × ×ת××ת ×ש××× ×××××× ×× ×ש×× ×¨×××ת, ××שת×ש ×××רש ××××× ×ª× ××¢× ×¢××ר ×××× ×ר×××ת ×× "
-"×תש×××. ×××¤×¢× ×עת רק ×¢××ר ×ש××× ×ת ×× ×§, ×שר××, ×§×¨× ×ת, ר××ש, ××××××, ××××× ××ת××××××ת."
+"××¤× × ×ת××ת ×ש××× ×××××× ×× ×ש×× ×¨×××ת, ××שת×ש ×××רש ××××× ×ª× ××¢× ×¢××ר ×××× "
+"×ר×××ת ×× ×תש×××. ×××¤×¢× ×עת רק ×¢××ר ×ש××× ×ת ×× ×§, ×שר××, ×§×¨× ×ת, ר××ש, ××××××, "
+"××××× ××ת××××××ת."
#: gnucash/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in:15
msgid "Prompt for credit card payment"
@@ -9713,11 +9881,11 @@ msgstr "×ת×××ת ×ת××¦×¢× ×ª××× ×ת×ר×× × ××××"
#: gnucash/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in:21
msgid ""
-"If active, always open the reconcile dialog using today's date for the statement "
-"date, regardless of previous reconciliations."
+"If active, always open the reconcile dialog using today's date for the "
+"statement date, regardless of previous reconciliations."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ×פת×× ×ª××× ×ת ת××ת ××-ש×× ×ת××× ×¢× ×ª×ר×× ×××× ×ת×ר×× ×ת×פ×ס, "
-"××× ×§×©×¨ ××ת×××ת ×§××××ת."
+"××××× ×××פשר×ת ××פע××, ×פת×× ×ª××× ×ת ת××ת ××-ש×× ×ת××× ×¢× ×ª×ר×× ×××× ×ת×ר×× "
+"×ת×פ×ס, ××× ×§×©×¨ ××ת×××ת ×§××××ת."
#: gnucash/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in:17
msgid "Run \"since last run\" dialog when a file is opened."
@@ -9727,12 +9895,12 @@ msgstr "×רצת ××-ש×× \"××× ×¨××¦× ××ר×× ×\" ××שר ×§×××¥
msgid ""
"This setting controls whether the scheduled transactions \"since last run\" "
"processing is run automatically when a data file is opened. This includes the "
-"initial opening of the data file when GnuCash starts. If this setting is active, "
-"run the \"since last run\" process, otherwise it is not run."
+"initial opening of the data file when GnuCash starts. If this setting is "
+"active, run the \"since last run\" process, otherwise it is not run."
msgstr ""
-"×××××¨× ×§××עת ×× ×¢×××× ××ª× ××¢× ×××××ר×ת \"××× ××פע×× ×××ר×× ×\" ×××¤×¢× ××××¤× ××××××× "
-"×עת פת××ת ×§×××¥ × ×ª×× ××. ×ר××ת פת××ת ×§×××¥ ×× ×ª×× ×× ×עת ×פע×ת ×× ××§×ש. ×× ××××¨× ×× "
-"פע×××, ת×××× \"××× ××פע×× ×××ר×× ×\" ×ר××¥, ××רת ××× ×× ××פע×."
+"×××××¨× ×§××עת ×× ×¢×××× ××ª× ××¢× ×××××ר×ת \"××× ××פע×× ×××ר×× ×\" ×××¤×¢× ××××¤× "
+"××××××× ×עת פת××ת ×§×××¥ × ×ª×× ××. ×ר××ת פת××ת ×§×××¥ ×× ×ª×× ×× ×עת ×פע×ת ×× ××§×ש. ×× "
+"××××¨× ×× ×¤×¢×××, ת×××× \"××× ××פע×× ×××ר×× ×\" ×ר××¥, ××רת ××× ×× ××פע×."
#: gnucash/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in:22
msgid "Show \"since last run\" notification dialog when a file is opened."
@@ -9740,16 +9908,16 @@ msgstr "×צ×ת ××-ש×× \"××× ×¨××¦× ××ר×× ×\" ××שר ×§×××¥
#: gnucash/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in:23
msgid ""
-"This setting controls whether the scheduled transactions notification-only \"since "
-"last run\" dialog is shown when a data file is opened (if \"since last run\" "
-"processing is enabled on file open). This includes the initial opening of the data "
-"file when GnuCash starts. If this setting is active, show the dialog, otherwise it "
-"is not shown."
+"This setting controls whether the scheduled transactions notification-only "
+"\"since last run\" dialog is shown when a data file is opened (if \"since last "
+"run\" processing is enabled on file open). This includes the initial opening "
+"of the data file when GnuCash starts. If this setting is active, show the "
+"dialog, otherwise it is not shown."
msgstr ""
-"××××¨× ×× ×§××עת ×× ×ª××ת ××-ש×× ×©× ×ª× ××¢×ת ××××ר××ת, ×תר××ת ×××× \"××× ××פע×× ×××ר×× ×"
-"\", ת××¦× ×עת פת××ת ×§×××¥ × ×ª×× ×× (×× ××¢×××× \"××× ××פע×× ×××ר×× ×\" ×××¤×¢× ×פת××ת "
-"×§×××¥). פת××ת ×§×××¥ ×× ×ª×× ×× ×עת ×פע×ת ×× ××§×ש. ×× ××××¨× ×× ×¤×¢×××, ×××× ××-ש×× ××צ×, "
-"××רת ××× ×× ××צ×."
+"××××¨× ×× ×§××עת ×× ×ª××ת ××-ש×× ×©× ×ª× ××¢×ת ××××ר××ת, ×תר××ת ×××× \"××× ××פע×× "
+"×××ר×× ×\", ת××¦× ×עת פת××ת ×§×××¥ × ×ª×× ×× (×× ××¢×××× \"××× ××פע×× ×××ר×× ×\" ×××¤×¢× "
+"×פת××ת ×§×××¥). פת××ת ×§×××¥ ×× ×ª×× ×× ×עת ×פע×ת ×× ××§×ש. ×× ××××¨× ×× ×¤×¢×××, ×××× ××-"
+"ש×× ××צ×, ××רת ××× ×× ××צ×."
#: gnucash/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in:30
msgid "Set the \"auto create\" flag by default"
@@ -9757,13 +9925,13 @@ msgstr "×××רת ××× \"×צ××¨× ×××××××ת\" ××ר×רת ××××"
#: gnucash/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in:31
msgid ""
-"If active, any newly created scheduled transaction will have its 'auto create' flag "
-"set active by default. The user can change this flag during transaction creation, "
-"or at any later time by editing the scheduled transaction."
+"If active, any newly created scheduled transaction will have its 'auto create' "
+"flag set active by default. The user can change this flag during transaction "
+"creation, or at any later time by editing the scheduled transaction."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ××× ×ª× ××¢× ××××ר×ת ×××©× ××××ר ××× '×צ××¨× ×××××××ת' ××ר×רת "
-"××××. × ××ª× ×××× ××©× ×ת ××××¨× ×× ×עת ×צ×רת ×ª× ××¢×, ×× ××× ×¢×ª ××××ר ××תר ×¢× ××× ×¢×¨××ת "
-"××ª× ××¢× ×××××ר×ת."
+"××××× ×××פשר×ת ××פע××, ××× ×ª× ××¢× ××××ר×ת ×××©× ××××ר ××× '×צ××¨× ×××××××ת' "
+"××ר×רת ××××. × ××ª× ×××× ××©× ×ת ××××¨× ×× ×עת ×צ×רת ×ª× ××¢×, ×× ××× ×¢×ª ××××ר ××תר ×¢× "
+"××× ×¢×¨××ת ××ª× ××¢× ×××××ר×ת."
#: gnucash/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in:35
#: gnucash/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in:36
@@ -9776,14 +9944,14 @@ msgstr "×××רת ××× \"×תר××\" ××ר×רת ××××"
#: gnucash/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in:48
msgid ""
-"If active, any newly created scheduled transaction will have its 'notify' flag set "
-"by default. The user can change this flag during transaction creation, or at any "
-"later time by editing the scheduled transaction. This setting only has meaning if "
-"the create-auto setting is active."
+"If active, any newly created scheduled transaction will have its 'notify' flag "
+"set by default. The user can change this flag during transaction creation, or "
+"at any later time by editing the scheduled transaction. This setting only has "
+"meaning if the create-auto setting is active."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ××× ×ª× ××¢× ××××ר×ת ×××©× ××××ר ××× '×תר××' ××ר×רת ××××. × ××ª× "
-"×××× ××©× ×ת ××××¨× ×× ×עת ×צ×רת ×ª× ××¢×, ×× ××× ×¢×ª ××××ר ××תר ×¢× ××× ×¢×¨××ת ××ª× ××¢× "
-"×××××ר×ת. ×××××¨× ×× ×ª××× ××©×¤×¢× ×¨×§ ××××× ××××רת '×צ××¨× ×××××××ת' פע×××."
+"××××× ×××פשר×ת ××פע××, ××× ×ª× ××¢× ××××ר×ת ×××©× ××××ר ××× '×תר××' ××ר×רת ××××. "
+"× ××ª× ×××× ××©× ×ת ××××¨× ×× ×עת ×צ×רת ×ª× ××¢×, ×× ××× ×¢×ª ××××ר ××תר ×¢× ××× ×¢×¨××ת "
+"××ª× ××¢× ×××××ר×ת. ×××××¨× ×× ×ª××× ××©×¤×¢× ×¨×§ ××××× ××××רת '×צ××¨× ×××××××ת' פע×××."
#: gnucash/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in:52
#: gnucash/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in:53
@@ -9801,10 +9969,10 @@ msgstr "×צ×ת \"×¢×¦× ××××ת\" ×¢× ×ת××× ×× ××§×ש"
#: gnucash/gschemas/org.gnucash.dialogs.totd.gschema.xml.in:18
msgid ""
-"Enables the \"Tip Of The Day\" when GnuCash starts up. If active, the dialog will "
-"be shown. Otherwise it will not be shown."
+"Enables the \"Tip Of The Day\" when GnuCash starts up. If active, the dialog "
+"will be shown. Otherwise it will not be shown."
msgstr ""
-"××פשר ×ת \"עצת ××××\" ××ת××× ×× ××§×ש . ××××× ×××פשר×ת ××פע××, ת××ת ××-×ש×× ×ª×צ×. "
+"××פשר ×ת \"עצת ××××\" ××ת××× ×× ××§×ש. ××××× ×××פשר×ת ××פע××, ת××ת ××-×ש×× ×ª×צ×. "
"××רת, ××× ×× ×ª×צ×."
#: gnucash/gschemas/org.gnucash.general.finance-quote.gschema.xml.in:5
@@ -9816,8 +9984,8 @@ msgstr "××¤×ª× API ×××¤× ××× ×××'"
#: gnucash/gtkbuilder/dialog-preferences.glade:3295
#: gnucash/gtkbuilder/dialog-preferences.glade:3307
msgid ""
-"To retrieve online quotes from Alphavantage, this key needs to be set. A key can be "
-"retrieved from the Alpha Vantage website."
+"To retrieve online quotes from Alphavantage, this key needs to be set. A key "
+"can be retrieved from the Alpha Vantage website."
msgstr ""
"××× ××××ר שער×× ××§××× ×ת ×××פ××××× ××', ×ש ×××××ר ××¤×ª× ××. × ××ª× ××××ר ××¤×ª× ×××תר."
@@ -9827,11 +9995,11 @@ msgstr "×רסת ×××ר×ת ×××"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:11
msgid ""
-"This is used internally to determine whether some preferences may need conversion "
-"when switching to a newer version of GnuCash."
+"This is used internally to determine whether some preferences may need "
+"conversion when switching to a newer version of GnuCash."
msgstr ""
-"××פשר×ת ×ש×שת ××××¤× ×¤× ××× ××§××עת ××× ×ª×רש ×××¨× ×©× ××¢×פ×ת ×ס××××ת ×עת ש×ר×× ×××¨×¡× "
-"×××©× ××תר ×©× ×× ××§×ש."
+"××פשר×ת ×ש×שת ××××¤× ×¤× ××× ××§××עת ××× ×ª×רש ×××¨× ×©× ××¢×פ×ת ×ס××××ת ×עת ש×ר×× "
+"×××¨×¡× ×××©× ××תר ×©× ×× ××§×ש."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:15
msgid "Save window sizes and locations"
@@ -9839,12 +10007,13 @@ msgstr "ש××רת ×××× ××××§×× ××××"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:16
msgid ""
-"If active, the size and location of each dialog window will be saved when it is "
-"closed. The sizes and locations of content windows will be remembered when you quit "
-"GnuCash. Otherwise the sizes will not be saved."
+"If active, the size and location of each dialog window will be saved when it "
+"is closed. The sizes and locations of content windows will be remembered when "
+"you quit GnuCash. Otherwise the sizes will not be saved."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ××××× ×××××§×× ×©× ×× ×××× ××-ש×× ××ש×ר ××שר ××× ××ס×ר. ×××××× "
-"×××××§×××× ×©× ×××× ×ת ת××× ×××××¨× ×עת ×פסקת ×× ××§×ש. ××רת, ×××××× ×× ××ש×ר×."
+"××××× ×××פשר×ת ××פע××, ××××× ×××××§×× ×©× ×× ×××× ××-ש×× ××ש×ר ××שר ××× ××ס×ר. "
+"×××××× ×××××§×××× ×©× ×××× ×ת ת××× ×××××¨× ×עת ×פסקת ×× ××§×ש. ××רת, ×××××× ×× "
+"××ש×ר×."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:20
msgid "Character to use as separator between account names"
@@ -9852,14 +10021,14 @@ msgstr "××ª× ××פר×× ××× ×©××ת ×ש××× ×ת"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:21
msgid ""
-"This setting determines the character that will be used between components of an "
-"account name. Possible values are any single non-alphanumeric unicode character, or "
-"any of the following strings: \"colon\", \"slash\", \"backslash\", \"dash\" and "
-"\"period\"."
+"This setting determines the character that will be used between components of "
+"an account name. Possible values are any single non-alphanumeric unicode "
+"character, or any of the following strings: \"colon\", \"slash\", \"backslash"
+"\", \"dash\" and \"period\"."
msgstr ""
-"××××¨× ×× ×§××עת ×ת ××ª× ××פר×× ××× ×ר××××× ××©× ××ש×××. ער××× ×פשר××× ×× ×× ×ª× ××× ××§×× "
-"×××× ×©××× × ××פ×× ××ר×, ×× ×× ××ת ××××ר×××ת ××××ת: \"× ×§××ת×××\", \"×§× × ×××\", \"×××ס×"
-"\", \"××§×£\" × \"× ×§×××\"."
+"××××¨× ×× ×§××עת ×ת ××ª× ××פר×× ××× ×ר××××× ××©× ××ש×××. ער××× ×פשר××× ×× ×× ×ª× "
+"××× ××§×× ×××× ×©××× × ××פ×× ××ר×, ×× ×× ××ת ××××ר×××ת ××××ת: \"× ×§××ת×××\", \"×§× "
+"× ×××\", \"×××ס×\", \"××§×£\" × \"× ×§×××\"."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:25
msgid "Transaction Associations head path"
@@ -9883,8 +10052,8 @@ msgstr "×צ×ת ×ס×ר ש×××¨× ×××××××ת"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:36
msgid ""
-"If active, GnuCash shows an explanation of the auto-save feature the first time "
-"that feature is started. Otherwise no extra explanation is shown."
+"If active, GnuCash shows an explanation of the auto-save feature the first "
+"time that feature is started. Otherwise no extra explanation is shown."
msgstr ""
"××××× ×××פשר×ת ××פע××, ×× ××§×ש ×צ×× ×ס×ר ×¢× ×ª××× ×ª ×ש×××¨× ××××××××ת ××¤×¢× ×ר×ש×× × "
"ש×ת××× × ×ת××××. ××רת ×× ×××¦× ×ס×ר × ×סף."
@@ -9896,11 +10065,11 @@ msgstr "××××ר ××× ×©×××¨× ×××××××ת"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:41
#: gnucash/gtkbuilder/dialog-preferences.glade:1503
msgid ""
-"The number of minutes until saving of the data file to harddisk will be started "
-"automatically. If zero, no saving will be started automatically."
+"The number of minutes until saving of the data file to harddisk will be "
+"started automatically. If zero, no saving will be started automatically."
msgstr ""
-"×ספר ×××§×ת ×¢× ×©××רת ×§×××¥ ×× ×ª×× ×× ×××× × ×§×©×× ×××¤×¢× ××××¤× ×××××××. ×× ×פס, ×× ×ª××¤×¢× "
-"ש×××¨× ×××××××ת."
+"×ספר ×××§×ת ×¢× ×©××רת ×§×××¥ ×× ×ª×× ×× ×××× × ×§×©×× ×××¤×¢× ××××¤× ×××××××. ×× ×פס, ×× "
+"ת××¤×¢× ×©×××¨× ×××××××ת."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:45
#: gnucash/gtkbuilder/dialog-preferences.glade:1622
@@ -9911,12 +10080,12 @@ msgstr "×פש×ר פסק ××× ×ש××× \"ש××רת ש×× ×××× ×ס××
#: gnucash/gtkbuilder/dialog-preferences.glade:1626
msgid ""
"If enabled, the \"Save changes on closing\" question will only wait a limited "
-"number of seconds for an answer. If the user didn't answer within that time, the "
-"changes will be saved automatically and the question window closed."
+"number of seconds for an answer. If the user didn't answer within that time, "
+"the changes will be saved automatically and the question window closed."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ×ש××× \"ש××רת ש×× ×××× ×ס××ר×\" ת×ת×× ×¨×§ ×ספר ××××× ×©× ×©× ××ת "
-"××§××ת ת××××. ×× ××שת×ש ×× ×××× ×ת×× ××× ××, ×ש×× ×××× ××ש××¨× ××××¤× ××××××× ××××× "
-"×ש××× ××ס×ר."
+"××××× ×××פשר×ת ××פע××, ×ש××× \"ש××רת ש×× ×××× ×ס××ר×\" ת×ת×× ×¨×§ ×ספר ××××× ×©× "
+"×©× ××ת ××§××ת ת××××. ×× ××שת×ש ×× ×××× ×ת×× ××× ××, ×ש×× ×××× ××ש××¨× ××××¤× "
+"××××××× ××××× ×ש××× ××ס×ר."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:50
msgid "Time to wait for answer"
@@ -9925,9 +10094,10 @@ msgstr "××× ×××ª× × ×תש×××"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:51
#: gnucash/gtkbuilder/dialog-preferences.glade:1662
msgid ""
-"The number of seconds to wait before the question window will be closed and the "
-"changes saved automatically."
-msgstr "×ספר ××©× ××ת ש×ש ×××ת×× ××¤× × ×©×××× ×ש××× ××ס×ר ××ש×× ×××× ××ש××¨× ××××¤× ×××××××."
+"The number of seconds to wait before the question window will be closed and "
+"the changes saved automatically."
+msgstr ""
+"×ספר ××©× ××ת ש×ש ×××ת×× ××¤× × ×©×××× ×ש××× ××ס×ר ××ש×× ×××× ××ש××¨× ××××¤× ×××××××."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:55
#: gnucash/gschemas/org.gnucash.gschema.xml.in:56
@@ -9940,8 +10110,8 @@ msgstr "×××¡×¤× ×××××××ת ×©× × ×§××× ×¢×©×¨×× ×ת"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:61
msgid ""
-"If active, GnuCash will automatically insert a decimal point into values that are "
-"entered without one. Otherwise GnuCash will not modify entered numbers."
+"If active, GnuCash will automatically insert a decimal point into values that "
+"are entered without one. Otherwise GnuCash will not modify entered numbers."
msgstr ""
"××××× ×פע××, ×× ××§×ש ××ס××£ ××××¤× ××××××× × ×§××× ×¢×©×¨×× ×ת ×ער××× ×©×××× × ××× × ×§××× "
"עשר×× ×ת. ××רת ×× ××§×ש ×× ×ס××× ×ספר×× ×©×××× ×."
@@ -9952,7 +10122,8 @@ msgstr "×ספר ××××××× ×©× ××§×××ת עשר×× ×××"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:66
msgid ""
-"This field specifies the number of automatic decimal places that will be filled in."
+"This field specifies the number of automatic decimal places that will be "
+"filled in."
msgstr "×ש×× ××××ר ×ת ×ספר ×××§×××ת ×עשר×× ××× ×©××ש××× ×××××××ת."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:70
@@ -9963,28 +10134,31 @@ msgstr "×××××¥ ××¦× ×××ר×× ××ספר עשר×× × ×× ×××××
#: gnucash/gtkbuilder/dialog-preferences.glade:1378
msgid ""
"If active, GnuCash will round prices as necessary to display them as decimals "
-"instead of displaying the exact fraction if the fractional part cannot be exactly "
-"represented as a decimal."
+"instead of displaying the exact fraction if the fractional part cannot be "
+"exactly represented as a decimal."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ×× ××§×ש ××¢×× ×××ר×× ×× ×רש ××× ××צ××× ××ספר×× ×¢×©×¨×× ××× ×××§×× "
-"××צ×× ×ת ×ש×ר ××××××§, ×× ×××§ ×ש×ר ×× ×××× ××××ת ××××¦× ××××××§ ×× ×§××× ×¢×©×¨×× ×ת."
+"××××× ×××פשר×ת ××פע××, ×× ××§×ש ××¢×× ×××ר×× ×× ×רש ××× ××צ××× ××ספר×× ×¢×©×¨×× ××× "
+"×××§×× ××צ×× ×ת ×ש×ר ××××××§, ×× ×××§ ×ש×ר ×× ×××× ××××ת ××××¦× ××××××§ ×× ×§××× "
+"עשר×× ×ת."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:75
msgid ""
-"Tool to migrate preferences from old backend (GConf) to new one (GSettings) has run "
-"successfully."
+"Tool to migrate preferences from old backend (GConf) to new one (GSettings) "
+"has run successfully."
msgstr "×××× ××ס×ת ×××ר×ת ××שרת ×××©× (GConf) ×××ש (GSettings) רץ ××צ×××."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:76
msgid ""
-"GnuCash switched to another backend to store user preferences between 2.4 and 2.6. "
-"To smooth the transition, most preferences will be migrated the first time a 2.6 "
-"version of GnuCash is run. This migration should only run once. This preference "
-"keeps track whether or not this migration tool has run successfully."
+"GnuCash switched to another backend to store user preferences between 2.4 and "
+"2.6. To smooth the transition, most preferences will be migrated the first "
+"time a 2.6 version of GnuCash is run. This migration should only run once. "
+"This preference keeps track whether or not this migration tool has run "
+"successfully."
msgstr ""
-"××× ×רס××ת 2.4 × 2.6, ×× ××§×ש ×שת×ש ××§×¦× ××××¨× ××ר ××××¡× ××¢×פ×ת ×שת×ש . ××× ××××××§ "
-"×ת ×××¢×ר, ר×× ×××¢×פ×ת ×××¢××¨× ××¤×¢× ×ר×ש×× × ×©××¨×¡× 2.6 ×©× ×× ××§×ש ××פע×ת. ××××¨× ××××¨× "
-"×ר××¥ רק ×¤×¢× ××ת. ×פשר×ת ×× ××ש××× ××¢×§×× ×××××× ×©××× ×××××¨× ×¨×¥ ××צ×××."
+"××× ×רס××ת 2.4 × 2.6, ×× ××§×ש ×שת×ש ××§×¦× ××××¨× ××ר ××××¡× ××¢×פ×ת ×שת×ש. ××× "
+"××××××§ ×ת ×××¢×ר, ר×× ×××¢×פ×ת ×××¢××¨× ××¤×¢× ×ר×ש×× × ×©××¨×¡× 2.6 ×©× ×× ××§×ש ××פע×ת. "
+"××××¨× ××××¨× ×ר××¥ רק ×¤×¢× ××ת. ×פשר×ת ×× ××ש××× ××¢×§×× ×××××× ×©××× ×××××¨× ×¨×¥ "
+"××צ×××."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:80
#: gnucash/gtkbuilder/dialog-preferences.glade:1571
@@ -9995,15 +10169,16 @@ msgstr "×× ××צ×ר ×§×××¦× ×××/××××."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:86
#: gnucash/gschemas/org.gnucash.gschema.xml.in:91
msgid ""
-"This setting specifies what to do with old log/backups files. \"forever\" means "
-"keep all old files. \"never\" means no old log/backup files are kept. Each time you "
-"save, older versions of the file are removed. \"days\" means keep old files for a "
-"number of days. How many days is defined in key 'retain-days'"
+"This setting specifies what to do with old log/backups files. \"forever\" "
+"means keep all old files. \"never\" means no old log/backup files are kept. "
+"Each time you save, older versions of the file are removed. \"days\" means "
+"keep old files for a number of days. How many days is defined in key 'retain-"
+"days'"
msgstr ""
"×פשר×ת ×× ×××××¨× ×× ×עש×ת ×¢× ×§××¦× ×××/××××××× ××©× ××. '××¢×' פ×ר××©× ×ש××ר ×ת ×× "
"××§×צ×× ×××©× ××. '××¢×××' פ×ר××©× ×©×× × ×©×ר×× ×§××¦× ×××/××××× ××©× ××. ××× ×¤×¢× ×©×ת×צעת "
-"ש××ר×, ×רס××ת ××©× ×ת ××תר ×©× ××§×××¥ ××סר×ת. '××××' פ×ר××©× ×ש××ר ×§×צ×× ××©× ×× ×××©× ×ספר "
-"××××. ×ספר ××××× ××××ר ×××¤×ª× '×××× ×ש××ר×'"
+"ש××ר×, ×רס××ת ××©× ×ת ××תר ×©× ××§×××¥ ××סר×ת. '××××' פ×ר××©× ×ש××ר ×§×צ×× ××©× ×× ×××©× "
+"×ספר ××××. ×ספר ××××× ××××ר ×××¤×ª× '×××× ×ש××ר×'"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:85
#: gnucash/gtkbuilder/dialog-preferences.glade:1590
@@ -10021,10 +10196,11 @@ msgstr "×××קת ×§××¦× ××××/××××× ××©× ×× ×××ר ×ספר ×
#: gnucash/gschemas/org.gnucash.gschema.xml.in:96
msgid ""
-"This setting specifies the number of days after which old log/backup files will be "
-"deleted (0 = never)."
+"This setting specifies the number of days after which old log/backup files "
+"will be deleted (0 = never)."
msgstr ""
-"×פשר×ת ×× ×××××¨× ×ת ×ספר ××××× ×©×××ר××× ×××××§× ×§××¦× ×××××/×××××× ×××©× ×× (0 = ××¢×××)."
+"×פשר×ת ×× ×××××¨× ×ת ×ספר ××××× ×©×××ר××× ×××××§× ×§××¦× ×××××/×××××× ×××©× ×× (0 = "
+"××¢×××)."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:100
#: gnucash/gtkbuilder/dialog-preferences.glade:503
@@ -10035,22 +10211,24 @@ msgstr "×× ××צ×× ×תרת ×ש××× ×ת ×ער××× ×©××××××."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:106
#: gnucash/gschemas/org.gnucash.gschema.xml.in:111
msgid ""
-"This setting allows certain accounts to have their balances reversed in sign from "
-"positive to negative, or vice versa. The setting \"income-expense\" is for users "
-"who like to see negative expenses and positive income. The setting of \"credit\" is "
-"for users who want to see balances reflect the debit/credit status of the account. "
-"The setting \"none\" doesn't reverse the sign on any balances."
+"This setting allows certain accounts to have their balances reversed in sign "
+"from positive to negative, or vice versa. The setting \"income-expense\" is "
+"for users who like to see negative expenses and positive income. The setting "
+"of \"credit\" is for users who want to see balances reflect the debit/credit "
+"status of the account. The setting \"none\" doesn't reverse the sign on any "
+"balances."
msgstr ""
"××××¨× ×× ××פשרת ××ש××× ×ת ×ס××××× ××פ×× ×ת ××תר×ת ש××× ×ס××× ×××××× ×ש××××, ×× "
-"×××פ×. ×××××¨× \"××צ××-××× ×¡×\" ××× ×¢××ר ×שת×ש×× ×©×××××× ×ר××ת ××צ××ת ש×××××ת ×××× ×¡×ת "
-"××××××ת. ×××××¨× ×©× \"×שר××\" ××× ×¢××ר ×שת×ש×× ×××¢×× ××× ×× ×ר××ת ×ת ××תר×ת ×שקפ×ת ×ת "
-"××¦× ×××××/××××× ×©× ××ש×××. ×××××¨× \"×××\" ××× × ××פ×ת ×ת ×ס××× ×××."
+"×××פ×. ×××××¨× \"××צ××-××× ×¡×\" ××× ×¢××ר ×שת×ש×× ×©×××××× ×ר××ת ××צ××ת ש×××××ת "
+"×××× ×¡×ת ××××××ת. ×××××¨× ×©× \"×שר××\" ××× ×¢××ר ×שת×ש×× ×××¢×× ××× ×× ×ר××ת ×ת "
+"××תר×ת ×שקפ×ת ×ת ××¦× ×××××/××××× ×©× ××ש×××. ×××××¨× \"×××\" ××× × ××פ×ת ×ת ×ס××× "
+"×××."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:105
#: gnucash/gtkbuilder/dialog-preferences.glade:523
msgid ""
-"Sign reverse balances on the following: Credit Card, Payable, Liability, Equity, "
-"and Income."
+"Sign reverse balances on the following: Credit Card, Payable, Liability, "
+"Equity, and Income."
msgstr ""
"×צ×ת ×תרת ×ש××× ×ת ×ער××× ×©×××××× ×ס××× ××ש××× ×ת ×××××: ×ר×××¡× ×שר××, ×××××, "
"×ת××××××ת, ××××××× ×¡×ת."
@@ -10067,10 +10245,11 @@ msgstr "ש×××ש ×צ××¢× ×ש××× ×××רר×××ת ×ש××× ×ת ××"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:116
msgid ""
"If active the account hierarchy will colorize the account using the account's "
-"custom color if set. This can serve as a visual aid to quickly identify accounts."
+"custom color if set. This can serve as a visual aid to quickly identify "
+"accounts."
msgstr ""
-"××××× ×××פשר×ת ××פע××, תרש×× ××ש××× ×ת ×צ××¢ ×ת ××ש××× ×צ××¢ ×××ת×× ××ש×ת ×©× ××ש××× "
-"××× ×©× ×§××¢ ×× ×¦××¢. ×××× ×ש×ש ××¢×ר ××××ª× ×××××× ×ש××× ×ת ××××ר×ת."
+"××××× ×××פשר×ת ××פע××, תרש×× ××ש××× ×ת ×צ××¢ ×ת ××ש××× ×צ××¢ ×××ת×× ××ש×ת ×©× "
+"××ש××× ××× ×©× ×§××¢ ×× ×¦××¢. ×××× ×ש×ש ××¢×ר ××××ª× ×××××× ×ש××× ×ת ××××ר×ת."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:120
msgid "Use account colors in the tabs of open account registers"
@@ -10081,8 +10260,8 @@ msgid ""
"If active the account register tabs will be colored using the account's custom "
"color if set. This can serve as a visual aid to quickly identify accounts."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ×ש×× ××ת ×××× ××ש××× ×ת ×צ××¢× ×צ××¢× ××ש××× ×ת ×××× ×©××× ××××ר×. "
-"×××× ×ש×ש ××¢×ר ××××ª× ×××××× ×××ר ×©× ×ש××× ×ת."
+"××××× ×××פשר×ת ××פע××, ×ש×× ××ת ×××× ××ש××× ×ת ×צ××¢× ×צ××¢× ××ש××× ×ת ×××× ×©××× "
+"××××ר×. ×××× ×ש×ש ××¢×ר ××××ª× ×××××× ×××ר ×©× ×ש××× ×ת."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:125
msgid "Use formal account labels"
@@ -10091,12 +10270,12 @@ msgstr "ש×××ש ×××ש××× ×ש××× ×××× ××§×××××"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:126
msgid ""
"If active, formal accounting labels \"Credit\" and \"Debit\" will be used when "
-"designating fields on screen. Otherwise, informal labels such as Increase/Decrease, "
-"\"Funds In\"/\"Funds Out\", etc. will be used."
+"designating fields on screen. Otherwise, informal labels such as Increase/"
+"Decrease, \"Funds In\"/\"Funds Out\", etc. will be used."
msgstr ""
"××××× ×××פשר×ת ××פע××, ××¢×©× ×©×××ש ×ת××××ת ×ש××× ××ת רש×××ת \"×××××\" ×-\"××××\" "
-"××צ×ת ש××ת ×¢× ××ס×. ××רת, ××¢×©× ×©×××ש ת××××ת ×××ª× ×¨×©×××ת ×××× ×××××/××§×× ×, \"×ספ×× "
-"×©× ×× ×¡×\"/\"×ספ×× ×©×צ××\" ×××'."
+"××צ×ת ש××ת ×¢× ××ס×. ××רת, ××¢×©× ×©×××ש ת××××ת ×××ª× ×¨×©×××ת ×××× ×××××/××§×× ×, "
+"\"×ספ×× ×©× ×× ×¡×\"/\"×ספ×× ×©×צ××\" ×××'."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:130
msgid "Show close buttons on notebook tabs"
@@ -10104,14 +10283,14 @@ msgstr "×צ×ת ×קש ס×××¨× ××ש×× ××ת ××××רת"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:131
msgid ""
-"If active, a \"close\" button will be displayed on any notebook tab that may be "
-"closed. Otherwise, no such button will be shown on the tab. Regardless of this "
-"setting, pages can always be closed via the \"close\" menu item or the \"close\" "
-"button on toolbar."
+"If active, a \"close\" button will be displayed on any notebook tab that may "
+"be closed. Otherwise, no such button will be shown on the tab. Regardless of "
+"this setting, pages can always be closed via the \"close\" menu item or the "
+"\"close\" button on toolbar."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ×קש \"ס××ר×\" ×××¦× ××× ×ש×× ×ת ×××רת ×× ××ª× ×ª ×ס××ר×. ××רת, ×קש "
-"××× ×× ×××¦× ××ש×× ×ת. ××× ×§×©×¨ ×××××¨× ××, ת××× × ××ª× ×ס××ר ×ת ××פ×× ×××צע×ת פר×× "
-"×תפר×× \"ס××ר×\" ×× ××קש \"ס××ר×\" ×סר×× ×××××."
+"××××× ×××פשר×ת ××פע××, ×קש \"ס××ר×\" ×××¦× ××× ×ש×× ×ת ×××רת ×× ××ª× ×ª ×ס××ר×. "
+"××רת, ×קש ××× ×× ×××¦× ××ש×× ×ת. ××× ×§×©×¨ ×××××¨× ××, ת××× × ××ª× ×ס××ר ×ת ××פ×× "
+"×××צע×ת פר×× ×תפר×× \"ס××ר×\" ×× ××קש \"ס××ר×\" ×סר×× ×××××."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:135
msgid "Width of notebook tabs"
@@ -10119,12 +10298,12 @@ msgstr "ר××× ×ש×× ××ת ×××רת"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:136
msgid ""
-"This key specifies the maximum width of notebook tabs. If the text in the tab is "
-"longer than this value (the test is approximate) then the tab label will have the "
-"middle cut and replaced with an ellipsis."
+"This key specifies the maximum width of notebook tabs. If the text in the tab "
+"is longer than this value (the test is approximate) then the tab label will "
+"have the middle cut and replaced with an ellipsis."
msgstr ""
-"××¤×ª× ×× ××××ר ×ת ×ר××× ×××ר×× ×©× ×ש×× ×ת ×××רת. ×× ×××× ××ש×× ×ת ×ר×× ××¢×¨× ×× (×××××§× "
-"×ש×ערת) ××× ×ª×××ת ××ש×× ×ת ת×××ª× ×××צע ××××× ×××××£ ×ש××ש × ×§×××ת."
+"××¤×ª× ×× ××××ר ×ת ×ר××× ×××ר×× ×©× ×ש×× ×ת ×××רת. ×× ×××× ××ש×× ×ת ×ר×× ××¢×¨× ×× "
+"(×××××§× ×ש×ערת) ××× ×ª×××ת ××ש×× ×ת ת×××ª× ×××צע ××××× ×××××£ ×ש××ש × ×§×××ת."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:140
#: gnucash/gtkbuilder/dialog-preferences.glade:762
@@ -10135,14 +10314,14 @@ msgstr "ש×××ש ×××××¢ ×××ר ××ער×ת ×¢××ר ×× ××ש××× ×
#: gnucash/gschemas/org.gnucash.gschema.xml.in:146
#: gnucash/gschemas/org.gnucash.gschema.xml.in:359
msgid ""
-"This setting controls the source of the default currency for new accounts. If set "
-"to \"locale\" then GnuCash will retrieve the default currency from the user's "
-"locale setting. If set to \"other\", GnuCash will use the setting specified by the "
-"currency-other key."
+"This setting controls the source of the default currency for new accounts. If "
+"set to \"locale\" then GnuCash will retrieve the default currency from the "
+"user's locale setting. If set to \"other\", GnuCash will use the setting "
+"specified by the currency-other key."
msgstr ""
-"××××¨× ×× ×©×××ת ×××§×ר ×©× ××××¢ ×ר×רת ××××× ×¢××ר ×ש××× ×ת ××ש××. ×× ××××ר ×-\"×××ר×\", "
-"××× ×× ××§×ש ××××ר ×ת ××××¢ ×ר×רת ××××× ××××רת ××××ר ×©× ××שת×ש. ×× ××××ר \"××ר\", "
-"×× ××§×ש ×שת×ש ××××רת ×××¤×ª× ×©× ×××××¢-×××ר."
+"××××¨× ×× ×©×××ת ×××§×ר ×©× ××××¢ ×ר×רת ××××× ×¢××ר ×ש××× ×ת ××ש××. ×× ××××ר ×-\"×××ר×"
+"\", ××× ×× ××§×ש ××××ר ×ת ××××¢ ×ר×רת ××××× ××××רת ××××ר ×©× ××שת×ש. ×× ××××ר \"××ר"
+"\", ×× ××§×ש ×שת×ש ××××רת ×××¤×ª× ×©× ×××××¢-×××ר."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:145
#: gnucash/gtkbuilder/dialog-preferences.glade:625
@@ -10155,23 +10334,24 @@ msgstr "××××¢ ×ר×רת ×××× ××ש××× ×ת ××ש××"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:151
msgid ""
-"This setting specifies the default currency used for new accounts if the currency-"
-"choice setting is set to \"other\". This field must contain the three letter ISO "
-"4217 code for a currency (e.g. USD, GBP, RUB)."
+"This setting specifies the default currency used for new accounts if the "
+"currency-choice setting is set to \"other\". This field must contain the three "
+"letter ISO 4217 code for a currency (e.g. USD, GBP, RUB)."
msgstr ""
-"×פשר×ת ×× ×××××¨× ×ת ××××¢ ×ר×רת ××××× ××ש×ש ×¢××ר ×ש××× ×ת ××ש×× ××××× ××××רת ×פשר×ת "
-"××××¢ ×××××¨× ×-\"××ר\". ש×× ×× ×××× ××××× ×ת ש××ש ×××ת××ת ××¤× ×©××פ××¢ ××§×× ISO 4217 "
-"×¢××ר ××××¢×ת (××ש×, USD, GBP, RUB)."
+"×פשר×ת ×× ×××××¨× ×ת ××××¢ ×ר×רת ××××× ××ש×ש ×¢××ר ×ש××× ×ת ××ש×× ××××× ××××רת "
+"×פשר×ת ××××¢ ×××××¨× ×-\"××ר\". ש×× ×× ×××× ××××× ×ת ש××ש ×××ת××ת ××¤× ×©××פ××¢ "
+"××§×× ISO 4217 ×¢××ר ××××¢×ת (××ש×, USD, GBP, RUB)."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:155
msgid "Use 24 hour time format"
msgstr "ש×××ש ×ת×× ×ת ××× ×ת 24 שע×ת"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:156
-msgid "If active, use a 24 hour time format. Otherwise use a 12 hour time format."
+msgid ""
+"If active, use a 24 hour time format. Otherwise use a 12 hour time format."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ש×××ש ×ת×× ×ת ××× ×ת 24 שע×ת. ××רת, ש×××ש ×ת×× ×ת ××× ×ת 12 "
-"שע×ת."
+"××××× ×××פשר×ת ××פע××, ש×××ש ×ת×× ×ת ××× ×ת 24 שע×ת. ××רת, ש×××ש ×ת×× ×ת ××× ×ת "
+"12 שע×ת."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:160
msgid "Date format choice"
@@ -10179,15 +10359,15 @@ msgstr "×פשר×ת ת×× ×ת ת×ר××"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:161
msgid ""
-"This setting chooses the way dates are displayed in GnuCash. Possible values for "
-"this setting are \"locale\" to use the system locale setting, \"ce\" for "
-"Continental Europe style dates, \"iso\" for ISO 8601 standard dates , \"uk\" for "
-"United Kingdom style dates, and \"us\" for United States style dates."
+"This setting chooses the way dates are displayed in GnuCash. Possible values "
+"for this setting are \"locale\" to use the system locale setting, \"ce\" for "
+"Continental Europe style dates, \"iso\" for ISO 8601 standard dates , \"uk\" "
+"for United Kingdom style dates, and \"us\" for United States style dates."
msgstr ""
-"××××¨× ×× ×§××עת ×ת ××××¤× ×× ×ª×ר×××× ××צ××× ××× ××§×ש. ער××× ×פשר××× ×¢××ר ××××¨× ×× ×× "
-"\"×××ר\" ××× ××שת×ש ××××רת ×××ר ××ער×ת, 'ce' ×¢××ר ת×ר×××× ×ס×× ×× ×§×× ××× × ××× "
-"××ר×פ××, 'iso' ×¢××ר ×ת×ר×××× ××¤× ×ª×§× ISO 8601, ×¢××ר ת×ר×××× ×ס×× ×× ×ר××× 'uk', × "
-"'us' ×¢××ר ת×ר××× ×ס×× ×× ×רצ×ת ××ר×ת."
+"××××¨× ×× ×§××עת ×ת ××××¤× ×× ×ª×ר×××× ××צ××× ××× ××§×ש. ער××× ×פשר××× ×¢××ר ××××¨× ×× "
+"×× \"×××ר\" ××× ××שת×ש ××××רת ×××ר ××ער×ת, 'ce' ×¢××ר ת×ר×××× ×ס×× ×× ×§×× ××× × ××× "
+"××ר×פ××, 'iso' ×¢××ר ×ת×ר×××× ××¤× ×ª×§× ISO 8601, ×¢××ר ת×ר×××× ×ס×× ×× ×ר××× 'uk', "
+"× 'us' ×¢××ר ת×ר××× ×ס×× ×× ×רצ×ת ××ר×ת."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:165
#: gnucash/gtkbuilder/dialog-preferences.glade:985
@@ -10197,17 +10377,17 @@ msgstr "××©× × ××§×× ×ר×ת ×× ××××ת"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:166
#: gnucash/gschemas/org.gnucash.gschema.xml.in:171
msgid ""
-"When a date is entered without year it can be completed so that it will be within "
-"the current calendar year or close to the current date based on a sliding window "
-"starting a set number of months backwards in time."
+"When a date is entered without year it can be completed so that it will be "
+"within the current calendar year or close to the current date based on a "
+"sliding window starting a set number of months backwards in time."
msgstr ""
-"××שר ת×ר×× ×××× ××× ×©× × × ××ª× ××ש×××× ××©× × ××§×× ×ר×ת ×× ××××ת ×× ×§×¨×× ×ת×ר×× ×× ×××× "
-"××ת×סס ×¢× ×××× ×××× ×©×ת××× ×ספר ××××ר ×©× ×××ש×× ××××¨× ××××."
+"××שר ת×ר×× ×××× ××× ×©× × × ××ª× ××ש×××× ××©× × ××§×× ×ר×ת ×× ××××ת ×× ×§×¨×× ×ת×ר×× "
+"×× ×××× ××ת×סס ×¢× ×××× ×××× ×©×ת××× ×ספר ××××ר ×©× ×××ש×× ××××¨× ××××."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:170
msgid ""
-"In a sliding 12-month window starting a configurable number of months before the "
-"current month"
+"In a sliding 12-month window starting a configurable number of months before "
+"the current month"
msgstr "×××× ×××× ×©× 12 ×××ש×× ××× ×ספר ××××ר ×©× ×××ש×× ××¤× × ××××ש ×× ××××"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:175
@@ -10220,8 +10400,8 @@ msgid ""
"Dates will be completed so that they are close to the current date. Enter the "
"maximum number of months to go backwards in time when completing dates."
msgstr ""
-"×ת×ר×××× ××ש××× ×× ×©×××× ×§×¨×××× ×ת×ר×× ×× ××××. × × ××××× ×ת ×ספר ××××ש×× ××ר×× ××××¨× "
-"×××× ×עת ×ש××ת ×ת×ר××××."
+"×ת×ר×××× ××ש××× ×× ×©×××× ×§×¨×××× ×ת×ר×× ×× ××××. × × ××××× ×ת ×ספר ××××ש×× ××ר×× "
+"××××¨× ×××× ×עת ×ש××ת ×ת×ר××××."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:180
msgid "Show Horizontal Grid Lines"
@@ -10232,8 +10412,8 @@ msgid ""
"If active, horizontal grid lines will be shown on table displays. Otherwise no "
"horizontal grid lines will be shown."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ×§××× ×רשת ×××פק××× ××צ×× ×תצ×××ת ××××. ××רת, ×× ××צ×× ×§××× "
-"רשת ××פק×××."
+"××××× ×××פשר×ת ××פע××, ×§××× ×רשת ×××פק××× ××צ×× ×תצ×××ת ××××. ××רת, ×× ××צ×× "
+"×§××× ×¨×©×ª ××פק×××."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:185
msgid "Show Vertical Grid Lines"
@@ -10244,8 +10424,8 @@ msgid ""
"If active, vertical grid lines will be shown on table displays. Otherwise no "
"vertical grid lines will be shown."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ×§××× ×רשת ××× ×××× ×פע×××× ××צ×× ×תצ×××ת ××××. ××רת ×× ××צ×× "
-"×§××× ×¨×©×ª ×× ××××."
+"××××× ×××פשר×ת ××פע××, ×§××× ×רשת ××× ×××× ×פע×××× ××צ×× ×תצ×××ת ××××. ××רת ×× "
+"××צ×× ×§××× ×¨×©×ª ×× ××××."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:190
msgid "Show splash screen"
@@ -10253,8 +10433,8 @@ msgstr "×צ×ת ××¡× ×¤×ª×××"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:191
msgid ""
-"If active, a splash screen will be shown at startup. Otherwise no splash screen "
-"will be shown."
+"If active, a splash screen will be shown at startup. Otherwise no splash "
+"screen will be shown."
msgstr "××××× ×××פשר×ת ××פע××, ××פ××¢ ××¡× ×¤×ª××× ××ת×××. ××רת ×× ××פ××¢ ××¡× ×¤×ª×××."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:195
@@ -10267,12 +10447,12 @@ msgstr "×צ×ת ×ש×× ××ת ××××רת ×ר×ש ×××××."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:206
#: gnucash/gschemas/org.gnucash.gschema.xml.in:211
msgid ""
-"This setting determines the edge at which the tabs for switching pages in notebooks "
-"are drawn. Possible values are \"top\", \"left\", \"bottom\" and \"right\". It "
-"defaults to \"top\"."
+"This setting determines the edge at which the tabs for switching pages in "
+"notebooks are drawn. Possible values are \"top\", \"left\", \"bottom\" and "
+"\"right\". It defaults to \"top\"."
msgstr ""
-"××××¨× ×× ×§××עת ×ת ××§×¦× ×©×× ×ש×ר×××ת ××ש×× ××ת ××××פת ×¢××××× ××××ר×ת. ער××× ×פשר××× "
-"×× \"××¢××\", \"ש×××\", \"×××\" ×-\"××××\". ×ר×רת ××××× ××× \"××¢××\"."
+"××××¨× ×× ×§××עת ×ת ××§×¦× ×©×× ×ש×ר×××ת ××ש×× ××ת ××××פת ×¢××××× ××××ר×ת. ער××× "
+"×פשר××× ×× \"××¢××\", \"ש×××\", \"×××\" ×-\"××××\". ×ר×רת ××××× ××× \"××¢××\"."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:200
#: gnucash/gtkbuilder/dialog-preferences.glade:3038
@@ -10300,8 +10480,8 @@ msgid ""
"This setting determines the edge at which the summary bar for various pages is "
"drawn. Possible values are \"top\" and \"bottom\". It defaults to \"bottom\"."
msgstr ""
-"××××¨× ×× ×§××עת ×ת ××§×¦× ×©×× ×צ××ר סר×× ×ª×צ×ת ×¢××ר ×¢××××× ×©×× ××. ער××× ×פשר××× ×× "
-"\"××¢××\" ×-\"×××\". ×ר×רת ××××× ××× \"×××\"."
+"××××¨× ×× ×§××עת ×ת ××§×¦× ×©×× ×צ××ר סר×× ×ª×צ×ת ×¢××ר ×¢××××× ×©×× ××. ער××× ×פשר××× "
+"×× \"××¢××\" ×-\"×××\". ×ר×רת ××××× ××× \"×××\"."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:220
#: gnucash/gtkbuilder/dialog-preferences.glade:3131
@@ -10315,17 +10495,17 @@ msgstr "ס××רת ×ש×× ×ת תע××ר ×××§×× ××ש×× ×ת ש×××ת
#: gnucash/gschemas/org.gnucash.gschema.xml.in:226
msgid ""
-"If active, closing a tab moves to the most recently visited tab. Otherwise closing "
-"a tab moves one tab to the left."
+"If active, closing a tab moves to the most recently visited tab. Otherwise "
+"closing a tab moves one tab to the left."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ס××רת ×ש×× ×ת ת×ר×× ×××¢×ר ××ש×× ×ת ×××ר×× × ×©×××ª× ×¤×¢×××. ××רת "
-"ס××רת ××ש×× ×ת ת×ר×× ×××¢×ר ××ש×× ×ת ××ת ש××××."
+"××××× ×××פשר×ת ××פע××, ס××רת ×ש×× ×ת ת×ר×× ×××¢×ר ××ש×× ×ת ×××ר×× × ×©×××ª× ×¤×¢×××. "
+"××רת ס××רת ××ש×× ×ת ת×ר×× ×××¢×ר ××ש×× ×ת ××ת ש××××."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:230
#: gnucash/gtkbuilder/dialog-preferences.glade:1163
msgid ""
-"Set book option on new files to use split \"action\" field for \"Num\" field on "
-"registers/reports"
+"Set book option on new files to use split \"action\" field for \"Num\" field "
+"on registers/reports"
msgstr ""
"×××ת ×××רת ×פשר×ת ספר×× ×¢× ×§×צ×× ××ש×× ×©×שת××©× ×ש×× 'פע×××' ×פ×צ×× ×¢××ר ש×× "
"'ס××××××' ××××× ××/××××ת"
@@ -10333,17 +10513,18 @@ msgstr ""
#: gnucash/gschemas/org.gnucash.gschema.xml.in:231
#: gnucash/gtkbuilder/dialog-preferences.glade:1169
msgid ""
-"If selected, the default book option for new files is set so that the 'Num' cell on "
-"registers shows/updates the split 'action' field and the transaction 'num' field is "
-"shown on the second line in double line mode (and is not visible in single line "
-"mode). Otherwise, the default book option for new files is set so that the 'Num' "
-"cell on registers shows/updates the transaction 'num' field."
+"If selected, the default book option for new files is set so that the 'Num' "
+"cell on registers shows/updates the split 'action' field and the transaction "
+"'num' field is shown on the second line in double line mode (and is not "
+"visible in single line mode). Otherwise, the default book option for new files "
+"is set so that the 'Num' cell on registers shows/updates the transaction 'num' "
+"field."
msgstr ""
"××××× ×××פשר×ת × ××ר×, ספר ×ש××× ×ת ×ר×רת ××××× ××§×צ×× ××ש×× ××××ר ×× ×©×××¦× ×©××¨× "
-"×פ×××, שש×× 'ס××××××' ××××× ×צ××/××¢××× ×ת ×ש×× 'פע×××' ×פ×צ×× ××ש×× 'ס××××××' ×©× "
-"××ª× ××¢× ×××¦× ×ש××¨× ××©× ×× (×× ×××× ×××¦× ×©××¨× ××××ת). ××רת, ×פשר×ת ספר ×ש××× ×ת ×ר×רת "
-"×××× ×¢××ר ×§×צ×× ××ש×× ×ª×××ר ×× ×©×ª× 'ס××××××' ××××× ×צ××/××¢××× ×ת ש×× ××ª× ××¢× "
-"'ס××××××'."
+"×פ×××, שש×× 'ס××××××' ××××× ×צ××/××¢××× ×ת ×ש×× 'פע×××' ×פ×צ×× ××ש×× 'ס××××××' "
+"×©× ××ª× ××¢× ×××¦× ×ש××¨× ××©× ×× (×× ×××× ×××¦× ×©××¨× ××××ת). ××רת, ×פשר×ת ספר ×ש××× ×ת "
+"×ר×רת ×××× ×¢××ר ×§×צ×× ××ש×× ×ª×××ר ×× ×©×ª× 'ס××××××' ××××× ×צ××/××¢××× ×ת ש×× "
+"××ª× ××¢× 'ס××××××'."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:240
msgid "Color the register using a gnucash specific color theme"
@@ -10351,15 +10532,17 @@ msgstr "צ××עת ××××× ×ª×× ×©×××ש ×ער×ת × ××©× ×¦××¢××
#: gnucash/gschemas/org.gnucash.gschema.xml.in:241
msgid ""
-"When enabled the register will use a GnuCash specific color theme (green/yellow). "
-"Otherwise it will use the system color theme. Regardless of this setting the user "
-"can always override the color theme via a gnucash specific css file to be stored in "
-"the gnucash used config directory. More information can be found in the gnucash FAQ."
+"When enabled the register will use a GnuCash specific color theme (green/"
+"yellow). Otherwise it will use the system color theme. Regardless of this "
+"setting the user can always override the color theme via a gnucash specific "
+"css file to be stored in the gnucash used config directory. More information "
+"can be found in the gnucash FAQ."
msgstr ""
-"××שר ×××פשר ××¢×©× ×©×××ש ××××× ×× ×ער×ת × ××©× ×¦××¢×× ×ת ×××××ת ×©× ×× ××§×ש (×ר××§/צ×××). "
-"××רת, ××× ××¢×©× ×©×××ש ×ער×ת ×× ××©× ×©× ×¦××¢× ××ער×ת. ××× ×§×©×¨ ×××××¨× ×× ××שת×ש ×××× ×ª××× "
-"××¢×§××£ ×ת ער×ת ×× ××©× ×©× ×צ××¢×× ×¢× ××× ×©×× ×× ×§×××¥ css ×× ××§×ש ××¢××× ××××××¡× ××××צת "
-"config ×©× ×× ××§×ש. × ××ª× ××צ×× ××××¢ × ×סף × 'ש×××ת × ×¤×צ×ת' ×©× ×× ××§×ש."
+"××שר ×××פשר ××¢×©× ×©×××ש ××××× ×× ×ער×ת × ××©× ×¦××¢×× ×ת ×××××ת ×©× ×× ××§×ש "
+"(×ר××§/צ×××). ××רת, ××× ××¢×©× ×©×××ש ×ער×ת ×× ××©× ×©× ×¦××¢× ××ער×ת. ××× ×§×©×¨ ×××××¨× "
+"×× ××שת×ש ×××× ×ª××× ××¢×§××£ ×ת ער×ת ×× ××©× ×©× ×צ××¢×× ×¢× ××× ×©×× ×× ×§×××¥ css ×× ××§×ש "
+"××¢××× ××××××¡× ××××צת config ×©× ×× ××§×ש. × ××ª× ××צ×× ××××¢ × ×סף × 'ש×××ת × ×¤×צ×ת' "
+"×©× ×× ××§×ש."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:245
msgid "Superseded by \"use-gnucash-color-theme\""
@@ -10380,8 +10563,8 @@ msgid ""
"If active, pressing the enter key will move to the bottom of the register. "
"Otherwise pressing the enter key will move to the next transaction line."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ××§×©× ×¢× ×××¦× '×× ×ר' תע××ר ×ת×ת×ת ×××××. ××רת, ××§×©× ×¢× ×××¦× "
-"'×× ×ר' תע××ר ×ש×רת ××ª× ××¢× ××××."
+"××××× ×××פשר×ת ××פע××, ××§×©× ×¢× ×××¦× '×× ×ר' תע××ר ×ת×ת×ת ×××××. ××רת, ××§×©× ×¢× "
+"×××¦× '×× ×ר' תע××ר ×ש×רת ××ª× ××¢× ××××."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:255
#: gnucash/gschemas/org.gnucash.gschema.xml.in:256
@@ -10394,11 +10577,12 @@ msgstr "××¢×ר ×ש×× '××¢×ר×' ×עת ××××× ××××××× ×©× ×ª
#: gnucash/gschemas/org.gnucash.gschema.xml.in:261
msgid ""
-"If active then after a memorised transaction is automatically filled in the cursor "
-"will move to the Transfer field. If not active then it skips to the value field."
+"If active then after a memorised transaction is automatically filled in the "
+"cursor will move to the Transfer field. If not active then it skips to the "
+"value field."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ×××ר ××××× ××××××× ×©× ××ª× ××¢× ×©××××ר××, ×ס××, ××¢××ר ×ש×× ' "
-"××¢×ר×'. ×× ×× ××פשר×ת ××פע××, ××× ×××× ×ש×× ×ער×."
+"××××× ×××פשר×ת ××פע××, ×××ר ××××× ××××××× ×©× ××ª× ××¢× ×©××××ר××, ×ס××, ××¢××ר ×ש×× "
+"' ××¢×ר×'. ×× ×× ××פשר×ת ××פע××, ××× ×××× ×ש×× ×ער×."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:265
msgid "Create a new window for each new register"
@@ -10406,11 +10590,11 @@ msgstr "×צ×רת ×××× ××ש ××× ×××× ××ש"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:266
msgid ""
-"If active, each new register will be opened in a new window. Otherwise each new "
-"register will be opened as a tab in the main window."
+"If active, each new register will be opened in a new window. Otherwise each "
+"new register will be opened as a tab in the main window."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ×××× ××ש ××¤×ª× ××××× ××ש. ××רת, ×××× ××ש ××¤×ª× ××ש×× ×ת ××××× "
-"×ר×ש×."
+"××××× ×××פשר×ת ××פע××, ×××× ××ש ××¤×ª× ××××× ××ש. ××רת, ×××× ××ש ××¤×ª× ××ש×× ×ת "
+"××××× ×ר×ש×."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:270
msgid "Color all lines of a transaction the same"
@@ -10418,11 +10602,12 @@ msgstr "צ××עת ×× ×©×ר×ת ××ª× ××¢× ×צ××¢ ×××"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:271
msgid ""
-"If active all lines that make up a single transaction will use the same color for "
-"their background. Otherwise the background colors are alternated on each line."
+"If active all lines that make up a single transaction will use the same color "
+"for their background. Otherwise the background colors are alternated on each "
+"line."
msgstr ""
-"××××× ×××פשר×ת ××פע×× ×× ×ש×ר×ת ××ª× ××¢× ××××ת, ×שת××©× ××××ª× ×¦××¢ רקע. ××רת, צ××¢× ×רקע "
-"×××× ×ס×ר×××× ××× ×©×ר×."
+"××××× ×××פשר×ת ××פע×× ×× ×ש×ר×ת ××ª× ××¢× ××××ת, ×שת××©× ××××ª× ×¦××¢ רקע. ××רת, צ××¢× "
+"×רקע ×××× ×ס×ר×××× ××× ×©×ר×."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:275
msgid "Show horizontal borders in a register"
@@ -10430,12 +10615,12 @@ msgstr "×צ×ת ×××××ת ×× ×××× ×××××"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:276
msgid ""
-"Show horizontal borders between rows in a register. If active the border between "
-"cells will be indicated with a heavy line. Otherwise the border between cells will "
-"not be marked."
+"Show horizontal borders between rows in a register. If active the border "
+"between cells will be indicated with a heavy line. Otherwise the border "
+"between cells will not be marked."
msgstr ""
-"×צ×ת ×××××ת ××פק××× ××× ×©×ר×ת ×××××. ××××× ×××פשר×ת ××פע×× ×§× ××××× ××× ×ת××× ×צ××ר "
-"××§× ×¢××. ××רת, ××××× ××× ×ת××× ×× ×ס×××."
+"×צ×ת ×××××ת ××פק××× ××× ×©×ר×ת ×××××. ××××× ×××פשר×ת ××פע×× ×§× ××××× ××× ×ת××× "
+"×צ××ר ××§× ×¢××. ××רת, ××××× ××× ×ת××× ×× ×ס×××."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:280
msgid "Show vertical borders in a register"
@@ -10443,12 +10628,12 @@ msgstr "×צ×ת ×§××× ×¡××× ×× ××××"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:281
msgid ""
-"Show vertical borders between columns in a register. If active the border between "
-"cells will be indicated with a heavy line. Otherwise the border between cells will "
-"not be marked."
+"Show vertical borders between columns in a register. If active the border "
+"between cells will be indicated with a heavy line. Otherwise the border "
+"between cells will not be marked."
msgstr ""
-"××¦× ×××××ת ×× ×××× ××× ×¢××××ת ×××××. ××××× ×××פשר×ת ××פע×× ×§× ××××× ××× ×ת××× ×צ××ר "
-"××§× ×¢××. ××רת, ××××× ××× ×ת××× ×× ×ס×××."
+"××¦× ×××××ת ×× ×××× ××× ×¢××××ת ×××××. ××××× ×××פשר×ת ××פע×× ×§× ××××× ××× ×ת××× "
+"×צ××ר ××§× ×¢××. ××רת, ××××× ××× ×ת××× ×× ×ס×××."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:285
msgid "Show future transactions after the blank transaction in a register"
@@ -10456,14 +10641,14 @@ msgstr "×צ×ת ×ª× ××¢×ת עת××××ת ×××ר ××ª× ××¢× ×ר××§× ×
#: gnucash/gschemas/org.gnucash.gschema.xml.in:286
msgid ""
-"Show future transactions after the blank transaction in a register. If active then "
-"transactions with a date in the future will be displayed at the bottom of the "
-"register after the blank transaction. Otherwise the blank transaction will be at "
-"the bottom of the register after all transactions."
+"Show future transactions after the blank transaction in a register. If active "
+"then transactions with a date in the future will be displayed at the bottom of "
+"the register after the blank transaction. Otherwise the blank transaction will "
+"be at the bottom of the register after all transactions."
msgstr ""
-"×צ×ת ×ª× ××¢×ת עת××××ת ×××¨× ××ª× ××¢× ×ר××§× ×××××. ××××× ×××פשר×ת ××פע××, ×ª× ××¢×ת ×¢× ×ª×ר×× "
-"עת××× ××צ×× ×ת×ת×ת ××××× ×××ר ××ª× ××¢× ×ר××§×. ××רת, ××ª× ××¢× ×ר××§× ×ª×××§× ×ת×ת×ת ××××× "
-"×××¨× ×× ××ª× ××¢×ת."
+"×צ×ת ×ª× ××¢×ת עת××××ת ×××¨× ××ª× ××¢× ×ר××§× ×××××. ××××× ×××פשר×ת ××פע××, ×ª× ××¢×ת ×¢× "
+"ת×ר×× ×¢×ª××× ××צ×× ×ת×ת×ת ××××× ×××ר ××ª× ××¢× ×ר××§×. ××רת, ××ª× ××¢× ×ר××§× ×ª×××§× "
+"×ת×ת×ת ××××× ×××¨× ×× ××ª× ××¢×ת."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:290
#: gnucash/gtkbuilder/dialog-preferences.glade:2389
@@ -10474,17 +10659,18 @@ msgstr "×צ×ת ×× ××ª× ××¢×ת ×ש××¨× ××ת. (×©× ××× ×××¦× ×©
#: gnucash/gschemas/org.gnucash.gschema.xml.in:296
#: gnucash/gschemas/org.gnucash.gschema.xml.in:301
msgid ""
-"This field specifies the default view style when opening a new register window. "
-"Possible values are \"ledger\", \"auto-ledger\" and \"journal\". The \"ledger\" "
-"setting says to show each transaction on one or two lines. The \"auto-ledger\" "
-"setting does the same, but also expands only the current transaction to show all "
-"splits. The \"journal\" setting shows all transactions in expanded form."
+"This field specifies the default view style when opening a new register "
+"window. Possible values are \"ledger\", \"auto-ledger\" and \"journal\". The "
+"\"ledger\" setting says to show each transaction on one or two lines. The "
+"\"auto-ledger\" setting does the same, but also expands only the current "
+"transaction to show all splits. The \"journal\" setting shows all transactions "
+"in expanded form."
msgstr ""
"ש×× ×× ××××ר ×ת ס×× ×× ×תצ××× ×××××× ×ר×רת ×××× ×עת פת××ת ×××× ×××× ××ש. ער××× "
-"×פשר××× ×× \"ספר ר×ש×\", \"ספר ×××××××\" ×\"××××\". ×××××¨× \"ספר ר×ש×\" ×§××עת ××× "
-"××צ×× ×× ×ª× ××¢× ×ש××¨× ××ת ×× ××©×ª× ×©×ר×ת. ×××××¨× \"ספר ×××××××\" פ××¢×ת ××××¤× ×××, ×× "
-"×× ×ר×××× ×ת ××ª× ××¢× ×× ××××ת ××צ×ת ×× ×פ×צ×××× ××. ×××××¨× \"××××\" ×צ××× ×ת ×× "
-"××ª× ××¢×ת ×צ××¨× ××ר××ת."
+"×פשר××× ×× \"ספר ר×ש×\", \"ספר ×××××××\" ×\"××××\". ×××××¨× \"ספר ר×ש×\" ×§××עת "
+"××× ××צ×× ×× ×ª× ××¢× ×ש××¨× ××ת ×× ××©×ª× ×©×ר×ת. ×××××¨× \"ספר ×××××××\" פ××¢×ת ××××¤× "
+"×××, ×× ×× ×ר×××× ×ת ××ª× ××¢× ×× ××××ת ××צ×ת ×× ×פ×צ×××× ××. ×××××¨× \"××××\" "
+"×צ××× ×ת ×× ××ª× ××¢×ת ×צ××¨× ××ר××ת."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:295
#: gnucash/gtkbuilder/dialog-preferences.glade:2409
@@ -10503,11 +10689,12 @@ msgstr "×× ××ª× ××¢×ת ××ר××× ××צ×ת ×× ×פ×צ××××."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:306
msgid ""
"Show two lines of information for each transaction in a register. This is the "
-"default setting for when a register is first opened. The setting can be changed at "
-"any time via the \"View->Double Line\" menu item."
+"default setting for when a register is first opened. The setting can be "
+"changed at any time via the \"View->Double Line\" menu item."
msgstr ""
-"×צ×ת ×©×ª× ×©×ר×ת ××××¢ ×¢××ר ×× ×ª× ××¢× ×××××. ×××× ×××רת ×ר×רת ××××× ×¢××ר ×××× ×©× ×¤×ª× "
-"×ר×ש×× ×. × ××ª× ××©× ×ת ×ת ×××××¨× ××× ×¢×ª ×××צע×ת פר×× ×תפר×× \"×צ×-> ש××¨× ×פ×××\"."
+"×צ×ת ×©×ª× ×©×ר×ת ××××¢ ×¢××ר ×× ×ª× ××¢× ×××××. ×××× ×××רת ×ר×רת ××××× ×¢××ר ×××× "
+"×©× ×¤×ª× ×ר×ש×× ×. × ××ª× ××©× ×ת ×ת ×××××¨× ××× ×¢×ª ×××צע×ת פר×× ×תפר×× \"×צ×-> ש××¨× "
+"×פ×××\"."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:310
msgid "Only display leaf account names."
@@ -10516,13 +10703,13 @@ msgstr "×צ×ת ש××ת ×ש××× ×ת ××©× × ××××."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:311
msgid ""
"Show only the names of the leaf accounts in the register and in the account "
-"selection popup. The default behaviour is to display the full name, including the "
-"path in the account tree. Activating this option implies that you use unique leaf "
-"names."
+"selection popup. The default behaviour is to display the full name, including "
+"the path in the account tree. Activating this option implies that you use "
+"unique leaf names."
msgstr ""
-"×צ×ת ×ש××ת ×©× ×ש××× ×ת ×××©× × ×××× ××××× ×××××× ××§×פץ ××××רת ×ש××× ×ת. ×ר×רת ××××× ××× "
-"×צ×ת ××©× ××××, ×××× ×× ×ª×× ×תרש×× ××ש××× ×ת. ×פע×ת ×פשר×ת ×× ×ר××ת ×¢× ×©×××ש ×ש××ת "
-"×ש××× ×ת ××©× × ×××××××."
+"×צ×ת ×ש××ת ×©× ×ש××× ×ת ×××©× × ×××× ××××× ×××××× ××§×פץ ××××רת ×ש××× ×ת. ×ר×רת "
+"××××× ××× ×צ×ת ××©× ××××, ×××× ×× ×ª×× ×תרש×× ××ש××× ×ת. ×פע×ת ×פשר×ת ×× ×ר××ת ×¢× "
+"ש×××ש ×ש××ת ×ש××× ×ת ××©× × ×××××××."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:315
msgid "Show the entered and reconcile dates"
@@ -10531,9 +10718,10 @@ msgstr "×צ×ת ת×ר××× ×¨×ש×× ××ת×××"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:316
#: gnucash/gtkbuilder/dialog-preferences.glade:2576
msgid ""
-"Show the date when the transaction was entered below the posted date and reconciled "
-"date on split row."
-msgstr "×צ×ת ×ת×ר×× ×× ×××× × ××ª× ××¢× ×ת×ת ×ת×ר×× ×ר×ש×× ×ת×ר×× ××ת××× ×ש××¨× ×פ×צ×ת."
+"Show the date when the transaction was entered below the posted date and "
+"reconciled date on split row."
+msgstr ""
+"×צ×ת ×ת×ר×× ×× ×××× × ××ª× ××¢× ×ת×ת ×ת×ר×× ×ר×ש×× ×ת×ר×× ××ת××× ×ש××¨× ×פ×צ×ת."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:320
msgid "Show entered and reconciled dates on selection"
@@ -10560,7 +10748,8 @@ msgstr "××¢×רת ×××××¨× ×פ×צ×× ×¨××§ ×××¦× ×ר×××"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:331
#: gnucash/gtkbuilder/dialog-preferences.glade:2610
msgid ""
-"This will move the selection to the blank split when the transaction is expanded."
+"This will move the selection to the blank split when the transaction is "
+"expanded."
msgstr "××¢×רת ×××××¨× ×פ×צ×× ×¨××§ ×עת ×ר××ת ××ª× ××¢×."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:335
@@ -10582,11 +10771,11 @@ msgstr "×ספר ת×××× ××ש××× ×××××××ת."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:341
#: gnucash/gtkbuilder/dialog-preferences.glade:2555
msgid ""
-"This sets the number of characters before auto complete starts for description, "
-"notes and memo fields."
+"This sets the number of characters before auto complete starts for "
+"description, notes and memo fields."
msgstr ""
-"××××¨× ×× ×§××עת ×ת ×ספר ×ת×××× ×¢××ר ת×××ר, ×ער×ת ×ש××ת ת×××ר, ××¤× × ×©×ש××× ×××××××ת "
-"× ×× ×¡×ª ×פע×××."
+"××××¨× ×× ×§××עת ×ת ×ספר ×ת×××× ×¢××ר ת×××ר, ×ער×ת ×ש××ת ת×××ר, ××¤× × ×©×ש××× "
+"×××××××ת × ×× ×¡×ª ×פע×××."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:348
msgid "Create a new window for each new report"
@@ -10594,8 +10783,8 @@ msgstr "×צ×רת ×××× ××ש ××× ××× ××ש"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:349
msgid ""
-"If active, each new report will be opened in its own window. Otherwise new reports "
-"will be opened as tabs in the main window."
+"If active, each new report will be opened in its own window. Otherwise new "
+"reports will be opened as tabs in the main window."
msgstr ""
"××××× ×××פשר×ת ××פע××, ×× ××× ××ש ×××¤×ª× ××××× ×ש××. ××רת, ×××××ת ×××ש×× ××פת×× "
"××ש×× ××ת ××××× ×ר×ש×."
@@ -10608,13 +10797,14 @@ msgstr "ש×××ש ×××××¢ ×××ר ××ער×ת ×¢××ר ×× ×××××ת
#: gnucash/gschemas/org.gnucash.gschema.xml.in:354
#: gnucash/gschemas/org.gnucash.gschema.xml.in:364
msgid ""
-"This setting controls the default currency used for reports. If set to \"locale\" "
-"then GnuCash will retrieve the default currency from the user's locale setting. If "
-"set to \"other\", GnuCash will use the setting specified by the currency-other key."
+"This setting controls the default currency used for reports. If set to \"locale"
+"\" then GnuCash will retrieve the default currency from the user's locale "
+"setting. If set to \"other\", GnuCash will use the setting specified by the "
+"currency-other key."
msgstr ""
-"××××¨× ×× ×©×××ת ×××××¢ ×ר×רת ××××× ××ש×ש ×××××ת. ×× ××××ר ×-\"××§×××\", ××× ×× ××§×ש "
-"××××ר ×ת ××××¢ ×ר×רת ××××× ××××רת ×××ר ××ער×ת ×©× ××שת×ש. ×× ××××ר \"××ר\", ×× ××§×ש "
-"×שת×ש ×××××¨× ×©×××× × ×ש×× ××¤×ª× ××ר ×©× ×××××¢."
+"××××¨× ×× ×©×××ת ×××××¢ ×ר×רת ××××× ××ש×ש ×××××ת. ×× ××××ר ×-\"××§×××\", ××× "
+"×× ××§×ש ××××ר ×ת ××××¢ ×ר×רת ××××× ××××רת ×××ר ××ער×ת ×©× ××שת×ש. ×× ××××ר \"××ר"
+"\", ×× ××§×ש ×שת×ש ×××××¨× ×©×××× × ×ש×× ××¤×ª× ××ר ×©× ×××××¢."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:358
#: gnucash/gtkbuilder/dialog-preferences.glade:2724
@@ -10632,13 +10822,13 @@ msgstr "××§×× ×××§×× ×ש×××ש ××ר×רת ×××× ×¢××ר ××××
#: gnucash/gschemas/org.gnucash.gschema.xml.in:369
#: gnucash/gtkbuilder/dialog-preferences.glade:2853
msgid ""
-"On high resolution screens reports tend to be hard to read. This option allows you "
-"to scale reports up by the set factor. For example setting this to 2.0 will display "
-"reports at twice their typical size."
+"On high resolution screens reports tend to be hard to read. This option allows "
+"you to scale reports up by the set factor. For example setting this to 2.0 "
+"will display reports at twice their typical size."
msgstr ""
-"××××ת ××ס××× ××¢×× ×¨××××צ×× ××××× × ×××× ××××ת קש×× ×קר×××. ×פשר×ת ×× ××פשרת ××©× ×ת ×ת "
-"×§× × ××××× ×©× ×××××ת ×¢× ×¤× ×××§×× ×©× ××§××¢. ××××××, ש×× ×× ××××¨× ×× ×-2.0, תצ×× ××××ת "
-"××××× ×פ×× ×××××× ×××פ××× × ×××."
+"××××ת ××ס××× ××¢×× ×¨××××צ×× ××××× × ×××× ××××ת קש×× ×קר×××. ×פשר×ת ×× ××פשרת "
+"××©× ×ת ×ת ×§× × ××××× ×©× ×××××ת ×¢× ×¤× ×××§×× ×©× ××§××¢. ××××××, ש×× ×× ××××¨× ×× ×-2.0, "
+"תצ×× ××××ת ××××× ×פ×× ×××××× ×××פ××× × ×××."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:378
msgid "PDF export file name format"
@@ -10647,18 +10837,19 @@ msgstr "ת×× ×ת ×©× ×§×××¥ ×צ×× PDF"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:379
#, c-format
msgid ""
-"This setting chooses the file name for PDF export. This is a sprintf(3) string with "
-"three arguments: \"%1$s\" is the report name such as \"Invoice\". \"%2$s\" is the "
-"number of the report, which for an invoice report is the invoice number. \"%3$s\" "
-"is the date of the report, formatted according to the filename-date-format setting. "
-"(Note: Any characters that are not allowed in filenames, such as '/', will be "
-"replaced with underscores '_' in the resulting file name.)"
+"This setting chooses the file name for PDF export. This is a sprintf(3) string "
+"with three arguments: \"%1$s\" is the report name such as \"Invoice\". \"%2$s"
+"\" is the number of the report, which for an invoice report is the invoice "
+"number. \"%3$s\" is the date of the report, formatted according to the "
+"filename-date-format setting. (Note: Any characters that are not allowed in "
+"filenames, such as '/', will be replaced with underscores '_' in the resulting "
+"file name.)"
msgstr ""
"××××¨× ×× ×§××עת ×ת ×©× ×§×××¥ × PDF ש×××צ×. ×××× ××ר××ת ×ס×× sprintf(3) ××¢×ת ש×××©× "
-"××©×ª× ××: \"%1$s\" ××× ×©× ××××, ×××× \"×ש××× ×ת\". \"%2$s\" ××× ×ספר ××××, שע××ר ××× "
-"×ש××× ××ת ××× ×ספר ××ש××× ×ת. \"%3$s\" ××× ×ת×ר×× ××××, ×××¢××¦× ××¤× ×××רת ת×× ×ת-×§×××¥-"
-"ת×ר××. (×ער×: ת××× ×× ××תר×× ×ש××ת ×§×צ××, ×××× '/', ×××××¤× ××קפ×× ×ª×ת×× ×× ' _ ' ××©× "
-"××§×××¥ ש×××צר.)"
+"××©×ª× ××: \"%1$s\" ××× ×©× ××××, ×××× \"×ש××× ×ת\". \"%2$s\" ××× ×ספר ××××, שע××ר "
+"××× ×ש××× ××ת ××× ×ספר ××ש××× ×ת. \"%3$s\" ××× ×ת×ר×× ××××, ×××¢××¦× ××¤× ×××רת "
+"ת×× ×ת-×§×××¥-ת×ר××. (×ער×: ת××× ×× ××תר×× ×ש××ת ×§×צ××, ×××× '/', ×××××¤× ××קפ×× "
+"ת×ת×× ×× ' _ ' ××©× ××§×××¥ ש×××צר.)"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:383
msgid "PDF export file name date format choice"
@@ -10666,15 +10857,17 @@ msgstr "×פשר×ת ת×× ×ת ×©× ×ª×ר×× ×§×××¥ ×צ×× PDF"
#: gnucash/gschemas/org.gnucash.gschema.xml.in:384
msgid ""
-"This setting chooses the way dates are used in the filename of PDF export. Possible "
-"values for this setting are \"locale\" to use the system locale setting, \"ce\" for "
-"Continental Europe style dates, \"iso\" for ISO 8601 standard dates , \"uk\" for "
-"United Kingdom style dates, and \"us\" for United States style dates."
+"This setting chooses the way dates are used in the filename of PDF export. "
+"Possible values for this setting are \"locale\" to use the system locale "
+"setting, \"ce\" for Continental Europe style dates, \"iso\" for ISO 8601 "
+"standard dates , \"uk\" for United Kingdom style dates, and \"us\" for United "
+"States style dates."
msgstr ""
"××××¨× ×× ×§××עת ×ת ××××¤× ×©×× × ×¢×©× ×©×××ש ×ת×ר×××× ××©× ××§×××¥ ×××צ×× × PDF. ער××× "
-"×פשר××× ×¢××ר ××××¨× ×× ×× \"××§×××\" ×ש×××ש ××××רת ×××ר ××ער×ת, \"ce\" ×¢××ר ת×ר×××× "
-"×ס×× ×× ×§×× ××× × ××× ××ר×פ××, \"iso\" ×¢××ר ×ת×ר×××× ×ª×§× ISO 8601, \"×ר××× ××\" ×¢××ר "
-"ת×ר×××× ×ס×× ×× ×ר×××, × \"us\" ×¢××ר ת×ר××× ×ס×× ×× ×©× ×רצ×ת ××ר×ת."
+"×פשר××× ×¢××ר ××××¨× ×× ×× \"××§×××\" ×ש×××ש ××××רת ×××ר ××ער×ת, \"ce\" ×¢××ר "
+"ת×ר×××× ×ס×× ×× ×§×× ××× × ××× ××ר×פ××, \"iso\" ×¢××ר ×ת×ר×××× ×ª×§× ISO 8601, "
+"\"×ר××× ××\" ×¢××ר ת×ר×××× ×ס×× ×× ×ר×××, × \"us\" ×¢××ר ת×ר××× ×ס×× ×× ×©× ×רצ×ת "
+"××ר×ת."
#: gnucash/gschemas/org.gnucash.gschema.xml.in:390
msgid "Allow file incompatibility with older versions."
@@ -10682,10 +10875,10 @@ msgstr "×פש×ר ××סר ת××××ת ×§×××¥ ×¢× ×רס××ת ×§××××ת
#: gnucash/gschemas/org.gnucash.gschema.xml.in:391
msgid ""
-"If active, gnucash will be allowed to intentionally break file compatibility with "
-"older versions, so that a data file saved in this version cannot be read by an "
-"older version again. Otherwise gnucash will write data files only in formats that "
-"can be read by older versions as well."
+"If active, gnucash will be allowed to intentionally break file compatibility "
+"with older versions, so that a data file saved in this version cannot be read "
+"by an older version again. Otherwise gnucash will write data files only in "
+"formats that can be read by older versions as well."
msgstr ""
"××××× ×××פשר×ת ××פע××, ×× ××§×ש ××פשר ×× ×ª×§ ×××××× ×ת ת××××ת ××§×צ×× ××רס××ת ××©× ×ת "
"××תר, ×× ×©×§×××¥ × ×ª×× ×× ×©× ×©×ר ×××¨×¡× ×× ×× ×××× ××××§×¨× ×©×× ×××¨×¡× ××©× × ××תר. ××רת, "
@@ -10698,11 +10891,11 @@ msgstr "×ספר ×§×צ×× ×××ס××ר××"
#: gnucash/gschemas/org.gnucash.history.gschema.xml.in:6
msgid ""
"This setting contains the number of files to keep in the Recently Opened Files "
-"menu. This value may be set to zero to disable the file history. This number has a "
-"maximum value of 10."
+"menu. This value may be set to zero to disable the file history. This number "
+"has a maximum value of 10."
msgstr ""
-"××××¨× ×× ××××× ×ת ×ספר ××§×צ×× ×©×ש ×ש××ר ×תפר×× '×§×צ×× ×©× ×¤×ª×× ×××ר×× ×'. ××× ×ª ××¢×¨× "
-"×פס תש××ת ×ת ××ס××ר××ת ××§×צ××. ××¢×¨× ××ר×× ×××¤×©×¨× ××× 10."
+"××××¨× ×× ××××× ×ת ×ספר ××§×צ×× ×©×ש ×ש××ר ×תפר×× '×§×צ×× ×©× ×¤×ª×× ×××ר×× ×'. ××× ×ª "
+"××¢×¨× ×פס תש××ת ×ת ××ס××ר××ת ××§×צ××. ××¢×¨× ××ר×× ×××¤×©×¨× ××× 10."
#: gnucash/gschemas/org.gnucash.history.gschema.xml.in:10
msgid "Most recently opened file"
@@ -10744,8 +10937,8 @@ msgstr "××פסת ×××××ת ××ש××× ×ת ×ר××××"
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:10
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:108
msgid ""
-"This dialog is presented if you try to print checks from multiple accounts at the "
-"same time."
+"This dialog is presented if you try to print checks from multiple accounts at "
+"the same time."
msgstr "ת××ת ××-ש×× ×× ××צ×ת ×עת × ×ס×× ××פסת ×××××ת ××ספר ×ש××× ×ת ×× ××× ×ת."
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:14
@@ -10756,11 +10949,11 @@ msgstr "×§×××¢ ש×× ×××× ×רש××ת ×ש××× ×ת"
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:15
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:113
msgid ""
-"This dialog is presented when you attempt to move out of a modified invoice entry. "
-"The changed data must be either saved or discarded."
+"This dialog is presented when you attempt to move out of a modified invoice "
+"entry. The changed data must be either saved or discarded."
msgstr ""
-"ת××ת ××-ש×× ×× ×ª××¦× ×עת ××¢×ר ×ש×× ×ש××× ×ת ש××©×ª× ×. ×ת ×ער××× ×©××©×ª× ×, ×ש ×ש××ר ×× "
-"×ש×××."
+"ת××ת ××-ש×× ×× ×ª××¦× ×עת ××¢×ר ×ש×× ×ש××× ×ת ש××©×ª× ×. ×ת ×ער××× ×©××©×ª× ×, ×ש ×ש××ר "
+"×× ×ש×××."
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:19
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:117
@@ -10770,11 +10963,11 @@ msgstr "ש××פ×× ×¨×©××ת ×ש××× ×ת שש×× ×ª×"
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:20
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:118
msgid ""
-"This dialog is presented when you attempt to duplicate a modified invoice entry. "
-"The changed data must be saved or the duplication canceled."
+"This dialog is presented when you attempt to duplicate a modified invoice "
+"entry. The changed data must be saved or the duplication canceled."
msgstr ""
-"ת××ת ××-ש×× ×× ××צ×ת ×עת × ×ס××× ×©××פ×× ×ש××× ×ת ×¢× ×¢×¨× ×©××©×ª× ×. ×ת ×× ×ª×× ×× ×©××©×ª× × ×ש "
-"×ש××ר ת××××, ×× ×××× ×ת ×ש×פ××."
+"ת××ת ××-ש×× ×× ××צ×ת ×עת × ×ס××× ×©××פ×× ×ש××× ×ת ×¢× ×¢×¨× ×©××©×ª× ×. ×ת ×× ×ª×× ×× "
+"ש××©×ª× × ×ש ×ש××ר ת××××, ×× ×××× ×ת ×ש×פ××."
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:24
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:122
@@ -10794,11 +10987,11 @@ msgstr "×××קת ס×××¨× ×¢× ×××ר××"
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:30
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:128
msgid ""
-"This dialog is presented before allowing you to delete a commodity that has price "
-"quotes attached. Deleting the commodity will delete the quotes as well."
+"This dialog is presented before allowing you to delete a commodity that has "
+"price quotes attached. Deleting the commodity will delete the quotes as well."
msgstr ""
-"ת××ת ××-ש×× ×× ××צ×ת ××¤× × ×©×ª×ª×פשר ×××קת ס×××¨× ×¢× ×××ר××. ×××קת ×ס×××¨× ×ª×××§ ×× ×ת "
-"××××ר××."
+"ת××ת ××-ש×× ×× ××צ×ת ××¤× × ×©×ª×ª×פשר ×××קת ס×××¨× ×¢× ×××ר××. ×××קת ×ס×××¨× ×ª×××§ ×× "
+"×ת ××××ר××."
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:34
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:132
@@ -10808,8 +11001,8 @@ msgstr "×××קת צ×××××× ×¢× ×¨×××× ×××ר××"
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:35
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:133
msgid ""
-"This dialog is presented before allowing you to delete multiple price quotes at one "
-"time."
+"This dialog is presented before allowing you to delete multiple price quotes "
+"at one time."
msgstr "ת××ת ××-ש×× ×× ××צ×ת ××¤× × ×©×ª×ª×פשר ×××קת ×××ר×× ×ר×××."
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:39
@@ -10819,7 +11012,8 @@ msgstr "×××פת ×××ר ×§××"
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:40
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:138
-msgid "This dialog is presented before allowing you to replace an existing price."
+msgid ""
+"This dialog is presented before allowing you to replace an existing price."
msgstr "×××× ××-ש×× ×× ×××¦× ××¤× × ×©×ת×פשר ××××××£ ×××ר ×§×××."
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:44
@@ -10830,9 +11024,9 @@ msgstr "ער××ת ×××× ×××××× /×××××"
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:45
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:143
msgid ""
-"This dialog is presented before allowing you to edit an accounts payable/accounts "
-"receivable account. These account types are reserved for the business features and "
-"should rarely be manipulated manually."
+"This dialog is presented before allowing you to edit an accounts payable/"
+"accounts receivable account. These account types are reserved for the business "
+"features and should rarely be manipulated manually."
msgstr ""
"ת××ת ××-ש×× ×× ××צ×ת ××¤× × ×©×ª×ª×פשר ער××ת ×ש××× ×××××/ ××××××. ס××× ×ש××× ×ת ××× "
"ש××ר×× ×ת××× ×ת ×עסק××ת ×רק ×עת×× ×¨×××§×ת ×××רש ×××¤× ××× ××××¤× ××× ×."
@@ -10855,8 +11049,9 @@ msgstr "ש×× ×× ×ª××× ×©× ×¤×צ×× ××ת××"
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:55
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:153
msgid ""
-"This dialog is presented before allowing you to change the contents of a reconciled "
-"split. Allowing these changes can make it hard to perform future reconciliations."
+"This dialog is presented before allowing you to change the contents of a "
+"reconciled split. Allowing these changes can make it hard to perform future "
+"reconciliations."
msgstr ""
"ת××ת ××-ש×× ×× ××צ×ת ××¤× × ×©×ת×פשר ש×× ×× ×ª××× ×©× ×¤×צ×× ×©××ת××. ×תרת ש×× ×××× ××× "
"××××× ××קש×ת ×¢× ××צ××¢ ×ת×××ת עת××××ת."
@@ -10870,11 +11065,11 @@ msgstr "ס×××× ×¤×צ×× ×ª× ××¢× ××× ××ת××"
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:158
msgid ""
"This dialog is presented before allowing you to mark a transaction split as "
-"unreconciled. Doing so will throw off the reconciled value of the register and can "
-"make it hard to perform future reconciliations."
+"unreconciled. Doing so will throw off the reconciled value of the register and "
+"can make it hard to perform future reconciliations."
msgstr ""
-"ת××ת ××-ש×× ×× ××צ×ת ××¤× × ×©×ת×פשר ×ס×× ×ª× ×עת פ×צ×× ××× ××ת××. ××¢×¨× ×©××ת×× ××××× "
-"××ש××, ×עש×× ××קש×ת ×¢× ×××צ××¢ ×ת×××ת ×עת××."
+"ת××ת ××-ש×× ×× ××צ×ת ××¤× × ×©×ת×פשר ×ס×× ×ª× ×עת פ×צ×× ××× ××ת××. ××¢×¨× ×©××ת×× "
+"××××× ××ש××, ×עש×× ××קש×ת ×¢× ×××צ××¢ ×ת×××ת ×עת××."
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:64
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:162
@@ -10884,7 +11079,8 @@ msgstr "×סרת פ×צ×× ××ª× ××¢×"
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:65
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:163
msgid ""
-"This dialog is presented before allowing you to remove a split from a transaction."
+"This dialog is presented before allowing you to remove a split from a "
+"transaction."
msgstr "ת××ת ××-ש×× ×× ××צ×ת ××¤× × ×©×ת×פשר ××ס×ר פ×צ×× ××ª× ××¢×."
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:69
@@ -10895,9 +11091,9 @@ msgstr "×סרת פ×צ×× ××ת×× ××ª× ××¢×"
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:70
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:168
msgid ""
-"This dialog is presented before allowing you to remove a reconciled split from a "
-"transaction. Doing so will throw off the reconciled value of the register and can "
-"make it hard to perform future reconciliations."
+"This dialog is presented before allowing you to remove a reconciled split from "
+"a transaction. Doing so will throw off the reconciled value of the register "
+"and can make it hard to perform future reconciliations."
msgstr ""
"ת××ת ××-ש×× ×× ××צ×ת ××¤× × ×©×ת×פשר ××ס×ר פ×צ×× ×©××ת×× ××ª× ××¢×. ××¢×¨× ×©××ת×× ××××× "
"××ש××, ×עש×× ××קש×ת ×¢× ×××צ××¢ ×ת×××ת ×עת××."
@@ -10919,12 +11115,14 @@ msgstr "ת××ת ××-ש×× ×× ××צ×ת ××¤× × ×©× ××ª× ×××× ××ס
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:80
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:178
msgid ""
-"This dialog is presented before allowing you to remove all splits (including some "
-"reconciled splits) from a transaction. Doing so will throw off the reconciled value "
-"of the register and can make it hard to perform future reconciliations."
+"This dialog is presented before allowing you to remove all splits (including "
+"some reconciled splits) from a transaction. Doing so will throw off the "
+"reconciled value of the register and can make it hard to perform future "
+"reconciliations."
msgstr ""
"ת××ת ××-ש×× ×× ××צ×ת ××¤× × ×©× ××ª× ×××× ××ס×ר ×ת ×× ×פ×צ×××× (×××× ×ספר פ×צ×××× "
-"ש××ת×××) ×××ª× ××¢×. פע××× ×× ×ª×©××× ×ת ××¢×¨× ×××ת×× ××××× ××ª×§×©× ×¢× ××צ××¢ ×ת×××ת עת×××."
+"ש××ת×××) ×××ª× ××¢×. פע××× ×× ×ª×©××× ×ת ××¢×¨× ×××ת×× ××××× ××ª×§×©× ×¢× ××צ××¢ ×ת×××ת "
+"עת×××."
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:84
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:182
@@ -10944,12 +11142,12 @@ msgstr "×××קת ×ª× ××¢× ×¢× ×¤×צ×××× ××ת××××"
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:90
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:188
msgid ""
-"This dialog is presented before allowing you to delete a transaction that contains "
-"reconciled splits. Doing so will throw off the reconciled value of the register and "
-"can make it hard to perform future reconciliations."
+"This dialog is presented before allowing you to delete a transaction that "
+"contains reconciled splits. Doing so will throw off the reconciled value of "
+"the register and can make it hard to perform future reconciliations."
msgstr ""
-"ת××ת ××-ש×× ×× ××צ×ת ××¤× × ×©× ××ª× ×××× ×××××§ ×ª× ××¢× ×××××× ×¤×צ×××× ×©××ת×××. פע××× ×× "
-"תש××× ×ת ××¢×¨× ×××ת×× ××××× ××ª×§×©× ×¢× ××צ××¢ ×ת×××ת עת×××."
+"ת××ת ××-ש×× ×× ××צ×ת ××¤× × ×©× ××ª× ×××× ×××××§ ×ª× ××¢× ×××××× ×¤×צ×××× ×©××ת×××. פע××× "
+"×× ×ª×©××× ×ת ××¢×¨× ×××ת×× ××××× ××ª×§×©× ×¢× ××צ××¢ ×ת×××ת עת×××."
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:94
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:192
@@ -10959,8 +11157,8 @@ msgstr "ש××פ×× ×ª× ××¢× ×©×©×× ×ª×"
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:95
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:193
msgid ""
-"This dialog is presented when you attempt to duplicate a modified transaction. The "
-"changed data must be saved or the duplication canceled."
+"This dialog is presented when you attempt to duplicate a modified transaction. "
+"The changed data must be saved or the duplication canceled."
msgstr ""
"ת××ת ××-ש×× ×× ××צ×ת ×עת × ×ס×× ×ש××¤× ×ª× ××¢× ×©××©×ª× ×ª×. ×ש ×ש××ר ×ת ×× ×ª×× ×× ×©××©×ª× × "
"ת×××× ×× ×××× ×ת ×ש×פ××."
@@ -10973,15 +11171,16 @@ msgstr "×§××××¢ ש×× ×××× ××ª× ××¢×"
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:100
#: gnucash/gschemas/org.gnucash.warnings.gschema.xml.in:198
msgid ""
-"This dialog is presented when you attempt to move out of a modified transaction. "
-"The changed data must be either saved or discarded."
+"This dialog is presented when you attempt to move out of a modified "
+"transaction. The changed data must be either saved or discarded."
msgstr ""
-"ת××ת ××-ש×× ×× ××צ×ת ××שר ×עת × ×ס××× ××צ××× ××ª× ××¢× ×©××©×ª× ×ª×. ×ש ×ש××ר ×ת ×× ×ª×× ×× "
-"ש××©×ª× × ×ª×××× ×× ×××× ×ת ×ש×פ××."
+"ת××ת ××-ש×× ×× ××צ×ת ××שר ×עת × ×ס××× ××צ××× ××ª× ××¢× ×©××©×ª× ×ª×. ×ש ×ש××ר ×ת "
+"×× ×ª×× ×× ×©××©×ª× × ×ª×××× ×× ×××× ×ת ×ש×פ××."
#: gnucash/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in:5
#: gnucash/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in:6
-msgid "Show a grand total of all accounts converted to the default report currency"
+msgid ""
+"Show a grand total of all accounts converted to the default report currency"
msgstr "×צ×ת ס××× ×××× ×©× ×× ××ש××× ×ת ש××××¨× ×××××¢ ××× ×ר×רת ××××"
#: gnucash/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in:10
@@ -10990,8 +11189,8 @@ msgstr "×צ×ת ס××××× ×× ×ספ××× ×ס××ר×ת"
#: gnucash/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in:11
msgid ""
-"If active, non currency commodities (stocks) will be shown. Otherwise they will be "
-"hidden."
+"If active, non currency commodities (stocks) will be shown. Otherwise they "
+"will be hidden."
msgstr "××××× ×××פשר×ת ××פע××, ס××ר×ת (×× ××ת) ×× ××××¢××ת ××צ××. ××רת ×× ××סתר×."
#: gnucash/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in:15
@@ -11001,14 +11200,14 @@ msgstr "ש×××ש ×ת×ר×× ×ת××× ×××¡× ×ר×××/×פס×"
#: gnucash/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in:16
#: gnucash/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in:21
msgid ""
-"This setting controls the type of starting date used in profit/loss calculations. "
-"If set to \"absolute\" then GnuCash will retrieve the starting date specified by "
-"the start-date key. If set to anything else, GnuCash will retrieve the starting "
-"date specified by the start-period key."
+"This setting controls the type of starting date used in profit/loss "
+"calculations. If set to \"absolute\" then GnuCash will retrieve the starting "
+"date specified by the start-date key. If set to anything else, GnuCash will "
+"retrieve the starting date specified by the start-period key."
msgstr ""
-"××××¨× ×× ×©×××ת ×ס×× ×ª×ר×× ××ת××× ××ש×ש ×××ש××× ×¨×××/×פס×. ×× ××××ר ×-\"×××××\", ××× "
-"×× ××§×ש ××××ר ×ת ת×ר×× ××ת××× ×©×××× ×ש×× ××¤×ª× ×ª×ר×× ××ת×××. ×× ××××ר ×××ר, ×× ××§×ש "
-"××××ר ×ת ת×ר×× ××ת××× ×©×××××ש×× ××¤×ª× ×ª×§×פת ××ת×××."
+"××××¨× ×× ×©×××ת ×ס×× ×ª×ר×× ××ת××× ××ש×ש ×××ש××× ×¨×××/×פס×. ×× ××××ר ×-\"×××××"
+"\", ××× ×× ××§×ש ××××ר ×ת ת×ר×× ××ת××× ×©×××× ×ש×× ××¤×ª× ×ª×ר×× ××ת×××. ×× ××××ר "
+"×××ר, ×× ××§×ש ××××ר ×ת ת×ר×× ××ת××× ×©×××××ש×× ××¤×ª× ×ª×§×פת ××ת×××."
#: gnucash/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in:20
msgid "Use absolute profit/loss starting date"
@@ -11021,11 +11220,11 @@ msgstr "ת×ר×× ×ת××× (××©× ××ת × 1 ××× ××ר, 1970)"
#: gnucash/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in:26
msgid ""
"This setting controls the starting date set in profit/loss calculations if the "
-"start-choice setting is set to \"absolute\". This field should contain a date as "
-"represented in seconds from January 1st, 1970."
+"start-choice setting is set to \"absolute\". This field should contain a date "
+"as represented in seconds from January 1st, 1970."
msgstr ""
-"××××¨× ×× ×©×××ת ×ת×ר×× ××ת××× ×©××××ר ×××ש××× ×¨×××/××¤×¡× ×× × ×××¨× ×××רת ת×ר×× ×ת××× "
-"\"×××××\". ש×× ×× ×××ר ××××× ×ª×ר×× ×××××¦× ××©× ××ת ×-1 ××× ××ר, 1970."
+"××××¨× ×× ×©×××ת ×ת×ר×× ××ת××× ×©××××ר ×××ש××× ×¨×××/××¤×¡× ×× × ×××¨× ×××רת ת×ר×× "
+"×ת××× \"×××××\". ש×× ×× ×××ר ××××× ×ª×ר×× ×××××¦× ××©× ××ת ×-1 ××× ××ר, 1970."
#: gnucash/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in:30
msgid "Starting time period identifier"
@@ -11034,11 +11233,11 @@ msgstr "×××× ×ª×ר×× ×ª×××ת תק×פ×"
#: gnucash/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in:31
msgid ""
"This setting controls the starting date set in profit/loss calculations if the "
-"start-choice setting is set to anything other than \"absolute\". This field should "
-"contain a value between 0 and 8."
+"start-choice setting is set to anything other than \"absolute\". This field "
+"should contain a value between 0 and 8."
msgstr ""
-"××××¨× ×× ×©×××ת ×ת×ר×× ××ת××× ×©× ×§××¢ ×××ש××× ×¨×××/××¤×¡× ××שר ×××רת ××ת××× ××××ר ××¢×¨× "
-"×× \"×××××\". ש×× ×× ×××ר ××××× ×¢×¨× ××× 0 ×-8."
+"××××¨× ×× ×©×××ת ×ת×ר×× ××ת××× ×©× ×§××¢ ×××ש××× ×¨×××/××¤×¡× ××שר ×××רת ××ת××× ××××ר "
+"××¢×¨× ×× \"×××××\". ש×× ×× ×××ר ××××× ×¢×¨× ××× 0 ×-8."
#: gnucash/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in:35
msgid "Use relative profit/loss ending date"
@@ -11047,14 +11246,14 @@ msgstr "ש×××ש ×ת×ר×× ×¡××× ×¨××/××¤×¡× ××ס×"
#: gnucash/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in:36
#: gnucash/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in:41
msgid ""
-"This setting controls the type of ending date used in profit/loss calculations. If "
-"set to \"absolute\" then GnuCash will retrieve the ending date specified by the end-"
-"date key. If set to anything else, GnuCash will retrieve the ending date specified "
-"by the end-period key."
+"This setting controls the type of ending date used in profit/loss "
+"calculations. If set to \"absolute\" then GnuCash will retrieve the ending "
+"date specified by the end-date key. If set to anything else, GnuCash will "
+"retrieve the ending date specified by the end-period key."
msgstr ""
-"××××¨× ×× ×©×××ת ×ס×× ×ª×ר×× ×ס××× ××ש×ש ×××ש××× ×¨×××/×פס×. ××שר ××××ר ×-\"×××××\", "
-"××× ×× ××§×ש ××××ר ×ת ת×ר×× ×ס××× ×××¢×¨× ×©×××¤×ª× ×ª×ר×× ×ס×××. ×× ××××ר ×¢×¨× ××ר, ×× ××§×ש "
-"××××ר ×ת ת×ר×× ×ס××× ×××¢×¨× ×©××××ר ×××¤×ª× ×ª×§×פת ×ס×××."
+"××××¨× ×× ×©×××ת ×ס×× ×ª×ר×× ×ס××× ××ש×ש ×××ש××× ×¨×××/×פס×. ××שר ××××ר ×-\"×××××"
+"\", ××× ×× ××§×ש ××××ר ×ת ת×ר×× ×ס××× ×××¢×¨× ×©×××¤×ª× ×ª×ר×× ×ס×××. ×× ××××ר ×¢×¨× "
+"××ר, ×× ××§×ש ××××ר ×ת ת×ר×× ×ס××× ×××¢×¨× ×©××××ר ×××¤×ª× ×ª×§×פת ×ס×××."
#: gnucash/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in:40
msgid "Use absolute profit/loss ending date"
@@ -11066,12 +11265,12 @@ msgstr "ת×ר×× ×¡××× (××©× ××ת × 1 ××× ××ר 1970)"
#: gnucash/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in:46
msgid ""
-"This setting controls the ending date set in profit/loss calculations if the end-"
-"choice setting is set to \"absolute\". This field should contain a date as "
+"This setting controls the ending date set in profit/loss calculations if the "
+"end-choice setting is set to \"absolute\". This field should contain a date as "
"represented in seconds from January 1st, 1970."
msgstr ""
-"××××¨× ×× ×©×××ת ×ת×ר×× ×ס××× ×©× ×§××¢ ×××ש××× ×¨×××/××¤×¡× ××שר ×¢×¨× ×ס××× ××××ר ×-\"×××××ת"
-"\". ש×× ×× ×××ר ××××× ×ª×ר×× ×××××¦× ××©× ××ת ×-1 ××× ××ר, 1970."
+"××××¨× ×× ×©×××ת ×ת×ר×× ×ס××× ×©× ×§××¢ ×××ש××× ×¨×××/××¤×¡× ××שר ×¢×¨× ×ס××× ××××ר ×-"
+"\"×××××ת\". ש×× ×× ×××ר ××××× ×ª×ר×× ×××××¦× ××©× ××ת ×-1 ××× ××ר, 1970."
#: gnucash/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in:50
msgid "Ending time period identifier"
@@ -11079,12 +11278,12 @@ msgstr "×××× ×¡××£ תק×פ×"
#: gnucash/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in:51
msgid ""
-"This setting controls the ending date set in profit/loss calculations if the end-"
-"choice setting is set to anything other than \"absolute\". This field should "
-"contain a value between 0 and 8."
+"This setting controls the ending date set in profit/loss calculations if the "
+"end-choice setting is set to anything other than \"absolute\". This field "
+"should contain a value between 0 and 8."
msgstr ""
-"××××¨× ×× ×©×××ת ×ת×ר×× ×ס××× ×©× ×§××¢ ×××ש××× ×¨×××/××¤×¡× ××שר ×¢×¨× ×ס××× ××××ר ××¢×¨× ×©××× × "
-"\"×××××\". ש×× ×× ×××ר ××××× ×¢×¨× ××× 0 ×-8."
+"××××¨× ×× ×©×××ת ×ת×ר×× ×ס××× ×©× ×§××¢ ×××ש××× ×¨×××/××¤×¡× ××שר ×¢×¨× ×ס××× ××××ר ××¢×¨× "
+"ש××× × \"×××××\". ש×× ×× ×××ר ××××× ×¢×¨× ××× 0 ×-8."
#: gnucash/gschemas/org.gnucash.window.pages.gschema.xml.in:5
msgid "Display this column"
@@ -11092,11 +11291,11 @@ msgstr "×צ×ת ×¢×××× ××"
#: gnucash/gschemas/org.gnucash.window.pages.gschema.xml.in:6
msgid ""
-"This setting controls whether the given column will be visible in the view. TRUE "
-"means visible, FALSE means hidden."
+"This setting controls whether the given column will be visible in the view. "
+"TRUE means visible, FALSE means hidden."
msgstr ""
-"××××¨× ×× ×§××עת ××× ×¢×××× × ×ª×× × ×ª××× ××××× ×תצ×××. TRUE פ×ר××©× ××××, FALSE פ×ר××©× "
-"××סתר."
+"××××¨× ×× ×§××עת ××× ×¢×××× × ×ª×× × ×ª××× ××××× ×תצ×××. TRUE פ×ר××©× ××××, FALSE "
+"פ×ר××©× ××סתר."
#: gnucash/gschemas/org.gnucash.window.pages.gschema.xml.in:10
msgid "Width of this column"
@@ -11126,14 +11325,14 @@ msgstr "×××רת תק×פת ×ש×××"
#: gnucash/gtkbuilder/assistant-acct-period.glade:41
msgid ""
"\n"
-"Select an accounting period and the closing date which must not be in the future "
-"and is greater than the closing date of the previous book.\n"
+"Select an accounting period and the closing date which must not be in the "
+"future and is greater than the closing date of the previous book.\n"
"\n"
"Books will be closed at midnight on the selected date."
msgstr ""
"\n"
-"×××רת תק××¤× ×ש××× ××ת ×ת×ר×× ×¡×××¨× (×× ×××× ××××ת ×עת××), ×× ×ª×ר×× ×ס×××¨× ×××× ××××ת "
-"×××× ×ת×ר×× ×ס×××¨× ×©× ×ספר×× ××§×××××.\n"
+"×××רת תק××¤× ×ש××× ××ת ×ת×ר×× ×¡×××¨× (×× ×××× ××××ת ×עת××), ×× ×ª×ר×× ×ס×××¨× ×××× "
+"××××ת ×××× ×ת×ר×× ×ס×××¨× ×©× ×ספר×× ××§×××××.\n"
"\n"
"×ספר×× ×ס××¨× ××צ×ת ×ת×ר×× ×©× ××ר."
@@ -11154,7 +11353,7 @@ msgid "Title:"
msgstr "××תרת:"
#: gnucash/gtkbuilder/assistant-acct-period.glade:143
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:539
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:529
msgid "Notes:"
msgstr "×ער×ת:"
@@ -11186,23 +11385,24 @@ msgid ""
"This assistant will help you import Accounts from a file.\n"
"\n"
"The file must be in the same format as that exported as this is a fixed format "
-"import which can be seen by looking at a file created by using the \"Export Account "
-"Tree to CSV\" export menu option.\n"
+"import which can be seen by looking at a file created by using the \"Export "
+"Account Tree to CSV\" export menu option.\n"
"\n"
-"If the account is missing, based on the full account name, it will be added as long "
-"as the security / currency specified exists. If the account exists, then four "
-"fields will be updated. These are code, description, notes and color.\n"
+"If the account is missing, based on the full account name, it will be added as "
+"long as the security / currency specified exists. If the account exists, then "
+"four fields will be updated. These are code, description, notes and color.\n"
"\n"
"Click on \"Next\" to proceed or \"Cancel\" to Abort Import.\n"
msgstr ""
"\n"
"ס×××¢× ×× ×ס××¢ ××××× ×ש××× ×ת ××§×××¥.\n"
"\n"
-"××§×××¥ ×××× ××××ת ×ת×× ×ת ××× ××× ×©× ××צ××, ש×× ××× ×××× ×ת×× ×ת ×§×××¢× ×× × ××ª× ×צפ×ת "
-"×¢×-××× ×¢××× ××§×××¥ ×©× ×צר ×××צע×ת ××פשר×ת '×צ×× ×ª×¨×©×× ×ש××× ×ת ×- CSV' ×תפר×× ××צ××.\n"
+"××§×××¥ ×××× ××××ת ×ת×× ×ת ××× ××× ×©× ××צ××, ש×× ××× ×××× ×ת×× ×ת ×§×××¢× ×× × ××ª× "
+"×צפ×ת ×¢×-××× ×¢××× ××§×××¥ ×©× ×צר ×××צע×ת ××פשר×ת '×צ×× ×ª×¨×©×× ×ש××× ×ת ×- CSV' "
+"×תפר×× ××צ××.\n"
"\n"
-"×× ×סר ×ש×××, ××× ×ת××סף ××¤× ×©× ×ש××× ×××, ×× ×¢×× ×¢×¨× ××××× / ××××¢ שצ××× ×§×××××. ×× "
-"××ש××× ×§×××, ×ר××¢× ×©××ת ××¢×××× ×: ×§××, ת×××ר, ×ער×ת ×צ××¢.\n"
+"×× ×סר ×ש×××, ××× ×ת××סף ××¤× ×©× ×ש××× ×××, ×× ×¢×× ×¢×¨× ××××× / ××××¢ שצ××× "
+"×§×××××. ×× ××ש××× ×§×××, ×ר××¢× ×©××ת ××¢×××× ×: ×§××, ת×××ר, ×ער×ת ×צ××¢.\n"
"\n"
"××§×©× ×¢× '×××' ××× ×××ש×× ×× '×××××' ×× ××שת ×××××.\n"
"\n"
@@ -11450,26 +11650,27 @@ msgid ""
"This assistant will help you import Prices from a CSV file.\n"
"\n"
"There is a minimum number of columns that have to be present for a successful "
-"import, these are Date, Amount, From Namespace, From Symbol and Currency To. If all "
-"entries are for the same Commodity / Currency then you can select them and then the "
-"columns will be Date and Amount.\n"
+"import, these are Date, Amount, From Namespace, From Symbol and Currency To. "
+"If all entries are for the same Commodity / Currency then you can select them "
+"and then the columns will be Date and Amount.\n"
"\n"
-"Various options exist for specifying the delimiter as well as a fixed width option. "
-"With the fixed width option, double click on the table of rows displayed to set a "
-"column width, then right mouse to change if required.\n"
+"Various options exist for specifying the delimiter as well as a fixed width "
+"option. With the fixed width option, double click on the table of rows "
+"displayed to set a column width, then right mouse to change if required.\n"
"\n"
"Examples are \"FTSE\",\"RR.L\",\"21/11/2016\",5.345,\"GBP\" and CURRENCY;"
"USD;2016-11-21;1.56;GBP\n"
"\n"
"There is an option for specifying the start row, end row and an option to skip "
"alternate rows beginning from the start row which can be used if you have some "
-"header text. Also there is an option to over write existing prices for that day if "
-"required.\n"
+"header text. Also there is an option to over write existing prices for that "
+"day if required.\n"
"\n"
"Lastly, for repeated imports the preview page has buttons to Load and Save the "
-"settings. To save the settings, tweak the settings to your preferences (optionally "
-"starting from an existing preset), then (optionally change the settings name and "
-"press the Save Settings button. Note you can't save to built-in presets.\n"
+"settings. To save the settings, tweak the settings to your preferences "
+"(optionally starting from an existing preset), then (optionally change the "
+"settings name and press the Save Settings button. Note you can't save to built-"
+"in presets.\n"
"\n"
"This operation is not reversable, so make sure you have a working backup.\n"
"\n"
@@ -11477,25 +11678,25 @@ msgid ""
msgstr ""
"ס×××¢× ×× ×ס×××¢ ××××× ×××ר×× ××§×××¥ CSV.\n"
"\n"
-"××©× × ×ספר ×××¢×¨× ×©× ×¢××××ת ××ר×××ת ×פע××ת ×××× ××צ××ת ×××: ת×ר××, ס×××, ××צר × ×××××¢ "
-"×. ×× ×× ×ער××× ×× ×¢××ר ×××ª× ××צר / ××××¢, × ××ª× ××××ר ×××ª× ×××סתפק ××¢××××ת ××ר×××ת "
-"× ×ספ×ת, ' ת×ר××' × 'ס×××'.\n"
+"××©× × ×ספר ×××¢×¨× ×©× ×¢××××ת ××ר×××ת ×פע××ת ×××× ××צ××ת ×××: ת×ר××, ס×××, ××צר × "
+"×××××¢ ×. ×× ×× ×ער××× ×× ×¢××ר ×××ª× ××צר / ××××¢, × ××ª× ××××ר ×××ª× ×××סתפק "
+"××¢××××ת ××ר×××ת × ×ספ×ת, ' ת×ר××' × 'ס×××'.\n"
"\n"
-"×§××××ת ×פשר×××ת ש×× ×ת ××§××עת ×פר×× ××× ×ער×××, ×ר××ת ר××× ×§×××¢. ××××רת ר××× ×§×××¢, "
-"×ש ×××§×ש ××§×©× ×פ××× ×¢× ×××ת ×ש×ר×ת ×××צ××ת ××××רת ר××× ××¢××××, ××××ר ××× ×××צת ×¢××ר "
-"××× × ××× ××©× ×ת ××× ×©× ×רש.\n"
+"×§××××ת ×פשר×××ת ש×× ×ת ××§××עת ×פר×× ××× ×ער×××, ×ר××ת ר××× ×§×××¢. ××××רת ר××× "
+"×§×××¢, ×ש ×××§×ש ××§×©× ×פ××× ×¢× ×××ת ×ש×ר×ת ×××צ××ת ××××רת ר××× ××¢××××, ××××ר ××× "
+"×××צת ×¢××ר ××× × ××× ××©× ×ת ××× ×©× ×רש.\n"
"\n"
-"××××××ת: \"RR. L \",\" 21/11/2016 \", 5.345,\" GBP \"×-\" USD \",\" 2016-11-21 \", "
-"1.56,\" GBP \"\n"
+"××××××ת: \"RR. L \",\" 21/11/2016 \", 5.345,\" GBP \"×-\" USD \",\" 2016-11-21 "
+"\", 1.56,\" GBP \"\n"
"\n"
-"×§×××ת ×פשר×ת ××§××עת ש×רת ××ת×××, ש×רת ×ס××× ××פשר×ת ×××× ×¢× ×©×ר×ת ×××פ××ת ××× ×ש×רת "
-"××ת××× ×©×× × ××ª× ××שת×ש ×× ××××ר ××× ××תרת ×× ×©×××. ××× ×× × ××ª× ××ר×ס ×××ר×× ×§××××× "
-"××××ª× ××× ××× ×©××רש.\n"
+"×§×××ת ×פשר×ת ××§××עת ש×רת ××ת×××, ש×רת ×ס××× ××פשר×ת ×××× ×¢× ×©×ר×ת ×××פ××ת ××× "
+"×ש×רת ××ת××× ×©×× × ××ª× ××שת×ש ×× ××××ר ××× ××תרת ×× ×©×××. ××× ×× × ××ª× ××ר×ס "
+"×××ר×× ×§××××× ××××ª× ××× ××× ×©××רש.\n"
"\n"
-"×ס×××, ××××× ×××ר ×©× ××£ ×תצ××× ×××§×××× ×§××××× ×××¦× ×× ×××¢×× ×ª ××ש××רת ××××ר×ת. ××× "
-"×ש××ר ×ת ××××ר×ת, × ××ª× ×צרף ×ת ××××ר×ת ××××¢×פ×× (××××¤× ××××¤× ×××××¨× ×©×××××¨× ×ר×ש), "
-"××× ××©× ×ת (××× ×©× ×רש) ×ת ×©× ×××××¨× ×ש××רת×. ××¢×¨× ×× × ××ª× ×ש××ר ××××ר×ת ×§×××¢×ת ×ר×ש "
-"×××× ×ת.\n"
+"×ס×××, ××××× ×××ר ×©× ××£ ×תצ××× ×××§×××× ×§××××× ×××¦× ×× ×××¢×× ×ª ××ש××רת ××××ר×ת. "
+"××× ×ש××ר ×ת ××××ר×ת, × ××ª× ×צרף ×ת ××××ר×ת ××××¢×פ×× (××××¤× ××××¤× ×××××¨× "
+"ש×××××¨× ×ר×ש), ××× ××©× ×ת (××× ×©× ×רש) ×ת ×©× ×××××¨× ×ש××רת×. ××¢×¨× ×× × ××ª× ×ש××ר "
+"××××ר×ת ×§×××¢×ת ×ר×ש ×××× ×ת.\n"
"\n"
"פע××× ×× ××× × × ××ª× ×ª ××ס××, ××× ×ש ××××× ×§××× ××××× ×ª×§××.\n"
"\n"
@@ -11576,9 +11777,10 @@ msgstr "×פש×ר ×ר×סת ×××ר×× ×§×××××."
#: gnucash/gtkbuilder/assistant-csv-price-import.glade:531
msgid ""
-"Normally prices are not over written, select this to change that. This setting is "
-"not saved."
-msgstr "×××× ××××ר×× ×× × ×רס××, × × ××××ר ××פשר×ת ×× ××× ××©× ×ת ××ת. ××××¨× ×× ×× × ×©×רת."
+"Normally prices are not over written, select this to change that. This setting "
+"is not saved."
+msgstr ""
+"×××× ××××ר×× ×× × ×רס××, × × ××××ר ××פשר×ת ×× ××× ××©× ×ת ××ת. ××××¨× ×× ×× × ×©×רת."
#: gnucash/gtkbuilder/assistant-csv-price-import.glade:557
#: gnucash/gtkbuilder/assistant-csv-trans-import.glade:561
@@ -11618,21 +11820,22 @@ msgstr "×Ö¼Ö´×Ö¼×Ö¼× ×¢× ×©×ר×ת ×××פ××ת"
#: gnucash/gtkbuilder/assistant-csv-price-import.glade:763
msgid ""
-"Starting from the first line that is actually imported every second line will be "
-"skipped. This option will take the leading lines to skip into account as well.\n"
+"Starting from the first line that is actually imported every second line will "
+"be skipped. This option will take the leading lines to skip into account as "
+"well.\n"
"For example\n"
-"* if \"Leading Lines to Skip\" is set to 3, the first line to import will be line "
-"4. Lines 5, 7, 9,... will be skipped.\n"
-"* if \"Leading Lines to Skip\" is set to 4, the first line to import will be line "
-"5. Lines 6, 8, 10,... will be skipped."
+"* if \"Leading Lines to Skip\" is set to 3, the first line to import will be "
+"line 4. Lines 5, 7, 9,... will be skipped.\n"
+"* if \"Leading Lines to Skip\" is set to 4, the first line to import will be "
+"line 5. Lines 6, 8, 10,... will be skipped."
msgstr ""
-"×ת××ת ××××× ××ש××¨× ×ר×ש×× ×, ×שר ×××××ת ×פ××¢×, ×× ×©××¨× ×©× ×× ×ª××××. ×פשר×ת ×× ×ª×ר×× "
-"×× ×ר×ש×× ' ש×ר×ת ××××××ת ××××××' ××ש×××.\n"
+"×ת××ת ××××× ××ש××¨× ×ר×ש×× ×, ×שר ×××××ת ×פ××¢×, ×× ×©××¨× ×©× ×× ×ª××××. ×פשר×ת ×× "
+"ת×ר×× ×× ×ר×ש×× ' ש×ר×ת ××××××ת ××××××' ××ש×××.\n"
"××××××:\n"
-"* ×× ' ש×ר×ת ××××××ת ××××××' ××××ר 3, ×ש××¨× ×ר×ש×× × ×©×ª×××× ×ª××× ×©××¨× 4. ש×ר×ת 5, 7, "
-"9,... ×××××.\n"
-"* ×× ' ש×ר×ת ××××××ת ××××××' ××××ר 4, ×ש××¨× ×ר×ש×× × ×©×ª×××× ×ª××× ×©××¨× 5. ש×ר×ת 6, 8, "
-"10,... ×××××."
+"* ×× ' ש×ר×ת ××××××ת ××××××' ××××ר 3, ×ש××¨× ×ר×ש×× × ×©×ª×××× ×ª××× ×©××¨× 4. ש×ר×ת "
+"5, 7, 9,... ×××××.\n"
+"* ×× ' ש×ר×ת ××××××ת ××××××' ××××ר 4, ×ש××¨× ×ר×ש×× × ×©×ª×××× ×ª××× ×©××¨× 5. ש×ר×ת "
+"6, 8, 10,... ×××××."
#: gnucash/gtkbuilder/assistant-csv-price-import.glade:786
#: gnucash/gtkbuilder/assistant-csv-trans-import.glade:789
@@ -11681,32 +11884,34 @@ msgstr "CSV ×××× ×ª× ××¢×ת"
#: gnucash/gtkbuilder/assistant-csv-trans-import.glade:45
msgid ""
"This assistant will help you import a delimited file containing a list of "
-"transactions. It supports both token separated files (such as comma separated or "
-"semi-colon separated) and fixed width data.\n"
+"transactions. It supports both token separated files (such as comma separated "
+"or semi-colon separated) and fixed width data.\n"
"\n"
-"For a successful import three columns have to be available in the import data:\n"
+"For a successful import three columns have to be available in the import "
+"data:\n"
"⢠a Date column\n"
"⢠a Description column\n"
"⢠a Deposit or Withdrawal column\n"
"\n"
-"If there is no Account data available, a base account can be selected to which all "
-"data will be imported.\n"
+"If there is no Account data available, a base account can be selected to which "
+"all data will be imported.\n"
"\n"
-"Apart from a choice of delimiter, there are several options to tweak the importer. "
-"For example a number of lines can be skipped at the start or the end of the data, "
-"as well as odd rows. Several date and number formats are supported. The file "
-"encoding can be defined.\n"
+"Apart from a choice of delimiter, there are several options to tweak the "
+"importer. For example a number of lines can be skipped at the start or the end "
+"of the data, as well as odd rows. Several date and number formats are "
+"supported. The file encoding can be defined.\n"
"\n"
-"The importer can handle files where transactions are split over multiple lines, "
-"with each line representing one split.\n"
+"The importer can handle files where transactions are split over multiple "
+"lines, with each line representing one split.\n"
"\n"
"Lastly, for repeated imports the preview page has buttons to Load and Save the "
-"settings. To save the settings, tweak the settings to your preferences (optionally "
-"starting from an existing preset), then (optionally change the settings name and "
-"press the Save Settings button. Note you can't save to built-in presets."
+"settings. To save the settings, tweak the settings to your preferences "
+"(optionally starting from an existing preset), then (optionally change the "
+"settings name and press the Save Settings button. Note you can't save to built-"
+"in presets."
msgstr ""
-"ס×××¢× ×× ××¢××ר ××××× ×§×××¥ ×××¤×¨× ××××× ×¨×©××ת ×ª× ××¢×ת. ××× ×ª××× ×× ××§×צ×× ×××פר××× ××ª× "
-"(×××× ×¤×¡××§ ×× × ×§××ת×××) ××× ××פר×× ×ר××× ×§×××¢.\n"
+"ס×××¢× ×× ××¢××ר ××××× ×§×××¥ ×××¤×¨× ××××× ×¨×©××ת ×ª× ××¢×ת. ××× ×ª××× ×× ××§×צ×× "
+"×××פר××× ××ª× (×××× ×¤×¡××§ ×× × ×§××ת×××) ××× ××פר×× ×ר××× ×§×××¢.\n"
"\n"
"××××× ââ××צ××, ×¢× ×©××ש ×¢××××ת ××××ת ×××× ×ת ×× ×ª×× × ×××××:\n"
"⢠ע×××ת ת×ר××\n"
@@ -11715,17 +11920,17 @@ msgstr ""
"\n"
"××××× ×××× × ×ª×× × ×ש××× ×××× ××, × ××ª× ××××ר ×ש××× ×ס×ס ×××× ×××××× ×× ×× ×ª×× ××.\n"
"\n"
-"×××× ×××××¨× ××פר××, ××©× × ×ספר ×פשר×××ת ×××××ר ×ת ×× ×× ×× ×××××. ××××××, × ××ª× ×××× ×¢× "
-"×ספר ש×ר×ת ×ת×××ת ×× ×ª×× ×× ×× ×ס×פ×, ××× ×× ×©×ר×ת ×× ×××××ת. × ×ª×××ת ×ספר ת×× ××ת ×©× "
-"ת×ר×× ××ספר. × ××ª× ×× ×××××ר ×ת ×§×××× ××§×××¥.\n"
+"×××× ×××××¨× ××פר××, ××©× × ×ספר ×פשר×××ת ×××××ר ×ת ×× ×× ×× ×××××. ××××××, × ××ª× "
+"×××× ×¢× ×ספר ש×ר×ת ×ת×××ת ×× ×ª×× ×× ×× ×ס×פ×, ××× ×× ×©×ר×ת ×× ×××××ת. × ×ª×××ת "
+"×ספר ת×× ××ת ×©× ×ª×ר×× ××ספר. × ××ª× ×× ×××××ר ×ת ×§×××× ××§×××¥.\n"
"\n"
"×× ×× ×× ××××× ×××× ×××¤× ××§×צ×× ×©××× ××ª× ××¢×ת ×פ×צ××ת ×¢× ×ספר ש×ר×ת, ××שר ×× ×©××¨× "
"×××צ×ת פ×צ×× ×××.\n"
"\n"
-"××ס××£, ×××××× ââ×××ר ×ש ××¢××× ×תצ××× ×××§×××× ×××¦× ×× ×××¢×× ×ª ×ש××רת ××××ר×ת. ××× ×ש××ר "
-"×ת ××××ר×ת, ×ש ××©× ×ת ×ת ××××ר×ת ××¤× ×צר××× (××××פ××, ××ת××× ××××ר×ת ×§××××ת ×©× ×§××¢× "
-"×ר×ש), ××× (××××פ××, ××©× ×ת ×ת ×©× ×××××¨× ××××§×ש ×¢× ×××¦× ×©××רת ×××ר×ת. ×תש××ת ××, ×× "
-"× ××ª× ××ר×ש ×ש×××¨× ×××ר×ת ×§×××¢×ת ×ר×ש ×××× ×ת."
+"××ס××£, ×××××× ââ×××ר ×ש ××¢××× ×תצ××× ×××§×××× ×××¦× ×× ×××¢×× ×ª ×ש××רת ××××ר×ת. ××× "
+"×ש××ר ×ת ××××ר×ת, ×ש ××©× ×ת ×ת ××××ר×ת ××¤× ×צר××× (××××פ××, ××ת××× ××××ר×ת "
+"×§××××ת ×©× ×§××¢× ×ר×ש), ××× (××××פ××, ××©× ×ת ×ת ×©× ×××××¨× ××××§×ש ×¢× ×××¦× ×©××רת "
+"×××ר×ת. ×תש××ת ××, ×× × ××ª× ××ר×ש ×ש×××¨× ×××ר×ת ×§×××¢×ת ×ר×ש ×××× ×ת."
#: gnucash/gtkbuilder/assistant-csv-trans-import.glade:63
msgid "Transaction Import Assistant"
@@ -11737,7 +11942,7 @@ msgid ""
"Select location and file name for the Import, then click 'OK'...\n"
msgstr ""
"\n"
-"×××רת ×××§×× ××©× ×§×××¥ ×××××, ×××ר ××× ××§×©× ×¢× '×ס×ר' ...\n"
+"×××רת ×××§×× ××©× ×§×××¥ ×××××, ×××ר ××× ××§×©× ×¢× '×ס×ר'...\n"
#: gnucash/gtkbuilder/assistant-csv-trans-import.glade:525
msgid "Multi-split"
@@ -11745,46 +11950,47 @@ msgstr "ר××××-פ×צ××××"
#: gnucash/gtkbuilder/assistant-csv-trans-import.glade:529
msgid ""
-"Normally the importer will assume each line in the input file will correspond to "
-"one transaction. Each line can have information for one transaction and one or two "
-"splits.\n"
-"\n"
-"When Multi-split is enabled the importer will assume multiple consecutive lines "
-"together hold the information for one transaction. Each line provides information "
-"for exactly one split. The first line should also provide the information for the "
-"transaction.\n"
-"To know which lines belong to the same transaction, the importer will compare the "
-"provided transaction information in each line. If that information is empty or the "
-"same as the first transaction line the importer will consider this line part of the "
-"same transaction."
-msgstr ""
-"××××, ×× ×× ×× ××××× ×× ×× ×©×× ×©××¨× ××§×××¥ ××§×× ×ת×××סת ××ª× ××¢× ××ת. ×× ×©××¨× ×¢×©××× ××××× "
-"××××¢ ×¢× ×ª× ××¢× ××ת ×פ×צ×× ××× ×× ×©× ×××.\n"
-"\n"
-"××שר ××פשר×ת ר×××× ×¤×צ×××× ××פע×ת, ×× ×× ×× ××××× ×× ×× ×©×ספר ש×ר×ת רצ×פ×ת, ×××××ת "
-"××××¢ ×©× ×ª× ××¢× ××ת. ×× ×©××¨× ×ספקת ××××¢ ×פ×צ×× ××× ×××××§. ×ש××¨× ×ר×ש×× × ××××¨× ×× ×ספק "
-"×ת ×××××¢ ××ª× ××¢×.\n"
-"××× ××עת ×××× ×©×ר×ת ש××××ת ××××ª× ×ª× ××¢× ×× ×× ×× ××××× ×ש××× ×ת פר×× ××ª× ××¢× ×©×¡××¤×§× ××× "
-"ש×ר×. ××××× ××××××¢ ×סר ×× ××× ××× ×©×ש×רת ××ª× ××¢× ×ר×ש×× × ×× ×× ×× ××××× ×××ס ×××ª× ××××§ "
-"××××ª× ×ª× ××¢×."
+"Normally the importer will assume each line in the input file will correspond "
+"to one transaction. Each line can have information for one transaction and one "
+"or two splits.\n"
+"\n"
+"When Multi-split is enabled the importer will assume multiple consecutive "
+"lines together hold the information for one transaction. Each line provides "
+"information for exactly one split. The first line should also provide the "
+"information for the transaction.\n"
+"To know which lines belong to the same transaction, the importer will compare "
+"the provided transaction information in each line. If that information is "
+"empty or the same as the first transaction line the importer will consider "
+"this line part of the same transaction."
+msgstr ""
+"××××, ×× ×× ×× ××××× ×× ×× ×©×× ×©××¨× ××§×××¥ ××§×× ×ת×××סת ××ª× ××¢× ××ת. ×× ×©××¨× ×¢×©××× "
+"××××× ××××¢ ×¢× ×ª× ××¢× ××ת ×פ×צ×× ××× ×× ×©× ×××.\n"
+"\n"
+"××שר ××פשר×ת ר×××× ×¤×צ×××× ××פע×ת, ×× ×× ×× ××××× ×× ×× ×©×ספר ש×ר×ת רצ×פ×ת, "
+"×××××ת ××××¢ ×©× ×ª× ××¢× ××ת. ×× ×©××¨× ×ספקת ××××¢ ×פ×צ×× ××× ×××××§. ×ש××¨× ×ר×ש×× × "
+"××××¨× ×× ×ספק ×ת ×××××¢ ××ª× ××¢×.\n"
+"××× ××עת ×××× ×©×ר×ת ש××××ת ××××ª× ×ª× ××¢× ×× ×× ×× ××××× ×ש××× ×ת פר×× ××ª× ××¢× "
+"שס××¤×§× ××× ×©×ר×. ××××× ××××××¢ ×סר ×× ××× ××× ×©×ש×רת ××ª× ××¢× ×ר×ש×× × ×× ×× ×× "
+"××××× ×××ס ×××ª× ××××§ ××××ª× ×ª× ××¢×."
#: gnucash/gtkbuilder/assistant-csv-trans-import.glade:767
msgid ""
-"Starting from the first line that is actually imported every second line will be "
-"skipped. This option will take the leading lines to skip into account as well.\n"
+"Starting from the first line that is actually imported every second line will "
+"be skipped. This option will take the leading lines to skip into account as "
+"well.\n"
"For example\n"
-"* if 'Leading Lines to Skip' is set to 3, the first line to import will be line 4. "
-"Lines 5, 7, 9,... will be skipped.\n"
-"* if 'Leading Lines to Skip' is set to 4, the first line to import will be line 5. "
-"Lines 6, 8, 10,... will be skipped."
+"* if 'Leading Lines to Skip' is set to 3, the first line to import will be "
+"line 4. Lines 5, 7, 9,... will be skipped.\n"
+"* if 'Leading Lines to Skip' is set to 4, the first line to import will be "
+"line 5. Lines 6, 8, 10,... will be skipped."
msgstr ""
-"×ת××ת ××××× ××ש××¨× ×ר×ש×× ×, ×שר ×××××ת ×פ××¢×, ×× ×©××¨× ×©× ×× ×ª××××. ×פשר×ת ×× ×ª×ר×× "
-"×× ×ר×ש×× ' ש×ר×ת ××××××ת ××××××' ××ש×××.\n"
+"×ת××ת ××××× ××ש××¨× ×ר×ש×× ×, ×שר ×××××ת ×פ××¢×, ×× ×©××¨× ×©× ×× ×ª××××. ×פשר×ת ×× "
+"ת×ר×× ×× ×ר×ש×× ' ש×ר×ת ××××××ת ××××××' ××ש×××.\n"
"××××××:\n"
-"* ×× ' ש×ר×ת ××××××ת ××××××' ××××ר 3, ×ש××¨× ×ר×ש×× × ×©×ª×××× ×ª××× ×©××¨× 4. ש×ר×ת 5, 7, "
-"9,... ×××××.\n"
-"* ×× ' ש×ר×ת ××××××ת ××××××' ××××ר 4, ×ש××¨× ×ר×ש×× × ×©×ª×××× ×ª××× ×©××¨× 5. ש×ר×ת 6, 8, "
-"10,... ×××××."
+"* ×× ' ש×ר×ת ××××××ת ××××××' ××××ר 3, ×ש××¨× ×ר×ש×× × ×©×ª×××× ×ª××× ×©××¨× 4. ש×ר×ת "
+"5, 7, 9,... ×××××.\n"
+"* ×× ' ש×ר×ת ××××××ת ××××××' ××××ר 4, ×ש××¨× ×ר×ש×× × ×©×ª×××× ×ª××× ×©××¨× 5. ש×ר×ת "
+"6, 8, 10,... ×××××."
#: gnucash/gtkbuilder/assistant-csv-trans-import.glade:824
msgid "<b>Account</b>"
@@ -11824,13 +12030,14 @@ msgid ""
"On the following page you will be able to associate each transaction to a "
"category.\n"
"\n"
-"If this is your <i>initial import into a new file</i>, you will first see a dialog "
-"for setting book options, since these can affect how imported data are converted to "
-"GnuCash transactions. If this is an existing file, the dialog will not be shown.\n"
+"If this is your <i>initial import into a new file</i>, you will first see a "
+"dialog for setting book options, since these can affect how imported data are "
+"converted to GnuCash transactions. If this is an existing file, the dialog "
+"will not be shown.\n"
"\n"
-"If this is the <i>first time importing</i>, you will find that all lines may need "
-"to be associated. On subsequent imports, the importer will try to associate the "
-"transactions based on previous imports.\n"
+"If this is the <i>first time importing</i>, you will find that all lines may "
+"need to be associated. On subsequent imports, the importer will try to "
+"associate the transactions based on previous imports.\n"
"\n"
"The confidence of a correct association is displayed as a colored bar.\n"
"\n"
@@ -11838,8 +12045,8 @@ msgid ""
msgstr ""
"×××§×©× ×¢× '×××' ×× ××§×ש ××צע ×ספר ××××§×ת.\n"
"\n"
-"××××× ×××ת ××<i>××××§×ת ×ש××</i> ×¢××× ×תצ××× ×××§×××× ×××¦× ××× ××פשר ×× ×¡×ת ×××ª×§× ×ת "
-"×××¢××.\n"
+"××××× ×××ת ××<i>××××§×ת ×ש××</i> ×¢××× ×תצ××× ×××§×××× ×××¦× ××× ××פשר ×× ×¡×ת ×××ª×§× "
+"×ת ×××¢××.\n"
"\n"
"××¢××× ××× × ××ª× ×××× ×ש××× ×× ×ª× ××¢× ××§×××ר××.\n"
"\n"
@@ -11847,8 +12054,8 @@ msgstr ""
"ספר××, ×××××× ×©××× ×¢×©×××× ××שפ××¢ ×¢× ×××¤× ××רת ×× ×ª×× ×× ×××××××× ××ª× ××¢×ת ×× ××§×ש. "
"××××× ×××× ×§×××¥ ×§×××, ××-×ש×× ×× ××צ×.\n"
"\n"
-"××××× ××× <i>××××× ×¨×ש××</i> ××ת×× ××××× ×¦××¨× ×ש××× ×ת ×× ×ש×ר×ת. ××××× ××× ×× ×× ×× "
-"××××× ×××¢ ×ש××× ×ת ××ª× ××¢×ת ×¢× ×ס×ס ××××× ××§×××.\n"
+"××××× ××× <i>××××× ×¨×ש××</i> ××ת×× ××××× ×¦××¨× ×ש××× ×ת ×× ×ש×ר×ת. ××××× ××× "
+"×× ×× ×× ××××× ×××¢ ×ש××× ×ת ××ª× ××¢×ת ×¢× ×ס×ס ××××× ××§×××.\n"
"\n"
"ר×ת ××××××× ×©× × ××× ×ת ×ש××× ×××¦× ×סר×× ×¦××¢××.\n"
"\n"
@@ -11864,24 +12071,26 @@ msgstr "×ת××ת ×ª× ××¢×ת"
#: gnucash/gtkbuilder/assistant-hierarchy.glade:23
msgid ""
-"This assistant will help you create a set of GnuCash accounts for your assets (such "
-"as investments, checking or savings accounts), liabilities (such as loans) and "
-"different kinds of income and expenses you might have.\n"
+"This assistant will help you create a set of GnuCash accounts for your assets "
+"(such as investments, checking or savings accounts), liabilities (such as "
+"loans) and different kinds of income and expenses you might have.\n"
"\n"
"You can pick a set of accounts here that seem close to your needs. After the "
-"assistant completes you will be able to add, rename, modify, and remove accounts, "
-"at any time later on. You will also be able to add sub-accounts, as well as move "
-"accounts (along with their sub-accounts) from one parent to another.\n"
+"assistant completes you will be able to add, rename, modify, and remove "
+"accounts, at any time later on. You will also be able to add sub-accounts, as "
+"well as move accounts (along with their sub-accounts) from one parent to "
+"another.\n"
"\n"
"Click 'Cancel' if you do not wish to create any new accounts now."
msgstr ""
"×ס×××¢× ×ס×××¢ ××צ×ר תרש×× ×ש××× ×ת ×× ××§×ש ×¢××ר × ×ס×× (×××× ×שקע×ת, ×¢××ר ××©× ×× "
-"פ××§××× ×ת), ×ת×××××××ת (×××× ××××××ת) ×ס×××× ×©×× ×× ×©× ××× ×¡×ת ×××צ××ת ×¢× ×¤× ×צ×ר×.\n"
+"פ××§××× ×ת), ×ת×××××××ת (×××× ××××××ת) ×ס×××× ×©×× ×× ×©× ××× ×¡×ת ×××צ××ת ×¢× ×¤× "
+"×צ×ר×.\n"
"\n"
-"× ××ª× ××××ר ××× ×ª×¨×©×× ×ש××× ×ת ×קר×× ×××תר ×צר××× ××××××××× ×©× ×פע×××ת. ×××ר ×ש××ת "
-"פע××ת ×ס×××¢×, × ××ª× ×××× ×××ס××£, ××©× ×ת ש×, ××ס××× ×××ס×ר ×ש××× ×ת, ××× ×¢×ª ××××ר ××תר. "
-"× ××ª× ×× ×××ס××£ ×ש××× ×ת ××©× ×, ××× ×××¢××ר ×ש××× ×ת (××× ×¢× ×ש××× ×ת ×××©× × ×©×××) ×××× "
-"×××ר×× ×××©× ××.\n"
+"× ××ª× ××××ר ××× ×ª×¨×©×× ×ש××× ×ת ×קר×× ×××תר ×צר××× ××××××××× ×©× ×פע×××ת. ×××ר "
+"×ש××ת פע××ת ×ס×××¢×, × ××ª× ×××× ×××ס××£, ××©× ×ת ש×, ××ס××× ×××ס×ר ×ש××× ×ת, ××× ×¢×ª "
+"××××ר ××תר. × ××ª× ×× ×××ס××£ ×ש××× ×ת ××©× ×, ××× ×××¢××ר ×ש××× ×ת (××× ×¢× ×ש××× ×ת "
+"×××©× × ×©×××) ×××× ×××ר×× ×××©× ××.\n"
"\n"
"× × ×××§×ש ×¢× '×××××' ×× ××× ×××× × ××צ×ר ×ש××× ×ת ××ש×× ××¢×."
@@ -11908,12 +12117,12 @@ msgid ""
"GnuCash. Each category you select will cause several accounts to be created.\n"
"\n"
"<b>Note:</b> the selection you make here is only the starting point for your "
-"personalized account hierarchy. Accounts can be added, renamed, moved, or deleted "
-"by hand later at any time."
+"personalized account hierarchy. Accounts can be added, renamed, moved, or "
+"deleted by hand later at any time."
msgstr ""
"\n"
-"×××רת ×§×××ר××ת ר×××× ×××ת ×××¨× ×× ××ª× ×¦×פ×× ×©×ª×©×ª××©× × ×× ××§×ש. ×× ×§×××ר×× ×©×ª××ר ת×צר "
-"×ספר ×ש××× ×ת.\n"
+"×××רת ×§×××ר××ת ר×××× ×××ת ×××¨× ×× ××ª× ×¦×פ×× ×©×ª×©×ª××©× × ×× ××§×ש. ×× ×§×××ר×× ×©×ª××ר "
+"ת×צר ×ספר ×ש××× ×ת.\n"
"\n"
"<b>×ער×:</b>×××××¨× ×©×ª×¢×©× ××× ××××× ×× × ×§××ת ×ת××× ××ת××ת תרש×× ××ש××× ×ת. × ××ª× "
"×××ס××£, ×××××§, ××©× ×ת ×©× ×× ×××¢××ר ×ש××× ×ת ××××¤× ××× × ××× ×¢×ª."
@@ -11948,9 +12157,9 @@ msgid ""
"account, then click on the account name and change it.\n"
"\n"
"Some accounts are marked as \"Placeholder\". Placeholder accounts are used to "
-"create a hierarchy of accounts and normally do not have transactions or opening "
-"balances. If you would like an account to be a placeholder account, click the "
-"checkbox for that account.\n"
+"create a hierarchy of accounts and normally do not have transactions or "
+"opening balances. If you would like an account to be a placeholder account, "
+"click the checkbox for that account.\n"
"\n"
"If you would like an account to have an opening balance, click on the row "
"containing the account, then click on the opening balance field and enter the "
@@ -11960,15 +12169,15 @@ msgid ""
"opening balance.\n"
msgstr ""
"\n"
-"×ש×× ×× ×©× ×ש×××, × × ×××§×ש ×¢× ×ש××¨× ×××××× ×ת ××ש×××, ××××ר ××× ×××§×ש ×¢× ×©× ××ש××× "
-"×ש×× ×××.\n"
+"×ש×× ×× ×©× ×ש×××, × × ×××§×ש ×¢× ×ש××¨× ×××××× ×ת ××ש×××, ××××ר ××× ×××§×ש ×¢× ×©× "
+"××ש××× ×ש×× ×××.\n"
"\n"
-"×ש××× ×ת ×ס××××× ×ס××× ×× ×- \"ש××ר ××§××\". ×ש××× ×ת ××× ×ש×ש×× ××צ×רת ××רר××ת ×ש××× ×ת "
-"××××¨× ××× ×× ×××× ××× ×ª× ××¢×ת ×× ×תר×ת פת×××. ×¢× ×× ×ª ש×ש××× ×ש×ש ×ש××ר ××§××, × × "
-"×××§×ש ×¢× ×ª××ת ×ס×××× ×©× ×××ª× ×ש×××.\n"
+"×ש××× ×ת ×ס××××× ×ס××× ×× ×- \"ש××ר ××§××\". ×ש××× ×ת ××× ×ש×ש×× ××צ×רת ××רר××ת "
+"×ש××× ×ת ××××¨× ××× ×× ×××× ××× ×ª× ××¢×ת ×× ×תר×ת פת×××. ×¢× ×× ×ª ש×ש××× ×ש×ש ×ש××ר "
+"××§××, × × ×××§×ש ×¢× ×ª××ת ×ס×××× ×©× ×××ª× ×ש×××.\n"
"\n"
-"××× ××××× ×תרת פת××× ××ש×××, × × ×××§×ש ×¢× ×ש××¨× ×××××× ×ת ××ש×××, ××××ר ××× ×××§×ש ×¢× "
-"ש×× ×תרת ×פת××× ×××××× ×ת ×××ª×¨× ××ת××ת×ת.\n"
+"××× ××××× ×תרת פת××× ××ש×××, × × ×××§×ש ×¢× ×ש××¨× ×××××× ×ת ××ש×××, ××××ר ××× "
+"×××§×ש ×¢× ×©×× ×תרת ×פת××× ×××××× ×ת ×××ª×¨× ××ת××ת×ת.\n"
"\n"
"â<b>×ער×:</b> ××× ××ש××× ×ת, ×××¢× ×ש××× ×ת ××צ××ת ×ש×××¨× ××§××, עש××× ××××ת ×תרת "
"פת×××.\n"
@@ -11980,8 +12189,8 @@ msgstr "×××רת ××ש××× ×©× ××ר"
#: gnucash/gtkbuilder/assistant-hierarchy.glade:423
msgid ""
-"Press `Apply' to create your new accounts. You will then be able to save them to a "
-"file or database.\n"
+"Press `Apply' to create your new accounts. You will then be able to save them "
+"to a file or database.\n"
"\n"
"Press `Back' to review your selections.\n"
"\n"
@@ -12055,16 +12264,16 @@ msgstr "×ש×× ×ª× ×ר×××ת ××©×ª× × 10/1 ×©× ××"
#: gnucash/gtkbuilder/assistant-loan.glade:104
msgid ""
-"This is a step-by-step method for creating a loan repayment within GnuCash. In this "
-"assistant, you can input the details of your loan and its repayment along with the "
-"details of its payback. Using that information, the appropriate Scheduled "
-"Transactions will be created.\n"
+"This is a step-by-step method for creating a loan repayment within GnuCash. In "
+"this assistant, you can input the details of your loan and its repayment along "
+"with the details of its payback. Using that information, the appropriate "
+"Scheduled Transactions will be created.\n"
"\n"
"If you make a mistake or want to make changes later, you can edit the created "
"Scheduled Transactions directly."
msgstr ""
-"×××× ×©××× ××צ×רת ×××ר ×××××× ××××§×ש ש×× ××ר ש××. ×××צע×ת ×ס×××¢× × ××ª× ××××× ×ת פר×× "
-"××××××× ×פ×רע×× × ××× ×¢× ×¤×¨×× ××××ר. ××××¢ ×× ×צ×ר ×ª× ××¢×ת ××××ר××ת ××ת××.\n"
+"×××× ×©××× ××צ×רת ×××ר ×××××× ××××§×ש ש×× ××ר ש××. ×××צע×ת ×ס×××¢× × ××ª× ××××× ×ת "
+"פר×× ××××××× ×פ×רע×× × ××× ×¢× ×¤×¨×× ××××ר. ××××¢ ×× ×צ×ר ×ª× ××¢×ת ××××ר××ת ××ת××.\n"
"\n"
"××××× ×× ×¢×©×ª× ××¢×ת ×××× × ×× ×©× ×רש ××צע ש×× ×××× ××××ר ××תר, × ××ª× ×ער×× ×ש×ר×ת ×ת "
"××ª× ××¢×ת ×××××ר××ת ×©× ×צר×."
@@ -12074,7 +12283,8 @@ msgid "Loan / Mortgage Repayment Setup"
msgstr "×××רת פרע×× ×××××× / ×ש×× ×ª×"
#: gnucash/gtkbuilder/assistant-loan.glade:128
-msgid "Enter the Loan Details, as a minimum enter a valid Loan Account and Amount.\n"
+msgid ""
+"Enter the Loan Details, as a minimum enter a valid Loan Account and Amount.\n"
msgstr "××× ×ª פר×× ×××××××, ××× × ××ער×ת × ×רשת, ×ש××× ×××××× ×ª×§×× ×ס×××.\n"
#: gnucash/gtkbuilder/assistant-loan.glade:151
@@ -12098,19 +12308,19 @@ msgstr "×ש××× ××××××:"
#: gnucash/gtkbuilder/assistant-loan.glade:218
msgid ""
-"Enter the number of months still to be paid off. This determines both the remaining "
-"principle and the duration of the scheduled transaction."
+"Enter the number of months still to be paid off. This determines both the "
+"remaining principle and the duration of the scheduled transaction."
msgstr ""
-"××× ×ª ×ספר ××××ש×× ×©× ××ª×¨× ×תש×××. פע××× ×× ×§××עת ×× ×ת ×תרת ××§×¨× ××× ×ת ××©× ××ª× ××¢× "
-"×××××ר×ת."
+"××× ×ª ×ספר ××××ש×× ×©× ××ª×¨× ×תש×××. פע××× ×× ×§××עת ×× ×ת ×תרת ××§×¨× ××× ×ת ××©× "
+"××ª× ××¢× ×××××ר×ת."
#: gnucash/gtkbuilder/assistant-loan.glade:313
msgid ""
-"Enter the annual interest rate in percent. Accepts values from 0.001 - 100. The "
-"Mortgage Assistant does not support zero-interest loans."
+"Enter the annual interest rate in percent. Accepts values from 0.001 - 100. "
+"The Mortgage Assistant does not support zero-interest loans."
msgstr ""
-"××× ×ª ש××¢×ר ×ר×××ת ××©× ×ª×ת ×××××××. ער××× ×פשר××× ×× ××× 0.001-100. ס×××¢× ××ש×× ×ª××ת "
-"××× × ×ª××× ×××××××ת ××¢×× ×¨×××ת ×ש××¢×ר ×פס."
+"××× ×ª ש××¢×ר ×ר×××ת ××©× ×ª×ת ×××××××. ער××× ×פשר××× ×× ××× 0.001-100. ס×××¢× "
+"××ש×× ×ª××ת ××× × ×ª××× ×××××××ת ××¢×× ×¨×××ת ×ש××¢×ר ×פס."
#: gnucash/gtkbuilder/assistant-loan.glade:332
#: gnucash/register/ledger-core/gncEntryLedgerLoad.c:55
@@ -12174,7 +12384,8 @@ msgid "Principal To:"
msgstr "×§×¨× ×:"
#: gnucash/gtkbuilder/assistant-loan.glade:623
-#: gnucash/gtkbuilder/assistant-loan.glade:830 gnucash/gtkbuilder/dialog-sx.glade:237
+#: gnucash/gtkbuilder/assistant-loan.glade:830
+#: gnucash/gtkbuilder/dialog-sx.glade:237
#: gnucash/gtkbuilder/dialog-tax-info.glade:119
msgid "Name:"
msgstr "ש×:"
@@ -12283,20 +12494,24 @@ msgstr "ס×××¢× ×××× QIF"
#: gnucash/gtkbuilder/assistant-qif-import.glade:42
msgid ""
"GnuCash can import financial data from QIF (Quicken Interchange Format) files "
-"written by Quicken/QuickBooks, MS Money, Moneydance, and many other programs. \n"
+"written by Quicken/QuickBooks, MS Money, Moneydance, and many other "
+"programs. \n"
"\n"
-"The import process has several steps. Your GnuCash accounts will not be changed "
-"until you click \"Apply\" at the end of the process. \n"
+"The import process has several steps. Your GnuCash accounts will not be "
+"changed until you click \"Apply\" at the end of the process. \n"
"\n"
-"Click \"Next\" to start loading your QIF data, or \"Cancel\" to abort the process. "
+"Click \"Next\" to start loading your QIF data, or \"Cancel\" to abort the "
+"process. "
msgstr ""
-"×× ××§×ש ×××× ××××× × ×ª×× ×× ×¤×× × ×¡××× ××§×××¥ QIF (ת×× ×ת תע××רת ×§××××§×) ×§×צ×× ×©× ×ת××× ×¢× "
-"××× ×ת×× ×ת ××× ××.×ס ××× × ,×§××××§×/ ×§××××§××קס, ××× ××× ×¡, ×ת××× ××ת ר××ת ××ר×ת. \n"
+"×× ××§×ש ×××× ××××× × ×ª×× ×× ×¤×× × ×¡××× ××§×××¥ QIF (ת×× ×ת תע××רת ×§××××§×) ×§×צ×× "
+"×©× ×ת××× ×¢× ××× ×ת×× ×ת ××× ××.×ס ××× ×, ×§××××§×/ ×§××××§××קס, ××× ××× ×¡, ×ת××× ××ת "
+"ר××ת ××ר×ת. \n"
"\n"
"ת×××× ×××××× ×××× ×ספר ש××××. ×ש××× ×ת ×× ××§×ש ×× ××©×ª× × ×¢× ××§×©× ×¢× '××××' ×ס××£ "
"×ת××××. \n"
"\n"
-"××§×©× ×¢× '×××' ××× ××ת××× ×××¢×× ×ת × ×ª×× × ×§×××¥ ×-QIF , ×× ×¢× '×××××' ×× ××שת ×××××. "
+"××§×©× ×¢× '×××' ××× ××ת××× ×××¢×× ×ת × ×ª×× × ×§×××¥ ×-QIF, ×× ×¢× '×××××' ×× ××שת "
+"×××××. "
#: gnucash/gtkbuilder/assistant-qif-import.glade:51
msgid "Import QIF files"
@@ -12305,14 +12520,15 @@ msgstr "×××× ×§×××¦× QIF"
#. Run the assistent in your language to see GTK's translation of the button labels.
#: gnucash/gtkbuilder/assistant-qif-import.glade:66
msgid ""
-"Please select a file to load. When you click \"Next\", the file will be loaded and "
-"analyzed. You may need to answer some questions about the account(s) in the file.\n"
+"Please select a file to load. When you click \"Next\", the file will be loaded "
+"and analyzed. You may need to answer some questions about the account(s) in "
+"the file.\n"
"\n"
-"You will have the opportunity to load as many files as you wish, so don't worry if "
-"your data is in multiple files. \n"
+"You will have the opportunity to load as many files as you wish, so don't "
+"worry if your data is in multiple files. \n"
msgstr ""
-"× × ××××ר ×§×××¥ ×××¢×× ×. ×××§×©× ×¢× '×××', ××§×××¥ ××××¢× ××× ×ת×. ×ת×× ×××רש ××ש×× ×××× "
-"ש×××ת ××××ת ××ש××× ×ת ש××§×××¥.\n"
+"× × ××××ר ×§×××¥ ×××¢×× ×. ×××§×©× ×¢× '×××', ××§×××¥ ××××¢× ××× ×ת×. ×ת×× ×××רש ××ש×× "
+"×××× ×©×××ת ××××ת ××ש××× ×ת ש××§×××¥.\n"
"\n"
"× ××ª× ×××¢×× ×ספר ×§×צ×× ××× ×©××רש, ×× ×× ××××× ×× ×× ×ª×× ×× × ×צ××× ××ספר ×§×צ××.\n"
@@ -12335,21 +12551,22 @@ msgstr "××¢×× ×ª ×§×××¦× QIF"
#: gnucash/gtkbuilder/assistant-qif-import.glade:283
msgid ""
"The QIF file format does not specify which order the day, month, and year "
-"components of a date are printed. In most cases, it is possible to automatically "
-"determine which format is in use in a particular file. However, in the file you "
-"have just imported there exist more than one possible format that fits the data. \n"
+"components of a date are printed. In most cases, it is possible to "
+"automatically determine which format is in use in a particular file. However, "
+"in the file you have just imported there exist more than one possible format "
+"that fits the data. \n"
"\n"
-"Please select a date format for the file. QIF files created by European software "
-"are likely to be in \"d-m-y\" or day-month-year format, where US QIF files are "
-"likely to be \"m-d-y\" or month-day-year. \n"
+"Please select a date format for the file. QIF files created by European "
+"software are likely to be in \"d-m-y\" or day-month-year format, where US QIF "
+"files are likely to be \"m-d-y\" or month-day-year. \n"
msgstr ""
-"ת×× ×ת ××§×××¥ QIF ×× ×××××¨× ××××× ×¡×ר ×××פס×× ×¨×××× ×: ×××, ×××ש ××©× × ×©× ×ª×ר××. ×ר××, "
-"× ××ª× ××§×××¢ ×××××××ת ×××× ×ª×× ×ת × ×צ×ת ×ש×××ש ××§×××¥ ×ס×××. ××× ×¢× ××ת, ××§×××¥ ש×××× ×× "
-"×¢×ª× ×§××××ת ××תר ×ת×× ×ת ×פשר×ת ××ת ש×ת×××× ×× ×ª×× ××.\n"
+"ת×× ×ת ××§×××¥ QIF ×× ×××××¨× ××××× ×¡×ר ×××פס×× ×¨×××× ×: ×××, ×××ש ××©× × ×©× ×ª×ר××. "
+"×ר××, × ××ª× ××§×××¢ ×××××××ת ×××× ×ª×× ×ת × ×צ×ת ×ש×××ש ××§×××¥ ×ס×××. ××× ×¢× ××ת, "
+"××§×××¥ ש×××× ×× ×¢×ª× ×§××××ת ××תר ×ת×× ×ת ×פשר×ת ××ת ש×ת×××× ×× ×ª×× ××.\n"
"\n"
"× × ××××ר ת×× ×ת ת×ר×× ××§×××¥. ×§××¦× QIF ×©× ××¦×¨× ×¢× ××× ×ª××× × ××ר×פ××ת עש×××× ××××ת "
-"×פ×ר×× \"d-m-y\" ×× ×××-×××ש-×©× ×, ××שר ×§××¦× × QIF ×× ××ר×\"× ××× ×× ×¨×× ×ת×× ×ת ת××× "
-"×××× × \"m-d-y\" ×× ×××ש-×××-×©× ×.\n"
+"×פ×ר×× \"d-m-y\" ×× ×××-×××ש-×©× ×, ××שר ×§××¦× × QIF ×× ××ר×\"× ××× ×× ×¨×× ×ת×× ×ת "
+"ת××× ×××× × \"m-d-y\" ×× ×××ש-×××-×©× ×.\n"
#: gnucash/gtkbuilder/assistant-qif-import.glade:318
#: gnucash/gtkbuilder/assistant-qif-import.glade:403
@@ -12372,8 +12589,8 @@ msgstr ""
"× ×¨×× ×©×§×××¥ ×- QIF ×©× ××¢× ×××× ×ª× ××¢×ת ××ש××× ××× ××××, ×× ××§×××¥ ××× × ×××× ×ת ×©× "
"××ש×××.\n"
"\n"
-"× × ××××× ×ת ×©× ××ש×××. ×× ××§×××¥ ×××¦× ×ת×× ×ª ×ש××× ××ת ××רת, ×ש ××שת×ש ××××ª× ×©× ×ש××× "
-"שש××ש ××××ª× ×ת××× ×.\n"
+"× × ××××× ×ת ×©× ××ש×××. ×× ××§×××¥ ×××¦× ×ת×× ×ª ×ש××× ××ת ××רת, ×ש ××שת×ש ××××ª× ×©× "
+"×ש××× ×©×©××ש ××××ª× ×ת××× ×.\n"
#: gnucash/gtkbuilder/assistant-qif-import.glade:366
msgid "Account name:"
@@ -12386,11 +12603,11 @@ msgstr "×××רת ×©× ×ש××× QIF ×ר×רת ××××"
#. Run the assistent in your language to see GTK's translation of the button labels.
#: gnucash/gtkbuilder/assistant-qif-import.glade:454
msgid ""
-"Click \"Load another file\" if you have more data to import at this time. Do this "
-"if you have saved your accounts to separate QIF files.\n"
+"Click \"Load another file\" if you have more data to import at this time. Do "
+"this if you have saved your accounts to separate QIF files.\n"
"\n"
-"Click \"Next\" to finish loading files and move to the next step of the QIF import "
-"process. "
+"Click \"Next\" to finish loading files and move to the next step of the QIF "
+"import process. "
msgstr ""
"××§×©× ×¢× '××¢×× ×ª ×§×××¥ ××ר' ××××× × ×ª×× ×× × ×ספ×× ×ש×× ××. ×ש ××צע פע××× ×× ××××× "
"×××ש××× ×ת × ×©××¨× ××§××¦× QIF × ×¤×¨×××.\n"
@@ -12411,30 +12628,31 @@ msgstr "×§×××¦× QIF ×©× ××¢× ×"
#: gnucash/gtkbuilder/assistant-qif-import.glade:525
msgid ""
-"On the next page, the accounts in your QIF files and any stocks or mutual funds you "
-"own will be matched with GnuCash accounts. If a GnuCash account already exists with "
-"the same name, or a similar name and compatible type, that account will be used as "
-"a match; otherwise, GnuCash will create a new account with the same name and type "
-"as the QIF account. If you do not like the suggested GnuCash account, double-click "
-"to change it.\n"
-"\n"
-"Note that GnuCash will be creating many accounts that did not exist on your other "
-"personal finance program, including a separate account for each stock you own, "
-"separate accounts for the brokerage commissions, special \"Equity\" accounts "
-"(subaccounts of Retained Earnings, by default) which are the source of your opening "
-"balances, etc. All of these accounts will appear on the next page so you can change "
-"them if you want to, but it is safe to leave them alone.\n"
-msgstr ""
-"××¢××× ××× ××ש××× ×ת ××× ××× ××ת ×× ×§×¨× ×ת × ××× ×ת ××§××¦× QIF ××ת××× ××ש××× ×ת ×× ××§×ש. "
-"××××× ××ר ×§××× ×ש××× ×× ××§×ש ××××ª× ×©×, ×× ×©× ×××× ×ס×× ×ª×××, ××¢×©× ×©×××ש ××ש××× ××; "
-"××רת, ×× ××§×ש ×צ×ר ×ש××× ××ש ××©× ×ס×× ××××× ××ש××× QIF. × ××ª× ××©× ×ת ×ת פר×× ××ש××× "
-"ש××צע ×¢× ××× ×× ××§×ש ×¢× ××× ××§×©× ×פ××× ×¢×××.\n"
-"\n"
-"×תש××ת ××, ×× ××§×ש ×צ×ר ×ש××× ×ת × ×ספ×× ×¨××× ×©×× ××× ×§××××× ×ת×× ×ª ××ספ×× ×××ש×ת ×××רת "
-"××× × ×××××××, ×ר××ת ×ש××× × ×¤×¨× ××× ×× ××, ×ש××× ×ת × ×¤×¨××× ×¢××ר ×¢×××ת × ×××× ×ª××§××, "
-"×ש××× ×ת \"×××\" ××××××× (×ש××× ×ת ×××©× × ×©× ××× ×¡×ת ××××¢××ת, ××ר×רת ××××) ש×× ×××§×ר "
-"××תר×ת ×פת××× ××× '. ×× ××ש××× ×ת ×××× ××פ××¢× ××¢××× ×××, ×× ×©× ××ª× ×××× ××©× ××ª× ××× "
-"ש×××רש, ×× × ××ª× ×× ××ש×××¨× ××××× ×××ת ש××.\n"
+"On the next page, the accounts in your QIF files and any stocks or mutual "
+"funds you own will be matched with GnuCash accounts. If a GnuCash account "
+"already exists with the same name, or a similar name and compatible type, that "
+"account will be used as a match; otherwise, GnuCash will create a new account "
+"with the same name and type as the QIF account. If you do not like the "
+"suggested GnuCash account, double-click to change it.\n"
+"\n"
+"Note that GnuCash will be creating many accounts that did not exist on your "
+"other personal finance program, including a separate account for each stock "
+"you own, separate accounts for the brokerage commissions, special \"Equity\" "
+"accounts (subaccounts of Retained Earnings, by default) which are the source "
+"of your opening balances, etc. All of these accounts will appear on the next "
+"page so you can change them if you want to, but it is safe to leave them "
+"alone.\n"
+msgstr ""
+"××¢××× ××× ××ש××× ×ת ××× ××× ××ת ×× ×§×¨× ×ת × ××× ×ת ××§××¦× QIF ××ת××× ××ש××× ×ת "
+"×× ××§×ש. ××××× ××ר ×§××× ×ש××× ×× ××§×ש ××××ª× ×©×, ×× ×©× ×××× ×ס×× ×ª×××, ××¢×©× ×©×××ש "
+"××ש××× ××; ××רת, ×× ××§×ש ×צ×ר ×ש××× ××ש ××©× ×ס×× ××××× ××ש××× QIF. × ××ª× ××©× ×ת "
+"×ת פר×× ××ש××× ×©××צע ×¢× ××× ×× ××§×ש ×¢× ××× ××§×©× ×פ××× ×¢×××.\n"
+"\n"
+"×תש××ת ××, ×× ××§×ש ×צ×ר ×ש××× ×ת × ×ספ×× ×¨××× ×©×× ××× ×§××××× ×ת×× ×ª ××ספ×× ×××ש×ת "
+"×××רת ××× × ×××××××, ×ר××ת ×ש××× × ×¤×¨× ××× ×× ××, ×ש××× ×ת × ×¤×¨××× ×¢××ר ×¢×××ת × ×××× "
+"ת××§××, ×ש××× ×ת \"×××\" ××××××× (×ש××× ×ת ×××©× × ×©× ××× ×¡×ת ××××¢××ת, ××ר×רת ××××) "
+"ש×× ×××§×ר ××תר×ת ×פת××× ××× '. ×× ××ש××× ×ת ×××× ××פ××¢× ××¢××× ×××, ×× ×©× ××ª× "
+"×××× ××©× ××ª× ××× ×©×××רש, ×× × ××ª× ×× ××ש×××¨× ××××× ×××ת ש××.\n"
#: gnucash/gtkbuilder/assistant-qif-import.glade:539
msgid "Accounts and stock holdings"
@@ -12462,18 +12680,19 @@ msgid ""
"classify your transactions. Each of the categories in your QIF file will be "
"converted to a GnuCash account. \n"
"\n"
-"On the next page, you will have an opportunity to look at the suggested matches "
-"between QIF categories and GnuCash accounts. You may change matches that you do not "
-"like by double-clicking on the line containing the category name.\n"
+"On the next page, you will have an opportunity to look at the suggested "
+"matches between QIF categories and GnuCash accounts. You may change matches "
+"that you do not like by double-clicking on the line containing the category "
+"name.\n"
"\n"
"If you change your mind later, you can reorganize the account structure safely "
"within GnuCash."
msgstr ""
-"×× ××§×ש ×שת×ש ××ש××× ×ת × ×¤×¨××× ×©× ××× ×¡×ת ×××צ××ת ×××§×× ××§×××ר××ת ××× ×ס××× ×ת ×ª× ××¢×ת. "
-"×× ××ת ×××§×××ר××ת ××§×××¥ ×-QIF ×××ר ××ש××× ×× ××§×ש. \n"
+"×× ××§×ש ×שת×ש ××ש××× ×ת × ×¤×¨××× ×©× ××× ×¡×ת ×××צ××ת ×××§×× ××§×××ר××ת ××× ×ס××× ×ת "
+"×ª× ××¢×ת. ×× ××ת ×××§×××ר××ת ××§×××¥ ×-QIF ×××ר ××ש××× ×× ××§×ש. \n"
"\n"
-"××¢××× ×××, ×ת×פשר ×××××§ ×ת ××ת×××ת ×××צע×ת ××× ×§×××ר××ת QIF ××ש××× ×ת ×× ××§×ש. × ××ª× "
-"××©× ×ת ×ת ××ת×××ת ×¢× ××× ××§×©× ×פ××× ×¢× ××§× ××××× ×ת ×©× ××§×××ר××.\n"
+"××¢××× ×××, ×ת×פשר ×××××§ ×ת ××ת×××ת ×××צע×ת ××× ×§×××ר××ת QIF ××ש××× ×ת ×× ××§×ש. "
+"× ××ª× ××©× ×ת ×ת ××ת×××ת ×¢× ××× ××§×©× ×פ××× ×¢× ××§× ××××× ×ת ×©× ××§×××ר××.\n"
"\n"
"××××ר ××תר, × ××ª× ×××× ××ר×× ××××× ×ת ××× × ×ª×¨×©×× ××ש××× ×ת ×ת×× ×× ××§×ש."
@@ -12488,20 +12707,20 @@ msgstr "×ת××ת ×§×××ר××ת QIF ××ש××× ×ת ×× ××§×ש"
#: gnucash/gtkbuilder/assistant-qif-import.glade:788
msgid ""
"QIF files downloaded from banks and other financial institutions may not have "
-"information about Accounts and Categories which would allow them to be correctly "
-"assigned to GnuCash accounts. \n"
+"information about Accounts and Categories which would allow them to be "
+"correctly assigned to GnuCash accounts. \n"
"\n"
-"In the following page, you will see the text that appears in the Payee and Memo "
-"fields of transactions with no QIF Account or Category. By default these "
-"transactions are assigned to the 'Unspecified' account in GnuCash. If you select a "
-"different account, it will be remembered for future QIF files. "
+"In the following page, you will see the text that appears in the Payee and "
+"Memo fields of transactions with no QIF Account or Category. By default these "
+"transactions are assigned to the 'Unspecified' account in GnuCash. If you "
+"select a different account, it will be remembered for future QIF files. "
msgstr ""
-"×§××¦× QIF ש××ר×× ××× ×§×× ××××ס××ת פ×× × ×¡××× ××ר×× ×¢×©×××× ×©×× ××××× ××××¢ ×¢× ×ש××× ×ת "
-"××§×××ר××ת ×שר ×××¤×©×¨× ××קצ×ת ×××ª× × ××× ××ש××× ×ת ×× ××§×ש.\n"
+"×§××¦× QIF ש××ר×× ××× ×§×× ××××ס××ת פ×× × ×¡××× ××ר×× ×¢×©×××× ×©×× ××××× ××××¢ ×¢× "
+"×ש××× ×ת ××§×××ר××ת ×שר ×××¤×©×¨× ××קצ×ת ×××ª× × ××× ××ש××× ×ת ×× ××§×ש.\n"
"\n"
-"××¢××× ××× ×××¦× ×××× ×××פ××¢ ×ש××ת ××××× ×××××ר ×©× ×ª× ××¢×ת ××× ×ש××× QIF ×× ×§×××ר××. "
-"××ר×רת ×××× ×ª× ××¢×ת ××× ××קצ×ת ××ש××× '×× ××××ר' ××× ××§×ש. ××××× ××××ר ×ש××× ××ר, ××× "
-"××××ר ×¢××ר ×§××¦× QIF עת×××××. "
+"××¢××× ××× ×××¦× ×××× ×××פ××¢ ×ש××ת ××××× ×××××ר ×©× ×ª× ××¢×ת ××× ×ש××× QIF ×× "
+"×§×××ר××. ××ר×רת ×××× ×ª× ××¢×ת ××× ××קצ×ת ××ש××× '×× ××××ר' ××× ××§×ש. ××××× ××××ר "
+"×ש××× ××ר, ××× ××××ר ×¢××ר ×§××¦× QIF עת×××××. "
#: gnucash/gtkbuilder/assistant-qif-import.glade:801
msgid "Payees and memos"
@@ -12513,8 +12732,8 @@ msgstr "×ת××ת ××××××/×××ר×× ××ש××× ×ת ×× ××§×ש"
#: gnucash/gtkbuilder/assistant-qif-import.glade:918
msgid ""
-"The QIF importer cannot currently handle multi-currency QIF files. All the accounts "
-"you are importing must be denominated in the same currency.\n"
+"The QIF importer cannot currently handle multi-currency QIF files. All the "
+"accounts you are importing must be denominated in the same currency.\n"
msgstr ""
"×× ×× ×× ×××× ×- QIF ×× ×××× ×ר××¢ ×××¤× ××§××¦× QIF ×ר××× ××××¢×ת. ×ש ×××××ר ×ת ×× "
"××ש××× ×ת ×××××××× ××××ª× ××××¢.\n"
@@ -12530,15 +12749,15 @@ msgstr "<b>×פשר×××ת ספר××</b>"
#: gnucash/gtkbuilder/assistant-qif-import.glade:974
msgid ""
"Since you are creating a new file, you will next see a dialog for setting book "
-"options. These can affect how GnuCash imports transactions. If you come back to "
-"this page without cancelling and starting over, the dialog for setting book options "
-"will not be shown a second time when you go forward. You can access it directly "
-"from the menu via File->Properties."
+"options. These can affect how GnuCash imports transactions. If you come back "
+"to this page without cancelling and starting over, the dialog for setting book "
+"options will not be shown a second time when you go forward. You can access it "
+"directly from the menu via File->Properties."
msgstr ""
-"×××××× ×©×××צר ×§×××¥ ××ש, ××××©× ×××¦× ××-ש×× ××××רת ×פשר×××ת ספר××. ×××ר×ת ××× ×¢×©×××× "
-"××שפ××¢ ×¢× ×××¤× ×××××× ×©× ×ª× ××¢×ת ×× ××§×ש. ××××× ×××ש×××× ××××, ת××ת ××-×ש×× ××××רת "
-"×פשר×××ת ספר×× ×× ×ª××¦× ×¤×¢× ××©× ××× ×עת ×××¨× ××¢××× ×× ×××× ×××× ×××ת××× ×××ש. × ××ª× "
-"××שת ×××××¨× ×ש×ר×ת ××תפר×× ×§×××¥-> ××¢×פ×ת."
+"×××××× ×©×××צר ×§×××¥ ××ש, ××××©× ×××¦× ××-ש×× ××××רת ×פשר×××ת ספר××. ×××ר×ת ××× "
+"עש×××× ××שפ××¢ ×¢× ×××¤× ×××××× ×©× ×ª× ××¢×ת ×× ××§×ש. ××××× ×××ש×××× ××××, ת××ת ××-"
+"×ש×× ××××רת ×פשר×××ת ספר×× ×× ×ª××¦× ×¤×¢× ××©× ××× ×עת ×××¨× ××¢××× ×× ×××× ×××× "
+"×××ת××× ×××ש. × ××ª× ××שת ×××××¨× ×ש×ר×ת ××תפר×× ×§×××¥-> ××¢×פ×ת."
#: gnucash/gtkbuilder/assistant-qif-import.glade:985
#: gnucash/import-export/qif-imp/assistant-qif-import.c:2642
@@ -12547,30 +12766,31 @@ msgstr "×××רת ××××¢ ×§×××¥ ×- QIF ××××רת ×פשר×××ת ספ
#: gnucash/gtkbuilder/assistant-qif-import.glade:1006
msgid ""
-"Below you are asked to provide information about stocks, mutual funds, and other "
-"investments that appear in the QIF file(s) you are importing. GnuCash needs some "
-"additional details about these investments that the QIF format does not provide. \n"
+"Below you are asked to provide information about stocks, mutual funds, and "
+"other investments that appear in the QIF file(s) you are importing. GnuCash "
+"needs some additional details about these investments that the QIF format does "
+"not provide. \n"
" \n"
-"Each stock, mutual fund, or other investment must have a name and an abbreviation, "
-"such as a stock symbol. Because some unrelated investments have the same "
-"abbreviation, you also need to indicate what type of abbreviation you have entered. "
-"For example, you could select the exchange that assigned the symbol (NASDAQ, NYSE, "
-"etc.), or select an investment type.\n"
+"Each stock, mutual fund, or other investment must have a name and an "
+"abbreviation, such as a stock symbol. Because some unrelated investments have "
+"the same abbreviation, you also need to indicate what type of abbreviation you "
+"have entered. For example, you could select the exchange that assigned the "
+"symbol (NASDAQ, NYSE, etc.), or select an investment type.\n"
"\n"
"If you don't see your exchange listed, or none of the available choices are "
"appropriate, you can enter a new one."
msgstr ""
"××¢××××× ××××× ×ª×ª××§×©× ×ספק ××××¢ ××××ת × ××ר×ת ער×, ×§×¨× ×ת × ××× ×ת ××שקע×ת ××ר×ת "
-"×××פ××¢×ת ××§×××¥(×) × QIF ש××××ר ×××××. ××× ×קש × ×רש×× ×ספר פר××× × ×ספ×× ××××ת ×שקע×ת "
-"××× ×©×ª×× ×ת QIF ××× × ×ספקת.\n"
+"×××פ××¢×ת ××§×××¥(×) × QIF ש××××ר ×××××. ××× ×קש × ×רש×× ×ספר פר××× × ×ספ×× ××××ת "
+"×שקע×ת ××× ×©×ª×× ×ת QIF ××× × ×ספקת.\n"
"\n"
"××× × ×ר ער×, ×§×¨× × ××× ×ת ×× ××©×§×¢× ××רת, ×ש ×©× ××§×צ×ר ×××× ×¡×× ×× ××. ×××ר ×××××§ "
-"×××שקע×ת ש××× × ×§×©×ר×ת עש×××× ××××ת ×§×צ×ר×× ××××, × ×רש ×××××ר ×× ×ת ס×× ××§×צ×ר×× "
-"×©× ×צר×. ××××××, × ××ª× ××××ר ××××¨×¡× ×©×§××¢× ×ת ××§×צ×ר×× (NASDAQ, NYSE, ×××'.), ×× ××××ר "
-"×ס×× ××שקע×.\n"
+"×××שקע×ת ש××× × ×§×©×ר×ת עש×××× ××××ת ×§×צ×ר×× ××××, × ×רש ×××××ר ×× ×ת ס×× "
+"××§×צ×ר×× ×©× ×צר×. ××××××, × ××ª× ××××ר ××××¨×¡× ×©×§××¢× ×ת ××§×צ×ר×× (NASDAQ, NYSE, "
+"×××'.), ×× ××××ר ×ס×× ××שקע×.\n"
"\n"
-"××××× ×××רס×ת ש××§× ××× ×× ××פ××¢×ת ×רש××ת ××××ר×, ×× ×©××£ ××ת ×××פשר×××ת ××× × ×ש×××, "
-"× ××ª× ××צר ××ת ××ש×."
+"××××× ×××רס×ת ש××§× ××× ×× ××פ××¢×ת ×רש××ת ××××ר×, ×× ×©××£ ××ת ×××פשר×××ת ××× × "
+"×ש×××, × ××ª× ××צר ××ת ××ש×."
#: gnucash/gtkbuilder/assistant-qif-import.glade:1024
msgid "Enter Information about..."
@@ -12602,25 +12822,26 @@ msgstr "QIF ××××"
#: gnucash/gtkbuilder/assistant-qif-import.glade:1225
msgid ""
"\n"
-"If you are importing a QIF file from a bank or other financial institution, some of "
-"the transactions may already exist in your GnuCash accounts. To avoid duplication, "
-"GnuCash has tried to identify matches and needs your help to review them.\n"
+"If you are importing a QIF file from a bank or other financial institution, "
+"some of the transactions may already exist in your GnuCash accounts. To avoid "
+"duplication, GnuCash has tried to identify matches and needs your help to "
+"review them.\n"
"\n"
-"On the next page you will be shown a list of imported transactions. As you select "
-"each one, a list of possible matches will be shown below it. If you find a correct "
-"match, click on it. Your selection will be confirmed by a check mark in the \"Match?"
-"\" column.\n"
+"On the next page you will be shown a list of imported transactions. As you "
+"select each one, a list of possible matches will be shown below it. If you "
+"find a correct match, click on it. Your selection will be confirmed by a check "
+"mark in the \"Match?\" column.\n"
"\n"
"Click \"Next\" to review the possible matches."
msgstr ""
"\n"
-"××××× ×§×××¥ QIF ××× ×§ ×× ××××¡× ×¤×× × ×¡× ××ר, ×ת×× ××××§ ×××ª× ××¢×ת ××ר × ×צ××ת ××ש××× ×ת "
-"×× ××§×ש. ××× ××× ××¢ ×פ×××××ת, ×× ××§×ש ×× ×¡× ××××ת ×ת×××ת ×××§××§ ××¢××¨× ×¢× ×× ×ª ×סק×ר "
-"××ת×.\n"
+"××××× ×§×××¥ QIF ××× ×§ ×× ××××¡× ×¤×× × ×¡× ××ר, ×ת×× ××××§ ×××ª× ××¢×ת ××ר × ×צ××ת "
+"××ש××× ×ת ×× ××§×ש. ××× ××× ××¢ ×פ×××××ת, ×× ××§×ש ×× ×¡× ××××ת ×ת×××ת ×××§××§ ××¢××¨× ×¢× "
+"×× ×ª ×סק×ר ××ת×.\n"
"\n"
"××¢××× ××× ×ª××¦× ×¨×©××ת ××ª× ××¢×ת ש×××××. ××××רת ××ת ×××, ת××¦× ×ª××ª× ×¨×©××ת ××ת×××ת "
"××פשר××ת. ×× × ×צ×× ×ת××× ××××ת, ×ש ×××§×ש ×¢×××. ××××¨× ×× ×ª××שר ×ס××× 'v' ××¢×××ת "
-"\"×ת×××?'.\n"
+"'×ת×××?'.\n"
"\n"
"××§×©× ×¢× '×××' ××××קת ××ת×××ת ×פשר××ת."
@@ -12643,17 +12864,19 @@ msgstr "×××רת ×פ×××××ת ×פשר××ת"
#: gnucash/gtkbuilder/assistant-qif-import.glade:1352
msgid ""
"Click \"Apply\" to import data from the staging area and update your GnuCash "
-"accounts. The account and category matching information you have entered will be "
-"saved and used for defaults the next time you use the QIF import facility. \n"
+"accounts. The account and category matching information you have entered will "
+"be saved and used for defaults the next time you use the QIF import "
+"facility. \n"
"\n"
-"Click \"Back\" to review your account and category matchings, to change currency "
-"and security settings for new accounts, or to add more files to the staging area.\n"
+"Click \"Back\" to review your account and category matchings, to change "
+"currency and security settings for new accounts, or to add more files to the "
+"staging area.\n"
"\n"
"Click \"Cancel\" to abort the QIF import process."
msgstr ""
-"××§×©× ×¢× '××××' ×¢× ×× ×ª ×××× × ×ª×× ×× ××××ר ×××ס×× ×××× × ×××¢××× ×ת ×ש××× ×ת ×× ××§×ש . "
-"××××¢ ××§×××ר×× ××ת××ת ×ש××× ×©×××× × ××ש××¨× ××ש××©× ××ר×ר×ת ××××× ××¤×¢× ×××× ×©××¢×©× ×©×××ש "
-"××× ×× ×× ×××× ×- QIF. \n"
+"××§×©× ×¢× '××××' ×¢× ×× ×ª ×××× × ×ª×× ×× ××××ר ×××ס×× ×××× × ×××¢××× ×ת ×ש××× ×ת ×× ××§×ש. "
+"××××¢ ××§×××ר×× ××ת××ת ×ש××× ×©×××× × ××ש××¨× ××ש××©× ××ר×ר×ת ××××× ××¤×¢× ×××× ×©××¢×©× "
+"ש×××ש ××× ×× ×× ×××× ×- QIF. \n"
"\n"
"××§×©× ×¢× '××§×××' ×¢× ×× ×ª ×סק×ר ×ת ×ת××ת ××ש××× ×××§×××ר××, ××× ××©× ×ת ×××ר×ת ××××¢ "
"×××××× ×¢××ר ×ש××× ×ת ××ש××, ×× ××× ×××ס××£ ×§×צ×× × ×ספ×× ××××ר ×××ס×× ×××× ×.\n"
@@ -12691,14 +12914,14 @@ msgstr "×ש××× ×¤×צ×× × ×ר ער×"
#: gnucash/gtkbuilder/assistant-stock-split.glade:88
msgid ""
-"Enter the date and the number of shares you gained or lost from the stock split or "
-"merger. For stock mergers (negative splits) use a negative value for the share "
-"distribution. You can also enter a description of the transaction, or accept the "
-"default one."
+"Enter the date and the number of shares you gained or lost from the stock "
+"split or merger. For stock mergers (negative splits) use a negative value for "
+"the share distribution. You can also enter a description of the transaction, "
+"or accept the default one."
msgstr ""
"××× ×ª ×ת×ר×× ××ספר ××× ××ת ×©× ××¡×¤× ×× × ××¨×¢× ×ת×צ×ת ×פ×צ×× ×× ××××× ××× ××ת. ×¢××ר "
-"××××××× ××× ×× (פ×צ×××× ×©××××××) × × ××שת×ש ××¢×¨× ×©×××× ×¢××ר ×תפ×××ת ××× ××. × ××ª× ×× "
-"××××× ×ª×××ר ×ª× ××¢× ×× ××§×× ×ת ×ת ×ר×רת ×××××."
+"××××××× ××× ×× (פ×צ×××× ×©××××××) × × ××שת×ש ××¢×¨× ×©×××× ×¢××ר ×תפ×××ת ××× ××. × ××ª× "
+"×× ××××× ×ª×××ר ×ª× ××¢× ×× ××§×× ×ת ×ת ×ר×רת ×××××."
#: gnucash/gtkbuilder/assistant-stock-split.glade:110
#: gnucash/gtkbuilder/dialog-account.glade:1525
@@ -12723,10 +12946,11 @@ msgstr "פ×צ×× × ×ר ער×"
#: gnucash/gtkbuilder/assistant-stock-split.glade:175
msgid ""
-"If you want to record a stock price for the split, enter it below. You may safely "
-"leave it blank."
+"If you want to record a stock price for the split, enter it below. You may "
+"safely leave it blank."
msgstr ""
-"××××× ××ª×¨×¦× ××ª×¢× ×××ר ×× ×× ×פ×צ××, × × ××××× × ×××. × ××ª× ××××× ×× ××ש××ר ×ת ×ש×× ×¨××§."
+"××××× ××ª×¨×¦× ××ª×¢× ×××ר ×× ×× ×פ×צ××, × × ××××× × ×××. × ××ª× ××××× ×× ××ש××ר ×ת ×ש×× "
+"ר××§."
#: gnucash/gtkbuilder/assistant-stock-split.glade:191
msgid "New _Price:"
@@ -12745,8 +12969,8 @@ msgid ""
"If you received a cash disbursement as a result of the stock split, enter the "
"details of that payment here. Otherwise, just click \"Next\"."
msgstr ""
-"××××× ×× ×ª×§××× ××××¨× ×ספ×× ×ת×צ×× ×פ×צ×× ××× ××ת, × × ××××× ×ת פר×× ××××ר ×××. ××רת ×ש "
-"×××§×ש '×××'."
+"××××× ×× ×ª×§××× ××××¨× ×ספ×× ×ת×צ×× ×פ×צ×× ××× ××ת, × × ××××× ×ת פר×× ××××ר ×××. "
+"××רת ×ש ×××§×ש '×××'."
#: gnucash/gtkbuilder/assistant-stock-split.glade:270
msgid "_Amount:"
@@ -12775,12 +12999,12 @@ msgstr "××××× ×××§××"
#: gnucash/gtkbuilder/assistant-stock-split.glade:414
msgid ""
-"If you are finished creating the stock split or merger, press \"Apply\". You may "
-"also press \"Back\" to review your choices, or \"Cancel\" to quit without making "
-"any changes."
+"If you are finished creating the stock split or merger, press \"Apply\". You "
+"may also press \"Back\" to review your choices, or \"Cancel\" to quit without "
+"making any changes."
msgstr ""
-"×ס××× ×צ×רת פ×צ×× ×× ××××× ××× ××ת ×ש ×××§×ש ×¢× '××××'. × ××ª× ×××§×ש ×¢× '××§×××' ×סק×רת "
-"××××ר×ת ×©× ×¢×©×, ×× ×¢× 'ס×××' ××צ××× ×××× ×ש××ר ×ת ×ש×× ××××."
+"×ס××× ×צ×רת פ×צ×× ×× ××××× ××× ××ת ×ש ×××§×ש ×¢× '××××'. × ××ª× ×××§×ש ×¢× '××§×××' "
+"×סק×רת ××××ר×ת ×©× ×¢×©×, ×× ×¢× 'ס×××' ××צ××× ×××× ×ש××ר ×ת ×ש×× ××××."
#: gnucash/gtkbuilder/assistant-stock-split.glade:419
msgid "Stock Split Finish"
@@ -12838,9 +13062,9 @@ msgstr "×ש××× ×ת ×××פס×"
#: gnucash/gtkbuilder/business-prefs.glade:29
#: gnucash/report/business-reports/taxinvoice.eguile.scm:445
-#: gnucash/report/business-reports/taxinvoice.scm:316
-#: gnucash/report/business-reports/taxinvoice.scm:318
-#: gnucash/report/business-reports/taxinvoice.scm:330
+#: gnucash/report/business-reports/taxinvoice.scm:315
+#: gnucash/report/business-reports/taxinvoice.scm:317
+#: gnucash/report/business-reports/taxinvoice.scm:329
#: gnucash/report/report-gnome/gnc-plugin-page-report.c:1797
msgid "Tax Invoice"
msgstr "××× ×¡×ת ×ס"
@@ -12859,7 +13083,8 @@ msgstr "×ש××× ×ת ××××רת"
#: gnucash/gtkbuilder/business-prefs.glade:42
#: gnucash/gtkbuilder/dialog-account-picker.glade:8
-#: gnucash/gtkbuilder/dialog-import.glade:329 gnucash/gtkbuilder/dialog-sx.glade:495
+#: gnucash/gtkbuilder/dialog-import.glade:329
+#: gnucash/gtkbuilder/dialog-sx.glade:495
msgid "Preferences"
msgstr "××¢×פ×ת"
@@ -12879,11 +13104,11 @@ msgstr "_פת××× ××××× ××ש"
#: gnucash/gtkbuilder/business-prefs.glade:92
msgid ""
-"If checked, each invoice will be opened in its own top level window. If clear, the "
-"invoice will be opened in the current window."
+"If checked, each invoice will be opened in its own top level window. If clear, "
+"the invoice will be opened in the current window."
msgstr ""
-"××××× ×ת××ת ×ס×××× ×¡××× ×, ×× ×ש××× ×ת ×ª×¤×ª× ××××× × ×¤×¨×. ××רת, ××ש××× ×ת ×ª×¤×ª× ××××× "
-"×× ××××."
+"××××× ×ת××ת ×ס×××× ×¡××× ×, ×× ×ש××× ×ת ×ª×¤×ª× ××××× × ×¤×¨×. ××רת, ××ש××× ×ת ×ª×¤×ª× "
+"××××× ×× ××××."
#: gnucash/gtkbuilder/business-prefs.glade:105
msgid "_Accumulate splits on post"
@@ -12891,9 +13116,9 @@ msgstr "_×××× ×¤×צ×××× ×ר×ש××"
#: gnucash/gtkbuilder/business-prefs.glade:111
msgid ""
-"Whether multiple entries in an invoice which transfer to the same account should be "
-"accumulated into a single split by default. This setting can be changed in the Post "
-"dialog."
+"Whether multiple entries in an invoice which transfer to the same account "
+"should be accumulated into a single split by default. This setting can be "
+"changed in the Post dialog."
msgstr ""
"××× ×ספר רש×××ת ××ש××× ×ת ש××¢××ר×ת ××××ª× ×ש××× ××צ×× ×פ×צ×× ×××. × ××ª× ××©× ×ת ×ת "
"×××××¨× ××××× ×ש××××."
@@ -12921,9 +13146,10 @@ msgstr "_×××× ×ס"
#: gnucash/gtkbuilder/business-prefs.glade:185
msgid ""
-"Whether tax is included by default in entries on Bills. This setting is inherited "
-"by new customers and vendors."
-msgstr "××× ××××× ×ס ×רש×××ת ××××××× ××ר×רת ××××. ×××××¨× ××רשת ×××§×××ת ×ספק×× ××ש××."
+"Whether tax is included by default in entries on Bills. This setting is "
+"inherited by new customers and vendors."
+msgstr ""
+"××× ××××× ×ס ×רש×××ת ××××××× ××ר×רת ××××. ×××××¨× ××רשת ×××§×××ת ×ספק×× ××ש××."
#. See the tooltip "At post time..." for details.
#: gnucash/gtkbuilder/business-prefs.glade:198
@@ -12985,8 +13211,8 @@ msgstr "×ר×רת ××××"
#: gnucash/gtkbuilder/dialog-account.glade:117
msgid ""
-"If any account has an existing color it will not be replaced unless the following "
-"is ticked."
+"If any account has an existing color it will not be replaced unless the "
+"following is ticked."
msgstr ""
"××××× ×ת××ת ×ס×××× ×¡××× ×, × ××ª× ×××× ××©× ×ת צ××¢ ××ש×××, ××רת ×××פת צ××¢ ×× ×ª×ª×פשר."
@@ -13046,13 +13272,14 @@ msgstr "<b> ×ª× ××¢×ת ×ש××× ×ת ××©× ×</b>"
#: gnucash/gtkbuilder/dialog-account.glade:530
msgid ""
-"One or more sub-accounts contain transactions. What would you like to do with these "
-"transactions?"
+"One or more sub-accounts contain transactions. What would you like to do with "
+"these transactions?"
msgstr "×ש××× ××©× × ××× ×× ××תר ×××× ×ª× ××¢×ת. ×× ×עש×ת ×¢× ×ª× ××¢×ת ×××?"
#: gnucash/gtkbuilder/dialog-account.glade:545
msgid ""
-"One or more sub-accounts contain read-only transactions which may not be deleted."
+"One or more sub-accounts contain read-only transactions which may not be "
+"deleted."
msgstr "×ש××× ××©× × ××× ×× ××תר ×××× ×ª× ××¢×ת ×קר××× ×××× ××× × ××ª× ×ת ×ער×××."
#: gnucash/gtkbuilder/dialog-account.glade:599
@@ -13099,8 +13326,9 @@ msgstr "×צ×ת ×ש××× ×ת ××¢×× ×¢×¨× ×××× ×פס."
msgid "Use Commodity Value"
msgstr "ש×××ש ××¢×¨× ×¡××ר×"
-#: gnucash/gtkbuilder/dialog-account.glade:863 gnucash/gtkbuilder/dialog-sx.glade:387
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:211
+#: gnucash/gtkbuilder/dialog-account.glade:863
+#: gnucash/gtkbuilder/dialog-sx.glade:387
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:203
msgid "1"
msgstr "1"
@@ -13175,8 +13403,8 @@ msgstr "×ר ×_×ס××"
#. Translators: use the same words here as in 'Ta_x Report Options'.
#: gnucash/gtkbuilder/dialog-account.glade:1172
msgid ""
-"Use Edit->Tax Report Options to set the tax-related flag and assign a tax code to "
-"this account."
+"Use Edit->Tax Report Options to set the tax-related flag and assign a tax code "
+"to this account."
msgstr ""
"ת××ת ×ר ××ס×× ×ª××× ×¤×¢××× ××××× ××××××¨× ×§×× ××ס×× ××ש××× ×ת ××× ×תפר×× ×¢×¨×××-"
">×פשר×××ת ××× ×ס."
@@ -13187,8 +13415,8 @@ msgstr "ש××ר ×_×§××"
#: gnucash/gtkbuilder/dialog-account.glade:1189
msgid ""
-"This account is present solely as a placeholder in the hierarchy. Transactions may "
-"not be posted to this account, only to sub-accounts of this account."
+"This account is present solely as a placeholder in the hierarchy. Transactions "
+"may not be posted to this account, only to sub-accounts of this account."
msgstr ""
"×ש××× ×× ×ש×ש ×× ×רק ×ש××ר ××§××. ×× × ××ª× ××××× ×ª× ××¢×ת ××ש××× ××, ×× × ××ª× ×רש×× "
"×ª× ××¢×ת ××ש××× ×ת ×××©× × ×©× ×ש××× ××."
@@ -13199,16 +13427,16 @@ msgstr "××_סתר"
#: gnucash/gtkbuilder/dialog-account.glade:1206
msgid ""
-"This account (and any sub-accounts) will be hidden in the account tree and will not "
-"appear in the popup account list in the register. To reset this option, you will "
-"first need to open the \"Filter By...\" dialog for the account tree and check the "
-"\"show hidden accounts\" option. Doing so will allow you to select the account and "
-"reopen this dialog."
+"This account (and any sub-accounts) will be hidden in the account tree and "
+"will not appear in the popup account list in the register. To reset this "
+"option, you will first need to open the \"Filter By...\" dialog for the "
+"account tree and check the \"show hidden accounts\" option. Doing so will "
+"allow you to select the account and reopen this dialog."
msgstr ""
"×ש××× ×× (××× ×ש××× ×ת ×××©× ×) ×××¡×ª×¨× ×תרש×× ××ש××× ×ת ××× ××פ××¢× ×רש××ת ××ש××× ×ת "
-"×××צ×ת ××××× ××ª× ××¢×ת. ×¢× ×× ×ª ××פס ×פשר×ת ××, ×ש ×פת×× ×ת ×××× ××-ש×× 'ס×× ×× ×פ×...' "
-"×©× ×ª×¨×©×× ××ש××× ×ת ××ס×× ×ת ××פשר×ת '×צ×ת ×ש××× ×ת ××סתר××', ×× ×©××פשר ××××ר ×ת "
-"××ש××× ××פת×× ×××ש ×ת ×××× ××-×ש××."
+"×××צ×ת ××××× ××ª× ××¢×ת. ×¢× ×× ×ª ××פס ×פשר×ת ××, ×ש ×פת×× ×ת ×××× ××-ש×× 'ס×× ×× "
+"×פ×...' ×©× ×ª×¨×©×× ××ש××× ×ת ××ס×× ×ת ××פשר×ת '×צ×ת ×ש××× ×ת ××סתר××', ×× ×©××פשר "
+"××××ר ×ת ××ש××× ××פת×× ×××ש ×ת ×××× ××-×ש××."
#: gnucash/gtkbuilder/dialog-account.glade:1277
msgid "Smallest fraction of this commodity that can be referenced."
@@ -13228,8 +13456,8 @@ msgstr "<b>_×ש××× ××</b>"
#: gnucash/report/standard-reports/equity-statement.scm:108
#: gnucash/report/standard-reports/equity-statement.scm:112
#: gnucash/report/standard-reports/register.scm:375
-#: gnucash/report/standard-reports/trial-balance.scm:188
-#: gnucash/report/standard-reports/trial-balance.scm:192
+#: gnucash/report/standard-reports/trial-balance.scm:187
+#: gnucash/report/standard-reports/trial-balance.scm:191
#: gnucash/report/stylesheets/stylesheet-easy.scm:46
#: gnucash/report/stylesheets/stylesheet-easy.scm:52
#: gnucash/report/stylesheets/stylesheet-easy.scm:58
@@ -13362,12 +13590,13 @@ msgstr "_פת××××"
#: gnucash/gtkbuilder/dialog-account-picker.glade:97
msgid ""
-"When the status is not specified in a QIF file, the transactions are marked as not "
-"cleared."
+"When the status is not specified in a QIF file, the transactions are marked as "
+"not cleared."
msgstr "××שר ×× × ×§××¢ ××¦× ××§×××¥ QIF, ××ª× ××¢×ת ×ס××× × ××× ××ת×××ת."
#: gnucash/gtkbuilder/dialog-account-picker.glade:115
-msgid "Default transaction status (overridden by the status given by the QIF file)"
+msgid ""
+"Default transaction status (overridden by the status given by the QIF file)"
msgstr "××¦× ×ª× ××¢× ×ר×רת ×××× (×××רס ×¢× ××× ×××¦× ×©×תק×× ××§×××¥ × QIF)"
#: gnucash/gtkbuilder/dialog-account-picker.glade:143
@@ -13472,8 +13701,8 @@ msgstr "×ספר ××××× ×××¨× ×ª×ר×× ×ר×ש×× ×תש××× ×××
#: gnucash/gtkbuilder/dialog-billterms.glade:155
msgid ""
-"The number of days after the post date during which a discount will be applied for "
-"early payment."
+"The number of days after the post date during which a discount will be applied "
+"for early payment."
msgstr "×ספר ××××× ×××¨× ×ª×ר×× ×ר×ש×× ×©×××××× ×ª× ×ª× ×× ×× ×¢××ר תש××× ×××§××."
#: gnucash/gtkbuilder/dialog-billterms.glade:176
@@ -13506,12 +13735,12 @@ msgstr "×××× ×× ×× ×× ×תש××× ×ש××× ××¤× × ×ª×ר×× ××
#: gnucash/gtkbuilder/dialog-billterms.glade:370
msgid ""
-"The cutoff day for applying bills to the next month. After the cutoff, bills are "
-"applied to the following month. Negative values count backwards from the end of the "
-"month."
+"The cutoff day for applying bills to the next month. After the cutoff, bills "
+"are applied to the following month. Negative values count backwards from the "
+"end of the month."
msgstr ""
-"××× ××ª× ××¢×רת ×××××× ××××ש ×××. ×××ר ××ת×, ×××××× ××פ××¢× ××××ש ×××. ער××× ××¡×¤×¨× "
-"××××ר ×ס××£ ××××ש."
+"××× ××ª× ××¢×רת ×××××× ××××ש ×××. ×××ר ××ת×, ×××××× ××פ××¢× ××××ש ×××. ער××× "
+"××¡×¤×¨× ××××ר ×ס××£ ××××ש."
#: gnucash/gtkbuilder/dialog-billterms.glade:434
msgid "Table"
@@ -13655,17 +13884,18 @@ msgstr ""
#: gnucash/gtkbuilder/dialog-commodity.glade:149
msgid ""
"Enter the ticker symbol for the commodity (e.g. CSCO or AAPL). If you are "
-"retrieving quotes online, this field must exactly match the ticker symbol used by "
-"the quote source (including case). "
+"retrieving quotes online, this field must exactly match the ticker symbol used "
+"by the quote source (including case). "
msgstr ""
-"× × ××××× ×¡×× ×××קר ×ס×××¨× (××××: CSCO, ×× APPL). ×××××ר שער×× ××§×××, ×¢× ×¡×× ×××קר "
-"××××ת ××× ××× ×©× ××§×ר ×שער×× (×ר××ת ר×ש××ת). "
+"× × ××××× ×¡×× ×××קר ×ס×××¨× (××××: CSCO, ×× APPL). ×××××ר שער×× ××§×××, ×¢× ×¡×× "
+"×××קר ××××ת ××× ××× ×©× ××§×ר ×שער×× (×ר××ת ר×ש××ת). "
#: gnucash/gtkbuilder/dialog-commodity.glade:167
msgid ""
-"Enter a unique code used to identify the commodity. Or, you may safely leave this "
-"field blank."
-msgstr "× × ××××× ×§×× ××××× ×××××× ×¢××ר ×ס××ר×. ××, × ××ª× ××××× ××ש××ר ×ת ×ש×× ×¨××§."
+"Enter a unique code used to identify the commodity. Or, you may safely leave "
+"this field blank."
+msgstr ""
+"× × ××××× ×§×× ××××× ×××××× ×¢××ר ×ס××ר×. ××, × ××ª× ××××× ××ש××ר ×ת ×ש×× ×¨××§."
#: gnucash/gtkbuilder/dialog-commodity.glade:186
msgid "1 /"
@@ -13673,10 +13903,11 @@ msgstr "1 /"
#: gnucash/gtkbuilder/dialog-commodity.glade:202
msgid ""
-"Enter the smallest fraction of the commodity which can be traded. For stocks which "
-"can only be traded in whole numbers, enter 1."
+"Enter the smallest fraction of the commodity which can be traded. For stocks "
+"which can only be traded in whole numbers, enter 1."
msgstr ""
-"××× ×ª ××××§ ××××¢×¨× ×©× ×ס×××¨× ×× ××ª× ×ª ××ס××ר. ××× ××ת ×× ×¡×ר×ת ××××××ת ש×××ת, ×ש ××××× 1."
+"××× ×ª ××××§ ××××¢×¨× ×©× ×ס×××¨× ×× ××ª× ×ª ××ס××ר. ××× ××ת ×× ×¡×ר×ת ××××××ת ש×××ת, ×ש "
+"××××× 1."
#: gnucash/gtkbuilder/dialog-commodity.glade:226
msgid "<b>Quote Source Information</b>"
@@ -13720,11 +13951,12 @@ msgstr "××_××:"
#: gnucash/gtkbuilder/dialog-commodity.glade:518
msgid ""
-"These are F::Q quote sources that retrieve information from a single site on the "
-"internet. If that site is unavailable, you will not be able to retrieve quotes."
+"These are F::Q quote sources that retrieve information from a single site on "
+"the internet. If that site is unavailable, you will not be able to retrieve "
+"quotes."
msgstr ""
-"××× ×× ××§×ר×ת ××××ר ×©× F::Q ×××××ר ××××¢ ××תר ×××× ××רשתת. ×× ××תר ×× ××××, ××××ר "
-"××××ר×× ×× ×ª×ª×פשר."
+"××× ×× ××§×ר×ת ××××ר ×©× F::Q ×××××ר ××××¢ ××תר ×××× ××רשתת. ×× ××תר ×× ××××, "
+"××××ר ××××ר×× ×× ×ª×ª×פשר."
#: gnucash/gtkbuilder/dialog-commodity.glade:539
msgid "_Multiple:"
@@ -13732,12 +13964,12 @@ msgstr "_×ר×××:"
#: gnucash/gtkbuilder/dialog-commodity.glade:545
msgid ""
-"These are F::Q quote sources that retrieve information from multiple sites on the "
-"internet. If one of the sites is unavailable, F::Q will attempt to retrieve the "
-"information from another site."
+"These are F::Q quote sources that retrieve information from multiple sites on "
+"the internet. If one of the sites is unavailable, F::Q will attempt to "
+"retrieve the information from another site."
msgstr ""
-"××× ×× ××§×ר×ת ×××ר×× ×©× F::Q ×××××ר ××××¢ ××ספר ×תר×× ××רשתת. ×× ××× ×××תר×× ××× × "
-"××××, F::Q ×× ×¡× ××××ר ××××¢ ××תר ××ר."
+"××× ×× ××§×ר×ת ×××ר×× ×©× F::Q ×××××ר ××××¢ ××ספר ×תר×× ××רשתת. ×× ××× ×××תר×× "
+"××× × ××××, F::Q ×× ×¡× ××××ר ××××¢ ××תר ××ר."
#: gnucash/gtkbuilder/dialog-commodity.glade:566
msgid "_Unknown:"
@@ -13745,12 +13977,12 @@ msgstr "_×× ××××¢:"
#: gnucash/gtkbuilder/dialog-commodity.glade:572
msgid ""
-"These are quote sources that were recently added to F::Q. GnuCash does not know if "
-"these sources retrieve information from a single site or from multiple sites on the "
-"internet."
+"These are quote sources that were recently added to F::Q. GnuCash does not "
+"know if these sources retrieve information from a single site or from multiple "
+"sites on the internet."
msgstr ""
-"××× ×× ××§×ר×ת ×××ר ×©× F::Q ×©× ××¡×¤× ×××ר×× ×. ×× ××§×ש ××× × ××××¢ ××× ××××ר ×××××¢ ××× "
-"××תר ××× ×× ××ספר ×תר×× ××רשתת."
+"××× ×× ××§×ר×ת ×××ר ×©× F::Q ×©× ××¡×¤× ×××ר×× ×. ×× ××§×ש ××× × ××××¢ ××× ××××ר ×××××¢ "
+"××× ××תר ××× ×× ××ספר ×תר×× ××רשתת."
#: gnucash/gtkbuilder/dialog-commodity.glade:596
msgid "Time_zone:"
@@ -13758,11 +13990,11 @@ msgstr "×××ר _×××:"
#: gnucash/gtkbuilder/dialog-commodity.glade:633
msgid ""
-"Enter a display symbol. This can safely be left blank, in which case the ticker "
-"symbol or the currency ISO code will be used."
+"Enter a display symbol. This can safely be left blank, in which case the "
+"ticker symbol or the currency ISO code will be used."
msgstr ""
-"× × ××××× ×¡×× ×תצ×××. × ××ª× ××××× ×××ש×ר ר××§, ×××§×¨× ×× ××¢×©× ×©×××ש ×ס×× ××קר ×× ×§×× "
-"ISO ×××××¢."
+"× × ××××× ×¡×× ×תצ×××. × ××ª× ××××× ×××ש×ר ר××§, ×××§×¨× ×× ××¢×©× ×©×××ש ×ס×× ××קר ×× "
+"×§×× ISO ×××××¢."
#: gnucash/gtkbuilder/dialog-commodity.glade:653
msgid "_Display symbol"
@@ -13787,7 +14019,8 @@ msgstr "×©× ×××ר×: "
#: gnucash/gtkbuilder/dialog-customer.glade:197
msgid ""
-"The customer ID number. If left blank a reasonable number will be chosen for you"
+"The customer ID number. If left blank a reasonable number will be chosen for "
+"you"
msgstr "×××× ×××§××. ×× ×¨××§ ××ספר ×××§××¢ ××××¤× ×××××××"
#: gnucash/gtkbuilder/dialog-customer.glade:246
@@ -13873,7 +14106,8 @@ msgstr "×ר××ס ×ת ×××ת ××ס ×××××××ת?"
#: gnucash/gtkbuilder/dialog-employee.glade:830
#: gnucash/gtkbuilder/dialog-invoice.glade:346
#: gnucash/gtkbuilder/dialog-invoice.glade:950
-#: gnucash/gtkbuilder/dialog-order.glade:312 gnucash/gtkbuilder/dialog-order.glade:660
+#: gnucash/gtkbuilder/dialog-order.glade:312
+#: gnucash/gtkbuilder/dialog-order.glade:660
msgid "Billing Information"
msgstr "פר×× ××××"
@@ -13933,8 +14167,8 @@ msgstr ""
#: gnucash/gtkbuilder/dialog-custom-report.glade:115
msgid ""
-"Saved report configurations are created by first opening a report from the Reports "
-"menu,\n"
+"Saved report configurations are created by first opening a report from the "
+"Reports menu,\n"
"altering the report's options to your taste and then choosing \"Save Report "
"Configuration\" from\n"
"the Reports menu or tool bar."
@@ -13958,7 +14192,8 @@ msgstr "×©× ×שת×ש: "
#: gnucash/gtkbuilder/dialog-employee.glade:175
msgid ""
-"The employee ID number. If left blank a reasonable number will be chosen for you"
+"The employee ID number. If left blank a reasonable number will be chosen for "
+"you"
msgstr "×××× ××¢×××. ×× ×¨××§ ×ספר ×××§××¢ ××××¤× ×××××××"
#: gnucash/gtkbuilder/dialog-employee.glade:514
@@ -14034,7 +14269,8 @@ msgid "Tri-annual"
msgstr "ת×ת ×©× ×ª×"
#: gnucash/gtkbuilder/dialog-fincalc.glade:21
-#: gnucash/gtkbuilder/dialog-fincalc.glade:62 gnucash/gtkbuilder/dialog-sx.glade:138
+#: gnucash/gtkbuilder/dialog-fincalc.glade:62
+#: gnucash/gtkbuilder/dialog-sx.glade:138
#: gnucash/report/report-system/trep-engine.scm:318
msgid "Quarterly"
msgstr "ר××¢×× ×"
@@ -14045,7 +14281,8 @@ msgid "Bi-monthly"
msgstr "×× ×××ש×"
#: gnucash/gtkbuilder/dialog-fincalc.glade:27
-#: gnucash/gtkbuilder/dialog-fincalc.glade:68 gnucash/gtkbuilder/dialog-sx.glade:135
+#: gnucash/gtkbuilder/dialog-fincalc.glade:68
+#: gnucash/gtkbuilder/dialog-sx.glade:135
#: gnucash/gtkbuilder/gnc-frequency.glade:180
#: gnucash/gtkbuilder/gnc-frequency.glade:1438
#: gnucash/report/report-system/trep-engine.scm:309
@@ -14066,7 +14303,8 @@ msgid "Bi-weekly"
msgstr "×× ×©×××¢×"
#: gnucash/gtkbuilder/dialog-fincalc.glade:36
-#: gnucash/gtkbuilder/dialog-fincalc.glade:77 gnucash/gtkbuilder/dialog-sx.glade:129
+#: gnucash/gtkbuilder/dialog-fincalc.glade:77
+#: gnucash/gtkbuilder/dialog-sx.glade:129
#: gnucash/gtkbuilder/gnc-frequency.glade:174
#: gnucash/gtkbuilder/gnc-frequency.glade:1016
#: gnucash/report/report-system/trep-engine.scm:300
@@ -14155,7 +14393,8 @@ msgid "Continuous"
msgstr "רָצִ××£"
#: gnucash/gtkbuilder/dialog-fincalc.glade:707
-#: gnucash/gtkbuilder/dialog-fincalc.glade:727 gnucash/gtkbuilder/dialog-sx.glade:250
+#: gnucash/gtkbuilder/dialog-fincalc.glade:727
+#: gnucash/gtkbuilder/dialog-sx.glade:250
#: gnucash/gtkbuilder/gnc-frequency.glade:593
msgid "Frequency:"
msgstr "ת××ר×ת:"
@@ -14262,8 +14501,8 @@ msgstr "ספ×רת ש×××ש ×××ר××ת ×ת×××"
#: gnucash/gtkbuilder/dialog-imap-editor.glade:263
msgid ""
-"Filter will be applied to 'Match String' and 'Mapped to Account Name' fields, case "
-"sensitive."
+"Filter will be applied to 'Match String' and 'Mapped to Account Name' fields, "
+"case sensitive."
msgstr "×××¡× × ×××× ×¢× ×ש××ת '××ר××ת ×ת×××' ×'×××¤× ××©× ×ש×××', ת×××× ×¨×ש××ת."
#: gnucash/gtkbuilder/dialog-imap-editor.glade:302
@@ -14279,7 +14518,8 @@ msgid "_Collapse All"
msgstr "_×××××¥ ×××"
#: gnucash/gtkbuilder/dialog-imap-editor.glade:366
-msgid "Multiple rows can be selected and then deleted by pressing the delete button."
+msgid ""
+"Multiple rows can be selected and then deleted by pressing the delete button."
msgstr "× ××ª× ××××ר ×ספר ש×ר×ת ××××××§ ×××ª× ×××§×©× ×¢× ×××¦× '××××§×'."
#: gnucash/gtkbuilder/dialog-import.glade:89
@@ -14317,24 +14557,25 @@ msgstr "<b>×××× ××××</b>"
#: gnucash/gtkbuilder/dialog-import.glade:397
msgid ""
"In some places commercial ATMs (not belonging to a financial institution) are "
-"installed in places like convenience stores. These ATMs add their fee directly to "
-"the amount instead of showing up as a separate transaction or in your monthly "
-"banking fees. For example, you withdraw $100, and you are charged $101,50 plus "
-"Interac fees. If you manually entered that $100, the amounts won't match. You "
-"should set this to whatever is the maximum such fee in your area (in units of your "
-"local currency), so the transaction will be recognised as a match."
+"installed in places like convenience stores. These ATMs add their fee directly "
+"to the amount instead of showing up as a separate transaction or in your "
+"monthly banking fees. For example, you withdraw $100, and you are charged "
+"$101,50 plus Interac fees. If you manually entered that $100, the amounts "
+"won't match. You should set this to whatever is the maximum such fee in your "
+"area (in units of your local currency), so the transaction will be recognised "
+"as a match."
msgstr ""
"×××§×××ת ×ס×××××, ×ספ××××× ×ס×ר××× (ש××× × ×©××××× ××××¡× ×¤×× × ×¡×) ×××ª×§× ×× ×××§×××ת "
-"צ×××ר××× ××× ×× ×××ת × ×××ת. ×ספ××××× ××× ××ס×פ×× ×ת ××¢××× ×©××× ×ש×ר×ת ×ס××× ×××§×× "
-"×××פ××¢ ××ª× ××¢× × ×¤×¨×ת ×× ××¢×××ת ××× ×§ ××××ש××× ×××£ ×ש××× ××× ×§. ××××××, ××ש××× ×©× 100 "
-"ש×, × ×¨×× ×פ××¢× ×××£ ××× ×§ ×××× ×©× 101.50 ×©× ××××××× ×ת ×¢××ת ×ש×××. ×× ×××× ××××¤× ××× × "
-"רק 100 ש×, ×ס××××× ×× ×ת××××. ××× ×ש ×××××ר ×ת ס××× ××¢××× ××ר×× ×××תר ××××ר "
-"(××××××ת ×©× ×××××¢ ×××§×××), ×× ×©××ª× ××¢× ×ª×××× ××ת×××."
+"צ×××ר××× ××× ×× ×××ת × ×××ת. ×ספ××××× ××× ××ס×פ×× ×ת ××¢××× ×©××× ×ש×ר×ת ×ס××× "
+"×××§×× ×××פ××¢ ××ª× ××¢× × ×¤×¨×ת ×× ××¢×××ת ××× ×§ ××××ש××× ×××£ ×ש××× ××× ×§. ××××××, "
+"××ש××× ×©× 100 ש×, × ×¨×× ×פ××¢× ×××£ ××× ×§ ×××× ×©× 101.50 ×©× ××××××× ×ת ×¢××ת ×ש×××. "
+"×× ×××× ××××¤× ××× × ×¨×§ 100 ש×, ×ס××××× ×× ×ת××××. ××× ×ש ×××××ר ×ת ס××× ××¢××× "
+"××ר×× ×××תר ××××ר (××××××ת ×©× ×××××¢ ×××§×××), ×× ×©××ª× ××¢× ×ª×××× ××ת×××."
#: gnucash/gtkbuilder/dialog-import.glade:418
msgid ""
-"A transaction whose best match's score is in the green zone (above or equal to the "
-"Auto-CLEAR threshold) will be CLEARed by default."
+"A transaction whose best match's score is in the green zone (above or equal to "
+"the Auto-CLEAR threshold) will be CLEARed by default."
msgstr ""
"×ª× ××¢× ×©× ××§×× ××ת××× ×××× ×××תר ש×× × ××¦× ××××ר ××ר××§ (××¢× ×× ×©××× ×סף ×ס×××¨× "
"××××××××ת) ת×ת×× ××ר×רת ××××."
@@ -14342,14 +14583,16 @@ msgstr ""
#: gnucash/gtkbuilder/dialog-import.glade:438
msgid ""
"A transaction whose best match's score is in the red zone (above the display "
-"threshold but below or equal to the Auto-ADD threshold) will be ADDed by default."
+"threshold but below or equal to the Auto-ADD threshold) will be ADDed by "
+"default."
msgstr ""
-"×ª× ××¢× ×©× ××§×× ××ת××× ×××× ×××תר ש×× × ××¦× ××××ר ××××× (××¢× ×¡×£ תצ××× ×× ×©××× ×× ×ת×ת "
-"×סף ××××¡×¤× ××××××××ת) תת××סף ××ר×רת ××××."
+"×ª× ××¢× ×©× ××§×× ××ת××× ×××× ×××תר ש×× × ××¦× ××××ר ××××× (××¢× ×¡×£ תצ××× ×× ×©××× ×× "
+"×ת×ת ×סף ××××¡×¤× ××××××××ת) תת××סף ××ר×רת ××××."
#: gnucash/gtkbuilder/dialog-import.glade:458
msgid ""
-"The minimum score a potential match must have to be displayed in the match list."
+"The minimum score a potential match must have to be displayed in the match "
+"list."
msgstr "צ××× ×××¢×¨× ××ת××× ×פשר×ת ×××× ××××ת ×××¦× ×רש××ת ××ת×××."
#. Preferences->Online Banking:Generic
@@ -14403,14 +14646,15 @@ msgstr "פ×צ×××× ×©×¢×©×××× ××ת××× ××ª× ××¢×ת ×©× ××ר×:
# פ=פע××
#: gnucash/gtkbuilder/dialog-import.glade:743
msgid ""
-"Multiple transaction rows may be selected and a transfer account assigned to all "
-"selected rows. Use Ctrl Left Click or Shift-Click to select multiple rows and then "
-"Right Click to select a transfer account. Only rows with \"A\" checked can be added "
-"to a selection."
+"Multiple transaction rows may be selected and a transfer account assigned to "
+"all selected rows. Use Ctrl Left Click or Shift-Click to select multiple rows "
+"and then Right Click to select a transfer account. Only rows with \"A\" "
+"checked can be added to a selection."
msgstr ""
-"× ××ª× ××××ר ××ספר ש×ר×ת ×ª× ××¢× ×××ש××× ××× ×××× ×××¢××¨× ×× ×ש×ר×ת ×©× ××ר×. × × ××שת×ש ×-"
-"Ctrl ×××§×©× ×¢× ×××¦× ××¢××ר ×ש×××× ×× Shift ת×× ××× ××××¦× ××× ××××ר ש×ר×ת ×ר×××ת ××××ר "
-"××× ××××¦× ××× ×ת ××× ××××ר ×ש××× ×××¢×ר×. רק ש×ר×ת ×ס××× ×ת × \"פ\" × ××ª× ×ת ××××ר×."
+"× ××ª× ××××ר ××ספר ש×ר×ת ×ª× ××¢× ×××ש××× ××× ×××× ×××¢××¨× ×× ×ש×ר×ת ×©× ××ר×. × × "
+"××שת×ש ×-Ctrl ×××§×©× ×¢× ×××¦× ××¢××ר ×ש×××× ×× Shift ת×× ××× ××××¦× ××× ××××ר "
+"ש×ר×ת ×ר×××ת ××××ר ××× ××××¦× ××× ×ת ××× ××××ר ×ש××× ×××¢×ר×. רק ש×ר×ת ×ס××× ×ת × "
+"\"פ\" × ××ª× ×ת ××××ר×."
#: gnucash/gtkbuilder/dialog-import.glade:746
msgid ""
@@ -14420,10 +14664,11 @@ msgstr "×ª× ××¢× ×× ××רשת ×תער××ת ××רת ××× ×ª×××× ×
#: gnucash/gtkbuilder/dialog-import.glade:749
msgid ""
-"This transaction will be imported balanced (you may still want to double check the "
-"match or destination account)."
+"This transaction will be imported balanced (you may still want to double check "
+"the match or destination account)."
msgstr ""
-"×ª× ××¢× ×× ×ª×××× ×ש××× ××××× ×ª (××ת×× ×©×¢×××× ××רש ×××××§ ש×× ×ת ×ש××× ××ת××× ×× ×××¢×)."
+"×ª× ××¢× ×× ×ª×××× ×ש××× ××××× ×ª (××ת×× ×©×¢×××× ××רש ×××××§ ש×× ×ת ×ש××× ××ת××× ×× "
+"×××¢×)."
#: gnucash/gtkbuilder/dialog-import.glade:752
msgid "This transaction requires your intervention or it will NOT be imported."
@@ -14431,11 +14676,11 @@ msgstr "×ª× ××¢× ×× ××רשת ×תער××ת ××רת ××× ×× ×ª×××
#: gnucash/gtkbuilder/dialog-import.glade:755
msgid ""
-"Double click on the transaction to change the matching transaction to reconcile, or "
-"the destination account of the auto-balance split (if required)."
+"Double click on the transaction to change the matching transaction to "
+"reconcile, or the destination account of the auto-balance split (if required)."
msgstr ""
-"××§×©× ×פ××× ×¢× ××ª× ××¢× ×¢× ×× ×ª ××©× ×ת ×ת ××ª× ××¢× ×××ת××ת, ×× ×ת ×ש××× ×××¢× ×©× ×¤×צ×× ××ª×¨× "
-"××××××× (××× ×©× ×רש)."
+"××§×©× ×פ××× ×¢× ××ª× ××¢× ×¢× ×× ×ª ××©× ×ת ×ת ××ª× ××¢× ×××ת××ת, ×× ×ת ×ש××× ×××¢× ×©× ×¤×צ×× "
+"××ª×¨× ××××××× (××× ×©× ×רש)."
#: gnucash/gtkbuilder/dialog-import.glade:760
msgid "Transaction List Help"
@@ -14549,7 +14794,8 @@ msgstr "רש×××ת ×ש××× ×ת"
#: gnucash/gtkbuilder/dialog-invoice.glade:728
msgid ""
-"The invoice ID number. If left blank a reasonable number will be chosen for you."
+"The invoice ID number. If left blank a reasonable number will be chosen for "
+"you."
msgstr "×××× ××ש××× ×ת. ×× ×¨××§ ×ספר ×××§××¢ ××××¤× ×××××××."
#: gnucash/gtkbuilder/dialog-invoice.glade:1177
@@ -14577,7 +14823,8 @@ msgid "Job Dialog"
msgstr "×××× ×¨××××"
#: gnucash/gtkbuilder/dialog-job.glade:131
-msgid "The job ID number. If left blank a reasonable number will be chosen for you"
+msgid ""
+"The job ID number. If left blank a reasonable number will be chosen for you"
msgstr "×××× ××¢××××. ×× ×¨××§ ×ספר ×××§××¢ ××××¤× ×××××××"
#: gnucash/gtkbuilder/dialog-job.glade:165
@@ -14665,17 +14912,18 @@ msgid "_Yes"
msgstr "_××"
#: gnucash/gtkbuilder/dialog-new-user.glade:89
-msgid "<span weight=\"bold\" size=\"larger\">Display Welcome Dialog Again?</span>"
+msgid ""
+"<span weight=\"bold\" size=\"larger\">Display Welcome Dialog Again?</span>"
msgstr "<span weight=\"bold\" size=\"larger\">×צ×× ×××רת ×©× ××-ש×× ×ר××?</span>"
#: gnucash/gtkbuilder/dialog-new-user.glade:103
msgid ""
-"If you press the <i>Yes</i> button, the <i>Welcome to GnuCash</i> dialog will be "
-"displayed again next time you start GnuCash. If you press the <i>No</i> button, it "
-"will not be displayed again."
+"If you press the <i>Yes</i> button, the <i>Welcome to GnuCash</i> dialog will "
+"be displayed again next time you start GnuCash. If you press the <i>No</i> "
+"button, it will not be displayed again."
msgstr ""
-"××§×©× ×¢× <i>××</i>, ×××× <i>×ר×××× ××××× ××× ×קש</i> ×××¦× ×©× ×ת. ××§×©× ×¢× <i>××</i>, "
-"××××× ×× ×××¦× ×©××."
+"××§×©× ×¢× <i>××</i>, ×××× <i>×ר×××× ××××× ××× ×קש</i> ×××¦× ×©× ×ת. ××§×©× ×¢× <i>××</"
+"i>, ××××× ×× ×××¦× ×©××."
#: gnucash/gtkbuilder/dialog-new-user.glade:214
msgid "<span size=\"larger\" weight=\"bold\">Welcome to GnuCash!</span>"
@@ -14684,12 +14932,12 @@ msgstr "<span size=\"larger\" weight=\"bold\">×ר×××× ××××× ××× ××§
#: gnucash/gtkbuilder/dialog-new-user.glade:234
msgid ""
"There are some predefined actions available that most new users prefer to get "
-"started with GnuCash. Select one of these actions from below and click the <i>OK</"
-"i> button or press the <i>Cancel</i> button if you don't want to perform any of "
-"them."
+"started with GnuCash. Select one of these actions from below and click the "
+"<i>OK</i> button or press the <i>Cancel</i> button if you don't want to "
+"perform any of them."
msgstr ""
-"×§×××ת ××× ×¤×¢×××ת ××××ר×ת ×ר×ש שר×× ××שת×ש×× ×××ש×× ××¢××פ×× ××ת××× ××× ××× ××§×ש. × × "
-"××××ר ××ת ××פע×××ת ×××× ×××× ××××§×ש ×¢× ×××¦× <i>××ש×ר</i> ×× ×××§×ש ×¢× ××××¦× "
+"×§×××ת ××× ×¤×¢×××ת ××××ר×ת ×ר×ש שר×× ××שת×ש×× ×××ש×× ××¢××פ×× ××ת××× ××× ××× ××§×ש. "
+"× × ××××ר ××ת ××פע×××ת ×××× ×××× ××××§×ש ×¢× ×××¦× <i>××ש×ר</i> ×× ×××§×ש ×¢× ××××¦× "
"<i>×××××</i> ××× ××שת×ש ×××ת ×××."
#: gnucash/gtkbuilder/dialog-new-user.glade:248
@@ -14736,7 +14984,8 @@ msgstr "_×ש××× ××ת"
msgid "Close _Order"
msgstr "ס××רת _×××× ×"
-#: gnucash/gtkbuilder/dialog-order.glade:231 gnucash/gtkbuilder/dialog-order.glade:577
+#: gnucash/gtkbuilder/dialog-order.glade:231
+#: gnucash/gtkbuilder/dialog-order.glade:577
msgid "Order Information"
msgstr "××××¢ ×××× ×"
@@ -14745,7 +14994,8 @@ msgid "Order Entries"
msgstr "רש×××ת ×××× ×"
#: gnucash/gtkbuilder/dialog-order.glade:533
-msgid "The order ID number. If left blank a reasonable number will be chosen for you"
+msgid ""
+"The order ID number. If left blank a reasonable number will be chosen for you"
msgstr "×××× ×××× ×. ×× ×ש×× ××ש×ר ר××§, ××ער×ת תק××¢ ×ספר ××××¤× ×××××××"
#: gnucash/gtkbuilder/dialog-payment.glade:154
@@ -14775,8 +15025,9 @@ msgstr "×ס××××"
msgid ""
"The amount to pay for this invoice.\n"
"\n"
-"If you have selected an invoice, GnuCash will propose the amount still due for it. "
-"You can change this amount to create a partial payment or an over-payment.\n"
+"If you have selected an invoice, GnuCash will propose the amount still due for "
+"it. You can change this amount to create a partial payment or an over-"
+"payment.\n"
"\n"
"In case of an over-payment or if no invoice was selected, GnuCash will "
"automatically assign the remaining amount to the first unpaid invoice for this "
@@ -14784,11 +15035,11 @@ msgid ""
msgstr ""
"×ס××× ×תש××× ×××× ×ש××× ×ת ××.\n"
"\n"
-"×× × ×××¨× ×ש××× ×ת, ×× ××§×ש ×צ×× ×ת ×ס××× ×©××¨× ×©××× ×××× ×. × ××ª× ××©× ×ת ס××× ×× ××צ×רת "
-"תש××× ×××§× ×× ×ª×©××× ×¢×××£.\n"
+"×× × ×××¨× ×ש××× ×ת, ×× ××§×ש ×צ×× ×ת ×ס××× ×©××¨× ×©××× ×××× ×. × ××ª× ××©× ×ת ס××× ×× "
+"××צ×רת תש××× ×××§× ×× ×ª×©××× ×¢×××£.\n"
"\n"
-"×××§×¨× ×©× ×ª×©××× ×¢×××£ ×× ××××× ××× × ×××¨× ×ש××× ×ת, ×× ××§×ש ××§×¦× ××××¤× ××××××× ×ת ×ס××× "
-"×× ×תר ×ש××× ×ת ×ר×ש×× × ×©×¢××× ×× ×©×××× ×ספק."
+"×××§×¨× ×©× ×ª×©××× ×¢×××£ ×× ××××× ××× × ×××¨× ×ש××× ×ת, ×× ××§×ש ××§×¦× ××××¤× ××××××× ×ת "
+"×ס××× ×× ×תר ×ש××× ×ת ×ר×ש×× × ×©×¢××× ×× ×©×××× ×ספק."
#: gnucash/gtkbuilder/dialog-payment.glade:457
msgid "<b>Amount</b>"
@@ -14868,7 +15119,8 @@ msgid "Include _grand total"
msgstr "××××× _ס××× ××××"
#: gnucash/gtkbuilder/dialog-preferences.glade:192
-msgid "Show a grand total of all accounts converted to the default report currency."
+msgid ""
+"Show a grand total of all accounts converted to the default report currency."
msgstr "×צ×ת ס××× ×××× ×©× ×× ××ש××× ×ת ש××××¨× ×××××¢ ×ר×רת ×××××."
#: gnucash/gtkbuilder/dialog-preferences.glade:205
@@ -14877,10 +15129,11 @@ msgstr "××××ת ס×××××× _×× ×ספ×××"
#: gnucash/gtkbuilder/dialog-preferences.glade:211
msgid ""
-"If checked, non-currency commodities will be shown in the summary bar. If clear, "
-"only currencies will be shown."
+"If checked, non-currency commodities will be shown in the summary bar. If "
+"clear, only currencies will be shown."
msgstr ""
-"××××× ×ת××ת ×ס×××× ×¡××× ×, ס××ר×ת ×× ×ספ××ת ××צ×× ×סר×× ×ס××××. ××רת רק ××××¢×ת ××צ××."
+"××××× ×ת××ת ×ס×××× ×¡××× ×, ס××ר×ת ×× ×ספ××ת ××צ×× ×סר×× ×ס××××. ××רת רק ××××¢×ת "
+"××צ××."
#: gnucash/gtkbuilder/dialog-preferences.glade:227
msgid "<b>Start Date</b>"
@@ -14912,11 +15165,11 @@ msgstr "×_×ס×:"
#: gnucash/gtkbuilder/dialog-preferences.glade:296
msgid ""
-"Use the specified relative ending date for profit/loss calculations. Also use this "
-"date for net assets calculations."
+"Use the specified relative ending date for profit/loss calculations. Also use "
+"this date for net assets calculations."
msgstr ""
-"ש×××ש ×ת×ר×× ×ס××× ××××¡× ×©× ×§××¢ ×××ש××× ×¨×××/×פס×. ש×××ש ×ת×ר×× ×× ×× ×××ש××× ×¨××ש "
-"× ××."
+"ש×××ש ×ת×ר×× ×ס××× ××××¡× ×©× ×§××¢ ×××ש××× ×¨×××/×פס×. ש×××ש ×ת×ר×× ×× ×× ×××ש××× "
+"ר××ש × ××."
#: gnucash/gtkbuilder/dialog-preferences.glade:310
msgid "Ab_solute:"
@@ -14924,11 +15177,11 @@ msgstr "×_××××:"
#: gnucash/gtkbuilder/dialog-preferences.glade:316
msgid ""
-"Use the specified absolute ending date for profit/loss calculations. Also use this "
-"date for net assets calculations."
+"Use the specified absolute ending date for profit/loss calculations. Also use "
+"this date for net assets calculations."
msgstr ""
-"ש×××ש ×ת×ר×× ×¡××× ×××××× ×©× ×§××¢ ×××ש××× ×¨×××/×פס×. ש×××ש ×ת×ר×× ×× ×× ×××ש××× ×¨××ש "
-"× ××."
+"ש×××ש ×ת×ר×× ×¡××× ×××××× ×©× ×§××¢ ×××ש××× ×¨×××/×פס×. ש×××ש ×ת×ר×× ×× ×× ×××ש××× "
+"ר××ש × ××."
#: gnucash/gtkbuilder/dialog-preferences.glade:428
msgid "Accounting Period"
@@ -15018,11 +15271,12 @@ msgstr "_××§×××:"
#: gnucash/gtkbuilder/dialog-preferences.glade:799
msgid ""
"The character that will be used between components of an account name. A legal "
-"value is any single character except letters and numbers, or any of the following "
-"strings: \"colon\" \"slash\", \"backslash\", \"dash\" and \"period\"."
+"value is any single character except letters and numbers, or any of the "
+"following strings: \"colon\" \"slash\", \"backslash\", \"dash\" and \"period\"."
msgstr ""
-"××ª× ××פר×× ××× ×¨×××× ×©× ××ש×××. ×¢×¨× ×ª×§×× ×××× ×× ×ª× ×××× ×××¢× ××ת××ת ××ספר××, ×× ×× "
-"××ת ××××ר×××ת ××××ת: \"× ×§××ת×××\" \"×§× × ×××\", \"×××ס×\", \"××§×£\" × \"× ×§×××\"."
+"××ª× ××פר×× ××× ×¨×××× ×©× ××ש×××. ×¢×¨× ×ª×§×× ×××× ×× ×ª× ×××× ×××¢× ××ת××ת ××ספר××, "
+"×× ×× ××ת ××××ר×××ת ××××ת: \"× ×§××ת×××\" \"×§× × ×××\", \"×××ס×\", \"××§×£\" × "
+"\"× ×§×××\"."
#: gnucash/gtkbuilder/dialog-preferences.glade:883
msgid "<b>Fancy Date Format</b>"
@@ -15053,7 +15307,8 @@ msgid "When a date is entered without year, it should be taken:"
msgstr "××שר ת×ר×× ×××× ××× ×©× ×, ××©× × ×ª××§× ×:"
#: gnucash/gtkbuilder/dialog-preferences.glade:991
-msgid "Dates will be completed so that they are within the current calendar year."
+msgid ""
+"Dates will be completed so that they are within the current calendar year."
msgstr "ת×ר×××× ××ש××× ×× ×©×××× ××ס×רת ××©× × ××§×× ×ר×ת ×× ××××ת."
#: gnucash/gtkbuilder/dialog-preferences.glade:1005
@@ -15130,7 +15385,8 @@ msgid "_Automatic decimal point"
msgstr "_× ×§××× ×¢×©×¨×× ×ת ×××××××ת"
#: gnucash/gtkbuilder/dialog-preferences.glade:1340
-msgid "Automatically insert a decimal point into values that are entered without one."
+msgid ""
+"Automatically insert a decimal point into values that are entered without one."
msgstr "×××¡×¤× ×××××××ת ×©× × ×§××× ×¢×©×¨×× ×ת ×ער××× ×©×××× × ××× × ×§××× ×¢×©×¨×× ×ת."
#: gnucash/gtkbuilder/dialog-preferences.glade:1353
@@ -15183,8 +15439,8 @@ msgstr "×צ×ת ש××ת ××ש×ר ש××_×¨× ×××××××ת"
#: gnucash/gtkbuilder/dialog-preferences.glade:1542
msgid ""
-"If active, GnuCash shows a confirmation question each time the auto-save feature is "
-"started. Otherwise no extra explanation is shown."
+"If active, GnuCash shows a confirmation question each time the auto-save "
+"feature is started. Otherwise no extra explanation is shown."
msgstr ""
"××××× ×××פשר×ת ××פע××, ×× ××§×ש ×צ×× ×©××ת ××ש×ר ××× ×¤×¢× ×©×ª××× ×ª ×ש×××¨× ××××××××ת "
"×ת××××. ××רת ×× ×××¦× ×ס×ר × ×סף."
@@ -15221,9 +15477,10 @@ msgstr "×פש×ר ×§××× ×©××× ××פק××× ×תצ××ת ××××"
#: gnucash/gtkbuilder/dialog-preferences.glade:1759
msgid ""
-"Enable horizontal grid lines on table displays. These will mainly be tree views "
-"like the Accounts page."
-msgstr "×פש×ר ×§××× ×©××× ××פק×ת ×תצ××ת ××××. ××¢×קר ×××× ×¢× ×ª×¦×××ת ×¢×¥ ××× ×¢××× ×ש××× ×ת."
+"Enable horizontal grid lines on table displays. These will mainly be tree "
+"views like the Accounts page."
+msgstr ""
+"×פש×ר ×§××× ×©××× ××פק×ת ×תצ××ת ××××. ××¢×קר ×××× ×¢× ×ª×¦×××ת ×¢×¥ ××× ×¢××× ×ש××× ×ת."
#: gnucash/gtkbuilder/dialog-preferences.glade:1773
msgid "Enable vertical grid lines on table displays"
@@ -15231,9 +15488,10 @@ msgstr "×פש×ר ×§××× ×©××× ×× ×××× ×תצ××ת ××××"
#: gnucash/gtkbuilder/dialog-preferences.glade:1777
msgid ""
-"Enable vertical grid lines on table displays. These will mainly be tree views like "
-"the Accounts page."
-msgstr "×פש×ר ×§××× ×©××× ×× ×××× ×תצ××ת ××××. ××¢×קר ×××× ×¢× ×ª×¦×××ת ×¢×¥ ××× ×¢××× ×ש××× ×ת."
+"Enable vertical grid lines on table displays. These will mainly be tree views "
+"like the Accounts page."
+msgstr ""
+"×פש×ר ×§××× ×©××× ×× ×××× ×תצ××ת ××××. ××¢×קר ×××× ×¢× ×ª×¦×××ת ×¢×¥ ××× ×¢××× ×ש××× ×ת."
#: gnucash/gtkbuilder/dialog-preferences.glade:1886
msgid "<b>Checks</b>"
@@ -15274,11 +15532,11 @@ msgstr "××§×©× ×¢× '_×× ×ר' ××¢×××¨× ××ª× ××¢× ×¨××§×"
#: gnucash/gtkbuilder/dialog-preferences.glade:2034
msgid ""
"If checked, pressing the 'Enter' key will move to the location of the blank "
-"transaction in the register. If clear, pressing the 'Enter' key will move down one "
-"row."
+"transaction in the register. If clear, pressing the 'Enter' key will move down "
+"one row."
msgstr ""
-"××××× ×ת××ת ×ס×××× ×¡××× ×, ××§×©× ×¢× ×××¦× ×'×× ×ר' תע××ר ×ת ×ס×× ×רש××ת ××ª× ××¢× ×ר××§× "
-"×××××. ××רת, ××§×©× ×¢× '×× ×ר' תע××ר ש××¨× ××ת ×××."
+"××××× ×ת××ת ×ס×××× ×¡××× ×, ××§×©× ×¢× ×××¦× ×'×× ×ר' תע××ר ×ת ×ס×× ×רש××ת ××ª× ××¢× "
+"×ר××§× ×××××. ××רת, ××§×©× ×¢× '×× ×ר' תע××ר ש××¨× ××ת ×××."
#: gnucash/gtkbuilder/dialog-preferences.glade:2047
msgid "_Auto-raise lists"
@@ -15318,8 +15576,8 @@ msgstr "תש××× _×ר××ס ×שר×× ×××××××"
#: gnucash/gtkbuilder/dialog-preferences.glade:2152
msgid ""
-"After reconciling a credit card statement, prompt the user to enter a credit card "
-"payment."
+"After reconciling a credit card statement, prompt the user to enter a credit "
+"card payment."
msgstr "×××ר ××צ××¢ ×ת××ת ××× ×ר××ס ×שר××, ××קש ×××שת×ש ××××× ×ª×©××× ××ר××ס ×שר××."
#: gnucash/gtkbuilder/dialog-preferences.glade:2165
@@ -15331,7 +15589,8 @@ msgid ""
"Always open the reconcile dialog using today's date for the statement date, "
"regardless of previous reconciliations."
msgstr ""
-"פת××ת ת××ת ××-×ש×× '×ת×××ת' ×¢× ×ª×ר×× '××××' ×ת×ר×× ××××, ××× ×ª××ת ××ת×××ת ××§××××ת."
+"פת××ת ת××ת ××-×ש×× '×ת×××ת' ×¢× ×ª×ר×× '××××' ×ת×ר×× ××××, ××× ×ª××ת ××ת×××ת "
+"××§××××ת."
#: gnucash/gtkbuilder/dialog-preferences.glade:2197
msgid "<b>Graphics</b>"
@@ -15343,11 +15602,11 @@ msgstr "_ש×××ש ×ער×ת צ××¢×× ×××× ×ת ×©× ×× ××§×ש"
#: gnucash/gtkbuilder/dialog-preferences.glade:2213
msgid ""
-"GnuCash uses a yellow/green theme by default for register windows. Uncheck this if "
-"you want to use the system color theme instead."
+"GnuCash uses a yellow/green theme by default for register windows. Uncheck "
+"this if you want to use the system color theme instead."
msgstr ""
-"×× ××§×ש ×שת×ש ××ר×רת ×××× ××××× ××××× ×צ××¢× ×¦×××/×ר××§. ×¢× ×× ×ª ××שת×ש ×צ××¢× ×ר×רת "
-"×××× ×©× ××ער×ת, ×ש ××ס×ר ×ת ×ס××××."
+"×× ××§×ש ×שת×ש ××ר×רת ×××× ××××× ××××× ×צ××¢× ×¦×××/×ר××§. ×¢× ×× ×ª ××שת×ש ×צ××¢× "
+"×ר×רת ×××× ×©× ××ער×ת, ×ש ××ס×ר ×ת ×ס××××."
#: gnucash/gtkbuilder/dialog-preferences.glade:2226
msgid "Double _mode colors alternate with transactions"
@@ -15355,8 +15614,8 @@ msgstr "××¦× _צ××¢×× ×פ×× ××©×ª× × ×¢× ××ª× ××¢×ת"
#: gnucash/gtkbuilder/dialog-preferences.glade:2232
msgid ""
-"Alternate the primary and secondary colors by transaction instead of by alternating "
-"by row."
+"Alternate the primary and secondary colors by transaction instead of by "
+"alternating by row."
msgstr "×××פת ×צ××¢×× ×ר×ש×× ××× ××××©× ××× ×¢× ×¤× ×ª× ××¢× ×××§×× ×¢× ×¤× ×©×ר×ת ×ס×ר××××."
#: gnucash/gtkbuilder/dialog-preferences.glade:2245
@@ -15385,12 +15644,12 @@ msgstr "_×ª× ××¢×ת עת××××ת ×××ר ×ª× ××¢× ×¨××§×"
#: gnucash/gtkbuilder/dialog-preferences.glade:2312
msgid ""
-"If checked, transactions with a date in the future will be displayed at the bottom "
-"of the register after the blank transaction. If clear, the blank transaction will "
-"be at the bottom of the register after all transactions."
+"If checked, transactions with a date in the future will be displayed at the "
+"bottom of the register after the blank transaction. If clear, the blank "
+"transaction will be at the bottom of the register after all transactions."
msgstr ""
-"××××× ×ת××ת ×ס×××× ×¡××× ×, ×ª× ××¢×ת ××¢××ת ת×ר×× ×¢×ª××× ×ª×צ×× × ×ת×ת×ת ××××× ×××ר ××ª× ××¢× "
-"×ר××§×. ××רת, ××ª× ××¢× ×ר××§× ×ª×פ××¢ ×ס××£ ××××× ×××ר ×× ×תר ××ª× ××¢×ת."
+"××××× ×ת××ת ×ס×××× ×¡××× ×, ×ª× ××¢×ת ××¢××ת ת×ר×× ×¢×ª××× ×ª×צ×× × ×ת×ת×ת ××××× ×××ר "
+"××ª× ××¢× ×ר××§×. ××רת, ××ª× ××¢× ×ר××§× ×ª×פ××¢ ×ס××£ ××××× ×××ר ×× ×תר ××ª× ××¢×ת."
#: gnucash/gtkbuilder/dialog-preferences.glade:2350
msgid "<b>Default Style</b>"
@@ -15418,9 +15677,10 @@ msgstr "××¦× ×©××¨× _×פ×××"
#: gnucash/gtkbuilder/dialog-preferences.glade:2485
msgid ""
-"Show two lines of information for each transaction instead of one. Does not affect "
-"expanded transactions."
-msgstr "×צ×ת ×©×ª× ×©×ר×ת ××××¢ ×¢××ר ×× ×ª× ××¢× ×××§×× ×©××¨× ××ת. ×× ×שפ××¢ ×¢× ×ª× ××¢×ת ××ר×××ת."
+"Show two lines of information for each transaction instead of one. Does not "
+"affect expanded transactions."
+msgstr ""
+"×צ×ת ×©×ª× ×©×ר×ת ××××¢ ×¢××ר ×× ×ª× ××¢× ×××§×× ×©××¨× ××ת. ×× ×שפ××¢ ×¢× ×ª× ××¢×ת ××ר×××ת."
#: gnucash/gtkbuilder/dialog-preferences.glade:2498
msgid "Register opens in a new _window"
@@ -15428,8 +15688,8 @@ msgstr "×××× × ×¤×ª× ××××× _××ש"
#: gnucash/gtkbuilder/dialog-preferences.glade:2504
msgid ""
-"If checked, each register will be opened in its own top level window. If clear, the "
-"register will be opened in the current window."
+"If checked, each register will be opened in its own top level window. If "
+"clear, the register will be opened in the current window."
msgstr ""
"××××× ×ת××ת ×ס×××× ×¡××× ×, ×× ×××× ××¤×ª× ××××× ×¨×× ×¢×××× × ×ש××. ××רת, ××××× ××¤×ª× "
"××××× ×× ××××."
@@ -15440,14 +15700,14 @@ msgstr "_×צ×ת ש××ת ×ש××× ×ת ××©× × ××××"
#: gnucash/gtkbuilder/dialog-preferences.glade:2523
msgid ""
-"If checked, only the names of the leaf accounts are displayed in the register and "
-"in the account selection popup. The default behaviour is to display the full name, "
-"including the path in the account tree. Checking this option implies that you use "
-"unique leaf names."
+"If checked, only the names of the leaf accounts are displayed in the register "
+"and in the account selection popup. The default behaviour is to display the "
+"full name, including the path in the account tree. Checking this option "
+"implies that you use unique leaf names."
msgstr ""
-"××××× ×ת××ת ×ס×××× ×¡××× ×, רק ש××ת ×ש××× ×ת ×××©× × ××צ×× ××××× ×××××× ×××קפץ ××××רת "
-"×ש××× ×ת. ××ר×רת ××××, ×××¦× ×©× ××ש××× ××××, ×××× ×× ×ª×× ×תרש×× ××ש××× ×ת. ס×××× ×פשר×ת "
-"×× ×ר××ת ×¢× ×©×××ש ×ש××ת ×ש××× ×ת ××©× × ×××××××."
+"××××× ×ת××ת ×ס×××× ×¡××× ×, רק ש××ת ×ש××× ×ת ×××©× × ××צ×× ××××× ×××××× ×××קפץ "
+"××××רת ×ש××× ×ת. ××ר×רת ××××, ×××¦× ×©× ××ש××× ××××, ×××× ×× ×ª×× ×תרש×× ××ש××× ×ת. "
+"ס×××× ×פשר×ת ×× ×ר××ת ×¢× ×©×××ש ×ש××ת ×ש××× ×ת ××©× × ×××××××."
#. Register2 feature
#: gnucash/gtkbuilder/dialog-preferences.glade:2540
@@ -15492,11 +15752,11 @@ msgstr "××× ××¤×ª× ×_×××× ××ש"
#: gnucash/gtkbuilder/dialog-preferences.glade:2807
msgid ""
-"If checked, each report will be opened in its own top level window. If clear, the "
-"report will be opened in the current window."
+"If checked, each report will be opened in its own top level window. If clear, "
+"the report will be opened in the current window."
msgstr ""
-"××××× ×ת××ת ×ס×××× ×¡××× ×, ×× ××× ××¤×ª× ××××× × ×¤×¨× ×ר×× ×¢×××× ×. ××רת, ×××× ××¤×ª× ××××× "
-"×× ××××."
+"××××× ×ת××ת ×ס×××× ×¡××× ×, ×× ××× ××¤×ª× ××××× × ×¤×¨× ×ר×× ×¢×××× ×. ××רת, ×××× ××¤×ª× "
+"××××× ×× ××××."
#: gnucash/gtkbuilder/dialog-preferences.glade:2836
msgid "<b>Default zoom level</b>"
@@ -15561,9 +15821,10 @@ msgstr "×צ×ת צ×××ת ס×××¨× ××ש×× ××ת ×_×××רת"
#: gnucash/gtkbuilder/dialog-preferences.glade:3174
msgid ""
-"Show a close button on each notebook tab. These function identically to the 'Close' "
-"menu item."
-msgstr "×צ×, ×××¦× ×¡×××¨× ××× ××ת ××ש×× ××ת ××××רת. פ×× ×§×¦×× ×× ××× ×פר×× ×תפר×× 'ס××ר×'."
+"Show a close button on each notebook tab. These function identically to the "
+"'Close' menu item."
+msgstr ""
+"×צ×, ×××¦× ×¡×××¨× ××× ××ת ××ש×× ××ת ××××רת. פ×× ×§×¦×× ×× ××× ×פר×× ×תפר×× 'ס××ר×'."
#: gnucash/gtkbuilder/dialog-preferences.glade:3196
msgid "_Width:"
@@ -15571,8 +15832,8 @@ msgstr "_ר×××:"
#: gnucash/gtkbuilder/dialog-preferences.glade:3217
msgid ""
-"If the text in the tab is longer than this value (the test is approximate) then the "
-"tab label will have the middle cut and replaced with an ellipsis."
+"If the text in the tab is longer than this value (the test is approximate) "
+"then the tab label will have the middle cut and replaced with an ellipsis."
msgstr ""
"××××× ××××× ××ש×× ×ת ×ר×× ××¢×¨× ×× (×××××§× ×ש×ערת) ××× ×ª×××ת ××ש×× ×ת ת×××ª× ×××צע "
"××××× ×××××£ ×ש××ש × ×§×××ת."
@@ -15659,8 +15920,8 @@ msgid ""
"Keep the last price of each fiscal quarter if present before date. The fiscal "
"quarter is derived from the accounting period end date."
msgstr ""
-"ש××רת ××××ר ×××ר×× ××× ×¨××¢×× ×ספ××, ×× ×§×××, ××¤× × ×ת×ר××. ר××¢×× ××ספ×× × ×××ר ×ת×ר×× "
-"ס××£ ×תק××¤× ××ש××× ××ת."
+"ש××רת ××××ר ×××ר×× ××× ×¨××¢×× ×ספ××, ×× ×§×××, ××¤× × ×ת×ר××. ר××¢×× ××ספ×× × ×××ר "
+"×ת×ר×× ×¡××£ ×תק××¤× ××ש××× ××ת."
#: gnucash/gtkbuilder/dialog-price.glade:519
msgid "Last of _Period"
@@ -15668,11 +15929,11 @@ msgstr "ס××£ _תק××¤× ×"
#: gnucash/gtkbuilder/dialog-price.glade:523
msgid ""
-"Keep the last price of each fiscal period if present before date. The fiscal period "
-"is derived from the accounting period end date."
+"Keep the last price of each fiscal period if present before date. The fiscal "
+"period is derived from the accounting period end date."
msgstr ""
-"ש××רת ××××ר ×××ר×× ××× ×¨××¢×× ×ספ××, ×× ×§×××, ××¤× × ×ת×ר××. ר××¢×× ××ספ×× × ×××ר ×ת×ר×× "
-"ס××£ ×תק××¤× ××ש××× ××ת."
+"ש××רת ××××ר ×××ר×× ××× ×¨××¢×× ×ספ××, ×× ×§×××, ××¤× × ×ת×ר××. ר××¢×× ××ספ×× × ×××ר "
+"×ת×ר×× ×¡××£ ×תק××¤× ××ש××× ××ת."
#: gnucash/gtkbuilder/dialog-price.glade:536
msgid "_Scaled"
@@ -15680,9 +15941,9 @@ msgstr "_×ש××§××"
#: gnucash/gtkbuilder/dialog-price.glade:540
msgid ""
-"With the scaled option, prices are removed relative to the date selected. 'One a "
-"month' is used for dates older than a year and 'One a week' is used for dates older "
-"than six months to a year."
+"With the scaled option, prices are removed relative to the date selected. 'One "
+"a month' is used for dates older than a year and 'One a week' is used for "
+"dates older than six months to a year."
msgstr ""
"××פשר×ת ×§× × ××××, ××××ר×× ××סר×× ×××ס ×ת×ר×× ×©× ××ר. '××× ××××ש' ×ש×ש ×ת×ר×××× "
"ש××××× ××©× × ×'××× ×ש×××¢' ×ש×ש ×ת×ר×××× ×©×××× ××תר ×××¦× ×©× × ××¢× ×©× ×."
@@ -15728,8 +15989,8 @@ msgid ""
"If activated, include application added prices.\n"
"\n"
"These prices were added so that there's always a \"nearest in time\" price for "
-"every multi-commodity transaction so that the Accounts page and reports are able to "
-"correctly report values so removing them may make this less reliable."
+"every multi-commodity transaction so that the Accounts page and reports are "
+"able to correctly report values so removing them may make this less reliable."
msgstr ""
"××××× ×××פשר×ת ××פע××, ××××× ×××ר×× ×©× ××¡×¤× ×¢× ××× ×××ש××.\n"
"\n"
@@ -15780,12 +16041,13 @@ msgstr "ש××רת ת×× ×ת ××××× ××ת××ת ××ש×ת"
#: gnucash/gtkbuilder/dialog-print-check.glade:188
msgid ""
-"Enter a title for this custom format. This title will appear in the \"Check format"
-"\" selector of the Print Check dialog. Using the title of an existing custom format "
-"will cause that format to be overwritten."
+"Enter a title for this custom format. This title will appear in the \"Check "
+"format\" selector of the Print Check dialog. Using the title of an existing "
+"custom format will cause that format to be overwritten."
msgstr ""
-"××× ×ª ××תרת ×¢××ר ת×× ×ת ××ת××ת ××ש×ת ××. ××תרת ×× ×ª×פ××¢ ×××רר \"ת×× ×ת ××××§×\" ×©× ×ª××ת "
-"××-×ש×× ×××קת ××פס×. ש×××ש ×××תרת ×©× ×ª×× ×ת ××ת××ת ××ש×ת ×§×××ת ××ר×× ××ר×סת ת×× ×ת ××."
+"××× ×ª ××תרת ×¢××ר ת×× ×ת ××ת××ת ××ש×ת ××. ××תרת ×× ×ª×פ××¢ ×××רר \"ת×× ×ת ××××§×\" ×©× "
+"ת××ת ××-×ש×× ×××קת ××פס×. ש×××ש ×××תרת ×©× ×ª×× ×ת ××ת××ת ××ש×ת ×§×××ת ××ר×× "
+"××ר×סת ת×× ×ת ××."
#: gnucash/gtkbuilder/dialog-print-check.glade:228
msgid "Inches"
@@ -16012,10 +16274,11 @@ msgstr "××פ×ס ×××ר×ת"
#: gnucash/gtkbuilder/dialog-reset-warnings.glade:88
msgid ""
"You have requested that the following warning dialogs not be presented. To re-"
-"enable any of these dialogs, select the check box next to the dialog, then click OK."
+"enable any of these dialogs, select the check box next to the dialog, then "
+"click OK."
msgstr ""
-"××××ר שת×××ת ×××××¨× ××××ת ×× ××צ××. ××× ××פע×× ×××ש ××ת ×ת×××ת ××-×ש×× ××××, × × "
-"××××ר ×ת××ת ×ס×××× ×©××× ××-×ש×× ××××ר ××× ×××§×ש ×¢× '××ש×ר'."
+"××××ר שת×××ת ×××××¨× ××××ת ×× ××צ××. ××× ××פע×× ×××ש ××ת ×ת×××ת ××-×ש×× ××××, "
+"× × ××××ר ×ת××ת ×ס×××× ×©××× ××-×ש×× ××××ר ××× ×××§×ש ×¢× '××ש×ר'."
#: gnucash/gtkbuilder/dialog-reset-warnings.glade:122
msgid "_Unselect All"
@@ -16091,12 +16354,14 @@ msgstr "×××קת ×ש×××"
#: gnucash/gtkbuilder/dialog-sx.glade:58
msgid ""
-"The following Scheduled Transactions reference the deleted account and must now be "
-"corrected. Press OK to edit them."
+"The following Scheduled Transactions reference the deleted account and must "
+"now be corrected. Press OK to edit them."
msgstr ""
-"××ª× ××¢×ת ×××××ר××ת ××××ת ××¤× ×ת ××ש××× ×ת ×©× ×××§× ×× ×רש ת××§××. ×ער××× × × ×××§×ש ×¢× ×××§××."
+"××ª× ××¢×ת ×××××ר××ת ××××ת ××¤× ×ת ××ש××× ×ת ×©× ×××§× ×× ×רש ת××§××. ×ער××× × × ×××§×ש ×¢× "
+"×××§××."
-#: gnucash/gtkbuilder/dialog-sx.glade:126 gnucash/gtkbuilder/gnc-frequency.glade:171
+#: gnucash/gtkbuilder/dialog-sx.glade:126
+#: gnucash/gtkbuilder/gnc-frequency.glade:171
#: gnucash/gtkbuilder/gnc-frequency.glade:777
#: gnucash/report/report-system/trep-engine.scm:293
#: gnucash/report/standard-reports/category-barchart.scm:130
@@ -16427,7 +16692,7 @@ msgid ""
"Description column or Association column to open the Association"
msgstr ""
" ×××¢×ר ××ª× ××¢×, × × ×××§×ש ××§×©× ×פ××× ×¢× ×רש×××\n"
-"××¢×××ת ×ת××ר ×× ×¢× ×¢×××ת ×צר××¤× ××× ××צ×× ××ת×"
+"××¢×××ת ×ת×××ר ×× ×¢× ×¢×××ת ×צר××¤× ××× ××צ×× ××ת×"
#: gnucash/gtkbuilder/dialog-transfer.glade:8
msgid "Transfer Funds"
@@ -16503,7 +16768,8 @@ msgid "Vendor Number: "
msgstr "×ספר ספק: "
#: gnucash/gtkbuilder/dialog-vendor.glade:198
-msgid "The vendor ID number. If left blank a reasonable number will be chosen for you"
+msgid ""
+"The vendor ID number. If left blank a reasonable number will be chosen for you"
msgstr "×××× ×ספק. ×× ×¨××§ ×ספר ×××§××¢ ××××¤× ×××××××"
#: gnucash/gtkbuilder/dialog-vendor.glade:632
@@ -17048,131 +17314,101 @@ msgid "Edit budget for all periods"
msgstr "ער××ת תקצ×× ××× ×תק×פ×ת"
#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:80
-msgid ""
-"\n"
-" Use a fixed value or apply transformation for all periods.\n"
-" "
-msgstr ""
-"\n"
-" ש×××ש ××¢×¨× ×§×××¢ ×× ×××ת ×××¨× ××× ×תק×פ×ת.\n"
-" "
+msgid "Use a fixed value or apply transformation for all periods."
+msgstr "ש×××ש ××¢×¨× ×§×××¢ ×× ×××ת ×××¨× ××× ×תק×פ×ת."
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:109
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:107
msgid "Value:"
msgstr "ער×:"
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:145
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:143
msgid "Replace"
msgstr "×××פ×"
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:149
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:147
msgid ""
-"\n"
-" Replace the budget for all periods with new 'value'. Use "
-"empty value to unset budget for the accounts.\n"
-" "
+"Replace the budget for all periods with new 'value'. Use empty value to unset "
+"budget for the accounts."
msgstr ""
-"\n"
-" ×××פת ×תקצ×× ××× ×תק×פ×ת ×'ער×' ××ש. × × ××שת×ש ××¢×¨× ×¨××§ ××פ×ס "
-"תקצ×× ××ש××× ×ת.\n"
-" "
+"×××פת ×תקצ×× ××× ×תק×פ×ת ×'ער×' ××ש. × × ××שת×ש ××¢×¨× ×¨××§ ××פ×ס ×תקצ×× ××ש××× ×ת."
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:163
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:159
msgid "Add"
msgstr "××ספ×"
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:167
-msgid ""
-"\n"
-" Add 'value' to current budget for each period\n"
-" "
-msgstr ""
-"\n"
-" ××ספת 'ער×' ×תקצ×× × ×××× ××× ×ª×§×פ×\n"
-" "
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:163
+msgid "Add 'value' to current budget for each period"
+msgstr "××ספת 'ער×' ×תקצ×× × ×××× ××× ×ª×§×פ×"
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:182
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:176
msgid "Multiply"
msgstr "×פ×"
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:186
-msgid ""
-"\n"
-" Multiply current budget for each period by 'value'\n"
-" "
-msgstr ""
-"\n"
-" ××פ×ת תקצ×× × ×××× ××× ×ª×§××¤× ×'ער×'\n"
-" "
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:180
+msgid "Multiply current budget for each period by 'value'"
+msgstr "××פ×ת תקצ×× × ×××× ××× ×ª×§××¤× ×'ער×'"
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:209
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:368
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:201
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:360
msgid "The number of leading digits to keep when rounding"
msgstr "×ספר ספר×ת ××××××ת ×ש×××¨× ×עת ×¢××× ×¡×¤×¨×ת"
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:229
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:357
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:221
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:349
msgid "Significant Digits:"
msgstr "ספר×ת ×ש××¢×ת××ת:"
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:253
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:245
msgid "Estimate Budget Values"
msgstr "×ער×ת ער×× ×תקצ××"
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:318
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:310
msgid ""
"GnuCash will estimate budget values for the selected accounts from past "
"transactions."
msgstr "×× ××§×ש ×ער×× ×ת ער×× ×ª×§×¦×× ××ש××× ×ת ×©× ×××¨× ××¤× ×ª× ××¢×ת ××¢×ר."
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:397
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:389
msgid "Use Average"
msgstr "ש×××ש ××××צע"
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:401
-msgid ""
-"\n"
-" Use the average value over all actual periods for all projected "
-"periods\n"
-" "
-msgstr ""
-"\n"
-" ש×××ש ××¢×¨× ×××צע '×פ××¢×' ×¢××ר ×× ×ª×§×פ×ת ×ת×××ת.\n"
-" "
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:393
+msgid "Use the average value over all actual periods for all projected periods"
+msgstr "ש×××ש ××¢×¨× ×××צע ××× ×תק×פ×ת '×פ××¢×', ×¢××ר ×× ×ª×§×פ×ת ×ת×××ת."
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:512
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:502
msgid "Budget Name:"
msgstr "×©× ×תקצ××:"
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:588
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:578
msgid "Number of Periods:"
msgstr "×ספר תק×פ×ת:"
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:617
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:607
msgid "Budget Period:"
msgstr "תק×פת ×תקצ××:"
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:659
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:649
msgid "Note: Use View->'Filter By...' to control visible accounts."
msgstr "×ער×: ש×××ש × ×צ×->'ס×× ×× ×פ×...' ×ש×××× ××ש××× ×ת ××××××."
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:677
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:667
msgid "Budget List"
msgstr "רש××ת תקצ××"
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:700
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:690
msgid "Close the Budget List"
msgstr "ס××רת רש××ת תקצ××"
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:760
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:750
msgid "Create a New Budget"
msgstr "×צ×רת תקצ×× ××ש"
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:776
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:766
msgid "Open the Selected Budget"
msgstr "פת××ת ×תקצ×× ×©× ××ר"
-#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:792
+#: gnucash/gtkbuilder/gnc-plugin-page-budget.glade:782
msgid "Delete the Selected Budget"
msgstr "×××§ ×ת ×תקצ×× ××ס×××"
@@ -17289,7 +17525,8 @@ msgid "S_tatement Date"
msgstr "ת_×ר×× ×ª×§× ×"
#: gnucash/gtkbuilder/gnc-plugin-page-register.glade:703
-msgid "Sort by the statement date (and group by cleared, unreconciled, reconciled)."
+msgid ""
+"Sort by the statement date (and group by cleared, unreconciled, reconciled)."
msgstr "×××× ××¤× ×ª×ר×× ×ª×פ×ס (××§××××¥ ××¤× ×¡××ר××, פת××××, ××ת××××)."
#: gnucash/gtkbuilder/gnc-plugin-page-register.glade:718
@@ -17387,7 +17624,8 @@ msgstr "×× "
msgid ""
"Number of calendar units in the recurrence: E.g. Biweekly = every 2 weeks; "
"Quarterly = every 3 months"
-msgstr "×ספר ×××××ת ×§×× ×ר××ת ×××ר×ת: ××××ר ×× ×©×××¢×=×× ×©×××¢×××, ר××¢×× ×=×× 3 ×××ש××"
+msgstr ""
+"×ספר ×××××ת ×§×× ×ר××ת ×××ר×ת: ××××ר ×× ×©×××¢×=×× ×©×××¢×××, ר××¢×× ×=×× 3 ×××ש××"
#: gnucash/gtkbuilder/gnc-recurrence.glade:110
msgid "beginning on: "
@@ -17407,9 +17645,10 @@ msgstr "×××ª× ××× ×ש×××¢"
#: gnucash/gtkbuilder/gnc-recurrence.glade:165
msgid ""
-"Match the \"day of week\" and \"week of month\"? (for example, the \"second Tuesday"
-"\" of every month)"
-msgstr "×ת××ת \"×××× ×ש×××¢\" ×\"ש×××¢ ××××ש\"? (××××××, ××× \"ש×××©× ××©× ×\" ××× ×××ש)"
+"Match the \"day of week\" and \"week of month\"? (for example, the \"second "
+"Tuesday\" of every month)"
+msgstr ""
+"×ת××ת \"×××× ×ש×××¢\" ×\"ש×××¢ ××××ש\"? (××××××, ××× \"ש×××©× ××©× ×\" ××× ×××ש)"
#: gnucash/gtkbuilder/gnc-tree-view-owner.glade:65
msgid "Only show _active owners"
@@ -17442,8 +17681,8 @@ msgstr "××××ת _×ש××× ×ת ××©× ×"
#: gnucash/gtkbuilder/window-reconcile.glade:147
msgid ""
-"Include all descendant accounts in the reconcile. All of them must use the same "
-"commodity as this one."
+"Include all descendant accounts in the reconcile. All of them must use the "
+"same commodity as this one."
msgstr ""
"××××ת ×× ×ש××× ×ת ×××©× × ××ת×××. ×× ×ש××× ×ת ×××©× × ×¦×¨×××× ××××ת ×¢× ×××ª× ×¡×××¨× ××× "
"×ש××× ×××."
@@ -17459,15 +17698,15 @@ msgstr "×× × ××ª× ×××¢×× ×ת × URL ×©× ×§××¢."
#: gnucash/html/gnc-html-webkit1.c:547 gnucash/html/gnc-html-webkit1.c:963
#: gnucash/html/gnc-html-webkit2.c:565 gnucash/html/gnc-html-webkit2.c:934
msgid ""
-"Secure HTTP access is disabled. You can enable it in the Network section of the "
-"Preferences dialog."
+"Secure HTTP access is disabled. You can enable it in the Network section of "
+"the Preferences dialog."
msgstr "×××©× ××××××ת HTTP ××ש×תת.× ××ª× ××פע×× ×××ª× ×××§××¢ רשת ת××ת ××-×ש×× ××¢×פ×ת."
#: gnucash/html/gnc-html-webkit1.c:557 gnucash/html/gnc-html-webkit1.c:975
#: gnucash/html/gnc-html-webkit2.c:575 gnucash/html/gnc-html-webkit2.c:946
msgid ""
-"Network HTTP access is disabled. You can enable it in the Network section of the "
-"Preferences dialog."
+"Network HTTP access is disabled. You can enable it in the Network section of "
+"the Preferences dialog."
msgstr "××שת רשת HTTP ×× ××ר×ת. × ××ª× ××פשר ×××©× ×××צע×ת ××-ש×× ××¢×פ×ת, ×××§××¢ רשת."
#. %s is a URL (some location somewhere).
@@ -17510,20 +17749,22 @@ msgstr "ס×××¢× ×ת××× ××××§×××× ×§×× ×"
#: gnucash/import-export/aqb/assistant-ab-initial.glade:28
msgid ""
-"This assistant helps you setting up your Online Banking connection with your bank."
+"This assistant helps you setting up your Online Banking connection with your "
+"bank."
msgstr "ס×××¢× ×× ×ס××¢ ××××רת ×ת××ר×ת ×× ×§××ת ××§××× ×ª ×¢× ××× ×§."
#: gnucash/import-export/aqb/assistant-ab-initial.glade:40
msgid ""
"\n"
"You first need to apply for Online Banking access at your bank. If your bank "
-"decides to grant you electronic access, they will send you a letter containing \n"
+"decides to grant you electronic access, they will send you a letter "
+"containing \n"
"\n"
"* The bank code of your bank\n"
"* The user ID that identifies you to your bank\n"
"* The Internet address of your bank's Online Banking server\n"
-"* For HBCI Online Banking, information about the cryptographic public key of your "
-"bank (\"Ini-Letter\").\n"
+"* For HBCI Online Banking, information about the cryptographic public key of "
+"your bank (\"Ini-Letter\").\n"
"\n"
"This information will be needed in the following. Press \"Next\" now.\n"
"\n"
@@ -17532,39 +17773,41 @@ msgid ""
"Banking, because sometimes the bank does not give you correct feedback when a "
"transfer is rejected.\n"
"\n"
-"Press \"Cancel\" if you do not wish to setup any Online Banking connection now.\n"
+"Press \"Cancel\" if you do not wish to setup any Online Banking connection "
+"now.\n"
"\n"
"Lastly, for repeated imports the preview page has buttons to Load and Save the "
-"settings. To save the settings, tweak the settings to your preferences (optionally "
-"starting from an existing preset), then (optionally change the settings name and "
-"press the Save Settings button. Note you can't save to built-in presets.\n"
+"settings. To save the settings, tweak the settings to your preferences "
+"(optionally starting from an existing preset), then (optionally change the "
+"settings name and press the Save Settings button. Note you can't save to built-"
+"in presets.\n"
"\n"
"This operation is not reversable, so make sure you have a working backup.\n"
"\n"
"Click on \"Next\" to proceed or \"Cancel\" to Abort Import."
msgstr ""
"\n"
-"ת×××× ×ש ××קש ×××©× ××× ×§××ת ××§××× ×ª ××¡× ××£ ××× ×§. ××××× ×××× ×§ ××××× ×××¢× ××§ ×××©× ××§××× ×ª "
-"××ש×××, ××× ×ש×× ××××¢× ××××××\n"
+"ת×××× ×ש ××קש ×××©× ××× ×§××ת ××§××× ×ª ××¡× ××£ ××× ×§. ××××× ×××× ×§ ××××× ×××¢× ××§ ×××©× "
+"××§××× ×ª ××ש×××, ××× ×ש×× ××××¢× ××××××\n"
"\n"
"* ×ת ×§×× ××× ×§ ×××¡× ××£\n"
"* ×ת ×§×× ××שת×ש ××××××× ××ת××ר×ת ××ש×××\n"
"* ×ת ×ת××ת ××רשתת ×ש×ר××ª× ××× ×§ ×××§××× ××\n"
-"* ×¢××ר ×× ×§××ת ××§××× ×ª ×©× HBCI, ××××¢ ×¢× ×××¤×ª× ×צ××××¨× ××××¦×¤× ×©× ××× ×§ (\"Ini-Letter"
-"\").\n"
+"* ×¢××ר ×× ×§××ת ××§××× ×ª ×©× HBCI, ××××¢ ×¢× ×××¤×ª× ×צ××××¨× ××××¦×¤× ×©× ××× ×§ (\"Ini-"
+"Letter\").\n"
"\n"
"××××¢ ×× ×××× × ×××¥ ×××ש×. ××§×©× ×¢× '×××' ×××ש×.\n"
"\n"
-"×ער×: ××× ×× ××ר××ת. ×××§ ×××× ×§×× ×פע×××× ×©×¨×ª ×× ×§××ת ××§××× ×ª ×ר××¢. ×¢×××£ ×× ××סת×× ×¢× "
-"××¢×ר×ת ×××צע×ת ×× ×§××ת ××§××× ×ª ×××× ×§×¨×××, ×× ×פע××× ××× ×§ ×× ×ספק ×ש×× ×××ª× ××שר "
-"×××¢××¨× × ×××ת.\n"
+"×ער×: ××× ×× ××ר××ת. ×××§ ×××× ×§×× ×פע×××× ×©×¨×ª ×× ×§××ת ××§××× ×ª ×ר××¢. ×¢×××£ ×× "
+"××סת×× ×¢× ××¢×ר×ת ×××צע×ת ×× ×§××ת ××§××× ×ª ×××× ×§×¨×××, ×× ×פע××× ××× ×§ ×× ×ספק ×ש×× "
+"×××ª× ××שר ×××¢××¨× × ×××ת.\n"
"\n"
"××§×©× ×¢× '×××××' ××× ×× ×××××ר ×עת ××××ר ××× ×§××ת ××§××× ×ª.\n"
"\n"
-"××ס××£, ×××××× ââ×××ר, ××¢××× ×תצ××× ×××§×××× ××©× × ×××¦× ×× ×××¢×× × ×ש×××¨× ×©× ××××ר×ת. ×¢× "
-"×× ×ª ×ש××ר ×ת ××××ר×ת, × ××ª× ×ער×× ×ת ××××ר×ת ×××¢×פ×ת××× (××××פ××, × ××ª× ××ת××× ×××××¨× "
-"××××רת ×ר×ש ×§×××ת, ××©× ×ת ×ת ש×× ××ש××ר ×××§×©× ×¢× ×××¦× 'ש××רת ×××ר×ת'). ×תש××ת ××, ×× "
-"× ××ª× ×ש××ר ש×× ×××× ×©× ×¢×©× ××××ר×ת ×§×××¢×ת ×ר×ש ×××× ×ת.\n"
+"××ס××£, ×××××× ââ×××ר, ××¢××× ×תצ××× ×××§×××× ××©× × ×××¦× ×× ×××¢×× × ×ש×××¨× ×©× ××××ר×ת. "
+"×¢× ×× ×ª ×ש××ר ×ת ××××ר×ת, × ××ª× ×ער×× ×ת ××××ר×ת ×××¢×פ×ת××× (××××פ××, × ××ª× "
+"××ת××× ×××××¨× ××××רת ×ר×ש ×§×××ת, ××©× ×ת ×ת ש×× ××ש××ר ×××§×©× ×¢× ×××¦× 'ש××רת "
+"×××ר×ת'). ×תש××ת ××, ×× × ××ª× ×ש××ר ש×× ×××× ×©× ×¢×©× ××××ר×ת ×§×××¢×ת ×ר×ש ×××× ×ת.\n"
"\n"
"פע××× ×× ××× × × ××ª× ×ª ××ס××, × × ××××× ×©×§×× ××××× ×ª×§××.\n"
"\n"
@@ -17577,10 +17820,11 @@ msgstr "×××ר×ת ר×ש×× ××ת ××× ×§××ת ××§××× ×ª"
#: gnucash/import-export/aqb/assistant-ab-initial.glade:87
msgid ""
"The Setup of your Online Banking connection is handled by the external program "
-"\"AqBanking Setup Wizard\". Please press the button below to start this program."
+"\"AqBanking Setup Wizard\". Please press the button below to start this "
+"program."
msgstr ""
-"××ª×§× ×ª ××××ר ××× ×§××ת ×××§××× ×ª ×××פ×ת ×¢× ××× ×ת××× ×ת ×××צ×× ×ת \"×שף ×××רת ×××§×××× ×§×× ×"
-"\". × × ×××§×ש ×¢× ××××¦× ××× ×¢× ×× ×ª ××ת××× ×ª×× ×ת ××."
+"××ª×§× ×ª ××××ר ××× ×§××ת ×××§××× ×ª ×××פ×ת ×¢× ××× ×ת××× ×ת ×××צ×× ×ת \"×שף ×××רת "
+"×××§×××× ×§×× ×\". × × ×××§×ש ×¢× ××××¦× ××× ×¢× ×× ×ª ××ת××× ×ª×× ×ת ××."
#: gnucash/import-export/aqb/assistant-ab-initial.glade:98
msgid "_Start AqBanking Wizard"
@@ -17592,11 +17836,12 @@ msgstr "×ת××ת ×שף ×× ×§××ת ××××× ×ª"
#: gnucash/import-export/aqb/assistant-ab-initial.glade:153
msgid ""
-"Double Click on the line of an Online Banking account name if you want to match it "
-"to a GnuCash account. Click \"Next\" when all desired accounts are matching."
+"Double Click on the line of an Online Banking account name if you want to "
+"match it to a GnuCash account. Click \"Next\" when all desired accounts are "
+"matching."
msgstr ""
-"××§×©× ×פ××× ×¢× ×§× ×©× ×ש××× ×× ×§××ת ××§××× ×ª ××ת×××ª× ××ש××× ×× ××§×ש. ××§×©× ×¢× '×××' ××××× "
-"××× ××ש××× ×ת ×רצ×××× ××ת××××."
+"××§×©× ×פ××× ×¢× ×§× ×©× ×ש××× ×× ×§××ת ××§××× ×ª ××ת×××ª× ××ש××× ×× ××§×ש. ××§×©× ×¢× '×××' "
+"××××× ××× ××ש××× ×ת ×רצ×××× ××ת××××."
#: gnucash/import-export/aqb/assistant-ab-initial.glade:164
msgid "Match Online accounts with GnuCash accounts"
@@ -17604,16 +17849,16 @@ msgstr "×ת××ת ×ש××× ×ת ××§××× ×× ××ש××× ×ת ×× ××§×ש"
#: gnucash/import-export/aqb/assistant-ab-initial.glade:179
msgid ""
-"The setup for matching Online Banking accounts to GnuCash accounts is now finished. "
-"You can now invoke Online Banking actions on those accounts.\n"
+"The setup for matching Online Banking accounts to GnuCash accounts is now "
+"finished. You can now invoke Online Banking actions on those accounts.\n"
"\n"
-"If you want to add another bank, user, or account, you can start this assistant "
-"again anytime.\n"
+"If you want to add another bank, user, or account, you can start this "
+"assistant again anytime.\n"
"\n"
"Press \"Apply\" now."
msgstr ""
-"×××××¨× ×××פ×× ×ש××× ×ת ×× ×§××ת ××§××× ×ª ××ש××× ×ת ×× ××§×ש ×סת×××× ×עת. × ××ª× ××פע×× ×¤×¢×××ת "
-"×× ×§××ת ××§××× ×ª ××ש××× ×ת ×××.\n"
+"×××××¨× ×××פ×× ×ש××× ×ת ×× ×§××ת ××§××× ×ª ××ש××× ×ת ×× ××§×ש ×סת×××× ×עת. × ××ª× ××פע×× "
+"פע×××ת ×× ×§××ת ××§××× ×ª ××ש××× ×ת ×××.\n"
"\n"
"×××ספת ×× ×§, ×שת×ש ×× ×ש××× × ×ספ××, × ××ª× ××ת××× ×ת ×ס×××¢× ××× ×©×× ××× ×¢×ª.\n"
"\n"
@@ -17709,13 +17954,13 @@ msgstr "_ש××רת ×§×× ××××× ×××©× (PIN) ××××ר××"
#: gnucash/import-export/aqb/dialog-ab.glade:739
msgid ""
-"If active, the PIN for FinTS/AqBanking actions will be remembered in memory during "
-"a session. Otherwise it will have to be entered again each time during a session "
-"when it is needed."
+"If active, the PIN for FinTS/AqBanking actions will be remembered in memory "
+"during a session. Otherwise it will have to be entered again each time during "
+"a session when it is needed."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ×§×× ×××××× ××××©× (PIN) ×פע×××ת ××× ×§××ת ×©× HBCI/×××§×××× ×§×× × "
-"×ש××¨× ××××ר×× ××××× ×פע××. ××רת ×××× ×¦××¨× ××××× ×××ª× ×©×× ××× ×¤×¢× ××××× ×פע×× ××שר "
-"××× × ××צ×."
+"××××× ×××פשר×ת ××פע××, ×§×× ×××××× ××××©× (PIN) ×פע×××ת ××× ×§××ת ×©× "
+"HBCI/×××§×××× ×§×× × ×ש××¨× ××××ר×× ××××× ×פע××. ××רת ×××× ×¦××¨× ××××× ×××ª× ×©×× ××× "
+"×¤×¢× ××××× ×פע×× ××שר ××× × ××צ×."
#: gnucash/import-export/aqb/dialog-ab.glade:774
msgid "Name for new template"
@@ -17852,8 +18097,8 @@ msgid ""
"If active, the window will be closed automatically when you finish the HBCI/"
"AqBanking import process. Otherwise it will stay open."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ××××× ×ס×ר ×××××××ת ×ס××× ×ª×××× ×××× HBCI/×××§×××× ×§×× ×. ××רת "
-"××××× ×ש×ר פת××."
+"××××× ×××פשר×ת ××פע××, ××××× ×ס×ר ×××××××ת ×ס××× ×ª×××× ×××× HBCI/×××§×××× ×§×× ×. "
+"××רת ××××× ×ש×ר פת××."
#: gnucash/import-export/aqb/dialog-ab-pref.glade:50
msgid "Remember the _PIN in memory"
@@ -17862,13 +18107,13 @@ msgstr "ש××רת ×§×× _××××× ×××©× (PIN) ×××ר××"
#: gnucash/import-export/aqb/dialog-ab-pref.glade:56
#: gnucash/import-export/aqb/gschemas/org.gnucash.dialogs.import.hbci.gschema.xml.in:21
msgid ""
-"If active, the PIN for HBCI/AqBanking actions will be remembered in memory during a "
-"session. Otherwise it will have to be entered again each time during a session when "
-"it is needed."
+"If active, the PIN for HBCI/AqBanking actions will be remembered in memory "
+"during a session. Otherwise it will have to be entered again each time during "
+"a session when it is needed."
msgstr ""
-"××××× ×××פשר×ת ××פע××, ×§×× ×××××× ××××©× (PIN) ×פע×××ת ××× ×§××ת ×©× HBCI/×××§×××× ×§×× × "
-"×ש××¨× ××××ר×× ××××× ×פע××. ××רת ×××× ×¦××¨× ××××× ×××ª× ×©×× ××× ×¤×¢× ××××× ×פע×× ××שר "
-"××× × ××צ×."
+"××××× ×××פשר×ת ××פע××, ×§×× ×××××× ××××©× (PIN) ×פע×××ת ××× ×§××ת ×©× "
+"HBCI/×××§×××× ×§×× × ×ש××¨× ××××ר×× ××××× ×פע××. ××רת ×××× ×¦××¨× ××××× ×××ª× ×©×× ××× "
+"×¤×¢× ××××× ×פע×× ××שר ××× × ××צ×."
#: gnucash/import-export/aqb/dialog-ab-pref.glade:69
msgid "_Verbose debug messages"
@@ -17886,13 +18131,13 @@ msgstr "ש×××ש _×××× ×©××× × ××× ×ª× ×עת ס×××פ×"
#: gnucash/import-export/aqb/dialog-ab-pref.glade:94
#: gnucash/import-export/aqb/gschemas/org.gnucash.dialogs.import.hbci.gschema.xml.in:26
msgid ""
-"Some banks place part of transaction description as \"transaction text\" in the "
-"MT940 file. Normally GNUcash ignores this text. However by activating this option, "
-"the transaction text is used for the transaction description too."
+"Some banks place part of transaction description as \"transaction text\" in "
+"the MT940 file. Normally GNUcash ignores this text. However by activating this "
+"option, the transaction text is used for the transaction description too."
msgstr ""
-"×× ×§×× ×ס××××× ×××§××× ×××§×× ×ת×××ר ××ª× ××¢× ×ש×× \"××× ×ª× ××¢×\" ××§×××¥ MT940. ×× ××§×ש "
-"×××¨× ××× ×תע×× ×××× ××. ×¢× ××ת ×¢× ××× ×פע×ת ×פשר×ת ××, ×× ××× ××ª× ××¢× ×××× ×ת×××ר "
-"××ª× ××¢×."
+"×× ×§×× ×ס××××× ×××§××× ×××§×× ×ת×××ר ××ª× ××¢× ×ש×× \"××× ×ª× ××¢×\" ××§×××¥ MT940. "
+"×× ××§×ש ×××¨× ××× ×תע×× ×××× ××. ×¢× ××ת ×¢× ××× ×פע×ת ×פשר×ת ××, ×× ××× ××ª× ××¢× "
+"×××× ×ת×××ר ××ª× ××¢×."
#: gnucash/import-export/aqb/dialog-ab-trans.c:294
#: gnucash/import-export/aqb/dialog-ab-trans.c:303
@@ -17967,15 +18212,16 @@ msgstr "×××§×¨× ××¤× ×××ת ×©× IBAN ×××¢× '%s' ×ש××. ×ת×× ×
#: gnucash/import-export/aqb/dialog-ab-trans.c:549
#, c-format
msgid ""
-"Your local bank account does not yet have the SEPA account information stored. We "
-"are sorry, but in this development version one additional step is necessary which "
-"has not yet been implemented directly in gnucash. Please execute the command line "
-"program \"aqhbci-tool\" for your account, as follows: aqhbci-tool4 getaccsepa -b %s "
-"-a %s"
+"Your local bank account does not yet have the SEPA account information stored. "
+"We are sorry, but in this development version one additional step is necessary "
+"which has not yet been implemented directly in gnucash. Please execute the "
+"command line program \"aqhbci-tool\" for your account, as follows: aqhbci-"
+"tool4 getaccsepa -b %s -a %s"
msgstr ""
-"פר×× ×ש××× SEPA ×¢×××× ×× ××××¡× × ××ש××× ××× ×§ ×××§×××. ×× × ×צ×ער××, ×× ×××רסת פ×ת×× ×× "
-"×ש צ××¨× ×ש×× × ×סף ×שר ××¨× ×××©× ×ש×ר×ת ××× ××§×ש. × × ××ר××¥ ×ת ×ת××× ×ת \"aqhbci-tool\" "
-"×ש×רת ××××× ××ש×××, ××××¤× ×××: âaqhbci-tool4 getaccsepa -b %s -a %s"
+"פר×× ×ש××× SEPA ×¢×××× ×× ××××¡× × ××ש××× ××× ×§ ×××§×××. ×× × ×צ×ער××, ×× ×××רסת "
+"פ×ת×× ×× ×ש צ××¨× ×ש×× × ×סף ×שר ××¨× ×××©× ×ש×ר×ת ××× ××§×ש. × × ××ר××¥ ×ת ×ת××× ×ת "
+"\"aqhbci-tool\" ×ש×רת ××××× ××ש×××, ××××¤× ×××: âaqhbci-tool4 getaccsepa -b %s -"
+"a %s"
#: gnucash/import-export/aqb/dialog-ab-trans.c:564
msgid ""
@@ -17998,11 +18244,12 @@ msgstr "×× ×××× ×ש××× ×× ×§ ×××××. × ×רש ×ש××× ×× ×§
#: gnucash/import-export/aqb/dialog-ab-trans.c:618
msgid ""
"The amount is zero or the amount field could not be interpreted correctly. You "
-"might have mixed up decimal point and comma, compared to your locale settings. This "
-"does not result in a valid online transfer job."
+"might have mixed up decimal point and comma, compared to your locale settings. "
+"This does not result in a valid online transfer job."
msgstr ""
-"×ס××× ××× ×פס ×× ×©×©×× ×ס××× ×× ×¤×רש ×ר×××. ××ת×× ×©×× ×¢×¨××× ××× × ×§××× ×¢×©×¨×× ×ת ×פס××§, "
-"××¢××ת ××××ר×ת ××××ר××ת ×©× ××ער×ת. ×ת×צ×× ×ª×¡×ª×× ×פע××ת ××¢××¨× ××§××× ×ª ×× ×ª×§×× ×."
+"×ס××× ××× ×פס ×× ×©×©×× ×ס××× ×× ×¤×רש ×ר×××. ××ת×× ×©×× ×¢×¨××× ××× × ×§××× ×¢×©×¨×× ×ת "
+"×פס××§, ××¢××ת ××××ר×ת ××××ר××ת ×©× ××ער×ת. ×ת×צ×× ×ª×¡×ª×× ×פע××ת ××¢××¨× ××§××× ×ª ×× "
+"תק×× ×."
#: gnucash/import-export/aqb/dialog-ab-trans.c:635
msgid ""
@@ -18069,7 +18316,8 @@ msgstr ""
#: gnucash/import-export/aqb/gnc-ab-gettrans.c:253
msgid ""
-"The Online Banking import returned no transactions for the selected time period."
+"The Online Banking import returned no transactions for the selected time "
+"period."
msgstr "×××× ×× ×§××ת ××§××× ×ª ×× ××××ר ×ª× ××¢×ת ×¢××ר ×××× ×××× ×©× ××ר."
#: gnucash/import-export/aqb/gnc-ab-transfer.c:61
@@ -18077,17 +18325,17 @@ msgid ""
"You have changed the list of online transfer templates, but you cancelled the "
"transfer dialog. Do you nevertheless want to store the changes?"
msgstr ""
-"רש××ת ת×× ××ת ×××¢××¨× ×××§××× ×ת ××©×ª× ×ª×, ×× ×ª××ת ××-×ש×× ×××¢××¨× ×××××. ××× ×ש××ר ×ת "
-"×ש×× ×××× ××× ××ת?"
+"רש××ת ת×× ××ת ×××¢××¨× ×××§××× ×ת ××©×ª× ×ª×, ×× ×ª××ת ××-×ש×× ×××¢××¨× ×××××. ××× ×ש××ר "
+"×ת ×ש×× ×××× ××× ××ת?"
#: gnucash/import-export/aqb/gnc-ab-transfer.c:182
msgid ""
-"The backend found an error during the preparation of the job. It is not possible to "
-"execute this job. \n"
+"The backend found an error during the preparation of the job. It is not "
+"possible to execute this job. \n"
"\n"
"Most probable the bank does not support your chosen job or your Online Banking "
-"account does not have the permission to execute this job. More error messages might "
-"be visible on your console log.\n"
+"account does not have the permission to execute this job. More error messages "
+"might be visible on your console log.\n"
"\n"
"Do you want to enter the job again?"
msgstr ""
@@ -18142,12 +18390,12 @@ msgstr "×× ×§"
#: gnucash/import-export/aqb/gnc-ab-utils.c:758
msgid ""
-"The backend found an error during the preparation of the job. It is not possible to "
-"execute this job. \n"
+"The backend found an error during the preparation of the job. It is not "
+"possible to execute this job. \n"
"\n"
"Most probably the bank does not support your chosen job or your Online Banking "
-"account does not have the permission to execute this job. More error messages might "
-"be visible on your console log.\n"
+"account does not have the permission to execute this job. More error messages "
+"might be visible on your console log.\n"
"\n"
"Do you want to enter the job again?"
msgstr ""
@@ -18168,10 +18416,11 @@ msgstr ""
#: gnucash/import-export/aqb/gnc-ab-utils.c:899
msgid ""
-"No Online Banking account found for this gnucash account. These transactions will "
-"not be executed by Online Banking."
+"No Online Banking account found for this gnucash account. These transactions "
+"will not be executed by Online Banking."
msgstr ""
-"×× × ××¦× ×ש××× ×× ×§ ××§××× ××ש××× ×× ××§×ש ××. ×ª× ××¢ ×× ×× ×ª××צע ×¢× ××× ×× ×§××ת ××§××× ×ª."
+"×× × ××¦× ×ש××× ×× ×§ ××§××× ××ש××× ×× ××§×ש ××. ×ª× ××¢ ×× ×× ×ª××צע ×¢× ××× ×× ×§××ת "
+"××§××× ×ª."
#: gnucash/import-export/aqb/gnc-ab-utils.c:1001
msgid ""
@@ -18192,16 +18441,16 @@ msgstr ""
msgid ""
"The downloaded Online Banking Balance was zero.\n"
"\n"
-"Either this is the correct balance, or your bank does not support Balance download "
-"in this Online Banking version. In the latter case you should choose a different "
-"Online Banking version number in the Online Banking (AqBanking or HBCI) Setup. "
-"After that, try again to download the Online Banking Balance."
+"Either this is the correct balance, or your bank does not support Balance "
+"download in this Online Banking version. In the latter case you should choose "
+"a different Online Banking version number in the Online Banking (AqBanking or "
+"HBCI) Setup. After that, try again to download the Online Banking Balance."
msgstr ""
"×תרת ××× ×§××ת ×××§××× ×ª ש××ר×× ××××ª× ×פס.\n"
"\n"
-"×ת×× ××× ×××ª×¨× ×× ××× ×, ×× ×©××× ×§ ××× × ×ª××× ×××ר×ת ××ª×¨× ××רסת ×× ×§××ת ××§××× ×ª ××. ×××§×¨× "
-"×××ר××, ×ש ××××ר ××ער×ת ××× ×§××ת ×××§××× ×ª (×××§×××× ×§×× × ×× HBCI), ××ספר ×רסת ×× ×§××ת "
-"××§××× ×ª ש×× × ××× ×¡×ת ×××ר×× ×©×× ×ת ×תרת ××× ×§××ת ×××§××× ×ª."
+"×ת×× ××× ×××ª×¨× ×× ××× ×, ×× ×©××× ×§ ××× × ×ª××× ×××ר×ת ××ª×¨× ××רסת ×× ×§××ת ××§××× ×ª ××. "
+"×××§×¨× ×××ר××, ×ש ××××ר ××ער×ת ××× ×§××ת ×××§××× ×ª (×××§×××× ×§×× × ×× HBCI), ××ספר "
+"×רסת ×× ×§××ת ××§××× ×ª ש×× × ××× ×¡×ת ×××ר×× ×©×× ×ת ×תרת ××× ×§××ת ×××§××× ×ª."
#: gnucash/import-export/aqb/gnc-ab-utils.c:1120
#, c-format
@@ -18219,7 +18468,8 @@ msgstr "×××××¢×: ××ש××× ×× ×§×××ת ×× ××ª×¨× ×¨×©××× ×ס
#: gnucash/import-export/aqb/gnc-ab-utils.c:1133
msgid ""
-"The booked balance is identical to the current reconciled balance of the account."
+"The booked balance is identical to the current reconciled balance of the "
+"account."
msgstr "×××ª×¨× ×©× ×¨×©×× ××× ×××ª×¨× ××ת×××ת ×× ××××ת ×©× ××ש×××."
#: gnucash/import-export/aqb/gnc-ab-utils.c:1148
@@ -18279,14 +18529,16 @@ msgstr "××× ×¨×××× ×רש××."
#: gnucash/import-export/aqb/gnc-file-aqb-import.c:354
#, c-format
msgid ""
-"The job was executed successfully, but as a precaution please check the log window "
-"for potential errors."
-msgid_plural ""
-"All %d jobs were executed successfully, but as a precaution please check the log "
+"The job was executed successfully, but as a precaution please check the log "
"window for potential errors."
-msgstr[0] "×ר×××× ××צע ××צ×××, ××××¦×¢× ×××ר×ת, × × ×××××§ ×ת ×××× ×××× ×ש××××ת ×פשר××ת."
+msgid_plural ""
+"All %d jobs were executed successfully, but as a precaution please check the "
+"log window for potential errors."
+msgstr[0] ""
+"×ר×××× ××צע ××צ×××, ××××¦×¢× ×××ר×ת, × × ×××××§ ×ת ×××× ×××× ×ש××××ת ×פשר××ת."
msgstr[1] ""
-"×× %d ×ר×××××× ×××¦×¢× ××צ×××, ××××¦×¢× ×××ר×ת, × × ×××××§ ×ת ×××× ×××× ×ש××××ת ×פשר××ת."
+"×× %d ×ר×××××× ×××¦×¢× ××צ×××, ××××¦×¢× ×××ר×ת, × × ×××××§ ×ת ×××× ×××× ×ש××××ת "
+"×פשר××ת."
#: gnucash/import-export/aqb/gnc-gwen-gui.c:1084
#, c-format
@@ -18318,7 +18570,8 @@ msgstr "_×××רת ×× ×§××ת ××§××× ×ª..."
#: gnucash/import-export/aqb/gnc-plugin-aqbanking.c:97
msgid ""
-"Initial setup of Online Banking access (HBCI, or OFX DirectConnect, using AqBanking)"
+"Initial setup of Online Banking access (HBCI, or OFX DirectConnect, using "
+"AqBanking)"
msgstr ""
"××××¨× ×××©× ×¨×ש×× ×ת ×©× ×× ×§××ת ××§××× ×ª (HBCI, ×× OFX DirectConnect, ש×××ש × "
"×××§×××× ×§×× ×)"
@@ -18346,7 +18599,8 @@ msgstr "×פקת ×ª× ×עת _SEPA..."
#: gnucash/import-export/aqb/gnc-plugin-aqbanking.c:114
msgid ""
-"Issue a new international European (SEPA) transaction online through Online Banking"
+"Issue a new international European (SEPA) transaction online through Online "
+"Banking"
msgstr "×צ×רת ×ª× ××¢×, ××× ×××××ת ××ר×פ××ת (SEPA) ×××צע×ת ×× ×§××ת ××§××× ×ª"
#: gnucash/import-export/aqb/gnc-plugin-aqbanking.c:118
@@ -18363,8 +18617,8 @@ msgstr "××צ×ת ×××× _×ש×ר SEPA..."
#: gnucash/import-export/aqb/gnc-plugin-aqbanking.c:124
msgid ""
-"Issue a new international European (SEPA) direct debit note online through Online "
-"Banking"
+"Issue a new international European (SEPA) direct debit note online through "
+"Online Banking"
msgstr "×צ×רת ×××עת ×××× ×ש×ר×, ××× ×××××ת ××ר×פ××ת (SEPA) ×××צע×ת ×× ×§××ת ××§××× ×ª"
#. Translators: Message types MTxxxx are exchange formats used by the SWIFT network
@@ -18374,7 +18628,8 @@ msgid "Import _MT940"
msgstr "×××× _MT940"
#: gnucash/import-export/aqb/gnc-plugin-aqbanking.c:134
-msgid "Import an end-of-day account statement in SWIFT MT940 format into GnuCash."
+msgid ""
+"Import an end-of-day account statement in SWIFT MT940 format into GnuCash."
msgstr "×××× ××£ ×ש××× ×¡××£ ××× ×××צע×ת ת×× ×ת SWIFT MT940 ××× ×קש."
#: gnucash/import-export/aqb/gnc-plugin-aqbanking.c:138
@@ -18400,7 +18655,8 @@ msgid "Import DTAUS and _send..."
msgstr "×××× DTAUS ×_ש××××..."
#: gnucash/import-export/aqb/gnc-plugin-aqbanking.c:160
-msgid "Import a DTAUS file into GnuCash and transmit its orders by Online Banking."
+msgid ""
+"Import a DTAUS file into GnuCash and transmit its orders by Online Banking."
msgstr "×××× ×§×××¥ DTAUS ××× ××§×ש ×ש×××ר ××××× ×ת ××¨× ×× ×§××ת ××§××× ×ª."
#: gnucash/import-export/aqb/gnc-plugin-aqbanking.c:170
@@ -18433,13 +18689,13 @@ msgstr "ת×× ×ת ×§×××¥ ×××× DTAUS"
#: gnucash/import-export/aqb/gschemas/org.gnucash.dialogs.import.hbci.gschema.xml.in:36
msgid ""
-"This setting specifies the data format when importing DTAUS files. The AqBanking "
-"library offers various import formats (called \"profiles\") of which you can choose "
-"one here."
+"This setting specifies the data format when importing DTAUS files. The "
+"AqBanking library offers various import formats (called \"profiles\") of which "
+"you can choose one here."
msgstr ""
"××××¨× ×× ×§××עת ×ת ת×× ×ת ×× ×ª×× ×× ×× ××¢×©× ×©×××ש ×עת ×××× ×§××¦× DTAUS. ספר××ת "
-"××××§×××× ×§×× × ×צ××¢× ××××× ×ª×× ××ת ×××× (× ×§×¨××ת \"פר×פ××××\") ש×××, × ××ª× ×××, ××××ר "
-"××ת."
+"××××§×××× ×§×× × ×צ××¢× ××××× ×ª×× ××ת ×××× (× ×§×¨××ת \"פר×פ××××\") ש×××, × ××ª× ×××, "
+"××××ר ××ת."
#: gnucash/import-export/aqb/gschemas/org.gnucash.dialogs.import.hbci.gschema.xml.in:40
msgid "CSV import data format"
@@ -18448,12 +18704,12 @@ msgstr "ת×× ×ת ×§×××¥ ×××× CSV"
#: gnucash/import-export/aqb/gschemas/org.gnucash.dialogs.import.hbci.gschema.xml.in:41
msgid ""
"This setting specifies the data format when importing CSV files. The AqBanking "
-"library offers various import formats (called \"profiles\") of which you can choose "
-"one here."
+"library offers various import formats (called \"profiles\") of which you can "
+"choose one here."
msgstr ""
"××××¨× ×× ×§××עת ×ת ת×× ×ת ×× ×ª×× ×× ×× ××¢×©× ×©×××ש ×עת ×××× ×§××¦× CSV. ספר××ת "
-"××××§×××× ×§×× × ×צ××¢× ××××× ×ª×× ××ת ×××× (× ×§×¨××ת \"פר×פ××××\") ש×××, × ××ª× ×××, ××××ר "
-"××ת."
+"××××§×××× ×§×× × ×צ××¢× ××××× ×ª×× ××ת ×××× (× ×§×¨××ת \"פר×פ××××\") ש×××, × ××ª× ×××, "
+"××××ר ××ת."
#: gnucash/import-export/aqb/gschemas/org.gnucash.dialogs.import.hbci.gschema.xml.in:45
msgid "SWIFT MT940 import data format"
@@ -18462,11 +18718,12 @@ msgstr "ת×× ×ת ×§×××¥ ×××× ×¡××××¤× MT940"
#: gnucash/import-export/aqb/gschemas/org.gnucash.dialogs.import.hbci.gschema.xml.in:46
msgid ""
"This setting specifies the data format when importing SWIFT MT940 files. The "
-"AqBanking library offers various import formats (called \"profiles\") of which you "
-"can choose one here."
+"AqBanking library offers various import formats (called \"profiles\") of which "
+"you can choose one here."
msgstr ""
-"×××רת ת×× ×ת ×× ×ª×× ×× ×× ××¢×©× ×©×××ש ×עת ×××× ×§××¦× SWIFT MT940. ספר××ת ××××§×××× ×§×× × "
-"×צ××¢× ××××× ×ª×× ××ת ×××× (× ×§×¨××ת \"פר×פ××××\") ש×××, × ××ª× ×××, ××××ר ××ת."
+"×××רת ת×× ×ת ×× ×ª×× ×× ×× ××¢×©× ×©×××ש ×עת ×××× ×§××¦× SWIFT MT940. ספר××ת "
+"××××§×××× ×§×× × ×צ××¢× ××××× ×ª×× ××ת ×××× (× ×§×¨××ת \"פר×פ××××\") ש×××, × ××ª× ×××, "
+"××××ר ××ת."
#: gnucash/import-export/aqb/gschemas/org.gnucash.dialogs.import.hbci.gschema.xml.in:50
msgid "SWIFT MT942 import data format"
@@ -18475,11 +18732,12 @@ msgstr "ת×× ×ת ×§×××¥ ×××× ×¡××××¤× MT942"
#: gnucash/import-export/aqb/gschemas/org.gnucash.dialogs.import.hbci.gschema.xml.in:51
msgid ""
"This setting specifies the data format when importing SWIFT MT942 files. The "
-"AqBanking library offers various import formats (called \"profiles\") of which you "
-"can choose one here."
+"AqBanking library offers various import formats (called \"profiles\") of which "
+"you can choose one here."
msgstr ""
-"×××רת ת×× ×ת ×× ×ª×× ×× ×× ××¢×©× ×©×××ש ×עת ×××× ×§××¦× SWIFT MT942. ספר××ת ××××§×××× ×§×× × "
-"×צ××¢× ××××× ×ª×× ××ת ×××× (× ×§×¨××ת \"פר×פ××××\") ש×××, × ××ª× ×××, ××××ר ××ת."
+"×××רת ת×× ×ת ×× ×ª×× ×× ×× ××¢×©× ×©×××ש ×עת ×××× ×§××¦× SWIFT MT942. ספר××ת "
+"××××§×××× ×§×× × ×צ××¢× ××××× ×ª×× ××ת ×××× (× ×§×¨××ת \"פר×פ××××\") ש×××, × ××ª× ×××, "
+"××××ר ××ת."
#: gnucash/import-export/bi-import/dialog-bi-import.c:282
#, c-format
@@ -18657,8 +18915,8 @@ msgstr "×ת××ת ××××× ×¨××× ××ש×ש ×××××"
#: gnucash/import-export/csv-imp/assistant-csv-account-import.c:305
#: gnucash/import-export/customer-import/dialog-customer-import-gui.c:323
msgid ""
-"This regular expression is used to parse the import file. Modify according to your "
-"needs.\n"
+"This regular expression is used to parse the import file. Modify according to "
+"your needs.\n"
msgstr "××××× ×¨××× ××ש×ש ×× ×ת×× ×§×××¥ ×××××. × ××ª× ××ס××× ×¢× ×¤× ×צר×××.\n"
#: gnucash/import-export/bi-import/gnc-plugin-bi-import.c:57
@@ -18675,8 +18933,8 @@ msgstr "×××× ×××××× ××ש××× ××ת ××§×××¥ ××× CSV"
msgid ""
"The account tree will be exported to the file '%s' when you click \"Apply\".\n"
"\n"
-"You can also verify your selections by clicking on \"Back\" or \"Cancel\" to abort "
-"the export.\n"
+"You can also verify your selections by clicking on \"Back\" or \"Cancel\" to "
+"abort the export.\n"
msgstr ""
"תרש×× ××ש××× ×ת ××××¦× ××§×××¥ '%s' ×××§×©× ×¢× '××××'.\n"
"\n"
@@ -18686,11 +18944,11 @@ msgstr ""
#: gnucash/import-export/csv-exp/assistant-csv-export.c:87
#, c-format
msgid ""
-"When you click \"Apply\", the transactions will be exported to the file '%s' and "
-"the number of accounts exported will be %u.\n"
+"When you click \"Apply\", the transactions will be exported to the file '%s' "
+"and the number of accounts exported will be %u.\n"
"\n"
-"You can also verify your selections by clicking on \"Back\" or \"Cancel\" to abort "
-"the export.\n"
+"You can also verify your selections by clicking on \"Back\" or \"Cancel\" to "
+"abort the export.\n"
msgstr ""
"×××§×©× ×¢× '××××', ××ª× ××¢×ת ×××צ×× ××§×××¥ '%s' ××ספר ××ש××× ×ת ש×××¦× ×××× %u.\n"
"\n"
@@ -18702,8 +18960,8 @@ msgstr ""
msgid ""
"When you click \"Apply\", the transactions will be exported to the file '%s'.\n"
"\n"
-"You can also verify your selections by clicking on \"Back\" or \"Cancel\" to abort "
-"the export.\n"
+"You can also verify your selections by clicking on \"Back\" or \"Cancel\" to "
+"abort the export.\n"
msgstr ""
"××ª× ××¢×ת ×××צ×× ××§×××¥ '%s' ×××§×©× ×¢× '××××'.\n"
"\n"
@@ -18714,8 +18972,8 @@ msgid ""
"This assistant will help you export the Account Tree to a file\n"
" with the separator specified below.\n"
"\n"
-"Select the settings you require for the file and then click \"Next\" to proceed or "
-"\"Cancel\" to abort the export.\n"
+"Select the settings you require for the file and then click \"Next\" to "
+"proceed or \"Cancel\" to abort the export.\n"
msgstr ""
"ס×××¢× ×× ××¢××ר ×××¦× ×ת תרש×× ××ש××× ×ת ××§×××¥\n"
" ×ש××ת ××פר×× ××ª× ×פר×× ×©× ×§××¢ ××××.\n"
@@ -18731,18 +18989,18 @@ msgid ""
"There will be multiple rows for each transaction and may require further "
"manipulation to get them in a format you can use.\n"
"\n"
-"Each Transaction will appear once in the export and will be listed in the order the "
-"accounts were processed\n"
+"Each Transaction will appear once in the export and will be listed in the "
+"order the accounts were processed\n"
"\n"
-"Select the settings you require for the file and then click \"Next\" to proceed or "
-"\"Cancel\" to abort the export.\n"
+"Select the settings you require for the file and then click \"Next\" to "
+"proceed or \"Cancel\" to abort the export.\n"
msgstr ""
"ס×××¢× ×× ××¢××ר ×××¦× ×ת ××ª× ××¢×ת ××§×××¥\n"
" ×ש××ת ××פר×× ××ª× ×פר×× ×©× ×§××¢ ××××.\n"
"\n"
"\n"
-"××× ×ª× ××¢× ×××× ×ספר ש×ר×ת שעש×××ת ××ר×ש ×× ×פ××צ×× × ×ספת ×××× ××××× ×××ª× ×ת×× ×ת ×× "
-"× ××ª× ××שת×ש.\n"
+"××× ×ª× ××¢× ×××× ×ספר ש×ר×ת שעש×××ת ××ר×ש ×× ×פ××צ×× × ×ספת ×××× ××××× ×××ª× ×ת×× ×ת "
+"×× × ××ª× ××שת×ש.\n"
"\n"
"×× ×ª× ××¢× ×ª×פ××¢ ×¤×¢× ××ת ×××צ××, ×ס×ר ×¢×××× ××ש××× ×ת\n"
"\n"
@@ -18755,23 +19013,24 @@ msgid ""
" with the separator specified below.\n"
"\n"
"There will be multiple rows for each transaction and may require further "
-"manipulation to get them in a format you can use. Each Transaction will appear once "
-"in the export and will be listed in the order the accounts were processed\n"
+"manipulation to get them in a format you can use. Each Transaction will appear "
+"once in the export and will be listed in the order the accounts were "
+"processed\n"
"\n"
"By selecting the simple layout, the output will be equivalent to a single row "
"register view and as such some of the transfer detail could be lost.\n"
"\n"
-"Select the settings you require for the file and then click \"Next\" to proceed or "
-"\"Cancel\" to abort the export.\n"
+"Select the settings you require for the file and then click \"Next\" to "
+"proceed or \"Cancel\" to abort the export.\n"
msgstr ""
"ס×××¢× ×× ××¢××ר ×××¦× ×ת ××ª× ××¢×ת ××§×××¥\n"
" ×ש××ת ××פר×× ××ª× ×פר×× ×©× ×§××¢ ××××.\n"
"\n"
-"××× ×ª× ××¢× ×××× ×ספר ש×ר×ת שעש×××ת ××ר×ש ×× ×פ××צ×× × ×ספת ×××× ××××× ×××ª× ×ת×× ×ת ×× "
-"× ××ª× ××שת×ש.××ª× ××¢× ×ª×פ××¢ ×¤×¢× ××ת ×××צ××, ×ס×ר ×¢×××× ××ש××× ×ת\n"
+"××× ×ª× ××¢× ×××× ×ספר ש×ר×ת שעש×××ת ××ר×ש ×× ×פ××צ×× × ×ספת ×××× ××××× ×××ª× ×ת×× ×ת "
+"×× × ××ª× ××שת×ש.××ª× ××¢× ×ª×פ××¢ ×¤×¢× ××ת ×××צ××, ×ס×ר ×¢×××× ××ש××× ×ת\n"
"\n"
-"××××רת פר××¡× ×¤×©×××, ×פ×× ×××¦× ××××× ×¢× ×©××¨× ××××ת ×××××, ×××§ ×פר×× ×××¢××¨× ×¢××××× "
-"××××.\n"
+"××××רת פר××¡× ×¤×©×××, ×פ×× ×××¦× ××××× ×¢× ×©××¨× ××××ת ×××××, ×××§ ×פר×× ×××¢××¨× "
+"×¢××××× ××××.\n"
"\n"
"× × ××××ר ×ת ××××ר×ת ××ר×ש×ת ××§×××¥ ×××§×©× ×¢× '×××' ××× ×××ש×× ×× '×××××' ×× ××שת "
"××צ××.\n"
@@ -18780,11 +19039,12 @@ msgstr ""
#: gnucash/import-export/csv-exp/assistant-csv-export.c:758
msgid ""
"There was a problem with the export, this could be due to lack of space, "
-"permissions or unable to access folder. Check the trace file for further logging!\n"
+"permissions or unable to access folder. Check the trace file for further "
+"logging!\n"
"You may need to enable debugging.\n"
msgstr ""
-"ר××¨×¢× ××¢×× ××צ××, עש×× ××××ת ×¢×§× ××סר ××§××, ×רש××ת ×× ××סר ××××ת ××שת ×ת××§××. × × "
-"×××××§ ×ת ×§×××¥ ××¢×§×××ת ×צ××¨× ××××¢ × ×סף!\n"
+"ר××¨×¢× ××¢×× ××צ××, עש×× ××××ת ×¢×§× ××סר ××§××, ×רש××ת ×× ××סר ××××ת ××שת ×ת××§××. "
+"× × ×××××§ ×ת ×§×××¥ ××¢×§×××ת ×צ××¨× ××××¢ × ×סף!\n"
"×ת×× ××××× ×¦××¨× ××פע×ת × ×פ×× ×ª×§×××.\n"
#: gnucash/import-export/csv-exp/assistant-csv-export.c:762
@@ -18908,7 +19168,8 @@ msgstr "×צ×× ××××× ×פע×× ××§×××¥ CSV"
msgid ""
"The accounts will be imported from the file '%s' when you click 'Apply'.\n"
"\n"
-"You can verify your selections by clicking on 'Back' or 'Cancel' to Abort Import.\n"
+"You can verify your selections by clicking on 'Back' or 'Cancel' to Abort "
+"Import.\n"
msgstr ""
"××ש××× ×ת ×××××× ××§×××¥ '%s' ×××§×©× ×¢× '××××'.\n"
"\n"
@@ -18919,22 +19180,24 @@ msgstr ""
msgid ""
"The accounts will be imported from the file '%s' when you click 'Apply'.\n"
"\n"
-"You can verify your selections by clicking on 'Back' or 'Cancel' to Abort Import.\n"
+"You can verify your selections by clicking on 'Back' or 'Cancel' to Abort "
+"Import.\n"
"\n"
-"If this is your initial import into a new file, you will first see a dialog for "
-"setting book options, since these can affect how imported data is converted to "
-"GnuCash transactions.\n"
-"Note: After import, you may need to use 'View / Filter By / Other' menu option and "
-"select to show unused Accounts.\n"
+"If this is your initial import into a new file, you will first see a dialog "
+"for setting book options, since these can affect how imported data is "
+"converted to GnuCash transactions.\n"
+"Note: After import, you may need to use 'View / Filter By / Other' menu option "
+"and select to show unused Accounts.\n"
msgstr ""
"××ש××× ×ת ×××××× ×××§×××¥ '%s' ×עת ××§×©× ×¢× '××××'.\n"
"\n"
"× ××ª× ×××ת ×ת ×××××¨× ×¢×-××× ××§×©× ×¢× '××§×××' ×× '×××××' ×× ××שת ×××××.\n"
"\n"
-"×× ××× ×××××× ×ר×ש×× × ××§×××¥ ××ש, ת××¦× ×ª×××× ×××× ××-ש×× ××××רת ×פשר×××ת ספר××, ×××ר "
-"××××ר×ת ××× ×¢×©×××ת ××שפ××¢ ×¢× ××××¤× ×©×× ×× ×ª×× ×× ×××××××× ×××ר×× ××ª× ××¢×ת ×× ××§×ש.\n"
-"×ער×: ×××ר ×××××, ××ת×× ×××רש ××××ר ×תפר×× '×צ×× -> ס×× ×× ××¤× -> ××ר' ××צ×× ×ש××× ×ת "
-"ש×× ×ש×××ש.\n"
+"×× ××× ×××××× ×ר×ש×× × ××§×××¥ ××ש, ת××¦× ×ª×××× ×××× ××-ש×× ××××רת ×פשר×××ת ספר××, "
+"×××ר ××××ר×ת ××× ×¢×©×××ת ××שפ××¢ ×¢× ××××¤× ×©×× ×× ×ª×× ×× ×××××××× ×××ר×× ××ª× ××¢×ת "
+"×× ××§×ש.\n"
+"×ער×: ×××ר ×××××, ××ת×× ×××רש ××××ר ×תפר×× '×צ×× -> ס×× ×× ××¤× -> ××ר' ××צ×× "
+"×ש××× ×ת ש×× ×ש×××ש.\n"
#: gnucash/import-export/csv-imp/assistant-csv-account-import.c:528
#, c-format
@@ -19064,8 +19327,8 @@ msgstr ""
#: gnucash/import-export/csv-imp/assistant-csv-price-import.cpp:1926
#, c-format
msgid ""
-"An unexpected error has occurred while creating prices. Please report this as a "
-"bug.\n"
+"An unexpected error has occurred while creating prices. Please report this as "
+"a bug.\n"
"\n"
"Error message:\n"
"%s"
@@ -19081,14 +19344,15 @@ msgstr "××× ×ש××× ××§×שר"
#: gnucash/import-export/csv-imp/assistant-csv-trans-import.cpp:1957
msgid ""
-"To change mapping, double click on a row or select a row and press the button..."
+"To change mapping, double click on a row or select a row and press the "
+"button..."
msgstr "××× ××©× ×ת ××פ××, ×ש ×××§×ש פע×××× ×¢× ×©××¨× ×× ××××ר ש××¨× ×××§×©× ×¢× ×××צ×..."
#: gnucash/import-export/csv-imp/assistant-csv-trans-import.cpp:2001
#, c-format
msgid ""
-"An unexpected error has occurred while mapping accounts. Please report this as a "
-"bug.\n"
+"An unexpected error has occurred while mapping accounts. Please report this as "
+"a bug.\n"
"\n"
"Error message:\n"
"%s"
@@ -19101,8 +19365,8 @@ msgstr ""
#: gnucash/import-export/csv-imp/assistant-csv-trans-import.cpp:2035
#, c-format
msgid ""
-"An unexpected error has occurred while creating transactions. Please report this as "
-"a bug.\n"
+"An unexpected error has occurred while creating transactions. Please report "
+"this as a bug.\n"
"\n"
"Error message:\n"
"%s"
@@ -19159,19 +19423,20 @@ msgstr "× × ××××ר ×¢×××ת ס×××."
#: gnucash/import-export/csv-imp/gnc-import-price.cpp:449
msgid ""
-"Please select a 'Currency to' column or set a Currency in the 'Currency To' field."
+"Please select a 'Currency to' column or set a Currency in the 'Currency To' "
+"field."
msgstr "×× × ×צ×× × ×ª×× ×× ×ª×§×¤×× ××§×××¥ ×©× ××ר. ×ת×× ×©××× ×¨××§ ×× ×©××§×××× ×©× ××ר ש×××."
#: gnucash/import-export/csv-imp/gnc-import-price.cpp:457
msgid ""
-"Please select a 'From Symbol' column or set a Commodity in the 'Commodity From' "
-"field."
+"Please select a 'From Symbol' column or set a Commodity in the 'Commodity "
+"From' field."
msgstr "× × ××××ר ×ת ×¢×××ת '×ס××' ×× ×××××ר ס×××¨× ×ש×× 'ס×××¨× ×'."
#: gnucash/import-export/csv-imp/gnc-import-price.cpp:465
msgid ""
-"Please select a 'From Namespace' column or set a Commodity in the 'Commodity From' "
-"field."
+"Please select a 'From Namespace' column or set a Commodity in the 'Commodity "
+"From' field."
msgstr "× × ××××ר ×ת ×¢×××ת '××ר×× ×©×' ×× ×××××ר ס×××¨× ×ש×× 'ס×××¨× ×'."
#: gnucash/import-export/csv-imp/gnc-import-price.cpp:473
@@ -19184,9 +19449,10 @@ msgstr "'ס×××¨× ×' ×× ×××× ××××ת ××× × '××××¢ ×'."
#: gnucash/import-export/csv-imp/gnc-import-price.cpp:493
#: gnucash/import-export/csv-imp/gnc-import-tx.cpp:515
msgid ""
-"No valid data found in the selected file. It may be empty or the selected encoding "
-"is wrong."
-msgstr "×× × ×צ×× × ×ª×× ×× ×ª×§×× ×× ××§×××¥ ×©× ××ר. ×ת×× ×©××§×××¥ ר××§ ×× ×©××§×××× ×©× ××ר ש×××."
+"No valid data found in the selected file. It may be empty or the selected "
+"encoding is wrong."
+msgstr ""
+"×× × ×צ×× × ×ª×× ×× ×ª×§×× ×× ××§×××¥ ×©× ××ר. ×ת×× ×©××§×××¥ ר××§ ×× ×©××§×××× ×©× ××ר ש×××."
#: gnucash/import-export/csv-imp/gnc-import-price.cpp:501
#: gnucash/import-export/csv-imp/gnc-import-tx.cpp:523
@@ -19197,10 +19463,11 @@ msgstr "×× × ×××¨× ×©×ר×ת ×××××. × × ×צ××¦× ×ת ×ספר ×
#: gnucash/import-export/csv-imp/gnc-import-price.cpp:520
#: gnucash/import-export/csv-imp/gnc-import-tx.cpp:542
msgid ""
-"Not all fields could be parsed. Please correct the issues reported for each line or "
-"adjust the lines to skip."
+"Not all fields could be parsed. Please correct the issues reported for each "
+"line or adjust the lines to skip."
msgstr ""
-"×× × ××ª× ×× ×ª× ×ת ×× ×ש××ת. × × ××ª×§× ×ת ×××¢××ת ש××××× ××× ×©×ר×, ×× ××צע ××××× ×©×ר×ת."
+"×× × ××ª× ×× ×ª× ×ת ×× ×ש××ת. × × ××ª×§× ×ת ×××¢××ת ש××××× ××× ×©×ר×, ×× ××צע ××××× "
+"ש×ר×ת."
#. Oops - the user didn't select a 'currency to' column *and* we didn't get a selected value either!
#. Note if you get here this suggests a bug in the code!
@@ -19216,8 +19483,8 @@ msgstr ""
#. Note if you get here this suggests a bug in the code!
#: gnucash/import-export/csv-imp/gnc-import-price.cpp:588
msgid ""
-"No 'From Namespace/From Symbol' columns selected and no selected Commodity From "
-"specified either.\n"
+"No 'From Namespace/From Symbol' columns selected and no selected Commodity "
+"From specified either.\n"
"This should never happen. Please report this as a bug."
msgstr ""
"×× × ×××¨× ×¢××××ת '××ר×× ×©×/×ס××' ××× ×× × ×§××¢× 'ס×××¨× ×' ×©× ××ר×.\n"
@@ -19228,7 +19495,8 @@ msgid "Please select an account column."
msgstr "× × ××××ר ×¢×××ת ×ש×××."
#: gnucash/import-export/csv-imp/gnc-import-tx.cpp:473
-msgid "Please select an account column or set a base account in the Account field."
+msgid ""
+"Please select an account column or set a base account in the Account field."
msgstr "× × ××××ר ×¢×××ת ×ש××× ×× ×××××ר ×ש××× ×ס×ס ×ש×× ×ש×××."
#: gnucash/import-export/csv-imp/gnc-import-tx.cpp:479
@@ -19316,6 +19584,8 @@ msgstr "××¢×¨× × ×¤×¨×¡ ×××××¢ ×× ×××§× ×ס×× ×¢×××ת ××××¢.
#: gnucash/import-export/csv-imp/gnc-imp-props-tx.cpp:265
#: gnucash/import-export/csv-imp/gnc-imp-props-tx.cpp:476
#: gnucash/import-export/csv-imp/gnc-imp-props-tx.cpp:484
+#: gnucash/import-export/csv-imp/gnc-imp-props-tx.cpp:539
+#: gnucash/import-export/csv-imp/gnc-imp-props-tx.cpp:547
msgid " could not be understood.\n"
msgstr " ×× ××××.\n"
@@ -19381,15 +19651,15 @@ msgstr "×¢×¨× ×ש××× ×× ×××× ××××ת ר××§."
msgid "Transfer account value can't be empty."
msgstr "××¢×¨× ××ש××× ×× ××× ×× ×××× ×××ש×ר ר××§."
-#: gnucash/import-export/csv-imp/gnc-imp-props-tx.cpp:510
+#: gnucash/import-export/csv-imp/gnc-imp-props-tx.cpp:559
msgid "No deposit or withdrawal column."
msgstr "××× ×¢×××ת ×פק×× ×× ×ש×××."
-#: gnucash/import-export/csv-imp/gnc-imp-props-tx.cpp:516
+#: gnucash/import-export/csv-imp/gnc-imp-props-tx.cpp:565
msgid "Split is reconciled but reconcile date column is missing or invalid."
msgstr "×פ×צ×× ××ת×× ×× ×¢×××ת ת×ר×× ××ת××× ××¡×¨× ×× ×¤××××."
-#: gnucash/import-export/csv-imp/gnc-imp-props-tx.cpp:523
+#: gnucash/import-export/csv-imp/gnc-imp-props-tx.cpp:572
msgid ""
"Transfer split is reconciled but transfer reconcile date column is missing or "
"invalid."
@@ -19476,11 +19746,12 @@ msgstr "(×××× ×ש××× ×××: "
#: gnucash/import-export/import-commodity-matcher.c:113
msgid ""
-"Please select a commodity to match the following exchange specific code. Please "
-"note that the exchange code of the commodity you select will be overwritten."
+"Please select a commodity to match the following exchange specific code. "
+"Please note that the exchange code of the commodity you select will be "
+"overwritten."
msgstr ""
-"× × ××××ר ס×××¨× ×©×ª×ª××× ××§×× ×¡×¤×¦××¤× ×©× ××רת ××ס×ר ××××. ×תש××ת ××, ×§×× ××רת ××ס×ר ×©× "
-"×ס×××¨× ×©×ª××ר ת××××£."
+"× × ××××ר ס×××¨× ×©×ª×ª××× ××§×× ×¡×¤×¦××¤× ×©× ××רת ××ס×ר ××××. ×תש××ת ××, ×§×× ××רת "
+"××ס×ר ×©× ×ס×××¨× ×©×ª××ר ת××××£."
#: gnucash/import-export/import-format-dialog.c:78
msgid "m/d/y"
@@ -19579,7 +19850,8 @@ msgstr "××××ת"
msgid "Pending Action"
msgstr "פע××× ××ש××ת"
-#: gnucash/import-export/import-pending-matches.c:194 libgnucash/engine/policy.c:61
+#: gnucash/import-export/import-pending-matches.c:194
+#: libgnucash/engine/policy.c:61
msgid "Manual"
msgstr "××× ×"
@@ -19590,7 +19862,7 @@ msgstr "×××××××"
#: gnucash/import-export/log-replay/gnc-log-replay.c:580
msgid "Select a .log file to replay"
-msgstr "×××רת ×§×××¥ .log ×××¨×¦× ×××רת"
+msgstr "×××רת ×§×××¥ log. ×××¨×¦× ×××רת"
#. Translators: %s is the file name.
#: gnucash/import-export/log-replay/gnc-log-replay.c:600
@@ -19612,12 +19884,13 @@ msgid "The log file you selected was empty."
msgstr "×§×××¥ ×××× ×©× ××ר ר××§."
#: gnucash/import-export/log-replay/gnc-log-replay.c:635
-msgid "The log file you selected cannot be read. The file header was not recognized."
+msgid ""
+"The log file you selected cannot be read. The file header was not recognized."
msgstr "×× × ××ª× ×קר×× ×ת ×§×××¥ ××××. ×××תרת ××¢×××× × (header) ×©× ××§×××¥ ×× ×××ת×."
#: gnucash/import-export/log-replay/gnc-plugin-log-replay.c:48
msgid "_Replay GnuCash .log file..."
-msgstr "_××¨×¦× ××××שת ×©× ×§×××¥ .log ×× ××§×ש..."
+msgstr "_××¨×¦× ××××שת ×©× ×§×××¥ log. ×× ××§×ש..."
#: gnucash/import-export/log-replay/gnc-plugin-log-replay.c:49
msgid "Replay a GnuCash log file after a crash. This cannot be undone."
@@ -19697,20 +19970,20 @@ msgstr "× × ××××× ×©× ×× ×ª×××ר קצר, ××× ×××©× \"×× ××
#: gnucash/import-export/qif-imp/assistant-qif-import.c:863
msgid ""
-"Enter the ticker symbol or other well known abbreviation, such as \"RHT\". If there "
-"isn't one, or you don't know it, create your own."
+"Enter the ticker symbol or other well known abbreviation, such as \"RHT\". If "
+"there isn't one, or you don't know it, create your own."
msgstr ""
-"× × ××××× ×¡×× ×××קר ×× ×§×צ×ר ×××ר ××ר ××× \"RHT\". ×× ××× ××× ×× ×× ×©××× × ×××ר, ×ש "
-"×××צ×ר ×××ª× ×עצ×××)."
+"× × ××××× ×¡×× ×××קר ×× ×§×צ×ר ×××ר ××ר ××× \"RHT\". ×× ××× ××× ×× ×× ×©××× × ×××ר, "
+"×ש ×××צ×ר ×××ª× ×עצ×××)."
#: gnucash/import-export/qif-imp/assistant-qif-import.c:866
msgid ""
-"Select the exchange on which the symbol is traded, or select the type of investment "
-"(such as FUND for mutual funds.) If you don't see your exchange or an appropriate "
-"investment type, you can enter a new one."
+"Select the exchange on which the symbol is traded, or select the type of "
+"investment (such as FUND for mutual funds.) If you don't see your exchange or "
+"an appropriate investment type, you can enter a new one."
msgstr ""
-"×××רת ××רת ×ס×ר ×× × ×¡×ר ×ס××, ×× ××××¨× ×ס×× ××©×§×¢× (×××× FUND ××§×¨× ×ת × ××× ×ת.) ××××× "
-"×××רת ××ס×ר ×× ×¡×× ××©×§×¢× ××ת××× ××× × ××צ×, × ××ª× ××××× ××ת ××ש×."
+"×××רת ××רת ×ס×ר ×× × ×¡×ר ×ס××, ×× ××××¨× ×ס×× ××©×§×¢× (×××× FUND ××§×¨× ×ת × ××× ×ת.) "
+"××××× ×××רת ××ס×ר ×× ×¡×× ××©×§×¢× ××ת××× ××× × ××צ×, × ××ª× ××××× ××ת ××ש×."
#: gnucash/import-export/qif-imp/assistant-qif-import.c:906
msgid "_Name or description:"
@@ -19805,12 +20078,12 @@ msgstr "×××¢×× × ××ש×××"
#: gnucash/import-export/qif-imp/assistant-qif-import.c:2018
msgid ""
-"When you press the Start Button, GnuCash will load your QIF file. If there are no "
-"errors or warnings, you will automatically proceed to the next step. Otherwise, the "
-"details will be shown below for your review."
+"When you press the Start Button, GnuCash will load your QIF file. If there are "
+"no errors or warnings, you will automatically proceed to the next step. "
+"Otherwise, the details will be shown below for your review."
msgstr ""
-"×עת ××§×©× ×¢× ×××¦× ×ת×××, ×× ××§×ש ×××¢× ×ת ×§×××¥ ×-QIF. ×× ×× × ×ת×××× ×©××××ת ×× ×××ר×ת, "
-"ת×ש×× ××××¤× ××××××× ×ש×× ×××. ××רת, ×פר××× ××צ×× ×××× ××§××ת ×סק×ר×."
+"×עת ××§×©× ×¢× ×××¦× ×ת×××, ×× ××§×ש ×××¢× ×ת ×§×××¥ ×-QIF. ×× ×× × ×ת×××× ×©××××ת ×× "
+"×××ר×ת, ת×ש×× ××××¤× ××××××× ×ש×× ×××. ××רת, ×פר××× ××צ×× ×××× ××§××ת ×סק×ר×."
#: gnucash/import-export/qif-imp/assistant-qif-import.c:2649
msgid "Choose the QIF file currency"
@@ -19840,12 +20113,12 @@ msgstr "××××¨× ××ש×××"
#: gnucash/import-export/qif-imp/assistant-qif-import.c:3207
msgid ""
-"When you press the Start Button, GnuCash will import your QIF data. If there are no "
-"errors or warnings, you will automatically proceed to the next step. Otherwise, the "
-"details will be shown below for your review."
+"When you press the Start Button, GnuCash will import your QIF data. If there "
+"are no errors or warnings, you will automatically proceed to the next step. "
+"Otherwise, the details will be shown below for your review."
msgstr ""
-"×עת ××§×©× ×¢× ×××¦× '×ת×××', ×× ××§×ש ×××× ×ת × ×ª×× × ×-QIF . ××××× ××× × ×ª××× ×©××××ת ×× "
-"×××ר×ת, ×ת×××× ×תק×× ××××¤× ××××××× ×ש×× ×××. ××רת, ×פר××× ××צ×× ××× ×סק×ר×."
+"×עת ××§×©× ×¢× ×××¦× '×ת×××', ×× ××§×ש ×××× ×ת × ×ª×× × ×-QIF. ××××× ××× × ×ª××× ×©××××ת "
+"×× ×××ר×ת, ×ת×××× ×תק×× ××××¤× ××××××× ×ש×× ×××. ××רת, ×פר××× ××צ×× ××× ×סק×ר×."
#: gnucash/import-export/qif-imp/assistant-qif-import.c:3413
msgid "GnuCash was unable to save your mapping preferences."
@@ -19919,9 +20192,9 @@ msgstr "ר××× ××× (קצר)"
#: gnucash/import-export/qif-imp/qif-dialog-utils.scm:73
#: gnucash/import-export/qif-imp/qif-dialog-utils.scm:77
#: gnucash/report/business-reports/balsheet-eg.eguile.scm:195
-#: gnucash/report/standard-reports/balance-sheet.scm:669
+#: gnucash/report/standard-reports/balance-sheet.scm:668
#: gnucash/report/standard-reports/balsheet-pnl.scm:1062
-#: libgnucash/app-utils/gnc-ui-util.c:976
+#: libgnucash/app-utils/gnc-ui-util.c:955
msgid "Retained Earnings"
msgstr "ר××××× ××××¢×××"
@@ -20141,7 +20414,8 @@ msgid ""
"The current transaction has been changed. Would you like to record the changes "
"before duplicating this entry, or cancel the duplication?"
msgstr ""
-"××ª× ××¢× ×× ××××ת ××©×ª× ×ª×. ××× ×רש×× ×ת ×ש×× ×××× ××¤× × ×©××פ×× ××ª× ××¢×, ×× ×××× ×ת ×ש×פ××?"
+"××ª× ××¢× ×× ××××ת ××©×ª× ×ª×. ××× ×רש×× ×ת ×ש×× ×××× ××¤× × ×©××פ×× ××ª× ××¢×, ×× ×××× ×ת "
+"×ש×פ××?"
#: gnucash/register/ledger-core/gncEntryLedgerControl.c:157
msgid ""
@@ -20167,8 +20441,8 @@ msgid ""
"The current entry has been changed. However, this entry is part of an existing "
"order. Would you like to record the change and effectively change your order?"
msgstr ""
-"××¢×¨× ×× ×××× ××©×ª× ×. ×× ×¢×¨× ×× ××× ×××§ ××××× × ×§×××ת. ××× ×רש×× ×ת ×ש×× ×× ×××©× ×ת ×ת "
-"××××× × ××ת××?"
+"××¢×¨× ×× ×××× ××©×ª× ×. ×× ×¢×¨× ×× ××× ×××§ ××××× × ×§×××ת. ××× ×רש×× ×ת ×ש×× ×× ×××©× ×ת "
+"×ת ××××× × ××ת××?"
#: gnucash/register/ledger-core/gncEntryLedgerControl.c:896
msgid "_Don't Record"
@@ -20178,77 +20452,96 @@ msgstr "_×× ××צע ר×ש××"
msgid "The current entry has been changed. Would you like to save it?"
msgstr "×רש××× ×× ××××ת ××©×ª× ×ª×. ××× ×ש××ר ××ת×?"
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:76
-msgid "sample:X"
-msgstr "sample:X"
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:77
+msgctxt "sample for a checkbox"
+msgid "X"
+msgstr "X"
-#. Translators: The 'sample:' items are
-#. strings which are not displayed, but only
-#. used to estimate widths. Please only
-#. translate the portion after the ':' and
-#. leave the rest ("sample:") as is.
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:80
-#: gnucash/register/ledger-core/split-register-layout.c:642
-#: gnucash/register/ledger-core/split-register-layout.c:650
-msgid "sample:12/12/2000"
-msgstr "sample:12/12/2000"
-
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:85
-msgid "sample:Description of an Entry"
-msgstr "sample:ת××ר רש×××"
-
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:89
-msgid "sample:Action"
-msgstr "sample:פע×××"
-
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:93
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:101
-msgid "sample:9,999.00"
-msgstr "sample:9,999.00"
-
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:97
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:137
-msgid "sample:999,999.00"
-msgstr "sample:999,999.00"
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:81
+msgctxt "sample for 'Date'"
+msgid "12/12/2000"
+msgstr "12/12/2000"
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:106
-msgid "sample(DT):+%"
-msgstr "×××××(DT):+%"
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:86
+msgctxt "sample for 'Description'"
+msgid "Description of an Entry"
+msgstr "ת×××ר רש×××"
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:111
-msgid "sample(DH):+%"
-msgstr "×××××(DH):+%"
-
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:116
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:121
-#: gnucash/register/ledger-core/split-register-layout.c:735
-#: gnucash/register/ledger-core/split-register-layout.c:743
-msgid "sample:Expenses:Automobile:Gasoline"
-msgstr "sample:××צ××ת:××× ×¨××:×××§"
-
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:125
-msgid "sample:T?"
-msgstr "sample:T?"
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:92
+msgctxt "sample"
+msgid "Action"
+msgstr "פע×××"
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:129
-msgid "sample:TI"
-msgstr "sample:TI"
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:96
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:104
+msgctxt "sample"
+msgid "9,999.00"
+msgstr "9,999.00"
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:133
-msgid "sample:Tax Table 1"
-msgstr "sample:×××ת ×ס 1"
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:100
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:145
+msgctxt "sample"
+msgid "999,999.00"
+msgstr "999,999.00"
+
+#. Translators: Header for Discount Type
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:110
+#, no-c-format
+msgctxt "sample for 'Discount Type'"
+msgid "+%"
+msgstr "+%"
+
+#. Translators: Header for Discount How
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:116
+#, no-c-format
+msgctxt "sample for Discount How'"
+msgid "+%"
+msgstr "+%"
+
+#. Translators: Enter the longest expected path of an Account
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:122
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:127
+#: gnucash/register/ledger-core/split-register-layout.c:723
+#: gnucash/register/ledger-core/split-register-layout.c:731
+msgctxt "sample"
+msgid "Expenses:Automobile:Gasoline"
+msgstr "××צ××ת:××× ×¨××:×××§"
+
+# ת?=×××ת ×ס
+#. Translators: Abbreviation sample for Taxable?
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:132
+msgctxt "sample for 'Taxable'"
+msgid "T?"
+msgstr "ת?"
+
+# ××=×××× ×ס
+#. Translators: Abbreviation sample for Tax Included
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:137
+msgctxt "sample for 'Tax Included'"
+msgid "TI"
+msgstr "××"
#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:141
-msgid "sample:999.00"
-msgstr "sample:999.00"
-
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:145
-msgid "sample:BI"
-msgstr "sample:BI"
+msgctxt "sample for 'Tax Table'"
+msgid "Tax Table 1"
+msgstr "×××ת ×ס 1"
#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:149
-msgid "sample:Payment"
-msgstr "sample:תש×××"
+msgctxt "sample"
+msgid "999.00"
+msgstr "999.00"
+
+# ×=×ר ××××
+#. Translators: Abbreviation sample for Billable
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:154
+msgctxt "sample for 'Billable'"
+msgid "BI"
+msgstr "×"
+
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:158
+msgctxt "sample"
+msgid "Payment"
+msgstr "תש×××"
#: gnucash/register/ledger-core/gncEntryLedgerLoad.c:53
msgid "$"
@@ -20294,8 +20587,8 @@ msgstr "×××¤× ×× ××"
#: gnucash/report/business-reports/invoice.scm:97
#: gnucash/report/business-reports/receipt.scm:92
#: gnucash/report/business-reports/receipt.scm:173
-#: gnucash/report/business-reports/taxinvoice.scm:116
-#: gnucash/report/business-reports/taxinvoice.scm:199
+#: gnucash/report/business-reports/taxinvoice.scm:115
+#: gnucash/report/business-reports/taxinvoice.scm:198
msgid "Unit Price"
msgstr "×××ר ××××××"
@@ -20323,7 +20616,8 @@ msgstr "ס×××× ××× ×××"
#: gnucash/register/ledger-core/gncEntryLedgerModel.c:122
#: gnucash/report/business-reports/invoice.scm:565
-#: gnucash/report/business-reports/owner-report.scm:58 libgnucash/tax/us/de_DE.scm:52
+#: gnucash/report/business-reports/owner-report.scm:58
+#: libgnucash/tax/us/de_DE.scm:52
msgid "Tax"
msgstr "×ס"
@@ -20332,7 +20626,8 @@ msgid "Billable?"
msgstr "×ר ××××?"
#: gnucash/register/ledger-core/gncEntryLedgerModel.c:545
-msgid "Enter the income/expense account for the Entry, or choose one from the list"
+msgid ""
+"Enter the income/expense account for the Entry, or choose one from the list"
msgstr "× × ××××× ×ש××× ×××× ×¡×ת/××צ××ת ×¢××ר ×רש×××, ×× ××××¨×ª× ×רש×××"
#: gnucash/register/ledger-core/gncEntryLedgerModel.c:558
@@ -20353,7 +20648,7 @@ msgstr "× × ××××× ×××× ××× ××"
#: gnucash/register/ledger-core/gncEntryLedgerModel.c:610
msgid "Enter the Discount ... unknown type"
-msgstr "× × ××××× ××× ×× ... ס×× ×× ××××¢"
+msgstr "× × ××××× ××× ××... ס×× ×× ××××¢"
#: gnucash/register/ledger-core/gncEntryLedgerModel.c:628
msgid "Discount Type: Monetary Value"
@@ -20441,8 +20736,8 @@ msgstr "×××¦× ×©××× ×¢××ר ×פר××?"
#: gnucash/register/ledger-core/split-register.c:183
msgid ""
-"This transaction is already being edited in another register. Please finish editing "
-"it there first."
+"This transaction is already being edited in another register. Please finish "
+"editing it there first."
msgstr "×ª× ××¢× ×× × ×¢×¨×ת ××××× ××ר. × × ×ס××× ×§××× ×ער×× ×ת ××ª× ××¢× ×©×."
#: gnucash/register/ledger-core/split-register.c:450
@@ -20454,7 +20749,8 @@ msgid ""
"The current transaction has been changed. Would you like to record the changes "
"before duplicating the transaction, or cancel the duplication?"
msgstr ""
-"××ª× ××¢× ×× ××××ת ××©×ª× ×ª×. ××× ×רש×× ×ת ×ש×× ×××× ××¤× × ×©××פ×× ××ª× ××¢×, ×× ×××× ×ת ×ש×פ××?"
+"××ª× ××¢× ×× ××××ת ××©×ª× ×ª×. ××× ×רש×× ×ת ×ש×× ×××× ××¤× × ×©××פ×× ××ª× ××¢×, ×× ×××× ×ת "
+"×ש×פ××?"
#: gnucash/register/ledger-core/split-register.c:922
msgid ""
@@ -20463,17 +20759,17 @@ msgstr "××× ××ר×ס ×ת ×פ×צ×× ××§×××?"
#: gnucash/register/ledger-core/split-register.c:924
msgid ""
-"This is the split anchoring this transaction to the register. You may not overwrite "
-"it from this register window. You may overwrite it if you navigate to a register "
-"that shows another side of this same transaction."
+"This is the split anchoring this transaction to the register. You may not "
+"overwrite it from this register window. You may overwrite it if you navigate "
+"to a register that shows another side of this same transaction."
msgstr ""
-"פ×צ×× ×× ×××ר ×ת ××ª× ××¢× ×××××. ×× × ××ª× ××ר×ס ×ת ×פ×צ×× ××××× ×××× ××. × ××ª× ×××× "
-"××©× ×ת ×ת ×פ×צ×× ×¢× ××× ××¢×ר ××ש××× ×× ××× ×©× ××ª× ××¢×."
+"פ×צ×× ×× ×××ר ×ת ××ª× ××¢× ×××××. ×× × ××ª× ××ר×ס ×ת ×פ×צ×× ××××× ×××× ××. × ××ª× "
+"×××× ××©× ×ת ×ת ×פ×צ×× ×¢× ××× ××¢×ר ××ש××× ×× ××× ×©× ××ª× ××¢×."
#: gnucash/register/ledger-core/split-register.c:977
msgid ""
-"You are about to overwrite an existing transaction. Are you sure you want to do "
-"that?"
+"You are about to overwrite an existing transaction. Are you sure you want to "
+"do that?"
msgstr "××× ××ר×ס ×ת ××ª× ××¢× ××§×××ת?"
#: gnucash/register/ledger-core/split-register-control.c:1352
@@ -20491,80 +20787,89 @@ msgstr "ס××× ×פ×צ×× ××× ×פס, ××× ×× × ×רש שער ×××
#: gnucash/register/ledger-core/split-register-control.c:1529
msgid ""
"The current transaction has been changed. Would you like to record the changes "
-"before moving to a new transaction, discard the changes, or return to the changed "
-"transaction?"
+"before moving to a new transaction, discard the changes, or return to the "
+"changed transaction?"
msgstr ""
"××ª× ××¢× ×× ××××ת ××©×ª× ×ª×. ××× ×רש×× ×ת ×ש×× ×××× ××¤× × ×××¢×ר ××ª× ××¢× ××ש×, ×× ××ש ×ת "
"×ש×× ×××× ×× ××××ר ××ª× ××¢× ×©××©×ª× ×ª×?"
#. Translators: The 'sample:' items are
#. strings which are not displayed, but only
-#. used to estimate widths. Please only
-#. translate the portion after the ':' and
-#. leave the rest ("sample:") as is.
-#: gnucash/register/ledger-core/split-register-layout.c:663
-#: gnucash/register/ledger-core/split-register-layout.c:671
-msgid "sample:99999"
-msgstr "sample:99999"
-
-#: gnucash/register/ledger-core/split-register-layout.c:679
-msgid "sample:Description of a transaction"
-msgstr "sample:ת××ר ×ª× ××¢×"
+#. used to estimate widths.
+#: gnucash/register/ledger-core/split-register-layout.c:640
+#: gnucash/register/ledger-core/split-register-layout.c:648
+msgctxt "sample"
+msgid "12/12/2000"
+msgstr "12/12/2000"
+
+#. Translators: The 'sample' items are
+#. strings which are not displayed, but only
+#. used to estimate widths.
+#: gnucash/register/ledger-core/split-register-layout.c:659
+#: gnucash/register/ledger-core/split-register-layout.c:667
+msgctxt "sample"
+msgid "99999"
+msgstr "99999"
+
+#: gnucash/register/ledger-core/split-register-layout.c:675
+msgctxt "sample"
+msgid "Description of a transaction"
+msgstr "ת×××ר ×ª× ××¢×"
# צ=צר×פ×
-#. Translators: The abbreviation for 'Associate'
-#. in the header row of the register. Please only
-#. translate the portion after the ':' and
-#. leave the rest ("Associate:") as is.
-#: gnucash/register/ledger-core/split-register-layout.c:711
+#: gnucash/register/ledger-core/split-register-layout.c:699
#: gnucash/register/ledger-core/split-register-model.c:328
-msgid "Associate:A"
-msgstr "Associate:צ"
-
-#: gnucash/register/ledger-core/split-register-layout.c:719
-#: gnucash/register/ledger-core/split-register-layout.c:759
-#: gnucash/register/ledger-core/split-register-layout.c:767
-#: gnucash/register/ledger-core/split-register-layout.c:775
-#: gnucash/register/ledger-core/split-register-layout.c:785
-#: gnucash/register/ledger-core/split-register-layout.c:793
-#: gnucash/register/ledger-core/split-register-layout.c:801
-#: gnucash/register/ledger-core/split-register-layout.c:809
-#: gnucash/register/ledger-core/split-register-layout.c:817
-#: gnucash/register/ledger-core/split-register-layout.c:869
-msgid "sample:999,999.000"
-msgstr "sample:999,999.000"
-
-#: gnucash/register/ledger-core/split-register-layout.c:751
-msgid "sample:Memo field sample text string"
-msgstr "sample:××××ת ××ר××ת ××× ×©×× ×××ר"
+msgctxt "Column header for 'Associate'"
+msgid "A"
+msgstr "צ"
+
+#: gnucash/register/ledger-core/split-register-layout.c:707
+#: gnucash/register/ledger-core/split-register-layout.c:747
+#: gnucash/register/ledger-core/split-register-layout.c:755
+#: gnucash/register/ledger-core/split-register-layout.c:763
+#: gnucash/register/ledger-core/split-register-layout.c:773
+#: gnucash/register/ledger-core/split-register-layout.c:781
+#: gnucash/register/ledger-core/split-register-layout.c:789
+#: gnucash/register/ledger-core/split-register-layout.c:797
+#: gnucash/register/ledger-core/split-register-layout.c:805
+#: gnucash/register/ledger-core/split-register-layout.c:853
+msgctxt "sample"
+msgid "999,999.000"
+msgstr "999,999.000"
+
+#: gnucash/register/ledger-core/split-register-layout.c:739
+msgctxt "sample"
+msgid "Memo field sample text string"
+msgstr "××××ת ××ר××ת ××× ×©×× ×××ר"
# ס=ס××
-#. Translators: The abbreviation for 'Type'
-#. in the header row of the register. Please only
-#. translate the portion after the ':' and
-#. leave the rest ("Type:") as is.
+#: gnucash/register/ledger-core/split-register-layout.c:813
+msgctxt "Column header for 'Type'"
+msgid "T"
+msgstr "ס"
+
+#: gnucash/register/ledger-core/split-register-layout.c:821
+msgctxt "sample"
+msgid "Notes field sample text string"
+msgstr "××××ת ××ר××ת ××× ×©×× ×ער×ת"
+
#: gnucash/register/ledger-core/split-register-layout.c:829
-msgid "Type:T"
-msgstr "Type:ס"
+msgctxt "sample"
+msgid "No Particular Reason"
+msgstr "××× ×¡××× ×××××ת"
#: gnucash/register/ledger-core/split-register-layout.c:837
-msgid "sample:Notes field sample text string"
-msgstr "sample:××××ת ××ר××ת ××× ×©×× ×××ר"
-
#: gnucash/register/ledger-core/split-register-layout.c:845
-msgid "sample:No Particular Reason"
-msgstr "sample:××× ×¡××× ×××××ת"
-
-#: gnucash/register/ledger-core/split-register-layout.c:853
-#: gnucash/register/ledger-core/split-register-layout.c:861
-msgid "sample:(x + 0.33 * y + (x+y) )"
-msgstr "( (x + 0.33 * y + (x+y)"
+msgctxt "sample"
+msgid "(x + 0.33 * y + (x+y) )"
+msgstr "(x + 0.33 * y + (x+y))"
#: gnucash/register/ledger-core/split-register-load.c:278
msgid ""
-"Could not determine the account currency. Using the default currency provided by "
-"your system."
-msgstr "×× × ××ª× ××× ××§×××¢ ×ת ××××¢ ××ש×××. ××¢×©× ×©×××ש ×××××¢ ×ר×רת ××××× ×©××××ר ××ער×ת."
+"Could not determine the account currency. Using the default currency provided "
+"by your system."
+msgstr ""
+"×× × ××ª× ××× ××§×××¢ ×ת ××××¢ ××ש×××. ××¢×©× ×©×××ש ×××××¢ ×ר×רת ××××× ×©××××ר ××ער×ת."
#. Column label for Invoice IDs in A/P & A/R accounts
#: gnucash/register/ledger-core/split-register-model.c:247
@@ -20613,61 +20918,65 @@ msgstr "××ת×× × %s"
#. This seems to be the one that initially gets used, the InactiveDateCell
#. is set to, and subsequently displayed.
-#: gnucash/register/ledger-core/split-register-model.c:1019
+#: gnucash/register/ledger-core/split-register-model.c:1021
msgid "Scheduled"
msgstr "××××ר×"
-#: gnucash/register/ledger-core/split-register-model.c:1068
+#: gnucash/register/ledger-core/split-register-model.c:1070
msgid ""
-"Enter a reference, such as an invoice or check number, common to all entry lines "
-"(splits)"
+"Enter a reference, such as an invoice or check number, common to all entry "
+"lines (splits)"
msgstr "× × ××××× ×¡××××××, ×××× ×ספר ×ש××× ×ת ×× ×××××, ××× ××× ×ש×ר×ת (פ×צ××××)"
-#: gnucash/register/ledger-core/split-register-model.c:1070
+#: gnucash/register/ledger-core/split-register-model.c:1072
msgid ""
-"Enter a reference, such as an invoice or check number, unique to each entry line "
-"(split)"
+"Enter a reference, such as an invoice or check number, unique to each entry "
+"line (split)"
msgstr "× × ××××× ×¡××××××, ×××× ×ספר ×ש××× ×ת ×× ×××××, ×××××× ××× ×©××¨× (פ×צ××)"
-#: gnucash/register/ledger-core/split-register-model.c:1075
-msgid "Enter a reference, such as a check number, common to all entry lines (splits)"
+#: gnucash/register/ledger-core/split-register-model.c:1077
+msgid ""
+"Enter a reference, such as a check number, common to all entry lines (splits)"
msgstr "× × ××××× ×¡××××××, ×××× ×ספר ×××××, ××× ××× ×ש×ר×ת (פ×צ××××)"
-#: gnucash/register/ledger-core/split-register-model.c:1077
-msgid "Enter a reference, such as a check number, unique to each entry line (split)"
+#: gnucash/register/ledger-core/split-register-model.c:1079
+msgid ""
+"Enter a reference, such as a check number, unique to each entry line (split)"
msgstr "× × ××××× ×¡××××××, ×××× ×ספר ×××××, ×××××× ××× ×©××¨× (פ×צ××)"
-#: gnucash/register/ledger-core/split-register-model.c:1098
+#: gnucash/register/ledger-core/split-register-model.c:1100
msgid ""
-"Enter a transaction reference, such as an invoice or check number, common to all "
-"entry lines (splits)"
+"Enter a transaction reference, such as an invoice or check number, common to "
+"all entry lines (splits)"
msgstr ""
-"× × ××××× ×ספר ס×××××× ××ª× ××¢×, ×××× ×××©× ×ספר ×ש××× ×ת ×× ×××××, ×ש×תף ×××× ×רש×××ת "
-"(פ×צ××××)"
+"× × ××××× ×ספר ס×××××× ××ª× ××¢×, ×××× ×××©× ×ספר ×ש××× ×ת ×× ×××××, ×ש×תף ×××× "
+"×רש×××ת (פ×צ××××)"
-#: gnucash/register/ledger-core/split-register-model.c:1102
-msgid "Enter a transaction reference that will be common to all entry lines (splits)"
+#: gnucash/register/ledger-core/split-register-model.c:1104
+msgid ""
+"Enter a transaction reference that will be common to all entry lines (splits)"
msgstr "××× ×ª ס×××××× ××ª× ××¢× ×©×××× ×ש×תף ××× ×©×ר×ת ×רש××× (פ×צ××××)"
-#: gnucash/register/ledger-core/split-register-model.c:1306
+#: gnucash/register/ledger-core/split-register-model.c:1308
msgid "Enter an action type, or choose one from the list"
msgstr "× × ××××× ×¡×× ×¤×¢×××, ×× ××××¨× ××רש×××"
-#: gnucash/register/ledger-core/split-register-model.c:1307
+#: gnucash/register/ledger-core/split-register-model.c:1309
msgid ""
-"Enter a reference number, such as the next check number, or choose an action type "
-"from the list"
+"Enter a reference number, such as the next check number, or choose an action "
+"type from the list"
msgstr "× × ××××× ×¡××××××, ×××× ×ספר ×××××× ××××, ×× ×××רת ס×× ×¤×¢××× ××רש×××"
-#: gnucash/register/ledger-core/split-register-model.c:1574
-msgid "This transaction has multiple splits; press the Split button to see them all"
+#: gnucash/register/ledger-core/split-register-model.c:1576
+msgid ""
+"This transaction has multiple splits; press the Split button to see them all"
msgstr "×ª× ××¢× ×× ××××ת פ×צ×××× ×ר××××; ××§×©× ×¢× ×××¦× 'פ×צ××' ××× ××צ×× ×ת ××××"
-#: gnucash/register/ledger-core/split-register-model.c:1577
+#: gnucash/register/ledger-core/split-register-model.c:1579
msgid "This transaction is a stock split; press the Split button to see details"
msgstr "×ª× ××¢× ×× ××× ×¤×צ×× × ×ר ער×; ××§×©× ×¢× ×××¦× 'פ×צ××' ××צ×ת פר×××"
-#: gnucash/register/ledger-core/split-register-model.c:2076
+#: gnucash/register/ledger-core/split-register-model.c:2078
#, c-format
msgid ""
"Cannot modify or delete this transaction. This transaction is marked read-only "
@@ -20679,48 +20988,48 @@ msgstr ""
"\n"
"'%s'"
-#: gnucash/register/ledger-core/split-register-model.c:2193
+#: gnucash/register/ledger-core/split-register-model.c:2195
msgid "Change transaction containing a reconciled split?"
msgstr "ש×× ×× ×ª× ××¢× ×¢× ×¤×צ×× ××ת××?"
-#: gnucash/register/ledger-core/split-register-model.c:2195
+#: gnucash/register/ledger-core/split-register-model.c:2197
#, c-format
msgid ""
-"The transaction you are about to change is protected because it contains reconciled "
-"splits in the following accounts:\n"
+"The transaction you are about to change is protected because it contains "
+"reconciled splits in the following accounts:\n"
"%s\n"
"\n"
"If you continue editing this transaction all reconciled splits will be "
-"unreconciled. This might make future reconciliation difficult! Continue with this "
-"change?"
+"unreconciled. This might make future reconciliation difficult! Continue with "
+"this change?"
msgstr ""
"××ª× ××¢× ×××× ×ª ש×× ××× ××××× ×¤×צ×××× ××ת×××× ××ש××× ×ת ×××××:\n"
"%s\n"
"\n"
-"×××©× ×¢×¨××ת ××ª× ××¢× ×ª××× ×ת ×ת×××ת ×פ×צ××××. ×× ×©×¢×©×× ××קש×ת ×¢× ×ת××× ×¢×ª×××ת! ×××ש×× "
-"×¢× ×©×× ×× ××?"
+"×××©× ×¢×¨××ת ××ª× ××¢× ×ª××× ×ת ×ת×××ת ×פ×צ××××. ×× ×©×¢×©×× ××קש×ת ×¢× ×ת××× ×¢×ª×××ת! "
+"×××ש×× ×¢× ×©×× ×× ××?"
-#: gnucash/register/ledger-core/split-register-model.c:2207
+#: gnucash/register/ledger-core/split-register-model.c:2209
msgid ""
-"You are about to change a protected field of a reconciled split. If you continue "
-"editing this split it will be unreconciled. This might make future reconciliation "
-"difficult! Continue with this change?"
+"You are about to change a protected field of a reconciled split. If you "
+"continue editing this split it will be unreconciled. This might make future "
+"reconciliation difficult! Continue with this change?"
msgstr ""
-"פע××× ×× ×ª×©× × ×©×× ×××× ×©× ×¤×צ×× ××ת××. ×××©× ×¢×¨××ת ×פ×צ×× ×ª××× ×ת ××ת×××, ×× ×©×¢×©×× "
-"××קש×ת ×¢× ×ת×××ת עת××××ת! ××× ×××ש×× ×¢× ×ש×× ××?"
+"פע××× ×× ×ª×©× × ×©×× ×××× ×©× ×¤×צ×× ××ת××. ×××©× ×¢×¨××ת ×פ×צ×× ×ª××× ×ת ××ת×××, ×× "
+"שעש×× ××קש×ת ×¢× ×ת×××ת עת××××ת! ××× ×××ש×× ×¢× ×ש×× ××?"
-#: gnucash/register/ledger-core/split-register-model.c:2232
+#: gnucash/register/ledger-core/split-register-model.c:2234
msgid "Chan_ge Transaction"
msgstr "ש×× ×_× ×ª× ××¢×"
#: gnucash/register/register-gnome/datecell-gnome.c:103
msgid ""
-"The entered date of the transaction is older than the \"Read-Only Threshold\" set "
-"for this book. This setting can be changed in File -> Properties -> Accounts, "
-"resetting to the threshold."
+"The entered date of the transaction is older than the \"Read-Only Threshold\" "
+"set for this book. This setting can be changed in File -> Properties -> "
+"Accounts, resetting to the threshold."
msgstr ""
-"ת×ר×× ××ª× ××¢× ×©×××× × ×§××× ××¢×¨× \"סף קר××× ××××\" ×¢××ר ספר×× ×××. × ××ª× ××©× ×ת ××××¨× × "
-"×§×××¥-> ××פ××× ××-> ×ש××× ×ת, ×ש×××ר ×ר×ת ×סף."
+"ת×ר×× ××ª× ××¢× ×©×××× × ×§××× ××¢×¨× \"סף קר××× ××××\" ×¢××ר ספר×× ×××. × ××ª× ××©× ×ת "
+"××××¨× × ×§×××¥-> ××פ××× ××-> ×ש××× ×ת, ×ש×××ר ×ר×ת ×סף."
#: gnucash/register/register-gnome/gnucash-item-list.c:468
msgid "List"
@@ -20832,10 +21141,11 @@ msgstr "×ת××ת ×××\"×"
#: gnucash/report/business-reports/aging.scm:225
#, scheme-format
msgid ""
-"Transactions relating to '~a' contain more than one currency. This report is not "
-"designed to cope with this possibility."
+"Transactions relating to '~a' contain more than one currency. This report is "
+"not designed to cope with this possibility."
msgstr ""
-"×ª× ××¢×ת ×קש×ר×ת ×-'~a' ×××××ת ××תר ×××××¢ ×××. ××× ×× ×× × ××¢× ××ת×××× ×¢× ×פשר×ת ×××."
+"×ª× ××¢×ת ×קש×ר×ת ×-'~a' ×××××ת ××תר ×××××¢ ×××. ××× ×× ×× × ××¢× ××ת×××× ×¢× ×פשר×ת "
+"×××."
#: gnucash/report/business-reports/aging.scm:364
msgid "Sort companies by."
@@ -20883,7 +21193,8 @@ msgstr "$999,999.99 -> $0, ת->×."
#: gnucash/report/business-reports/aging.scm:387
msgid ""
-"Show multi-currency totals. If not selected, convert all totals to report currency."
+"Show multi-currency totals. If not selected, convert all totals to report "
+"currency."
msgstr "×צ×ת ס×××××× ×ר××× ××××¢×ת. ××××× ××× × ××ר, ××רת ×× ×ס×××××× ×××××¢ ××××."
#: gnucash/report/business-reports/aging.scm:396
@@ -20907,8 +21218,8 @@ msgstr "ת×ר×× ×ר×ש×× ×××××."
#: gnucash/report/business-reports/aging.scm:420
msgid ""
-"Display Address Name. This, and other fields, may be useful if copying this report "
-"to a spreadsheet for use in a mail merge."
+"Display Address Name. This, and other fields, may be useful if copying this "
+"report to a spreadsheet for use in a mail merge."
msgstr ""
"×צ×ת ×©× ×ת××ת. ש××ת ××× ×××ר×× ×¢×©×××× ××××ת ש×××ש××× ×× ×עת××§×× ××× ×× ××××××× "
"×××§×ר×× × ×ש×××ש ×××××× ×××ר."
@@ -20991,8 +21302,8 @@ msgstr "N"
#: gnucash/report/business-reports/aging.scm:857
#: gnucash/report/business-reports/job-report.scm:591
msgid ""
-"No valid account selected. Click on the Options button and select the account to "
-"use."
+"No valid account selected. Click on the Options button and select the account "
+"to use."
msgstr "×× × ××ר ×ש××× ×ª×§××. × × ×××§×ש ×¢× ×××¦× '×פשר×××ת' ××××רת ×ש×××."
#: gnucash/report/business-reports/balsheet-eg.eguile.scm:173
@@ -21013,7 +21324,7 @@ msgid "Trading Accounts"
msgstr "×ש××× ×ת ס×ר"
#: gnucash/report/business-reports/balsheet-eg.eguile.scm:194
-#: gnucash/report/standard-reports/balance-sheet.scm:670
+#: gnucash/report/standard-reports/balance-sheet.scm:669
msgid "Retained Losses"
msgstr "×פס××× ××××¢×××"
@@ -21072,10 +21383,11 @@ msgstr "××× ×¢× ×¢×××× 1 ×× 2"
#: gnucash/report/business-reports/balsheet-eg.scm:196
msgid ""
-"The balance sheet can be displayed with either 1 or 2 columns. 'auto' means that "
-"the layout will be adjusted to fit the width of the page."
+"The balance sheet can be displayed with either 1 or 2 columns. 'auto' means "
+"that the layout will be adjusted to fit the width of the page."
msgstr ""
-"× ××ª× ××צ×× ×ת ××××× ××¢×××× ××ת ×× ×©×ª×××. '××××' פ×ר××©× ×©×¤×¨×סת ××¢××× ×ª×ת×× ×ר××××."
+"× ××ª× ××צ×× ×ת ××××× ××¢×××× ××ת ×× ×©×ª×××. '××××' פ×ר××©× ×©×¤×¨×סת ××¢××× ×ª×ת×× "
+"×ר××××."
#: gnucash/report/business-reports/balsheet-eg.scm:198
#: gnucash/report/standard-reports/account-summary.scm:78
@@ -21126,9 +21438,11 @@ msgid "Exclude accounts with zero total balances"
msgstr "××ר×ת ×ש××× ×ת ××¢×× ××ª×¨× ××××ת ×פס"
#: gnucash/report/business-reports/balsheet-eg.scm:206
-msgid "Exclude non-top-level accounts with zero balance and no non-zero sub-accounts."
+msgid ""
+"Exclude non-top-level accounts with zero balance and no non-zero sub-accounts."
msgstr ""
-"××ר×ת ×ש××× ×ת ש××× × ×ר×× ×¢×××× × ×שער×× ××××× ××× ×פס, ×× ×× ×ש××× ×ת ××©× × ×¢× ×תר×."
+"××ר×ת ×ש××× ×ת ש××× × ×ר×× ×¢×××× × ×שער×× ××××× ××× ×פס, ×× ×× ×ש××× ×ת ××©× × ×¢× "
+"×תר×."
#: gnucash/report/business-reports/balsheet-eg.scm:208
#: gnucash/report/standard-reports/account-summary.scm:99
@@ -21182,7 +21496,7 @@ msgstr "×××× ×××¤× ×ת×× ×ת ××××-×××¤× CSS (××××ר, \"××
#: gnucash/report/business-reports/balsheet-eg.scm:219
#: gnucash/report/business-reports/receipt.scm:82
-#: gnucash/report/business-reports/taxinvoice.scm:108
+#: gnucash/report/business-reports/taxinvoice.scm:107
msgid "Template file"
msgstr "×§×××¥ ת×× ×ת"
@@ -21192,23 +21506,23 @@ msgid ""
"your .gnucash directory, or else in its proper place within the GnuCash "
"installation directories."
msgstr ""
-"×©× ×§×××¥ ת×× ×ת ×-××××× ×©× ××× ××. ×§×××¥ ×× ×××ר ××××ת ×ספר××ת .gnucash, ×× ×××§××× "
+"×©× ×§×××¥ ת×× ×ת ×××××× ×©× ××× ××. ×§×××¥ ×× ×××ר ××××ת ×ספר××ת gnucash. ×× ×××§××× "
"××××¢× ×ספר××ת ×××ª×§× × ×©× ×× ××§×ש."
#: gnucash/report/business-reports/balsheet-eg.scm:222
#: gnucash/report/business-reports/receipt.scm:83
-#: gnucash/report/business-reports/taxinvoice.scm:109
+#: gnucash/report/business-reports/taxinvoice.scm:108
msgid "CSS stylesheet file"
msgstr "×§×××¥ ×××××× ×¡×× ×× CSS"
#: gnucash/report/business-reports/balsheet-eg.scm:224
msgid ""
-"The file name of the CSS stylesheet to use with this report. If specified, this "
-"file should be in your .gnucash directory, or else in its proper place within the "
-"GnuCash installation directories."
+"The file name of the CSS stylesheet to use with this report. If specified, "
+"this file should be in your .gnucash directory, or else in its proper place "
+"within the GnuCash installation directories."
msgstr ""
-"×©× ×§×××¥ ××××× ×ס×× ×× CSS ×שר ×× ×ש ××שת×ש ×××× ××. ×× ××××ר, ×§×××¥ ×× ×××ר ××××ת "
-"×ספר×ת .gnucash, ×× ×××§××× ××××¢× ×ספר××ת ×××ª×§× × ×©× ×× ××§×ש."
+"×©× ×§×××¥ ×××××× ×ס×× ×× CSS ×שר ×× ×ש ××שת×ש ×××× ××. ×× ××××ר, ×§×××¥ ×× ×××ר "
+"××××ת ×ספר×ת gnucash. ×× ×××§××× ××××¢× ×ספר××ת ×××ª×§× × ×©× ×× ××§×ש."
#: gnucash/report/business-reports/balsheet-eg.scm:225
#: gnucash/report/business-reports/invoice.scm:356
@@ -21216,7 +21530,7 @@ msgid "Extra Notes"
msgstr "×ער×ת × ×ספ×ת"
#: gnucash/report/business-reports/balsheet-eg.scm:226
-#: gnucash/report/business-reports/taxinvoice.scm:232
+#: gnucash/report/business-reports/taxinvoice.scm:231
msgid "Notes added at end of invoice -- may contain HTML markup."
msgstr "×ער×ת ×ת×ת×ת ××ש××× ×ת -- עש×× ××××× ×ª××× HTML."
@@ -21296,13 +21610,15 @@ msgstr "×ס××ר ס××××× ×©×××××× ×ס××ר×××, (100.00)."
#: gnucash/report/business-reports/balsheet-eg.scm:303
msgid ""
-"(Development version -- don't rely on the numbers on this report without double-"
-"checking them.<br>Change the 'Extra Notes' option to get rid of this message)"
+"(Development version -- don't rely on the numbers on this report without "
+"double-checking them.<br>Change the 'Extra Notes' option to get rid of this "
+"message)"
msgstr ""
-"(×רסת פ×ת×× -- ××× ×ס××× ×¢× ××ספר×× ×××× ×× ××× ××××§× ×§×¤×× ×ת. <br>× ××ª× ××©× ×ת ×ת "
-"'×ער×ת × ×ספ×ת' ××פשר×××ת ×¢× ×× ×ª ×××¢××× ××××¢× ××)"
+"(×רסת פ×ת×× -- ××× ×ס××× ×¢× ××ספר×× ×××× ×× ××× ××××§× ×§×¤×× ×ת. <br>× ××ª× ××©× ×ת "
+"×ת '×ער×ת × ×ספ×ת' ××פשר×××ת ×¢× ×× ×ª ×××¢××× ××××¢× ××)"
-#: gnucash/report/business-reports/balsheet-eg.scm:448 libgnucash/engine/Scrub.c:91
+#: gnucash/report/business-reports/balsheet-eg.scm:448
+#: libgnucash/engine/Scrub.c:91
msgid "Orphan"
msgstr "×ת××××"
@@ -21346,8 +21662,8 @@ msgstr "×ש××× ×ת ××צ××"
#: gnucash/report/business-reports/customer-summary.scm:63
msgid ""
-"The expense accounts where the expenses are recorded which are subtracted from the "
-"sales to give the profit."
+"The expense accounts where the expenses are recorded which are subtracted from "
+"the sales to give the profit."
msgstr "×ש××× ×ת ××צ××ת, ××× × ×¨×©××ת ×××צ××ת, ×××פ×ת×× ×××××ר×ת ××§××ת ש×רת ×ר×××."
#: gnucash/report/business-reports/customer-summary.scm:65
@@ -21404,7 +21720,8 @@ msgid ""
"Show the table lines with customers which did not have any transactions in the "
"reporting period, hence would show all zeros in the columns."
msgstr ""
-"×צ×ת ×××× ×¢× ×©×ר×ת ××§×××ת ××× ×ª× ××¢×ת ×תק×פת ××××××, ××× ×צ××× ×פס×× ×××× ××¢××××ת."
+"×צ×ת ×××× ×¢× ×©×ר×ת ××§×××ת ××× ×ª× ××¢×ת ×תק×פת ××××××, ××× ×צ××× ×פס×× ×××× "
+"××¢××××ת."
#: gnucash/report/business-reports/customer-summary.scm:82
msgid "Show Inactive Customers"
@@ -21503,8 +21820,8 @@ msgstr "ת×צ×ת ××§××"
#: gnucash/report/business-reports/invoice.scm:256
#: gnucash/report/business-reports/receipt.scm:97
#: gnucash/report/business-reports/receipt.scm:183
-#: gnucash/report/business-reports/taxinvoice.scm:121
-#: gnucash/report/business-reports/taxinvoice.scm:209
+#: gnucash/report/business-reports/taxinvoice.scm:120
+#: gnucash/report/business-reports/taxinvoice.scm:208
msgid "Tax Amount"
msgstr "ס××× ×ס"
@@ -21583,7 +21900,7 @@ msgstr "×××§×× ×ª××× ×"
#. customers-only)) ;-- see above
#. Elements page options
#: gnucash/report/business-reports/invoice.scm:222
-#: gnucash/report/business-reports/taxinvoice.scm:155
+#: gnucash/report/business-reports/taxinvoice.scm:154
#: gnucash/report/report-system/trep-engine.scm:915
#: gnucash/report/standard-reports/register.scm:382
msgid "Display the date?"
@@ -21641,7 +21958,7 @@ msgstr "×צ×ת ×¢×¨× ×רש×××?"
#: gnucash/report/business-reports/invoice.scm:351
#: gnucash/report/business-reports/invoice.scm:356
#: gnucash/report/business-reports/receipt.scm:77
-#: gnucash/report/business-reports/taxinvoice.scm:84
+#: gnucash/report/business-reports/taxinvoice.scm:83
#: gnucash/report/report-system/report.scm:70
#: gnucash/report/standard-reports/register.scm:381
#: gnucash/report/standard-reports/register.scm:387
@@ -21778,7 +22095,7 @@ msgid "Extra notes to put on the invoice."
msgstr "×ער×ת × ×ספ×ת ש××פ××¢× ×¢× ××ש××× ×ת."
#: gnucash/report/business-reports/invoice.scm:358
-#: gnucash/report/business-reports/taxinvoice.scm:233
+#: gnucash/report/business-reports/taxinvoice.scm:232
msgid "Thank you for your patronage!"
msgstr "××××× ×× ×¢× ××ס×ת!"
@@ -21819,24 +22136,24 @@ msgstr "×"
#: gnucash/report/business-reports/invoice.scm:552
#: gnucash/report/business-reports/receipt.scm:95
#: gnucash/report/business-reports/receipt.scm:179
-#: gnucash/report/business-reports/taxinvoice.scm:119
-#: gnucash/report/business-reports/taxinvoice.scm:205
+#: gnucash/report/business-reports/taxinvoice.scm:118
+#: gnucash/report/business-reports/taxinvoice.scm:204
msgid "Net Price"
msgstr "×××ר × ××"
#: gnucash/report/business-reports/invoice.scm:568
#: gnucash/report/business-reports/receipt.scm:98
#: gnucash/report/business-reports/receipt.scm:185
-#: gnucash/report/business-reports/taxinvoice.scm:122
-#: gnucash/report/business-reports/taxinvoice.scm:211
+#: gnucash/report/business-reports/taxinvoice.scm:121
+#: gnucash/report/business-reports/taxinvoice.scm:210
msgid "Total Price"
msgstr "×¡× ×× ×××ר"
#: gnucash/report/business-reports/invoice.scm:588
#: gnucash/report/business-reports/receipt.scm:100
#: gnucash/report/business-reports/receipt.scm:189
-#: gnucash/report/business-reports/taxinvoice.scm:124
-#: gnucash/report/business-reports/taxinvoice.scm:215
+#: gnucash/report/business-reports/taxinvoice.scm:123
+#: gnucash/report/business-reports/taxinvoice.scm:214
msgid "Amount Due"
msgstr "ס××× ××××¢"
@@ -21867,8 +22184,8 @@ msgstr "ס××××××"
#: gnucash/report/business-reports/invoice.scm:782
msgid ""
-"No valid invoice selected. Click on the Options button and select the invoice to "
-"use."
+"No valid invoice selected. Click on the Options button and select the invoice "
+"to use."
msgstr "×× × ×××¨× ×ש××× ×ת תק×× ×. × × ×××§×ש ×¢× ×××¦× '×פשר×××ת' ××××רת ×ש××× ×ת."
#. Translators: This is the format of the invoice title.
@@ -21918,7 +22235,7 @@ msgstr "×צ×ת ס×× ×ª× ××¢×?"
#: gnucash/report/business-reports/job-report.scm:392
#: gnucash/report/business-reports/owner-report.scm:579
msgid "Display the transaction description?"
-msgstr "×צ×ת ת××ר ×ª× ××¢×?"
+msgstr "×צ×ת ת×××ר ×ª× ××¢×?"
#: gnucash/report/business-reports/job-report.scm:397
#: gnucash/report/business-reports/owner-report.scm:604
@@ -22030,20 +22347,21 @@ msgstr "×ש××× ×ת ×ספר."
#: gnucash/report/business-reports/receipt.eguile.scm:162
msgid "Descr."
-msgstr "ת××ר."
+msgstr "ת×××ר."
#: gnucash/report/business-reports/receipt.eguile.scm:293
#: gnucash/report/business-reports/taxinvoice.eguile.scm:446
-msgid "No invoice has been selected -- please use the Options menu to select one."
+msgid ""
+"No invoice has been selected -- please use the Options menu to select one."
msgstr "×× × ×××¨× ×ש××× ××ת -- × × ××××ר ××ת ×תפר×× ××פשר×××ת."
#: gnucash/report/business-reports/receipt.eguile.scm:300
msgid ""
-"This report is designed for customer (sales) invoices only. Please use the Options "
-"menu to select an <em>Invoice</em>, not a Bill or Expense Voucher."
+"This report is designed for customer (sales) invoices only. Please use the "
+"Options menu to select an <em>Invoice</em>, not a Bill or Expense Voucher."
msgstr ""
-"×××× ××××¢× ××ש××× ××ת ××§×× (×××ר×ת) ××××. × × ××שת×ש ×תפר×× '×פשר×××ת' ×¢× ×× ×ª ××××ר "
-"×<em>×ש××× ×ת</em>, ××× ××××× ×× ×©××ר ××צ××ת."
+"×××× ××××¢× ××ש××× ××ת ××§×× (×××ר×ת) ××××. × × ××שת×ש ×תפר×× '×פשר×××ת' ×¢× ×× ×ª "
+"××××ר ×<em>×ש××× ×ת</em>, ××× ××××× ×× ×©××ר ××צ××ת."
#: gnucash/report/business-reports/receipt.scm:67
#: gnucash/report/business-reports/taxinvoice.scm:74
@@ -22066,7 +22384,7 @@ msgstr "×ת××ת 2"
#. option names
#: gnucash/report/business-reports/receipt.scm:80
-#: gnucash/report/business-reports/taxinvoice.scm:107
+#: gnucash/report/business-reports/taxinvoice.scm:106
msgid "Report title"
msgstr "××תרת ×××"
@@ -22076,12 +22394,12 @@ msgid "Invoice number"
msgstr "×ספר ×ש××× ×ת"
#: gnucash/report/business-reports/receipt.scm:84
-#: gnucash/report/business-reports/taxinvoice.scm:110
+#: gnucash/report/business-reports/taxinvoice.scm:109
msgid "Heading font"
msgstr "×××¤× ××תרת"
#: gnucash/report/business-reports/receipt.scm:85
-#: gnucash/report/business-reports/taxinvoice.scm:111
+#: gnucash/report/business-reports/taxinvoice.scm:110
msgid "Text font"
msgstr "×××¤× ×××"
@@ -22103,54 +22421,54 @@ msgstr "ר××× ×××× ×¡×××ת ×¢×××"
#: gnucash/report/business-reports/receipt.scm:90
#: gnucash/report/business-reports/receipt.scm:169
-#: gnucash/report/business-reports/taxinvoice.scm:114
-#: gnucash/report/business-reports/taxinvoice.scm:195
-#: gnucash/report/standard-reports/portfolio.scm:257
+#: gnucash/report/business-reports/taxinvoice.scm:113
+#: gnucash/report/business-reports/taxinvoice.scm:194
+#: gnucash/report/standard-reports/portfolio.scm:256
msgid "Units"
msgstr "×××××ת"
#: gnucash/report/business-reports/receipt.scm:91
#: gnucash/report/business-reports/receipt.scm:171
-#: gnucash/report/business-reports/taxinvoice.scm:115
-#: gnucash/report/business-reports/taxinvoice.scm:197
+#: gnucash/report/business-reports/taxinvoice.scm:114
+#: gnucash/report/business-reports/taxinvoice.scm:196
msgid "Qty"
msgstr "×××ת"
#: gnucash/report/business-reports/receipt.scm:93
#: gnucash/report/business-reports/receipt.scm:175
-#: gnucash/report/business-reports/taxinvoice.scm:117
-#: gnucash/report/business-reports/taxinvoice.scm:201
+#: gnucash/report/business-reports/taxinvoice.scm:116
+#: gnucash/report/business-reports/taxinvoice.scm:200
msgid "Discount Rate"
msgstr "×××× ×× ××"
#: gnucash/report/business-reports/receipt.scm:94
#: gnucash/report/business-reports/receipt.scm:177
-#: gnucash/report/business-reports/taxinvoice.scm:118
-#: gnucash/report/business-reports/taxinvoice.scm:203
+#: gnucash/report/business-reports/taxinvoice.scm:117
+#: gnucash/report/business-reports/taxinvoice.scm:202
msgid "Discount Amount"
msgstr "ס××× ×× ××"
#: gnucash/report/business-reports/receipt.scm:96
#: gnucash/report/business-reports/receipt.scm:181
-#: gnucash/report/business-reports/taxinvoice.scm:120
-#: gnucash/report/business-reports/taxinvoice.scm:207
+#: gnucash/report/business-reports/taxinvoice.scm:119
+#: gnucash/report/business-reports/taxinvoice.scm:206
msgid "Tax Rate"
msgstr "שע×ר ×ס"
#: gnucash/report/business-reports/receipt.scm:99
#: gnucash/report/business-reports/receipt.scm:187
-#: gnucash/report/business-reports/taxinvoice.scm:123
-#: gnucash/report/business-reports/taxinvoice.scm:213
+#: gnucash/report/business-reports/taxinvoice.scm:122
+#: gnucash/report/business-reports/taxinvoice.scm:212
msgid "Sub-total"
msgstr "ס×××× ××× ××××"
#: gnucash/report/business-reports/receipt.scm:101
-#: gnucash/report/business-reports/taxinvoice.scm:125
+#: gnucash/report/business-reports/taxinvoice.scm:124
msgid "Payment received text"
msgstr "××× ×ª×©××× ×©× ×ª×§××"
#: gnucash/report/business-reports/receipt.scm:102
-#: gnucash/report/business-reports/taxinvoice.scm:126
+#: gnucash/report/business-reports/taxinvoice.scm:125
msgid "Extra notes"
msgstr "×ער×ת × ×ספ×ת"
@@ -22160,11 +22478,11 @@ msgstr "ת×× ×ת ת×ר×× ××××"
#: gnucash/report/business-reports/receipt.scm:133
msgid ""
-"The file name of the eguile template part of this report. This file should either "
-"be in your .gnucash directory, or else in its proper place within the GnuCash "
-"installation directories."
+"The file name of the eguile template part of this report. This file should "
+"either be in your .gnucash directory, or else in its proper place within the "
+"GnuCash installation directories."
msgstr ""
-"×©× ×§×××¥ ת×× ×ת ×××××× ×©× ××× ××. ×§×××¥ ×× ×××ר ××××ת ×ספר××ת .gnucash, ×× ×××§××× "
+"×©× ×§×××¥ ת×× ×ת ×××××× ×©× ××× ××. ×§×××¥ ×× ×××ר ××××ת ×ספר××ת gnucash. ×× ×××§××× "
"××××¢× ×ספר××ת ×××ª×§× × ×©× ×× ××§×ש."
#: gnucash/report/business-reports/receipt.scm:136
@@ -22173,8 +22491,8 @@ msgid ""
"either be in your .gnucash directory, or else in its proper place within the "
"GnuCash installation directories."
msgstr ""
-"×©× ×§×××¥ ××××× ×ס×× ×× CSS ×שר ×× ×ש ××שת×ש ×××× ××. ×§×××¥ ×× ×××ר ××××ת ×ספר××ת ."
-"gnucash, ×× ×××§××× ××××¢× ×ספר××ת ×××ª×§× × ×©× ×× ××§×ש."
+"×©× ×§×××¥ ×××××× ×ס×× ×× CSS ×שר ×× ×ש ××שת×ש ×××× ××. ×§×××¥ ×× ×××ר ××××ת ×ספר××ת "
+"gnucash. ×× ×××§××× ××××¢× ×ספר××ת ×××ª×§× × ×©× ×× ××§×ש."
#: gnucash/report/business-reports/receipt.scm:140
msgid "Font to use for the main heading"
@@ -22190,11 +22508,12 @@ msgstr "×©× ×§×××¥ ××××× ×××× ×ש×××ש ×××תרת ××¢××××
#: gnucash/report/business-reports/receipt.scm:149
msgid ""
-"Width of the header logo in CSS format, e.g. 10% or 32px. Leave blank to display "
-"the logo at its natural width. The height of the logo will be scaled accordingly."
+"Width of the header logo in CSS format, e.g. 10% or 32px. Leave blank to "
+"display the logo at its natural width. The height of the logo will be scaled "
+"accordingly."
msgstr ""
-"ר××× ×¡×× ×××תרת ××¢×××× × ×ת×× ×ת CSS, ×××××× 10% ×× 32px. × × ××ש××ר ר××§ ×¢× ×× ×ª ××צ×× "
-"×ת ×ס×× ×ר×××× ××××¢×. ×××× ×ס×× ×××§×× ××ת××."
+"ר××× ×¡×× ×××תרת ××¢×××× × ×ת×× ×ת CSS, ×××××× 10% ×× 32px. × × ××ש××ר ר××§ ×¢× ×× ×ª "
+"××צ×× ×ת ×ס×× ×ר×××× ××××¢×. ×××× ×ס×× ×××§×× ××ת××."
#: gnucash/report/business-reports/receipt.scm:152
msgid "Name of a file containing a logo to be used on the footer of the report"
@@ -22202,11 +22521,12 @@ msgstr "×©× ×§×××¥ ××××× ×××× ×ש×××ש ×××תרת ×ת×ת××
#: gnucash/report/business-reports/receipt.scm:155
msgid ""
-"Width of the footer logo in CSS format, e.g. 10% or 32px. Leave blank to display "
-"the logo at its natural width. The height of the logo will be scaled accordingly."
+"Width of the footer logo in CSS format, e.g. 10% or 32px. Leave blank to "
+"display the logo at its natural width. The height of the logo will be scaled "
+"accordingly."
msgstr ""
-"ר××× ×¡×× ×××תרת ×ת×ת×× × ×ת×× ×ת CSS, ×××××× 10% ×× 32px. × × ××ש××ר ר××§ ×¢× ×× ×ª ××צ×× "
-"×ת ×ס×× ×ר×××× ××××¢×. ×××× ×ס×× ×××§×× ××ת××."
+"ר××× ×¡×× ×××תרת ×ת×ת×× × ×ת×× ×ת CSS, ×××××× 10% ×× 32px. × × ××ש××ר ר××§ ×¢× ×× ×ª "
+"××צ×× ×ת ×ס×× ×ר×××× ××××¢×. ×××× ×ס×× ×××§×× ××ת××."
#: gnucash/report/business-reports/receipt.scm:159
msgid "The format for the date->string conversion for today's date."
@@ -22219,7 +22539,7 @@ msgid "%l:%M %P, %e %B %Y"
msgstr "%l:%M %P, %e %B %Y"
#: gnucash/report/business-reports/receipt.scm:192
-#: gnucash/report/business-reports/taxinvoice.scm:218
+#: gnucash/report/business-reports/taxinvoice.scm:217
msgid "Payment received, thank you!"
msgstr "×תש××× ×תק××, ת××× ×¨××!"
@@ -22271,251 +22591,249 @@ msgstr "×תר ×רשתת"
msgid "Invoice Date"
msgstr "ת×ר×× ×ש××× ×ת"
-#: gnucash/report/business-reports/taxinvoice.scm:85
+#: gnucash/report/business-reports/taxinvoice.scm:84
msgid "Elements"
msgstr "ר×××××"
#. option names
-#: gnucash/report/business-reports/taxinvoice.scm:87
+#: gnucash/report/business-reports/taxinvoice.scm:86
msgid "column: Date"
msgstr "×¢××××:ת×ר××"
-#: gnucash/report/business-reports/taxinvoice.scm:88
+#: gnucash/report/business-reports/taxinvoice.scm:87
msgid "column: Tax Rate"
msgstr "×¢××××: שע×ר ×ס"
-#: gnucash/report/business-reports/taxinvoice.scm:89
+#: gnucash/report/business-reports/taxinvoice.scm:88
msgid "column: Units"
msgstr "×¢××××: ×××××ת"
-#: gnucash/report/business-reports/taxinvoice.scm:90
+#: gnucash/report/business-reports/taxinvoice.scm:89
msgid "row: Address"
msgstr "ש×ר×:×ת××ת"
-#: gnucash/report/business-reports/taxinvoice.scm:91
+#: gnucash/report/business-reports/taxinvoice.scm:90
msgid "row: Contact"
msgstr "ש×ר×:××ש קשר"
-#: gnucash/report/business-reports/taxinvoice.scm:92
+#: gnucash/report/business-reports/taxinvoice.scm:91
msgid "row: Invoice Number"
msgstr "ש×ר×: ×ספר ×ש××× ×ת"
-#: gnucash/report/business-reports/taxinvoice.scm:93
+#: gnucash/report/business-reports/taxinvoice.scm:92
msgid "row: Company Name"
msgstr "ש×ר×: ×©× ××ר×"
-#: gnucash/report/business-reports/taxinvoice.scm:94
+#: gnucash/report/business-reports/taxinvoice.scm:93
msgid "Invoice number text"
msgstr "××× ×ספר ×ש××× ×ת"
-#: gnucash/report/business-reports/taxinvoice.scm:95
+#: gnucash/report/business-reports/taxinvoice.scm:94
msgid "To text"
msgstr "××××"
-#: gnucash/report/business-reports/taxinvoice.scm:96
+#: gnucash/report/business-reports/taxinvoice.scm:95
msgid "Ref text"
msgstr "××× ×¡××××××"
-#: gnucash/report/business-reports/taxinvoice.scm:97
+#: gnucash/report/business-reports/taxinvoice.scm:96
msgid "Job Name text"
msgstr "××× ×©× ××¢××××"
-#: gnucash/report/business-reports/taxinvoice.scm:98
+#: gnucash/report/business-reports/taxinvoice.scm:97
msgid "Job Number text"
msgstr "××× ×ספר ר××××"
-#: gnucash/report/business-reports/taxinvoice.scm:99
+#: gnucash/report/business-reports/taxinvoice.scm:98
msgid "Show Job name"
msgstr "×צ×ת ×©× ×¨××××"
-#: gnucash/report/business-reports/taxinvoice.scm:100
+#: gnucash/report/business-reports/taxinvoice.scm:99
msgid "Show Job number"
msgstr "×צ×ת ×ספר ר××××"
-#: gnucash/report/business-reports/taxinvoice.scm:101
+#: gnucash/report/business-reports/taxinvoice.scm:100
msgid "Show net price"
msgstr "×צ×ת ×××ר ××ש"
-#: gnucash/report/business-reports/taxinvoice.scm:102
+#: gnucash/report/business-reports/taxinvoice.scm:101
msgid "Invoice number next to title"
msgstr "×ספר ××ש××× ×ת ××××©× ×××תרת"
-#: gnucash/report/business-reports/taxinvoice.scm:103
+#: gnucash/report/business-reports/taxinvoice.scm:102
msgid "table-border-collapse"
msgstr "×××××¥-×××××ת-××××"
-#: gnucash/report/business-reports/taxinvoice.scm:104
+#: gnucash/report/business-reports/taxinvoice.scm:103
msgid "table-header-border-color"
msgstr "צ××¢-××תרת-×§× ××××-××××"
-#: gnucash/report/business-reports/taxinvoice.scm:105
+#: gnucash/report/business-reports/taxinvoice.scm:104
msgid "table-cell-border-color"
msgstr "צ××¢-×§× ××××-ת×-××××"
-#: gnucash/report/business-reports/taxinvoice.scm:106
+#: gnucash/report/business-reports/taxinvoice.scm:105
msgid "Embedded CSS"
msgstr "CSS ×ש×××¥"
-#: gnucash/report/business-reports/taxinvoice.scm:112
+#: gnucash/report/business-reports/taxinvoice.scm:111
msgid "Logo filename"
msgstr "×©× ×§×××¥ ××××"
-#: gnucash/report/business-reports/taxinvoice.scm:113
+#: gnucash/report/business-reports/taxinvoice.scm:112
msgid "Logo width"
msgstr "ר××× ××××"
-#: gnucash/report/business-reports/taxinvoice.scm:156
+#: gnucash/report/business-reports/taxinvoice.scm:155
msgid "Display the Tax Rate?"
msgstr "×צ×ת שע×ר ××ס?"
-#: gnucash/report/business-reports/taxinvoice.scm:157
+#: gnucash/report/business-reports/taxinvoice.scm:156
msgid "Display the Units?"
msgstr "×צ×ת ×××××ת?"
-#: gnucash/report/business-reports/taxinvoice.scm:158
+#: gnucash/report/business-reports/taxinvoice.scm:157
msgid "Display the contact?"
msgstr "×צ×ת פר×× ×§×©×¨?"
-#: gnucash/report/business-reports/taxinvoice.scm:159
+#: gnucash/report/business-reports/taxinvoice.scm:158
msgid "Display the address?"
msgstr "×צ×ת ×ת××ת?"
-#: gnucash/report/business-reports/taxinvoice.scm:160
+#: gnucash/report/business-reports/taxinvoice.scm:159
msgid "Display the Invoice Number?"
msgstr "×צ×ת ×ספר ×ש××× ×ת?"
-#: gnucash/report/business-reports/taxinvoice.scm:161
+#: gnucash/report/business-reports/taxinvoice.scm:160
msgid "Display the Company Name?"
msgstr "×צ×ת ×©× ×××ר×?"
-#: gnucash/report/business-reports/taxinvoice.scm:162
+#: gnucash/report/business-reports/taxinvoice.scm:161
msgid "Invoice Number next to title?"
msgstr "×ספר ××ש××× ×ת ××××©× ×××תרת?"
-#: gnucash/report/business-reports/taxinvoice.scm:163
+#: gnucash/report/business-reports/taxinvoice.scm:162
msgid "Display Job name?"
msgstr "×צ×ת ×©× ×¨××××?"
-#: gnucash/report/business-reports/taxinvoice.scm:164
+#: gnucash/report/business-reports/taxinvoice.scm:163
msgid "Invoice Job number?"
msgstr "×ספר ×××ת ×ש××× ×ת?"
-#: gnucash/report/business-reports/taxinvoice.scm:165
+#: gnucash/report/business-reports/taxinvoice.scm:164
msgid "Show net price?"
msgstr "×צ×ת ×××ר × ××?"
-#: gnucash/report/business-reports/taxinvoice.scm:169
+#: gnucash/report/business-reports/taxinvoice.scm:168
msgid ""
-"The file name of the eguile template part of this report. This file should either "
-"be in your .gnucash directory, or else in its proper place within the GnuCash "
-"installation directories."
+"The file name of the eguile template part of this report. This file should "
+"either be in your .gnucash directory, or else in its proper place within the "
+"GnuCash installation directories."
msgstr ""
-"×©× ×§×××¥ ת×× ×ת ×-××××× ×©× ××× ××. ×§×××¥ ×× ×××ר ××××ת ×ספר××ת .gnucash, ×× ×××§××× "
+"×©× ×§×××¥ ת×× ×ת ×××××× ×©× ××× ××. ×§×××¥ ×× ×××ר ××××ת ×ספר××ת gnucash. ×× ×××§××× "
"××××¢× ×ספר××ת ×××ª×§× × ×©× ×× ××§×ש."
-#: gnucash/report/business-reports/taxinvoice.scm:172
+#: gnucash/report/business-reports/taxinvoice.scm:171
msgid ""
"The file name of the CSS stylesheet to use with this report. This file should "
"either be in your .gnucash directory, or else in its proper place within the "
"GnuCash installation directories."
msgstr ""
-"×©× ×§×××¥ ××××× ×ס×× ×× CSS ×שר ×× ×ש ××שת×ש ×××× ××. ×§×××¥ ×× ×××ר ××××ת ×ספר××ת ."
-"gnucash, ×× ×××§××× ××××¢× ×ספר××ת ×××ª×§× × ×©× ×× ××§×ש."
+"×©× ×§×××¥ ×××××× ×ס×× ×× CSS ×שר ×× ×ש ××שת×ש ×××× ××. ×§×××¥ ×× ×××ר ××××ת ×ספר××ת "
+"gnucash. ×× ×××§××× ××××¢× ×ספר××ת ×××ª×§× × ×©× ×× ××§×ש."
-#: gnucash/report/business-reports/taxinvoice.scm:176
+#: gnucash/report/business-reports/taxinvoice.scm:175
msgid "Font to use for the main heading."
msgstr "×××¤× ×¢××ר ××תרת ר×ש×ת."
-#: gnucash/report/business-reports/taxinvoice.scm:179
+#: gnucash/report/business-reports/taxinvoice.scm:178
msgid "Font to use for everything else."
msgstr "×××¤× ×× ×ש×××ש ××× ×ש×ר."
-#: gnucash/report/business-reports/taxinvoice.scm:182
+#: gnucash/report/business-reports/taxinvoice.scm:181
msgid "Name of a file containing a logo to be used on the report."
msgstr "×©× ×§×××¥ ××××× ×××× ×ש×××ש ×××××ת."
-#: gnucash/report/business-reports/taxinvoice.scm:185
+#: gnucash/report/business-reports/taxinvoice.scm:184
msgid ""
-"Width of the logo in CSS format, e.g. 10% or 32px. Leave blank to display the logo "
-"at its natural width. The height of the logo will be scaled accordingly."
+"Width of the logo in CSS format, e.g. 10% or 32px. Leave blank to display the "
+"logo at its natural width. The height of the logo will be scaled accordingly."
msgstr ""
-"ר××× ×¡×× ×ת×× ×ת CSS, ×××××× 10% ×× 32px. × × ××ש××ר ר××§ ×¢× ×× ×ª ××צ×× ×ת ×ס×× ×ר×××× "
-"××××¢×. ×××× ×ס×× ×××§×× ××ת××."
+"ר××× ×¡×× ×ת×× ×ת CSS, ×××××× 10% ×× 32px. × × ××ש××ר ר××§ ×¢× ×× ×ª ××צ×× ×ת ×ס×× "
+"×ר×××× ××××¢×. ×××× ×ס×× ×××§×× ××ת××."
-#: gnucash/report/business-reports/taxinvoice.scm:186
+#: gnucash/report/business-reports/taxinvoice.scm:185
msgid "Border-collapse?"
msgstr "×××××¥ ×××××ת?"
+#: gnucash/report/business-reports/taxinvoice.scm:186
#: gnucash/report/business-reports/taxinvoice.scm:187
-#: gnucash/report/business-reports/taxinvoice.scm:188
msgid "CSS color."
msgstr "צ××¢ CSS."
-#: gnucash/report/business-reports/taxinvoice.scm:220
+#: gnucash/report/business-reports/taxinvoice.scm:219
msgid "Invoice number: "
msgstr "×ספר ×ש××× ×ת: "
-#: gnucash/report/business-reports/taxinvoice.scm:222
+#: gnucash/report/business-reports/taxinvoice.scm:221
msgid "To: "
msgstr "×: "
-#: gnucash/report/business-reports/taxinvoice.scm:224
+#: gnucash/report/business-reports/taxinvoice.scm:223
msgid "Your ref: "
msgstr "ס××××××: "
-#: gnucash/report/business-reports/taxinvoice.scm:226
+#: gnucash/report/business-reports/taxinvoice.scm:225
msgid "Job number: "
msgstr "×ספר ר××××: "
-#: gnucash/report/business-reports/taxinvoice.scm:228
+#: gnucash/report/business-reports/taxinvoice.scm:227
msgid "Job name: "
msgstr "×©× ×¨××××: "
-#: gnucash/report/business-reports/taxinvoice.scm:237
+#: gnucash/report/business-reports/taxinvoice.scm:236
msgid "Embedded CSS."
msgstr "CSS ×ש×××¥."
-#: gnucash/report/business-reports/taxinvoice.scm:319
+#: gnucash/report/business-reports/taxinvoice.scm:318
msgid "Display a customer invoice with tax columns (using eguile template)"
msgstr "×צ×ת ×ש××× ×ת ××§×× ×¢× ×¢××××ת ×ס (ש×××ש ×ת×× ×ת ×××××)"
-#. (gnc:warn "title: " (gnc:option-value title-op))
-#: gnucash/report/business-reports/taxinvoice.scm:332
+#: gnucash/report/business-reports/taxinvoice.scm:330
msgid "Unit"
msgstr "×××××"
-#. (gnc:warn "unitprice: " (gnc:option-value unit-price-op))
-#: gnucash/report/business-reports/taxinvoice.scm:334
+#: gnucash/report/business-reports/taxinvoice.scm:331
msgid "GST Rate"
msgstr "שע×ר ×ס ××××× ×ש×ר×ת××"
# ×ס ×¢× ××××× ×שר×ת××
-#: gnucash/report/business-reports/taxinvoice.scm:335
+#: gnucash/report/business-reports/taxinvoice.scm:332
msgid "GST Amount"
msgstr "ס××× GST"
-#: gnucash/report/business-reports/taxinvoice.scm:336
+#: gnucash/report/business-reports/taxinvoice.scm:333
msgid "Amount Due (inc GST)"
msgstr "ס××× ××××¢ (×××× ×ס ×¢× ××××× ××××ר×)"
-#: gnucash/report/business-reports/taxinvoice.scm:337
+#: gnucash/report/business-reports/taxinvoice.scm:334
msgid "Invoice #: "
msgstr "×ס' ×ש××× ×ת: "
-#: gnucash/report/business-reports/taxinvoice.scm:338
+#: gnucash/report/business-reports/taxinvoice.scm:335
msgid "Reference: "
msgstr "ס××××××: "
-#: gnucash/report/business-reports/taxinvoice.scm:339
+#: gnucash/report/business-reports/taxinvoice.scm:336
msgid "Engagement: "
msgstr "×ª× ×××: "
-#: gnucash/report/business-reports/taxinvoice.scm:345
-#: gnucash/report/business-reports/taxinvoice.scm:347
+#: gnucash/report/business-reports/taxinvoice.scm:342
+#: gnucash/report/business-reports/taxinvoice.scm:344
msgid "Australian Tax Invoice"
msgstr "×ש××× ×ת ×ס ××ס×ר××ת"
-#: gnucash/report/business-reports/taxinvoice.scm:348
+#: gnucash/report/business-reports/taxinvoice.scm:345
msgid ""
"Display an Australian customer invoice with tax columns (using eguile template)"
msgstr "×צ×ת ×ש××× ×ת ×ס ××ס×ר××ת ×¢× ×¢××××ת ×ס (ש×××ש ×ת×× ×ת ×××××)"
@@ -22669,11 +22987,11 @@ msgstr "××פסת ×× ×©××ת ×ש××× ×ת ×××."
#: gnucash/report/locale-specific/us/taxtxf-de_DE.scm:276
msgid ""
-"WARNING: There are duplicate TXF codes assigned to some accounts. Only TXF codes "
-"with payer sources may be repeated."
+"WARNING: There are duplicate TXF codes assigned to some accounts. Only TXF "
+"codes with payer sources may be repeated."
msgstr ""
-"×××ר×: ×§××××× ×§××× TXF ×פ×××× ×©×××§×¦× ××ספר ×ש××× ×ת. × ××ª× ××××ר רק ×¢× ×§××× TXF ×¢× "
-"××§×ר×ת ××××."
+"×××ר×: ×§××××× ×§××× TXF ×פ×××× ×©×××§×¦× ××ספר ×ש××× ×ת. × ××ª× ××××ר רק ×¢× ×§××× TXF "
+"×¢× ××§×ר×ת ××××."
#: gnucash/report/locale-specific/us/taxtxf-de_DE.scm:851
#, scheme-format
@@ -22687,7 +23005,7 @@ msgstr "××× ×ס ××צ×× × XML"
#. 'menu-path (list gnc:menuname-taxes)
#: gnucash/report/locale-specific/us/taxtxf-de_DE.scm:890
msgid "Taxable Income / Deductible Expenses / Export to .XML file"
-msgstr "××× ×¡×ת ×ר×ת ××ס×× / ××צ××ת ×××ר×ת ××ס / ×××××× ××§×××¥ .XML"
+msgstr "××× ×¡×ת ×ר×ת ××ס×× / ××צ××ת ×××ר×ת ××ס / ×××××× ××§×××¥.XML"
#: gnucash/report/locale-specific/us/taxtxf-de_DE.scm:894
#: gnucash/report/locale-specific/us/taxtxf-de_DE.scm:903
@@ -22800,8 +23118,9 @@ msgstr "××× ×ª××× ×ת ×ס ××צ×× TXF"
#. 'menu-path (list gnc:menuname-taxes)
#: gnucash/report/locale-specific/us/taxtxf.scm:3391
-msgid "Taxable Income/Deductible Expenses with Transaction Detail/Export to .TXF file"
-msgstr "××× ×¡× ××××ת ××ס / ××צ××ת × ××ª× ×ת ×× ×××× ×¢× ×¤×ר×× ×ª× ××¢× / ××צ×× ××§×××¥ .TXT"
+msgid ""
+"Taxable Income/Deductible Expenses with Transaction Detail/Export to .TXF file"
+msgstr "××× ×¡× ××××ת ××ס / ××צ××ת × ××ª× ×ת ×× ×××× ×¢× ×¤×ר×× ×ª× ××¢× / ××צ×× ××§×××¥.TXT"
#: gnucash/report/locale-specific/us/taxtxf.scm:3395
#: gnucash/report/locale-specific/us/taxtxf.scm:3404
@@ -22837,8 +23156,8 @@ msgstr "×× × ××ª× ××©× ×ת ×©× ×ª×¦×רת ×××."
#: gnucash/report/report-gnome/dialog-custom-report.c:460
msgid ""
-"A saved report configuration with this name already exists, please choose another "
-"name."
+"A saved report configuration with this name already exists, please choose "
+"another name."
msgstr "תצ×רת ××× ×©××ר ×¢× ×©× ××× ×§××× ××ר, × × ××××ר ×©× ××ר."
#: gnucash/report/report-gnome/dialog-custom-report.c:486
@@ -22908,16 +23227,17 @@ msgstr "×צ×רת PDF"
#: gnucash/report/report-gnome/gnc-plugin-page-report.c:1164
#, c-format
msgid ""
-"Update the current report's saved configuration. The report will be saved in the "
-"file %s. "
+"Update the current report's saved configuration. The report will be saved in "
+"the file %s. "
msgstr "×¢×××× ×ª×¦×רת ×××× ×ש××ר ×× ××××. ×××× ××ש×ר ××§×××¥ %s. "
#: gnucash/report/report-gnome/gnc-plugin-page-report.c:1167
#, c-format
msgid ""
-"Add the current report's configuration to the `Saved Report Configurations' menu. "
-"The report will be saved in the file %s. "
-msgstr "××ספת תצ×רת ×××× ×× ×××× ×תפר×× 'תצ×ר×ת ××××ת ×©× ×©×ר×'. ×××× ××ש×ר ××§×××¥ %s. "
+"Add the current report's configuration to the `Saved Report Configurations' "
+"menu. The report will be saved in the file %s. "
+msgstr ""
+"××ספת תצ×רת ×××× ×× ×××× ×תפר×× 'תצ×ר×ת ××××ת ×©× ×©×ר×'. ×××× ××ש×ר ××§×××¥ %s. "
#: gnucash/report/report-gnome/gnc-plugin-page-report.c:1173
msgid "_Print Report..."
@@ -23092,7 +23412,7 @@ msgid "Template file \"~a\" can not be read"
msgstr "×§×××¥ ת×× ×ת \"~a\" ×× × ××ª× ×קר×××"
#: gnucash/report/report-system/html-acct-table.scm:621
-#: gnucash/report/standard-reports/trial-balance.scm:284
+#: gnucash/report/standard-reports/trial-balance.scm:283
msgid "Adjusting Entries"
msgstr "רש××ת ת×××"
@@ -23223,7 +23543,8 @@ msgstr "××× × ×ª×× ××"
msgid ""
"The selected accounts contain no data/transactions (or only zeroes) for the "
"selected time period"
-msgstr "××ש××× ×ת ×©× ×××¨× ××× × ×××××× × ×ª×× ×× / ×ª× ××¢×ת (×× ×¨×§ ×פס××) ×תק×פת ×××× ×©× ××ר×"
+msgstr ""
+"××ש××× ×ת ×©× ×××¨× ××× × ×××××× × ×ª×× ×× / ×ª× ××¢×ת (×× ×¨×§ ×פס××) ×תק×פת ×××× ×©× ××ר×"
#: gnucash/report/report-system/options-utilities.scm:33
msgid "Select a date to report on."
@@ -23346,7 +23667,8 @@ msgid "Show accounts to this depth, overriding any other option."
msgstr "×צ×ת ×ש××× ×ת ××¢×××§ ××, ×¢××§××£ ×× ×פשר×ת ××רת."
#: gnucash/report/report-system/options-utilities.scm:104
-msgid "Override account-selection and show sub-accounts of all selected accounts?"
+msgid ""
+"Override account-selection and show sub-accounts of all selected accounts?"
msgstr "×ר××ס ×ש××× ×ת ×©× ×××¨× ××צ×ת ×ש××× ×ת ××©× × ×©× ××ש××× ×ת ×©× ××ר×?"
#: gnucash/report/report-system/options-utilities.scm:117
@@ -23528,10 +23850,11 @@ msgstr "×צ×ת ×××ª×¨× ××ש××× ××× ××××, ××ר×ת ×× ×ש×
#: gnucash/report/report-system/options-utilities.scm:270
msgid ""
-"Calculate the subtotal for this parent account and all of its subaccounts, and show "
-"this as the parent account balance."
+"Calculate the subtotal for this parent account and all of its subaccounts, and "
+"show this as the parent account balance."
msgstr ""
-"××ש×× ×¡××× ×××× ××× ××ש××× ×× ×× ××××× ×ש××× ×ת ×××©× × ×©××, ××צ××ª× ××תרת ×ש××× ×××."
+"××ש×× ×¡××× ×××× ××× ××ש××× ×× ×× ××××× ×ש××× ×ת ×××©× × ×©××, ××צ××ª× ××תרת ×ש××× "
+"×××."
#: gnucash/report/report-system/options-utilities.scm:272
#: gnucash/report/report-system/options-utilities.scm:287
@@ -23607,17 +23930,18 @@ msgstr "×ספר ×ש××× ×ת"
#: gnucash/report/report-system/report.scm:92
msgid ""
-"One of your reports has a report-guid that is a duplicate. Please check the report "
-"system, especially your saved reports, for a report with this report-guid: "
+"One of your reports has a report-guid that is a duplicate. Please check the "
+"report system, especially your saved reports, for a report with this report-"
+"guid: "
msgstr ""
-"×§×××ת ×פ×××ת ×××× ××××××ת. × × ×××××§ ×ת ×ער×ת ×××××ת, ×××××× ×ת ×××××ת ×ש××ר××, ×××× "
-"×¢× ××ר×× ××××ת ××: "
+"×§×××ת ×פ×××ת ×××× ××××××ת. × × ×××××§ ×ת ×ער×ת ×××××ת, ×××××× ×ת ×××××ת ×ש××ר××, "
+"×××× ×¢× ××ר×× ××××ת ××: "
#: gnucash/report/report-system/report.scm:94
msgid ""
"The GnuCash report system has been upgraded. Your old saved reports have been "
-"transferred into a new format. If you experience trouble with saved reports, please "
-"contact the GnuCash development team."
+"transferred into a new format. If you experience trouble with saved reports, "
+"please contact the GnuCash development team."
msgstr ""
"×ער×ת ×××××ת ×©× ×× ××§×ש ש××ר××. ×××××ת ×××©× ×× ×ש××ר×× ××××¨× ×ת×× ×ת ×××ש×. ××××× "
"×× ×ª×§××ª× ×××¢××ת ×××××ת ×©× ×©×ר×, × × ×¦×¨× ×§×©×¨ ×¢× ×¦××ת ×פ×ת×× ×©× ×× ××§×ש."
@@ -23632,8 +23956,8 @@ msgstr " ×סר ×××× ×××× ××××× ××× ××רס××."
#: gnucash/report/report-system/report.scm:98
msgid ""
-"Some reports stored in a legacy format were found. This format is not supported "
-"anymore so these reports may not have been restored properly."
+"Some reports stored in a legacy format were found. This format is not "
+"supported anymore so these reports may not have been restored properly."
msgstr ""
"× ×צ×× ×ספר ××××ת ××××××¡× ×× ×ת×× ×ת ×××ר ×§×××. ת×× ×ת ×× ××× × × ×ª××ת ××תר ×× ×©×ת×× "
"×××××ת ××× ×× ×©××××¨× ×ר×××."
@@ -23652,19 +23976,19 @@ msgstr "×××××× ×¡×× ××."
#: gnucash/report/report-system/report-utilities.scm:111
#: gnucash/report/standard-reports/account-piecharts.scm:60
-#: gnucash/report/standard-reports/balance-sheet.scm:634
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:754
-#: gnucash/report/standard-reports/net-charts.scm:410
-#: gnucash/report/standard-reports/net-charts.scm:490
+#: gnucash/report/standard-reports/balance-sheet.scm:633
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:753
+#: gnucash/report/standard-reports/net-charts.scm:408
+#: gnucash/report/standard-reports/net-charts.scm:488
msgid "Assets"
msgstr "× ×ס××"
#: gnucash/report/report-system/report-utilities.scm:112
#: gnucash/report/standard-reports/account-piecharts.scm:62
-#: gnucash/report/standard-reports/balance-sheet.scm:435
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:784
-#: gnucash/report/standard-reports/net-charts.scm:410
-#: gnucash/report/standard-reports/net-charts.scm:490
+#: gnucash/report/standard-reports/balance-sheet.scm:434
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:783
+#: gnucash/report/standard-reports/net-charts.scm:408
+#: gnucash/report/standard-reports/net-charts.scm:488
msgid "Liabilities"
msgstr "×ת×××××××ת"
@@ -23711,12 +24035,12 @@ msgstr "×§× ×שר××"
#: gnucash/report/report-system/report-utilities.scm:687
#, scheme-format
msgid "Building '~a' report ..."
-msgstr "×× ××ת ××× '~a' ..."
+msgstr "×× ××ת ××× '~a'..."
#: gnucash/report/report-system/report-utilities.scm:693
#, scheme-format
msgid "Rendering '~a' report ..."
-msgstr "×¢×××× '~a' ××× ..."
+msgstr "×¢×××× '~a' ×××..."
#: gnucash/report/report-system/trep-engine.scm:51
msgid "Filter Type"
@@ -24187,44 +24511,44 @@ msgstr "×צ×ת ת×צ×ת ×××."
#: gnucash/report/report-system/trep-engine.scm:575
msgid ""
-"Show only accounts whose full name matches this filter e.g. ':Travel' will match "
-"Expenses:Travel:Holiday and Expenses:Business:Travel. It can be left blank, which "
-"will disable the filter."
+"Show only accounts whose full name matches this filter e.g. ':Travel' will "
+"match Expenses:Travel:Holiday and Expenses:Business:Travel. It can be left "
+"blank, which will disable the filter."
msgstr ""
-"×צ×ת ×ש××× ×ת שש×× ×××× ×ª××× ×××¡× × ×× ××××, ×××××× ':× ×¡××¢×ת' ×ת××× ×'××צ××ת:× ×¡××¢×ת:"
-"× ×פש' ××× ×'××צ××ת:עסק××:× ×¡××¢×ת'.× ××ª× ××ש××ר ר××§, ××ר ש×ש××ת ×ת ×××¡× ×."
+"×צ×ת ×ש××× ×ת שש×× ×××× ×ª××× ×××¡× × ×× ××××, ×××××× ':× ×¡××¢×ת' ×ת××× ×'××צ××ת:"
+"× ×¡××¢×ת:× ×פש' ××× ×'××צ××ת:עסק××:× ×¡××¢×ת'.× ××ª× ××ש××ר ר××§, ××ר ש×ש××ת ×ת ×××¡× ×."
#: gnucash/report/report-system/trep-engine.scm:584
msgid ""
"By default the account filter will search substring only. Set this to true to "
-"enable full POSIX regular expressions capabilities. 'Car|Flights' will match both "
-"Expenses:Car and Expenses:Flights. Use a period (.) to match a single character e."
-"g. '20../.' will match 'Travel 2017/1 London'. "
+"enable full POSIX regular expressions capabilities. 'Car|Flights' will match "
+"both Expenses:Car and Expenses:Flights. Use a period (.) to match a single "
+"character e.g. '20../.' will match 'Travel 2017/1 London'. "
msgstr ""
-"××ר×רת ××××, ××¡× × ××ש××× ××פש ××ר××ת ××©× × ××××. ××××¨× ×-true ת×פשר ×××××ת ××××ת "
-"×××××× ×¨××× ×©× POSIX. '×××× ×ת|××ס×ת' ×××××¨× ×ª×צ××ת ×× × '×××צ××ת: ר××' × '××צ××ת: "
-"××ס×ת'. ××ת××× ××ª× ×××× ×ש ××שת×ש ×× ×§××× (.) ×××××× ' 20.../. ' ××××ר רש××× '× ×¡××¢×ת "
-"××× ×××2017/1 '. "
+"××ר×רת ××××, ××¡× × ××ש××× ××פש ××ר××ת ××©× × ××××. ××××¨× ×-true ת×פשר ×××××ת "
+"××××ת ×××××× ×¨××× ×©× POSIX. '×××× ×ת|××ס×ת' ×××××¨× ×ª×צ××ת ×× × '×××צ××ת: ר××' × "
+"'××צ××ת: ××ס×ת'. ××ת××× ××ª× ×××× ×ש ××שת×ש ×× ×§××× (.) ×××××× ' 20.../. ' ××××ר "
+"רש××× '× ×¡××¢×ת ××× ×××2017/1 '. "
#: gnucash/report/report-system/trep-engine.scm:593
msgid ""
"Show only transactions where description, notes, or memo matches this filter.\n"
-"e.g. '#gift' will find all transactions with #gift in description, notes or memo. "
-"It can be left blank, which will disable the filter."
+"e.g. '#gift' will find all transactions with #gift in description, notes or "
+"memo. It can be left blank, which will disable the filter."
msgstr ""
"×צ×ת ×ª× ××¢×ת ש××× ×ת×××ר, ××ער×ת ×× ×××××ר ת××××× ×××¡× × ××.\n"
-"×××××× ' #××ª× × ' ת××¦× ×ת ×× ××ª× ××¢×ת ×¢× #××ª× × ×ת×××ר, ××ער×ת ×× ×××××ר. × ××ª× ××ש××ר "
-"×ת ×ש×× ×¨××§, ××ר ש××פ×× ×ת ×××¡× × ××× ××××."
+"×××××× ' #××ª× × ' ת××¦× ×ת ×× ××ª× ××¢×ת ×¢× #××ª× × ×ת×××ר, ××ער×ת ×× ×××××ר. × ××ª× "
+"××ש××ר ×ת ×ש×× ×¨××§, ××ר ש××פ×× ×ת ×××¡× × ××× ××××."
#: gnucash/report/report-system/trep-engine.scm:602
msgid ""
-"By default the transaction filter will search substring only. Set this to true to "
-"enable full POSIX regular expressions capabilities. '#work|#family' will match both "
-"tags within description, notes or memo. "
+"By default the transaction filter will search substring only. Set this to true "
+"to enable full POSIX regular expressions capabilities. '#work|#family' will "
+"match both tags within description, notes or memo. "
msgstr ""
-"××ר×רת ××××, ××¡× × ××ª× ××¢×ת ××פש ××ר××ת ××©× × ××××. ××××¨× ×-true ת×פשר ×××××ת ××××ת "
-"×××××× ×¨××× ×©× POSIX. '#×¢××××|'#×שפ××' ×××××¨× ×ª×צ××ת ××©× × ×ת××× ×ת×× ×©×× ×ת×××ר, "
-"××ער×ת ×× ×ת×××ר. "
+"××ר×רת ××××, ××¡× × ××ª× ××¢×ת ××פש ××ר××ת ××©× × ××××. ××××¨× ×-true ת×פשר ×××××ת "
+"××××ת ×××××× ×¨××× ×©× POSIX. '#×¢××××|'#×שפ××' ×××××¨× ×ª×צ××ת ××©× × ×ת××× ×ת×× ×©×× "
+"×ת×××ר, ××ער×ת ×× ×ת×××ר. "
#: gnucash/report/report-system/trep-engine.scm:610
msgid "Filter by reconcile status."
@@ -24240,8 +24564,9 @@ msgid ""
"report. Closing transactions are transfers from income and expense accounts to "
"equity, and must usually be excluded from periodic reporting."
msgstr ""
-"××ר×רת ××××, ר×× ××שת×ש×× ×× ×¦×¨×××× ××××× ×ª× ××¢×ת ס×××¨× ×××× ×ª× ××¢×ת. ×ª× ××¢×ת ס×××¨× ×× "
-"××¢××¨× ××ש××× ×ת ××× ×¡×ת ×××צ××ת ×××× ×עצ××, ×××¨× ××× ×ש ×××ר××× ×××××× ×ª×§×פת×."
+"××ר×רת ××××, ר×× ××שת×ש×× ×× ×¦×¨×××× ××××× ×ª× ××¢×ת ס×××¨× ×××× ×ª× ××¢×ת. ×ª× ××¢×ת "
+"ס×××¨× ×× ××¢××¨× ××ש××× ×ת ××× ×¡×ת ×××צ××ת ×××× ×עצ××, ×××¨× ××× ×ש ×××ר××× ×××××× "
+"תק×פת×."
#: gnucash/report/report-system/trep-engine.scm:637
#: gnucash/report/standard-reports/balance-forecast.scm:38
@@ -24388,7 +24713,8 @@ msgstr "×צ×ת ×××ר ×× ××ת?"
#. note the "Amount" multichoice option in between here
#: gnucash/report/report-system/trep-engine.scm:931
-msgid "Display a subtotal summary table. This requires Display/Amount being 'single"
+msgid ""
+"Display a subtotal summary table. This requires Display/Amount being 'single"
msgstr "×צ×ת ×××ת ס××××× ××× ×××. × ×רשת ×××רת תצ×××/ ס××× × '××××'"
#: gnucash/report/report-system/trep-engine.scm:932
@@ -24441,8 +24767,8 @@ msgstr "×צ×ת ×©× ××ש×××?"
#: gnucash/report/report-system/trep-engine.scm:966
msgid ""
-"Display the other account name? (if this is a split transaction, this parameter is "
-"guessed)."
+"Display the other account name? (if this is a split transaction, this "
+"parameter is guessed)."
msgstr "×צ×ת ×©× ××ש××× ×× ×××? (×× ×××× ×ª× ××¢× ×××××× ×¤×צ××××, ×ת×צע × ×××ש)."
#: gnucash/report/report-system/trep-engine.scm:975
@@ -24523,7 +24849,7 @@ msgstr "פ×צ×× ×ª× ××¢×"
#: gnucash/report/report-system/trep-engine.scm:1591
#: gnucash/report/report-system/trep-engine.scm:1864
-#: gnucash/report/standard-reports/category-barchart.scm:745
+#: gnucash/report/standard-reports/category-barchart.scm:743
msgid "Grand Total"
msgstr "ס××× ××××"
@@ -24653,8 +24979,8 @@ msgstr "×צ×ת ×××צע"
#: gnucash/report/standard-reports/account-piecharts.scm:81
#: gnucash/report/standard-reports/category-barchart.scm:87
msgid ""
-"Select whether the amounts should be shown over the full time period or rather as "
-"the average e.g. per month."
+"Select whether the amounts should be shown over the full time period or rather "
+"as the average e.g. per month."
msgstr "××××¨× ××× ××צ×× ×ת ×ס××××× ××××¨× ×××× ×¤×¨×§ ×××× ×× ××××צע ×××ש×."
#: gnucash/report/standard-reports/account-piecharts.scm:117
@@ -24735,15 +25061,12 @@ msgstr "×××צע ש×××¢×"
#: gnucash/report/standard-reports/balsheet-pnl.scm:883
#: gnucash/report/standard-reports/budget.scm:455
#: gnucash/report/standard-reports/cashflow-barchart.scm:294
-#: gnucash/report/standard-reports/cash-flow.scm:193
-#: gnucash/report/standard-reports/category-barchart.scm:537
-#: gnucash/report/standard-reports/category-barchart.scm:563
-#: gnucash/report/standard-reports/daily-reports.scm:293
-#: gnucash/report/standard-reports/equity-statement.scm:363
-#: gnucash/report/standard-reports/income-statement.scm:474
-#: gnucash/report/standard-reports/net-charts.scm:371
+#: gnucash/report/standard-reports/cash-flow.scm:191
+#: gnucash/report/standard-reports/category-barchart.scm:535
+#: gnucash/report/standard-reports/category-barchart.scm:561
+#: gnucash/report/standard-reports/daily-reports.scm:291
+#: gnucash/report/standard-reports/net-charts.scm:369
#: gnucash/report/standard-reports/price-scatter.scm:202
-#: gnucash/report/standard-reports/trial-balance.scm:482
#: libgnucash/app-utils/date-utilities.scm:90
#, scheme-format
msgid "~a to ~a"
@@ -24896,7 +25219,7 @@ msgstr "×צ×ת ס×× ××ש×××."
#: gnucash/report/standard-reports/account-summary.scm:108
#: gnucash/report/standard-reports/sx-summary.scm:87
msgid "Account Description"
-msgstr "ת××ר ×ש×××"
+msgstr "ת×××ר ×ש×××"
#: gnucash/report/standard-reports/account-summary.scm:109
#: gnucash/report/standard-reports/sx-summary.scm:88
@@ -24947,10 +25270,11 @@ msgstr "××ª×¨× ×¨×§×רס×××ת"
#: gnucash/report/standard-reports/account-summary.scm:176
#: gnucash/report/standard-reports/sx-summary.scm:154
msgid ""
-"Show the total balance, including balances in subaccounts, of any account at the "
-"depth limit."
+"Show the total balance, including balances in subaccounts, of any account at "
+"the depth limit."
msgstr ""
-"×צ×ת ×××ª×¨× ×××××ת, ×××× ×תר×ת ××ש××× ×ת ×××©× ×, ××× ×ש××× ××××××ת ×¢×××§ תרש×× ××ש××× ×ת."
+"×צ×ת ×××ª×¨× ×××××ת, ×××× ×תר×ת ××ש××× ×ת ×××©× ×, ××× ×ש××× ××××××ת ×¢×××§ תרש×× "
+"××ש××× ×ת."
#: gnucash/report/standard-reports/account-summary.scm:178
#: gnucash/report/standard-reports/sx-summary.scm:156
@@ -24972,8 +25296,8 @@ msgstr "×ש××ת ×ש××× ×ת"
msgid "Disregard completely any accounts deeper than the depth limit."
msgstr "××תע×× ××××××× ×ש××× ×ת ש×ר×× ×××××ת ××ר×××."
-#: gnucash/report/standard-reports/account-summary.scm:445
-#: gnucash/report/standard-reports/sx-summary.scm:446
+#: gnucash/report/standard-reports/account-summary.scm:444
+#: gnucash/report/standard-reports/sx-summary.scm:445
msgid "Account title"
msgstr "××תרת ×ש×××"
@@ -25107,7 +25431,7 @@ msgid "Include accounts that have a zero share balances."
msgstr "××××ת ×ש××× ×ת ×¢× ×תרת ×× ××ת ×פס."
#: gnucash/report/standard-reports/advanced-portfolio.scm:1073
-#: gnucash/report/standard-reports/portfolio.scm:256
+#: gnucash/report/standard-reports/portfolio.scm:255
msgid "Listing"
msgstr "רש×××ת"
@@ -25118,14 +25442,14 @@ msgstr "×ס×ס"
#: gnucash/report/standard-reports/advanced-portfolio.scm:1087
#: gnucash/report/standard-reports/cashflow-barchart.scm:313
#: gnucash/report/standard-reports/cashflow-barchart.scm:338
-#: gnucash/report/standard-reports/cash-flow.scm:286
+#: gnucash/report/standard-reports/cash-flow.scm:284
msgid "Money In"
msgstr "×סף ×©× ×× ×¡"
#: gnucash/report/standard-reports/advanced-portfolio.scm:1088
#: gnucash/report/standard-reports/cashflow-barchart.scm:314
#: gnucash/report/standard-reports/cashflow-barchart.scm:339
-#: gnucash/report/standard-reports/cash-flow.scm:307
+#: gnucash/report/standard-reports/cash-flow.scm:305
msgid "Money Out"
msgstr "×סף ש×צ×"
@@ -25159,11 +25483,13 @@ msgstr "שע×ר ××××ר"
#: gnucash/report/standard-reports/advanced-portfolio.scm:1196
msgid ""
-"* this commodity data was built using transaction pricing instead of the price list."
+"* this commodity data was built using transaction pricing instead of the price "
+"list."
msgstr "* × ×ª×× × ×ס××ר×ת ×××× × ×× × ×××צע×ת ××××¨× ××ª× ××¢× ×××§×× ×××ר××."
#: gnucash/report/standard-reports/advanced-portfolio.scm:1198
-msgid "If you are in a multi-currency situation, the exchanges may not be correct."
+msgid ""
+"If you are in a multi-currency situation, the exchanges may not be correct."
msgstr "×××¦× ×©× ×¨×××× ××××¢×ת, ×©×¢×¨× ××××¨× ×¢×©×××× ×©×× ××××ת × ××× ××."
#: gnucash/report/standard-reports/advanced-portfolio.scm:1203
@@ -25198,18 +25524,18 @@ msgstr "××××× ×ת ×× ×ש××× ×ת ×××©× × ××ש××× ×ת ×©× ××
#: gnucash/report/standard-reports/average-balance.scm:84
msgid ""
-"Exclude transactions that only involve two accounts, both of which are selected "
-"below. This only affects the profit and loss columns of the table."
+"Exclude transactions that only involve two accounts, both of which are "
+"selected below. This only affects the profit and loss columns of the table."
msgstr ""
-"××ר×ת ×ª× ××¢×ת ××××××ת ×©× × ×ש××× ×ת ×××× ××©× ××× × ×××¨× ×××. ×שפ××¢ רק ×¢× ×¢××××ת ×ר××× "
-"××××¤×¡× ×××××."
+"××ר×ת ×ª× ××¢×ת ××××××ת ×©× × ×ש××× ×ת ×××× ××©× ××× × ×××¨× ×××. ×שפ××¢ רק ×¢× ×¢××××ת "
+"×ר××× ××××¤×¡× ×××××."
#: gnucash/report/standard-reports/average-balance.scm:91
msgid "Do transaction report on this account."
msgstr "×פקת ××× ×ª× ××¢×ת ××ש××× ××."
#: gnucash/report/standard-reports/average-balance.scm:114
-#: gnucash/report/standard-reports/average-balance.scm:303
+#: gnucash/report/standard-reports/average-balance.scm:301
#: gnucash/report/standard-reports/category-barchart.scm:188
#: gnucash/report/standard-reports/category-barchart.scm:260
#: gnucash/report/standard-reports/net-charts.scm:134
@@ -25225,7 +25551,7 @@ msgid "Display a table of the selected data."
msgstr "×צ×ת ×ער××× ×©× ×××¨× ×××××."
#: gnucash/report/standard-reports/average-balance.scm:119
-#: gnucash/report/standard-reports/average-balance.scm:302
+#: gnucash/report/standard-reports/average-balance.scm:300
msgid "Show plot"
msgstr "×צ×ת תרש××"
@@ -25234,7 +25560,7 @@ msgid "Display a graph of the selected data."
msgstr "×צ×ת תרש×× ×©× ×× ×ª×× ×× ×©× ××ר×."
#: gnucash/report/standard-reports/average-balance.scm:124
-#: gnucash/report/standard-reports/average-balance.scm:301
+#: gnucash/report/standard-reports/average-balance.scm:299
msgid "Plot Type"
msgstr "ס×× ×ª×¨×©××"
@@ -25325,8 +25651,8 @@ msgstr "ס××× ×××¨× ××¢× ×××××ר"
#: gnucash/report/standard-reports/balance-forecast.scm:63
msgid ""
-"The target is used to plan for a future large purchase, which will be added as a "
-"line above the reserve amount."
+"The target is used to plan for a future large purchase, which will be added as "
+"a line above the reserve amount."
msgstr "×עת××× ×ש×שת ×ת×× ×× ×¨×××©× ×¢×ª×××ת ×××ת×ת ×תת××סף ×ש××¨× ××¢× ×¡××× ×עת×××."
#: gnucash/report/standard-reports/balance-forecast.scm:67
@@ -25338,7 +25664,8 @@ msgid ""
"The future minimum will add, for each date point, a projected minimum balance "
"including scheduled transactions."
msgstr ""
-"×××× ×××× ×עת××× ××ס××£, ×¢××ר ×× × ×§××ת ×××, ×תרת ××× ×××× ×¦×¤××× ×××× ×ª× ××¢×ת ××××ר××ת."
+"×××× ×××× ×עת××× ××ס××£, ×¢××ר ×× × ×§××ת ×××, ×תרת ××× ×××× ×¦×¤××× ×××× ×ª× ××¢×ת "
+"××××ר××ת."
#: gnucash/report/standard-reports/balance-forecast.scm:246
msgid "Target"
@@ -25349,7 +25676,7 @@ msgid "Reserve"
msgstr "ש××ר"
#: gnucash/report/standard-reports/balance-sheet.scm:72
-#: gnucash/report/standard-reports/trial-balance.scm:710
+#: gnucash/report/standard-reports/trial-balance.scm:702
msgid "Balance Sheet"
msgstr "×××××× ××××"
@@ -25364,8 +25691,8 @@ msgid ""
"Print liability/equity section in the same column under the assets section as "
"opposed to a second column right of the assets section."
msgstr ""
-"××פסת סע××£ ×××××ת/××× ×¢×¦×× ××××ª× ×¢××××, ת×ת סע××£ ×× ×ס××, ×××§×× ××¢×××× × ×¤×¨×ת ×ש××× "
-"×סע××£ × ×ס××."
+"××פסת סע××£ ×××××ת/××× ×¢×¦×× ××××ª× ×¢××××, ת×ת סע××£ ×× ×ס××, ×××§×× ××¢×××× × ×¤×¨×ת "
+"×ש××× ×סע××£ × ×ס××."
#: gnucash/report/standard-reports/balance-sheet.scm:115
#: gnucash/report/standard-reports/budget-balance-sheet.scm:80
@@ -25438,46 +25765,46 @@ msgstr "××××× ×¡× ×× ×××"
msgid "Whether or not to include a line indicating total equity."
msgstr "××× ××××× ×©×רת ×¡× ×× ×××."
-#: gnucash/report/standard-reports/balance-sheet.scm:443
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:806
+#: gnucash/report/standard-reports/balance-sheet.scm:442
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:805
msgid "Total Liabilities"
msgstr "×¡× ×× ×ת×××××××ת"
-#: gnucash/report/standard-reports/balance-sheet.scm:641
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:775
+#: gnucash/report/standard-reports/balance-sheet.scm:640
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:774
msgid "Total Assets"
msgstr "×¡× ×× × ×ס××"
-#: gnucash/report/standard-reports/balance-sheet.scm:675
+#: gnucash/report/standard-reports/balance-sheet.scm:674
msgid "Trading Gains"
msgstr "ר××××× ××ש××× ×¡×ר"
-#: gnucash/report/standard-reports/balance-sheet.scm:676
+#: gnucash/report/standard-reports/balance-sheet.scm:675
msgid "Trading Losses"
msgstr "×פס××× ××ש××× ×¡×ר"
-#: gnucash/report/standard-reports/balance-sheet.scm:681
+#: gnucash/report/standard-reports/balance-sheet.scm:680
#: gnucash/report/standard-reports/balsheet-pnl.scm:1060
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:848
-#: gnucash/report/standard-reports/equity-statement.scm:631
-#: gnucash/report/standard-reports/trial-balance.scm:929
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:847
+#: gnucash/report/standard-reports/equity-statement.scm:624
+#: gnucash/report/standard-reports/trial-balance.scm:921
msgid "Unrealized Gains"
msgstr "ר××××× ×× ××××ש××"
-#: gnucash/report/standard-reports/balance-sheet.scm:682
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:849
-#: gnucash/report/standard-reports/equity-statement.scm:632
-#: gnucash/report/standard-reports/trial-balance.scm:930
+#: gnucash/report/standard-reports/balance-sheet.scm:681
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:848
+#: gnucash/report/standard-reports/equity-statement.scm:625
+#: gnucash/report/standard-reports/trial-balance.scm:922
msgid "Unrealized Losses"
msgstr "×פס××× ×××ª× ××××ש××"
-#: gnucash/report/standard-reports/balance-sheet.scm:686
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:864
+#: gnucash/report/standard-reports/balance-sheet.scm:685
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:863
msgid "Total Equity"
msgstr "×¡× ×× ×××"
-#: gnucash/report/standard-reports/balance-sheet.scm:697
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:870
+#: gnucash/report/standard-reports/balance-sheet.scm:696
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:869
msgid "Total Liabilities & Equity"
msgstr "×¡× ×× ×ת×××××××ת ××××"
@@ -25515,8 +25842,8 @@ msgstr "× ×ר×× ××ש×ר ס×××××"
#: gnucash/report/standard-reports/balsheet-pnl.scm:56
msgid ""
-"Selecting this option will disable amount indenting, and condense amounts into a "
-"single column."
+"Selecting this option will disable amount indenting, and condense amounts into "
+"a single column."
msgstr "××××¨× ××פשר×ת ×× ×× ×ר×ת ××ש×ר ס××××× ××צ×צ×ת ס××××× ××¢×××× ××××ת."
#: gnucash/report/standard-reports/balsheet-pnl.scm:61
@@ -25525,8 +25852,8 @@ msgstr "×©× ×ש××× ××× ×××§×× ××ש×ר"
#: gnucash/report/standard-reports/balsheet-pnl.scm:62
msgid ""
-"Selecting this option enables full account name instead, and disables indenting "
-"account names."
+"Selecting this option enables full account name instead, and disables "
+"indenting account names."
msgstr "××××¨× ××פשר×ת ×× ××פשרת ×©× ×ש××× ××× ×××××ת ××ש×ר ש××ת ×ש×××."
#: gnucash/report/standard-reports/balsheet-pnl.scm:70
@@ -25535,13 +25862,14 @@ msgstr "ס××× ×ש××× ×ת ×× ×ר××ת ×ש××× ×ת ××©× ×"
#: gnucash/report/standard-reports/balsheet-pnl.scm:71
msgid ""
-"If this option is enabled, subtotals are displayed within parent amounts, and if "
-"parent has own amount, it is displayed on the next row as a child account. If this "
-"option is disabled, subtotals are displayed below parent and children groups."
+"If this option is enabled, subtotals are displayed within parent amounts, and "
+"if parent has own amount, it is displayed on the next row as a child account. "
+"If this option is disabled, subtotals are displayed below parent and children "
+"groups."
msgstr ""
-"××××× ××פשר×ת ×× ××פע×ת, ס××××× ××× ××× ××צ×× ××××§ ××תר×ת ×ש××× ×ת ×××, ××××× ×××ש××× "
-"××× ××ª×¨× ×× ××, ××ש××× ×××¦× ×תת ×ש××× ×ש××¨× × ×¤×¨×ת. ×× ×פשר×ת ×× ××× × ×¤×¢×××, ס××××× "
-"×××× ××× ××צ×× ×ª×ת ×§××צ×ת ×ש××× ×ת ××× ××ש××× ×ת ×××©× ×."
+"××××× ××פשר×ת ×× ××פע×ת, ס××××× ××× ××× ××צ×× ××××§ ××תר×ת ×ש××× ×ת ×××, ××××× "
+"×××ש××× ××× ××ª×¨× ×× ××, ××ש××× ×××¦× ×תת ×ש××× ×ש××¨× × ×¤×¨×ת. ×× ×פשר×ת ×× ××× × "
+"פע×××, ס××××× ×××× ××× ××צ×× ×ª×ת ×§××צ×ת ×ש××× ×ת ××× ××ש××× ×ת ×××©× ×."
#: gnucash/report/standard-reports/balsheet-pnl.scm:85
msgid "Display amounts as hyperlinks"
@@ -25628,8 +25956,8 @@ msgstr "××שר ×ש ××תר ×תק××¤× ××ת, ××× ×××××× ×¡× ×
#: gnucash/report/standard-reports/balsheet-pnl.scm:119
msgid ""
-"If several profit & loss period columns are shown, also show overall period profit "
-"& loss."
+"If several profit & loss period columns are shown, also show overall period "
+"profit & loss."
msgstr "××××× ×××צ××ת ×ספר תק×פ×ת ר×× ××פס×, ××צ×× ×× ×¢×××ת ×¡× ×× ×¨×× ××פס×."
#: gnucash/report/standard-reports/balsheet-pnl.scm:137
@@ -25671,7 +25999,7 @@ msgid "Period"
msgstr "תק×פ×"
#: gnucash/report/standard-reports/balsheet-pnl.scm:1238
-#: gnucash/report/standard-reports/trial-balance.scm:1148
+#: gnucash/report/standard-reports/trial-balance.scm:1140
msgid "Net Income"
msgstr "××× ×¡×ת × ××"
@@ -25693,7 +26021,8 @@ msgstr "××××× ×¡×××××× ××ש××/×§×××××"
#: gnucash/report/standard-reports/budget-balance-sheet.scm:100
msgid ""
-"Whether or not to include lines indicating change in totals introduced by budget."
+"Whether or not to include lines indicating change in totals introduced by "
+"budget."
msgstr "××× ××××× ×©×רת ש×× ×××× ××¡× ××× ××תקצ××."
#: gnucash/report/standard-reports/budget-balance-sheet.scm:112
@@ -25704,55 +26033,55 @@ msgstr "××× ××××× ×©×רת ש×× ×××× ××¡× ××× ××תקצ××."
msgid "Budget to use."
msgstr "תקצ×× ×ש×××ש."
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:766
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:765
msgid "Existing Assets"
msgstr "× ×ס×× ×§×××××"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:768
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:767
msgid "Allocated Assets"
msgstr "× ×ס×× ×©××קצ×"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:772
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:771
msgid "Unallocated Assets"
msgstr "× ×ס×× ×× ××קצ××"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:798
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:797
msgid "Existing Liabilities"
msgstr "×ת×××××××ת ×§××××ת"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:803
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:802
msgid "New Liabilities"
msgstr "×ת×××××××ת ××ש×ת"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:829
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:828
msgid "Existing Retained Earnings"
msgstr "ר××××× ××××¢××× ×§×××××"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:830
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:829
msgid "Existing Retained Losses"
msgstr "××צ××ת ××××¢××ת ×§××××ת"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:835
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:834
msgid "New Retained Earnings"
msgstr "ר××××× ××××¢×××"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:836
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:835
msgid "New Retained Losses"
msgstr "×פס××× ××××¢××× ××ש"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:841
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:840
msgid "Total Retained Earnings"
msgstr "×¡× ×× ×¨××××× ××××¢×××"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:842
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:841
msgid "Total Retained Losses"
msgstr "×¡× ×× ×פס××× ××××¢×××"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:858
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:857
msgid "Existing Equity"
msgstr "××× ×§×××"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:861
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:860
msgid "New Equity"
msgstr "××× ××ש"
@@ -25904,60 +26233,61 @@ msgstr "××¦× ×ª×§× ×, ×ס×ר ×××× ××× ×¡×ת ת××××"
#: gnucash/report/standard-reports/budget-income-statement.scm:133
#: gnucash/report/standard-reports/income-statement.scm:137
msgid ""
-"Causes the report to display in the standard order, placing income before expenses."
+"Causes the report to display in the standard order, placing income before "
+"expenses."
msgstr "×צ×ת ××× ×ס×ר ×ר×××, ××× ×¡×ת ××¤× × ×××צ××ת."
-#: gnucash/report/standard-reports/budget-income-statement.scm:477
+#: gnucash/report/standard-reports/budget-income-statement.scm:476
msgid "Reporting range end period cannot be less than start period."
msgstr "תק×פת ×ס××× ×©× ×××× ×××××× ×× ××××× ××××ת ×§×× ×תק×פת ××ת×××."
-#: gnucash/report/standard-reports/budget-income-statement.scm:507
+#: gnucash/report/standard-reports/budget-income-statement.scm:506
#, scheme-format
msgid "for Budget ~a Period ~d"
msgstr "×¢××ר ×תקצ×× ~a תק××¤× ~d"
-#: gnucash/report/standard-reports/budget-income-statement.scm:512
+#: gnucash/report/standard-reports/budget-income-statement.scm:511
#, scheme-format
msgid "for Budget ~a Periods ~d - ~d"
msgstr "×¢××ר ×תקצ×× ~a תק××¤× ~d - ~d"
-#: gnucash/report/standard-reports/budget-income-statement.scm:518
+#: gnucash/report/standard-reports/budget-income-statement.scm:517
#, scheme-format
msgid "for Budget ~a"
msgstr "×¢××ר תקצ×× ~a"
-#: gnucash/report/standard-reports/budget-income-statement.scm:660
-#: gnucash/report/standard-reports/income-statement.scm:597
+#: gnucash/report/standard-reports/budget-income-statement.scm:659
+#: gnucash/report/standard-reports/income-statement.scm:588
msgid "Revenues"
msgstr "××× ×¡×ת"
-#: gnucash/report/standard-reports/budget-income-statement.scm:669
-#: gnucash/report/standard-reports/income-statement.scm:605
+#: gnucash/report/standard-reports/budget-income-statement.scm:668
+#: gnucash/report/standard-reports/income-statement.scm:596
msgid "Total Revenue"
msgstr "×¡× ×× ××× ×¡×ת"
-#: gnucash/report/standard-reports/budget-income-statement.scm:683
-#: gnucash/report/standard-reports/income-statement.scm:618
+#: gnucash/report/standard-reports/budget-income-statement.scm:682
+#: gnucash/report/standard-reports/income-statement.scm:609
msgid "Total Expenses"
msgstr "×¡× ×× ××צ××ת"
-#: gnucash/report/standard-reports/budget-income-statement.scm:689
-#: gnucash/report/standard-reports/equity-statement.scm:609
-#: gnucash/report/standard-reports/income-statement.scm:635
+#: gnucash/report/standard-reports/budget-income-statement.scm:688
+#: gnucash/report/standard-reports/equity-statement.scm:602
+#: gnucash/report/standard-reports/income-statement.scm:626
msgid "Net income"
msgstr "××× ×¡×ת × ××"
-#: gnucash/report/standard-reports/budget-income-statement.scm:690
-#: gnucash/report/standard-reports/equity-statement.scm:610
-#: gnucash/report/standard-reports/income-statement.scm:636
+#: gnucash/report/standard-reports/budget-income-statement.scm:689
+#: gnucash/report/standard-reports/equity-statement.scm:603
+#: gnucash/report/standard-reports/income-statement.scm:627
msgid "Net loss"
msgstr "××¤×¡× × ×§×"
-#: gnucash/report/standard-reports/budget-income-statement.scm:758
+#: gnucash/report/standard-reports/budget-income-statement.scm:757
msgid "Budget Income Statement"
msgstr "××× ××× ×¡×ת תקצ××"
-#: gnucash/report/standard-reports/budget-income-statement.scm:759
+#: gnucash/report/standard-reports/budget-income-statement.scm:758
msgid "Budget Profit & Loss"
msgstr "ר××× ×××¤×¡× ×ª×§×¦××"
@@ -26026,8 +26356,8 @@ msgstr "××××ת ×ש××× ×ת ××תרת ×פס ×ער×× ×ª×§×¦××"
#: gnucash/report/standard-reports/budget.scm:63
msgid ""
-"Include accounts with zero total (recursive) balances and budget values in this "
-"report."
+"Include accounts with zero total (recursive) balances and budget values in "
+"this report."
msgstr "××××ת ×ש××× ×ת ××תרת ×פס (רק×רס×××) ×ער×× ×ª×§×¦×× ×××× ××."
#: gnucash/report/standard-reports/budget.scm:73
@@ -26060,10 +26390,11 @@ msgstr "××××ת תק×פ×ת ××××צ×ת ××¤× × ××××ר×."
#: gnucash/report/standard-reports/budget.scm:86
msgid ""
-"Include in report previous periods as single collapsed column (one for all periods "
-"before starting)"
+"Include in report previous periods as single collapsed column (one for all "
+"periods before starting)"
msgstr ""
-"××××ת תק×פ×ת ×§××××ת ×××× ××¢×××× ××××צת ××ת (××ת ××× ×תק×פ×ת ××§××××ת ××¢×××× ×¨×ש×× ×)"
+"××××ת תק×פ×ת ×§××××ת ×××× ××¢×××× ××××צת ××ת (××ת ××× ×תק×פ×ת ××§××××ת ××¢×××× "
+"ר×ש×× ×)"
#: gnucash/report/standard-reports/budget.scm:87
msgid "Include collapsed periods after selected."
@@ -26071,11 +26402,11 @@ msgstr "××××ת תק×פ×ת ××××צ×ת ×××¨× ××××ר×."
#: gnucash/report/standard-reports/budget.scm:88
msgid ""
-"Include in report further periods as single collapsed column (one for all periods "
-"after ending and to the end of budget range)"
+"Include in report further periods as single collapsed column (one for all "
+"periods after ending and to the end of budget range)"
msgstr ""
-"××××ת תק×פ×ת עת××××ת ×××× ××¢×××× ××××צת ××ת (××ת ××× ×תק×פ×ת ×עת××××ת ×ס××£ ×××× "
-"××××ר ×××× ×תקצ××)"
+"××××ת תק×פ×ת עת××××ת ×××× ××¢×××× ××××צת ××ת (××ת ××× ×תק×פ×ת ×עת××××ת ×ס××£ "
+"×××× ××××ר ×××× ×תקצ××)"
#: gnucash/report/standard-reports/budget.scm:113
msgid "First"
@@ -26090,7 +26421,8 @@ msgid "Previous"
msgstr "××§×××"
#: gnucash/report/standard-reports/budget.scm:117
-msgid "Budget period was before current period, according to report evaluation date"
+msgid ""
+"Budget period was before current period, according to report evaluation date"
msgstr "תק×פת ×תקצ×× ××× ××¤× × ×תק××¤× ×× ××××ת, ×¢× ×¤× ×ª×ר×× ×ער×ת ××××"
#: gnucash/report/standard-reports/budget.scm:120
@@ -26136,7 +26468,7 @@ msgstr "×פרש"
#. budget will report on budgeted and actual
#. amounts from the beginning of budget, instead
#. of only using the budget-period amounts.
-#: gnucash/report/standard-reports/budget.scm:714
+#: gnucash/report/standard-reports/budget.scm:712
msgid "using accumulated amounts"
msgstr "ש×××ש ×ס××××× ×צ××ר××"
@@ -26208,25 +26540,25 @@ msgstr "×צ×ת ש××ת ×ש××× ×××××"
msgid "Show full account names (including parent accounts)."
msgstr "×צ×ת ש××ת ×ש××× ××× (×××× ×ש××× ×ת ××)"
-#: gnucash/report/standard-reports/cash-flow.scm:210
+#: gnucash/report/standard-reports/cash-flow.scm:208
#, scheme-format
msgid "~a and subaccounts"
msgstr "~a ××ש××× ×ת ××©× ×"
-#: gnucash/report/standard-reports/cash-flow.scm:211
+#: gnucash/report/standard-reports/cash-flow.scm:209
#, scheme-format
msgid "~a and selected subaccounts"
msgstr "~a ××ש××× ×ת ××©× × ×©× ××ר×"
-#: gnucash/report/standard-reports/cash-flow.scm:277
+#: gnucash/report/standard-reports/cash-flow.scm:275
msgid "Money into selected accounts comes from"
msgstr "××סף ×©× ×× ×¡ ××ש××× ×ת ×©× ×××¨× ××××¢ ×"
-#: gnucash/report/standard-reports/cash-flow.scm:298
+#: gnucash/report/standard-reports/cash-flow.scm:296
msgid "Money out of selected accounts goes to"
msgstr "×סף ש××¦× ×××ש××× ×ת ×©× ×××¨× ××× ×"
-#: gnucash/report/standard-reports/cash-flow.scm:319
+#: gnucash/report/standard-reports/cash-flow.scm:317
msgid "Difference"
msgstr "×פרש"
@@ -26330,8 +26662,8 @@ msgstr "×ספר ×ר×× ×©× ×¢×¨×××ת ×תרש××."
msgid "Daily Average"
msgstr "×××צע ××××"
-#: gnucash/report/standard-reports/category-barchart.scm:538
-#: gnucash/report/standard-reports/category-barchart.scm:564
+#: gnucash/report/standard-reports/category-barchart.scm:536
+#: gnucash/report/standard-reports/category-barchart.scm:562
#, scheme-format
msgid "Balances ~a to ~a"
msgstr "×תר×ת ~a × ~a"
@@ -26366,37 +26698,37 @@ msgid "Report only on these accounts."
msgstr "×פקת ××××ת ××ש××× ×ת ×××."
#: gnucash/report/standard-reports/equity-statement.scm:298
-#: gnucash/report/standard-reports/income-statement.scm:434
-#: gnucash/report/standard-reports/sx-summary.scm:313
-#: gnucash/report/standard-reports/trial-balance.scm:494
+#: gnucash/report/standard-reports/income-statement.scm:433
+#: gnucash/report/standard-reports/sx-summary.scm:312
+#: gnucash/report/standard-reports/trial-balance.scm:486
#, scheme-format
msgid "For Period Covering ~a to ~a"
msgstr "×תק××¤× ~a ××¢× ~a"
-#: gnucash/report/standard-reports/equity-statement.scm:362
-#: gnucash/report/standard-reports/income-statement.scm:473
-#: gnucash/report/standard-reports/trial-balance.scm:481
+#: gnucash/report/standard-reports/equity-statement.scm:360
+#: gnucash/report/standard-reports/income-statement.scm:470
+#: gnucash/report/standard-reports/trial-balance.scm:478
msgid "for Period"
msgstr "×תק×פ×"
-#: gnucash/report/standard-reports/equity-statement.scm:602
-#: gnucash/report/standard-reports/equity-statement.scm:646
+#: gnucash/report/standard-reports/equity-statement.scm:595
+#: gnucash/report/standard-reports/equity-statement.scm:639
msgid "Capital"
msgstr "×××"
-#: gnucash/report/standard-reports/equity-statement.scm:616
+#: gnucash/report/standard-reports/equity-statement.scm:609
msgid "Investments"
msgstr "×שקע×ת"
-#: gnucash/report/standard-reports/equity-statement.scm:623
+#: gnucash/report/standard-reports/equity-statement.scm:616
msgid "Withdrawals"
msgstr "×ש×××ת"
-#: gnucash/report/standard-reports/equity-statement.scm:639
+#: gnucash/report/standard-reports/equity-statement.scm:632
msgid "Increase in capital"
msgstr "××××× ×××"
-#: gnucash/report/standard-reports/equity-statement.scm:640
+#: gnucash/report/standard-reports/equity-statement.scm:633
msgid "Decrease in capital"
msgstr "×§×××× ×××"
@@ -26411,38 +26743,39 @@ msgstr "ת×פ×ס ××× ×¡×ת ××ס ××××× ×שר×ת××"
#: gnucash/report/standard-reports/income-gst-statement.scm:42
msgid ""
-"This report is useful to calculate periodic business tax payable/receivable from "
-"authorities. From 'Edit report options' above, choose your Business Income and "
-"Business Expense accounts. Each transaction may contain, in addition to the "
-"accounts payable/receivable or bank accounts, a split to a tax account, e.g. Income:"
-"Sales -$1000, Liability:GST on Sales -$100, Asset:Bank $1100."
+"This report is useful to calculate periodic business tax payable/receivable "
+"from authorities. From 'Edit report options' above, choose your Business "
+"Income and Business Expense accounts. Each transaction may contain, in "
+"addition to the accounts payable/receivable or bank accounts, a split to a tax "
+"account, e.g. Income:Sales -$1000, Liability:GST on Sales -$100, Asset:Bank "
+"$1100."
msgstr ""
-"×××× ×ש×ש ×××ש×× ×ס עסק×× ×ª×§××¤×ª× ×ש××/××§×× ××רש×××ת. ×תפר×× 'ער××ת ×פשר×××ת ×××', "
-"×ש ××××ר ××ש××× ×ת ××× ×¡×ת ×××צ××ת עסק××ת. ×× ×ª× ××¢× ×¢×©××× ×××××, ×× ×סף ××ש××× ×ת "
-"××××××/×××××× ×× ×ש××× ×× ×§, ×× ×¤×צ×× ××ש××× ×ת ×ס, ×××× ××× ×¡×ת: ×××ר×ת âª1,000-, "
-"×ת×××××××ת: GST ×¢× ×××ר×ת âª100-, ר××ש ש×××£: ×× ×§ âª1,100."
+"×××× ×ש×ש ×××ש×× ×ס עסק×× ×ª×§××¤×ª× ×ש××/××§×× ××רש×××ת. ×תפר×× 'ער××ת ×פשר×××ת "
+"×××', ×ש ××××ר ××ש××× ×ת ××× ×¡×ת ×××צ××ת עסק××ת. ×× ×ª× ××¢× ×¢×©××× ×××××, ×× ×סף "
+"××ש××× ×ת ××××××/×××××× ×× ×ש××× ×× ×§, ×× ×¤×צ×× ××ש××× ×ת ×ס, ×××× ××× ×¡×ת: ×××ר×ת "
+"âª1,000-, ×ת×××××××ת: GST ×¢× ×××ר×ת âª100-, ר××ש ש×××£: ×× ×§ âª1,100."
#: gnucash/report/standard-reports/income-gst-statement.scm:48
msgid ""
-"These tax accounts can either be populated using the standard register, or from "
-"Business Invoices and Bills which will require Tax Tables to be set up correctly. "
-"Please see the documentation."
+"These tax accounts can either be populated using the standard register, or "
+"from Business Invoices and Bills which will require Tax Tables to be set up "
+"correctly. Please see the documentation."
msgstr ""
-"× ××ª× ××××ס ×ת ×ש××× ×ת ××ס ×××× ×××××× ×ר×××, ×× ××ש××× ××ת ××××××× ×¢×¡×§×××, ×××× ×ª× "
-"ש×××××ת ××ס ×××××¨× ××××¤× ×ª×§××. × × ××¢××× ×ת××¢××."
+"× ××ª× ××××ס ×ת ×ש××× ×ת ××ס ×××× ×××××× ×ר×××, ×× ××ש××× ××ת ××××××× ×¢×¡×§×××, "
+"×××× ×ª× ×©×××××ת ××ס ×××××¨× ××××¤× ×ª×§××. × × ××¢××× ×ת××¢××."
#: gnucash/report/standard-reports/income-gst-statement.scm:52
msgid ""
-"From the Report Options, you will need to select the accounts which will hold the "
-"GST/VAT taxes collected or paid. These accounts must contain splits which document "
-"the monies which are wholly sent or claimed from tax authorities during periodic "
-"GST/VAT returns. These accounts must be of type ASSET for taxes paid on expenses, "
-"and type LIABILITY for taxes collected on sales."
+"From the Report Options, you will need to select the accounts which will hold "
+"the GST/VAT taxes collected or paid. These accounts must contain splits which "
+"document the monies which are wholly sent or claimed from tax authorities "
+"during periodic GST/VAT returns. These accounts must be of type ASSET for "
+"taxes paid on expenses, and type LIABILITY for taxes collected on sales."
msgstr ""
"×ת×× '×פשר×××ת ×××', ×ש ××××ר ×ת ××ש××× ×ת ש×××××¡× ×ת ×××¡× ×ש×ר×ת×× ××צר××/××¢× "
-"×©× ×¦××¨× ×× ×©××××. ×ש××× ×ת ××× ×××××× ××××× ×¤×צ×××× ×ת××¢×× ××ספ×× ××ש××××× ×× × ×רש×× "
-"×רש×××ת ××ס ××××× ×××××××× ×תק×פת×××. ×ש××× ×ת ××× ×××××× ××××ת ××××ר×× ×ס×× × ×ס "
-"×¢××ר ××ס×× ×©×©×××× ×××צ××ת, ××ס×× ×××ת ×¢××ר ××ס×× ×× ×¦×ר×× ××××ר×ת."
+"×©× ×¦××¨× ×× ×©××××. ×ש××× ×ת ××× ×××××× ××××× ×¤×צ×××× ×ת××¢×× ××ספ×× ××ש××××× ×× "
+"× ×רש×× ×רש×××ת ××ס ××××× ×××××××× ×תק×פת×××. ×ש××× ×ת ××× ×××××× ××××ת ××××ר×× "
+"×ס×× × ×ס ×¢××ר ××ס×× ×©×©×××× ×××צ××ת, ××ס×× ×××ת ×¢××ר ××ס×× ×× ×¦×ר×× ××××ר×ת."
#: gnucash/report/standard-reports/income-gst-statement.scm:93
msgid "Tax Accounts"
@@ -26451,15 +26784,15 @@ msgstr "×ש××× ×ת ×ס"
#: gnucash/report/standard-reports/income-gst-statement.scm:94
msgid ""
"Please find and select the accounts which will hold the tax collected or paid. "
-"These accounts must contain splits which document the monies which are wholly sent "
-"or claimed from tax authorities during periodic GST/VAT returns. These accounts "
-"must be of type ASSET for taxes paid on expenses, and type LIABILITY for taxes "
-"collected on sales."
+"These accounts must contain splits which document the monies which are wholly "
+"sent or claimed from tax authorities during periodic GST/VAT returns. These "
+"accounts must be of type ASSET for taxes paid on expenses, and type LIABILITY "
+"for taxes collected on sales."
msgstr ""
-"× × ××פש ×××××ר ×ת ××ש××× ×ת ש××××× ×ת ××ס ×©× ××× ×× ×©×××. ×ש××× ×ת ××× ×××××× ××××× "
-"פ×צ×××× ××תע××× ×ת ××ספ×× ×××××¢×× ×× × ×רש×× ×רש×××ת ××ס ××××× ××××¨× ×ª×§×פת ×ס ××××× "
-"×שר×ת×× / ××¢\"×. ×ש××× ×ת ××× ×××××× ××××ת ×ס×× '× ×ס' ×¢××ר ×ס×× ×©×©×××× ×¢× ××צ××ת, "
-"×ס×× '×××ת' ××ס×× ×©× ××× ×¢× ×××ר×ת."
+"× × ××פש ×××××ר ×ת ××ש××× ×ת ש××××× ×ת ××ס ×©× ××× ×× ×©×××. ×ש××× ×ת ××× ×××××× "
+"××××× ×¤×צ×××× ××תע××× ×ת ××ספ×× ×××××¢×× ×× × ×רש×× ×רש×××ת ××ס ××××× ××××¨× "
+"תק×פת ×ס ××××× ×שר×ת×× / ××¢\"×. ×ש××× ×ת ××× ×××××× ××××ת ×ס×× '× ×ס' ×¢××ר ×ס×× "
+"שש×××× ×¢× ××צ××ת, ×ס×× '×××ת' ××ס×× ×©× ××× ×¢× ×××ר×ת."
#: gnucash/report/standard-reports/income-gst-statement.scm:108
#: gnucash/report/standard-reports/income-gst-statement.scm:208
@@ -26512,8 +26845,10 @@ msgstr "××ª×¨× × ××"
msgid "Display the net balance (sales without tax - purchases without tax)"
msgstr "×צ×ת ×תר×ת × ×× (××× ×¡×ת ×× ×××× ×ס פ××ת ר××ש×ת ×× ×××× ×ס)"
+#. Translators: "Tax Payable" refer to the difference GST Sales - GST Purchases
#: gnucash/report/standard-reports/income-gst-statement.scm:113
#: gnucash/report/standard-reports/income-gst-statement.scm:268
+#: gnucash/report/standard-reports/income-gst-statement.scm:270
msgid "Tax payable"
msgstr "×ס ×××××"
@@ -26547,11 +26882,6 @@ msgstr "ר××ש×ת × ××"
msgid "Tax on Purchases"
msgstr "×ס ×¢× ×¨××ש×ת"
-#. Translators: "Tax Payable" refer to the difference GST Sales - GST Purchases
-#: gnucash/report/standard-reports/income-gst-statement.scm:270
-msgid "Tax Payable"
-msgstr "×ס ×××××"
-
#: gnucash/report/standard-reports/income-statement.scm:96
msgid "Label the trading accounts section"
msgstr "××תרת ××§××¢ ס×ר"
@@ -26565,25 +26895,26 @@ msgid "Include trading accounts total"
msgstr "××××× ×¡× ×× ×ש××× ×ת ס×ר"
#: gnucash/report/standard-reports/income-statement.scm:101
-msgid "Whether or not to include a line indicating total trading accounts balance."
+msgid ""
+"Whether or not to include a line indicating total trading accounts balance."
msgstr "××× ××××× ×©×רת ס×××× ×ש××× ×ת ס×ר ×××××××."
-#: gnucash/report/standard-reports/income-statement.scm:621
+#: gnucash/report/standard-reports/income-statement.scm:612
#: libgnucash/engine/Account.cpp:4105 libgnucash/engine/Scrub.c:430
#: libgnucash/engine/Scrub.c:495
msgid "Trading"
msgstr "ס×ר"
-#: gnucash/report/standard-reports/income-statement.scm:629
+#: gnucash/report/standard-reports/income-statement.scm:620
msgid "Total Trading"
msgstr "×¡× ××× ×¡×ר"
-#: gnucash/report/standard-reports/income-statement.scm:718
-#: gnucash/report/standard-reports/trial-balance.scm:709
+#: gnucash/report/standard-reports/income-statement.scm:709
+#: gnucash/report/standard-reports/trial-balance.scm:701
msgid "Income Statement"
msgstr "ת×פ×ס ××× ×¡×ת"
-#: gnucash/report/standard-reports/income-statement.scm:719
+#: gnucash/report/standard-reports/income-statement.scm:710
msgid "Profit & Loss"
msgstr "ר××× ××פס×"
@@ -26633,34 +26964,34 @@ msgstr "×צ×ת ×¢×××ת ש××× × ×§×?"
msgid "Add grid lines."
msgstr "××ספת ×§××× ×¡×××."
-#: gnucash/report/standard-reports/net-charts.scm:414
-#: gnucash/report/standard-reports/net-charts.scm:494
+#: gnucash/report/standard-reports/net-charts.scm:412
+#: gnucash/report/standard-reports/net-charts.scm:492
msgid "Net Profit"
msgstr "ר××× × ×§×"
-#: gnucash/report/standard-reports/net-charts.scm:415
-#: gnucash/report/standard-reports/net-charts.scm:495
+#: gnucash/report/standard-reports/net-charts.scm:413
+#: gnucash/report/standard-reports/net-charts.scm:493
msgid "Net Worth"
msgstr "×¢×¨× × ×§×"
-#: gnucash/report/standard-reports/net-charts.scm:542
+#: gnucash/report/standard-reports/net-charts.scm:540
msgid "Net Worth Barchart"
msgstr "תרש×× ×¢××××ת ×¢×¨× × ×§×"
-#: gnucash/report/standard-reports/net-charts.scm:550
+#: gnucash/report/standard-reports/net-charts.scm:548
msgid "Income/Expense Chart"
msgstr "תרש×× ××× ×¡×ת/××צ××ת"
-#: gnucash/report/standard-reports/net-charts.scm:552
+#: gnucash/report/standard-reports/net-charts.scm:550
msgid "Income & Expense Barchart"
msgstr "תרש×× ×¢××××ת ××× ×¡×ת ×××צ××ת"
-#: gnucash/report/standard-reports/net-charts.scm:559
+#: gnucash/report/standard-reports/net-charts.scm:557
msgid "Net Worth Linechart"
msgstr "תרש×× ×§× ×¢×¨× × ×§×"
+#: gnucash/report/standard-reports/net-charts.scm:567
#: gnucash/report/standard-reports/net-charts.scm:569
-#: gnucash/report/standard-reports/net-charts.scm:571
msgid "Income & Expense Linechart"
msgstr "תרש×× ×§× ××× ×¡×ת ×××צ××ת"
@@ -26726,11 +27057,11 @@ msgstr "×× ××××ר×× ×××××"
#: gnucash/report/standard-reports/price-scatter.scm:312
msgid ""
-"All the prices found are equal. This would result in a plot with one straight line. "
-"Unfortunately, the plotting tool can't handle that."
+"All the prices found are equal. This would result in a plot with one straight "
+"line. Unfortunately, the plotting tool can't handle that."
msgstr ""
-"×× ××××ר×× ×©× ×צ××, ××××. ×× ×©××××× ×××¦× ×ª×¨×©×× ×¢× ×§× ×שר ×××. ××ר×× ×צער, ××× ×תרש×× "
-"×× ×××× ××ת×××× ×¢× ××."
+"×× ××××ר×× ×©× ×צ××, ××××. ×× ×©××××× ×××¦× ×ª×¨×©×× ×¢× ×§× ×שר ×××. ××ר×× ×צער, ××× "
+"×תרש×× ×× ×××× ××ת×××× ×¢× ××."
#: gnucash/report/standard-reports/price-scatter.scm:317
msgid "All Prices at the same date"
@@ -26738,11 +27069,11 @@ msgstr "×× ××××ר×× ××××ª× ×××"
#: gnucash/report/standard-reports/price-scatter.scm:318
msgid ""
-"All the prices found are from the same date. This would result in a plot with one "
-"straight line. Unfortunately, the plotting tool can't handle that."
+"All the prices found are from the same date. This would result in a plot with "
+"one straight line. Unfortunately, the plotting tool can't handle that."
msgstr ""
-"×× ××××ר×× ×©× ×צ×× ×× ××××ª× ×ª×ר××. ×× ×©××××× ×תרש×× ×¢× ×§× ×שר ×××. ××ר×× ×צער, ×××× "
-"×תרש×× ×× ×××× ××ת×××× ×¢× ××."
+"×× ××××ר×× ×©× ×צ×× ×× ××××ª× ×ª×ר××. ×× ×©××××× ×תרש×× ×¢× ×§× ×שר ×××. ××ר×× ×צער, "
+"×××× ×תרש×× ×× ×××× ××ת×××× ×¢× ××."
#: gnucash/report/standard-reports/price-scatter.scm:325
msgid "Only one price"
@@ -26750,8 +27081,8 @@ msgstr "×××ר ××× ××××"
#: gnucash/report/standard-reports/price-scatter.scm:326
msgid ""
-"There was only one single price found for the selected commodities in the selected "
-"time period. This doesn't give a useful plot."
+"There was only one single price found for the selected commodities in the "
+"selected time period. This doesn't give a useful plot."
msgstr ""
"× ××¦× ×¨×§ ×××ר ××× ×××× ×¢××ר ×ס××ר×ת ×©× ×××¨× ××××× ×××× ×©××××ר. ×תרש×× ×××× ×סר "
"×ש××¢×ת.."
@@ -26768,8 +27099,8 @@ msgstr "ס××ר×ת ×××ת"
#: gnucash/report/standard-reports/price-scatter.scm:337
msgid ""
-"Your selected commodity and the currency of the report are identical. It doesn't "
-"make sense to show prices for identical commodities."
+"Your selected commodity and the currency of the report are identical. It "
+"doesn't make sense to show prices for identical commodities."
msgstr "×ס×××¨× ×××××¢ ×××× ×©× ×××¨× ××××. ×× ××××× × ××צ×× ×××ר×× ×ס××ר×ת ×××ת."
#: gnucash/report/standard-reports/price-scatter.scm:349
@@ -26778,19 +27109,20 @@ msgstr "תרש×× ×¤×××ר ×××ר"
#: gnucash/report/standard-reports/reconcile-report.scm:58
msgid ""
-"The reconcile report is designed to be similar to the formal reconciliation tool. "
-"Please select the account from Report Options. Please note the dates specified in "
-"the options will apply to the Reconciliation Date."
+"The reconcile report is designed to be similar to the formal reconciliation "
+"tool. Please select the account from Report Options. Please note the dates "
+"specified in the options will apply to the Reconciliation Date."
msgstr ""
-"××× ××ת××× ×¢××¦× ×× ×©×××× ×××× ×ת××× ×¨×©××. × × ××××ר ×ת ××ש××× ×ת×× ×פשר×××ת ×××. × × "
-"×ש×× ×× ×©×ת×ר×××× ×©×××××¨× ××פשר×××ת, ××××× ×¢× ×ª×ר×× ××ת×××."
+"××× ××ת××× ×¢××¦× ×× ×©×××× ×××× ×ת××× ×¨×©××. × × ××××ר ×ת ××ש××× ×ת×× ×פשר×××ת "
+"×××. × × ×ש×× ×× ×©×ת×ר×××× ×©×××××¨× ××פשר×××ת, ××××× ×¢× ×ª×ר×× ××ת×××."
#: gnucash/report/standard-reports/reconcile-report.scm:102
msgid "Reconciliation Report"
msgstr "××× ×ת×××"
#: gnucash/report/standard-reports/register.scm:147
-#: gnucash/report/standard-reports/register.scm:416 libgnucash/engine/gnc-lot.c:763
+#: gnucash/report/standard-reports/register.scm:416
+#: libgnucash/engine/gnc-lot.c:763
msgid "Lot"
msgstr "××××§×"
@@ -26851,7 +27183,7 @@ msgid "Future Scheduled Transactions Summary"
msgstr "ת×צ×ת ×ª× ××¢×ת ××××ר××ת עת××××ת"
#: gnucash/report/standard-reports/trial-balance.scm:60
-#: gnucash/report/standard-reports/trial-balance.scm:706
+#: gnucash/report/standard-reports/trial-balance.scm:698
msgid "Trial Balance"
msgstr "×××× ××××"
@@ -26884,8 +27216,8 @@ msgid ""
"Do not net, but show gross debit/credit adjustments to these accounts. "
"Merchandising businesses will normally select their inventory accounts here."
msgstr ""
-"×× ××צ×× ×¡××××× × ××, ××× ××צ×× ×ª× ××¢×ת ת××§×× ××××/××××× ×ר××× ××ש××× ×ת ×××. עסק×× "
-"×ס×ר××× ×××¨× ××× ××××¨× ×ת ×ש××× ×ת ××××× ×××."
+"×× ××צ×× ×¡××××× × ××, ××× ××צ×× ×ª× ××¢×ת ת××§×× ××××/××××× ×ר××× ××ש××× ×ת ×××. "
+"עסק×× ×ס×ר××× ×××¨× ××× ××××¨× ×ת ×ש××× ×ת ××××× ×××."
#: gnucash/report/standard-reports/trial-balance.scm:87
msgid "Income summary accounts"
@@ -26894,11 +27226,11 @@ msgstr "ת×צ×ת ×ש××× ×ת ××× ×¡×"
#: gnucash/report/standard-reports/trial-balance.scm:89
msgid ""
"Adjustments made to these accounts are gross adjusted (see above) in the "
-"Adjustments, Adjusted Trial Balance, and Income Statement columns. Mostly useful "
-"for merchandising businesses."
+"Adjustments, Adjusted Trial Balance, and Income Statement columns. Mostly "
+"useful for merchandising businesses."
msgstr ""
-"ת××××× ×©×××¦×¢× ××ש××× ×ת ××× ×× ×ª×××× ×ר××× (ר×× ××¢××) ××¢××××ת ×ת×××××, ×××× ×××× "
-"×ת××× ×××× ×¨××× ×× ×פס×. ×ש×ש ××¢×קר ×¢××ר עסק×× ××ש×××§×× ×××××."
+"ת××××× ×©×××¦×¢× ××ש××× ×ת ××× ×× ×ª×××× ×ר××× (ר×× ××¢××) ××¢××××ת ×ת×××××, ×××× "
+"×××× ×ת××× ×××× ×¨××× ×× ×פס×. ×ש×ש ××¢×קר ×¢××ר עסק×× ××ש×××§×× ×××××."
#: gnucash/report/standard-reports/trial-balance.scm:92
msgid "Adjusting Entries pattern"
@@ -26921,42 +27253,43 @@ msgid "Adjusting Entries Pattern is regular expression"
msgstr "×פ×ס רש×××ת ת××× ×××××× ×¨×××"
#: gnucash/report/standard-reports/trial-balance.scm:102
-msgid "Causes the Adjusting Entries Pattern to be treated as a regular expression."
+msgid ""
+"Causes the Adjusting Entries Pattern to be treated as a regular expression."
msgstr "×××¨× ×ת×× ×ת רש×××ת ת××× ××××ת ×××פ××ת ×××××× ×¨×××."
-#: gnucash/report/standard-reports/trial-balance.scm:207
+#: gnucash/report/standard-reports/trial-balance.scm:206
msgid "Current Trial Balance"
msgstr "×××× ×××× × ××××"
-#: gnucash/report/standard-reports/trial-balance.scm:208
+#: gnucash/report/standard-reports/trial-balance.scm:207
msgid "Uses the exact balances in the general journal"
msgstr "ש×××ש ××תר×ת ××××××§×ת ××××× ×××××"
-#: gnucash/report/standard-reports/trial-balance.scm:210
+#: gnucash/report/standard-reports/trial-balance.scm:209
msgid "Pre-adjustment Trial Balance"
msgstr "×××× ×××× ××¤× × ×ª×××××"
-#: gnucash/report/standard-reports/trial-balance.scm:211
+#: gnucash/report/standard-reports/trial-balance.scm:210
msgid "Ignores Adjusting/Closing entries"
msgstr "×תע×××ת ××ª× ××¢×ת ת×××/ס××ר×"
-#: gnucash/report/standard-reports/trial-balance.scm:213
+#: gnucash/report/standard-reports/trial-balance.scm:212
msgid "Work Sheet"
msgstr "×××××× ×¨××××"
-#: gnucash/report/standard-reports/trial-balance.scm:214
+#: gnucash/report/standard-reports/trial-balance.scm:213
msgid "Creates a complete end-of-period work sheet"
msgstr "×צ×רת ×××××× ×¢×××× ×¡××£ תק××¤× ×××"
-#: gnucash/report/standard-reports/trial-balance.scm:707
+#: gnucash/report/standard-reports/trial-balance.scm:699
msgid "Adjustments"
msgstr "×ת×××ת"
-#: gnucash/report/standard-reports/trial-balance.scm:708
+#: gnucash/report/standard-reports/trial-balance.scm:700
msgid "Adjusted Trial Balance"
msgstr "×××× ×××× ×ת×××"
-#: gnucash/report/standard-reports/trial-balance.scm:1148
+#: gnucash/report/standard-reports/trial-balance.scm:1140
msgid "Net Loss"
msgstr "××¤×¡× × ××"
@@ -27614,7 +27947,8 @@ msgid "Show comments at bottom"
msgstr "×צ×ת ×ער×ת ×ת×ת×ת"
#: gnucash/report/stylesheets/stylesheet-head-or-tail.scm:128
-msgid "Per default the additional comments text will be shown before the report data."
+msgid ""
+"Per default the additional comments text will be shown before the report data."
msgstr "××ר×רת ×××× ××× ×ער×ת × ×ספ×ת ×××¦× ××¤× × × ×ª×× × ××××."
#: gnucash/report/stylesheets/stylesheet-head-or-tail.scm:133
@@ -27839,14 +28173,15 @@ msgid "Crash the report"
msgstr "ר×ס××§ ××××"
#: gnucash/report/utility-reports/hello-world.scm:219
-msgid "This is for testing. Your reports probably shouldn't have an option like this."
+msgid ""
+"This is for testing. Your reports probably shouldn't have an option like this."
msgstr "× ××¢× ×××××§×ת. ס××ר ××× ×× ×©×× ×× ×× ×××××ת. ×× ×××ר×× ××××× ×פשר×ת ××."
#: gnucash/report/utility-reports/hello-world.scm:341
msgid ""
"This is a sample GnuCash report. See the guile (scheme) source code in the scm/"
-"report directory for details on writing your own reports, or extending existing "
-"reports."
+"report directory for details on writing your own reports, or extending "
+"existing reports."
msgstr ""
"××× ××× ×× ××§×ש ××××××. × × ××¢××× ××§×× ×××§×ר ×©× ×××× (תרש××) ×ספר××ת scm/rapport "
"××§××ת פר××× ×¢× ×ת××ת ××××ת ××××¤× ×¢×¦××× ×× ×ר××ת ××××ת ×§×××××."
@@ -27854,20 +28189,23 @@ msgstr ""
#: gnucash/report/utility-reports/hello-world.scm:347
#, scheme-format
msgid ""
-"For help on writing reports, or to contribute your brand new, totally cool report, "
-"consult the mailing list ~a."
+"For help on writing reports, or to contribute your brand new, totally cool "
+"report, consult the mailing list ~a."
msgstr ""
-"××¢××¨× ××××ת ×ת××ת ××××ת, ×× ×ש×ת××£ ×××× ×××ש ×××××××§ ש×צרת×, × ××ª× ××××××¢×¥ ×רש××ת "
-"×××××ר ~a."
+"××¢××¨× ××××ת ×ת××ת ××××ת, ×× ×ש×ת××£ ×××× ×××ש ×××××××§ ש×צרת×, × ××ª× ××××××¢×¥ "
+"×רש××ת ×××××ר ~a."
#: gnucash/report/utility-reports/hello-world.scm:352
-msgid "For details on subscribing to that list, see <https://www.gnucash.org/>."
+msgid ""
+"For details on subscribing to that list, see <https://www.gnucash.org/>."
msgstr "×פר××× ×××ר ×רש×× ×רש××× ××, ר×× <https://www.gnucash.org/>."
#: gnucash/report/utility-reports/hello-world.scm:353
msgid ""
-"You can learn more about writing scheme at <https://www.scheme.com/tspl2d/>."
-msgstr "× ××ª× ×××××× ×¢×× ××××ת ×ת××ת תרש×× × <https://www.scheme.com/tspl2d/>."
+"You can learn more about writing scheme at <https://www.scheme.com/tspl2d/"
+">."
+msgstr ""
+"× ××ª× ×××××× ×¢×× ××××ת ×ת××ת תרש×× × <https://www.scheme.com/tspl2d/>."
#: gnucash/report/utility-reports/hello-world.scm:357
#, scheme-format
@@ -28053,14 +28391,14 @@ msgstr "×ספר ××§××"
#: libgnucash/app-utils/business-prefs.scm:33
msgid ""
-"The format string to use for generating customer numbers. This is a printf-style "
-"format string."
+"The format string to use for generating customer numbers. This is a printf-"
+"style format string."
msgstr "ת×× ×ת ×××ר××ת שתש×ש ××צ×רת ××¡×¤×¨× ××§××. ×××× ×ª×× ×ת ××ר××ת ×ס×× ×× printf."
#: libgnucash/app-utils/business-prefs.scm:34
msgid ""
-"The previous customer number generated. This number will be incremented to generate "
-"the next customer number."
+"The previous customer number generated. This number will be incremented to "
+"generate the next customer number."
msgstr "×ספר ×××§×× ××§××× ×©× ×צר. ×ספר ×× ×××× × 1 ×××××× ×ספר ×××§×× ×××."
#: libgnucash/app-utils/business-prefs.scm:35
@@ -28073,14 +28411,14 @@ msgstr "×ספר ×¢×××"
#: libgnucash/app-utils/business-prefs.scm:37
msgid ""
-"The format string to use for generating employee numbers. This is a printf-style "
-"format string."
+"The format string to use for generating employee numbers. This is a printf-"
+"style format string."
msgstr "ת×× ×ת ×××ר××ת שתש×ש ××צ×רת ××¡×¤×¨× ×¢×××. ×××× ×ª×× ×ת ××ר××ת ×ס×× ×× printf."
#: libgnucash/app-utils/business-prefs.scm:38
msgid ""
-"The previous employee number generated. This number will be incremented to generate "
-"the next employee number."
+"The previous employee number generated. This number will be incremented to "
+"generate the next employee number."
msgstr "×ספר ××¢××× ××§××× ×©× ×צר. ×ספר ×× ×××× × 1 ×××××× ×ספר ××¢××× ×××."
#: libgnucash/app-utils/business-prefs.scm:39
@@ -28089,14 +28427,15 @@ msgstr "ת×× ×ת ×ספר ×ש××× ×ת"
#: libgnucash/app-utils/business-prefs.scm:41
msgid ""
-"The format string to use for generating invoice numbers. This is a printf-style "
-"format string."
-msgstr "ת×× ×ת ×××ר××ת שתש×ש ××צ×רת ××¡×¤×¨× ×ש××× ××ת. ×××× ×ª×× ×ת ××ר××ת ×ס×× ×× printf."
+"The format string to use for generating invoice numbers. This is a printf-"
+"style format string."
+msgstr ""
+"ת×× ×ת ×××ר××ת שתש×ש ××צ×רת ××¡×¤×¨× ×ש××× ××ת. ×××× ×ª×× ×ת ××ר××ת ×ס×× ×× printf."
#: libgnucash/app-utils/business-prefs.scm:42
msgid ""
-"The previous invoice number generated. This number will be incremented to generate "
-"the next invoice number."
+"The previous invoice number generated. This number will be incremented to "
+"generate the next invoice number."
msgstr "×ספר ××ש××× ×ת ××§×××ת ×©× ×צר×. ×ספר ×× ×××× × 1 ×××××× ×ספר ××ש××× ×ת ××××."
#: libgnucash/app-utils/business-prefs.scm:43
@@ -28109,14 +28448,14 @@ msgstr "×ספר ××××"
#: libgnucash/app-utils/business-prefs.scm:45
msgid ""
-"The format string to use for generating bill numbers. This is a printf-style format "
-"string."
+"The format string to use for generating bill numbers. This is a printf-style "
+"format string."
msgstr "ת×× ×ת ×××ר××ת שתש×ש ××צ×רת ××¡×¤×¨× ××××. ×××× ×ª×× ×ת ××ר××ת ×ס×× ×× printf."
#: libgnucash/app-utils/business-prefs.scm:46
msgid ""
-"The previous bill number generated. This number will be incremented to generate the "
-"next bill number."
+"The previous bill number generated. This number will be incremented to "
+"generate the next bill number."
msgstr "×ספר ××××× ××§××× ×©× ×צר. ×ספר ×× ×××× × 1 ×××××× ×ספר ××××× ×××."
#: libgnucash/app-utils/business-prefs.scm:47
@@ -28129,16 +28468,17 @@ msgstr "×ספר ש××ר ××צ××"
#: libgnucash/app-utils/business-prefs.scm:49
msgid ""
-"The format string to use for generating expense voucher numbers. This is a printf-"
-"style format string."
+"The format string to use for generating expense voucher numbers. This is a "
+"printf-style format string."
msgstr ""
"ת×× ×ת ×××ר××ת שתש×ש ××צ×רת ××¡×¤×¨× ×©×××¨× ××צ××. ×××× ×ª×× ×ת ××ר××ת ×ס×× ×× printf."
#: libgnucash/app-utils/business-prefs.scm:50
msgid ""
-"The previous expense voucher number generated. This number will be incremented to "
-"generate the next voucher number."
-msgstr "×ספר ש××ר ×××צ×× ××§××× ×©× ×צר. ×ספר ×× ×××× × 1 ×××××× ×ספר ש××ר ×××צ×× ×××."
+"The previous expense voucher number generated. This number will be incremented "
+"to generate the next voucher number."
+msgstr ""
+"×ספר ש××ר ×××צ×× ××§××× ×©× ×צר. ×ספר ×× ×××× × 1 ×××××× ×ספר ש××ר ×××צ×× ×××."
#: libgnucash/app-utils/business-prefs.scm:51
msgid "Job number format"
@@ -28150,14 +28490,14 @@ msgstr "×ספר ר××××"
#: libgnucash/app-utils/business-prefs.scm:53
msgid ""
-"The format string to use for generating job numbers. This is a printf-style format "
-"string."
+"The format string to use for generating job numbers. This is a printf-style "
+"format string."
msgstr "ת×× ×ת ×××ר××ת שתש×ש ××צ×רת ××¡×¤×¨× ×¨××××. ×××× ×ª×× ×ת ××ר××ת ×ס×× ×× printf."
#: libgnucash/app-utils/business-prefs.scm:54
msgid ""
-"The previous job number generated. This number will be incremented to generate the "
-"next job number."
+"The previous job number generated. This number will be incremented to generate "
+"the next job number."
msgstr "×ספר ×ר×××× ××§××× ×©× ×צר. ×ספר ×× ×××× × 1 ×××××× ×ספר ×ר×××× ×××."
#: libgnucash/app-utils/business-prefs.scm:55
@@ -28176,8 +28516,8 @@ msgstr "ת×× ×ת ×××ר××ת שתש×ש ××צ×רת ××¡×¤×¨× ×××× ×.
#: libgnucash/app-utils/business-prefs.scm:58
msgid ""
-"The previous order number generated. This number will be incremented to generate "
-"the next order number."
+"The previous order number generated. This number will be incremented to "
+"generate the next order number."
msgstr "×ספר ××××× × ××§×××ת ×©× ×צר×. ×ספר ×× ×××× × 1 ×××××× ×ספר ××××× × ××××."
#: libgnucash/app-utils/business-prefs.scm:59
@@ -28196,8 +28536,8 @@ msgstr "ת×× ×ת ×××ר××ת שתש×ש ××צ×רת ××¡×¤×¨× ×¡×¤×§. ×
#: libgnucash/app-utils/business-prefs.scm:62
msgid ""
-"The previous vendor number generated. This number will be incremented to generate "
-"the next vendor number."
+"The previous vendor number generated. This number will be incremented to "
+"generate the next vendor number."
msgstr "×ספר ×ספק ××§××× ×©× ×צר. ×ספר ×× ×××× × 1 ×××××× ×ספר ×ספק ×××."
#: libgnucash/app-utils/business-prefs.scm:72
@@ -28254,29 +28594,33 @@ msgstr "ת×× ×ת ת×ר×× ×ר×רת ××××× ××ש×שת ×××פסת ת
#: libgnucash/app-utils/business-prefs.scm:133
msgid ""
-"Choose the number of days after which transactions will be read-only and cannot be "
-"edited anymore. This threshold is marked by a red line in the account register "
-"windows. If zero, all transactions can be edited and none are read-only."
+"Choose the number of days after which transactions will be read-only and "
+"cannot be edited anymore. This threshold is marked by a red line in the "
+"account register windows. If zero, all transactions can be edited and none are "
+"read-only."
msgstr ""
-"×××רת ×ספר ××××× ×©××× ××ª× ××¢×ת ×××× ×קר××× ×××× ××× ×פשר×ת ער××ת×. ×סף ×ס××× ××§× "
-"×××× ××××× ×××××. ×× ×××× ×פס, ×× ××ª× ××¢×ת × ××ª× ×ת ×ער××× ××× ××× × ×קר××× ××××."
+"×××רת ×ספר ××××× ×©××× ××ª× ××¢×ת ×××× ×קר××× ×××× ××× ×פשר×ת ער××ת×. ×סף ×ס××× "
+"××§× ×××× ××××× ×××××. ×× ×××× ×פס, ×× ××ª× ××¢×ת × ××ª× ×ת ×ער××× ××× ××× × ×קר××× "
+"××××."
#: libgnucash/app-utils/business-prefs.scm:144
msgid ""
"Check to have split action field used in registers for 'Num' field in place of "
-"transaction number; transaction number shown as 'T-Num' on second line of register. "
-"Has corresponding effect on business features, reporting and imports/exports."
+"transaction number; transaction number shown as 'T-Num' on second line of "
+"register. Has corresponding effect on business features, reporting and imports/"
+"exports."
msgstr ""
-"ס×××× ×ª××ת ס×××× ×× ×¢× ×× ×ª שש×× ×¤×¢××× ×פ×צ×× ×ש×ש ×ש×× 'ס××××××' ××××× ×××§×× ×ספר "
-"×ª× ××¢×; ×ספר ××ª× ××¢× ×××¦× ×ש××¨× ××©× ×× ×©× ×רש××× × 'ס××××××- ×ª× ××¢×' . ×שפע×ת ר×××××ת "
-"×¢× ×ª××× ×ת עסק××ת, ××××××× ×××××/×צ××."
+"ס×××× ×ª××ת ס×××× ×× ×¢× ×× ×ª שש×× ×¤×¢××× ×פ×צ×× ×ש×ש ×ש×× 'ס××××××' ××××× ×××§×× "
+"×ספר ×ª× ××¢×; ×ספר ××ª× ××¢× ×××¦× ×ש××¨× ××©× ×× ×©× ×רש××× × 'ס××××××- ×ª× ××¢×'. ×שפע×ת "
+"ר×××××ת ×¢× ×ª××× ×ת עסק××ת, ××××××× ×××××/×צ××."
#: libgnucash/app-utils/business-prefs.scm:150
msgid ""
"Check to have trading accounts used for transactions involving more than one "
"currency or commodity."
msgstr ""
-"ס×××× ×ª××ת ס×××× ×× ×ש×××ש ××ש××× ×ת ס×ר ××ª× ××¢×ת ××¢××ת ××תר ×××××¢ ×× ×¡×××¨× ××××××."
+"ס×××× ×ª××ת ס×××× ×× ×ש×××ש ××ש××× ×ת ס×ר ××ª× ××¢×ת ××¢××ת ××תר ×××××¢ ×× ×¡×××¨× "
+"××××××."
#: libgnucash/app-utils/business-prefs.scm:158
msgid "Budget to be used when none has been otherwise specified."
@@ -28285,11 +28629,11 @@ msgstr "תקצ×× ×ש×××ש ××שר ×× ××××ר ××רת."
#: libgnucash/app-utils/date-utilities.scm:450
#, scheme-format
msgid ""
-"Tried to look up an undefined date symbol '~a'. This report was probably saved by a "
-"later version of GnuCash. Defaulting to today."
+"Tried to look up an undefined date symbol '~a'. This report was probably saved "
+"by a later version of GnuCash. Defaulting to today."
msgstr ""
-"× ×¢×©× × ×ס××× ××פש ס×× ×ª×ר×× '~a' ×× ××××ר. ××× ×× × ×©×ר ×××× ×× ×¨×× ×××¨×¡× ××××רת ××תר "
-"×©× ×× ××§×ש. ×××¨× ××ר×רת ×××× ×××××."
+"× ×¢×©× × ×ס××× ××פש ס×× ×ª×ר×× '~a' ×× ××××ר. ××× ×× × ×©×ר ×××× ×× ×¨×× ×××¨×¡× ××××רת "
+"××תר ×©× ×× ××§×ש. ×××¨× ××ר×רת ×××× ×××××."
#: libgnucash/app-utils/date-utilities.scm:836
msgid "First day of the current calendar year."
@@ -28622,36 +28966,36 @@ msgid "(Tax-related subaccounts: %d)"
msgstr "(×ש××× ×ת ××©× × ×× ×××¢×× ×××ס××: %d)"
# ×=×× ××ת××
-#. Translators: For the following strings, the single letters
-#. after the colon are abbreviations of the word before the
-#. colon. You should only translate the letter *after* the colon.
-#: libgnucash/app-utils/gnc-ui-util.c:920
-msgid "not cleared:n"
-msgstr "not cleared:×"
+#: libgnucash/app-utils/gnc-ui-util.c:903
+msgctxt "Reconciled flag 'not cleared'"
+msgid "n"
+msgstr "×"
-# ס=ס××ר××
-#. Translators: Please only translate the letter *after* the colon.
-#: libgnucash/app-utils/gnc-ui-util.c:923
-msgid "cleared:c"
-msgstr "cleared:×"
+# ×=××ת××
+#: libgnucash/app-utils/gnc-ui-util.c:905
+msgctxt "Reconciled flag 'cleared'"
+msgid "c"
+msgstr "×"
-#. Translators: Please only translate the letter *after* the colon.
-#: libgnucash/app-utils/gnc-ui-util.c:926
-msgid "reconciled:y"
-msgstr "reconciled:×"
+# ×=××ת××
+#: libgnucash/app-utils/gnc-ui-util.c:907
+msgctxt "Reconciled flag 'reconciled'"
+msgid "y"
+msgstr "×"
# ×§=××קפ×
-#. Translators: Please only translate the letter *after* the colon.
-#: libgnucash/app-utils/gnc-ui-util.c:929
-msgid "frozen:f"
-msgstr "frozen:×§"
-
-#. Translators: Please only translate the letter *after* the colon.
-#: libgnucash/app-utils/gnc-ui-util.c:932
-msgid "void:v"
+#: libgnucash/app-utils/gnc-ui-util.c:909
+msgctxt "Reconciled flag 'frozen'"
+msgid "f"
+msgstr "×§"
+
+# ×=×××××
+#: libgnucash/app-utils/gnc-ui-util.c:911
+msgctxt "Reconciled flag 'void'"
+msgid "v"
msgstr "×"
-#: libgnucash/app-utils/gnc-ui-util.c:973
+#: libgnucash/app-utils/gnc-ui-util.c:952
msgid "Opening Balances"
msgstr "×תרת פת×××"
@@ -28661,11 +29005,11 @@ msgstr "×תרת פת×××"
#: libgnucash/app-utils/options.scm:26
#, scheme-format
msgid ""
-"This report was saved using a later version of GnuCash. One of the newer ~a options "
-"'~a' is not available, fallback to the option '~a'."
+"This report was saved using a later version of GnuCash. One of the newer ~a "
+"options '~a' is not available, fallback to the option '~a'."
msgstr ""
-"××× ×× × ×©×ר ×××¨×¡× ××××רת ××תר ×©× ×× ××§×ש. ××ת ××פשר×××ת ~a ×××ש×ת '~a' ××× × ×××× ×, "
-"×××¨× ××פשר×ת '~a'."
+"××× ×× × ×©×ר ×××¨×¡× ××××רת ××תר ×©× ×× ××§×ש. ××ת ××פשר×××ת ~a ×××ש×ת '~a' ××× × "
+"×××× ×, ×××¨× ××פשר×ת '~a'."
#: libgnucash/app-utils/option-util.c:1697
#, c-format
@@ -28706,11 +29050,11 @@ msgstr "×××§×× ××ש:"
#. Translators {1} will be replaced with the package name (typically Gnucash) at runtime
#: libgnucash/core-utils/gnc-filepath-utils.cpp:687
msgid ""
-"If you no longer intend to run {1} 2.6.x or older on this system you can safely "
-"remove the old directory."
+"If you no longer intend to run {1} 2.6.x or older on this system you can "
+"safely remove the old directory."
msgstr ""
-"××××× ×××× ××××× ×ª×× ×××ש×× ×××שת×ש ××ער×ת ×× × {1} â2.6.xââ ×× ××©× ××תר, × ××ª× ××ס×ר "
-"×××××× ×ת ×ספר××× ×××©× ×."
+"××××× ×××× ××××× ×ª×× ×××ש×× ×××שת×ש ××ער×ת ×× × {1} â2.6.xââ ×× ××©× ××תר, × ××ª× "
+"××ס×ר ××××× ×ת ×ספר××× ×××©× ×."
#: libgnucash/core-utils/gnc-filepath-utils.cpp:694
msgid "In addition:"
@@ -28743,15 +29087,16 @@ msgstr[1] "×× × ××ª× ×××¢××ר ×ת ××§×צ×× ××××× × {1}:"
msgid ""
"The separator character \"%s\" is used in one or more account names.\n"
"\n"
-"This will result in unexpected behaviour. Either change the account names or choose "
-"another separator character.\n"
+"This will result in unexpected behaviour. Either change the account names or "
+"choose another separator character.\n"
"\n"
"Below you will find the list of invalid account names:\n"
"%s"
msgstr ""
"××ª× ××פר×× \"%s\" ×ש×ש ××©× ×ש××× ××× ×× ××תר.\n"
"\n"
-"××¦× ×× ×××× ×××ª× ×××ת ×× ×¦×¤×××. × × ××©× ×ת ×ת ש××ת ××ש××× ×ת ×× ××××ר ××ª× ×פר×× ××ר.\n"
+"××¦× ×× ×××× ×××ª× ×××ת ×× ×¦×¤×××. × × ××©× ×ת ×ת ש××ת ××ש××× ×ת ×× ××××ר ××ª× ×פר×× "
+"××ר.\n"
"\n"
"×××× ×¨×©××ת ש××ת ××ש××× ×ת ×××¢×ת××:\n"
"%s"
@@ -28845,11 +29190,11 @@ msgstr "× ×¨×× ×©××¢×¨× ×××× ×©× × ××¢×× ×©×ת×× ×ת ×©× ××ר×
#: libgnucash/engine/gnc-features.c:116
msgid ""
-"This Dataset contains features not supported by this version of GnuCash. You must "
-"use a newer version of GnuCash in order to support the following features:"
+"This Dataset contains features not supported by this version of GnuCash. You "
+"must use a newer version of GnuCash in order to support the following features:"
msgstr ""
-"ער×ת × ×ª×× ×× ×× ××××× ×ª××× ×ת ש××× × × ×ª×××ת ×××¨×¡× ×× ×©× ×× ××§×ש. ×ש ××שת×ש ×××¨×¡× ×××©× "
-"××תר ×©× ×× ××§×ש ×ת×××× ×ת××× ×ת ××××ת:"
+"ער×ת × ×ª×× ×× ×× ××××× ×ª××× ×ת ש××× × × ×ª×××ת ×××¨×¡× ×× ×©× ×× ××§×ש. ×ש ××שת×ש ×××¨×¡× "
+"×××©× ××תר ×©× ×× ××§×ש ×ת×××× ×ת××× ×ת ××××ת:"
#. Set memo.
#: libgnucash/engine/gncInvoice.c:1665
@@ -29009,8 +29354,10 @@ msgstr "××פ×ש ××סר ××××× ××ש××× %s: %u × %u"
#. Translators: This string has a disambiguation prefix
#: libgnucash/engine/Split.c:1613
-msgid "Displayed account code of the other account in a multi-split transaction|Split"
-msgstr "×צ×ת ×§×× ××ש××× ×× ××× ××ª× ××¢×ת ×¢× ×¨×××× ×¤×צ××××|פ×צ××"
+msgctxt ""
+"Displayed account code of the other account in a multi-split transaction"
+msgid "Split"
+msgstr "פ×צ××"
#: libgnucash/engine/Transaction.c:2694
msgid "Voided transaction"
@@ -29027,7 +29374,7 @@ msgstr "×× ×¡××× × ×¡××ר×ת ×××××ר ×××ר××."
#: libgnucash/scm/price-quotes.scm:443 libgnucash/scm/price-quotes.scm:460
msgid "Unable to get quotes or diagnose the problem."
-msgstr "×× × ××ª× ××××ר ×××ר×× ×× ××××× ×ת ×××¢××."
+msgstr "×× × ××ª× ××××ר צ××××× ×××ר×× ×× ××××× ×ת ×××¢××."
#: libgnucash/scm/price-quotes.scm:447
msgid ""
@@ -29047,11 +29394,11 @@ msgstr "×××¨×¢× ×©×××ת ×× ××××¢× ××××× ××××ר ×שער××
#: libgnucash/scm/price-quotes.scm:479 libgnucash/scm/price-quotes.scm:490
msgid "Unable to retrieve quotes for these items:"
-msgstr "×× × ××ª× ××××ר ×××ר×× ×פר×××× ×××:"
+msgstr "×× × ××ª× ××××ר צ××××× ×××ר×× ×פר×××× ×××:"
#: libgnucash/scm/price-quotes.scm:483
msgid "Continue using only the good quotes?"
-msgstr "×××ש×× ××שת×ש רק ××××ר×× ××××××?"
+msgstr "×××ש×× ××שת×ש רק ×צ×××××× ××××××?"
#: libgnucash/scm/price-quotes.scm:505
msgid "Unable to create prices for these items:"
@@ -29059,13 +29406,13 @@ msgstr "×× × ××ª× ××צ×ר ×××ר×× ×פר×××× ×××:"
#: libgnucash/scm/price-quotes.scm:509
msgid "Add remaining good quotes?"
-msgstr "××ספת צ××××× ×××ר × ×ª×¨×× ××××××?"
+msgstr "××ספת צ××××× ×××ר × ×תר×× ××××××?"
#. Translators: ~A is the version string
#: libgnucash/scm/price-quotes.scm:527
#, scheme-format
msgid "Found Finance::Quote version ~A."
-msgstr "×רסת Found Finance::Quoteâ ~A."
+msgstr "× ×צ×× ×רסת Finance::Quoteâ~A."
#: libgnucash/tax/us/de_DE.scm:53
msgid "Tax Number"
@@ -29073,8 +29420,102 @@ msgstr "×ספר ×¢×סק"
#: libgnucash/tax/us/txf-de_DE.scm:324
msgid "The electronic tax number of your business"
-msgstr "×ספר ××ס ××××§×ר×× × ×©× ××ת ×עסק"
+msgstr "×ספר ×¢×סק ×××§×ר×× × ×©× ××ת ×עסק"
#: libgnucash/tax/us/txf.scm:96
msgid "No help available."
msgstr "××× ×¢××¨× ××× ××."
+
+#~ msgid "Action Column|Split"
+#~ msgstr "×¢×××ת פע×××|פ×צ××"
+
+#~ msgid "Reconciled:R"
+#~ msgstr "Reconciled:×"
+
+#~ msgid ""
+#~ "Item represents an unknown object type (in the sense of bill, customer, "
+#~ "invoice, transaction, split,...)|New item"
+#~ msgstr "פר×× ××ש"
+
+# ש=ש××ר ××§××
+#~ msgid "Column letter for 'Placeholder'|P"
+#~ msgstr "ש"
+
+#~ msgid "Action Column|Deposit"
+#~ msgstr "×פק××"
+
+# ×= ×©×¢×¨× ×××פ××
+#~ msgid "Column letter for 'Get Quotes'|Q"
+#~ msgstr "×"
+
+# פ=פע××
+#~ msgid "Column letter for 'Active'|A"
+#~ msgstr "פ"
+
+# ×=××פשר
+#~ msgid "Single-character short column-title form of 'Enabled'|E"
+#~ msgstr "×"
+
+#~ msgid "sample:X"
+#~ msgstr "sample:X"
+
+#~ msgid "sample:Action"
+#~ msgstr "sample:פע×××"
+
+#~ msgid "sample(DT):+%"
+#~ msgstr "×××××(DT):+%"
+
+#~ msgid "sample(DH):+%"
+#~ msgstr "×××××(DH):+%"
+
+#~ msgid "sample:T?"
+#~ msgstr "sample:T?"
+
+#~ msgid "sample:TI"
+#~ msgstr "sample:TI"
+
+#~ msgid "sample:Tax Table 1"
+#~ msgstr "sample:×××ת ×ס 1"
+
+#~ msgid "sample:BI"
+#~ msgstr "sample:BI"
+
+#~ msgid "sample:Payment"
+#~ msgstr "sample:תש×××"
+
+#~ msgid "sample:99999"
+#~ msgstr "sample:99999"
+
+# צ=צר×פ×
+#~ msgid "Associate:A"
+#~ msgstr "Associate:צ"
+
+# ס=ס××
+#~ msgid "Type:T"
+#~ msgstr "Type:ס"
+
+#~ msgid "Tax Payable"
+#~ msgstr "×ס ×××××"
+
+# ×=×× ××ת××
+#~ msgid "not cleared:n"
+#~ msgstr "not cleared:×"
+
+# ס=ס××ר××
+#~ msgid "cleared:c"
+#~ msgstr "cleared:×"
+
+#~ msgid "reconciled:y"
+#~ msgstr "reconciled:×"
+
+# ×§=××קפ×
+#~ msgid "frozen:f"
+#~ msgstr "frozen:×§"
+
+#~ msgid "void:v"
+#~ msgstr "×"
+
+#~ msgid ""
+#~ "Displayed account code of the other account in a multi-split transaction|"
+#~ "Split"
+#~ msgstr "×צ×ת ×§×× ××ש××× ×× ××× ××ª× ××¢×ת ×¢× ×¨×××× ×¤×צ××××|פ×צ××"
commit b1d0dd7d588876b95174fcabace52a7a14d33cd7
Author: Christian Stimming <christian at cstimming.de>
Date: Sun Sep 8 22:14:02 2019 +0200
[i18n] Update German translation
In particular, the single-character translations changed by
984d583e are now fixed again.
5301 translated, 38 fuzzy, 19 untranslated.
diff --git a/po/de.po b/po/de.po
index bfa56f62d..b41d4a4e9 100644
--- a/po/de.po
+++ b/po/de.po
@@ -25,7 +25,7 @@ msgstr ""
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
"POT-Creation-Date: 2019-09-08 21:56+0200\n"
-"PO-Revision-Date: 2019-09-03 10:42+0200\n"
+"PO-Revision-Date: 2019-09-08 22:12+0200\n"
"Last-Translator: Christian Stimming <christian at cstimming.de>\n"
"Language-Team: GnuCash-de <gnucash-de at gnucash.org>\n"
"Language: de\n"
@@ -1068,10 +1068,9 @@ msgstr "Treuhandzahlung"
#: gnucash/gnome/assistant-stock-split.c:382
#: gnucash/gnome-utils/gnc-tree-model-split-reg.c:2956
#: gnucash/register/ledger-core/split-register.c:2679
-#, fuzzy
msgctxt "Action Column"
msgid "Split"
-msgstr "Vollständig"
+msgstr "Aktienteilung"
#: gnucash/gnome/assistant-stock-split.c:408
msgid "Error adding price."
@@ -5675,7 +5674,6 @@ msgid "_Remove"
msgstr "_Entfernen"
#: gnucash/gnome/gnc-split-reg.c:1247
-#, fuzzy
msgid "Existing Association is '"
msgstr "Die bestehende Zuordnung ist '"
@@ -5820,9 +5818,8 @@ msgid "Perform financial calculations, such as a loan repayment"
msgstr "Finanzkalkulationen ausführen wie Kredit-Rückzahlung"
#: gnucash/gnome/gnucash.appdata.xml.in.in:33
-#, fuzzy
msgid "GnuCash Project"
-msgstr "GnuCash Einstellungen"
+msgstr "GnuCash-Projekt"
#: gnucash/gnome/gnucash.desktop.in.in:7
msgid "Finance Management"
@@ -5836,10 +5833,9 @@ msgstr "gnucash-icon"
#: gnucash/gnome/reconcile-view.c:425
#: gnucash/register/ledger-core/split-register-layout.c:691
#: gnucash/register/ledger-core/split-register-model.c:306
-#, fuzzy
msgctxt "Column header for 'Reconciled'"
msgid "R"
-msgstr "Abgl"
+msgstr "A"
#: gnucash/gnome/search-owner.c:136
msgid "You have not selected an owner"
@@ -6163,12 +6159,11 @@ msgstr "Neuer Buchungsteil"
#. Translators: This string has a disambiguation prefix. Translate only the part behind '|'
#: gnucash/gnome-search/dialog-search.c:1098
-#, fuzzy
msgctxt ""
"Item represents an unknown object type (in the sense of bill, customer, "
"invoice, transaction, split,...)"
msgid "New item"
-msgstr "_Neuer Eintrag..."
+msgstr "Neues Element"
#. Set the 'add criterion' button
#: gnucash/gnome-search/dialog-search.c:1140
@@ -6841,7 +6836,7 @@ msgstr "Kein Konto gewählt"
#: gnucash/gnome-utils/gnc-tree-view-account.c:906
msgctxt "Column header for 'Placeholder'"
msgid "P"
-msgstr ""
+msgstr "P"
# Todo: sind die "\n" erforderlich?
#: gnucash/gnome-utils/dialog-options.c:786
@@ -8441,7 +8436,6 @@ msgstr "Neues Konto der obersten Ebene"
#. must only contain the part after the | character.
#: gnucash/gnome-utils/gnc-tree-model-split-reg.c:2856
#: gnucash/register/ledger-core/split-register.c:2579
-#, fuzzy
msgctxt "Action Column"
msgid "Deposit"
msgstr "Einzahlung"
@@ -8937,7 +8931,7 @@ msgstr "Kurse abrufen"
#: gnucash/gnome-utils/gnc-tree-view-commodity.c:409
msgctxt "Column letter for 'Get Quotes'"
msgid "Q"
-msgstr ""
+msgstr "K"
#: gnucash/gnome-utils/gnc-tree-view-commodity.c:415
#: gnucash/gnome-utils/gnc-tree-view-price.c:414
@@ -9016,10 +9010,9 @@ msgstr "Aktiv"
#. Translators: This string has a context prefix; the translation
#. must only contain the part after the | character.
#: gnucash/gnome-utils/gnc-tree-view-owner.c:481
-#, fuzzy
msgctxt "Column letter for 'Active'"
msgid "A"
-msgstr "Neu"
+msgstr "A"
#: gnucash/gnome-utils/gnc-tree-view-price.c:396
msgid "Security"
@@ -9300,7 +9293,7 @@ msgstr "Aktiv"
#: gnucash/gnome-utils/gnc-tree-view-sx-list.c:143
msgctxt "Single-character short column-title form of 'Enabled'"
msgid "E"
-msgstr ""
+msgstr "A"
#: gnucash/gnome-utils/gnc-tree-view-sx-list.c:154
msgid "Last Occur"
@@ -12111,9 +12104,8 @@ msgid "Select _All"
msgstr "A_lle auswählen"
#: gnucash/gtkbuilder/assistant-csv-export.glade:442
-#, fuzzy
msgid "<b>Dates</b>"
-msgstr "<b>_Datumsbereich</b>"
+msgstr "<b>Datumsbereich</b>"
#: gnucash/gtkbuilder/assistant-csv-export.glade:454
msgid "Sho_w All"
@@ -13435,7 +13427,6 @@ msgstr ""
"gewählte eingeben."
#: gnucash/gtkbuilder/assistant-qif-import.glade:1024
-#, fuzzy
msgid "Enter Information about..."
msgstr "Eingabe der Informationen über..."
@@ -15081,9 +15072,8 @@ msgid "Future value"
msgstr "Zukünftiger Wert"
#: gnucash/gtkbuilder/dialog-fincalc.glade:474
-#, fuzzy
msgid "Precision"
-msgstr "Version"
+msgstr "Genauigkeit"
#: gnucash/gtkbuilder/dialog-fincalc.glade:516
msgid "Calculate"
@@ -18721,26 +18711,22 @@ msgid "<b>Progress</b>"
msgstr "<b>Verlauf</b>"
#: gnucash/import-export/aqb/dialog-ab.glade:107
-#, fuzzy
msgid "Current _Job"
-msgstr "Aktueller Auftrag"
+msgstr "Aktueller _Auftrag"
#: gnucash/import-export/aqb/dialog-ab.glade:149
msgid "Progress"
msgstr "Verlauf"
#: gnucash/import-export/aqb/dialog-ab.glade:163
-#, fuzzy
msgid "Current _Action"
-msgstr "Aktuelle Aktion"
+msgstr "Aktuelle A_ktion"
#: gnucash/import-export/aqb/dialog-ab.glade:212
-#, fuzzy
msgid "<b>_Log Messages</b>"
-msgstr "<b>Protokoll</b>"
+msgstr "<b>Protokol_l</b>"
#: gnucash/import-export/aqb/dialog-ab.glade:254
-#, fuzzy
msgid "Close when _finished"
msgstr "Fenster nach Verbindungsende _schlieÃen"
@@ -18789,7 +18775,6 @@ msgid "Enter your password"
msgstr "Geben Sie Ihr Passwort ein"
#: gnucash/import-export/aqb/dialog-ab.glade:693
-#, fuzzy
msgid "Con_firm Password:"
msgstr "Passwort _wiederholen:"
@@ -18825,12 +18810,10 @@ msgid "Online Transaction"
msgstr "Online-Auftrag Einzelüberweisung"
#: gnucash/import-export/aqb/dialog-ab.glade:901
-#, fuzzy
msgid "Execute _later (unimpl.)"
msgstr "Später _ausführen (unfertig)"
#: gnucash/import-export/aqb/dialog-ab.glade:930
-#, fuzzy
msgid "Execute _Now"
msgstr "_Jetzt ausführen"
@@ -18843,17 +18826,14 @@ msgid "Enter an Online Transaction"
msgstr "Online-Ãberweisung eingeben"
#: gnucash/import-export/aqb/dialog-ab.glade:1001
-#, fuzzy
msgid "Recipient Account _Number"
msgstr "Konto-Nr. des _Empfängers"
#: gnucash/import-export/aqb/dialog-ab.glade:1030
-#, fuzzy
msgid "Recipient _Bank Code"
msgstr "Empfänger _Bankleitzahl"
#: gnucash/import-export/aqb/dialog-ab.glade:1060
-#, fuzzy
msgid "_Recipient Name"
msgstr "Empfänger: _Name, Vorname / Firma"
@@ -18871,7 +18851,6 @@ msgid "_Amount"
msgstr "_Betrag:"
#: gnucash/import-export/aqb/dialog-ab.glade:1118
-#, fuzzy
msgid "Payment _Purpose (only for recipient)"
msgstr "_Verwendungszweck - z.B. Kunden-Referenznummer - (nur für Empfänger)"
@@ -18880,7 +18859,6 @@ msgid "Payment Purpose continued"
msgstr "noch Verwendungszweck (ggf. noch Anschrift des Auftraggebers)"
#: gnucash/import-export/aqb/dialog-ab.glade:1148
-#, fuzzy
msgid "_Originator Name"
msgstr "_Auftraggeber: Name, Vorname"
@@ -18893,7 +18871,6 @@ msgid "Bank Code"
msgstr "Bankleitzahl"
#: gnucash/import-export/aqb/dialog-ab.glade:1385
-#, fuzzy
msgid "_Add current"
msgstr "Aktuelle hin_zufügen"
@@ -18918,7 +18895,6 @@ msgid "Move the selected transaction template one row down"
msgstr "Gewählte Ãberweisungsvorlage eine Zeile nach unten umsortieren"
#: gnucash/import-export/aqb/dialog-ab.glade:1439
-#, fuzzy
msgid "_Sort"
msgstr "_Sortieren"
@@ -18935,7 +18911,6 @@ msgid "Delete the currently selected transaction template"
msgstr "Ausgewählte Ãberweisungsvorlage löschen"
#: gnucash/import-export/aqb/dialog-ab.glade:1512
-#, fuzzy
msgid "_Templates"
msgstr "Vor_lagen"
@@ -19389,7 +19364,7 @@ msgid "Job %d status %d - %s\n"
msgstr "Auftrag %d Status %d - %s\n"
#: gnucash/import-export/aqb/gnc-file-aqb-import.c:297
-#, fuzzy, c-format
+#, c-format
msgid "Job %d status %d - %s: %s\n"
msgstr "Auftrag %d Status %d - %s: %s\n"
@@ -19496,7 +19471,6 @@ msgid ""
msgstr "Neue SEPA-Ãberweisung mit HBCI/Onlinebanking online absenden"
#: gnucash/import-export/aqb/gnc-plugin-aqbanking.c:118
-#, fuzzy
msgid "_Internal Transaction..."
msgstr "_Interne Umbuchung..."
@@ -19506,7 +19480,6 @@ msgstr ""
"Neue bankinterne Einzelumbuchung mit HBCI/Onlinebanking online absenden"
#: gnucash/import-export/aqb/gnc-plugin-aqbanking.c:123
-#, fuzzy
msgid "Issue SEPA Direct _Debit..."
msgstr "SEPA Einzel_lastschrift..."
@@ -19545,7 +19518,6 @@ msgid "Import _DTAUS"
msgstr "_DTAUS importieren"
#: gnucash/import-export/aqb/gnc-plugin-aqbanking.c:147
-#, fuzzy
msgid "Import a traditional german DTAUS file into GnuCash."
msgstr "Importiere Buchungen aus einer traditionellen deutschen DTAUS-Datei."
@@ -19554,7 +19526,6 @@ msgid "Import DTAUS and _send..."
msgstr "DTAUS importieren und _senden..."
#: gnucash/import-export/aqb/gnc-plugin-aqbanking.c:160
-#, fuzzy
msgid ""
"Import a DTAUS file into GnuCash and transmit its orders by Online Banking."
msgstr ""
@@ -19708,12 +19679,10 @@ msgstr ""
"Rechnung %s wurde nicht eingebucht, da sie eine Währungkonversion benötigt.\n"
#: gnucash/import-export/bi-import/dialog-bi-import-gui.c:140
-#, fuzzy
msgid "ID"
msgstr "Nummer"
#: gnucash/import-export/bi-import/dialog-bi-import-gui.c:141
-#, fuzzy
msgid "Date-opened"
msgstr "Eröffnungsdatum"
@@ -19735,7 +19704,6 @@ msgid "Quantity"
msgstr "Anzahl"
#: gnucash/import-export/bi-import/dialog-bi-import-gui.c:152
-#, fuzzy
msgid "Disc-type"
msgstr "Art des Nachlasses"
@@ -19782,9 +19750,8 @@ msgid "Account-posted"
msgstr "Kontennotizen"
#: gnucash/import-export/bi-import/dialog-bi-import-gui.c:162
-#, fuzzy
msgid "Memo-posted"
-msgstr " (gebucht)"
+msgstr ""
#: gnucash/import-export/bi-import/dialog-bi-import-gui.c:163
#, fuzzy
@@ -19844,7 +19811,6 @@ msgstr ""
"verarbeiten. Sie müssen diesen Ausdruck an ihr Dateiformat anpassen.\n"
#: gnucash/import-export/bi-import/gnc-plugin-bi-import.c:57
-#, fuzzy
msgid "Import Bills & _Invoices..."
msgstr "_Rechnungen importieren..."
@@ -20095,7 +20061,6 @@ msgstr "Buchungen in eine CSV-Textdatei exportieren"
#
#: gnucash/import-export/csv-exp/gnc-plugin-csv-export.c:64
-#, fuzzy
msgid "Export A_ctive Register to CSV..."
msgstr "_Aktives Kontobuch als CSV-Datei exportieren..."
@@ -20555,7 +20520,6 @@ msgid "'From Namespace' can not be empty."
msgstr "»Von Namensraum« darf nicht leer sein."
#: gnucash/import-export/csv-imp/gnc-imp-props-price.cpp:217
-#, fuzzy
msgid "'Currency To' can not be the same as 'Commodity From'."
msgstr "Die 'Zielwährung' kann nicht gleich sein mit 'Herkunfts-Wertpapier'."
@@ -20584,12 +20548,10 @@ msgid "No amount column."
msgstr "Keine Betragsspalte."
#: gnucash/import-export/csv-imp/gnc-imp-props-price.cpp:278
-#, fuzzy
msgid "No 'Currency to'."
msgstr "Keine »Nach Währung« Spalte."
#: gnucash/import-export/csv-imp/gnc-imp-props-price.cpp:280
-#, fuzzy
msgid "No 'Commodity from'."
msgstr "Keine »Von Währung/Wertpapier« Spalte."
@@ -20770,9 +20732,8 @@ msgid "Destination account for the auto-balance split."
msgstr "Gegenkonto für Ausgleichsbuchung."
#: gnucash/import-export/import-main-matcher.c:600
-#, fuzzy
msgid "Assign a transfer account to the selection."
-msgstr "_Herkunftskonto auswählen"
+msgstr "Gegenkonto zu Auswahl zuweisen."
#. toggle column: add new transaction
#: gnucash/import-export/import-main-matcher.c:759
@@ -21470,100 +21431,87 @@ msgstr "Der aktuelle Posten wurde verändert. Soll er gespeichert werden?"
#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:77
msgctxt "sample for a checkbox"
msgid "X"
-msgstr ""
+msgstr "X"
#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:81
-#, fuzzy
msgctxt "sample for 'Date'"
msgid "12/12/2000"
-msgstr "sample:12.12.2000"
+msgstr "12.12.2000"
#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:86
-#, fuzzy
msgctxt "sample for 'Description'"
msgid "Description of an Entry"
-msgstr "sample:Beschreibungsbeispiel einer Buchung"
+msgstr "Beschreibungsbeispiel einer Buchung"
#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:92
-#, fuzzy
msgctxt "sample"
msgid "Action"
msgstr "Aktion"
#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:96
#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:104
-#, fuzzy
msgctxt "sample"
msgid "9,999.00"
-msgstr "sample:9.999,00"
+msgstr "9.999,00"
#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:100
#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:145
-#, fuzzy
msgctxt "sample"
msgid "999,999.00"
-msgstr "sample:999.999,00"
+msgstr "999.999,00"
#. Translators: Header for Discount Type
#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:110
-#, fuzzy, no-c-format
+#, no-c-format
msgctxt "sample for 'Discount Type'"
msgid "+%"
-msgstr "%"
+msgstr "+%"
#. Translators: Header for Discount How
#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:116
-#, fuzzy, no-c-format
+#, no-c-format
msgctxt "sample for Discount How'"
msgid "+%"
-msgstr "%"
+msgstr "+%"
#. Translators: Enter the longest expected path of an Account
#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:122
#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:127
#: gnucash/register/ledger-core/split-register-layout.c:723
#: gnucash/register/ledger-core/split-register-layout.c:731
-#, fuzzy
msgctxt "sample"
msgid "Expenses:Automobile:Gasoline"
-msgstr ""
-"sample:Aufwendungen 2/4:Reparatur/Instandhaltung:4805 Reparatur u. Instandh. "
-"von Anlagen/Maschinen u. Betriebs- u. Geschäftsausst."
+msgstr "Aufwendungen 2/4:Reparatur/Instandhaltung:4805 Reparatur u. Instandh. von Anlagen/Maschinen u. Betriebs- u. Geschäftsausst."
#. Translators: Abbreviation sample for Taxable?
#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:132
-#, fuzzy
msgctxt "sample for 'Taxable'"
msgid "T?"
-msgstr "St."
+msgstr "St.?"
#. Translators: Abbreviation sample for Tax Included
#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:137
-#, fuzzy
msgctxt "sample for 'Tax Included'"
msgid "TI"
-msgstr "St."
+msgstr "USt."
#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:141
-#, fuzzy
msgctxt "sample for 'Tax Table'"
msgid "Tax Table 1"
-msgstr "Steuertabelle: "
+msgstr "Steuertabelle"
#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:149
-#, fuzzy
msgctxt "sample"
msgid "999.00"
-msgstr "sample:999,00"
+msgstr "999,00"
#. Translators: Abbreviation sample for Billable
#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:154
msgctxt "sample for 'Billable'"
msgid "BI"
-msgstr ""
+msgstr "BI"
#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:158
-#, fuzzy
msgctxt "sample"
msgid "Payment"
msgstr "Zahlung"
@@ -21842,10 +21790,9 @@ msgstr ""
#. used to estimate widths.
#: gnucash/register/ledger-core/split-register-layout.c:640
#: gnucash/register/ledger-core/split-register-layout.c:648
-#, fuzzy
msgctxt "sample"
msgid "12/12/2000"
-msgstr "sample:12.12.2000"
+msgstr "12.12.2000"
#. Translators: The 'sample' items are
#. strings which are not displayed, but only
@@ -21854,20 +21801,18 @@ msgstr "sample:12.12.2000"
#: gnucash/register/ledger-core/split-register-layout.c:667
msgctxt "sample"
msgid "99999"
-msgstr ""
+msgstr "99999"
#: gnucash/register/ledger-core/split-register-layout.c:675
-#, fuzzy
msgctxt "sample"
msgid "Description of a transaction"
-msgstr "sample:Beschreibungsbeispiel einer Buchung"
+msgstr "Beschreibungsbeispiel einer Buchung"
#: gnucash/register/ledger-core/split-register-layout.c:699
#: gnucash/register/ledger-core/split-register-model.c:328
-#, fuzzy
msgctxt "Column header for 'Associate'"
msgid "A"
-msgstr "Neu"
+msgstr "Z"
#: gnucash/register/ledger-core/split-register-layout.c:707
#: gnucash/register/ledger-core/split-register-layout.c:747
@@ -21879,41 +21824,35 @@ msgstr "Neu"
#: gnucash/register/ledger-core/split-register-layout.c:797
#: gnucash/register/ledger-core/split-register-layout.c:805
#: gnucash/register/ledger-core/split-register-layout.c:853
-#, fuzzy
msgctxt "sample"
msgid "999,999.000"
-msgstr "sample:999.999,000"
+msgstr "999.999,000"
#: gnucash/register/ledger-core/split-register-layout.c:739
-#, fuzzy
msgctxt "sample"
msgid "Memo field sample text string"
-msgstr "sample:Buchungstext-Feld irgendein Beispieltext"
+msgstr "Buchungstext-Feld irgendein Beispieltext"
#: gnucash/register/ledger-core/split-register-layout.c:813
-#, fuzzy
msgctxt "Column header for 'Type'"
msgid "T"
msgstr "St."
#: gnucash/register/ledger-core/split-register-layout.c:821
-#, fuzzy
msgctxt "sample"
msgid "Notes field sample text string"
-msgstr "sample:Bemerkungsfeld irgendein Beispieltext"
+msgstr "Bemerkungsfeld irgendein Beispieltext"
#: gnucash/register/ledger-core/split-register-layout.c:829
-#, fuzzy
msgctxt "sample"
msgid "No Particular Reason"
-msgstr "sample:Keinen besonderen Grund"
+msgstr "Kein besonderer Grund"
#: gnucash/register/ledger-core/split-register-layout.c:837
#: gnucash/register/ledger-core/split-register-layout.c:845
-#, fuzzy
msgctxt "sample"
msgid "(x + 0.33 * y + (x+y) )"
-msgstr "sample: (x + 0,33 * y + (x+y) )"
+msgstr "(x + 0,33 * y + (x+y) )"
#: gnucash/register/ledger-core/split-register-load.c:278
msgid ""
@@ -30321,28 +30260,27 @@ msgstr "(Steuerrelevante Unterkonten: %d)"
#: libgnucash/app-utils/gnc-ui-util.c:903
msgctxt "Reconciled flag 'not cleared'"
msgid "n"
-msgstr ""
+msgstr "n"
#: libgnucash/app-utils/gnc-ui-util.c:905
msgctxt "Reconciled flag 'cleared'"
msgid "c"
-msgstr ""
+msgstr "b"
#: libgnucash/app-utils/gnc-ui-util.c:907
-#, fuzzy
msgctxt "Reconciled flag 'reconciled'"
msgid "y"
-msgstr "y"
+msgstr "j"
#: libgnucash/app-utils/gnc-ui-util.c:909
msgctxt "Reconciled flag 'frozen'"
msgid "f"
-msgstr ""
+msgstr "f"
#: libgnucash/app-utils/gnc-ui-util.c:911
msgctxt "Reconciled flag 'void'"
msgid "v"
-msgstr ""
+msgstr "u"
#: libgnucash/app-utils/gnc-ui-util.c:952
msgid "Opening Balances"
@@ -30722,11 +30660,10 @@ msgstr "Suche nach unausgeglichenen Buchungen im Konto %s: %u von %u"
#. Translators: This string has a disambiguation prefix
#: libgnucash/engine/Split.c:1613
-#, fuzzy
msgctxt ""
"Displayed account code of the other account in a multi-split transaction"
msgid "Split"
-msgstr "Vollständig"
+msgstr "Mehrteilig"
#: libgnucash/engine/Transaction.c:2694
msgid "Voided transaction"
commit cce252713f7b109ecfcff45497b78c136c45143b
Author: Christian Stimming <christian at cstimming.de>
Date: Sun Sep 8 21:59:26 2019 +0200
[i18n] update (msgmerge) German translation
diff --git a/po/de.po b/po/de.po
index 1f193affa..bfa56f62d 100644
--- a/po/de.po
+++ b/po/de.po
@@ -24,7 +24,7 @@ msgstr ""
"Project-Id-Version: GnuCash 3.6+\n"
"Report-Msgid-Bugs-To: https://bugs.gnucash.org/enter_bug.cgi?"
"product=GnuCash&component=Translations\n"
-"POT-Creation-Date: 2019-09-03 23:15+0200\n"
+"POT-Creation-Date: 2019-09-08 21:56+0200\n"
"PO-Revision-Date: 2019-09-03 10:42+0200\n"
"Last-Translator: Christian Stimming <christian at cstimming.de>\n"
"Language-Team: GnuCash-de <gnucash-de at gnucash.org>\n"
@@ -97,7 +97,7 @@ msgstr "Westeuropäisch"
#: gnucash/gtkbuilder/assistant-loan.glade:1029
#: gnucash/gtkbuilder/dialog-account.glade:832
#: gnucash/report/standard-reports/account-piecharts.scm:529
-#: gnucash/report/standard-reports/category-barchart.scm:597
+#: gnucash/report/standard-reports/category-barchart.scm:595
msgid "Other"
msgstr "Weitere"
@@ -829,7 +829,7 @@ msgid "Selected"
msgstr "Gewählt"
#: gnucash/gnome/assistant-hierarchy.c:462
-#: gnucash/gnome-utils/gnc-tree-view-account.c:2249
+#: gnucash/gnome-utils/gnc-tree-view-account.c:2247
msgid "Account Types"
msgstr "Kontoarten"
@@ -874,7 +874,7 @@ msgstr "Platzhalter"
#: gnucash/gnome/assistant-hierarchy.c:1041
#: gnucash/gnome-utils/dialog-account.c:307
#: gnucash/gtkbuilder/dialog-account.glade:1605
-#: libgnucash/app-utils/gnc-ui-util.c:1103
+#: libgnucash/app-utils/gnc-ui-util.c:1082
msgid "Opening Balance"
msgstr "Anfangsbestand"
@@ -1002,11 +1002,11 @@ msgstr "Darlehensrechner-Option: \"%s\""
#: gnucash/report/standard-reports/balsheet-pnl.scm:1039
#: gnucash/report/standard-reports/balsheet-pnl.scm:1044
#: gnucash/report/standard-reports/cashflow-barchart.scm:337
-#: gnucash/report/standard-reports/category-barchart.scm:736
+#: gnucash/report/standard-reports/category-barchart.scm:734
#: gnucash/report/standard-reports/general-journal.scm:101
#: gnucash/report/standard-reports/general-ledger.scm:73
#: gnucash/report/standard-reports/general-ledger.scm:94
-#: gnucash/report/standard-reports/net-charts.scm:486
+#: gnucash/report/standard-reports/net-charts.scm:484
#: gnucash/report/standard-reports/portfolio.scm:51
#: gnucash/report/standard-reports/register.scm:129
#: gnucash/report/standard-reports/register.scm:381
@@ -1068,8 +1068,10 @@ msgstr "Treuhandzahlung"
#: gnucash/gnome/assistant-stock-split.c:382
#: gnucash/gnome-utils/gnc-tree-model-split-reg.c:2956
#: gnucash/register/ledger-core/split-register.c:2679
-msgid "Action Column|Split"
-msgstr "Aktienteilung"
+#, fuzzy
+msgctxt "Action Column"
+msgid "Split"
+msgstr "Vollständig"
#: gnucash/gnome/assistant-stock-split.c:408
msgid "Error adding price."
@@ -1095,7 +1097,7 @@ msgstr "Fehler beim Hinzufügen des Preises."
#: gnucash/report/standard-reports/budget.scm:49
#: gnucash/report/standard-reports/cash-flow.scm:50
#: gnucash/report/standard-reports/general-journal.scm:106
-#: gnucash/report/standard-reports/portfolio.scm:254
+#: gnucash/report/standard-reports/portfolio.scm:253
#: gnucash/report/standard-reports/register.scm:142
#: gnucash/report/standard-reports/register.scm:406
msgid "Account"
@@ -1104,7 +1106,7 @@ msgstr "Konto"
#: gnucash/gnome/assistant-stock-split.c:579
#: gnucash/gnome-utils/gnc-tree-view-commodity.c:362
#: gnucash/report/standard-reports/advanced-portfolio.scm:1069
-#: gnucash/report/standard-reports/portfolio.scm:255
+#: gnucash/report/standard-reports/portfolio.scm:254
msgid "Symbol"
msgstr "Symbol"
@@ -1175,7 +1177,7 @@ msgstr "Auslagenerstattung"
#: gnucash/report/business-reports/receipt.eguile.scm:109
#: gnucash/report/business-reports/receipt.scm:167
#: gnucash/report/business-reports/taxinvoice.eguile.scm:131
-#: gnucash/report/business-reports/taxinvoice.scm:193
+#: gnucash/report/business-reports/taxinvoice.scm:192
#: gnucash/report/report-gnome/gnc-plugin-page-report.c:1804
#: libgnucash/app-utils/prefs.scm:75 libgnucash/engine/gncInvoice.c:1057
msgid "Invoice"
@@ -1702,7 +1704,7 @@ msgstr "Ausgeglichene Buchungen"
#: gnucash/report/standard-reports/balsheet-pnl.scm:345
#: gnucash/report/standard-reports/equity-statement.scm:169
#: gnucash/report/standard-reports/income-statement.scm:269
-#: gnucash/report/standard-reports/trial-balance.scm:296
+#: gnucash/report/standard-reports/trial-balance.scm:295
msgid "Closing Entries"
msgstr "Abschlussbuchungen"
@@ -1758,7 +1760,7 @@ msgstr "Betrag"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:2882
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:2902
#: gnucash/report/standard-reports/advanced-portfolio.scm:1086
-#: gnucash/report/standard-reports/portfolio.scm:259
+#: gnucash/report/standard-reports/portfolio.scm:258
#: gnucash/report/standard-reports/register.scm:157
#: gnucash/report/standard-reports/register.scm:435
msgid "Value"
@@ -1902,8 +1904,8 @@ msgstr "Buchungstext"
#: gnucash/report/report-system/trep-engine.scm:921
#: gnucash/report/report-system/trep-engine.scm:1080
#: gnucash/report/report-system/trep-engine.scm:1175
-#: gnucash/report/standard-reports/account-summary.scm:483
-#: gnucash/report/standard-reports/sx-summary.scm:486
+#: gnucash/report/standard-reports/account-summary.scm:484
+#: gnucash/report/standard-reports/sx-summary.scm:485
msgid "Notes"
msgstr "Bemerkung"
@@ -1938,13 +1940,13 @@ msgstr "Bemerkung"
#: gnucash/report/report-system/trep-engine.scm:920
#: gnucash/report/report-system/trep-engine.scm:1046
#: gnucash/report/report-system/trep-engine.scm:1165
-#: gnucash/report/standard-reports/account-summary.scm:444
+#: gnucash/report/standard-reports/account-summary.scm:443
#: gnucash/report/standard-reports/general-journal.scm:105
#: gnucash/report/standard-reports/general-ledger.scm:77
#: gnucash/report/standard-reports/general-ledger.scm:97
#: gnucash/report/standard-reports/register.scm:137
#: gnucash/report/standard-reports/register.scm:396
-#: gnucash/report/standard-reports/sx-summary.scm:445
+#: gnucash/report/standard-reports/sx-summary.scm:444
msgid "Description"
msgstr "Beschreibung"
@@ -2295,8 +2297,8 @@ msgstr "Bemerkungen Auslagenerstattung"
#: gnucash/report/business-reports/customer-summary.scm:73
#: gnucash/report/business-reports/job-report.scm:45
#: gnucash/report/business-reports/owner-report.scm:55
-#: gnucash/report/standard-reports/account-summary.scm:443
-#: gnucash/report/standard-reports/sx-summary.scm:444
+#: gnucash/report/standard-reports/account-summary.scm:442
+#: gnucash/report/standard-reports/sx-summary.scm:443
msgid "Type"
msgstr "Kontoart"
@@ -2469,10 +2471,10 @@ msgstr "Titel"
#: gnucash/report/business-reports/job-report.scm:208
#: gnucash/report/business-reports/owner-report.scm:321
#: gnucash/report/report-system/html-utilities.scm:711
-#: gnucash/report/standard-reports/account-summary.scm:462
+#: gnucash/report/standard-reports/account-summary.scm:461
#: gnucash/report/standard-reports/balance-forecast.scm:241
#: gnucash/report/standard-reports/register.scm:163
-#: gnucash/report/standard-reports/sx-summary.scm:463
+#: gnucash/report/standard-reports/sx-summary.scm:462
msgid "Balance"
msgstr "Saldo"
@@ -3058,8 +3060,8 @@ msgid "Form Line Data: "
msgstr "Daten der Formularzeilen:"
#: gnucash/gnome/dialog-tax-info.c:286
-#: gnucash/report/standard-reports/account-summary.scm:442
-#: gnucash/report/standard-reports/sx-summary.scm:443
+#: gnucash/report/standard-reports/account-summary.scm:441
+#: gnucash/report/standard-reports/sx-summary.scm:442
msgid "Code"
msgstr "Code"
@@ -3194,8 +3196,8 @@ msgstr "Lieferant suchen"
#: gnucash/report/report-system/report-utilities.scm:116
#: gnucash/report/standard-reports/advanced-portfolio.scm:1093
#: gnucash/report/standard-reports/balsheet-pnl.scm:1230
-#: gnucash/report/standard-reports/net-charts.scm:409
-#: gnucash/report/standard-reports/net-charts.scm:489
+#: gnucash/report/standard-reports/net-charts.scm:407
+#: gnucash/report/standard-reports/net-charts.scm:487
#: libgnucash/app-utils/prefs.scm:89 libgnucash/engine/Account.cpp:4099
#: libgnucash/engine/Scrub.c:422
msgid "Income"
@@ -3205,8 +3207,8 @@ msgstr "Ertrag"
#: gnucash/import-export/qif-imp/qif-dialog-utils.scm:80
#: gnucash/import-export/qif-imp/qif-dialog-utils.scm:85
#: gnucash/report/report-system/report-utilities.scm:117
-#: gnucash/report/standard-reports/budget-income-statement.scm:674
-#: gnucash/report/standard-reports/income-statement.scm:610
+#: gnucash/report/standard-reports/budget-income-statement.scm:673
+#: gnucash/report/standard-reports/income-statement.scm:601
msgid "Expenses"
msgstr "Aufwand"
@@ -3231,7 +3233,7 @@ msgstr "Ãberweisungen"
#: gnucash/report/standard-reports/budget-flow.scm:169
#: gnucash/report/standard-reports/budget-flow.scm:248
#: gnucash/report/standard-reports/budget.scm:453
-#: gnucash/report/standard-reports/portfolio.scm:279
+#: gnucash/report/standard-reports/portfolio.scm:278
msgid "Total"
msgstr "Summe"
@@ -5004,7 +5006,7 @@ msgstr "Alle Buchungssätze vollständig mit allen Teilen anzeigen"
#: gnucash/gnome/gnc-plugin-page-register.c:503
#: gnucash/gnome-utils/gnc-tree-model-split-reg.c:2877
#: gnucash/register/ledger-core/split-register.c:2600
-#: gnucash/register/ledger-core/split-register-layout.c:727
+#: gnucash/register/ledger-core/split-register-layout.c:715
#: gnucash/register/ledger-core/split-register-model.c:342
#: gnucash/report/standard-reports/register.scm:143
msgid "Transfer"
@@ -5154,7 +5156,7 @@ msgstr "und Unterkonten"
#: gnucash/report/report-system/trep-engine.scm:1337
#: gnucash/report/standard-reports/general-journal.scm:90
#: gnucash/report/standard-reports/register.scm:371
-#: gnucash/report/standard-reports/trial-balance.scm:739
+#: gnucash/report/standard-reports/trial-balance.scm:731
#: libgnucash/app-utils/guile-util.c:850
msgid "Credit"
msgstr "Haben"
@@ -5169,7 +5171,7 @@ msgstr "Haben"
#: gnucash/report/report-system/trep-engine.scm:1334
#: gnucash/report/standard-reports/general-journal.scm:89
#: gnucash/report/standard-reports/register.scm:369
-#: gnucash/report/standard-reports/trial-balance.scm:736
+#: gnucash/report/standard-reports/trial-balance.scm:728
#: libgnucash/app-utils/guile-util.c:819
msgid "Debit"
msgstr "Soll"
@@ -5211,7 +5213,7 @@ msgstr ""
#. Translators: The %s is the name of the plugin page
#: gnucash/gnome/gnc-plugin-page-register2.c:2988
#: gnucash/gnome/gnc-plugin-page-register.c:3906
-#: gnucash/gnome-utils/gnc-tree-view-account.c:2210
+#: gnucash/gnome-utils/gnc-tree-view-account.c:2208
#: gnucash/gnome-utils/gnc-tree-view-owner.c:1177
#, c-format
msgid "Filter %s by..."
@@ -5817,6 +5819,11 @@ msgstr ""
msgid "Perform financial calculations, such as a loan repayment"
msgstr "Finanzkalkulationen ausführen wie Kredit-Rückzahlung"
+#: gnucash/gnome/gnucash.appdata.xml.in.in:33
+#, fuzzy
+msgid "GnuCash Project"
+msgstr "GnuCash Einstellungen"
+
#: gnucash/gnome/gnucash.desktop.in.in:7
msgid "Finance Management"
msgstr "Finanzmanagement"
@@ -5826,15 +5833,13 @@ msgstr "Finanzmanagement"
msgid "gnucash-icon"
msgstr "gnucash-icon"
-#. Translators: The abbreviation for 'Reconciled'
-#. in the header row of the register. Please only
-#. translate the portion after the ':' and
-#. leave the rest ("Reconciled:") as is.
#: gnucash/gnome/reconcile-view.c:425
-#: gnucash/register/ledger-core/split-register-layout.c:699
+#: gnucash/register/ledger-core/split-register-layout.c:691
#: gnucash/register/ledger-core/split-register-model.c:306
-msgid "Reconciled:R"
-msgstr "Reconciled:A"
+#, fuzzy
+msgctxt "Column header for 'Reconciled'"
+msgid "R"
+msgstr "Abgl"
#: gnucash/gnome/search-owner.c:136
msgid "You have not selected an owner"
@@ -6158,12 +6163,12 @@ msgstr "Neuer Buchungsteil"
#. Translators: This string has a disambiguation prefix. Translate only the part behind '|'
#: gnucash/gnome-search/dialog-search.c:1098
-msgid ""
-"Item represents an unknown object type (in the sense of bill, customer, "
-"invoice, transaction, split,...)|New item"
-msgstr ""
+#, fuzzy
+msgctxt ""
"Item represents an unknown object type (in the sense of bill, customer, "
-"invoice, transaction, split,...)|Neues Element"
+"invoice, transaction, split,...)"
+msgid "New item"
+msgstr "_Neuer Eintrag..."
#. Set the 'add criterion' button
#: gnucash/gnome-search/dialog-search.c:1140
@@ -6198,7 +6203,7 @@ msgid "matches no accounts"
msgstr "entspricht keinem Konto"
#: gnucash/gnome-search/search-account.c:195
-#: gnucash/report/standard-reports/cash-flow.scm:263
+#: gnucash/report/standard-reports/cash-flow.scm:261
msgid "Selected Accounts"
msgstr "Ausgewählte Konten"
@@ -6832,18 +6837,14 @@ msgstr ""
msgid "Select no account"
msgstr "Kein Konto gewählt"
-#. Translators: This string has a context prefix; the
-#. translation must only contain the part after
-#. the | character.
-#. Translators: This string has a context prefix; the translation
-#. must only contain the part after the | character.
-#: gnucash/gnome-utils/dialog-options.c:722
-#: gnucash/gnome-utils/gnc-tree-view-account.c:908
-msgid "Column letter for 'Placeholder'|P"
-msgstr "P"
+#: gnucash/gnome-utils/dialog-options.c:719
+#: gnucash/gnome-utils/gnc-tree-view-account.c:906
+msgctxt "Column header for 'Placeholder'"
+msgid "P"
+msgstr ""
# Todo: sind die "\n" erforderlich?
-#: gnucash/gnome-utils/dialog-options.c:789
+#: gnucash/gnome-utils/dialog-options.c:786
msgid ""
"There are no income or expense accounts of the specified\n"
"book currency; you will have to return to this dialog\n"
@@ -6854,7 +6855,7 @@ msgstr ""
"Kontenteneinrchtung müssen sie über Datei->Eigenschaften zu diesem Dialog "
"zurückkehren, um ein Erfolgskonto vorzuwählen."
-#: gnucash/gnome-utils/dialog-options.c:858
+#: gnucash/gnome-utils/dialog-options.c:855
#: gnucash/import-export/import-account-matcher.c:180
#: gnucash/import-export/qif-imp/dialog-account-picker.c:299
#, c-format
@@ -6865,87 +6866,87 @@ msgstr ""
"Das Konto %s ist ein Platzhalter und kann keine Buchungen enthalten. Bitte "
"wählen Sie ein anderes Konto."
-#: gnucash/gnome-utils/dialog-options.c:1292
+#: gnucash/gnome-utils/dialog-options.c:1289
msgid "Book currency:"
msgstr "Buchwährung:"
-#: gnucash/gnome-utils/dialog-options.c:1321
+#: gnucash/gnome-utils/dialog-options.c:1318
msgid "Default lot tracking policy:"
msgstr "Vorgewählte Los-Zuordnung:"
-#: gnucash/gnome-utils/dialog-options.c:1349
+#: gnucash/gnome-utils/dialog-options.c:1346
msgid "Default gain/loss account:"
msgstr "Vorgewähltes Erfolgskonto:"
-#: gnucash/gnome-utils/dialog-options.c:1521
-#: gnucash/gnome-utils/dialog-options.c:1664
+#: gnucash/gnome-utils/dialog-options.c:1518
+#: gnucash/gnome-utils/dialog-options.c:1661
msgid "Select All"
msgstr "Alle auswählen"
-#: gnucash/gnome-utils/dialog-options.c:1523
+#: gnucash/gnome-utils/dialog-options.c:1520
msgid "Select all accounts."
msgstr "Alle Konten auswählen."
-#: gnucash/gnome-utils/dialog-options.c:1528
-#: gnucash/gnome-utils/dialog-options.c:1671
+#: gnucash/gnome-utils/dialog-options.c:1525
+#: gnucash/gnome-utils/dialog-options.c:1668
msgid "Clear All"
msgstr "Keine auswählen"
-#: gnucash/gnome-utils/dialog-options.c:1530
+#: gnucash/gnome-utils/dialog-options.c:1527
msgid "Clear the selection and unselect all accounts."
msgstr "Auswahl löschen und gar keine Konten auswählen."
-#: gnucash/gnome-utils/dialog-options.c:1535
+#: gnucash/gnome-utils/dialog-options.c:1532
msgid "Select Children"
msgstr "Unterkonten auswählen"
-#: gnucash/gnome-utils/dialog-options.c:1537
+#: gnucash/gnome-utils/dialog-options.c:1534
msgid "Select all descendents of selected account."
msgstr "Alle Unterkonten des gewählten Kontos auswählen."
-#: gnucash/gnome-utils/dialog-options.c:1543
-#: gnucash/gnome-utils/dialog-options.c:1678
+#: gnucash/gnome-utils/dialog-options.c:1540
+#: gnucash/gnome-utils/dialog-options.c:1675
msgid "Select Default"
msgstr "Voreinstellung"
-#: gnucash/gnome-utils/dialog-options.c:1545
+#: gnucash/gnome-utils/dialog-options.c:1542
msgid "Select the default account selection."
msgstr "Die voreingestellte Kontenauswahl auswählen."
-#: gnucash/gnome-utils/dialog-options.c:1559
+#: gnucash/gnome-utils/dialog-options.c:1556
msgid "Show Hidden Accounts"
msgstr "Versteckte Konten anzeigen"
-#: gnucash/gnome-utils/dialog-options.c:1561
+#: gnucash/gnome-utils/dialog-options.c:1558
msgid "Show accounts that have been marked hidden."
msgstr "Konten anzeigen, die als »Versteckt« markiert sind."
-#: gnucash/gnome-utils/dialog-options.c:1666
+#: gnucash/gnome-utils/dialog-options.c:1663
msgid "Select all entries."
msgstr "Alle Einträge auswählen."
-#: gnucash/gnome-utils/dialog-options.c:1673
+#: gnucash/gnome-utils/dialog-options.c:1670
msgid "Clear the selection and unselect all entries."
msgstr "Auswahl löschen und gar keine Einträge auswählen."
-#: gnucash/gnome-utils/dialog-options.c:1680
+#: gnucash/gnome-utils/dialog-options.c:1677
msgid "Select the default selection."
msgstr "Die voreingestellte Auswahl auswählen."
#. The reset button on each option page
-#: gnucash/gnome-utils/dialog-options.c:1854
+#: gnucash/gnome-utils/dialog-options.c:1851
msgid "Reset defaults"
msgstr "Voreinstellungen"
-#: gnucash/gnome-utils/dialog-options.c:1856
+#: gnucash/gnome-utils/dialog-options.c:1853
msgid "Reset all values to their defaults."
msgstr "Alle Werte auf ihre Voreinstellung zurücksetzen."
-#: gnucash/gnome-utils/dialog-options.c:2251
+#: gnucash/gnome-utils/dialog-options.c:2248
msgid "Page"
msgstr "Seite"
-#: gnucash/gnome-utils/dialog-options.c:2910
+#: gnucash/gnome-utils/dialog-options.c:2907
#: gnucash/gnome-utils/dialog-preferences.c:1352
#: gnucash/gtkbuilder/dialog-fincalc.glade:220
#: gnucash/gtkbuilder/dialog-fincalc.glade:274
@@ -6955,23 +6956,23 @@ msgstr "Seite"
msgid "Clear"
msgstr "Zurücksetzen"
-#: gnucash/gnome-utils/dialog-options.c:2911
+#: gnucash/gnome-utils/dialog-options.c:2908
msgid "Clear any selected image file."
msgstr "Auswahl der Bilddatei wieder löschen."
-#: gnucash/gnome-utils/dialog-options.c:2913
+#: gnucash/gnome-utils/dialog-options.c:2910
msgid "Select image"
msgstr "Bild auswählen"
-#: gnucash/gnome-utils/dialog-options.c:2915
+#: gnucash/gnome-utils/dialog-options.c:2912
msgid "Select an image file."
msgstr "Bilddatei auswählen."
-#: gnucash/gnome-utils/dialog-options.c:3101
+#: gnucash/gnome-utils/dialog-options.c:3098
msgid "Pixels"
msgstr "Pixel"
-#: gnucash/gnome-utils/dialog-options.c:3107
+#: gnucash/gnome-utils/dialog-options.c:3104
msgid "Percent"
msgstr "Prozent"
@@ -8392,7 +8393,7 @@ msgid "_Unreconcile"
msgstr "_Nicht abgeglichen"
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1911
-#: gnucash/register/ledger-core/split-register-model.c:2205
+#: gnucash/register/ledger-core/split-register-model.c:2207
msgid "Change reconciled split?"
msgstr "Abgeglichenen Buchungsteil ändern?"
@@ -8417,7 +8418,7 @@ msgstr ""
"Abgleichen erschweren. Wollen Sie trotzdem fortsetzen?"
#: gnucash/gnome-utils/gnc-tree-control-split-reg.c:1934
-#: gnucash/register/ledger-core/split-register-model.c:2229
+#: gnucash/register/ledger-core/split-register-model.c:2231
msgid "Chan_ge Split"
msgstr "Buchungs_teil ändern"
@@ -8440,7 +8441,9 @@ msgstr "Neues Konto der obersten Ebene"
#. must only contain the part after the | character.
#: gnucash/gnome-utils/gnc-tree-model-split-reg.c:2856
#: gnucash/register/ledger-core/split-register.c:2579
-msgid "Action Column|Deposit"
+#, fuzzy
+msgctxt "Action Column"
+msgid "Deposit"
msgstr "Einzahlung"
#: gnucash/gnome-utils/gnc-tree-model-split-reg.c:2857
@@ -8638,10 +8641,10 @@ msgstr "Gehalt"
#: gnucash/import-export/qif-imp/qif-dialog-utils.scm:72
#: gnucash/import-export/qif-imp/qif-dialog-utils.scm:76
#: gnucash/register/ledger-core/split-register.c:2659
-#: gnucash/report/standard-reports/balance-sheet.scm:657
+#: gnucash/report/standard-reports/balance-sheet.scm:656
#: gnucash/report/standard-reports/balsheet-pnl.scm:1057
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:813
-#: libgnucash/app-utils/gnc-ui-util.c:1048 libgnucash/engine/Account.cpp:4101
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:812
+#: libgnucash/app-utils/gnc-ui-util.c:1027 libgnucash/engine/Account.cpp:4101
msgid "Equity"
msgstr "Eigenkapital"
@@ -8660,7 +8663,7 @@ msgstr "Eigenkapital"
#: gnucash/report/standard-reports/general-journal.scm:108
#: gnucash/report/standard-reports/general-ledger.scm:86
#: gnucash/report/standard-reports/general-ledger.scm:106
-#: gnucash/report/standard-reports/portfolio.scm:258
+#: gnucash/report/standard-reports/portfolio.scm:257
#: gnucash/report/standard-reports/price-scatter.scm:39
#: gnucash/report/standard-reports/price-scatter.scm:346
#: gnucash/report/standard-reports/register.scm:149
@@ -8702,9 +8705,11 @@ msgstr "-- Mehrteilige Buchung --"
msgid "-- Stock Split --"
msgstr "-- Aktienteilung --"
+#. Translators: This is a date format, see i.e.
+#. https://www.gnu.org/software/libc/manual/html_node/Formatting-Calendar-Time.html
#: gnucash/gnome-utils/gnc-tree-util-split-reg.c:436
#: gnucash/register/ledger-core/gncEntryLedgerModel.c:576
-#: gnucash/register/ledger-core/split-register-model.c:1006
+#: gnucash/register/ledger-core/split-register-model.c:1008
msgid "%A %d %B %Y"
msgstr "%A, %d. %B %Y"
@@ -8778,7 +8783,7 @@ msgstr "_Berechnen"
#: gnucash/report/report-system/trep-engine.scm:1047
#: gnucash/report/standard-reports/general-ledger.scm:79
#: gnucash/report/standard-reports/general-ledger.scm:99
-#: gnucash/report/standard-reports/trial-balance.scm:742
+#: gnucash/report/standard-reports/trial-balance.scm:734
msgid "Account Name"
msgstr "Kontobezeichnung"
@@ -8861,38 +8866,38 @@ msgid "Tax Info"
msgstr "Steuerrelevante Information"
#. Translators: %s is a currency mnemonic.
-#: gnucash/gnome-utils/gnc-tree-view-account.c:1718
+#: gnucash/gnome-utils/gnc-tree-view-account.c:1716
#, c-format
msgid "Present (%s)"
msgstr "Aktuell (%s)"
#. Translators: %s is a currency mnemonic.
-#: gnucash/gnome-utils/gnc-tree-view-account.c:1721
+#: gnucash/gnome-utils/gnc-tree-view-account.c:1719
#: gnucash/gnome-utils/gnc-tree-view-owner.c:926
#, c-format
msgid "Balance (%s)"
msgstr "Saldo (%s)"
#. Translators: %s is a currency mnemonic.
-#: gnucash/gnome-utils/gnc-tree-view-account.c:1724
+#: gnucash/gnome-utils/gnc-tree-view-account.c:1722
#, c-format
msgid "Cleared (%s)"
msgstr "Bestätigt (%s)"
#. Translators: %s is a currency mnemonic.
-#: gnucash/gnome-utils/gnc-tree-view-account.c:1727
+#: gnucash/gnome-utils/gnc-tree-view-account.c:1725
#, c-format
msgid "Reconciled (%s)"
msgstr "Abgeglichen (%s)"
#. Translators: %s is a currency mnemonic.
-#: gnucash/gnome-utils/gnc-tree-view-account.c:1730
+#: gnucash/gnome-utils/gnc-tree-view-account.c:1728
#, c-format
msgid "Future Minimum (%s)"
msgstr "Zukünftiges Minimum (%s)"
#. Translators: %s is a currency mnemonic.
-#: gnucash/gnome-utils/gnc-tree-view-account.c:1733
+#: gnucash/gnome-utils/gnc-tree-view-account.c:1731
#, c-format
msgid "Total (%s)"
msgstr "Gesamt (%s)"
@@ -8930,8 +8935,9 @@ msgstr "Kurse abrufen"
#. Translators: This string has a context prefix; the translation
#. must only contain the part after the | character.
#: gnucash/gnome-utils/gnc-tree-view-commodity.c:409
-msgid "Column letter for 'Get Quotes'|Q"
-msgstr "K"
+msgctxt "Column letter for 'Get Quotes'"
+msgid "Q"
+msgstr ""
#: gnucash/gnome-utils/gnc-tree-view-commodity.c:415
#: gnucash/gnome-utils/gnc-tree-view-price.c:414
@@ -9010,8 +9016,10 @@ msgstr "Aktiv"
#. Translators: This string has a context prefix; the translation
#. must only contain the part after the | character.
#: gnucash/gnome-utils/gnc-tree-view-owner.c:481
-msgid "Column letter for 'Active'|A"
-msgstr "A"
+#, fuzzy
+msgctxt "Column letter for 'Active'"
+msgid "A"
+msgstr "Neu"
#: gnucash/gnome-utils/gnc-tree-view-price.c:396
msgid "Security"
@@ -9158,8 +9166,8 @@ msgstr "Empfangen"
#: gnucash/report/business-reports/customer-summary.scm:140
#: gnucash/report/business-reports/customer-summary.scm:343
#: gnucash/report/standard-reports/balsheet-pnl.scm:1234
-#: gnucash/report/standard-reports/net-charts.scm:409
-#: gnucash/report/standard-reports/net-charts.scm:489
+#: gnucash/report/standard-reports/net-charts.scm:407
+#: gnucash/report/standard-reports/net-charts.scm:487
#: libgnucash/app-utils/prefs.scm:73 libgnucash/engine/Account.cpp:4100
#: libgnucash/engine/gncInvoice.c:1061
msgid "Expense"
@@ -9197,14 +9205,14 @@ msgid "Enter the transaction number, such as the check number"
msgstr "Geben Sie die Nummer des Buchungssatzes ein, z.B. die Scheck-Nummer."
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3193
-#: gnucash/register/ledger-core/split-register-model.c:1138
+#: gnucash/register/ledger-core/split-register-model.c:1140
msgid "Enter the name of the Customer"
msgstr "Bitte geben Sie einen Namen für den Kunden ein"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3195
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3204
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3213
-#: gnucash/register/ledger-core/split-register-model.c:1175
+#: gnucash/register/ledger-core/split-register-model.c:1177
msgid "Enter notes for the transaction"
msgstr "Geben Sie Bemerkungen zum Buchungssatz ein"
@@ -9212,29 +9220,29 @@ msgstr "Geben Sie Bemerkungen zum Buchungssatz ein"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3197
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3206
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3215
-#: gnucash/register/ledger-core/split-register-model.c:1335
+#: gnucash/register/ledger-core/split-register-model.c:1337
msgid "Enter a description of the split"
msgstr "Geben Sie einen Buchungstext der Buchung ein"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3202
-#: gnucash/register/ledger-core/split-register-model.c:1141
+#: gnucash/register/ledger-core/split-register-model.c:1143
msgid "Enter the name of the Vendor"
msgstr "Geben Sie den Namen des Lieferanten ein"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3211
-#: gnucash/register/ledger-core/split-register-model.c:1144
+#: gnucash/register/ledger-core/split-register-model.c:1146
msgid "Enter a description of the transaction"
msgstr "Geben Sie eine Beschreibung des Buchungssatzes ein"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3225
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3229
-#: gnucash/register/ledger-core/split-register-model.c:1497
-#: gnucash/register/ledger-core/split-register-model.c:1564
+#: gnucash/register/ledger-core/split-register-model.c:1499
+#: gnucash/register/ledger-core/split-register-model.c:1566
msgid "Enter the account to transfer from, or choose one from the list"
msgstr "Wählen Sie das Konto aus, von dem Sie buchen wollen"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3227
-#: gnucash/register/ledger-core/split-register-model.c:1208
+#: gnucash/register/ledger-core/split-register-model.c:1210
msgid "Reason the transaction was voided"
msgstr "Grund für Buchungsstornierung"
@@ -9253,7 +9261,7 @@ msgstr "Geben Sie den Wert der ge- oder verkauften Aktien ein"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3269
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3281
-#: gnucash/register/ledger-core/split-register-model.c:1445
+#: gnucash/register/ledger-core/split-register-model.c:1447
msgid "Enter the number of shares bought or sold"
msgstr "Geben Sie die verkaufte Anzahl von Aktien ein"
@@ -9266,17 +9274,17 @@ msgid "Enter the rate"
msgstr "Geben Sie den Wechselkurs an"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3311
-#: gnucash/register/ledger-core/split-register-model.c:1409
+#: gnucash/register/ledger-core/split-register-model.c:1411
msgid "Enter the effective share price"
msgstr "Geben Sie den effektiven Aktienkurs ein"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3321
-#: gnucash/register/ledger-core/split-register-model.c:2370
+#: gnucash/register/ledger-core/split-register-model.c:2372
msgid "Enter credit formula for real transaction"
msgstr "Geben Sie die Formel zur Soll-Berechnung der tatsächlichen Buchung ein"
#: gnucash/gnome-utils/gnc-tree-view-split-reg.c:3331
-#: gnucash/register/ledger-core/split-register-model.c:2336
+#: gnucash/register/ledger-core/split-register-model.c:2338
msgid "Enter debit formula for real transaction"
msgstr ""
"Geben Sie die Formel zur Haben-Berechnung der tatsächlichen Buchung ein"
@@ -9290,8 +9298,9 @@ msgstr "Aktiv"
#. Translators: This string has a context prefix; the translation
#. must only contain the part after the | character.
#: gnucash/gnome-utils/gnc-tree-view-sx-list.c:143
-msgid "Single-character short column-title form of 'Enabled'|E"
-msgstr "A"
+msgctxt "Single-character short column-title form of 'Enabled'"
+msgid "E"
+msgstr ""
#: gnucash/gnome-utils/gnc-tree-view-sx-list.c:154
msgid "Last Occur"
@@ -13714,9 +13723,9 @@ msgstr "Druckbare Rechnung..."
#: gnucash/gtkbuilder/business-prefs.glade:29
#: gnucash/report/business-reports/taxinvoice.eguile.scm:445
-#: gnucash/report/business-reports/taxinvoice.scm:316
-#: gnucash/report/business-reports/taxinvoice.scm:318
-#: gnucash/report/business-reports/taxinvoice.scm:330
+#: gnucash/report/business-reports/taxinvoice.scm:315
+#: gnucash/report/business-reports/taxinvoice.scm:317
+#: gnucash/report/business-reports/taxinvoice.scm:329
#: gnucash/report/report-gnome/gnc-plugin-page-report.c:1797
msgid "Tax Invoice"
msgstr "Rechnung mit Steuerangaben"
@@ -14133,8 +14142,8 @@ msgstr "<b>Ha_uptkonto</b>"
#: gnucash/report/standard-reports/equity-statement.scm:108
#: gnucash/report/standard-reports/equity-statement.scm:112
#: gnucash/report/standard-reports/register.scm:375
-#: gnucash/report/standard-reports/trial-balance.scm:188
-#: gnucash/report/standard-reports/trial-balance.scm:192
+#: gnucash/report/standard-reports/trial-balance.scm:187
+#: gnucash/report/standard-reports/trial-balance.scm:191
#: gnucash/report/stylesheets/stylesheet-easy.scm:46
#: gnucash/report/stylesheets/stylesheet-easy.scm:52
#: gnucash/report/stylesheets/stylesheet-easy.scm:58
@@ -20560,6 +20569,8 @@ msgstr "Wert ergibt keine gültige Währung für eine Währungsspalte"
#: gnucash/import-export/csv-imp/gnc-imp-props-tx.cpp:265
#: gnucash/import-export/csv-imp/gnc-imp-props-tx.cpp:476
#: gnucash/import-export/csv-imp/gnc-imp-props-tx.cpp:484
+#: gnucash/import-export/csv-imp/gnc-imp-props-tx.cpp:539
+#: gnucash/import-export/csv-imp/gnc-imp-props-tx.cpp:547
msgid " could not be understood.\n"
msgstr "konnte nicht verstanden werden.\n"
@@ -20631,16 +20642,16 @@ msgstr "Angabe zu Konto darf nicht leer sein."
msgid "Transfer account value can't be empty."
msgstr "Angabe zu Transfer-Konto darf nicht leer sein."
-#: gnucash/import-export/csv-imp/gnc-imp-props-tx.cpp:510
+#: gnucash/import-export/csv-imp/gnc-imp-props-tx.cpp:559
msgid "No deposit or withdrawal column."
msgstr "Keine Spalte für Gutschrift oder Belastung."
-#: gnucash/import-export/csv-imp/gnc-imp-props-tx.cpp:516
+#: gnucash/import-export/csv-imp/gnc-imp-props-tx.cpp:565
msgid "Split is reconciled but reconcile date column is missing or invalid."
msgstr ""
"Teilbuchung ist abgeglichen, aber das Abgleichdatum fehlt oder ist ungültig."
-#: gnucash/import-export/csv-imp/gnc-imp-props-tx.cpp:523
+#: gnucash/import-export/csv-imp/gnc-imp-props-tx.cpp:572
msgid ""
"Transfer split is reconciled but transfer reconcile date column is missing "
"or invalid."
@@ -21190,9 +21201,9 @@ msgstr "Kapitalertrag (kurzfristig)"
#: gnucash/import-export/qif-imp/qif-dialog-utils.scm:73
#: gnucash/import-export/qif-imp/qif-dialog-utils.scm:77
#: gnucash/report/business-reports/balsheet-eg.eguile.scm:195
-#: gnucash/report/standard-reports/balance-sheet.scm:669
+#: gnucash/report/standard-reports/balance-sheet.scm:668
#: gnucash/report/standard-reports/balsheet-pnl.scm:1062
-#: libgnucash/app-utils/gnc-ui-util.c:976
+#: libgnucash/app-utils/gnc-ui-util.c:955
msgid "Retained Earnings"
msgstr "Erwirtschafteter Gewinn"
@@ -21456,79 +21467,106 @@ msgstr "_Nicht speichern"
msgid "The current entry has been changed. Would you like to save it?"
msgstr "Der aktuelle Posten wurde verändert. Soll er gespeichert werden?"
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:76
-msgid "sample:X"
-msgstr "sample:X"
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:77
+msgctxt "sample for a checkbox"
+msgid "X"
+msgstr ""
-#. Translators: The 'sample:' items are
-#. strings which are not displayed, but only
-#. used to estimate widths. Please only
-#. translate the portion after the ':' and
-#. leave the rest ("sample:") as is.
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:80
-#: gnucash/register/ledger-core/split-register-layout.c:642
-#: gnucash/register/ledger-core/split-register-layout.c:650
-msgid "sample:12/12/2000"
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:81
+#, fuzzy
+msgctxt "sample for 'Date'"
+msgid "12/12/2000"
msgstr "sample:12.12.2000"
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:85
-msgid "sample:Description of an Entry"
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:86
+#, fuzzy
+msgctxt "sample for 'Description'"
+msgid "Description of an Entry"
msgstr "sample:Beschreibungsbeispiel einer Buchung"
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:89
-msgid "sample:Action"
-msgstr "sample:Aktion"
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:92
+#, fuzzy
+msgctxt "sample"
+msgid "Action"
+msgstr "Aktion"
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:93
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:101
-msgid "sample:9,999.00"
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:96
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:104
+#, fuzzy
+msgctxt "sample"
+msgid "9,999.00"
msgstr "sample:9.999,00"
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:97
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:137
-msgid "sample:999,999.00"
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:100
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:145
+#, fuzzy
+msgctxt "sample"
+msgid "999,999.00"
msgstr "sample:999.999,00"
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:106
-msgid "sample(DT):+%"
-msgstr "sample(DT):+%"
-
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:111
-msgid "sample(DH):+%"
-msgstr "sample(DH):+%"
+#. Translators: Header for Discount Type
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:110
+#, fuzzy, no-c-format
+msgctxt "sample for 'Discount Type'"
+msgid "+%"
+msgstr "%"
+#. Translators: Header for Discount How
#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:116
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:121
-#: gnucash/register/ledger-core/split-register-layout.c:735
-#: gnucash/register/ledger-core/split-register-layout.c:743
-msgid "sample:Expenses:Automobile:Gasoline"
+#, fuzzy, no-c-format
+msgctxt "sample for Discount How'"
+msgid "+%"
+msgstr "%"
+
+#. Translators: Enter the longest expected path of an Account
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:122
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:127
+#: gnucash/register/ledger-core/split-register-layout.c:723
+#: gnucash/register/ledger-core/split-register-layout.c:731
+#, fuzzy
+msgctxt "sample"
+msgid "Expenses:Automobile:Gasoline"
msgstr ""
"sample:Aufwendungen 2/4:Reparatur/Instandhaltung:4805 Reparatur u. Instandh. "
"von Anlagen/Maschinen u. Betriebs- u. Geschäftsausst."
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:125
-msgid "sample:T?"
-msgstr "sample:T?"
-
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:129
-msgid "sample:TI"
-msgstr "sample:TI"
+#. Translators: Abbreviation sample for Taxable?
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:132
+#, fuzzy
+msgctxt "sample for 'Taxable'"
+msgid "T?"
+msgstr "St."
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:133
-msgid "sample:Tax Table 1"
-msgstr "sample:Steuertabelle Eins"
+#. Translators: Abbreviation sample for Tax Included
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:137
+#, fuzzy
+msgctxt "sample for 'Tax Included'"
+msgid "TI"
+msgstr "St."
#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:141
-msgid "sample:999.00"
+#, fuzzy
+msgctxt "sample for 'Tax Table'"
+msgid "Tax Table 1"
+msgstr "Steuertabelle: "
+
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:149
+#, fuzzy
+msgctxt "sample"
+msgid "999.00"
msgstr "sample:999,00"
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:145
-msgid "sample:BI"
-msgstr "sample:BI"
+#. Translators: Abbreviation sample for Billable
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:154
+msgctxt "sample for 'Billable'"
+msgid "BI"
+msgstr ""
-#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:149
-msgid "sample:Payment"
-msgstr "sample:Zahlung"
+#: gnucash/register/ledger-core/gncEntryLedgerLayout.c:158
+#, fuzzy
+msgctxt "sample"
+msgid "Payment"
+msgstr "Zahlung"
#: gnucash/register/ledger-core/gncEntryLedgerLoad.c:53
msgid "$"
@@ -21574,8 +21612,8 @@ msgstr "Berechnung Nachlass"
#: gnucash/report/business-reports/invoice.scm:97
#: gnucash/report/business-reports/receipt.scm:92
#: gnucash/report/business-reports/receipt.scm:173
-#: gnucash/report/business-reports/taxinvoice.scm:116
-#: gnucash/report/business-reports/taxinvoice.scm:199
+#: gnucash/report/business-reports/taxinvoice.scm:115
+#: gnucash/report/business-reports/taxinvoice.scm:198
msgid "Unit Price"
msgstr "Stückpreis"
@@ -21801,63 +21839,80 @@ msgstr ""
#. Translators: The 'sample:' items are
#. strings which are not displayed, but only
-#. used to estimate widths. Please only
-#. translate the portion after the ':' and
-#. leave the rest ("sample:") as is.
-#: gnucash/register/ledger-core/split-register-layout.c:663
-#: gnucash/register/ledger-core/split-register-layout.c:671
-msgid "sample:99999"
-msgstr "sample:99999"
-
-#: gnucash/register/ledger-core/split-register-layout.c:679
-msgid "sample:Description of a transaction"
+#. used to estimate widths.
+#: gnucash/register/ledger-core/split-register-layout.c:640
+#: gnucash/register/ledger-core/split-register-layout.c:648
+#, fuzzy
+msgctxt "sample"
+msgid "12/12/2000"
+msgstr "sample:12.12.2000"
+
+#. Translators: The 'sample' items are
+#. strings which are not displayed, but only
+#. used to estimate widths.
+#: gnucash/register/ledger-core/split-register-layout.c:659
+#: gnucash/register/ledger-core/split-register-layout.c:667
+msgctxt "sample"
+msgid "99999"
+msgstr ""
+
+#: gnucash/register/ledger-core/split-register-layout.c:675
+#, fuzzy
+msgctxt "sample"
+msgid "Description of a transaction"
msgstr "sample:Beschreibungsbeispiel einer Buchung"
-#. Translators: The abbreviation for 'Associate'
-#. in the header row of the register. Please only
-#. translate the portion after the ':' and
-#. leave the rest ("Associate:") as is.
-#: gnucash/register/ledger-core/split-register-layout.c:711
+#: gnucash/register/ledger-core/split-register-layout.c:699
#: gnucash/register/ledger-core/split-register-model.c:328
-msgid "Associate:A"
-msgstr "Associate:Z"
-
-#: gnucash/register/ledger-core/split-register-layout.c:719
-#: gnucash/register/ledger-core/split-register-layout.c:759
-#: gnucash/register/ledger-core/split-register-layout.c:767
-#: gnucash/register/ledger-core/split-register-layout.c:775
-#: gnucash/register/ledger-core/split-register-layout.c:785
-#: gnucash/register/ledger-core/split-register-layout.c:793
-#: gnucash/register/ledger-core/split-register-layout.c:801
-#: gnucash/register/ledger-core/split-register-layout.c:809
-#: gnucash/register/ledger-core/split-register-layout.c:817
-#: gnucash/register/ledger-core/split-register-layout.c:869
-msgid "sample:999,999.000"
+#, fuzzy
+msgctxt "Column header for 'Associate'"
+msgid "A"
+msgstr "Neu"
+
+#: gnucash/register/ledger-core/split-register-layout.c:707
+#: gnucash/register/ledger-core/split-register-layout.c:747
+#: gnucash/register/ledger-core/split-register-layout.c:755
+#: gnucash/register/ledger-core/split-register-layout.c:763
+#: gnucash/register/ledger-core/split-register-layout.c:773
+#: gnucash/register/ledger-core/split-register-layout.c:781
+#: gnucash/register/ledger-core/split-register-layout.c:789
+#: gnucash/register/ledger-core/split-register-layout.c:797
+#: gnucash/register/ledger-core/split-register-layout.c:805
+#: gnucash/register/ledger-core/split-register-layout.c:853
+#, fuzzy
+msgctxt "sample"
+msgid "999,999.000"
msgstr "sample:999.999,000"
-#: gnucash/register/ledger-core/split-register-layout.c:751
-msgid "sample:Memo field sample text string"
+#: gnucash/register/ledger-core/split-register-layout.c:739
+#, fuzzy
+msgctxt "sample"
+msgid "Memo field sample text string"
msgstr "sample:Buchungstext-Feld irgendein Beispieltext"
-#. Translators: The abbreviation for 'Type'
-#. in the header row of the register. Please only
-#. translate the portion after the ':' and
-#. leave the rest ("Type:") as is.
-#: gnucash/register/ledger-core/split-register-layout.c:829
-msgid "Type:T"
-msgstr "Type:T"
+#: gnucash/register/ledger-core/split-register-layout.c:813
+#, fuzzy
+msgctxt "Column header for 'Type'"
+msgid "T"
+msgstr "St."
-#: gnucash/register/ledger-core/split-register-layout.c:837
-msgid "sample:Notes field sample text string"
+#: gnucash/register/ledger-core/split-register-layout.c:821
+#, fuzzy
+msgctxt "sample"
+msgid "Notes field sample text string"
msgstr "sample:Bemerkungsfeld irgendein Beispieltext"
-#: gnucash/register/ledger-core/split-register-layout.c:845
-msgid "sample:No Particular Reason"
+#: gnucash/register/ledger-core/split-register-layout.c:829
+#, fuzzy
+msgctxt "sample"
+msgid "No Particular Reason"
msgstr "sample:Keinen besonderen Grund"
-#: gnucash/register/ledger-core/split-register-layout.c:853
-#: gnucash/register/ledger-core/split-register-layout.c:861
-msgid "sample:(x + 0.33 * y + (x+y) )"
+#: gnucash/register/ledger-core/split-register-layout.c:837
+#: gnucash/register/ledger-core/split-register-layout.c:845
+#, fuzzy
+msgctxt "sample"
+msgid "(x + 0.33 * y + (x+y) )"
msgstr "sample: (x + 0,33 * y + (x+y) )"
#: gnucash/register/ledger-core/split-register-load.c:278
@@ -21915,11 +21970,11 @@ msgstr "Abgeglichen am %s"
#. This seems to be the one that initially gets used, the InactiveDateCell
#. is set to, and subsequently displayed.
-#: gnucash/register/ledger-core/split-register-model.c:1019
+#: gnucash/register/ledger-core/split-register-model.c:1021
msgid "Scheduled"
msgstr "Terminiert"
-#: gnucash/register/ledger-core/split-register-model.c:1068
+#: gnucash/register/ledger-core/split-register-model.c:1070
msgid ""
"Enter a reference, such as an invoice or check number, common to all entry "
"lines (splits)"
@@ -21927,7 +21982,7 @@ msgstr ""
"Geben Sie die Buchungsreferenz, z.B. die Rechnungs- oder Scheck-Nummer, "
"welche für die gesamte Buchung gilt, ein."
-#: gnucash/register/ledger-core/split-register-model.c:1070
+#: gnucash/register/ledger-core/split-register-model.c:1072
msgid ""
"Enter a reference, such as an invoice or check number, unique to each entry "
"line (split)"
@@ -21935,21 +21990,21 @@ msgstr ""
"Geben Sie die Buchungsreferenz, z.B. die Rechnungs- oder Scheck-Nummer, für "
"diesen Buchungsteil ein."
-#: gnucash/register/ledger-core/split-register-model.c:1075
+#: gnucash/register/ledger-core/split-register-model.c:1077
msgid ""
"Enter a reference, such as a check number, common to all entry lines (splits)"
msgstr ""
"Geben Sie eine für alle Teilbuchungen geltende Referenz ein, z.B. die "
"Rechnungs- oder Scheck-Nummer"
-#: gnucash/register/ledger-core/split-register-model.c:1077
+#: gnucash/register/ledger-core/split-register-model.c:1079
msgid ""
"Enter a reference, such as a check number, unique to each entry line (split)"
msgstr ""
"Geben Sie eine für jede Teilbuchung eindeutige Referenz ein, z.B. die "
"Rechnungs- oder Scheck-Nummer."
-#: gnucash/register/ledger-core/split-register-model.c:1098
+#: gnucash/register/ledger-core/split-register-model.c:1100
msgid ""
"Enter a transaction reference, such as an invoice or check number, common to "
"all entry lines (splits)"
@@ -21957,17 +22012,17 @@ msgstr ""
"Geben Sie eine für alle Teilbuchungen geltende Buchungsreferenz ein, z.B. "
"die Rechnungs- oder Scheck-Nummer."
-#: gnucash/register/ledger-core/split-register-model.c:1102
+#: gnucash/register/ledger-core/split-register-model.c:1104
msgid ""
"Enter a transaction reference that will be common to all entry lines (splits)"
msgstr ""
"Geben Sie eine Buchungsreferenz an, welche für alle Teilbuchungen gilt."
-#: gnucash/register/ledger-core/split-register-model.c:1306
+#: gnucash/register/ledger-core/split-register-model.c:1308
msgid "Enter an action type, or choose one from the list"
msgstr "Geben Sie die Aktion ein, oder wählen Sie eine aus der Liste"
-#: gnucash/register/ledger-core/split-register-model.c:1307
+#: gnucash/register/ledger-core/split-register-model.c:1309
msgid ""
"Enter a reference number, such as the next check number, or choose an action "
"type from the list"
@@ -21975,21 +22030,21 @@ msgstr ""
"Geben Sie eine Referenznummer wie etwa die nächste Schecknummer ein oder "
"wählen sie eine Aktion aus der Liste."
-#: gnucash/register/ledger-core/split-register-model.c:1574
+#: gnucash/register/ledger-core/split-register-model.c:1576
msgid ""
"This transaction has multiple splits; press the Split button to see them all"
msgstr ""
"Dieser Buchungssatz hat mehrere Buchungsteile. Klicken Sie auf "
"»Vollständig«, um alle sehen zu können."
-#: gnucash/register/ledger-core/split-register-model.c:1577
+#: gnucash/register/ledger-core/split-register-model.c:1579
msgid ""
"This transaction is a stock split; press the Split button to see details"
msgstr ""
"Dieser Buchungssatz ist eine Aktienteilung. Klicken Sie auf »Vollständig«, "
"um Einzelheiten sehen zu können."
-#: gnucash/register/ledger-core/split-register-model.c:2076
+#: gnucash/register/ledger-core/split-register-model.c:2078
#, c-format
msgid ""
"Cannot modify or delete this transaction. This transaction is marked read-"
@@ -22002,12 +22057,12 @@ msgstr ""
"\n"
"»%s«"
-#: gnucash/register/ledger-core/split-register-model.c:2193
+#: gnucash/register/ledger-core/split-register-model.c:2195
msgid "Change transaction containing a reconciled split?"
msgstr ""
"Buchung ändern, auch wenn diese einen abgeglichenem Buchungsteil enthält?"
-#: gnucash/register/ledger-core/split-register-model.c:2195
+#: gnucash/register/ledger-core/split-register-model.c:2197
#, c-format
msgid ""
"The transaction you are about to change is protected because it contains "
@@ -22025,7 +22080,7 @@ msgstr ""
"Wenn sie fortfahren, werden diese wieder auf »Nicht abgeglichen« gesetzt. "
"Dies kann das nächste Abgleichen erschweren. Wollen Sie trotzdem fortfahren?"
-#: gnucash/register/ledger-core/split-register-model.c:2207
+#: gnucash/register/ledger-core/split-register-model.c:2209
msgid ""
"You are about to change a protected field of a reconciled split. If you "
"continue editing this split it will be unreconciled. This might make future "
@@ -22035,7 +22090,7 @@ msgstr ""
"Wenn sie fortfahren, wird dieser wieder auf »Nicht abgeglichen« gesetzt. "
"Wollen Sie trotzdem fortfahren?"
-#: gnucash/register/ledger-core/split-register-model.c:2232
+#: gnucash/register/ledger-core/split-register-model.c:2234
msgid "Chan_ge Transaction"
msgstr "Buchung _ändern"
@@ -22349,7 +22404,7 @@ msgid "Trading Accounts"
msgstr "Devisenhandel-Konten"
#: gnucash/report/business-reports/balsheet-eg.eguile.scm:194
-#: gnucash/report/standard-reports/balance-sheet.scm:670
+#: gnucash/report/standard-reports/balance-sheet.scm:669
msgid "Retained Losses"
msgstr "Erwirtschafteter Verlust"
@@ -22526,7 +22581,7 @@ msgstr "SchriftgröÃe im CSS-font-size-Format, z.B. \"medium\" oder \"10pt\""
#: gnucash/report/business-reports/balsheet-eg.scm:219
#: gnucash/report/business-reports/receipt.scm:82
-#: gnucash/report/business-reports/taxinvoice.scm:108
+#: gnucash/report/business-reports/taxinvoice.scm:107
msgid "Template file"
msgstr "Vorlagendatei"
@@ -22542,7 +22597,7 @@ msgstr ""
#: gnucash/report/business-reports/balsheet-eg.scm:222
#: gnucash/report/business-reports/receipt.scm:83
-#: gnucash/report/business-reports/taxinvoice.scm:109
+#: gnucash/report/business-reports/taxinvoice.scm:108
msgid "CSS stylesheet file"
msgstr "CSS Stilvorlage"
@@ -22562,7 +22617,7 @@ msgid "Extra Notes"
msgstr "Zusätzliche Bemerkungen"
#: gnucash/report/business-reports/balsheet-eg.scm:226
-#: gnucash/report/business-reports/taxinvoice.scm:232
+#: gnucash/report/business-reports/taxinvoice.scm:231
msgid "Notes added at end of invoice -- may contain HTML markup."
msgstr "Zusätzlicher Text am Ende der Rechnung â darf HTML-Elemente enthalten."
@@ -22863,8 +22918,8 @@ msgstr "Kundenüber_sicht"
#: gnucash/report/business-reports/invoice.scm:256
#: gnucash/report/business-reports/receipt.scm:97
#: gnucash/report/business-reports/receipt.scm:183
-#: gnucash/report/business-reports/taxinvoice.scm:121
-#: gnucash/report/business-reports/taxinvoice.scm:209
+#: gnucash/report/business-reports/taxinvoice.scm:120
+#: gnucash/report/business-reports/taxinvoice.scm:208
msgid "Tax Amount"
msgstr "Betrag Steuern"
@@ -22947,7 +23002,7 @@ msgstr "Ort des Bildes"
#. customers-only)) ;-- see above
#. Elements page options
#: gnucash/report/business-reports/invoice.scm:222
-#: gnucash/report/business-reports/taxinvoice.scm:155
+#: gnucash/report/business-reports/taxinvoice.scm:154
#: gnucash/report/report-system/trep-engine.scm:915
#: gnucash/report/standard-reports/register.scm:382
msgid "Display the date?"
@@ -23005,7 +23060,7 @@ msgstr "Anzeigen des Betrags des Postens?"
#: gnucash/report/business-reports/invoice.scm:351
#: gnucash/report/business-reports/invoice.scm:356
#: gnucash/report/business-reports/receipt.scm:77
-#: gnucash/report/business-reports/taxinvoice.scm:84
+#: gnucash/report/business-reports/taxinvoice.scm:83
#: gnucash/report/report-system/report.scm:70
#: gnucash/report/standard-reports/register.scm:381
#: gnucash/report/standard-reports/register.scm:387
@@ -23146,7 +23201,7 @@ msgid "Extra notes to put on the invoice."
msgstr "Zusätzliche Bemerkungen, die auf die Rechnung gedruckt werden sollen."
#: gnucash/report/business-reports/invoice.scm:358
-#: gnucash/report/business-reports/taxinvoice.scm:233
+#: gnucash/report/business-reports/taxinvoice.scm:232
msgid "Thank you for your patronage!"
msgstr "Vielen Dank für das uns entgegengebrachte Vertrauen!"
@@ -23187,24 +23242,24 @@ msgstr "St."
#: gnucash/report/business-reports/invoice.scm:552
#: gnucash/report/business-reports/receipt.scm:95
#: gnucash/report/business-reports/receipt.scm:179
-#: gnucash/report/business-reports/taxinvoice.scm:119
-#: gnucash/report/business-reports/taxinvoice.scm:205
+#: gnucash/report/business-reports/taxinvoice.scm:118
+#: gnucash/report/business-reports/taxinvoice.scm:204
msgid "Net Price"
msgstr "Nettobetrag"
#: gnucash/report/business-reports/invoice.scm:568
#: gnucash/report/business-reports/receipt.scm:98
#: gnucash/report/business-reports/receipt.scm:185
-#: gnucash/report/business-reports/taxinvoice.scm:122
-#: gnucash/report/business-reports/taxinvoice.scm:211
+#: gnucash/report/business-reports/taxinvoice.scm:121
+#: gnucash/report/business-reports/taxinvoice.scm:210
msgid "Total Price"
msgstr "Gesamtbetrag"
#: gnucash/report/business-reports/invoice.scm:588
#: gnucash/report/business-reports/receipt.scm:100
#: gnucash/report/business-reports/receipt.scm:189
-#: gnucash/report/business-reports/taxinvoice.scm:124
-#: gnucash/report/business-reports/taxinvoice.scm:215
+#: gnucash/report/business-reports/taxinvoice.scm:123
+#: gnucash/report/business-reports/taxinvoice.scm:214
msgid "Amount Due"
msgstr "Noch zu zahlen"
@@ -23440,7 +23495,7 @@ msgstr "Ãberschriften 2"
#. option names
#: gnucash/report/business-reports/receipt.scm:80
-#: gnucash/report/business-reports/taxinvoice.scm:107
+#: gnucash/report/business-reports/taxinvoice.scm:106
msgid "Report title"
msgstr "Berichtstitel"
@@ -23450,12 +23505,12 @@ msgid "Invoice number"
msgstr "Rechnungsnummer"
#: gnucash/report/business-reports/receipt.scm:84
-#: gnucash/report/business-reports/taxinvoice.scm:110
+#: gnucash/report/business-reports/taxinvoice.scm:109
msgid "Heading font"
msgstr "Schriftart Titel"
#: gnucash/report/business-reports/receipt.scm:85
-#: gnucash/report/business-reports/taxinvoice.scm:111
+#: gnucash/report/business-reports/taxinvoice.scm:110
msgid "Text font"
msgstr "Schriftart Text"
@@ -23477,54 +23532,54 @@ msgstr "FuÃzeile Logobreite"
#: gnucash/report/business-reports/receipt.scm:90
#: gnucash/report/business-reports/receipt.scm:169
-#: gnucash/report/business-reports/taxinvoice.scm:114
-#: gnucash/report/business-reports/taxinvoice.scm:195
-#: gnucash/report/standard-reports/portfolio.scm:257
+#: gnucash/report/business-reports/taxinvoice.scm:113
+#: gnucash/report/business-reports/taxinvoice.scm:194
+#: gnucash/report/standard-reports/portfolio.scm:256
msgid "Units"
msgstr "Einheiten"
#: gnucash/report/business-reports/receipt.scm:91
#: gnucash/report/business-reports/receipt.scm:171
-#: gnucash/report/business-reports/taxinvoice.scm:115
-#: gnucash/report/business-reports/taxinvoice.scm:197
+#: gnucash/report/business-reports/taxinvoice.scm:114
+#: gnucash/report/business-reports/taxinvoice.scm:196
msgid "Qty"
msgstr "Anzahl"
#: gnucash/report/business-reports/receipt.scm:93
#: gnucash/report/business-reports/receipt.scm:175
-#: gnucash/report/business-reports/taxinvoice.scm:117
-#: gnucash/report/business-reports/taxinvoice.scm:201
+#: gnucash/report/business-reports/taxinvoice.scm:116
+#: gnucash/report/business-reports/taxinvoice.scm:200
msgid "Discount Rate"
msgstr "Diskontsatz"
#: gnucash/report/business-reports/receipt.scm:94
#: gnucash/report/business-reports/receipt.scm:177
-#: gnucash/report/business-reports/taxinvoice.scm:118
-#: gnucash/report/business-reports/taxinvoice.scm:203
+#: gnucash/report/business-reports/taxinvoice.scm:117
+#: gnucash/report/business-reports/taxinvoice.scm:202
msgid "Discount Amount"
msgstr "Diskontbetrag"
#: gnucash/report/business-reports/receipt.scm:96
#: gnucash/report/business-reports/receipt.scm:181
-#: gnucash/report/business-reports/taxinvoice.scm:120
-#: gnucash/report/business-reports/taxinvoice.scm:207
+#: gnucash/report/business-reports/taxinvoice.scm:119
+#: gnucash/report/business-reports/taxinvoice.scm:206
msgid "Tax Rate"
msgstr "Steuersatz"
#: gnucash/report/business-reports/receipt.scm:99
#: gnucash/report/business-reports/receipt.scm:187
-#: gnucash/report/business-reports/taxinvoice.scm:123
-#: gnucash/report/business-reports/taxinvoice.scm:213
+#: gnucash/report/business-reports/taxinvoice.scm:122
+#: gnucash/report/business-reports/taxinvoice.scm:212
msgid "Sub-total"
msgstr "Zwischensumme"
#: gnucash/report/business-reports/receipt.scm:101
-#: gnucash/report/business-reports/taxinvoice.scm:125
+#: gnucash/report/business-reports/taxinvoice.scm:124
msgid "Payment received text"
msgstr "Text für Danksagung"
#: gnucash/report/business-reports/receipt.scm:102
-#: gnucash/report/business-reports/taxinvoice.scm:126
+#: gnucash/report/business-reports/taxinvoice.scm:125
msgid "Extra notes"
msgstr "Zusätzliche Bemerkungen"
@@ -23606,7 +23661,7 @@ msgid "%l:%M %P, %e %B %Y"
msgstr "%A, %d. %B %Y"
#: gnucash/report/business-reports/receipt.scm:192
-#: gnucash/report/business-reports/taxinvoice.scm:218
+#: gnucash/report/business-reports/taxinvoice.scm:217
msgid "Payment received, thank you!"
msgstr "Betrag dankend erhalten!"
@@ -23658,140 +23713,140 @@ msgstr "Webseite"
msgid "Invoice Date"
msgstr "Rechnungsdatum"
-#: gnucash/report/business-reports/taxinvoice.scm:85
+#: gnucash/report/business-reports/taxinvoice.scm:84
msgid "Elements"
msgstr "Elemente"
#. option names
-#: gnucash/report/business-reports/taxinvoice.scm:87
+#: gnucash/report/business-reports/taxinvoice.scm:86
msgid "column: Date"
msgstr "Spalte: Datum"
-#: gnucash/report/business-reports/taxinvoice.scm:88
+#: gnucash/report/business-reports/taxinvoice.scm:87
msgid "column: Tax Rate"
msgstr "Spalte: Steuersatz"
-#: gnucash/report/business-reports/taxinvoice.scm:89
+#: gnucash/report/business-reports/taxinvoice.scm:88
msgid "column: Units"
msgstr "Spalte: Einheiten"
-#: gnucash/report/business-reports/taxinvoice.scm:90
+#: gnucash/report/business-reports/taxinvoice.scm:89
msgid "row: Address"
msgstr "Zeile: Adresse"
-#: gnucash/report/business-reports/taxinvoice.scm:91
+#: gnucash/report/business-reports/taxinvoice.scm:90
msgid "row: Contact"
msgstr "Zeile: Kontaktadresse"
-#: gnucash/report/business-reports/taxinvoice.scm:92
+#: gnucash/report/business-reports/taxinvoice.scm:91
msgid "row: Invoice Number"
msgstr "Zeile: Rechnungsnummer"
-#: gnucash/report/business-reports/taxinvoice.scm:93
+#: gnucash/report/business-reports/taxinvoice.scm:92
msgid "row: Company Name"
msgstr "Zeile: Firmenname"
-#: gnucash/report/business-reports/taxinvoice.scm:94
+#: gnucash/report/business-reports/taxinvoice.scm:93
msgid "Invoice number text"
msgstr "Text Rechnungsnummer"
-#: gnucash/report/business-reports/taxinvoice.scm:95
+#: gnucash/report/business-reports/taxinvoice.scm:94
msgid "To text"
msgstr "Text 'An'"
-#: gnucash/report/business-reports/taxinvoice.scm:96
+#: gnucash/report/business-reports/taxinvoice.scm:95
msgid "Ref text"
msgstr "Text Referenz"
-#: gnucash/report/business-reports/taxinvoice.scm:97
+#: gnucash/report/business-reports/taxinvoice.scm:96
msgid "Job Name text"
msgstr "Text Auftragsname"
-#: gnucash/report/business-reports/taxinvoice.scm:98
+#: gnucash/report/business-reports/taxinvoice.scm:97
msgid "Job Number text"
msgstr "Text Auftragsnummer"
-#: gnucash/report/business-reports/taxinvoice.scm:99
+#: gnucash/report/business-reports/taxinvoice.scm:98
msgid "Show Job name"
msgstr "Auftragsname zeigen?"
-#: gnucash/report/business-reports/taxinvoice.scm:100
+#: gnucash/report/business-reports/taxinvoice.scm:99
msgid "Show Job number"
msgstr "Auftragsnummer zeigen?"
-#: gnucash/report/business-reports/taxinvoice.scm:101
+#: gnucash/report/business-reports/taxinvoice.scm:100
msgid "Show net price"
msgstr "Nettopreis anzeigen"
-#: gnucash/report/business-reports/taxinvoice.scm:102
+#: gnucash/report/business-reports/taxinvoice.scm:101
msgid "Invoice number next to title"
msgstr "Rechnungsnummer neben Titel?"
-#: gnucash/report/business-reports/taxinvoice.scm:103
+#: gnucash/report/business-reports/taxinvoice.scm:102
msgid "table-border-collapse"
msgstr "table-border-collapse"
-#: gnucash/report/business-reports/taxinvoice.scm:104
+#: gnucash/report/business-reports/taxinvoice.scm:103
msgid "table-header-border-color"
msgstr "table-header-border-color"
-#: gnucash/report/business-reports/taxinvoice.scm:105
+#: gnucash/report/business-reports/taxinvoice.scm:104
msgid "table-cell-border-color"
msgstr "table-cell-border-color"
-#: gnucash/report/business-reports/taxinvoice.scm:106
+#: gnucash/report/business-reports/taxinvoice.scm:105
msgid "Embedded CSS"
msgstr "Eingebettetes CSS"
-#: gnucash/report/business-reports/taxinvoice.scm:112
+#: gnucash/report/business-reports/taxinvoice.scm:111
msgid "Logo filename"
msgstr "Logo Dateiname"
-#: gnucash/report/business-reports/taxinvoice.scm:113
+#: gnucash/report/business-reports/taxinvoice.scm:112
msgid "Logo width"
msgstr "Logobreite"
-#: gnucash/report/business-reports/taxinvoice.scm:156
+#: gnucash/report/business-reports/taxinvoice.scm:155
msgid "Display the Tax Rate?"
msgstr "Anzeigen des Steuersatzes?"
-#: gnucash/report/business-reports/taxinvoice.scm:157
+#: gnucash/report/business-reports/taxinvoice.scm:156
msgid "Display the Units?"
msgstr "Anzeigen der Einheiten?"
-#: gnucash/report/business-reports/taxinvoice.scm:158
+#: gnucash/report/business-reports/taxinvoice.scm:157
msgid "Display the contact?"
msgstr "Kontakt anzeigen?"
-#: gnucash/report/business-reports/taxinvoice.scm:159
+#: gnucash/report/business-reports/taxinvoice.scm:158
msgid "Display the address?"
msgstr "Anzeigen der Adresse?"
-#: gnucash/report/business-reports/taxinvoice.scm:160
+#: gnucash/report/business-reports/taxinvoice.scm:159
msgid "Display the Invoice Number?"
msgstr "Anzeigen der Rechnungsnummer?"
-#: gnucash/report/business-reports/taxinvoice.scm:161
+#: gnucash/report/business-reports/taxinvoice.scm:160
msgid "Display the Company Name?"
msgstr "Anzeigen des Firmennamens?"
-#: gnucash/report/business-reports/taxinvoice.scm:162
+#: gnucash/report/business-reports/taxinvoice.scm:161
msgid "Invoice Number next to title?"
msgstr "Rechnungsnummer neben Dokumentenüberschrift?"
-#: gnucash/report/business-reports/taxinvoice.scm:163
+#: gnucash/report/business-reports/taxinvoice.scm:162
msgid "Display Job name?"
msgstr "Auftragsbezeichnung anzeigen?"
-#: gnucash/report/business-reports/taxinvoice.scm:164
+#: gnucash/report/business-reports/taxinvoice.scm:163
msgid "Invoice Job number?"
msgstr "Auftragsnummer?"
-#: gnucash/report/business-reports/taxinvoice.scm:165
+#: gnucash/report/business-reports/taxinvoice.scm:164
msgid "Show net price?"
msgstr "Den Nettopreis anzeigen?"
-#: gnucash/report/business-reports/taxinvoice.scm:169
+#: gnucash/report/business-reports/taxinvoice.scm:168
msgid ""
"The file name of the eguile template part of this report. This file should "
"either be in your .gnucash directory, or else in its proper place within the "
@@ -23801,7 +23856,7 @@ msgstr ""
"entweder in Ihrem .gnucash-Verzeichnis befinden oder an ihrem angestammten "
"Platz in den GnuCash-Installationsverzeichnissen."
-#: gnucash/report/business-reports/taxinvoice.scm:172
+#: gnucash/report/business-reports/taxinvoice.scm:171
msgid ""
"The file name of the CSS stylesheet to use with this report. This file "
"should either be in your .gnucash directory, or else in its proper place "
@@ -23811,21 +23866,21 @@ msgstr ""
"Sie sollte sich entweder in Ihrem .gnucash-Verzeichnis befinden oder an "
"ihrem angestammten Platz in den GnuCash-Installationsverzeichnissen."
-#: gnucash/report/business-reports/taxinvoice.scm:176
+#: gnucash/report/business-reports/taxinvoice.scm:175
msgid "Font to use for the main heading."
msgstr "Zeichensatz für die Hauptüberschrift."
-#: gnucash/report/business-reports/taxinvoice.scm:179
+#: gnucash/report/business-reports/taxinvoice.scm:178
msgid "Font to use for everything else."
msgstr "Zeichensatz für alles andere."
-#: gnucash/report/business-reports/taxinvoice.scm:182
+#: gnucash/report/business-reports/taxinvoice.scm:181
msgid "Name of a file containing a logo to be used on the report."
msgstr ""
"Name der Datei, welche das Logo enthält, das in diesem Bericht verwendet "
"werden soll."
-#: gnucash/report/business-reports/taxinvoice.scm:185
+#: gnucash/report/business-reports/taxinvoice.scm:184
msgid ""
"Width of the logo in CSS format, e.g. 10% or 32px. Leave blank to display "
"the logo at its natural width. The height of the logo will be scaled "
@@ -23835,80 +23890,78 @@ msgstr ""
"Ohne Angabe wird das Logo in seiner natürlichen Breite angegeben.\n"
"Die Höhe des Logos wird entsprechend angepaÃt."
-#: gnucash/report/business-reports/taxinvoice.scm:186
+#: gnucash/report/business-reports/taxinvoice.scm:185
msgid "Border-collapse?"
msgstr "Border-collapse?"
+#: gnucash/report/business-reports/taxinvoice.scm:186
#: gnucash/report/business-reports/taxinvoice.scm:187
-#: gnucash/report/business-reports/taxinvoice.scm:188
msgid "CSS color."
msgstr "CSS-Farbe."
-#: gnucash/report/business-reports/taxinvoice.scm:220
+#: gnucash/report/business-reports/taxinvoice.scm:219
msgid "Invoice number: "
msgstr "Rechnungsnummer:"
-#: gnucash/report/business-reports/taxinvoice.scm:222
+#: gnucash/report/business-reports/taxinvoice.scm:221
msgid "To: "
msgstr "An: "
-#: gnucash/report/business-reports/taxinvoice.scm:224
+#: gnucash/report/business-reports/taxinvoice.scm:223
msgid "Your ref: "
msgstr "Ihr Zeichen: "
-#: gnucash/report/business-reports/taxinvoice.scm:226
+#: gnucash/report/business-reports/taxinvoice.scm:225
msgid "Job number: "
msgstr "Auftragsnummer:"
-#: gnucash/report/business-reports/taxinvoice.scm:228
+#: gnucash/report/business-reports/taxinvoice.scm:227
msgid "Job name: "
msgstr "Auftragsbezeichnung:"
-#: gnucash/report/business-reports/taxinvoice.scm:237
+#: gnucash/report/business-reports/taxinvoice.scm:236
msgid "Embedded CSS."
msgstr "Eingebettetes CSS."
-#: gnucash/report/business-reports/taxinvoice.scm:319
+#: gnucash/report/business-reports/taxinvoice.scm:318
msgid "Display a customer invoice with tax columns (using eguile template)"
msgstr "Kundenrechnung mit Spalten für Steuerangaben (mit »eguile«-Vorlage)"
-#. (gnc:warn "title: " (gnc:option-value title-op))
-#: gnucash/report/business-reports/taxinvoice.scm:332
+#: gnucash/report/business-reports/taxinvoice.scm:330
msgid "Unit"
msgstr "Einheit"
-#. (gnc:warn "unitprice: " (gnc:option-value unit-price-op))
-#: gnucash/report/business-reports/taxinvoice.scm:334
+#: gnucash/report/business-reports/taxinvoice.scm:331
msgid "GST Rate"
msgstr "Steuersatz"
-#: gnucash/report/business-reports/taxinvoice.scm:335
+#: gnucash/report/business-reports/taxinvoice.scm:332
msgid "GST Amount"
msgstr "Steuerbetrag"
-#: gnucash/report/business-reports/taxinvoice.scm:336
+#: gnucash/report/business-reports/taxinvoice.scm:333
msgid "Amount Due (inc GST)"
msgstr "Fälliger Bruttobetrag"
# Im deutschsprachigen Raum ist # nicht üblich als Zeichen für Nr.
-#: gnucash/report/business-reports/taxinvoice.scm:337
+#: gnucash/report/business-reports/taxinvoice.scm:334
msgid "Invoice #: "
msgstr "Rechnungsnr.:"
-#: gnucash/report/business-reports/taxinvoice.scm:338
+#: gnucash/report/business-reports/taxinvoice.scm:335
msgid "Reference: "
msgstr "Referenz: "
-#: gnucash/report/business-reports/taxinvoice.scm:339
+#: gnucash/report/business-reports/taxinvoice.scm:336
msgid "Engagement: "
msgstr "Auftrag:"
-#: gnucash/report/business-reports/taxinvoice.scm:345
-#: gnucash/report/business-reports/taxinvoice.scm:347
+#: gnucash/report/business-reports/taxinvoice.scm:342
+#: gnucash/report/business-reports/taxinvoice.scm:344
msgid "Australian Tax Invoice"
msgstr "Australische Rechnung mit Steuerangaben"
-#: gnucash/report/business-reports/taxinvoice.scm:348
+#: gnucash/report/business-reports/taxinvoice.scm:345
msgid ""
"Display an Australian customer invoice with tax columns (using eguile "
"template)"
@@ -24507,7 +24560,7 @@ msgid "Template file \"~a\" can not be read"
msgstr "Die Vorlagen-Datei »~a« konnte nicht gelesen werden."
#: gnucash/report/report-system/html-acct-table.scm:621
-#: gnucash/report/standard-reports/trial-balance.scm:284
+#: gnucash/report/standard-reports/trial-balance.scm:283
msgid "Adjusting Entries"
msgstr "Anpassungsbuchungen"
@@ -25095,19 +25148,19 @@ msgstr "Stilvorlage."
#: gnucash/report/report-system/report-utilities.scm:111
#: gnucash/report/standard-reports/account-piecharts.scm:60
-#: gnucash/report/standard-reports/balance-sheet.scm:634
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:754
-#: gnucash/report/standard-reports/net-charts.scm:410
-#: gnucash/report/standard-reports/net-charts.scm:490
+#: gnucash/report/standard-reports/balance-sheet.scm:633
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:753
+#: gnucash/report/standard-reports/net-charts.scm:408
+#: gnucash/report/standard-reports/net-charts.scm:488
msgid "Assets"
msgstr "Aktiva"
#: gnucash/report/report-system/report-utilities.scm:112
#: gnucash/report/standard-reports/account-piecharts.scm:62
-#: gnucash/report/standard-reports/balance-sheet.scm:435
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:784
-#: gnucash/report/standard-reports/net-charts.scm:410
-#: gnucash/report/standard-reports/net-charts.scm:490
+#: gnucash/report/standard-reports/balance-sheet.scm:434
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:783
+#: gnucash/report/standard-reports/net-charts.scm:408
+#: gnucash/report/standard-reports/net-charts.scm:488
msgid "Liabilities"
msgstr "Verbindlichkeit"
@@ -25992,7 +26045,7 @@ msgstr "Mehrteilige Buchung"
#: gnucash/report/report-system/trep-engine.scm:1591
#: gnucash/report/report-system/trep-engine.scm:1864
-#: gnucash/report/standard-reports/category-barchart.scm:745
+#: gnucash/report/standard-reports/category-barchart.scm:743
msgid "Grand Total"
msgstr "Gesamtbetrag"
@@ -26207,15 +26260,12 @@ msgstr "Durchschnitt pro Woche"
#: gnucash/report/standard-reports/balsheet-pnl.scm:883
#: gnucash/report/standard-reports/budget.scm:455
#: gnucash/report/standard-reports/cashflow-barchart.scm:294
-#: gnucash/report/standard-reports/cash-flow.scm:193
-#: gnucash/report/standard-reports/category-barchart.scm:537
-#: gnucash/report/standard-reports/category-barchart.scm:563
-#: gnucash/report/standard-reports/daily-reports.scm:293
-#: gnucash/report/standard-reports/equity-statement.scm:363
-#: gnucash/report/standard-reports/income-statement.scm:474
-#: gnucash/report/standard-reports/net-charts.scm:371
+#: gnucash/report/standard-reports/cash-flow.scm:191
+#: gnucash/report/standard-reports/category-barchart.scm:535
+#: gnucash/report/standard-reports/category-barchart.scm:561
+#: gnucash/report/standard-reports/daily-reports.scm:291
+#: gnucash/report/standard-reports/net-charts.scm:369
#: gnucash/report/standard-reports/price-scatter.scm:202
-#: gnucash/report/standard-reports/trial-balance.scm:482
#: libgnucash/app-utils/date-utilities.scm:90
#, scheme-format
msgid "~a to ~a"
@@ -26447,8 +26497,8 @@ msgid "Disregard completely any accounts deeper than the depth limit."
msgstr ""
"Ignorieren Konten, die in der Baumstruktur unter dem Tiefenlimit liegen."
-#: gnucash/report/standard-reports/account-summary.scm:445
-#: gnucash/report/standard-reports/sx-summary.scm:446
+#: gnucash/report/standard-reports/account-summary.scm:444
+#: gnucash/report/standard-reports/sx-summary.scm:445
msgid "Account title"
msgstr "Kontobezeichnung"
@@ -26594,7 +26644,7 @@ msgid "Include accounts that have a zero share balances."
msgstr "Unterkonten, die Kontostand Null haben, mit einbeziehen."
#: gnucash/report/standard-reports/advanced-portfolio.scm:1073
-#: gnucash/report/standard-reports/portfolio.scm:256
+#: gnucash/report/standard-reports/portfolio.scm:255
msgid "Listing"
msgstr "Typ"
@@ -26605,14 +26655,14 @@ msgstr "Basis"
#: gnucash/report/standard-reports/advanced-portfolio.scm:1087
#: gnucash/report/standard-reports/cashflow-barchart.scm:313
#: gnucash/report/standard-reports/cashflow-barchart.scm:338
-#: gnucash/report/standard-reports/cash-flow.scm:286
+#: gnucash/report/standard-reports/cash-flow.scm:284
msgid "Money In"
msgstr "Einzahlung"
#: gnucash/report/standard-reports/advanced-portfolio.scm:1088
#: gnucash/report/standard-reports/cashflow-barchart.scm:314
#: gnucash/report/standard-reports/cashflow-barchart.scm:339
-#: gnucash/report/standard-reports/cash-flow.scm:307
+#: gnucash/report/standard-reports/cash-flow.scm:305
msgid "Money Out"
msgstr "Auszahlung"
@@ -26704,7 +26754,7 @@ msgid "Do transaction report on this account."
msgstr "Erstelle den Buchungsbericht zu diesem Konto."
#: gnucash/report/standard-reports/average-balance.scm:114
-#: gnucash/report/standard-reports/average-balance.scm:303
+#: gnucash/report/standard-reports/average-balance.scm:301
#: gnucash/report/standard-reports/category-barchart.scm:188
#: gnucash/report/standard-reports/category-barchart.scm:260
#: gnucash/report/standard-reports/net-charts.scm:134
@@ -26720,7 +26770,7 @@ msgid "Display a table of the selected data."
msgstr "Daten als Tabelle anzeigen."
#: gnucash/report/standard-reports/average-balance.scm:119
-#: gnucash/report/standard-reports/average-balance.scm:302
+#: gnucash/report/standard-reports/average-balance.scm:300
msgid "Show plot"
msgstr "Diagramm anzeigen"
@@ -26729,7 +26779,7 @@ msgid "Display a graph of the selected data."
msgstr "Daten als Diagramm anzeigen."
#: gnucash/report/standard-reports/average-balance.scm:124
-#: gnucash/report/standard-reports/average-balance.scm:301
+#: gnucash/report/standard-reports/average-balance.scm:299
msgid "Plot Type"
msgstr "Diagrammtyp"
@@ -26846,7 +26896,7 @@ msgid "Reserve"
msgstr "Reserve"
#: gnucash/report/standard-reports/balance-sheet.scm:72
-#: gnucash/report/standard-reports/trial-balance.scm:710
+#: gnucash/report/standard-reports/trial-balance.scm:702
msgid "Balance Sheet"
msgstr "Bilanz"
@@ -26937,46 +26987,46 @@ msgstr "Summe Eigenkapital anzeigen"
msgid "Whether or not to include a line indicating total equity."
msgstr "Zeige eine Zeile für das gesamte Eigenkapital an."
-#: gnucash/report/standard-reports/balance-sheet.scm:443
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:806
+#: gnucash/report/standard-reports/balance-sheet.scm:442
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:805
msgid "Total Liabilities"
msgstr "Gesamt Verbindlichkeiten"
-#: gnucash/report/standard-reports/balance-sheet.scm:641
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:775
+#: gnucash/report/standard-reports/balance-sheet.scm:640
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:774
msgid "Total Assets"
msgstr "Gesamt Aktiva"
-#: gnucash/report/standard-reports/balance-sheet.scm:675
+#: gnucash/report/standard-reports/balance-sheet.scm:674
msgid "Trading Gains"
msgstr "Gewinne Devisenhandel"
-#: gnucash/report/standard-reports/balance-sheet.scm:676
+#: gnucash/report/standard-reports/balance-sheet.scm:675
msgid "Trading Losses"
msgstr "Verluste Devisenhandel"
-#: gnucash/report/standard-reports/balance-sheet.scm:681
+#: gnucash/report/standard-reports/balance-sheet.scm:680
#: gnucash/report/standard-reports/balsheet-pnl.scm:1060
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:848
-#: gnucash/report/standard-reports/equity-statement.scm:631
-#: gnucash/report/standard-reports/trial-balance.scm:929
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:847
+#: gnucash/report/standard-reports/equity-statement.scm:624
+#: gnucash/report/standard-reports/trial-balance.scm:921
msgid "Unrealized Gains"
msgstr "Nicht realisierter Gewinn/Verlust"
-#: gnucash/report/standard-reports/balance-sheet.scm:682
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:849
-#: gnucash/report/standard-reports/equity-statement.scm:632
-#: gnucash/report/standard-reports/trial-balance.scm:930
+#: gnucash/report/standard-reports/balance-sheet.scm:681
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:848
+#: gnucash/report/standard-reports/equity-statement.scm:625
+#: gnucash/report/standard-reports/trial-balance.scm:922
msgid "Unrealized Losses"
msgstr "Nicht realisierter Verlust"
-#: gnucash/report/standard-reports/balance-sheet.scm:686
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:864
+#: gnucash/report/standard-reports/balance-sheet.scm:685
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:863
msgid "Total Equity"
msgstr "Gesamt Eigenkapital"
-#: gnucash/report/standard-reports/balance-sheet.scm:697
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:870
+#: gnucash/report/standard-reports/balance-sheet.scm:696
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:869
msgid "Total Liabilities & Equity"
msgstr "Gesamt Passiva"
@@ -27170,7 +27220,7 @@ msgid "Period"
msgstr "Periode"
#: gnucash/report/standard-reports/balsheet-pnl.scm:1238
-#: gnucash/report/standard-reports/trial-balance.scm:1148
+#: gnucash/report/standard-reports/trial-balance.scm:1140
msgid "Net Income"
msgstr "Nettoertrag"
@@ -27206,55 +27256,55 @@ msgstr ""
msgid "Budget to use."
msgstr "Zu benutzendes Budget"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:766
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:765
msgid "Existing Assets"
msgstr "Bestehende Aktiva"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:768
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:767
msgid "Allocated Assets"
msgstr "Zugewiesene Aktiva"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:772
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:771
msgid "Unallocated Assets"
msgstr "Nicht verwendete Aktiva"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:798
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:797
msgid "Existing Liabilities"
msgstr "Bestehende Verbindlichkeiten"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:803
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:802
msgid "New Liabilities"
msgstr "Neue Verbindlichkeiten"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:829
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:828
msgid "Existing Retained Earnings"
msgstr "Existierende Gewinnrücklagen"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:830
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:829
msgid "Existing Retained Losses"
msgstr "Existierende Verlustvorträge"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:835
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:834
msgid "New Retained Earnings"
msgstr "Neue Gewinnrücklagen"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:836
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:835
msgid "New Retained Losses"
msgstr "Neue Verlustvorträge"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:841
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:840
msgid "Total Retained Earnings"
msgstr "Summe Gewinnrücklagen"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:842
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:841
msgid "Total Retained Losses"
msgstr "Summ Verlustvorträge"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:858
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:857
msgid "Existing Equity"
msgstr "Existierendes Eigenkapital"
-#: gnucash/report/standard-reports/budget-balance-sheet.scm:861
+#: gnucash/report/standard-reports/budget-balance-sheet.scm:860
msgid "New Equity"
msgstr "Neues Eigenkapital"
@@ -27416,59 +27466,59 @@ msgstr ""
"Konten in der normalen Reihenfolge anzeigen, also Erträge vor Aufwendungen. "
"Andernfalls zuerst die Aufwendungen, dann die Erträge anzeigen."
-#: gnucash/report/standard-reports/budget-income-statement.scm:477
+#: gnucash/report/standard-reports/budget-income-statement.scm:476
msgid "Reporting range end period cannot be less than start period."
msgstr ""
"Das Ende des Berichtsbereichs kann nicht kleiner als der Anfang sein â bitte "
"umtauschen."
-#: gnucash/report/standard-reports/budget-income-statement.scm:507
+#: gnucash/report/standard-reports/budget-income-statement.scm:506
#, scheme-format
msgid "for Budget ~a Period ~d"
msgstr "für Budget ~a Periode ~d"
-#: gnucash/report/standard-reports/budget-income-statement.scm:512
+#: gnucash/report/standard-reports/budget-income-statement.scm:511
#, scheme-format
msgid "for Budget ~a Periods ~d - ~d"
msgstr "für Budget ~a Perioden ~d - ~d"
-#: gnucash/report/standard-reports/budget-income-statement.scm:518
+#: gnucash/report/standard-reports/budget-income-statement.scm:517
#, scheme-format
msgid "for Budget ~a"
msgstr "für Budget ~a"
-#: gnucash/report/standard-reports/budget-income-statement.scm:660
-#: gnucash/report/standard-reports/income-statement.scm:597
+#: gnucash/report/standard-reports/budget-income-statement.scm:659
+#: gnucash/report/standard-reports/income-statement.scm:588
msgid "Revenues"
msgstr "Ertrag"
-#: gnucash/report/standard-reports/budget-income-statement.scm:669
-#: gnucash/report/standard-reports/income-statement.scm:605
+#: gnucash/report/standard-reports/budget-income-statement.scm:668
+#: gnucash/report/standard-reports/income-statement.scm:596
msgid "Total Revenue"
msgstr "Gesamt-Ertrag"
-#: gnucash/report/standard-reports/budget-income-statement.scm:683
-#: gnucash/report/standard-reports/income-statement.scm:618
+#: gnucash/report/standard-reports/budget-income-statement.scm:682
+#: gnucash/report/standard-reports/income-statement.scm:609
msgid "Total Expenses"
msgstr "Gesamt-Aufwand"
-#: gnucash/report/standard-reports/budget-income-statement.scm:689
-#: gnucash/report/standard-reports/equity-statement.scm:609
-#: gnucash/report/standard-reports/income-statement.scm:635
+#: gnucash/report/standard-reports/budget-income-statement.scm:688
+#: gnucash/report/standard-reports/equity-statement.scm:602
+#: gnucash/report/standard-reports/income-statement.scm:626
msgid "Net income"
msgstr "Netto-Ertrag"
-#: gnucash/report/standard-reports/budget-income-statement.scm:690
-#: gnucash/report/standard-reports/equity-statement.scm:610
-#: gnucash/report/standard-reports/income-statement.scm:636
+#: gnucash/report/standard-reports/budget-income-statement.scm:689
+#: gnucash/report/standard-reports/equity-statement.scm:603
+#: gnucash/report/standard-reports/income-statement.scm:627
msgid "Net loss"
msgstr "Netto-Verlust"
-#: gnucash/report/standard-reports/budget-income-statement.scm:758
+#: gnucash/report/standard-reports/budget-income-statement.scm:757
msgid "Budget Income Statement"
msgstr "Budget Einnahmenüberschussrechnung"
-#: gnucash/report/standard-reports/budget-income-statement.scm:759
+#: gnucash/report/standard-reports/budget-income-statement.scm:758
msgid "Budget Profit & Loss"
msgstr "Budget Gewinn- und Verlustrechnung"
@@ -27651,7 +27701,7 @@ msgstr "Differenz"
#. budget will report on budgeted and actual
#. amounts from the beginning of budget, instead
#. of only using the budget-period amounts.
-#: gnucash/report/standard-reports/budget.scm:714
+#: gnucash/report/standard-reports/budget.scm:712
#, fuzzy
msgid "using accumulated amounts"
msgstr "Konten lesen..."
@@ -27725,25 +27775,25 @@ msgid "Show full account names (including parent accounts)."
msgstr ""
"Zeige lange Kontenbezeichung (einschlieÃlich übergeordneter Konten) an."
-#: gnucash/report/standard-reports/cash-flow.scm:210
+#: gnucash/report/standard-reports/cash-flow.scm:208
#, scheme-format
msgid "~a and subaccounts"
msgstr "~a und Unterkonten"
-#: gnucash/report/standard-reports/cash-flow.scm:211
+#: gnucash/report/standard-reports/cash-flow.scm:209
#, scheme-format
msgid "~a and selected subaccounts"
msgstr "~a und ausgewählte Unterkonten"
-#: gnucash/report/standard-reports/cash-flow.scm:277
+#: gnucash/report/standard-reports/cash-flow.scm:275
msgid "Money into selected accounts comes from"
msgstr "Zahlung in gewählte Konten kommen aus"
-#: gnucash/report/standard-reports/cash-flow.scm:298
+#: gnucash/report/standard-reports/cash-flow.scm:296
msgid "Money out of selected accounts goes to"
msgstr "Zahlung von gewählten Konten gehen nach"
-#: gnucash/report/standard-reports/cash-flow.scm:319
+#: gnucash/report/standard-reports/cash-flow.scm:317
msgid "Difference"
msgstr "Differenz"
@@ -27848,8 +27898,8 @@ msgstr "Die maximale Anzahl gestapelte Balken im Diagramm."
msgid "Daily Average"
msgstr "Durchschnitt pro Tag"
-#: gnucash/report/standard-reports/category-barchart.scm:538
-#: gnucash/report/standard-reports/category-barchart.scm:564
+#: gnucash/report/standard-reports/category-barchart.scm:536
+#: gnucash/report/standard-reports/category-barchart.scm:562
#, scheme-format
msgid "Balances ~a to ~a"
msgstr "Salden ~a bis ~a"
@@ -27888,37 +27938,37 @@ msgid "Report only on these accounts."
msgstr "Den Bericht nur für diese Konten erstellen."
#: gnucash/report/standard-reports/equity-statement.scm:298
-#: gnucash/report/standard-reports/income-statement.scm:434
-#: gnucash/report/standard-reports/sx-summary.scm:313
-#: gnucash/report/standard-reports/trial-balance.scm:494
+#: gnucash/report/standard-reports/income-statement.scm:433
+#: gnucash/report/standard-reports/sx-summary.scm:312
+#: gnucash/report/standard-reports/trial-balance.scm:486
#, scheme-format
msgid "For Period Covering ~a to ~a"
msgstr "Für Periode ~a bis ~a"
-#: gnucash/report/standard-reports/equity-statement.scm:362
-#: gnucash/report/standard-reports/income-statement.scm:473
-#: gnucash/report/standard-reports/trial-balance.scm:481
+#: gnucash/report/standard-reports/equity-statement.scm:360
+#: gnucash/report/standard-reports/income-statement.scm:470
+#: gnucash/report/standard-reports/trial-balance.scm:478
msgid "for Period"
msgstr "für Buchungsperiode"
-#: gnucash/report/standard-reports/equity-statement.scm:602
-#: gnucash/report/standard-reports/equity-statement.scm:646
+#: gnucash/report/standard-reports/equity-statement.scm:595
+#: gnucash/report/standard-reports/equity-statement.scm:639
msgid "Capital"
msgstr "Kapital"
-#: gnucash/report/standard-reports/equity-statement.scm:616
+#: gnucash/report/standard-reports/equity-statement.scm:609
msgid "Investments"
msgstr "Investments"
-#: gnucash/report/standard-reports/equity-statement.scm:623
+#: gnucash/report/standard-reports/equity-statement.scm:616
msgid "Withdrawals"
msgstr "Abhebungen"
-#: gnucash/report/standard-reports/equity-statement.scm:639
+#: gnucash/report/standard-reports/equity-statement.scm:632
msgid "Increase in capital"
msgstr "Kapitalerhöhung"
-#: gnucash/report/standard-reports/equity-statement.scm:640
+#: gnucash/report/standard-reports/equity-statement.scm:633
msgid "Decrease in capital"
msgstr "Kapitalreduzierung"
@@ -28053,8 +28103,10 @@ msgstr ""
"Nettosalden anzeigen (Verkäufe ohne Steueranteil minus Käufe ohne "
"Steueranteil)"
+#. Translators: "Tax Payable" refer to the difference GST Sales - GST Purchases
#: gnucash/report/standard-reports/income-gst-statement.scm:113
#: gnucash/report/standard-reports/income-gst-statement.scm:268
+#: gnucash/report/standard-reports/income-gst-statement.scm:270
msgid "Tax payable"
msgstr "Zu zahlende Steuern"
@@ -28089,11 +28141,6 @@ msgstr "Einkaufsnetto"
msgid "Tax on Purchases"
msgstr "Vorsteuer"
-#. Translators: "Tax Payable" refer to the difference GST Sales - GST Purchases
-#: gnucash/report/standard-reports/income-gst-statement.scm:270
-msgid "Tax Payable"
-msgstr "Zu zahlende Steuer"
-
#: gnucash/report/standard-reports/income-statement.scm:96
msgid "Label the trading accounts section"
msgstr "Abschnitt Devisenhandel beschriften"
@@ -28111,22 +28158,22 @@ msgid ""
"Whether or not to include a line indicating total trading accounts balance."
msgstr "Summenzeile für die Devisenhandel-Konten anzeigen."
-#: gnucash/report/standard-reports/income-statement.scm:621
+#: gnucash/report/standard-reports/income-statement.scm:612
#: libgnucash/engine/Account.cpp:4105 libgnucash/engine/Scrub.c:430
#: libgnucash/engine/Scrub.c:495
msgid "Trading"
msgstr "Devisenhandel"
-#: gnucash/report/standard-reports/income-statement.scm:629
+#: gnucash/report/standard-reports/income-statement.scm:620
msgid "Total Trading"
msgstr "Gesamt Devisenhandel"
-#: gnucash/report/standard-reports/income-statement.scm:718
-#: gnucash/report/standard-reports/trial-balance.scm:709
+#: gnucash/report/standard-reports/income-statement.scm:709
+#: gnucash/report/standard-reports/trial-balance.scm:701
msgid "Income Statement"
msgstr "Ergebnisrechnung"
-#: gnucash/report/standard-reports/income-statement.scm:719
+#: gnucash/report/standard-reports/income-statement.scm:710
msgid "Profit & Loss"
msgstr "Gewinn- und Verlustrechnung"
@@ -28176,34 +28223,34 @@ msgstr "Reinvermögen-Balken anzeigen?"
msgid "Add grid lines."
msgstr "Gitterlinien anzeigen."
-#: gnucash/report/standard-reports/net-charts.scm:414
-#: gnucash/report/standard-reports/net-charts.scm:494
+#: gnucash/report/standard-reports/net-charts.scm:412
+#: gnucash/report/standard-reports/net-charts.scm:492
msgid "Net Profit"
msgstr "Reingewinn"
-#: gnucash/report/standard-reports/net-charts.scm:415
-#: gnucash/report/standard-reports/net-charts.scm:495
+#: gnucash/report/standard-reports/net-charts.scm:413
+#: gnucash/report/standard-reports/net-charts.scm:493
msgid "Net Worth"
msgstr "Reinvermögen"
-#: gnucash/report/standard-reports/net-charts.scm:542
+#: gnucash/report/standard-reports/net-charts.scm:540
msgid "Net Worth Barchart"
msgstr "Reinvermögen-Balkendiagramm"
-#: gnucash/report/standard-reports/net-charts.scm:550
+#: gnucash/report/standard-reports/net-charts.scm:548
msgid "Income/Expense Chart"
msgstr "Erträge/Aufwendungen-Diagramm"
-#: gnucash/report/standard-reports/net-charts.scm:552
+#: gnucash/report/standard-reports/net-charts.scm:550
msgid "Income & Expense Barchart"
msgstr "Aufwand & Ertrags-Säulendiagramm"
-#: gnucash/report/standard-reports/net-charts.scm:559
+#: gnucash/report/standard-reports/net-charts.scm:557
msgid "Net Worth Linechart"
msgstr "Reinvermögen Liniendiagramm"
+#: gnucash/report/standard-reports/net-charts.scm:567
#: gnucash/report/standard-reports/net-charts.scm:569
-#: gnucash/report/standard-reports/net-charts.scm:571
msgid "Income & Expense Linechart"
msgstr "Aufwand & Ertrags-Liniendiagramm"
@@ -28407,7 +28454,7 @@ msgid "Future Scheduled Transactions Summary"
msgstr "Zukünftige Terminierte Buchungen"
#: gnucash/report/standard-reports/trial-balance.scm:60
-#: gnucash/report/standard-reports/trial-balance.scm:706
+#: gnucash/report/standard-reports/trial-balance.scm:698
msgid "Trial Balance"
msgstr "Rohbilanz"
@@ -28489,39 +28536,39 @@ msgstr ""
"Lässt das Muster für Anpassungseinträge als regulären Ausdruck "
"interpretieren."
-#: gnucash/report/standard-reports/trial-balance.scm:207
+#: gnucash/report/standard-reports/trial-balance.scm:206
msgid "Current Trial Balance"
msgstr "Aktuelle Rohbilanz"
-#: gnucash/report/standard-reports/trial-balance.scm:208
+#: gnucash/report/standard-reports/trial-balance.scm:207
msgid "Uses the exact balances in the general journal"
msgstr "Verwendet die exakten Salden im Hauptbuch"
-#: gnucash/report/standard-reports/trial-balance.scm:210
+#: gnucash/report/standard-reports/trial-balance.scm:209
msgid "Pre-adjustment Trial Balance"
msgstr "Angepasste Rohbilanz"
-#: gnucash/report/standard-reports/trial-balance.scm:211
+#: gnucash/report/standard-reports/trial-balance.scm:210
msgid "Ignores Adjusting/Closing entries"
msgstr "Anpassungsbuchungen und Abschlussbuchungen ignorieren"
-#: gnucash/report/standard-reports/trial-balance.scm:213
+#: gnucash/report/standard-reports/trial-balance.scm:212
msgid "Work Sheet"
msgstr "Arbeitsblatt"
-#: gnucash/report/standard-reports/trial-balance.scm:214
+#: gnucash/report/standard-reports/trial-balance.scm:213
msgid "Creates a complete end-of-period work sheet"
msgstr "Erstellt ein vollständiges Arbeitsblatt zum Periodenende"
-#: gnucash/report/standard-reports/trial-balance.scm:707
+#: gnucash/report/standard-reports/trial-balance.scm:699
msgid "Adjustments"
msgstr "Anpassungsbuchungen"
-#: gnucash/report/standard-reports/trial-balance.scm:708
+#: gnucash/report/standard-reports/trial-balance.scm:700
msgid "Adjusted Trial Balance"
msgstr "Angepasste Rohbilanz"
-#: gnucash/report/standard-reports/trial-balance.scm:1148
+#: gnucash/report/standard-reports/trial-balance.scm:1140
msgid "Net Loss"
msgstr "Nettoverlust"
@@ -30271,34 +30318,33 @@ msgstr "Nicht steuerrelevant; %s%s: %s (Schlüssel %s, Steuerart %s)"
msgid "(Tax-related subaccounts: %d)"
msgstr "(Steuerrelevante Unterkonten: %d)"
-#. Translators: For the following strings, the single letters
-#. after the colon are abbreviations of the word before the
-#. colon. You should only translate the letter *after* the colon.
-#: libgnucash/app-utils/gnc-ui-util.c:920
-msgid "not cleared:n"
-msgstr "not cleared:n"
-
-#. Translators: Please only translate the letter *after* the colon.
-#: libgnucash/app-utils/gnc-ui-util.c:923
-msgid "cleared:c"
-msgstr "cleared:b"
-
-#. Translators: Please only translate the letter *after* the colon.
-#: libgnucash/app-utils/gnc-ui-util.c:926
-msgid "reconciled:y"
-msgstr "reconciled:j"
-
-#. Translators: Please only translate the letter *after* the colon.
-#: libgnucash/app-utils/gnc-ui-util.c:929
-msgid "frozen:f"
-msgstr "frozen:f"
-
-#. Translators: Please only translate the letter *after* the colon.
-#: libgnucash/app-utils/gnc-ui-util.c:932
-msgid "void:v"
-msgstr "void:u"
-
-#: libgnucash/app-utils/gnc-ui-util.c:973
+#: libgnucash/app-utils/gnc-ui-util.c:903
+msgctxt "Reconciled flag 'not cleared'"
+msgid "n"
+msgstr ""
+
+#: libgnucash/app-utils/gnc-ui-util.c:905
+msgctxt "Reconciled flag 'cleared'"
+msgid "c"
+msgstr ""
+
+#: libgnucash/app-utils/gnc-ui-util.c:907
+#, fuzzy
+msgctxt "Reconciled flag 'reconciled'"
+msgid "y"
+msgstr "y"
+
+#: libgnucash/app-utils/gnc-ui-util.c:909
+msgctxt "Reconciled flag 'frozen'"
+msgid "f"
+msgstr ""
+
+#: libgnucash/app-utils/gnc-ui-util.c:911
+msgctxt "Reconciled flag 'void'"
+msgid "v"
+msgstr ""
+
+#: libgnucash/app-utils/gnc-ui-util.c:952
msgid "Opening Balances"
msgstr "Anfangsbestand"
@@ -30676,10 +30722,11 @@ msgstr "Suche nach unausgeglichenen Buchungen im Konto %s: %u von %u"
#. Translators: This string has a disambiguation prefix
#: libgnucash/engine/Split.c:1613
-msgid ""
-"Displayed account code of the other account in a multi-split transaction|"
-"Split"
-msgstr "Mehrteilig"
+#, fuzzy
+msgctxt ""
+"Displayed account code of the other account in a multi-split transaction"
+msgid "Split"
+msgstr "Vollständig"
#: libgnucash/engine/Transaction.c:2694
msgid "Voided transaction"
@@ -30751,6 +30798,93 @@ msgstr "Die Elster-Steuernummer Ihrer Unternehmung"
msgid "No help available."
msgstr "Keine Hilfe verfügbar."
+#~ msgid "Action Column|Split"
+#~ msgstr "Aktienteilung"
+
+#~ msgid "Reconciled:R"
+#~ msgstr "Reconciled:A"
+
+#~ msgid ""
+#~ "Item represents an unknown object type (in the sense of bill, customer, "
+#~ "invoice, transaction, split,...)|New item"
+#~ msgstr ""
+#~ "Item represents an unknown object type (in the sense of bill, customer, "
+#~ "invoice, transaction, split,...)|Neues Element"
+
+#~ msgid "Column letter for 'Placeholder'|P"
+#~ msgstr "P"
+
+#~ msgid "Action Column|Deposit"
+#~ msgstr "Einzahlung"
+
+#~ msgid "Column letter for 'Get Quotes'|Q"
+#~ msgstr "K"
+
+#~ msgid "Column letter for 'Active'|A"
+#~ msgstr "A"
+
+#~ msgid "Single-character short column-title form of 'Enabled'|E"
+#~ msgstr "A"
+
+#~ msgid "sample:X"
+#~ msgstr "sample:X"
+
+#~ msgid "sample:Action"
+#~ msgstr "sample:Aktion"
+
+#~ msgid "sample(DT):+%"
+#~ msgstr "sample(DT):+%"
+
+#~ msgid "sample(DH):+%"
+#~ msgstr "sample(DH):+%"
+
+#~ msgid "sample:T?"
+#~ msgstr "sample:T?"
+
+#~ msgid "sample:TI"
+#~ msgstr "sample:TI"
+
+#~ msgid "sample:Tax Table 1"
+#~ msgstr "sample:Steuertabelle Eins"
+
+#~ msgid "sample:BI"
+#~ msgstr "sample:BI"
+
+#~ msgid "sample:Payment"
+#~ msgstr "sample:Zahlung"
+
+#~ msgid "sample:99999"
+#~ msgstr "sample:99999"
+
+#~ msgid "Associate:A"
+#~ msgstr "Associate:Z"
+
+#~ msgid "Type:T"
+#~ msgstr "Type:T"
+
+#~ msgid "Tax Payable"
+#~ msgstr "Zu zahlende Steuer"
+
+#~ msgid "not cleared:n"
+#~ msgstr "not cleared:n"
+
+#~ msgid "cleared:c"
+#~ msgstr "cleared:b"
+
+#~ msgid "reconciled:y"
+#~ msgstr "reconciled:j"
+
+#~ msgid "frozen:f"
+#~ msgstr "frozen:f"
+
+#~ msgid "void:v"
+#~ msgstr "void:u"
+
+#~ msgid ""
+#~ "Displayed account code of the other account in a multi-split transaction|"
+#~ "Split"
+#~ msgstr "Mehrteilig"
+
#~ msgid "Enter URL:"
#~ msgstr "URL eingeben:"
Summary of changes:
CMakeLists.txt | 38 +-
common/cmake_modules/GncAddSchemeTargets.cmake | 13 +-
common/cmake_modules/MakeDistFiles.cmake | 5 -
gnucash/CMakeLists.txt | 2 +-
gnucash/gnome-search/CMakeLists.txt | 2 +-
gnucash/gnome-search/dialog-search.c | 3 +-
gnucash/gnome-search/gnc-general-search.c | 2 +-
gnucash/gnome-search/search-account.c | 2 +-
gnucash/gnome-search/search-boolean.c | 2 +-
gnucash/gnome-search/search-core-type.c | 2 +-
gnucash/gnome-search/search-date.c | 2 +-
gnucash/gnome-search/search-double.c | 2 +-
gnucash/gnome-search/search-int64.c | 2 +-
gnucash/gnome-search/search-numeric.c | 2 +-
gnucash/gnome-search/search-reconciled.c | 2 +-
gnucash/gnome-search/search-string.c | 2 +-
gnucash/gnome-utils/CMakeLists.txt | 6 +-
gnucash/gnome-utils/gnc-combott.c | 3 +-
gnucash/gnome-utils/gnc-currency-edit.c | 2 +-
gnucash/gnome-utils/gnc-date-edit.c | 4 +-
gnucash/gnome-utils/gnc-date-format.c | 2 +-
gnucash/gnome-utils/gnc-embedded-window.c | 2 +-
gnucash/gnome-utils/gnc-main-window.c | 2 +-
gnucash/gnome-utils/gnc-period-select.c | 4 +-
gnucash/gnome-utils/gnc-plugin-file-history.c | 2 +-
gnucash/gnome-utils/gnc-plugin-manager.c | 2 +-
gnucash/gnome-utils/gnc-plugin-menu-additions.c | 2 +-
gnucash/gnome-utils/gnc-plugin-page.c | 2 +-
gnucash/gnome-utils/gnc-plugin.c | 2 +-
gnucash/gnome-utils/gnc-query-view.c | 2 +-
gnucash/gnome-utils/gnc-tree-model-account-types.c | 3 +-
gnucash/gnome-utils/gnc-tree-model-account.c | 2 +-
gnucash/gnome-utils/gnc-tree-model-commodity.c | 2 +-
gnucash/gnome-utils/gnc-tree-model-owner.c | 2 +-
gnucash/gnome-utils/gnc-tree-model-price.c | 4 +-
gnucash/gnome-utils/gnc-tree-model-selection.c | 2 +-
gnucash/gnome-utils/gnc-tree-model-split-reg.c | 11 +-
gnucash/gnome-utils/gnc-tree-model.c | 2 +-
gnucash/gnome-utils/gnc-tree-view-account.c | 2 +-
gnucash/gnome-utils/gnc-tree-view-commodity.c | 6 +-
gnucash/gnome-utils/gnc-tree-view-owner.c | 6 +-
gnucash/gnome-utils/gnc-tree-view-price.c | 2 +-
gnucash/gnome-utils/gnc-tree-view-split-reg.c | 12 +-
gnucash/gnome-utils/gnc-tree-view-sx-list.c | 6 +-
gnucash/gnome-utils/gnc-tree-view.c | 2 +-
gnucash/gnome-utils/search-param.c | 6 +-
gnucash/gnome-utils/test/CMakeLists.txt | 1 -
gnucash/gnome/CMakeLists.txt | 5 +-
gnucash/gnome/assistant-stock-split.c | 4 +-
gnucash/gnome/dialog-price-edit-db.c | 2 +-
gnucash/gnome/dialog-trans-assoc.c | 2 +-
gnucash/gnome/gnc-budget-view.c | 6 +-
gnucash/gnome/gnc-plugin-account-tree.c | 2 +-
gnucash/gnome/gnc-plugin-basic-commands.c | 2 +-
gnucash/gnome/gnc-plugin-budget.c | 2 +-
gnucash/gnome/gnc-plugin-business.c | 2 +-
gnucash/gnome/gnc-plugin-page-account-tree.c | 2 +-
gnucash/gnome/gnc-plugin-page-budget.c | 2 +-
gnucash/gnome/gnc-plugin-page-invoice.c | 2 +-
gnucash/gnome/gnc-plugin-page-owner-tree.c | 2 +-
gnucash/gnome/gnc-plugin-page-register.c | 2 +-
gnucash/gnome/gnc-plugin-page-register2.c | 2 +-
gnucash/gnome/gnc-plugin-page-report.c | 2 +-
gnucash/gnome/gnc-plugin-page-sx-list.c | 2 +-
gnucash/gnome/gnc-plugin-register.c | 2 +-
gnucash/gnome/gnc-plugin-register2.c | 2 +-
gnucash/gnome/search-owner.c | 2 +-
gnucash/gtkbuilder/dialog-search.glade | 2 +-
gnucash/html/CMakeLists.txt | 5 +-
gnucash/html/gnc-html.c | 6 +-
gnucash/import-export/CMakeLists.txt | 2 +-
.../csv-exp/csv-transactions-export.c | 2 +-
.../import-export/csv-exp/gnc-plugin-csv-export.c | 2 +-
.../import-export/csv-imp/gnc-imp-props-price.cpp | 2 +-
.../import-export/csv-imp/gnc-plugin-csv-import.c | 2 +-
gnucash/import-export/log-replay/CMakeLists.txt | 2 +-
.../log-replay/gnc-plugin-log-replay.c | 2 +-
gnucash/import-export/ofx/gnc-plugin-ofx.c | 2 +-
.../import-export/qif-imp/assistant-qif-import.c | 6 +-
.../import-export/qif-imp/gnc-plugin-qif-import.c | 2 +-
gnucash/register/ledger-core/CMakeLists.txt | 2 +-
.../register/ledger-core/split-register-model.c | 2 +-
gnucash/register/ledger-core/split-register.c | 7 +-
gnucash/register/register-gnome/CMakeLists.txt | 4 +-
.../register-gnome/gnucash-sheet-private.c | 2 +-
gnucash/register/register-gnome/gnucash-sheet.c | 2 +-
gnucash/report/CMakeLists.txt | 5 +-
gnucash/report/html-acct-table.scm | 246 +-
gnucash/report/reports/standard/balsheet-pnl.scm | 81 +-
gnucash/report/test/test-report-extras.scm | 10 +-
libgnucash/app-utils/gnc-ui-util.c | 4 +-
libgnucash/engine/Account.cpp | 4 +-
libgnucash/engine/Split.c | 5 +-
libgnucash/engine/Transaction.c | 9 +-
libgnucash/engine/gnc-budget.c | 2 +-
libgnucash/engine/gnc-commodity.c | 2 +-
libgnucash/engine/gnc-date.cpp | 8 +-
libgnucash/engine/gnc-lot.c | 2 +-
libgnucash/engine/gncAddress.c | 2 +-
libgnucash/engine/gncCustomer.c | 2 +-
libgnucash/engine/gncEmployee.c | 2 +-
libgnucash/engine/gncEntry.c | 2 +-
libgnucash/engine/gncJob.c | 2 +-
libgnucash/engine/gncOrder.c | 2 +-
libgnucash/engine/gncVendor.c | 2 +-
libgnucash/engine/qofinstance.cpp | 2 +-
libgnucash/engine/test/test-gnc-date.c | 136 +-
libgnucash/scm/utilities.scm | 8 +-
po/de.po | 1175 ++--
po/he.po | 6099 +++++++++++---------
110 files changed, 4267 insertions(+), 3841 deletions(-)
More information about the gnucash-changes
mailing list