gnucash master: Multiple changes pushed
Geert Janssens
gjanssens at code.gnucash.org
Mon Dec 7 15:54:06 EST 2015
Updated via https://github.com/Gnucash/gnucash/commit/fc41cd5c (commit)
via https://github.com/Gnucash/gnucash/commit/0e53cf89 (commit)
via https://github.com/Gnucash/gnucash/commit/7e7b02af (commit)
via https://github.com/Gnucash/gnucash/commit/e410e05d (commit)
via https://github.com/Gnucash/gnucash/commit/5a381125 (commit)
via https://github.com/Gnucash/gnucash/commit/7cf84db8 (commit)
via https://github.com/Gnucash/gnucash/commit/d4bbede0 (commit)
via https://github.com/Gnucash/gnucash/commit/9b371153 (commit)
via https://github.com/Gnucash/gnucash/commit/104de595 (commit)
via https://github.com/Gnucash/gnucash/commit/3e7c8fa4 (commit)
via https://github.com/Gnucash/gnucash/commit/13c7abc9 (commit)
via https://github.com/Gnucash/gnucash/commit/c26b81bf (commit)
via https://github.com/Gnucash/gnucash/commit/eb600c79 (commit)
via https://github.com/Gnucash/gnucash/commit/cca9cc7c (commit)
via https://github.com/Gnucash/gnucash/commit/5ff205d4 (commit)
via https://github.com/Gnucash/gnucash/commit/526fd82c (commit)
via https://github.com/Gnucash/gnucash/commit/8d123382 (commit)
via https://github.com/Gnucash/gnucash/commit/516b3025 (commit)
via https://github.com/Gnucash/gnucash/commit/6a8e9760 (commit)
via https://github.com/Gnucash/gnucash/commit/5d98d4af (commit)
via https://github.com/Gnucash/gnucash/commit/b47f0453 (commit)
via https://github.com/Gnucash/gnucash/commit/8dfea02d (commit)
via https://github.com/Gnucash/gnucash/commit/f9ab945c (commit)
via https://github.com/Gnucash/gnucash/commit/fa4532b6 (commit)
via https://github.com/Gnucash/gnucash/commit/1a92dad9 (commit)
via https://github.com/Gnucash/gnucash/commit/68f1db9e (commit)
via https://github.com/Gnucash/gnucash/commit/16bc91d6 (commit)
via https://github.com/Gnucash/gnucash/commit/4c0dbb17 (commit)
via https://github.com/Gnucash/gnucash/commit/21525713 (commit)
via https://github.com/Gnucash/gnucash/commit/f7781681 (commit)
via https://github.com/Gnucash/gnucash/commit/b047467e (commit)
via https://github.com/Gnucash/gnucash/commit/e7378e87 (commit)
via https://github.com/Gnucash/gnucash/commit/a7248b24 (commit)
via https://github.com/Gnucash/gnucash/commit/d061f6e9 (commit)
from https://github.com/Gnucash/gnucash/commit/2a0bb45f (commit)
commit fc41cd5cbd483ec6ac9fccf4bfa5d5c3cc2cd6da
Author: Geert Janssens <janssens-geert at telenet.be>
Date: Mon Dec 7 21:55:14 2015 +0100
Fix engine tests after maint merge
diff --git a/src/engine/test/Makefile.am b/src/engine/test/Makefile.am
index 6accde2..ea9c794 100644
--- a/src/engine/test/Makefile.am
+++ b/src/engine/test/Makefile.am
@@ -55,8 +55,7 @@ TEST_GROUP_2 = \
test-customer \
test-employee \
test-job \
- test-vendor \
- $(SCM_TESTS)
+ test-vendor
SCM_TESTS = \
test-test-extras \
@@ -107,7 +106,7 @@ TESTS_ENVIRONMENT = \
check_PROGRAMS = ${TEST_GROUP_1} ${TEST_GROUP_2}
-TESTS = ${TEST_GROUP_1} test-create-account ${TEST_GROUP_2}
+TESTS = ${TEST_GROUP_1} test-create-account ${TEST_GROUP_2} ${SCM_TESTS}
test_link_SOURCES = test-link.c
test_link_LDADD = ../libgncmod-engine.la \
commit 0e53cf89aad0e45f0cbf4faa9f8d657998653f61
Merge: 2a0bb45 7e7b02a
Author: Geert Janssens <janssens-geert at telenet.be>
Date: Mon Dec 7 21:11:10 2015 +0100
Merge branch 'maint'
Resolved conflicts:
src/engine/test/Makefile.am
src/gnome/dialog-sx-editor.c
diff --cc src/app-utils/gnc-sx-instance-model.c
index 0a3d839,6d8a24d..acb7090
--- a/src/app-utils/gnc-sx-instance-model.c
+++ b/src/app-utils/gnc-sx-instance-model.c
@@@ -190,19 -191,21 +190,21 @@@ _get_vars_helper(Transaction *txn, voi
for ( ; split_list; split_list = split_list->next)
{
gnc_commodity *split_cmdty = NULL;
- GncGUID *acct_guid;
+ GncGUID *acct_guid = NULL;
Account *acct;
+ gnc_numeric split_amount;
s = (Split*)split_list->data;
- kvpf = xaccSplitGetSlots(s);
- kvp_val = kvp_frame_get_slot_path(kvpf,
- GNC_SX_ID,
- GNC_SX_ACCOUNT,
- NULL);
- acct_guid = kvp_value_get_guid(kvp_val);
+
+ qof_instance_get (QOF_INSTANCE (s),
+ "sx-account", &acct_guid,
+ "sx-credit-formula", &credit_formula,
+ "sx-debit-formula", &debit_formula,
+ NULL);
acct = xaccAccountLookup(acct_guid, gnc_get_current_book());
split_cmdty = xaccAccountGetCommodity(acct);
- if (first_cmdty == NULL)
+ split_amount = xaccSplitGetAmount(s);
+ if (!gnc_numeric_zero_p(split_amount) && first_cmdty == NULL)
{
first_cmdty = split_cmdty;
}
diff --cc src/engine/test/Makefile.am
index cad3de6,5e29c7f..6accde2
--- a/src/engine/test/Makefile.am
+++ b/src/engine/test/Makefile.am
@@@ -68,18 -77,10 +82,22 @@@ GNC_TEST_DEPS =
--library-dir ${top_builddir}/src/backend/xml \
--library-dir ${top_builddir}/src/backend/sql
+test_account_object_SOURCES = test-account-object.cpp
+test_commodities_SOURCES = test-commodities.cpp
+test_date_SOURCES = test-date.cpp
+test_group_vs_book_SOURCES = test-group-vs-book.cpp
+test_lots_SOURCES = test-lots.cpp
+test_numeric_SOURCES = test-numeric.cpp
+test_query_SOURCES = test-query.cpp
+test_scm_query_SOURCES = test-scm-query.cpp
+test_split_vs_account_SOURCES = test-split-vs-account.cpp
+test_transaction_reversal_SOURCES = test-transaction-reversal.cpp
+test_transaction_voiding_SOURCES = test-transaction-voiding.cpp
+
+ $(SCM_TESTS): %: $(srcdir)/%.scm Makefile .scm-links
+ echo '${GUILE} --debug -l $(srcdir)/$*.scm -c "(exit (run-test))"' > $@
+ chmod a+x $@
+
TESTS_ENVIRONMENT = \
GUILE_WARN_DEPRECATED=no \
GUILE="${GUILE}" \
@@@ -96,10 -119,8 +114,12 @@@ test_link_LDADD = ../libgncmod-engine.l
${top_builddir}/src/libqof/qof/libgnc-qof.la \
${top_builddir}/src/core-utils/libgnc-core-utils.la
+if WITH_GOOGLE_PROFILER
+LDADD += -lprofiler
+endif
+
+ SCM_TEST_HELPERS = test-extras.scm
+
EXTRA_DIST += \
test-create-account \
test-create-account.scm \
@@@ -144,31 -177,8 +180,33 @@@ libutest_Trans_la_SOURCES =
libutest_Trans_la_LIBADD = $(LDADD)
+if WITH_GOOGLE_TEST
+test_import_map_SOURCES = \
+ gtest-import-map.cpp
+test_import_map_LDADD = \
+ ${top_builddir}/src/libqof/qof/libgnc-qof.la \
+ ${top_builddir}/src/engine/libgncmod-engine.la \
+ ${GLIB_LIBS} \
+ ${GTEST_LIBS}
+
+if !GOOGLE_TEST_LIBS
+nodist_test_import_map_SOURCES = \
+ ${GTEST_SRC}/src/gtest_main.cc
+endif
+
+test_import_map_CPPFLAGS = \
+ -I${GTEST_HEADERS} \
+ -I${top_srcdir}/${MODULEPATH} \
+ -I${top_srcdir}/src/libqof/qof \
+ -I${top_srcdir}/src/core-utils \
+ ${GLIB_CFLAGS}
+
+TEST_GROUP_1 += test-import-map
+endif
+
+
+ CLEANFILES = .scm-links
+ DISTCLEANFILES = $(SCM_TESTS)
clean-local:
rm -f translog.*
diff --cc src/gnome/dialog-sx-editor.c
index 117c6c6,d35d50b..7ffb5e8
--- a/src/gnome/dialog-sx-editor.c
+++ b/src/gnome/dialog-sx-editor.c
@@@ -604,10 -604,11 +604,11 @@@ gnc_sxed_check_consistent( GncSxEditorD
for ( ; splitList; splitList = splitList->next )
{
- GncGUID *acct_guid;
- Account *acct;
- gnc_commodity *split_cmdty;
- txnCreditDebitSums *tcds;
+ GncGUID *acct_guid = NULL;
+ Account *acct = NULL;
+ gnc_commodity *split_cmdty = NULL;
+ txnCreditDebitSums *tcds = NULL;
+ gnc_numeric split_amount;
s = (Split*)splitList->data;
t = xaccSplitGetParent( s );
@@@ -622,63 -623,81 +623,66 @@@
g_hash_table_insert( txns, (gpointer)t, (gpointer)tcds );
}
- f = xaccSplitGetSlots( s );
-
- /* contains the guid of the split's actual account. */
- v = kvp_frame_get_slot_path(f,
- GNC_SX_ID,
- GNC_SX_ACCOUNT,
- NULL);
- acct_guid = kvp_value_get_guid( v );
+ qof_instance_get (QOF_INSTANCE (s),
+ "sx-account", &acct_guid,
+ "sx-credit-formula", &credit_formula,
+ "sx-debit-formula", &debit_formula,
+ NULL);
acct = xaccAccountLookup( acct_guid, gnc_get_current_book ());
split_cmdty = xaccAccountGetCommodity(acct);
- if (base_cmdty == NULL)
+ split_amount = xaccSplitGetAmount(s);
+ if (!gnc_numeric_zero_p(split_amount) && base_cmdty == NULL)
{
base_cmdty = split_cmdty;
}
- multi_commodity |= !gnc_commodity_equal(split_cmdty, base_cmdty);
+ multi_commodity |= (!gnc_numeric_zero_p(split_amount) &&
+ !gnc_commodity_equal(split_cmdty,
+ base_cmdty));
- v = kvp_frame_get_slot_path( f,
- GNC_SX_ID,
- GNC_SX_CREDIT_FORMULA,
- NULL );
- if ( v
- && (str = kvp_value_get_string(v))
- && strlen( str ) != 0 )
- {
- if ( gnc_sx_parse_vars_from_formula( str, vars, &tmp ) < 0 )
- {
- GString *errStr;
-
- errStr = g_string_sized_new( 32 );
- g_string_printf( errStr,
- _( "Couldn't parse credit formula for "
- "split \"%s\"." ),
- xaccSplitGetMemo( s ) );
- gnc_error_dialog( GTK_WIDGET(sxed->dialog), "%s",
- errStr->str );
- g_string_free( errStr, TRUE );
-
- return FALSE;
- }
- tcds->creditSum =
- gnc_numeric_add( tcds->creditSum, tmp, 100,
- (GNC_DENOM_AUTO | GNC_HOW_DENOM_LCD) );
- tmp = gnc_numeric_zero();
- }
- v = kvp_frame_get_slot_path( f,
- GNC_SX_ID,
- GNC_SX_DEBIT_FORMULA,
- NULL );
- if ( v
- && (str = kvp_value_get_string(v))
- && strlen(str) != 0 )
- {
- if ( gnc_sx_parse_vars_from_formula( str, vars, &tmp ) < 0 )
- {
- GString *errStr;
-
- errStr = g_string_sized_new( 32 );
- g_string_printf( errStr,
- _( "Couldn't parse debit formula for "
- "split \"%s\"." ),
- xaccSplitGetMemo( s ) );
- gnc_error_dialog( GTK_WIDGET(sxed->dialog), "%s",
- (gchar*)errStr->str );
- g_string_free( errStr, TRUE );
-
- return FALSE;
- }
- tcds->debitSum = gnc_numeric_add( tcds->debitSum, tmp, 100,
- (GNC_DENOM_AUTO | GNC_HOW_DENOM_LCD) );
- tmp = gnc_numeric_zero();
- }
- }
+ if ( credit_formula &&
+ g_strcmp0 (credit_formula, "") != 0 &&
+ gnc_sx_parse_vars_from_formula(credit_formula, vars,
+ &tmp ) < 0 )
+ {
+ GString *errStr;
+
+ errStr = g_string_sized_new( 32 );
+ g_string_printf( errStr,
+ _( "Couldn't parse credit formula for "
+ "split \"%s\"." ),
+ xaccSplitGetMemo( s ) );
+ gnc_error_dialog( GTK_WIDGET(sxed->dialog), "%s",
+ errStr->str );
+ g_string_free( errStr, TRUE );
+
+ return FALSE;
+ }
+ tcds->creditSum =
+ gnc_numeric_add( tcds->creditSum, tmp, 100,
+ (GNC_DENOM_AUTO | GNC_HOW_DENOM_LCD) );
+ tmp = gnc_numeric_zero();
+ if ( debit_formula &&
+ g_strcmp0 (debit_formula, "") != 0 &&
+ gnc_sx_parse_vars_from_formula( debit_formula, vars,
+ &tmp ) < 0 )
+ {
+ GString *errStr;
+
+ errStr = g_string_sized_new( 32 );
+ g_string_printf( errStr,
+ _( "Couldn't parse debit formula for "
+ "split \"%s\"." ),
+ xaccSplitGetMemo( s ) );
+ gnc_error_dialog( GTK_WIDGET(sxed->dialog), "%s",
+ (gchar*)errStr->str );
+ g_string_free( errStr, TRUE );
+
+ return FALSE;
+ }
+ tcds->debitSum = gnc_numeric_add( tcds->debitSum, tmp, 100,
+ (GNC_DENOM_AUTO | GNC_HOW_DENOM_LCD) );
+ tmp = gnc_numeric_zero();
+ }
g_hash_table_foreach( txns,
check_credit_debit_balance,
diff --cc src/report/standard-reports/budget.scm
index 5afbc25,c12a07b..b0e7e5d
--- a/src/report/standard-reports/budget.scm
+++ b/src/report/standard-reports/budget.scm
@@@ -32,9 -31,8 +32,10 @@@
(use-modules (gnucash gettext))
(use-modules (gnucash printf))
+ (use-modules (gnucash engine))
+(use-modules (srfi srfi-1))
+
(gnc:module-load "gnucash/report/report-system" 0)
(gnc:module-load "gnucash/gnome-utils" 0) ;for gnc-build-url
commit 7e7b02af6dffa98caeb8465b1bc8b4ac49391f90
Author: Bob-IT <Bob-IT at users.noreply.github.com>
Date: Sat Dec 5 13:24:29 2015 +0000
Correct Spelling Mistake
On line 217 ASSET is spelt as ASSSET
diff --git a/accounts/en_GB/uk-vat.gnucash-xea b/accounts/en_GB/uk-vat.gnucash-xea
index c032134..5ebd26e 100644
--- a/accounts/en_GB/uk-vat.gnucash-xea
+++ b/accounts/en_GB/uk-vat.gnucash-xea
@@ -214,7 +214,7 @@
<gnc:account version="2.0.0">
<act:name>Input</act:name>
<act:id type="new">d3fda498135dbfca02febf0fbe379069</act:id>
- <act:type>ASSSET</act:type>
+ <act:type>ASSET</act:type>
<act:commodity>
<cmdty:space>ISO4217</cmdty:space>
<cmdty:id>GBP</cmdty:id>
commit e410e05da7d89b8076ad953b28d0ea790b0002e6
Author: Geert Janssens <janssens-geert at telenet.be>
Date: Fri Dec 4 18:50:49 2015 +0100
Followup on bug 682800 to fix row balances in register reports
Due to the changes done for bug 682800 the row balances for the account report
no longer matched the row balances of the original register. This commit
should fix that for a consistent experience.
diff --git a/src/report/standard-reports/register.scm b/src/report/standard-reports/register.scm
index ada8645..da9bd8e 100644
--- a/src/report/standard-reports/register.scm
+++ b/src/report/standard-reports/register.scm
@@ -323,6 +323,9 @@
(gnc:make-gnc-monetary trans-currency
(gnc-numeric-neg (xaccSplitGetValue split))))
" ")))
+ ; For single account registers, use the split's cached balance to remain
+ ; consistent with the balances shown in the register itself
+ ; For others, use the cumulated balance from the totals-collector
(if (balance-col column-vector)
(addto! row-contents
(if transaction-info?
@@ -331,7 +334,10 @@
(gnc:html-split-anchor
split
(gnc:make-gnc-monetary
- currency (cadr (total-collector 'getpair currency #f)))))
+ currency
+ (if ledger-type?
+ (cadr (total-collector 'getpair currency #f))
+ (xaccSplitGetBalance split)))))
" ")))
(gnc:html-table-append-row/markup! table row-style
commit 5a381125ae556dd9c4e4bc2f3a673791854b0ab8
Author: Peter Broadbery <p.broadbery at gmail.com>
Date: Sun Nov 15 17:16:56 2015 +0000
Some fixes to the previous commit so that it works on both guile-1.8 and 2.0
diff --git a/src/engine/test/Makefile.am b/src/engine/test/Makefile.am
index 56e3ade..5e29c7f 100644
--- a/src/engine/test/Makefile.am
+++ b/src/engine/test/Makefile.am
@@ -63,6 +63,7 @@ SCM_TEST_SRCS = $(SCM_TESTS:%=%.scm)
GNC_TEST_DEPS = \
--gnc-module-dir ${top_builddir}/src/engine \
--gnc-module-dir ${top_builddir}/src/engine/test \
+ --gnc-module-dir ${top_builddir}/src/app-utils \
--guile-load-dir ${top_builddir}/src/gnc-module \
--guile-load-dir ${top_builddir}/src/engine \
--guile-load-dir ${top_builddir}/src/app-utils \
diff --git a/src/engine/test/test-account.scm b/src/engine/test/test-account.scm
index 8b90395..e76aaff 100644
--- a/src/engine/test/test-account.scm
+++ b/src/engine/test/test-account.scm
@@ -1,7 +1,10 @@
+(use-modules (gnucash gnc-module))
+
+(gnc:module-begin-syntax (gnc:module-load "gnucash/app-utils" 0))
+
(use-modules (gnucash engine))
(use-modules (gnucash engine test test-extras))
-(use-modules (sw_engine))
(define (run-test)
(test test-account-same?)
diff --git a/src/engine/test/test-split.scm b/src/engine/test/test-split.scm
index d45f077..96dab5e 100644
--- a/src/engine/test/test-split.scm
+++ b/src/engine/test/test-split.scm
@@ -4,7 +4,6 @@
(gnc:module-begin-syntax (gnc:module-load "gnucash/app-utils" 0))
(use-modules (gnucash engine))
-(use-modules (sw_engine))
(use-modules (gnucash engine test test-extras))
(use-modules (gnucash app-utils))
diff --git a/src/engine/test/test-test-extras.scm b/src/engine/test/test-test-extras.scm
index 241b247..e735dae 100644
--- a/src/engine/test/test-test-extras.scm
+++ b/src/engine/test/test-test-extras.scm
@@ -18,6 +18,8 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(debug-set! stack 50000)
+(use-modules (gnucash gnc-module))
+(gnc:module-begin-syntax (gnc:module-load "gnucash/app-utils" 0))
(use-modules (gnucash engine test test-extras))
(use-modules (ice-9 streams))
(use-modules (gnucash engine))
diff --git a/src/report/report-system/test/Makefile.am b/src/report/report-system/test/Makefile.am
index d1ed938..4b9e126 100644
--- a/src/report/report-system/test/Makefile.am
+++ b/src/report/report-system/test/Makefile.am
@@ -21,7 +21,6 @@ TESTS = \
SCM_TESTS = \
test-collectors \
test-list-extras \
- test-test-extras \
test-report-utilities
SCM_TEST_SRCS = $(SCM_TESTS:%=%.scm)
diff --git a/src/report/report-system/test/test-collectors.scm b/src/report/report-system/test/test-collectors.scm
index 82cbd38..40651be 100644
--- a/src/report/report-system/test/test-collectors.scm
+++ b/src/report/report-system/test/test-collectors.scm
@@ -18,6 +18,8 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(debug-set! stack 50000)
+(use-modules (gnucash gnc-module))
+(gnc:module-begin-syntax (gnc:module-load "gnucash/app-utils" 0))
(use-modules (srfi srfi-1))
(use-modules (gnucash report report-system collectors))
diff --git a/src/report/report-system/test/test-list-extras.scm b/src/report/report-system/test/test-list-extras.scm
index 1855883..46f04b5 100644
--- a/src/report/report-system/test/test-list-extras.scm
+++ b/src/report/report-system/test/test-list-extras.scm
@@ -18,6 +18,8 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(debug-set! stack 50000)
+(use-modules (gnucash gnc-module))
+(gnc:module-begin-syntax (gnc:module-load "gnucash/app-utils" 0))
(use-modules (gnucash report report-system list-extras))
(use-modules (gnucash engine test test-extras))
diff --git a/src/report/report-system/test/test-report-utilities.scm b/src/report/report-system/test/test-report-utilities.scm
index 24d5d7e..d130e45 100644
--- a/src/report/report-system/test/test-report-utilities.scm
+++ b/src/report/report-system/test/test-report-utilities.scm
@@ -1,6 +1,8 @@
(use-modules (gnucash gnc-module))
(gnc:module-begin-syntax (gnc:module-load "gnucash/app-utils" 0))
+(gnc:module-begin-syntax (gnc:module-load "gnucash/report/report-system" 0))
+
(use-modules (gnucash engine test test-extras))
(use-modules (gnucash report report-system test test-extras))
commit 7cf84db85902d5169687b1722c2a008a47c2d5ab
Author: John Ralls <jralls at ceridwen.us>
Date: Thu Nov 19 09:44:57 2015 -0800
Revert the Language-Team in ar.po.
Submitter incorrectly set it to the Translation Project.
diff --git a/po/ar.po b/po/ar.po
index f3a9f6f..307aba2 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -18,7 +18,7 @@ msgstr ""
"POT-Creation-Date: 2015-10-05 12:57-0700\n"
"PO-Revision-Date: 2015-10-23 10:00+0300\n"
"Last-Translator: Abdulsalam ALshilash <ashalash at msn.com>\n"
-"Language-Team: Arabic (http://translationproject.org/team/ar.html) "
+"Language-Team: Arabic (http://www.transifex.com/projects/p/gnucash-2410/language/ar/)\n"
"<ashalash at msn.com>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
commit d4bbede08f171211fd1dd3d6018c8f95dca86f34
Author: Mike Alexander <mta at umich.edu>
Date: Tue Nov 17 02:25:37 2015 -0500
Set val_imbalance in gnc_transaction_balance_trading.
When the code was refactored in 61973a8 the return value from the new
function gnc_transaction_get_commodity_imbalance was ignored. This had
the effect of using an uninitialized variable to set the value in a new
trading account split that is not for the transaction's currency. That
means that multicommodity transactions created with this bug and trading
accounts on will not be balanced.
diff --git a/src/engine/Scrub.c b/src/engine/Scrub.c
index c82b353..dc22b20 100644
--- a/src/engine/Scrub.c
+++ b/src/engine/Scrub.c
@@ -673,7 +673,7 @@ gnc_transaction_balance_trading (Transaction *trans, Account *root)
if (! gnc_commodity_equal (txn_curr, commodity))
{
- gnc_transaction_get_commodity_imbalance (trans, commodity);
+ val_imbalance = gnc_transaction_get_commodity_imbalance (trans, commodity);
}
xaccTransBeginEdit (trans);
commit 9b3711533fc7cd641eda8e9745013b2f8af81f85
Author: Mike Alexander <mta at umich.edu>
Date: Tue Nov 17 02:23:00 2015 -0500
Remove the code in on_matcher_ok_clicked that builds refs_list.
The use and release of refs_list was removed 7358bcc in August 2012 and
since then on_matcher_ok_clicked has been leaking a GSList on every call.
diff --git a/src/import-export/import-main-matcher.c b/src/import-export/import-main-matcher.c
index 3793212..3d60557 100644
--- a/src/import-export/import-main-matcher.c
+++ b/src/import-export/import-main-matcher.c
@@ -151,11 +151,8 @@ on_matcher_ok_clicked (GtkButton *button,
GNCImportMainMatcher *info)
{
GtkTreeModel *model;
- GtkTreePath *path;
- GtkTreeRowReference *ref;
GtkTreeIter iter;
GNCImportTransInfo *trans_info;
- GSList *refs_list = NULL;
g_assert (info);
@@ -177,11 +174,6 @@ on_matcher_ok_clicked (GtkButton *button,
if (gnc_import_process_trans_item(NULL, trans_info))
{
- path = gtk_tree_model_get_path(model, &iter);
- ref = gtk_tree_row_reference_new(model, path);
- refs_list = g_slist_append(refs_list, ref);
- gtk_tree_path_free(path);
-
if (info->transaction_processed_cb)
{
info->transaction_processed_cb(trans_info,
commit 104de59519bcff9d75aaa47998e964b6ede21f12
Author: Mike Alexander <mta at umich.edu>
Date: Tue Nov 17 02:21:27 2015 -0500
Avoid assert in gnc_split_register_balance_trans if default_account is null.
diff --git a/src/register/ledger-core/split-register-control.c b/src/register/ledger-core/split-register-control.c
index 793c956..39565a4 100644
--- a/src/register/ledger-core/split-register-control.c
+++ b/src/register/ledger-core/split-register-control.c
@@ -164,7 +164,7 @@ gnc_split_register_balance_trans (SplitRegister *reg, Transaction *trans)
g_list_free (radio_list);
- root = gnc_account_get_root(default_account);
+ root = default_account ? gnc_account_get_root(default_account) : NULL;
switch (choice)
{
default:
commit 3e7c8fa45afe99c56f53b3a0bdc67a51ae86d48d
Author: Peter Broadbery <p.broadbery at gmail.com>
Date: Fri Nov 13 21:12:48 2015 +0000
Move test-account and test-split into engine/test directory
diff --git a/src/engine/test/Makefile.am b/src/engine/test/Makefile.am
index d01969a..56e3ade 100644
--- a/src/engine/test/Makefile.am
+++ b/src/engine/test/Makefile.am
@@ -53,7 +53,11 @@ TESTS = \
test-vendor \
$(SCM_TESTS)
-SCM_TESTS = test-test-extras
+SCM_TESTS = \
+ test-test-extras \
+ test-account \
+ test-split
+
SCM_TEST_SRCS = $(SCM_TESTS:%=%.scm)
GNC_TEST_DEPS = \
diff --git a/src/engine/test/test-account.scm b/src/engine/test/test-account.scm
index b30c0d0..8b90395 100644
--- a/src/engine/test/test-account.scm
+++ b/src/engine/test/test-account.scm
@@ -1,6 +1,6 @@
(use-modules (gnucash engine))
-(use-modules (gnucash report report-system test test-extras))
+(use-modules (gnucash engine test test-extras))
(use-modules (sw_engine))
(define (run-test)
diff --git a/src/engine/test/test-split.scm b/src/engine/test/test-split.scm
index 92bd571..d45f077 100644
--- a/src/engine/test/test-split.scm
+++ b/src/engine/test/test-split.scm
@@ -4,9 +4,9 @@
(gnc:module-begin-syntax (gnc:module-load "gnucash/app-utils" 0))
(use-modules (gnucash engine))
-(use-modules (gnucash report report-system test test-extras))
-
-(use-modules (gnucash report report-system))
+(use-modules (sw_engine))
+(use-modules (gnucash engine test test-extras))
+(use-modules (gnucash app-utils))
(define (run-test)
(test test-split-in-list?))
diff --git a/src/engine/test/test-test-extras.scm b/src/engine/test/test-test-extras.scm
new file mode 100644
index 0000000..241b247
--- /dev/null
+++ b/src/engine/test/test-test-extras.scm
@@ -0,0 +1,46 @@
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;; This program is free software; you can redistribute it and/or
+;; modify it under the terms of the GNU General Public License as
+;; published by the Free Software Foundation; either version 2 of
+;; the License, or (at your option) any later version.
+;;
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;; GNU General Public License for more details.
+;;
+;; You should have received a copy of the GNU General Public License
+;; along with this program; if not, contact:
+;;
+;; Free Software Foundation Voice: +1-617-542-5942
+;; 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652
+;; Boston, MA 02110-1301, USA gnu at gnu.org
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+
+(debug-set! stack 50000)
+(use-modules (gnucash engine test test-extras))
+(use-modules (ice-9 streams))
+(use-modules (gnucash engine))
+(use-modules (sw_engine))
+
+(define (run-test)
+ (and (logging-and #t)
+ (logging-and)
+ (not (logging-and #t #f))
+ (test-create-account-structure)))
+
+(define (test-create-account-structure)
+ (let ((env (create-test-env)))
+ (let ((accounts (env-create-account-structure env (list "Assets"
+ (list (cons 'type ACCT-TYPE-ASSET))
+ (list "Bank Account")
+ (list "Savings"
+ (list "Instant")
+ (list "30 day notice"))))))
+ (and (= 3 (length accounts))
+ (equal? "Assets" (xaccAccountGetName (car accounts)))
+ ))))
+
+
+
+
diff --git a/src/report/report-system/account.scm b/src/report/report-system/account.scm
deleted file mode 100644
index 6540329..0000000
--- a/src/report/report-system/account.scm
+++ /dev/null
@@ -1,5 +0,0 @@
-(define-module (gnucash report report-system account))
-(use-modules (gnucash gnc-module))
-
-
-
diff --git a/src/report/report-system/split.scm b/src/report/report-system/split.scm
deleted file mode 100644
index 07313bc..0000000
--- a/src/report/report-system/split.scm
+++ /dev/null
@@ -1,7 +0,0 @@
-(define-module (gnucash report report-system split))
-(use-modules (gnucash gnc-module))
-
-(gnc:module-begin-syntax (gnc:module-load "gnucash/engine" 0))
-
-(use-modules (sw_engine))
-
diff --git a/src/report/report-system/test/Makefile.am b/src/report/report-system/test/Makefile.am
index 09be5cf..d1ed938 100644
--- a/src/report/report-system/test/Makefile.am
+++ b/src/report/report-system/test/Makefile.am
@@ -22,8 +22,6 @@ SCM_TESTS = \
test-collectors \
test-list-extras \
test-test-extras \
- test-account \
- test-split \
test-report-utilities
SCM_TEST_SRCS = $(SCM_TESTS:%=%.scm)
diff --git a/src/report/report-system/test/test-account.scm b/src/report/report-system/test/test-account.scm
deleted file mode 100644
index 8b90395..0000000
--- a/src/report/report-system/test/test-account.scm
+++ /dev/null
@@ -1,47 +0,0 @@
-(use-modules (gnucash engine))
-
-(use-modules (gnucash engine test test-extras))
-(use-modules (sw_engine))
-
-(define (run-test)
- (test test-account-same?)
- (test test-account-in-list?)
- (test test-account-in-alist?)
- (test test-account-list-predicate))
-
-(define (test-account-same?)
- (let* ((env (create-test-env))
- (account-alist (env-create-test-accounts env))
- (bank-account (cdr (assoc "Bank" account-alist)))
- (expense-account (cdr (assoc "Expenses" account-alist))))
- (and (account-same? bank-account bank-account)
- (not (account-same? bank-account expense-account)))))
-
-(define (test-account-in-alist?)
- (let* ((env (create-test-env))
- (account-alist (env-create-test-accounts env))
- (bank-account (cdr (assoc "Bank" account-alist)))
- (wallet-account (cdr (assoc "Wallet" account-alist)))
- (expense-account (cdr (assoc "Expenses" account-alist))))
- (let ((alist (list (cons bank-account "Bank") (cons expense-account "Expenses"))))
- (and (account-in-alist bank-account alist)
- (account-in-alist expense-account alist)
- (not (account-in-alist wallet-account alist))))))
-
-(define (test-account-in-list?)
- (test-account-list-predicate-generic
- (lambda (accounts) (lambda (account) (account-in-list? account accounts)))))
-
-(define (test-account-list-predicate)
- (test-account-list-predicate-generic account-in-list-pred))
-
-(define (test-account-list-predicate-generic predicate)
- (let* ((env (create-test-env))
- (account-alist (env-create-test-accounts env))
- (bank-account (cdr (assoc "Bank" account-alist)))
- (wallet-account (cdr (assoc "Wallet" account-alist)))
- (other-account (cdr (assoc "Other" account-alist)))
- (bank-or-wallet? (predicate (list bank-account wallet-account))))
- (and (bank-or-wallet? bank-account)
- (bank-or-wallet? wallet-account)
- (not (bank-or-wallet? other-account)))))
diff --git a/src/report/report-system/test/test-split.scm b/src/report/report-system/test/test-split.scm
deleted file mode 100644
index b3e5a05..0000000
--- a/src/report/report-system/test/test-split.scm
+++ /dev/null
@@ -1,33 +0,0 @@
-(use-modules (gnucash gnc-module))
-(use-modules (srfi srfi-1))
-
-(gnc:module-begin-syntax (gnc:module-load "gnucash/app-utils" 0))
-
-(use-modules (gnucash engine))
-(use-modules (gnucash engine test test-extras))
-
-(use-modules (gnucash report report-system))
-
-(define (run-test)
- (test test-split-in-list?))
-
-(define (test-split-in-list?)
- (let* ((env (create-test-env))
- (today (gnc:date->timepair (localtime (current-time))))
- (account-alist (env-create-test-accounts env))
- (bank-account (cdr (assoc "Bank" account-alist)))
- (expense-account (cdr (assoc "Expenses" account-alist)))
- (wallet-account (cdr (assoc "Wallet" account-alist)))
- (tx1 (env-create-transaction env today bank-account wallet-account (gnc:make-gnc-numeric 20 1)))
- (tx2 (env-create-transaction env today bank-account expense-account (gnc:make-gnc-numeric 10 1)))
- (splits-tx1 (xaccTransGetSplitList tx1))
- (splits-tx2 (xaccTransGetSplitList tx2)))
- (and (split-in-list? (first splits-tx1) splits-tx1)
- (split-in-list? (second splits-tx1) splits-tx1)
- (not (split-in-list? (first splits-tx1) splits-tx2))
- (not (split-in-list? (second splits-tx1) splits-tx2))
- (not (split-in-list? (first splits-tx1) '())))))
-
-
-
-
commit 13c7abc978a4956a860b52f6aad1ad4a836966b2
Author: Peter Broadbery <p.broadbery at gmail.com>
Date: Fri Nov 13 20:33:20 2015 +0000
Moved test-extras.scm to engine directory.
diff --git a/src/engine/test/Makefile.am b/src/engine/test/Makefile.am
index 98d7d24..d01969a 100644
--- a/src/engine/test/Makefile.am
+++ b/src/engine/test/Makefile.am
@@ -50,19 +50,32 @@ TESTS = \
test-customer \
test-employee \
test-job \
- test-vendor
+ test-vendor \
+ $(SCM_TESTS)
+
+SCM_TESTS = test-test-extras
+SCM_TEST_SRCS = $(SCM_TESTS:%=%.scm)
GNC_TEST_DEPS = \
--gnc-module-dir ${top_builddir}/src/engine \
+ --gnc-module-dir ${top_builddir}/src/engine/test \
--guile-load-dir ${top_builddir}/src/gnc-module \
--guile-load-dir ${top_builddir}/src/engine \
+ --guile-load-dir ${top_builddir}/src/app-utils \
+ --guile-load-dir ${top_builddir}/src/core-utils \
+ --guile-load-dir ${top_builddir}/src/scm \
--library-dir ${top_builddir}/src/libqof/qof \
--library-dir ${top_builddir}/src/core-utils \
--library-dir ${top_builddir}/src/gnc-module \
--library-dir ${top_builddir}/src/engine \
+ --library-dir ${top_builddir}/src/app-utils \
--library-dir ${top_builddir}/src/backend/xml \
--library-dir ${top_builddir}/src/backend/sql
+$(SCM_TESTS): %: $(srcdir)/%.scm Makefile .scm-links
+ echo '${GUILE} --debug -l $(srcdir)/$*.scm -c "(exit (run-test))"' > $@
+ chmod a+x $@
+
TESTS_ENVIRONMENT = \
GUILE_WARN_DEPRECATED=no \
GUILE="${GUILE}" \
@@ -101,16 +114,31 @@ test_link_LDADD = ../libgncmod-engine.la \
${top_builddir}/src/libqof/qof/libgnc-qof.la \
${top_builddir}/src/core-utils/libgnc-core-utils.la
+SCM_TEST_HELPERS = test-extras.scm
+
EXTRA_DIST += \
test-create-account \
test-create-account.scm \
test-scm-query-import \
- test-scm-query-import.scm
+ test-scm-query-import.scm \
+ $(SCM_TEST_HELPERS) \
+ $(SCM_TEST_SRCS)
TEST_PROGS += test-engine
+.scm-links:
+ $(RM) -rf gnucash
+ mkdir -p gnucash/engine/test
+ ( cd gnucash/engine/test; for A in $(SCM_TEST_HELPERS) ; do $(LN_S) -f $(abs_srcdir)/$$A . ; done )
+if ! OS_WIN32
+# Windows knows no "ln -s" but uses "cp": must copy every time (see bug #566567).
+ touch .scm-links
+endif
+
noinst_PROGRAMS = ${TEST_PROGS} ${CHECK_PROGS}
+noinst_DATA: .scm-links
+
test_engine_SOURCES = \
test-engine.c \
utest-Account.c \
@@ -144,6 +172,8 @@ libutest_Trans_la_SOURCES = \
libutest_Trans_la_LIBADD = $(LDADD)
+CLEANFILES = .scm-links
+DISTCLEANFILES = $(SCM_TESTS)
clean-local:
rm -f translog.*
diff --git a/src/report/report-system/test/test-account.scm b/src/engine/test/test-account.scm
similarity index 100%
copy from src/report/report-system/test/test-account.scm
copy to src/engine/test/test-account.scm
diff --git a/src/report/report-system/test/test-extras.scm b/src/engine/test/test-extras.scm
similarity index 81%
copy from src/report/report-system/test/test-extras.scm
copy to src/engine/test/test-extras.scm
index 52506d4..0541ce5 100644
--- a/src/report/report-system/test/test-extras.scm
+++ b/src/engine/test/test-extras.scm
@@ -17,19 +17,16 @@
;; Boston, MA 02110-1301, USA gnu at gnu.org
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-(define-module (gnucash report report-system test test-extras))
+(define-module (gnucash engine test test-extras))
(use-modules (gnucash gnc-module))
-(gnc:module-load "gnucash/report/report-system" 0)
-(use-modules (sw_engine))
-
-(use-modules (gnucash main)) ;; FIXME: delete after we finish modularizing.
(use-modules (gnucash printf))
-(use-modules (gnucash report report-system))
(use-modules (gnucash app-utils))
(use-modules (gnucash engine))
(use-modules (srfi srfi-1))
+(use-modules (sw_app_utils))
+(use-modules (sw_engine))
(export logging-and)
(export test)
@@ -60,17 +57,6 @@
(export env-create-account-structure-alist)
(export env-expense-account-structure)
-(export pattern-streamer)
-
-(export create-option-set)
-(export option-set-setter)
-(export option-set-getter)
-
-(export tbl-column-count)
-(export tbl-row-count)
-(export tbl-ref)
-(export tbl-ref->number)
-
;;
;; Random test related syntax and the like
;;
@@ -267,61 +253,6 @@
(list "Other")
(list "Expenses"
(list (cons 'type ACCT-TYPE-EXPENSE))))))
-;; Date sequences
-;;
-
-
-;;
-;; Table parsing
-;;
-(use-modules (ice-9 regex))
-(use-modules (ice-9 streams))
-
-(define (values-for-keywords pos regex-list text)
- (make-stream (lambda (pos-keywords-pair)
- (let ((current-pos (car pos-keywords-pair))
- (regex-list (cdr pos-keywords-pair)))
- (if (null? regex-list)
- '()
- (let ((match (string-match (caar regex-list) text current-pos)))
- (if (not match)
- '()
- (let ((new-state (cons (match:end match)
- (cdr regex-list)))
- (next-value (cons (match:end match)
- (map (lambda (item)
- (match:substring match item))
- (cdar regex-list)))))
- (cons next-value new-state)))))))
- (cons pos regex-list)))
-
-(define (pattern-streamer start-text regex-list text)
- (define (stream-next index)
- ;;(format #t "Next. Index: ~a\n" index)
- (let ((head-index (string-contains text start-text index)))
- ;; (format #t "head index ~a ~a --> ~a\n" start-text index head-index)
- (if (not head-index) '()
- (let ((values (stream->list (values-for-keywords head-index regex-list text))))
- (if (null? values) '()
- (let ((new-state (car (car (last-pair values))))
- (next-value (map cdr values)))
- (cons next-value new-state)))))))
- ;;(format #t "Stream ~a\n" text)
- (make-stream stream-next 0))
-
-;; silly table functions
-(define (tbl-column-count tbl)
- (length (car tbl)))
-
-(define (tbl-row-count tbl)
- (length tbl))
-
-(define (tbl-ref tbl row-index column-index)
- (list-ref (list-ref tbl row-index) column-index))
-
-(define (tbl-ref->number tbl row-index column-index)
- (string->number (car (tbl-ref tbl row-index column-index))))
-
;;
;; Test sinks
;;
diff --git a/src/report/report-system/test/test-split.scm b/src/engine/test/test-split.scm
similarity index 98%
copy from src/report/report-system/test/test-split.scm
copy to src/engine/test/test-split.scm
index b835a57..92bd571 100644
--- a/src/report/report-system/test/test-split.scm
+++ b/src/engine/test/test-split.scm
@@ -27,7 +27,3 @@
(not (split-in-list? (first splits-tx1) splits-tx2))
(not (split-in-list? (second splits-tx1) splits-tx2))
(not (split-in-list? (first splits-tx1) '())))))
-
-
-
-
diff --git a/src/report/report-system/test/Makefile.am b/src/report/report-system/test/Makefile.am
index 03c001f..09be5cf 100644
--- a/src/report/report-system/test/Makefile.am
+++ b/src/report/report-system/test/Makefile.am
@@ -34,10 +34,12 @@ GNC_TEST_DEPS = --gnc-module-dir ${top_builddir}/src/engine \
--gnc-module-dir ${top_builddir}/src/html \
--gnc-module-dir ${top_builddir}/src/report/report-system \
--gnc-module-dir ${top_builddir}/src/report/report-system/test \
+ --gnc-module-dir ${top_builddir}/src/engine/test \
\
--guile-load-dir ${top_builddir}/src/gnc-module \
--guile-load-dir ${top_builddir}/src/scm \
--guile-load-dir ${top_builddir}/src/engine \
+ --guile-load-dir ${top_builddir}/src/engine/test \
--guile-load-dir ${top_builddir}/src/core-utils \
--guile-load-dir ${top_builddir}/src/app-utils \
--guile-load-dir ${top_builddir}/src/gnome-utils \
diff --git a/src/report/report-system/test/test-account.scm b/src/report/report-system/test/test-account.scm
index b30c0d0..8b90395 100644
--- a/src/report/report-system/test/test-account.scm
+++ b/src/report/report-system/test/test-account.scm
@@ -1,6 +1,6 @@
(use-modules (gnucash engine))
-(use-modules (gnucash report report-system test test-extras))
+(use-modules (gnucash engine test test-extras))
(use-modules (sw_engine))
(define (run-test)
diff --git a/src/report/report-system/test/test-collectors.scm b/src/report/report-system/test/test-collectors.scm
index c00402b..82cbd38 100644
--- a/src/report/report-system/test/test-collectors.scm
+++ b/src/report/report-system/test/test-collectors.scm
@@ -21,7 +21,7 @@
(use-modules (srfi srfi-1))
(use-modules (gnucash report report-system collectors))
-(use-modules (gnucash report report-system test test-extras))
+(use-modules (gnucash engine test test-extras))
(define (run-test)
(and (test test-empty)
diff --git a/src/report/report-system/test/test-extras.scm b/src/report/report-system/test/test-extras.scm
index 52506d4..a150f38 100644
--- a/src/report/report-system/test/test-extras.scm
+++ b/src/report/report-system/test/test-extras.scm
@@ -20,45 +20,7 @@
(define-module (gnucash report report-system test test-extras))
(use-modules (gnucash gnc-module))
-
-(gnc:module-load "gnucash/report/report-system" 0)
-(use-modules (sw_engine))
-
-(use-modules (gnucash main)) ;; FIXME: delete after we finish modularizing.
-(use-modules (gnucash printf))
-(use-modules (gnucash report report-system))
-(use-modules (gnucash app-utils))
-(use-modules (gnucash engine))
-(use-modules (srfi srfi-1))
-
-(export logging-and)
-(export test)
-(export make-test-sink)
-(export env-test-sink)
-(export test-sink-report)
-(export test-sink-check)
-
-(export delayed-format)
-(export delayed-format-render)
-
-(export with-account)
-(export with-transaction)
-
-(export create-test-env)
-(export env-random-amount)
-(export env-random)
-(export env-counter-next)
-(export env-string)
-(export env-select-price-source)
-(export env-any-date)
-(export env-create-transaction)
-(export env-create-account)
-(export env-create-root-account)
-(export env-create-test-accounts)
-(export env-create-daily-transactions)
-(export env-create-account-structure)
-(export env-create-account-structure-alist)
-(export env-expense-account-structure)
+(use-modules (gnucash engine test test-extras))
(export pattern-streamer)
@@ -72,205 +34,9 @@
(export tbl-ref->number)
;;
-;; Random test related syntax and the like
-;;
-
-;; logging-and is mostly for debugging tests
-(define-macro (logging-and . args)
- (cons 'and (map (lambda (arg)
- (list 'begin
- (list 'format #t "Test: ~a\n" (list 'quote arg))
- arg))
- args)))
-
-;; ..and 'test' gives nicer output
-(define (test the-test)
- (format #t "(Running ~a " the-test)
- (let ((result (the-test)))
- (format #t "~a Completed)\n" result)
- result))
-
-;;
-;; Gnucash specifics
-;;
-
-;; Really could do with generalising and making into a 'with' macro
-(define (with-account account fn)
- (begin (xaccAccountBeginEdit account)
- (let ((result (fn)))
- (xaccAccountCommitEdit account)
- result)))
-
-(define (with-accounts accounts fn)
- (begin (map xaccAccountBeginEdit accounts)
- (let ((result (fn)))
- (map xaccAccountCommitEdit accounts)
- result)))
-
-(define (with-transaction txn fn)
- (begin (xaccTransBeginEdit txn)
- (let ((result (fn)))
- (xaccTransCommitEdit txn)
- result)))
-
-;; Test environments.. an environment is just an alist with some well
-;; known names. The idea is that we can use it to pass around
-;; "suitable" sets of values for things
-
-(define (make-counter)
- (let ((x 0))
- (lambda ()
- (begin (set! x (+ x 1))
- x))))
-
-(define (create-test-env)
- (list (cons 'random (seed->random-state (random 1000)))
- (cons 'counter (make-counter))
- (cons 'sink (make-test-sink))))
-
-(define (env-random-amount env n)
- (gnc:make-gnc-numeric (env-random env n) 1))
-
-(define (env-random env n)
- (random n (assoc-ref env 'random)))
-
-(define (env-counter-next env)
- ((assoc-ref env 'counter)))
-
-(define (env-string env prefix)
- (format #f "~a-~a" prefix (env-counter-next env)))
-
-(define (env-select-price-source env)
- 'pricedb-nearest)
-
-(define (env-test-sink env)
- (assoc-ref env 'sink))
-
-(define (env-any-date env) (gnc:get-today))
-
-(define (env-create-transaction env date credit debit aaa)
- (let ((txn (xaccMallocTransaction (gnc-get-current-book)))
- (split-1 (xaccMallocSplit (gnc-get-current-book)))
- (split-2 (xaccMallocSplit (gnc-get-current-book)))
- (localtime (gnc:timepair->date date)))
- (with-transaction txn
- (lambda ()
- (xaccTransSetDescription txn (env-string env "ponies"))
- (xaccTransSetCurrency txn (gnc-default-report-currency))
- (xaccTransSetDate txn
- (gnc:date-get-month-day localtime)
- (gnc:date-get-month localtime)
- (gnc:date-get-year localtime))
- (xaccSplitSetParent split-1 txn)
- (xaccSplitSetParent split-2 txn)
- (xaccSplitSetAccount split-1 credit)
- (xaccSplitSetAccount split-2 debit)
- (xaccSplitSetAmount split-1 aaa)
- (xaccSplitSetAmount split-2 (gnc-numeric-neg aaa))
- (xaccSplitSetValue split-1 aaa)
- (xaccSplitSetValue split-2 (gnc-numeric-neg aaa))
-
- ))
- ;(format #t "tx ~a\n" (map xaccSplitGetAmount (list split-1 split-2)))
- ;(format #t "tx ~a\n" (map xaccSplitGetValue (list split-1 split-2)))
- txn))
-
-
-(define (env-create-root-account env type commodity)
- (env-create-account env type commodity (gnc-get-current-root-account)))
-
-(define (env-create-account env type commodity parent-account)
- (let ((new-account (xaccMallocAccount (gnc-get-current-book))))
- (with-accounts (list new-account parent-account)
- (lambda ()
- (xaccAccountSetCommodity new-account commodity)
- (xaccAccountSetName new-account (env-string env "account"))
- (xaccAccountSetType new-account type)
- (gnc-account-append-child parent-account new-account)
- new-account))))
-
-;; Spend '1' on the 1st, '2' on the 2nd, etc. Makes for pretty graphs
-(define (env-create-daily-transactions env start-date end-date to-account from-account)
- (let ((dates-this-month (gnc:make-date-list start-date
- end-date
- DayDelta)))
- (for-each (lambda (date)
- (env-create-transaction env date to-account
- from-account
- (gnc:make-gnc-numeric
- (gnc:date-get-month-day (gnc:timepair->date date))
- 1)))
- (cdr (reverse dates-this-month)))))
-
-(define (env-create-account-structure env account-structure)
- (define (lookup-options list)
- (if (null? list) (cons '() '())
- (if (not (pair? (car list)))
- (cons '() list)
- (if (not (pair? (car (car list))))
- (cons '() list)
- list))))
-
- (define (create-substructure parent options account-structure)
- ;;(format #t "Creating subaccounts for ~a ~a\n"
- ;; (xaccAccountGetName parent) account-structure)
- (let* ((account-name (car account-structure))
- (options-pair (lookup-options (cdr account-structure)))
- (options (append (car options-pair) options)))
- ;;(format #t "New Account ~a\n" account-name)
- ;;(format #t "Options ~a\n" (car options-pair))
- ;;(format #t "Child list ~a\n" (cdr options-pair))
- (let ((new-account (env-create-account env (assoc-ref options 'type)
- (assoc-ref options 'commodity)
- parent)))
- (with-accounts (list new-account)
- (lambda ()
- (xaccAccountSetName new-account account-name)))
-
- (cons new-account
- (map (lambda (child)
- (create-substructure new-account options child))
- (cdr options-pair))))))
- (let ((options (list (cons 'commodity (gnc-default-report-currency))
- (cons 'type '()))))
- (create-substructure (gnc-get-current-root-account)
- options
- account-structure)))
-
-(define (env-create-account-structure-alist env account-structure)
- (let ((accounts (env-create-account-structure env account-structure)))
- (define (flatten l)
- (if (null? l) '()
- (if (not (pair? l)) (list l)
- (append (flatten (car l)) (flatten (cdr l))))))
- (map (lambda (acct) (cons (xaccAccountGetName acct) acct))
- (flatten accounts))))
-
-(define (env-expense-account-structure env)
- (env-create-account-structure
- env
- (list "Expenses"
- (list (cons 'type ACCT-TYPE-EXPENSE))
- (list "Groceries")
- (list "Rent")
- (list "Auto"
- (list "Tax")
- (list "Parking")
- (list "Petrol")))))
-
-(define (env-create-test-accounts env)
- (env-create-account-structure-alist env
- (list "Root"
- (list (cons 'type ACCT-TYPE-ASSET))
- (list "Bank")
- (list "Wallet")
- (list "Other")
- (list "Expenses"
- (list (cons 'type ACCT-TYPE-EXPENSE))))))
-;; Date sequences
+;; Random report test related syntax and the like
;;
-
;;
;; Table parsing
;;
diff --git a/src/report/report-system/test/test-list-extras.scm b/src/report/report-system/test/test-list-extras.scm
index 8e3b973..1855883 100644
--- a/src/report/report-system/test/test-list-extras.scm
+++ b/src/report/report-system/test/test-list-extras.scm
@@ -19,7 +19,7 @@
(debug-set! stack 50000)
(use-modules (gnucash report report-system list-extras))
-(use-modules (gnucash report report-system test test-extras))
+(use-modules (gnucash engine test test-extras))
(define (run-test)
(test test-list-min-max))
diff --git a/src/report/report-system/test/test-report-utilities.scm b/src/report/report-system/test/test-report-utilities.scm
index d3aeea2..24d5d7e 100644
--- a/src/report/report-system/test/test-report-utilities.scm
+++ b/src/report/report-system/test/test-report-utilities.scm
@@ -2,6 +2,7 @@
(gnc:module-begin-syntax (gnc:module-load "gnucash/app-utils" 0))
+(use-modules (gnucash engine test test-extras))
(use-modules (gnucash report report-system test test-extras))
(use-modules (gnucash report report-system))
diff --git a/src/report/report-system/test/test-split.scm b/src/report/report-system/test/test-split.scm
index b835a57..b3e5a05 100644
--- a/src/report/report-system/test/test-split.scm
+++ b/src/report/report-system/test/test-split.scm
@@ -4,7 +4,7 @@
(gnc:module-begin-syntax (gnc:module-load "gnucash/app-utils" 0))
(use-modules (gnucash engine))
-(use-modules (gnucash report report-system test test-extras))
+(use-modules (gnucash engine test test-extras))
(use-modules (gnucash report report-system))
diff --git a/src/report/report-system/test/test-test-extras.scm b/src/report/report-system/test/test-test-extras.scm
index 26a0e7b..92d4831 100644
--- a/src/report/report-system/test/test-test-extras.scm
+++ b/src/report/report-system/test/test-test-extras.scm
@@ -19,6 +19,8 @@
(debug-set! stack 50000)
(use-modules (gnucash report report-system test test-extras))
+(use-modules (gnucash engine test test-extras))
+
(use-modules (ice-9 streams))
(define (run-test)
@@ -97,7 +99,7 @@
;(use-modules (gnucash printf))
;(use-modules (gnucash report report-system))
;(use-modules (gnucash app-utils))
-;(use-modules (gnucash engine))
+(use-modules (gnucash engine))
(use-modules (sw_engine))
(define (test-create-account-structure)
diff --git a/src/report/standard-reports/test/Makefile.am b/src/report/standard-reports/test/Makefile.am
index c3529b2..80c78d5 100644
--- a/src/report/standard-reports/test/Makefile.am
+++ b/src/report/standard-reports/test/Makefile.am
@@ -12,6 +12,7 @@ SCM_TEST_SRCS = $(SCM_TESTS:%=%.scm)
GNC_TEST_DEPS = \
--gnc-module-dir ${top_builddir}/src/engine \
+ --gnc-module-dir ${top_builddir}/src/engine/test \
--gnc-module-dir ${top_builddir}/src/app-utils \
--gnc-module-dir ${top_builddir}/src/gnome-utils \
--gnc-module-dir ${top_builddir}/src/html \
@@ -24,6 +25,7 @@ GNC_TEST_DEPS = \
--guile-load-dir ${top_builddir}/src/gnc-module \
--guile-load-dir ${top_builddir}/src/scm \
--guile-load-dir ${top_builddir}/src/engine \
+ --guile-load-dir ${top_builddir}/src/engine/test \
--guile-load-dir ${top_builddir}/src/core-utils \
--guile-load-dir ${top_builddir}/src/app-utils \
--guile-load-dir ${top_builddir}/src/gnome-utils \
diff --git a/src/report/standard-reports/test/test-cash-flow.scm b/src/report/standard-reports/test/test-cash-flow.scm
index 76a3b85..871fd15 100644
--- a/src/report/standard-reports/test/test-cash-flow.scm
+++ b/src/report/standard-reports/test/test-cash-flow.scm
@@ -2,7 +2,7 @@
(gnc:module-begin-syntax (gnc:module-load "gnucash/app-utils" 0))
-(use-modules (gnucash report report-system test test-extras))
+(use-modules (gnucash engine test test-extras))
(use-modules (gnucash report standard-reports cash-flow))
(use-modules (gnucash report report-system))
diff --git a/src/report/standard-reports/test/test-generic-category-report.scm b/src/report/standard-reports/test/test-generic-category-report.scm
index 785542a..e5a0473 100644
--- a/src/report/standard-reports/test/test-generic-category-report.scm
+++ b/src/report/standard-reports/test/test-generic-category-report.scm
@@ -34,6 +34,7 @@
(use-modules (sw_engine))
(use-modules (gnucash report report-system collectors))
+(use-modules (gnucash engine test test-extras))
(use-modules (gnucash report report-system test test-extras))
(export run-category-income-expense-test)
diff --git a/src/report/standard-reports/test/test-generic-net-barchart.scm b/src/report/standard-reports/test/test-generic-net-barchart.scm
index c65d897..91a1a48 100644
--- a/src/report/standard-reports/test/test-generic-net-barchart.scm
+++ b/src/report/standard-reports/test/test-generic-net-barchart.scm
@@ -26,6 +26,7 @@
(use-modules (gnucash gnc-module))
(gnc:module-load "gnucash/report/report-system" 0)
+(use-modules (gnucash engine test test-extras))
(use-modules (gnucash report report-system test test-extras))
(export run-net-asset-income-test)
diff --git a/src/report/standard-reports/test/test-generic-net-linechart.scm b/src/report/standard-reports/test/test-generic-net-linechart.scm
index 963eea4..dd79472 100644
--- a/src/report/standard-reports/test/test-generic-net-linechart.scm
+++ b/src/report/standard-reports/test/test-generic-net-linechart.scm
@@ -27,6 +27,7 @@
(gnc:module-load "gnucash/report/report-system" 0)
(use-modules (gnucash report report-system test test-extras))
+(use-modules (gnucash engine test test-extras))
(export run-net-asset-test)
commit c26b81bff8686927cd68c37a116ba8d4dfc36fd4
Author: Peter Broadbery <p.broadbery at gmail.com>
Date: Mon Nov 9 22:16:26 2015 +0000
cash-flow.scm: Use hashtables for accounts as well
diff --git a/src/report/standard-reports/cash-flow.scm b/src/report/standard-reports/cash-flow.scm
index 460eaf0..7d857d0 100644
--- a/src/report/standard-reports/cash-flow.scm
+++ b/src/report/standard-reports/cash-flow.scm
@@ -397,12 +397,14 @@
(include-trading-accounts (cdr (assq 'include-trading-accounts settings)))
(to-report-currency (cdr (assq 'to-report-currency settings)))
+ (is-report-account? (account-in-list-pred accounts))
+
(money-in-accounts '())
- (money-in-alist '())
+ (money-in-hash (make-hash-table))
(money-in-collector (gnc:make-commodity-collector))
(money-out-accounts '())
- (money-out-alist '())
+ (money-out-hash (make-hash-table))
(money-out-collector (gnc:make-commodity-collector))
(all-splits (gnc:account-get-trans-type-splits-interval accounts '() from-date-tp to-date-tp))
@@ -446,46 +448,44 @@
(if (and ;; make sure we don't have
(not (null? s-account)) ;; any dangling splits
(or include-trading-accounts (not (eq? s-account-type ACCT-TYPE-TRADING)))
- (not (account-in-list? s-account accounts)))
+ (not (is-report-account? s-account)))
(if (not (split-seen? s))
(begin
(if (gnc-numeric-negative-p s-value)
- (let ((pair (account-in-alist s-account money-in-alist)))
+ (let ((s-account-in-collector (account-hashtable-ref money-in-hash s-account)))
;(gnc:debug "in:" (gnc-commodity-get-printname s-commodity)
; (gnc-numeric-to-double s-amount)
; (gnc-commodity-get-printname parent-currency)
; (gnc-numeric-to-double s-value))
- (if (not pair)
+ (if (not s-account-in-collector)
(begin
- (set! pair (list s-account (gnc:make-commodity-collector)))
- (set! money-in-alist (cons pair money-in-alist))
+ (set! s-account-in-collector (gnc:make-commodity-collector))
+ (account-hashtable-set! money-in-hash s-account
+ s-account-in-collector)
(set! money-in-accounts (cons s-account money-in-accounts))
- ;(gnc:debug money-in-alist)
)
)
- (let ((s-account-in-collector (cadr pair))
- (s-report-value (to-report-currency parent-currency
+ (let ((s-report-value (to-report-currency parent-currency
(gnc-numeric-neg s-value)
(gnc-transaction-get-date-posted
parent))))
(money-in-collector 'add report-currency s-report-value)
(s-account-in-collector 'add report-currency s-report-value))
)
- (let ((pair (account-in-alist s-account money-out-alist)))
+ (let ((s-account-out-collector (account-hashtable-ref money-out-hash s-account)))
;(gnc:debug "out:" (gnc-commodity-get-printname s-commodity)
; (gnc-numeric-to-double s-amount)
; (gnc-commodity-get-printname parent-currency)
; (gnc-numeric-to-double s-value))
- (if (not pair)
+ (if (not s-account-out-collector)
(begin
- (set! pair (list s-account (gnc:make-commodity-collector)))
- (set! money-out-alist (cons pair money-out-alist))
+ (set! s-account-out-collector (gnc:make-commodity-collector))
+ (account-hashtable-set! money-out-hash s-account
+ s-account-out-collector)
(set! money-out-accounts (cons s-account money-out-accounts))
- ;(gnc:debug money-out-alist)
)
)
- (let ((s-account-out-collector (cadr pair))
- (s-report-value (to-report-currency parent-currency
+ (let ((s-report-value (to-report-currency parent-currency
s-value
(gnc-transaction-get-date-posted
parent))))
@@ -512,10 +512,10 @@
(calc-money-in-out-internal accounts)
;; Return an association list of results
(list (cons 'money-in-accounts money-in-accounts)
- (cons 'money-in-alist money-in-alist)
+ (cons 'money-in-alist (hash-map->list (lambda (k v) (list k v)) money-in-hash))
(cons 'money-in-collector money-in-collector)
(cons 'money-out-accounts money-out-accounts)
- (cons 'money-out-alist money-out-alist)
+ (cons 'money-out-alist (hash-map->list (lambda (k v) (list k v)) money-out-hash))
(cons 'money-out-collector money-out-collector))))
(gnc:define-report
commit eb600c79a4288c38cb414d9a3ba45607b27bf634
Author: Peter Broadbery <p.broadbery at gmail.com>
Date: Thu Nov 12 20:43:58 2015 +0000
engine-utilities.scm: Add a couple of hashtable functions.
diff --git a/src/engine/engine-utilities.scm b/src/engine/engine-utilities.scm
index 238866a..3ea6bec 100644
--- a/src/engine/engine-utilities.scm
+++ b/src/engine/engine-utilities.scm
@@ -80,6 +80,18 @@
(+ acct-depth (- (gnc-account-get-tree-depth acct) 1))))
accounts)))
+(define (account-assoc acc alist)
+ (find (lambda (pair) (account-same? acc (car pair))) alist))
+
+(define (account-hash acc size)
+ (remainder (string-hash (gncAccountGetGUID acc)) size))
+
+(define (account-hashtable-ref table account)
+ (hashx-ref account-hash account-assoc table account))
+
+(define (account-hashtable-set! table account value)
+ (hashx-set! account-hash account-assoc table account value))
+
;; Splits
(export split-same?)
(export split-in-list?)
diff --git a/src/engine/engine.scm b/src/engine/engine.scm
index 14847f9..00bd61c 100644
--- a/src/engine/engine.scm
+++ b/src/engine/engine.scm
@@ -79,6 +79,8 @@
(export account-full-name<?)
(export account-list-predicate)
(export accounts-get-children-depth)
+(export account-hashtable-ref)
+(export account-hashtable-set!)
(export split-same?)
(export split-in-list?)
commit cca9cc7c22435383bae1158941a696a1301a04b0
Author: Peter Broadbery <p.broadbery at gmail.com>
Date: Mon Nov 9 20:53:19 2015 +0000
cash-flow.scm: Use a hashtable instead of a list.
This removes O(n^2) behaviour in the number of splits.
diff --git a/src/report/standard-reports/cash-flow.scm b/src/report/standard-reports/cash-flow.scm
index 2f8d385..460eaf0 100644
--- a/src/report/standard-reports/cash-flow.scm
+++ b/src/report/standard-reports/cash-flow.scm
@@ -407,9 +407,15 @@
(all-splits (gnc:account-get-trans-type-splits-interval accounts '() from-date-tp to-date-tp))
(splits-to-do (length all-splits))
- (seen-split-list '())
+ (splits-seen-table (make-hash-table))
(work-done 0))
+ (define (split-seen? split)
+ (if (split-hashtable-ref splits-seen-table split) #t
+ (begin
+ (split-hashtable-set! splits-seen-table split #t)
+ #f)))
+
(define (work-per-split split)
(set! work-done (+ 1 work-done))
(if (= (modulo work-done 100) 0)
@@ -441,9 +447,8 @@
(not (null? s-account)) ;; any dangling splits
(or include-trading-accounts (not (eq? s-account-type ACCT-TYPE-TRADING)))
(not (account-in-list? s-account accounts)))
- (if (not (split-in-list? s seen-split-list))
+ (if (not (split-seen? s))
(begin
- (set! seen-split-list (cons s seen-split-list))
(if (gnc-numeric-negative-p s-value)
(let ((pair (account-in-alist s-account money-in-alist)))
;(gnc:debug "in:" (gnc-commodity-get-printname s-commodity)
commit 5ff205d41fee190673d3a88517b09fd1591e3462
Author: Peter Broadbery <p.broadbery at gmail.com>
Date: Thu Nov 12 20:38:49 2015 +0000
engine-utilities.scm: Add a specialised hashtable.
diff --git a/src/engine/engine-utilities.scm b/src/engine/engine-utilities.scm
index 1310ff9..238866a 100644
--- a/src/engine/engine-utilities.scm
+++ b/src/engine/engine-utilities.scm
@@ -95,3 +95,19 @@
((split-same? (car splits) split) #t)
(else (split-in-list? split (cdr splits))))))
+;; Split hashtable. Because we do gncSplitGetGUID so often, it
+;; turns out to be a bit quicker to store a (hash, split) pair
+;; instead of just the split.
+(define (split-assoc split alist)
+ (find (lambda (pair) (split-same? (cdr split) (cdr (car pair)))) alist))
+(define (split-hash split size)
+ (remainder (car split) size))
+
+(define (split-hashtable-ref table split)
+ (hashx-ref split-hash split-assoc table
+ (cons (string-hash (gncSplitGetGUID split)) split)))
+
+(define (split-hashtable-set! table split value)
+ (hashx-set! split-hash split-assoc table
+ (cons (string-hash (gncSplitGetGUID split)) split) value))
+
diff --git a/src/engine/engine.scm b/src/engine/engine.scm
index 5c52b14..14847f9 100644
--- a/src/engine/engine.scm
+++ b/src/engine/engine.scm
@@ -83,6 +83,11 @@
(export split-same?)
(export split-in-list?)
+(export split-same?)
+(export split-in-list?)
+(export split-hashtable-ref)
+(export split-hashtable-set!)
+
(export gnc:split-structure)
(export gnc:make-split-scm)
(export gnc:split-scm?)
commit 526fd82ca8bc5b2e05c40233c147ddd2c4e1a97a
Author: Peter Broadbery <p.broadbery at gmail.com>
Date: Mon Nov 9 20:42:43 2015 +0000
cashflow: use the much faster gnc:account-get-trans-type-splits-interval
This retrieves all the splits we need, and much faster.
diff --git a/src/report/standard-reports/cash-flow.scm b/src/report/standard-reports/cash-flow.scm
index f2fb9c6..2f8d385 100644
--- a/src/report/standard-reports/cash-flow.scm
+++ b/src/report/standard-reports/cash-flow.scm
@@ -405,7 +405,8 @@
(money-out-alist '())
(money-out-collector (gnc:make-commodity-collector))
- (splits-to-do (gnc:accounts-count-splits accounts))
+ (all-splits (gnc:account-get-trans-type-splits-interval accounts '() from-date-tp to-date-tp))
+ (splits-to-do (length all-splits))
(seen-split-list '())
(work-done 0))
@@ -499,12 +500,8 @@
)
)
- (define (calc-money-in-out-internal accounts-internal)
- (if (not (null? accounts-internal))
- (let* ((current (car accounts-internal))
- (rest (cdr accounts-internal)))
- (for-each work-per-split (xaccAccountGetSplitList current))
- (calc-money-in-out-internal rest))))
+ (define (calc-money-in-out-internal accounts)
+ (for-each work-per-split all-splits))
;; And calculate
(calc-money-in-out-internal accounts)
commit 8d123382442afae25003ed4295992237ff76be47
Author: Peter Broadbery <p.broadbery at gmail.com>
Date: Sun Nov 8 22:37:08 2015 +0000
Add cashflow test
diff --git a/src/report/standard-reports/test/Makefile.am b/src/report/standard-reports/test/Makefile.am
index 6f89e4d..c3529b2 100644
--- a/src/report/standard-reports/test/Makefile.am
+++ b/src/report/standard-reports/test/Makefile.am
@@ -3,6 +3,7 @@ MODULE_TESTS=test-load-module
TESTS = $(SCM_TESTS) $(MODULE_TESTS)
SCM_TESTS = \
+ test-cash-flow \
test-standard-category-report \
test-standard-net-barchart \
test-standard-net-linechart
diff --git a/src/report/standard-reports/test/test-cash-flow.scm b/src/report/standard-reports/test/test-cash-flow.scm
new file mode 100644
index 0000000..76a3b85
--- /dev/null
+++ b/src/report/standard-reports/test/test-cash-flow.scm
@@ -0,0 +1,127 @@
+(use-modules (gnucash gnc-module))
+
+(gnc:module-begin-syntax (gnc:module-load "gnucash/app-utils" 0))
+
+(use-modules (gnucash report report-system test test-extras))
+(use-modules (gnucash report standard-reports cash-flow))
+(use-modules (gnucash report report-system))
+
+(define (run-test)
+ (and (test test-one-tx-in-cash-flow)
+ (test test-one-tx-skip-cash-flow)
+ (test test-both-way-cash-flow)))
+
+(define structure
+ (list "Root" (list (cons 'type ACCT-TYPE-ASSET))
+ (list "Asset"
+ (list "Bank")
+ (list "Wallet"))
+ (list "Expenses" (list (cons 'type ACCT-TYPE-EXPENSE)))))
+
+(define (NDayDelta n)
+ (let ((ddt (make-zdate)))
+ (set-tm:year ddt n)
+ ddt))
+
+(define (test-one-tx-in-cash-flow)
+ (let* ((env (create-test-env))
+ (account-alist (env-create-account-structure-alist env structure))
+ (bank-account (cdr (assoc "Bank" account-alist)))
+ (wallet-account (cdr (assoc "Wallet" account-alist)))
+ (expense-account (cdr (assoc "Expenses" account-alist)))
+ (today (gnc:date->timepair (localtime (current-time))))
+ (exchange-fn (lambda (currency amount date) amount))
+ (report-currency (gnc-default-report-currency))
+ )
+ (env-create-transaction env today bank-account expense-account (gnc:make-gnc-numeric 100 1))
+ (let ((result (cash-flow-calc-money-in-out (list (cons 'accounts (list bank-account))
+ (cons 'to-date-tp today)
+ (cons 'from-date-tp (decdate today (NDayDelta 1)))
+ (cons 'report-currency report-currency)
+ (cons 'include-trading-accounts #f)
+ (cons 'to-report-currency exchange-fn)))))
+ (let* ((money-in-collector (cdr (assq 'money-in-collector result)))
+ (money-out-collector (cdr (assq 'money-out-collector result)))
+ (money-in-alist (cdr (assq 'money-in-alist result)))
+ (money-out-alist (cdr (assq 'money-out-alist result)))
+ (expense-acc-in-collector (cadr (assoc expense-account money-in-alist))))
+ (and (null? money-out-alist)
+ (equal? (gnc:make-gnc-numeric 10000 100)
+ (gnc:gnc-monetary-amount (gnc:sum-collector-commodity expense-acc-in-collector
+ report-currency exchange-fn)))
+ (equal? (gnc:make-gnc-numeric 10000 100)
+ (gnc:gnc-monetary-amount (gnc:sum-collector-commodity money-in-collector
+ report-currency exchange-fn)))
+ (equal? (gnc:make-gnc-numeric 0 1)
+ (gnc:gnc-monetary-amount (gnc:sum-collector-commodity money-out-collector
+ report-currency exchange-fn)))
+ )))))
+
+(define (test-one-tx-skip-cash-flow)
+ (let* ((env (create-test-env))
+ (account-alist (env-create-account-structure-alist env structure))
+ (bank-account (cdr (assoc "Bank" account-alist)))
+ (wallet-account (cdr (assoc "Wallet" account-alist)))
+ (expense-account (cdr (assoc "Expenses" account-alist)))
+ (today (gnc:date->timepair (localtime (current-time))))
+ (exchange-fn (lambda (currency amount date) amount))
+ (report-currency (gnc-default-report-currency))
+ )
+ (env-create-transaction env today bank-account wallet-account (gnc:make-gnc-numeric 100 1))
+ (let ((result (cash-flow-calc-money-in-out (list (cons 'accounts (list wallet-account bank-account))
+ (cons 'to-date-tp today)
+ (cons 'from-date-tp (decdate today (NDayDelta 1)))
+ (cons 'report-currency report-currency)
+ (cons 'include-trading-accounts #f)
+ (cons 'to-report-currency exchange-fn)))))
+ (let* ((money-in-collector (cdr (assq 'money-in-collector result)))
+ (money-out-collector (cdr (assq 'money-out-collector result)))
+ (money-in-alist (cdr (assq 'money-in-alist result)))
+ (money-out-alist (cdr (assq 'money-out-alist result))))
+ (and (null? money-in-alist)
+ (null? money-out-alist)
+ (equal? (gnc:make-gnc-numeric 0 1)
+ (gnc:gnc-monetary-amount (gnc:sum-collector-commodity money-in-collector
+ report-currency exchange-fn)))
+ (equal? (gnc:make-gnc-numeric 0 1)
+ (gnc:gnc-monetary-amount (gnc:sum-collector-commodity money-out-collector
+ report-currency exchange-fn))))))))
+
+(define (test-both-way-cash-flow)
+ (let* ((env (create-test-env))
+ (account-alist (env-create-account-structure-alist env structure))
+ (bank-account (cdr (assoc "Bank" account-alist)))
+ (wallet-account (cdr (assoc "Wallet" account-alist)))
+ (expense-account (cdr (assoc "Expenses" account-alist)))
+ (today (gnc:date->timepair (localtime (current-time))))
+ (exchange-fn (lambda (currency amount date) amount))
+ (report-currency (gnc-default-report-currency))
+ )
+ (env-create-transaction env today bank-account expense-account (gnc:make-gnc-numeric 100 1))
+ (env-create-transaction env today expense-account bank-account (gnc:make-gnc-numeric 50 1))
+ (let ((result (cash-flow-calc-money-in-out (list (cons 'accounts (list wallet-account bank-account))
+ (cons 'to-date-tp today)
+ (cons 'from-date-tp (decdate today (NDayDelta 1)))
+ (cons 'report-currency report-currency)
+ (cons 'include-trading-accounts #f)
+ (cons 'to-report-currency exchange-fn)))))
+ (let* ((money-in-collector (cdr (assq 'money-in-collector result)))
+ (money-out-collector (cdr (assq 'money-out-collector result)))
+ (money-in-alist (cdr (assq 'money-in-alist result)))
+ (money-out-alist (cdr (assq 'money-out-alist result)))
+ (expense-acc-in-collector (cadr (assoc expense-account money-in-alist)))
+ (expense-acc-out-collector (cadr (assoc expense-account money-out-alist)))
+ (expenses-in-total (gnc:gnc-monetary-amount (gnc:sum-collector-commodity expense-acc-in-collector
+ report-currency
+ exchange-fn)))
+ (expenses-out-total (gnc:gnc-monetary-amount (gnc:sum-collector-commodity expense-acc-out-collector
+ report-currency
+ exchange-fn))))
+ (and (equal? (gnc:make-gnc-numeric 10000 100) expenses-in-total)
+ (equal? (gnc:make-gnc-numeric 5000 100) expenses-out-total)
+ (equal? (gnc:make-gnc-numeric 10000 100)
+ (gnc:gnc-monetary-amount (gnc:sum-collector-commodity money-in-collector
+ report-currency exchange-fn)))
+ (equal? (gnc:make-gnc-numeric 5000 100)
+ (gnc:gnc-monetary-amount (gnc:sum-collector-commodity money-out-collector
+ report-currency exchange-fn))))))))
commit 516b3025b10b9cb43f4a26b1a19e6465872444ba
Author: Peter Broadbery <p.broadbery at gmail.com>
Date: Sat Oct 31 21:01:59 2015 +0000
report-utilities: Add a very small test to show that splits are unique
for account-get-trans-type-splits-interval
diff --git a/src/report/report-system/test/Makefile.am b/src/report/report-system/test/Makefile.am
index d2a3ad6..03c001f 100644
--- a/src/report/report-system/test/Makefile.am
+++ b/src/report/report-system/test/Makefile.am
@@ -23,7 +23,8 @@ SCM_TESTS = \
test-list-extras \
test-test-extras \
test-account \
- test-split
+ test-split \
+ test-report-utilities
SCM_TEST_SRCS = $(SCM_TESTS:%=%.scm)
diff --git a/src/report/report-system/test/test-report-utilities.scm b/src/report/report-system/test/test-report-utilities.scm
new file mode 100644
index 0000000..d3aeea2
--- /dev/null
+++ b/src/report/report-system/test/test-report-utilities.scm
@@ -0,0 +1,33 @@
+(use-modules (gnucash gnc-module))
+
+(gnc:module-begin-syntax (gnc:module-load "gnucash/app-utils" 0))
+
+(use-modules (gnucash report report-system test test-extras))
+(use-modules (gnucash report report-system))
+
+(define (run-test)
+ (test-account-get-trans-type-splits-interval))
+
+(define (NDayDelta n)
+ (let ((ddt (make-zdate)))
+ (set-tm:mday ddt n)
+ ddt))
+
+(define (test-account-get-trans-type-splits-interval)
+ (let ((env (create-test-env))
+ (end-date (gnc:date->timepair (localtime (current-time)))))
+ (let* ((accounts (env-create-account-structure-alist env (list "Assets"
+ (list (cons 'type ACCT-TYPE-ASSET))
+ (list "Bank Account")
+ (list "Wallet"))))
+ (bank-account (cdr (assoc "Bank Account" accounts)))
+ (wallet (cdr (assoc "Wallet" accounts))))
+
+ (env-create-daily-transactions env (decdate end-date (NDayDelta 10)) end-date bank-account wallet)
+
+ (let ((splits (gnc:account-get-trans-type-splits-interval (list bank-account wallet)
+ ACCT-TYPE-ASSET
+ (decdate end-date (NDayDelta 5))
+ end-date)))
+ ;; 8 is the right number (4 days, two splits per tx)
+ (and (equal? 8 (length splits)))))))
commit 6a8e97600fd61538df3c507d4474448da6dff925
Author: Peter Broadbery <p.broadbery at gmail.com>
Date: Mon Nov 9 22:31:53 2015 +0000
cashflow: Further separate work into a per-split section.
diff --git a/src/report/standard-reports/cash-flow.scm b/src/report/standard-reports/cash-flow.scm
index 08a7540..f2fb9c6 100644
--- a/src/report/standard-reports/cash-flow.scm
+++ b/src/report/standard-reports/cash-flow.scm
@@ -409,113 +409,109 @@
(seen-split-list '())
(work-done 0))
- (define (calc-money-in-out-internal accounts-internal)
- (if (not (null? accounts-internal))
- (let* ((current (car accounts-internal))
- (rest (cdr accounts-internal))
- )
-
- (for-each
- (lambda (split)
- (set! work-done (+ 1 work-done))
- (if (= (modulo work-done 100) 0)
- (gnc:report-percent-done (* 85 (/ work-done splits-to-do))))
- (let ((parent (xaccSplitGetParent split)))
- (if (and (gnc:timepair-le (gnc-transaction-get-date-posted parent) to-date-tp)
- (gnc:timepair-ge (gnc-transaction-get-date-posted parent) from-date-tp))
- (let* ((parent-description (xaccTransGetDescription parent))
- (parent-currency (xaccTransGetCurrency parent)))
+ (define (work-per-split split)
+ (set! work-done (+ 1 work-done))
+ (if (= (modulo work-done 100) 0)
+ (gnc:report-percent-done (* 85 (/ work-done splits-to-do))))
+ (let ((parent (xaccSplitGetParent split)))
+ (if (and (gnc:timepair-le (gnc-transaction-get-date-posted parent) to-date-tp)
+ (gnc:timepair-ge (gnc-transaction-get-date-posted parent) from-date-tp))
+ (let* ((parent-description (xaccTransGetDescription parent))
+ (parent-currency (xaccTransGetCurrency parent)))
;(gnc:debug parent-description
; " - "
; (gnc-commodity-get-printname parent-currency))
- (for-each
- (lambda (s)
- (let* ((s-account (xaccSplitGetAccount s))
- (s-account-type (xaccAccountGetType s-account))
- (s-amount (xaccSplitGetAmount s))
- (s-value (xaccSplitGetValue s))
- (s-commodity (xaccAccountGetCommodity s-account)))
- ;; Check if this is a dangling split
- ;; and print a warning
- (if (null? s-account)
- (display
- (string-append
- "WARNING: s-account is NULL for split: "
- (gncSplitGetGUID s) "\n")))
-
+ (for-each
+ (lambda (s)
+ (let* ((s-account (xaccSplitGetAccount s))
+ (s-account-type (xaccAccountGetType s-account))
+ (s-amount (xaccSplitGetAmount s))
+ (s-value (xaccSplitGetValue s))
+ (s-commodity (xaccAccountGetCommodity s-account)))
+ ;; Check if this is a dangling split
+ ;; and print a warning
+ (if (null? s-account)
+ (display
+ (string-append
+ "WARNING: s-account is NULL for split: "
+ (gncSplitGetGUID s) "\n")))
;(gnc:debug (xaccAccountGetName s-account))
- (if (and ;; make sure we don't have
- (not (null? s-account)) ;; any dangling splits
- (or include-trading-accounts (not (eq? s-account-type ACCT-TYPE-TRADING)))
- (not (account-in-list? s-account accounts)))
- (if (not (split-in-list? s seen-split-list))
- (begin
- (set! seen-split-list (cons s seen-split-list))
- (if (gnc-numeric-negative-p s-value)
- (let ((pair (account-in-alist s-account money-in-alist)))
+ (if (and ;; make sure we don't have
+ (not (null? s-account)) ;; any dangling splits
+ (or include-trading-accounts (not (eq? s-account-type ACCT-TYPE-TRADING)))
+ (not (account-in-list? s-account accounts)))
+ (if (not (split-in-list? s seen-split-list))
+ (begin
+ (set! seen-split-list (cons s seen-split-list))
+ (if (gnc-numeric-negative-p s-value)
+ (let ((pair (account-in-alist s-account money-in-alist)))
;(gnc:debug "in:" (gnc-commodity-get-printname s-commodity)
; (gnc-numeric-to-double s-amount)
; (gnc-commodity-get-printname parent-currency)
; (gnc-numeric-to-double s-value))
- (if (not pair)
- (begin
- (set! pair (list s-account (gnc:make-commodity-collector)))
- (set! money-in-alist (cons pair money-in-alist))
- (set! money-in-accounts (cons s-account money-in-accounts))
+ (if (not pair)
+ (begin
+ (set! pair (list s-account (gnc:make-commodity-collector)))
+ (set! money-in-alist (cons pair money-in-alist))
+ (set! money-in-accounts (cons s-account money-in-accounts))
;(gnc:debug money-in-alist)
- )
- )
- (let ((s-account-in-collector (cadr pair))
- (s-report-value (to-report-currency parent-currency
- (gnc-numeric-neg s-value)
- (gnc-transaction-get-date-posted
- parent))))
- (money-in-collector 'add report-currency s-report-value)
- (s-account-in-collector 'add report-currency s-report-value))
- )
- (let ((pair (account-in-alist s-account money-out-alist)))
+ )
+ )
+ (let ((s-account-in-collector (cadr pair))
+ (s-report-value (to-report-currency parent-currency
+ (gnc-numeric-neg s-value)
+ (gnc-transaction-get-date-posted
+ parent))))
+ (money-in-collector 'add report-currency s-report-value)
+ (s-account-in-collector 'add report-currency s-report-value))
+ )
+ (let ((pair (account-in-alist s-account money-out-alist)))
;(gnc:debug "out:" (gnc-commodity-get-printname s-commodity)
; (gnc-numeric-to-double s-amount)
; (gnc-commodity-get-printname parent-currency)
; (gnc-numeric-to-double s-value))
- (if (not pair)
- (begin
- (set! pair (list s-account (gnc:make-commodity-collector)))
- (set! money-out-alist (cons pair money-out-alist))
- (set! money-out-accounts (cons s-account money-out-accounts))
+ (if (not pair)
+ (begin
+ (set! pair (list s-account (gnc:make-commodity-collector)))
+ (set! money-out-alist (cons pair money-out-alist))
+ (set! money-out-accounts (cons s-account money-out-accounts))
;(gnc:debug money-out-alist)
- )
- )
- (let ((s-account-out-collector (cadr pair))
- (s-report-value (to-report-currency parent-currency
- s-value
- (gnc-transaction-get-date-posted
- parent))))
- (money-out-collector 'add report-currency s-report-value)
- (s-account-out-collector 'add report-currency s-report-value))
- )
- )
- )
- )
- )
- )
- )
- (xaccTransGetSplitList parent)
- )
+ )
+ )
+ (let ((s-account-out-collector (cadr pair))
+ (s-report-value (to-report-currency parent-currency
+ s-value
+ (gnc-transaction-get-date-posted
+ parent))))
+ (money-out-collector 'add report-currency s-report-value)
+ (s-account-out-collector 'add report-currency s-report-value))
+ )
+ )
+ )
+ )
)
- )
+ )
)
+ (xaccTransGetSplitList parent)
)
- (xaccAccountGetSplitList current)
- )
+ )
+ )
+ )
+ )
+ (define (calc-money-in-out-internal accounts-internal)
+ (if (not (null? accounts-internal))
+ (let* ((current (car accounts-internal))
+ (rest (cdr accounts-internal)))
+ (for-each work-per-split (xaccAccountGetSplitList current))
(calc-money-in-out-internal rest))))
+ ;; And calculate
(calc-money-in-out-internal accounts)
+ ;; Return an association list of results
(list (cons 'money-in-accounts money-in-accounts)
(cons 'money-in-alist money-in-alist)
(cons 'money-in-collector money-in-collector)
-
(cons 'money-out-accounts money-out-accounts)
(cons 'money-out-alist money-out-alist)
(cons 'money-out-collector money-out-collector))))
commit 5d98d4af9d44968d8e4cf000a7f0367893d3a581
Author: Peter Broadbery <p.broadbery at gmail.com>
Date: Thu Nov 12 20:29:23 2015 +0000
standard-reports/cash-flow.scm: break out main calculation part
This adds a function cash-flow-calc which does most of the donkey work and
can be tested independently of report generation.
diff --git a/src/report/standard-reports/cash-flow.scm b/src/report/standard-reports/cash-flow.scm
index 7bd3f0f..08a7540 100644
--- a/src/report/standard-reports/cash-flow.scm
+++ b/src/report/standard-reports/cash-flow.scm
@@ -32,12 +32,13 @@
(use-modules (gnucash gnc-module))
(use-modules (gnucash gettext))
(use-modules (gnucash engine))
-
(use-modules (gnucash printf))
(gnc:module-load "gnucash/report/report-system" 0)
(gnc:module-load "gnucash/gnome-utils" 0) ;for gnc-build-url
+(export cash-flow-calc-money-in-out)
+
(define reportname (N_ "Cash Flow"))
;; define all option's names so that they are properly defined
@@ -182,21 +183,20 @@
(let* ((tree-depth (if (equal? display-depth 'all)
(accounts-get-children-depth accounts)
display-depth))
- (account-disp-list '())
-
- (money-in-accounts '())
- (money-in-alist '())
- (money-in-collector (gnc:make-commodity-collector))
-
- (money-out-accounts '())
- (money-out-alist '())
- (money-out-collector (gnc:make-commodity-collector))
(money-diff-collector (gnc:make-commodity-collector))
- (splits-to-do (gnc:accounts-count-splits accounts))
- (seen-split-list '())
+ (account-disp-list '())
+
(time-exchange-fn #f)
- (commodity-list #f))
+ (commodity-list (gnc:accounts-get-commodities
+ accounts
+ report-currency))
+ ;; Get an exchange function that will convert each transaction using the
+ ;; nearest available exchange rate if that is what is specified
+ (time-exchange-fn (gnc:case-exchange-time-fn
+ price-source report-currency
+ commodity-list to-date-tp
+ 0 0)))
;; Helper function to convert currencies
(define (to-report-currency currency amount date)
@@ -205,296 +205,320 @@
report-currency
date)))
- ;; function to add inflow and outflow of money
- (define (calc-money-in-out accounts)
- (define (calc-money-in-out-internal accounts-internal)
- (if (not (null? accounts-internal))
- (let* ((current (car accounts-internal))
- (rest (cdr accounts-internal))
- (name (xaccAccountGetName current))
- (curr-commodity (xaccAccountGetCommodity current))
- )
-
- ;(gnc:debug "calc-money-in-out-internal---" name "---" (gnc-commodity-get-printname curr-commodity))
-
- (for-each
- (lambda (split)
- (set! work-done (+ 1 work-done))
- (if (= (modulo work-done 100) 0)
- (gnc:report-percent-done (* 85 (/ work-done splits-to-do))))
- (let ((parent (xaccSplitGetParent split)))
- (if (and (gnc:timepair-le (gnc-transaction-get-date-posted parent) to-date-tp)
- (gnc:timepair-ge (gnc-transaction-get-date-posted parent) from-date-tp))
- (let* ((parent-description (xaccTransGetDescription parent))
- (parent-currency (xaccTransGetCurrency parent)))
- ;(gnc:debug parent-description
- ; " - "
- ; (gnc-commodity-get-printname parent-currency))
- (for-each
- (lambda (s)
- (let* ((s-account (xaccSplitGetAccount s))
- (s-account-type (xaccAccountGetType s-account))
- (s-amount (xaccSplitGetAmount s))
- (s-value (xaccSplitGetValue s))
- (s-commodity (xaccAccountGetCommodity s-account)))
- ;; Check if this is a dangling split
- ;; and print a warning
- (if (null? s-account)
- (display
- (string-append
- "WARNING: s-account is NULL for split: "
- (gncSplitGetGUID s) "\n")))
-
- ;(gnc:debug (xaccAccountGetName s-account))
- (if (and ;; make sure we don't have
- (not (null? s-account)) ;; any dangling splits
- (or include-trading-accounts (not (eq? s-account-type ACCT-TYPE-TRADING)))
- (not (account-in-list? s-account accounts)))
- (if (not (split-in-list? s seen-split-list))
- (begin
- (set! seen-split-list (cons s seen-split-list))
- (if (gnc-numeric-negative-p s-value)
- (let ((pair (account-in-alist s-account money-in-alist)))
- ;(gnc:debug "in:" (gnc-commodity-get-printname s-commodity)
- ; (gnc-numeric-to-double s-amount)
- ; (gnc-commodity-get-printname parent-currency)
- ; (gnc-numeric-to-double s-value))
- (if (not pair)
- (begin
- (set! pair (list s-account (gnc:make-commodity-collector)))
- (set! money-in-alist (cons pair money-in-alist))
- (set! money-in-accounts (cons s-account money-in-accounts))
- ;(gnc:debug money-in-alist)
- )
- )
- (let ((s-account-in-collector (cadr pair))
- (s-report-value (to-report-currency parent-currency
- (gnc-numeric-neg s-value)
- (gnc-transaction-get-date-posted
- parent))))
- (money-in-collector 'add report-currency s-report-value)
- (s-account-in-collector 'add report-currency s-report-value))
+
+ (let ((result (cash-flow-calc-money-in-out
+ (list (cons 'accounts accounts)
+ (cons 'to-date-tp to-date-tp)
+ (cons 'from-date-tp from-date-tp)
+ (cons 'report-currency report-currency)
+ (cons 'include-trading-accounts include-trading-accounts)
+ (cons 'to-report-currency to-report-currency)))))
+ (let ((money-in-accounts (cdr (assq 'money-in-accounts result)))
+ (money-in-alist (cdr (assq 'money-in-alist result)))
+ (money-in-collector (cdr (assq 'money-in-collector result)))
+ (money-out-accounts (cdr (assq 'money-out-accounts result)))
+ (money-out-alist (cdr (assq 'money-out-alist result)))
+ (money-out-collector (cdr (assq 'money-out-collector result))))
+ (money-diff-collector 'merge money-in-collector #f)
+ (money-diff-collector 'minusmerge money-out-collector #f)
+
+ (set! accounts (sort accounts account-full-name<?))
+ (set! money-in-accounts (sort money-in-accounts account-full-name<?))
+ (set! money-out-accounts (sort money-out-accounts account-full-name<?))
+
+
+ (set! work-done 0)
+ (set! work-to-do (length accounts))
+ (for-each
+ (lambda (account)
+ (set! work-done (+ 1 work-done))
+ (gnc:report-percent-done (+ 85 (* 5 (/ work-done work-to-do))))
+ (if (<= (gnc-account-get-current-depth account) tree-depth)
+ (let* ((anchor (gnc:html-markup/format
+ (if (and (= (gnc-account-get-current-depth account) tree-depth)
+ (not (eq? (gnc-account-get-children account) '())))
+ (if show-subaccts?
+ (_ "%s and subaccounts")
+ (_ "%s and selected subaccounts"))
+ "%s")
+ (gnc:html-markup-anchor
+ (gnc:account-anchor-text account)
+ (if show-full-names?
+ (gnc-account-get-full-name account)
+ (xaccAccountGetName account))))))
+
+ (set! account-disp-list (cons anchor account-disp-list))
+ )
+ )
+ )
+ accounts
+ )
+
+
+ (gnc:html-document-add-object!
+ doc
+ (gnc:make-html-text (_ "Selected Accounts")))
+
+ (gnc:html-document-add-object!
+ doc
+ (gnc:make-html-text
+ (gnc:html-markup-ul
+ (reverse account-disp-list))))
+
+ (gnc:html-table-append-ruler! table 2)
+
+ (gnc:html-table-append-row/markup!
+ table
+ "primary-subheading"
+ (list
+ (_ "Money into selected accounts comes from")
+ ""))
+
+ (set! row-num 0)
+ (set! work-done 0)
+ (set! work-to-do (length money-in-alist))
+ (for-each
+ (lambda (account)
+ (set! row-num (+ 1 row-num))
+ (set! work-done (+ 1 work-done))
+ (gnc:report-percent-done (+ 90 (* 5 (/ work-done work-to-do))))
+ (let* ((pair (account-in-alist account money-in-alist))
+ (acct (car pair)))
+ (gnc:html-table-append-row/markup!
+ table
+ (if (odd? row-num) "normal-row" "alternate-row")
+ (list
+ ;(gnc:html-account-anchor acct)
+ (gnc:make-html-text
+ (gnc:html-markup-anchor
+ (gnc:account-anchor-text acct)
+ (if show-full-names?
+ (gnc-account-get-full-name acct)
+ (xaccAccountGetName acct))))
+ (gnc:make-html-table-header-cell/markup
+ "number-cell" (gnc:sum-collector-commodity (cadr pair) report-currency exchange-fn))))
+ )
+ )
+ money-in-accounts
+ )
+
+ (gnc:html-table-append-row/markup!
+ table
+ "grand-total"
+ (list
+ (gnc:make-html-table-header-cell/markup "text-cell" (_ "Money In"))
+ (gnc:make-html-table-header-cell/markup
+ "total-number-cell" (gnc:sum-collector-commodity money-in-collector report-currency exchange-fn))))
+
+ (gnc:html-table-append-ruler! table 2)
+
+ (gnc:html-table-append-row/markup!
+ table
+ "primary-subheading"
+ (list
+ (_ "Money out of selected accounts goes to")
+ ""))
+
+ (set! row-num 0)
+ (set! work-done 0)
+ (set! work-to-do (length money-out-alist))
+ (for-each
+ (lambda (account)
+ (set! row-num (+ 1 row-num))
+ (set! work-done (+ 1 work-done))
+ (gnc:report-percent-done (+ 95 (* 5 (/ work-done work-to-do))))
+ (let* ((pair (account-in-alist account money-out-alist))
+ (acct (car pair)))
+ (gnc:html-table-append-row/markup!
+ table
+ (if (odd? row-num) "normal-row" "alternate-row")
+ (list
+ ;(gnc:html-account-anchor acct)
+ (gnc:make-html-text
+ (gnc:html-markup-anchor
+ (gnc:account-anchor-text acct)
+ (if show-full-names?
+ (gnc-account-get-full-name acct)
+ (xaccAccountGetName acct))))
+ (gnc:make-html-table-header-cell/markup
+ "number-cell" (gnc:sum-collector-commodity (cadr pair) report-currency exchange-fn))))
+ )
+ )
+ money-out-accounts
+ )
+
+ (gnc:html-table-append-row/markup!
+ table
+ "grand-total"
+ (list
+ (gnc:make-html-table-header-cell/markup "text-cell" (_ "Money Out"))
+ (gnc:make-html-table-header-cell/markup
+ "total-number-cell" (gnc:sum-collector-commodity money-out-collector report-currency exchange-fn))))
+
+ (gnc:html-table-append-ruler! table 2)
+
+ (gnc:html-table-append-row/markup!
+ table
+ "grand-total"
+ (list
+ (gnc:make-html-table-header-cell/markup "text-cell" (_ "Difference"))
+ (gnc:make-html-table-header-cell/markup
+ "total-number-cell" (gnc:sum-collector-commodity money-diff-collector report-currency exchange-fn))))
+
+ (gnc:html-document-add-object! doc table)
+
+
+ ;; add currency information
+ (if show-rates?
+ (gnc:html-document-add-object!
+ doc ;;(gnc:html-markup-p
+ (gnc:html-make-exchangerates
+ report-currency exchange-fn accounts))))
+
+ ))
+
+ ;; error condition: no accounts specified
+
+ (gnc:html-document-add-object!
+ doc
+ (gnc:html-make-no-account-warning
+ reportname (gnc:report-id report-obj))))
+
+ (gnc:report-finished)
+ doc))
+
+
+;; function to add inflow and outflow of money
+(define (cash-flow-calc-money-in-out settings)
+ (let* ((accounts (cdr (assq 'accounts settings)))
+ (to-date-tp (cdr (assq 'to-date-tp settings)))
+ (from-date-tp (cdr (assq 'from-date-tp settings)))
+ (report-currency (cdr (assq 'report-currency settings)))
+ (include-trading-accounts (cdr (assq 'include-trading-accounts settings)))
+ (to-report-currency (cdr (assq 'to-report-currency settings)))
+
+ (money-in-accounts '())
+ (money-in-alist '())
+ (money-in-collector (gnc:make-commodity-collector))
+
+ (money-out-accounts '())
+ (money-out-alist '())
+ (money-out-collector (gnc:make-commodity-collector))
+
+ (splits-to-do (gnc:accounts-count-splits accounts))
+ (seen-split-list '())
+ (work-done 0))
+
+ (define (calc-money-in-out-internal accounts-internal)
+ (if (not (null? accounts-internal))
+ (let* ((current (car accounts-internal))
+ (rest (cdr accounts-internal))
+ )
+
+ (for-each
+ (lambda (split)
+ (set! work-done (+ 1 work-done))
+ (if (= (modulo work-done 100) 0)
+ (gnc:report-percent-done (* 85 (/ work-done splits-to-do))))
+ (let ((parent (xaccSplitGetParent split)))
+ (if (and (gnc:timepair-le (gnc-transaction-get-date-posted parent) to-date-tp)
+ (gnc:timepair-ge (gnc-transaction-get-date-posted parent) from-date-tp))
+ (let* ((parent-description (xaccTransGetDescription parent))
+ (parent-currency (xaccTransGetCurrency parent)))
+ ;(gnc:debug parent-description
+ ; " - "
+ ; (gnc-commodity-get-printname parent-currency))
+ (for-each
+ (lambda (s)
+ (let* ((s-account (xaccSplitGetAccount s))
+ (s-account-type (xaccAccountGetType s-account))
+ (s-amount (xaccSplitGetAmount s))
+ (s-value (xaccSplitGetValue s))
+ (s-commodity (xaccAccountGetCommodity s-account)))
+ ;; Check if this is a dangling split
+ ;; and print a warning
+ (if (null? s-account)
+ (display
+ (string-append
+ "WARNING: s-account is NULL for split: "
+ (gncSplitGetGUID s) "\n")))
+
+ ;(gnc:debug (xaccAccountGetName s-account))
+ (if (and ;; make sure we don't have
+ (not (null? s-account)) ;; any dangling splits
+ (or include-trading-accounts (not (eq? s-account-type ACCT-TYPE-TRADING)))
+ (not (account-in-list? s-account accounts)))
+ (if (not (split-in-list? s seen-split-list))
+ (begin
+ (set! seen-split-list (cons s seen-split-list))
+ (if (gnc-numeric-negative-p s-value)
+ (let ((pair (account-in-alist s-account money-in-alist)))
+ ;(gnc:debug "in:" (gnc-commodity-get-printname s-commodity)
+ ; (gnc-numeric-to-double s-amount)
+ ; (gnc-commodity-get-printname parent-currency)
+ ; (gnc-numeric-to-double s-value))
+ (if (not pair)
+ (begin
+ (set! pair (list s-account (gnc:make-commodity-collector)))
+ (set! money-in-alist (cons pair money-in-alist))
+ (set! money-in-accounts (cons s-account money-in-accounts))
+ ;(gnc:debug money-in-alist)
)
- (let ((pair (account-in-alist s-account money-out-alist)))
- ;(gnc:debug "out:" (gnc-commodity-get-printname s-commodity)
- ; (gnc-numeric-to-double s-amount)
- ; (gnc-commodity-get-printname parent-currency)
- ; (gnc-numeric-to-double s-value))
- (if (not pair)
- (begin
- (set! pair (list s-account (gnc:make-commodity-collector)))
- (set! money-out-alist (cons pair money-out-alist))
- (set! money-out-accounts (cons s-account money-out-accounts))
- ;(gnc:debug money-out-alist)
- )
- )
- (let ((s-account-out-collector (cadr pair))
- (s-report-value (to-report-currency parent-currency
- s-value
- (gnc-transaction-get-date-posted
- parent))))
- (money-out-collector 'add report-currency s-report-value)
- (s-account-out-collector 'add report-currency s-report-value))
+ )
+ (let ((s-account-in-collector (cadr pair))
+ (s-report-value (to-report-currency parent-currency
+ (gnc-numeric-neg s-value)
+ (gnc-transaction-get-date-posted
+ parent))))
+ (money-in-collector 'add report-currency s-report-value)
+ (s-account-in-collector 'add report-currency s-report-value))
+ )
+ (let ((pair (account-in-alist s-account money-out-alist)))
+ ;(gnc:debug "out:" (gnc-commodity-get-printname s-commodity)
+ ; (gnc-numeric-to-double s-amount)
+ ; (gnc-commodity-get-printname parent-currency)
+ ; (gnc-numeric-to-double s-value))
+ (if (not pair)
+ (begin
+ (set! pair (list s-account (gnc:make-commodity-collector)))
+ (set! money-out-alist (cons pair money-out-alist))
+ (set! money-out-accounts (cons s-account money-out-accounts))
+ ;(gnc:debug money-out-alist)
)
)
+ (let ((s-account-out-collector (cadr pair))
+ (s-report-value (to-report-currency parent-currency
+ s-value
+ (gnc-transaction-get-date-posted
+ parent))))
+ (money-out-collector 'add report-currency s-report-value)
+ (s-account-out-collector 'add report-currency s-report-value))
)
)
)
- )
+ )
)
- (xaccTransGetSplitList parent)
- )
- )
- )
- )
- )
- (xaccAccountGetSplitList current)
- )
-
- (calc-money-in-out-internal rest))))
-
- (calc-money-in-out-internal accounts))
-
- ;; Get an exchange function that will convert each transaction using the
- ;; nearest available exchange rate if that is what is specified
- (set! commodity-list (gnc:accounts-get-commodities
- accounts
- report-currency))
- (set! time-exchange-fn (gnc:case-exchange-time-fn
- price-source report-currency
- commodity-list to-date-tp
- 0 0))
-
-
- (calc-money-in-out accounts)
-
- (money-diff-collector 'merge money-in-collector #f)
- (money-diff-collector 'minusmerge money-out-collector #f)
-
- (set! accounts (sort accounts account-full-name<?))
- (set! money-in-accounts (sort money-in-accounts account-full-name<?))
- (set! money-out-accounts (sort money-out-accounts account-full-name<?))
-
-
- (set! work-done 0)
- (set! work-to-do (length accounts))
- (for-each
- (lambda (account)
- (set! work-done (+ 1 work-done))
- (gnc:report-percent-done (+ 85 (* 5 (/ work-done work-to-do))))
- (if (<= (gnc-account-get-current-depth account) tree-depth)
- (let* ((anchor (gnc:html-markup/format
- (if (and (= (gnc-account-get-current-depth account) tree-depth)
- (not (eq? (gnc-account-get-children account) '())))
- (if show-subaccts?
- (_ "%s and subaccounts")
- (_ "%s and selected subaccounts"))
- "%s")
- (gnc:html-markup-anchor
- (gnc:account-anchor-text account)
- (if show-full-names?
- (gnc-account-get-full-name account)
- (xaccAccountGetName account))))))
-
- (set! account-disp-list (cons anchor account-disp-list))
- )
- )
- )
- accounts
- )
-
-
- (gnc:html-document-add-object!
- doc
- (gnc:make-html-text (_ "Selected Accounts")))
-
- (gnc:html-document-add-object!
- doc
- (gnc:make-html-text
- (gnc:html-markup-ul
- (reverse account-disp-list))))
-
- (gnc:html-table-append-ruler! table 2)
-
- (gnc:html-table-append-row/markup!
- table
- "primary-subheading"
- (list
- (_ "Money into selected accounts comes from")
- ""))
-
- (set! row-num 0)
- (set! work-done 0)
- (set! work-to-do (length money-in-alist))
- (for-each
- (lambda (account)
- (set! row-num (+ 1 row-num))
- (set! work-done (+ 1 work-done))
- (gnc:report-percent-done (+ 90 (* 5 (/ work-done work-to-do))))
- (let* ((pair (account-in-alist account money-in-alist))
- (acct (car pair)))
- (gnc:html-table-append-row/markup!
- table
- (if (odd? row-num) "normal-row" "alternate-row")
- (list
- ;(gnc:html-account-anchor acct)
- (gnc:make-html-text
- (gnc:html-markup-anchor
- (gnc:account-anchor-text acct)
- (if show-full-names?
- (gnc-account-get-full-name acct)
- (xaccAccountGetName acct))))
- (gnc:make-html-table-header-cell/markup
- "number-cell" (gnc:sum-collector-commodity (cadr pair) report-currency exchange-fn))))
- )
- )
- money-in-accounts
- )
-
- (gnc:html-table-append-row/markup!
- table
- "grand-total"
- (list
- (gnc:make-html-table-header-cell/markup "text-cell" (_ "Money In"))
- (gnc:make-html-table-header-cell/markup
- "total-number-cell" (gnc:sum-collector-commodity money-in-collector report-currency exchange-fn))))
-
- (gnc:html-table-append-ruler! table 2)
-
- (gnc:html-table-append-row/markup!
- table
- "primary-subheading"
- (list
- (_ "Money out of selected accounts goes to")
- ""))
-
- (set! row-num 0)
- (set! work-done 0)
- (set! work-to-do (length money-out-alist))
- (for-each
- (lambda (account)
- (set! row-num (+ 1 row-num))
- (set! work-done (+ 1 work-done))
- (gnc:report-percent-done (+ 95 (* 5 (/ work-done work-to-do))))
- (let* ((pair (account-in-alist account money-out-alist))
- (acct (car pair)))
- (gnc:html-table-append-row/markup!
- table
- (if (odd? row-num) "normal-row" "alternate-row")
- (list
- ;(gnc:html-account-anchor acct)
- (gnc:make-html-text
- (gnc:html-markup-anchor
- (gnc:account-anchor-text acct)
- (if show-full-names?
- (gnc-account-get-full-name acct)
- (xaccAccountGetName acct))))
- (gnc:make-html-table-header-cell/markup
- "number-cell" (gnc:sum-collector-commodity (cadr pair) report-currency exchange-fn))))
- )
- )
- money-out-accounts
- )
-
- (gnc:html-table-append-row/markup!
- table
- "grand-total"
- (list
- (gnc:make-html-table-header-cell/markup "text-cell" (_ "Money Out"))
- (gnc:make-html-table-header-cell/markup
- "total-number-cell" (gnc:sum-collector-commodity money-out-collector report-currency exchange-fn))))
-
- (gnc:html-table-append-ruler! table 2)
-
- (gnc:html-table-append-row/markup!
- table
- "grand-total"
- (list
- (gnc:make-html-table-header-cell/markup "text-cell" (_ "Difference"))
- (gnc:make-html-table-header-cell/markup
- "total-number-cell" (gnc:sum-collector-commodity money-diff-collector report-currency exchange-fn))))
-
- (gnc:html-document-add-object! doc table)
-
-
- ;; add currency information
- (if show-rates?
- (gnc:html-document-add-object!
- doc ;;(gnc:html-markup-p
- (gnc:html-make-exchangerates
- report-currency exchange-fn accounts))))
-
-
-
- ;; error condition: no accounts specified
-
- (gnc:html-document-add-object!
- doc
- (gnc:html-make-no-account-warning
- reportname (gnc:report-id report-obj))))
-
- (gnc:report-finished)
- doc))
+ )
+ )
+ (xaccTransGetSplitList parent)
+ )
+ )
+ )
+ )
+ )
+ (xaccAccountGetSplitList current)
+ )
+
+ (calc-money-in-out-internal rest))))
+
+ (calc-money-in-out-internal accounts)
+ (list (cons 'money-in-accounts money-in-accounts)
+ (cons 'money-in-alist money-in-alist)
+ (cons 'money-in-collector money-in-collector)
+
+ (cons 'money-out-accounts money-out-accounts)
+ (cons 'money-out-alist money-out-alist)
+ (cons 'money-out-collector money-out-collector))))
(gnc:define-report
'version 1
commit b47f04539ef20e409b7516a5886c1b6c459df874
Author: Peter Broadbery <p.broadbery at gmail.com>
Date: Thu Nov 12 20:26:18 2015 +0000
Move account & split.scm to engine-utilities
diff --git a/src/engine/engine-utilities.scm b/src/engine/engine-utilities.scm
index 6838f66..1310ff9 100644
--- a/src/engine/engine-utilities.scm
+++ b/src/engine/engine-utilities.scm
@@ -20,6 +20,12 @@
;; Boston, MA 02110-1301, USA gnu at gnu.org
;; Copyright 2000 Rob Browning <rlb at cs.utexas.edu>
+(use-modules (gnucash gnc-module))
+
+(gnc:module-begin-syntax (gnc:module-load "gnucash/engine" 0))
+
+(use-modules (srfi srfi-1)
+ (srfi srfi-13))
(define (gnc:account-map-descendants thunk account)
(let ((descendants (or (gnc-account-get-descendants-sorted account) '())))
@@ -28,3 +34,64 @@
(define (gnc:account-map-children thunk account)
(let ((children (or (gnc-account-get-children-sorted account) '())))
(map thunk children)))
+
+;; account related functions
+;; is account in list of accounts?
+(define (account-same? a1 a2)
+ (or (eq? a1 a2)
+ (string=? (gncAccountGetGUID a1) (gncAccountGetGUID a2))))
+
+(define account-in-list?
+ (lambda (account accounts)
+ (cond
+ ((null? accounts) #f)
+ ((account-same? (car accounts) account) #t)
+ (else (account-in-list? account (cdr accounts))))))
+
+;; Optimized version of accout-in-list if we know
+;; the list in advance.
+(define (account-in-list-pred accounts)
+ (define (my-assoc str alist)
+ (find (lambda (pair) (account-same? str (car pair))) alist))
+ (define (my-hash acc size)
+ (remainder (string-hash (gncAccountGetGUID acc)) size))
+ (let ((hash-table (make-hash-table)))
+ (for-each (lambda (acc) (hashx-set! my-hash my-assoc hash-table acc #t))
+ accounts)
+ (lambda (account)
+ (hashx-ref my-hash my-assoc hash-table account))))
+
+(define account-in-alist
+ (lambda (account alist)
+ (cond
+ ((null? alist) #f)
+ ((account-same? (caar alist) account) (car alist))
+ (else (account-in-alist account (cdr alist))))))
+
+;; helper for sorting of account list
+(define (account-full-name<? a b)
+ (string<? (gnc-account-get-full-name a) (gnc-account-get-full-name b)))
+
+;; return maximum depth over accounts and their children, if any
+(define (accounts-get-children-depth accounts)
+ (apply max
+ (map (lambda (acct)
+ (let ((acct-depth (gnc-account-get-current-depth acct)))
+ (+ acct-depth (- (gnc-account-get-tree-depth acct) 1))))
+ accounts)))
+
+;; Splits
+(export split-same?)
+(export split-in-list?)
+
+(define (split-same? s1 s2)
+ (or (eq? s1 s2)
+ (string=? (gncSplitGetGUID s1) (gncSplitGetGUID s2))))
+
+(define split-in-list?
+ (lambda (split splits)
+ (cond
+ ((null? splits) #f)
+ ((split-same? (car splits) split) #t)
+ (else (split-in-list? split (cdr splits))))))
+
diff --git a/src/engine/engine.scm b/src/engine/engine.scm
index c049886..5c52b14 100644
--- a/src/engine/engine.scm
+++ b/src/engine/engine.scm
@@ -67,9 +67,22 @@
(export GNC_COMMODITY_NS_MUTUAL)
(export gnc:url->loaded-session)
+
+;; engine-utilities.scm
(export gnc:account-map-descendants)
(export gnc:account-map-children)
+(export account-same?)
+(export account-in-list?)
+(export account-in-list-pred)
+(export account-in-alist)
+(export account-full-name<?)
+(export account-list-predicate)
+(export accounts-get-children-depth)
+
+(export split-same?)
+(export split-in-list?)
+
(export gnc:split-structure)
(export gnc:make-split-scm)
(export gnc:split-scm?)
diff --git a/src/report/report-system/Makefile.am b/src/report/report-system/Makefile.am
index a6e49a9..4ce4cd7 100644
--- a/src/report/report-system/Makefile.am
+++ b/src/report/report-system/Makefile.am
@@ -69,11 +69,9 @@ gncscm_DATA = \
gncmodscmdir = ${GNC_SCM_INSTALL_DIR}/gnucash/report/report-system
gncmodscm_DATA = \
- account.scm \
collectors.scm \
list-extras.scm \
- report-collectors.scm \
- split.scm
+ report-collectors.scm
gncscmmoddir = ${GNC_SCM_INSTALL_DIR}/gnucash/report/
gncscmmod_DATA = \
diff --git a/src/report/report-system/account.scm b/src/report/report-system/account.scm
index 787e5f1..6540329 100644
--- a/src/report/report-system/account.scm
+++ b/src/report/report-system/account.scm
@@ -1,62 +1,5 @@
(define-module (gnucash report report-system account))
(use-modules (gnucash gnc-module))
-(use-modules (gnucash gnc-module))
-
-(use-modules (srfi srfi-1)
- (srfi srfi-13))
-
-(gnc:module-begin-syntax (gnc:module-load "gnucash/engine" 0))
-
-(export account-same?)
-(export account-in-list?)
-(export account-in-list-pred)
-(export account-in-alist)
-(export account-full-name<?)
-(export account-list-predicate)
-(export accounts-get-children-depth)
-
-;; is account in list of accounts?
-(define (account-same? a1 a2)
- (string=? (gncAccountGetGUID a1) (gncAccountGetGUID a2)))
-
-(define account-in-list?
- (lambda (account accounts)
- (cond
- ((null? accounts) #f)
- ((account-same? (car accounts) account) #t)
- (else (account-in-list? account (cdr accounts))))))
-
-;; Optimized version of accout-in-list if we know
-;; the list in advance.
-(define (account-in-list-pred accounts)
- (define (my-assoc str alist)
- (find (lambda (pair) (account-same? str (car pair))) alist))
- (define (my-hash acc size)
- (remainder (string-hash (gncAccountGetGUID acc)) size))
- (let ((hash-table (make-hash-table)))
- (for-each (lambda (acc) (hashx-set! my-hash my-assoc hash-table acc #t))
- accounts)
- (lambda (account)
- (hashx-ref my-hash my-assoc hash-table account))))
-
-(define account-in-alist
- (lambda (account alist)
- (cond
- ((null? alist) #f)
- ((account-same? (caar alist) account) (car alist))
- (else (account-in-alist account (cdr alist))))))
-
-;; helper for sorting of account list
-(define (account-full-name<? a b)
- (string<? (gnc-account-get-full-name a) (gnc-account-get-full-name b)))
-
-;; return maximum depth over accounts and their children, if any
-(define (accounts-get-children-depth accounts)
- (apply max
- (map (lambda (acct)
- (let ((acct-depth (gnc-account-get-current-depth acct)))
- (+ acct-depth (- (gnc-account-get-tree-depth acct) 1))))
- accounts)))
diff --git a/src/report/report-system/split.scm b/src/report/report-system/split.scm
index cce15c1..07313bc 100644
--- a/src/report/report-system/split.scm
+++ b/src/report/report-system/split.scm
@@ -5,16 +5,3 @@
(use-modules (sw_engine))
-(export split-same?)
-(export split-in-list?)
-
-(define (split-same? s1 s2)
- (string=? (gncSplitGetGUID s1) (gncSplitGetGUID s2)))
-
-(define split-in-list?
- (lambda (split splits)
- (cond
- ((null? splits) #f)
- ((split-same? (car splits) split) #t)
- (else (split-in-list? split (cdr splits))))))
-
diff --git a/src/report/report-system/test/test-account.scm b/src/report/report-system/test/test-account.scm
index fa310d6..b30c0d0 100644
--- a/src/report/report-system/test/test-account.scm
+++ b/src/report/report-system/test/test-account.scm
@@ -1,4 +1,4 @@
-(use-modules (gnucash report report-system account))
+(use-modules (gnucash engine))
(use-modules (gnucash report report-system test test-extras))
(use-modules (sw_engine))
diff --git a/src/report/report-system/test/test-split.scm b/src/report/report-system/test/test-split.scm
index 286864b..b835a57 100644
--- a/src/report/report-system/test/test-split.scm
+++ b/src/report/report-system/test/test-split.scm
@@ -3,7 +3,7 @@
(gnc:module-begin-syntax (gnc:module-load "gnucash/app-utils" 0))
-(use-modules (gnucash report report-system split))
+(use-modules (gnucash engine))
(use-modules (gnucash report report-system test test-extras))
(use-modules (gnucash report report-system))
diff --git a/src/report/standard-reports/budget.scm b/src/report/standard-reports/budget.scm
index 00d2d27..c12a07b 100644
--- a/src/report/standard-reports/budget.scm
+++ b/src/report/standard-reports/budget.scm
@@ -31,8 +31,7 @@
(use-modules (gnucash gettext))
(use-modules (gnucash printf))
-(use-modules (gnucash report report-system account))
-(use-modules (gnucash report report-system split))
+(use-modules (gnucash engine))
(gnc:module-load "gnucash/report/report-system" 0)
(gnc:module-load "gnucash/gnome-utils" 0) ;for gnc-build-url
diff --git a/src/report/standard-reports/cash-flow.scm b/src/report/standard-reports/cash-flow.scm
index 6ba919f..7bd3f0f 100644
--- a/src/report/standard-reports/cash-flow.scm
+++ b/src/report/standard-reports/cash-flow.scm
@@ -31,8 +31,7 @@
(use-modules (gnucash main)) ;; FIXME: delete after we finish modularizing.
(use-modules (gnucash gnc-module))
(use-modules (gnucash gettext))
-(use-modules (gnucash report report-system account))
-(use-modules (gnucash report report-system split))
+(use-modules (gnucash engine))
(use-modules (gnucash printf))
commit 8dfea02da79ecefd290be928c5b25a9e765764d1
Author: Peter Broadbery <p.broadbery at gmail.com>
Date: Mon Nov 9 22:47:57 2015 +0000
reports: Add account and split module, plus tests.
Remove common functions from the budget and cashflow reports.
Add into separate modules, plus some tests for these newly exposed
functions.
diff --git a/src/report/report-system/Makefile.am b/src/report/report-system/Makefile.am
index 9a79871..a6e49a9 100644
--- a/src/report/report-system/Makefile.am
+++ b/src/report/report-system/Makefile.am
@@ -69,10 +69,11 @@ gncscm_DATA = \
gncmodscmdir = ${GNC_SCM_INSTALL_DIR}/gnucash/report/report-system
gncmodscm_DATA = \
+ account.scm \
collectors.scm \
list-extras.scm \
- report-collectors.scm
-
+ report-collectors.scm \
+ split.scm
gncscmmoddir = ${GNC_SCM_INSTALL_DIR}/gnucash/report/
gncscmmod_DATA = \
diff --git a/src/report/report-system/account.scm b/src/report/report-system/account.scm
new file mode 100644
index 0000000..787e5f1
--- /dev/null
+++ b/src/report/report-system/account.scm
@@ -0,0 +1,62 @@
+(define-module (gnucash report report-system account))
+(use-modules (gnucash gnc-module))
+(use-modules (gnucash gnc-module))
+
+(use-modules (srfi srfi-1)
+ (srfi srfi-13))
+
+(gnc:module-begin-syntax (gnc:module-load "gnucash/engine" 0))
+
+(export account-same?)
+(export account-in-list?)
+(export account-in-list-pred)
+(export account-in-alist)
+(export account-full-name<?)
+(export account-list-predicate)
+(export accounts-get-children-depth)
+
+;; is account in list of accounts?
+(define (account-same? a1 a2)
+ (string=? (gncAccountGetGUID a1) (gncAccountGetGUID a2)))
+
+(define account-in-list?
+ (lambda (account accounts)
+ (cond
+ ((null? accounts) #f)
+ ((account-same? (car accounts) account) #t)
+ (else (account-in-list? account (cdr accounts))))))
+
+;; Optimized version of accout-in-list if we know
+;; the list in advance.
+(define (account-in-list-pred accounts)
+ (define (my-assoc str alist)
+ (find (lambda (pair) (account-same? str (car pair))) alist))
+ (define (my-hash acc size)
+ (remainder (string-hash (gncAccountGetGUID acc)) size))
+ (let ((hash-table (make-hash-table)))
+ (for-each (lambda (acc) (hashx-set! my-hash my-assoc hash-table acc #t))
+ accounts)
+ (lambda (account)
+ (hashx-ref my-hash my-assoc hash-table account))))
+
+(define account-in-alist
+ (lambda (account alist)
+ (cond
+ ((null? alist) #f)
+ ((account-same? (caar alist) account) (car alist))
+ (else (account-in-alist account (cdr alist))))))
+
+;; helper for sorting of account list
+(define (account-full-name<? a b)
+ (string<? (gnc-account-get-full-name a) (gnc-account-get-full-name b)))
+
+;; return maximum depth over accounts and their children, if any
+(define (accounts-get-children-depth accounts)
+ (apply max
+ (map (lambda (acct)
+ (let ((acct-depth (gnc-account-get-current-depth acct)))
+ (+ acct-depth (- (gnc-account-get-tree-depth acct) 1))))
+ accounts)))
+
+
+
diff --git a/src/report/report-system/split.scm b/src/report/report-system/split.scm
new file mode 100644
index 0000000..cce15c1
--- /dev/null
+++ b/src/report/report-system/split.scm
@@ -0,0 +1,20 @@
+(define-module (gnucash report report-system split))
+(use-modules (gnucash gnc-module))
+
+(gnc:module-begin-syntax (gnc:module-load "gnucash/engine" 0))
+
+(use-modules (sw_engine))
+
+(export split-same?)
+(export split-in-list?)
+
+(define (split-same? s1 s2)
+ (string=? (gncSplitGetGUID s1) (gncSplitGetGUID s2)))
+
+(define split-in-list?
+ (lambda (split splits)
+ (cond
+ ((null? splits) #f)
+ ((split-same? (car splits) split) #t)
+ (else (split-in-list? split (cdr splits))))))
+
diff --git a/src/report/report-system/test/Makefile.am b/src/report/report-system/test/Makefile.am
index a01900e..d2a3ad6 100644
--- a/src/report/report-system/test/Makefile.am
+++ b/src/report/report-system/test/Makefile.am
@@ -21,7 +21,9 @@ TESTS = \
SCM_TESTS = \
test-collectors \
test-list-extras \
- test-test-extras
+ test-test-extras \
+ test-account \
+ test-split
SCM_TEST_SRCS = $(SCM_TESTS:%=%.scm)
diff --git a/src/report/report-system/test/test-account.scm b/src/report/report-system/test/test-account.scm
new file mode 100644
index 0000000..fa310d6
--- /dev/null
+++ b/src/report/report-system/test/test-account.scm
@@ -0,0 +1,47 @@
+(use-modules (gnucash report report-system account))
+
+(use-modules (gnucash report report-system test test-extras))
+(use-modules (sw_engine))
+
+(define (run-test)
+ (test test-account-same?)
+ (test test-account-in-list?)
+ (test test-account-in-alist?)
+ (test test-account-list-predicate))
+
+(define (test-account-same?)
+ (let* ((env (create-test-env))
+ (account-alist (env-create-test-accounts env))
+ (bank-account (cdr (assoc "Bank" account-alist)))
+ (expense-account (cdr (assoc "Expenses" account-alist))))
+ (and (account-same? bank-account bank-account)
+ (not (account-same? bank-account expense-account)))))
+
+(define (test-account-in-alist?)
+ (let* ((env (create-test-env))
+ (account-alist (env-create-test-accounts env))
+ (bank-account (cdr (assoc "Bank" account-alist)))
+ (wallet-account (cdr (assoc "Wallet" account-alist)))
+ (expense-account (cdr (assoc "Expenses" account-alist))))
+ (let ((alist (list (cons bank-account "Bank") (cons expense-account "Expenses"))))
+ (and (account-in-alist bank-account alist)
+ (account-in-alist expense-account alist)
+ (not (account-in-alist wallet-account alist))))))
+
+(define (test-account-in-list?)
+ (test-account-list-predicate-generic
+ (lambda (accounts) (lambda (account) (account-in-list? account accounts)))))
+
+(define (test-account-list-predicate)
+ (test-account-list-predicate-generic account-in-list-pred))
+
+(define (test-account-list-predicate-generic predicate)
+ (let* ((env (create-test-env))
+ (account-alist (env-create-test-accounts env))
+ (bank-account (cdr (assoc "Bank" account-alist)))
+ (wallet-account (cdr (assoc "Wallet" account-alist)))
+ (other-account (cdr (assoc "Other" account-alist)))
+ (bank-or-wallet? (predicate (list bank-account wallet-account))))
+ (and (bank-or-wallet? bank-account)
+ (bank-or-wallet? wallet-account)
+ (not (bank-or-wallet? other-account)))))
diff --git a/src/report/report-system/test/test-extras.scm b/src/report/report-system/test/test-extras.scm
index dbb409a..52506d4 100644
--- a/src/report/report-system/test/test-extras.scm
+++ b/src/report/report-system/test/test-extras.scm
@@ -54,8 +54,10 @@
(export env-create-transaction)
(export env-create-account)
(export env-create-root-account)
+(export env-create-test-accounts)
(export env-create-daily-transactions)
(export env-create-account-structure)
+(export env-create-account-structure-alist)
(export env-expense-account-structure)
(export pattern-streamer)
@@ -235,6 +237,15 @@
options
account-structure)))
+(define (env-create-account-structure-alist env account-structure)
+ (let ((accounts (env-create-account-structure env account-structure)))
+ (define (flatten l)
+ (if (null? l) '()
+ (if (not (pair? l)) (list l)
+ (append (flatten (car l)) (flatten (cdr l))))))
+ (map (lambda (acct) (cons (xaccAccountGetName acct) acct))
+ (flatten accounts))))
+
(define (env-expense-account-structure env)
(env-create-account-structure
env
@@ -247,6 +258,15 @@
(list "Parking")
(list "Petrol")))))
+(define (env-create-test-accounts env)
+ (env-create-account-structure-alist env
+ (list "Root"
+ (list (cons 'type ACCT-TYPE-ASSET))
+ (list "Bank")
+ (list "Wallet")
+ (list "Other")
+ (list "Expenses"
+ (list (cons 'type ACCT-TYPE-EXPENSE))))))
;; Date sequences
;;
diff --git a/src/report/report-system/test/test-split.scm b/src/report/report-system/test/test-split.scm
new file mode 100644
index 0000000..286864b
--- /dev/null
+++ b/src/report/report-system/test/test-split.scm
@@ -0,0 +1,33 @@
+(use-modules (gnucash gnc-module))
+(use-modules (srfi srfi-1))
+
+(gnc:module-begin-syntax (gnc:module-load "gnucash/app-utils" 0))
+
+(use-modules (gnucash report report-system split))
+(use-modules (gnucash report report-system test test-extras))
+
+(use-modules (gnucash report report-system))
+
+(define (run-test)
+ (test test-split-in-list?))
+
+(define (test-split-in-list?)
+ (let* ((env (create-test-env))
+ (today (gnc:date->timepair (localtime (current-time))))
+ (account-alist (env-create-test-accounts env))
+ (bank-account (cdr (assoc "Bank" account-alist)))
+ (expense-account (cdr (assoc "Expenses" account-alist)))
+ (wallet-account (cdr (assoc "Wallet" account-alist)))
+ (tx1 (env-create-transaction env today bank-account wallet-account (gnc:make-gnc-numeric 20 1)))
+ (tx2 (env-create-transaction env today bank-account expense-account (gnc:make-gnc-numeric 10 1)))
+ (splits-tx1 (xaccTransGetSplitList tx1))
+ (splits-tx2 (xaccTransGetSplitList tx2)))
+ (and (split-in-list? (first splits-tx1) splits-tx1)
+ (split-in-list? (second splits-tx1) splits-tx1)
+ (not (split-in-list? (first splits-tx1) splits-tx2))
+ (not (split-in-list? (second splits-tx1) splits-tx2))
+ (not (split-in-list? (first splits-tx1) '())))))
+
+
+
+
diff --git a/src/report/standard-reports/budget.scm b/src/report/standard-reports/budget.scm
index ab59e67..00d2d27 100644
--- a/src/report/standard-reports/budget.scm
+++ b/src/report/standard-reports/budget.scm
@@ -31,6 +31,8 @@
(use-modules (gnucash gettext))
(use-modules (gnucash printf))
+(use-modules (gnucash report report-system account))
+(use-modules (gnucash report report-system split))
(gnc:module-load "gnucash/report/report-system" 0)
(gnc:module-load "gnucash/gnome-utils" 0) ;for gnc-build-url
@@ -557,47 +559,6 @@
;;(txt (gnc:make-html-text))
)
- ;; is account in list of accounts?
- (define (same-account? a1 a2)
- (string=? (gncAccountGetGUID a1) (gncAccountGetGUID a2)))
-
- (define (same-split? s1 s2)
- (string=? (gncSplitGetGUID s1) (gncSplitGetGUID s2)))
-
- (define account-in-list?
- (lambda (account accounts)
- (cond
- ((null? accounts) #f)
- ((same-account? (car accounts) account) #t)
- (else (account-in-list? account (cdr accounts))))))
-
- (define split-in-list?
- (lambda (split splits)
- (cond
- ((null? splits) #f)
- ((same-split? (car splits) split) #t)
- (else (split-in-list? split (cdr splits))))))
-
- (define account-in-alist
- (lambda (account alist)
- (cond
- ((null? alist) #f)
- ((same-account? (caar alist) account) (car alist))
- (else (account-in-alist account (cdr alist))))))
-
- ;; helper for sorting of account list
- (define (account-full-name<? a b)
- (string<? (gnc-account-get-full-name a) (gnc-account-get-full-name b)))
-
- ;; helper for account depth
- (define (accounts-get-children-depth accounts)
- (apply max
- (map (lambda (acct)
- (let ((children (gnc-account-get-children acct)))
- (if (null? children)
- 1
- (+ 1 (accounts-get-children-depth children)))))
- accounts)))
;; end of defines
;; add subaccounts if requested
diff --git a/src/report/standard-reports/cash-flow.scm b/src/report/standard-reports/cash-flow.scm
index 4e8cebd..6ba919f 100644
--- a/src/report/standard-reports/cash-flow.scm
+++ b/src/report/standard-reports/cash-flow.scm
@@ -31,6 +31,8 @@
(use-modules (gnucash main)) ;; FIXME: delete after we finish modularizing.
(use-modules (gnucash gnc-module))
(use-modules (gnucash gettext))
+(use-modules (gnucash report report-system account))
+(use-modules (gnucash report report-system split))
(use-modules (gnucash printf))
@@ -158,47 +160,6 @@
(table (gnc:make-html-table))
(txt (gnc:make-html-text)))
- ;; is account in list of accounts?
- (define (same-account? a1 a2)
- (string=? (gncAccountGetGUID a1) (gncAccountGetGUID a2)))
-
- (define (same-split? s1 s2)
- (string=? (gncSplitGetGUID s1) (gncSplitGetGUID s2)))
-
- (define account-in-list?
- (lambda (account accounts)
- (cond
- ((null? accounts) #f)
- ((same-account? (car accounts) account) #t)
- (else (account-in-list? account (cdr accounts))))))
-
- (define split-in-list?
- (lambda (split splits)
- (cond
- ((null? splits) #f)
- ((same-split? (car splits) split) #t)
- (else (split-in-list? split (cdr splits))))))
-
- (define account-in-alist
- (lambda (account alist)
- (cond
- ((null? alist) #f)
- ((same-account? (caar alist) account) (car alist))
- (else (account-in-alist account (cdr alist))))))
-
- ;; helper for sorting of account list
- (define (account-full-name<? a b)
- (string<? (gnc-account-get-full-name a) (gnc-account-get-full-name b)))
-
- ;; return maximum depth over accounts and their children, if any
- (define (accounts-get-children-depth accounts)
- (apply max
- (map (lambda (acct)
- (let ((acct-depth (gnc-account-get-current-depth acct)))
- (+ acct-depth (- (gnc-account-get-tree-depth acct) 1))))
- accounts)))
-
-
(gnc:html-document-set-title!
doc (string-append
(get-option gnc:pagename-general gnc:optname-reportname)
commit f9ab945cad3c0af7734aebdbdd383c10f4c0e2ec
Author: Peter Broadbery <p.broadbery at gmail.com>
Date: Sun Nov 8 22:43:58 2015 +0000
Add and use a macro for loading modules.
diff --git a/src/gnc-module/gnc-module.scm b/src/gnc-module/gnc-module.scm
index 20786d3..544f37c 100644
--- a/src/gnc-module/gnc-module.scm
+++ b/src/gnc-module/gnc-module.scm
@@ -49,3 +49,12 @@
(export gnc:module-load)
(export gnc:module-load-optional)
(export gnc:module-unload)
+(export gnc:module-begin-syntax)
+
+;; Guile 2 needs to load external modules at compile time
+(cond-expand
+ (guile-2
+ (define-syntax-rule (gnc:module-begin-syntax form ...)
+ (eval-when (load compile eval expand) (begin form ...))))
+ (else
+ (define gnc:module-begin-syntax begin)))
diff --git a/src/report/standard-reports/test/test-standard-category-report.scm b/src/report/standard-reports/test/test-standard-category-report.scm
index c90d13c..fcb95b7 100644
--- a/src/report/standard-reports/test/test-standard-category-report.scm
+++ b/src/report/standard-reports/test/test-standard-category-report.scm
@@ -27,14 +27,8 @@
;; otherwise the N_ syntax-rule won't be found at compile time
;; causing the test to fail
;; That's what the wrapper below is meant for:
-(cond-expand
- (guile-2
- (define-syntax-rule (begin-for-syntax form ...)
- (eval-when (load compile eval expand) (begin form ...))))
- (else
- (define begin-for-syntax begin)))
-
-(begin-for-syntax (gnc:module-load "gnucash/report/report-system" 0))
+
+(gnc:module-begin-syntax (gnc:module-load "gnucash/report/report-system" 0))
(use-modules (gnucash main)) ;; FIXME: delete after we finish modularizing.
(use-modules (gnucash printf))
diff --git a/src/report/standard-reports/test/test-standard-net-barchart.scm b/src/report/standard-reports/test/test-standard-net-barchart.scm
index 5fd1bec..825c92c 100644
--- a/src/report/standard-reports/test/test-standard-net-barchart.scm
+++ b/src/report/standard-reports/test/test-standard-net-barchart.scm
@@ -22,18 +22,8 @@
(use-modules (gnucash gnc-module))
-;; Guile 2 needs to load external modules at compile time
-;; otherwise the N_ syntax-rule won't be found at compile time
-;; causing the test to fail
-;; That's what the wrapper below is meant for:
-(cond-expand
- (guile-2
- (define-syntax-rule (begin-for-syntax form ...)
- (eval-when (load compile eval expand) (begin form ...))))
- (else
- (define begin-for-syntax begin)))
-
-(begin-for-syntax (gnc:module-load "gnucash/report/report-system" 0))
+(gnc:module-begin-syntax (gnc:module-load "gnucash/report/report-system" 0))
+
(use-modules (gnucash engine))
(use-modules (sw_engine))
commit fa4532b60342529679c8671aca8caf70cdbfaa9f
Author: John Ralls <jralls at ceridwen.us>
Date: Wed Nov 11 08:44:09 2015 -0800
Updated Arabic Translation by Abdulsalam Alshilash.
diff --git a/po/ar.po b/po/ar.po
index 47659ad..f3a9f6f 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -13,18 +13,20 @@
# ashalash <ashalash at msn.com>, 2013
msgid ""
msgstr ""
-"Project-Id-Version: GnuCash 2.5.8\n"
+"Project-Id-Version: GnuCash 2.6.7\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-10-05 10:40-0700\n"
-"PO-Revision-Date: 2013-12-08 08:02+0300\n"
+"POT-Creation-Date: 2015-10-05 12:57-0700\n"
+"PO-Revision-Date: 2015-10-23 10:00+0300\n"
"Last-Translator: Abdulsalam ALshilash <ashalash at msn.com>\n"
-"Language-Team: Arabic (http://www.transifex.com/projects/p/gnucash-2410/language/ar/)\n"
+"Language-Team: Arabic (http://translationproject.org/team/ar.html) "
+"<ashalash at msn.com>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
-"X-Generator: Poedit 1.5.5\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
+"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
+"X-Generator: Poedit 1.5.7\n"
#. Business options
#: ../src/app-utils/app-utils.scm:302
@@ -69,7 +71,7 @@ msgstr "Ø§ÙØ´Ø®Øµ اÙÙ
سؤÙÙ ÙÙ Ø§ÙØ´Ø±ÙØ©"
#: ../src/app-utils/business-prefs.scm:24
msgid "Counters"
-msgstr ""
+msgstr "عدادات"
#: ../src/app-utils/business-prefs.scm:31
msgid "Customer number format"
@@ -80,12 +82,17 @@ msgid "Customer number"
msgstr "رÙÙ
Ø§ÙØ¹Ù
ÙÙ"
#: ../src/app-utils/business-prefs.scm:33
-msgid "The format string to use for generating customer numbers. This is a printf-style format string."
-msgstr ""
+msgid ""
+"The format string to use for generating customer numbers. This is a printf-"
+"style format string."
+msgstr "ÙØµ Ø§ÙØªÙسÙÙ ÙØªÙÙÙØ¯ Ø£Ø±ÙØ§Ù
Ø§ÙØ¹Ù
ÙØ§Ø¡. ÙÙ ÙØµ عÙ٠غرار printf."
#: ../src/app-utils/business-prefs.scm:34
-msgid "The previous customer number generated. This number will be incremented to generate the next customer number."
+msgid ""
+"The previous customer number generated. This number will be incremented to "
+"generate the next customer number."
msgstr ""
+"رÙÙ
Ø§ÙØ¹Ù
ÙÙ Ø§ÙØ³Ø§Ø¨Ù اÙÙ
ÙÙØ¯. سÙ٠تتÙ
Ø²ÙØ§Ø¯Ø© ÙØ°Ø§ Ø§ÙØ±ÙÙ
ÙØªÙÙÙØ¯ رÙÙ
Ø§ÙØ¹Ù
Ù٠اÙÙ
ÙØ¨Ù."
#: ../src/app-utils/business-prefs.scm:35
msgid "Employee number format"
@@ -96,12 +103,17 @@ msgid "Employee number"
msgstr "رÙÙ
اÙÙ
ÙØ¸Ù"
#: ../src/app-utils/business-prefs.scm:37
-msgid "The format string to use for generating employee numbers. This is a printf-style format string."
-msgstr ""
+msgid ""
+"The format string to use for generating employee numbers. This is a printf-"
+"style format string."
+msgstr "ÙØµ Ø§ÙØªÙسÙÙ ÙØªÙÙÙØ¯ Ø£Ø±ÙØ§Ù
اÙÙ
ÙØ¸ÙÙÙ. ÙÙ ÙØµ عÙ٠غرار printf."
#: ../src/app-utils/business-prefs.scm:38
-msgid "The previous employee number generated. This number will be incremented to generate the next employee number."
+msgid ""
+"The previous employee number generated. This number will be incremented to "
+"generate the next employee number."
msgstr ""
+"رÙÙ
اÙÙ
ÙØ¸Ù Ø§ÙØ³Ø§Ø¨Ù اÙÙ
ÙÙØ¯. سÙ٠تتÙ
Ø²ÙØ§Ø¯Ø© ÙØ°Ø§ Ø§ÙØ±ÙÙ
ÙØªÙÙÙØ¯ رÙÙ
اÙÙ
ÙØ¸Ù اÙÙ
ÙØ¨Ù."
#: ../src/app-utils/business-prefs.scm:39
msgid "Invoice number format"
@@ -112,44 +124,64 @@ msgid "Invoice number"
msgstr "رÙÙ
اÙÙØ§ØªÙرة"
#: ../src/app-utils/business-prefs.scm:41
-msgid "The format string to use for generating invoice numbers. This is a printf-style format string."
-msgstr ""
+msgid ""
+"The format string to use for generating invoice numbers. This is a printf-"
+"style format string."
+msgstr "ÙØµ Ø§ÙØªÙسÙÙ ÙØªÙÙÙØ¯ Ø£Ø±ÙØ§Ù
اÙÙÙØ§ØªÙر. ÙÙ ÙØµ عÙ٠غرار printf."
#: ../src/app-utils/business-prefs.scm:42
-msgid "The previous invoice number generated. This number will be incremented to generate the next invoice number."
+msgid ""
+"The previous invoice number generated. This number will be incremented to "
+"generate the next invoice number."
msgstr ""
+"رÙÙ
اÙÙØ§ØªÙرة Ø§ÙØ³Ø§Ø¨ÙØ© اÙÙ
ÙÙØ¯. سÙ٠تتÙ
Ø²ÙØ§Ø¯Ø© ÙØ°Ø§ Ø§ÙØ±ÙÙ
ÙØªÙÙÙØ¯ رÙÙ
اÙÙØ§ØªÙرة "
+"اÙÙ
ÙØ¨ÙØ©."
#: ../src/app-utils/business-prefs.scm:43
msgid "Bill number format"
-msgstr ""
+msgstr "ÙØ³Ù رÙÙ
اÙÙ
Ø·Ø§ÙØ¨Ø©"
#: ../src/app-utils/business-prefs.scm:44
msgid "Bill number"
-msgstr ""
+msgstr "رÙÙ
اÙÙ
Ø·Ø§ÙØ¨Ø©"
#: ../src/app-utils/business-prefs.scm:45
-msgid "The format string to use for generating bill numbers. This is a printf-style format string."
+msgid ""
+"The format string to use for generating bill numbers. This is a printf-style "
+"format string."
msgstr ""
+"طرÙÙØ© Ø§ÙØªÙسÙÙ ÙØ§Ø³ØªØ®Ø¯Ø§Ù
ÙØ§ ÙØªÙÙÙØ¯ Ø£Ø±ÙØ§Ù
Ø£Ø±ÙØ§Ù
اÙÙ
Ø·Ø§ÙØ¨Ø§Øª.ÙÙ ÙØµ عÙ٠غرار printf."
#: ../src/app-utils/business-prefs.scm:46
-msgid "The previous bill number generated. This number will be incremented to generate the next bill number."
+msgid ""
+"The previous bill number generated. This number will be incremented to "
+"generate the next bill number."
msgstr ""
+"رÙÙ
اÙÙ
Ø·Ø§ÙØ¨Ø© Ø§ÙØ³Ø§Ø¨ÙØ© اÙÙ
ÙÙØ¯. سÙ٠تتÙ
Ø²ÙØ§Ø¯Ø© ÙØ°Ø§ Ø§ÙØ±ÙÙ
ÙØªÙÙÙØ¯ رÙÙ
اÙÙ
Ø·Ø§ÙØ¨Ø© "
+"اÙÙ
ÙØ¨ÙØ©."
#: ../src/app-utils/business-prefs.scm:47
msgid "Expense voucher number format"
-msgstr "ØªÙØ³Ù٠رÙÙ
Ø¥ÙØµØ§Ù اÙÙ
صرÙÙØ§Øª"
+msgstr "ØªÙØ³Ù٠رÙÙ
ÙØ³Ø§Ø¦Ù
اÙÙ
صرÙÙØ§Øª"
#: ../src/app-utils/business-prefs.scm:48
msgid "Expense voucher number"
-msgstr "رÙÙ
Ø¥ÙØµØ§Ù اÙÙ
صرÙÙØ§Øª"
+msgstr "رÙÙ
ÙØ³ÙÙ
Ø© اÙÙ
صرÙÙØ§Øª"
#: ../src/app-utils/business-prefs.scm:49
-msgid "The format string to use for generating expense voucher numbers. This is a printf-style format string."
+msgid ""
+"The format string to use for generating expense voucher numbers. This is a "
+"printf-style format string."
msgstr ""
+"طرÙÙØ© Ø§ÙØªÙسÙÙ ÙØ§Ø³ØªØ®Ø¯Ø§Ù
ÙØ§ ÙØªÙÙÙØ¯ Ø£Ø±ÙØ§Ù
ÙØ³ÙÙ
Ø© اÙÙ
صرÙÙØ§Øª. ÙÙ ÙØµ عÙ٠غرار printf."
#: ../src/app-utils/business-prefs.scm:50
-msgid "The previous expense voucher number generated. This number will be incremented to generate the next voucher number."
+msgid ""
+"The previous expense voucher number generated. This number will be "
+"incremented to generate the next voucher number."
msgstr ""
+"رÙÙ
ÙØ³ÙÙ
Ø© اÙÙ
صرÙÙØ§Øª Ø§ÙØ³Ø§Ø¨Ù تÙ
Ø¥ÙØ´Ø§Ø¡Ù. سÙ٠تÙ
Ù
Ø²ÙØ§Ø¯Ø© ÙØ°Ø§ Ø§ÙØ±ÙÙ
ÙØªÙÙÙØ¯ رÙÙ
"
+"اÙÙØ³ÙÙ
Ø© اÙÙ
ÙØ¨Ù."
#: ../src/app-utils/business-prefs.scm:51
msgid "Job number format"
@@ -161,12 +193,19 @@ msgid "Job number"
msgstr "رÙÙ
اÙÙØ¸ÙÙØ©"
#: ../src/app-utils/business-prefs.scm:53
-msgid "The format string to use for generating job numbers. This is a printf-style format string."
+msgid ""
+"The format string to use for generating job numbers. This is a printf-style "
+"format string."
msgstr ""
+"طرÙÙØ© Ø§ÙØªÙسÙÙ ÙØ§Ø³ØªØ®Ø¯Ø§Ù
ÙØ§ ÙØªÙÙÙØ¯ Ø£Ø±ÙØ§Ù
Ø£Ù
ر Ø§ÙØªØ´ØºÙÙ.ÙÙ ÙØµ عÙ٠غرار printf."
#: ../src/app-utils/business-prefs.scm:54
-msgid "The previous job number generated. This number will be incremented to generate the next job number."
+msgid ""
+"The previous job number generated. This number will be incremented to "
+"generate the next job number."
msgstr ""
+"رÙÙ
Ø£Ù
ر Ø§ÙØªØ´ØºÙÙ Ø§ÙØ³Ø§Ø¨Ù اÙÙ
ÙÙØ¯. سÙ٠تتÙ
Ø²ÙØ§Ø¯Ø© ÙØ°Ø§ Ø§ÙØ±ÙÙ
ÙØªÙÙÙØ¯ رÙÙ
Ø£Ù
ر "
+"Ø§ÙØªØ´ØºÙ٠اÙÙ
ÙØ¨Ù."
#: ../src/app-utils/business-prefs.scm:55
msgid "Order number format"
@@ -177,12 +216,18 @@ msgid "Order number"
msgstr "رÙÙ
Ø§ÙØ·Ùب"
#: ../src/app-utils/business-prefs.scm:57
-msgid "The format string to use for generating order numbers. This is a printf-style format string."
+msgid ""
+"The format string to use for generating order numbers. This is a printf-"
+"style format string."
msgstr ""
+"طرÙÙØ© Ø§ÙØªÙسÙÙ ÙØ§Ø³ØªØ®Ø¯Ø§Ù
ÙØ§ ÙØªÙÙÙØ¯ Ø£Ø±ÙØ§Ù
Ø£Ø±ÙØ§Ù
Ø§ÙØ·Ùبات.ÙÙ ÙØµ عÙ٠غرار printf."
#: ../src/app-utils/business-prefs.scm:58
-msgid "The previous order number generated. This number will be incremented to generate the next order number."
+msgid ""
+"The previous order number generated. This number will be incremented to "
+"generate the next order number."
msgstr ""
+"رÙÙ
Ø§ÙØ·Ùب Ø§ÙØ³Ø§Ø¨Ù اÙÙ
ÙÙØ¯. سÙ٠تتÙ
Ø²ÙØ§Ø¯Ø© ÙØ°Ø§ Ø§ÙØ±ÙÙ
ÙØªÙÙÙØ¯ رÙÙ
Ø§ÙØ·Ùب اÙÙ
ÙØ¨Ù."
#: ../src/app-utils/business-prefs.scm:59
msgid "Vendor number format"
@@ -193,44 +238,50 @@ msgid "Vendor number"
msgstr "رÙÙ
اÙÙ
ÙØ±Ø¯"
#: ../src/app-utils/business-prefs.scm:61
-msgid "The format string to use for generating vendor numbers. This is a printf-style format string."
+msgid ""
+"The format string to use for generating vendor numbers. This is a printf-"
+"style format string."
msgstr ""
+"طرÙÙØ© Ø§ÙØªÙسÙÙ ÙØ§Ø³ØªØ®Ø¯Ø§Ù
ÙØ§ ÙØªÙÙÙØ¯ Ø£Ø±ÙØ§Ù
Ø£Ø±ÙØ§Ù
اÙÙ
ÙØ±Ø¯ÙÙ .ÙÙ ÙØµ عÙ٠غرار printf."
#: ../src/app-utils/business-prefs.scm:62
-msgid "The previous vendor number generated. This number will be incremented to generate the next vendor number."
+msgid ""
+"The previous vendor number generated. This number will be incremented to "
+"generate the next vendor number."
msgstr ""
+"رÙÙ
اÙÙ
ÙØ±Ø¯ Ø§ÙØ³Ø§Ø¨ÙØ© اÙÙ
ÙÙØ¯. سÙ٠تتÙ
Ø²ÙØ§Ø¯Ø© ÙØ°Ø§ Ø§ÙØ±ÙÙ
ÙØªÙÙÙØ¯ رÙÙ
اÙÙ
ÙØ±Ø¯ اÙÙ
ÙØ¨Ù."
#: ../src/app-utils/business-prefs.scm:72
msgid "The name of your business."
-msgstr ""
+msgstr "إسÙ
اÙÙ
ؤسسة/Ø§ÙØ´Ø±ÙØ©."
#: ../src/app-utils/business-prefs.scm:77
msgid "The address of your business."
-msgstr ""
+msgstr "عÙÙØ§Ù اÙÙ
ؤسسة/Ø§ÙØ´Ø±ÙØ©."
#: ../src/app-utils/business-prefs.scm:82
msgid "The contact person to print on invoices."
-msgstr ""
+msgstr "Ø§ÙØ´Ø®Øµ اÙÙ
سؤÙÙ ÙØ·Ø¨Ø§Ø¹ØªÙ عÙ٠اÙÙÙØ§ØªÙر."
#: ../src/app-utils/business-prefs.scm:87
msgid "The phone number of your business."
-msgstr ""
+msgstr "رÙÙ
ÙØ§ØªÙ Ø§ÙØ´Ø±ÙØ©"
#: ../src/app-utils/business-prefs.scm:92
msgid "The fax number of your business."
-msgstr ""
+msgstr "رÙÙ
ÙØ§Ùس Ø§ÙØ´Ø±ÙØ©"
#: ../src/app-utils/business-prefs.scm:97
msgid "The email address of your business."
-msgstr ""
+msgstr "عÙÙØ§Ù Ø§ÙØ¨Ø±Ùد Ø§ÙØ¥ÙÙØªØ±ÙÙÙ ÙÙØ´Ø±ÙØ©"
#: ../src/app-utils/business-prefs.scm:102
msgid "The URL address of your website."
-msgstr ""
+msgstr "عÙÙØ§Ù URL ÙÙ
ÙÙØ¹ اÙÙÙØ¨ Ø§ÙØ®Ø§Øµ بÙ."
#: ../src/app-utils/business-prefs.scm:107
msgid "The ID for your company (eg 'Tax-ID: 00-000000)."
-msgstr ""
+msgstr "Ù
Ø¹Ø±Ù Ø§ÙØ´Ø±ÙØ© Ø§ÙØ®Ø§Øµ (عÙ٠سبÙ٠اÙÙ
ثا٠' Ù
Ø¹Ø±Ù Ø§ÙØ¶Ø±Ùبة: 00-000000)."
#: ../src/app-utils/business-prefs.scm:112
msgid "Default Customer TaxTable"
@@ -257,15 +308,25 @@ msgid "The default date format used for fancy printed dates."
msgstr ""
#: ../src/app-utils/business-prefs.scm:133
-msgid "Check to have trading accounts used for transactions involving more than one currency or commodity."
+msgid ""
+"Check to have trading accounts used for transactions involving more than one "
+"currency or commodity."
msgstr ""
#: ../src/app-utils/business-prefs.scm:139
-msgid "Choose the number of days after which transactions will be read-only and cannot be edited anymore. This threshold is marked by a red line in the account register windows. If zero, all transactions can be edited and none are read-only."
+msgid ""
+"Choose the number of days after which transactions will be read-only and "
+"cannot be edited anymore. This threshold is marked by a red line in the "
+"account register windows. If zero, all transactions can be edited and none "
+"are read-only."
msgstr ""
#: ../src/app-utils/business-prefs.scm:150
-msgid "Check to have split action field used in registers for 'Num' field in place of transaction number; transaction number shown as 'T-Num' on second line of register. Has corresponding effect on business features, reporting and imports/exports."
+msgid ""
+"Check to have split action field used in registers for 'Num' field in place "
+"of transaction number; transaction number shown as 'T-Num' on second line of "
+"register. Has corresponding effect on business features, reporting and "
+"imports/exports."
msgstr ""
#: ../src/app-utils/business-prefs.scm:158
@@ -293,7 +354,7 @@ msgstr "Ø¨Ø¯Ø§ÙØ© Ù
Ù ÙØ°Ø§ Ø§ÙØ¹Ø§Ù
"
#: ../src/app-utils/date-utilities.scm:835
msgid "First day of the current calendar year."
-msgstr ""
+msgstr "اÙÙÙÙ
Ø§ÙØ£ÙÙ ÙÙØ³ÙØ© Ø§ÙØªÙÙÙÙ
ÙØ© Ø§ÙØ¬Ø§Ø±ÙØ©."
#: ../src/app-utils/date-utilities.scm:839
#: ../src/gnome-utils/gnc-period-select.c:91
@@ -302,7 +363,7 @@ msgstr "ÙÙØ§ÙØ© ÙØ°Ø§ Ø§ÙØ¹Ø§Ù
"
#: ../src/app-utils/date-utilities.scm:842
msgid "Last day of the current calendar year."
-msgstr ""
+msgstr "اÙÙÙÙ
Ø§ÙØ£Ø®Ùر Ù
Ù Ø§ÙØ³ÙØ© Ø§ÙØªÙÙÙÙ
ÙØ© Ø§ÙØØ§ÙÙØ©."
#: ../src/app-utils/date-utilities.scm:846
#: ../src/gnome-utils/gnc-period-select.c:76
@@ -311,7 +372,7 @@ msgstr "Ø¨Ø¯Ø§ÙØ© Ø§ÙØ³ÙØ© Ø§ÙØ³Ø§Ø¨ÙØ©"
#: ../src/app-utils/date-utilities.scm:849
msgid "First day of the previous calendar year."
-msgstr ""
+msgstr "اÙÙÙÙ
Ø§ÙØ£ÙÙ ÙÙØ³ÙØ© Ø§ÙØªÙÙÙÙ
ÙØ© Ø§ÙØ³Ø§Ø¨ÙØ©."
#: ../src/app-utils/date-utilities.scm:853
#: ../src/gnome-utils/gnc-period-select.c:92
@@ -320,7 +381,7 @@ msgstr "ÙÙØ§ÙØ© Ø§ÙØ³ÙØ© Ø§ÙØ³Ø§Ø¨ÙØ©"
#: ../src/app-utils/date-utilities.scm:856
msgid "Last day of the previous calendar year."
-msgstr ""
+msgstr "اÙÙÙÙ
Ø§ÙØ£Ø®Ùر Ù
Ù Ø§ÙØ³ÙØ© Ø§ÙØªÙÙÙÙ
ÙØ© Ø§ÙØ³Ø§Ø¨ÙØ©."
#: ../src/app-utils/date-utilities.scm:860
msgid "Start of next year"
@@ -328,7 +389,7 @@ msgstr "Ø¨Ø¯Ø§ÙØ© Ù
Ù Ø§ÙØ¹Ø§Ù
اÙÙØ§Ø¯Ù
"
#: ../src/app-utils/date-utilities.scm:863
msgid "First day of the next calendar year."
-msgstr ""
+msgstr "Ø£ÙÙ ÙÙÙ
Ù
Ù Ø§ÙØ³ÙØ© Ø§ÙØªÙÙÙÙ
ÙØ© Ø§ÙØªØ§ÙÙØ©."
#: ../src/app-utils/date-utilities.scm:867
msgid "End of next year"
@@ -336,7 +397,7 @@ msgstr "ÙÙØ§ÙØ© Ø§ÙØ¹Ø§Ù
اÙÙ
ÙØ¨Ù"
#: ../src/app-utils/date-utilities.scm:870
msgid "Last day of the next calendar year."
-msgstr ""
+msgstr "اÙÙÙÙ
Ø§ÙØ£Ø®Ùر Ù
Ù Ø§ÙØ³ÙØ© Ø§ÙØªÙÙÙÙ
ÙØ© Ø§ÙØªØ§ÙÙØ©."
#: ../src/app-utils/date-utilities.scm:874
msgid "Start of accounting period"
@@ -344,7 +405,7 @@ msgstr "Ø¨Ø¯Ø§ÙØ© اÙÙØªØ±Ø© اÙÙ
ØØ§Ø³Ø¨ÙØ©"
#: ../src/app-utils/date-utilities.scm:877
msgid "First day of the accounting period, as set in the global preferences."
-msgstr ""
+msgstr "اÙÙÙÙ
Ø§ÙØ£ÙÙ Ù
Ù ÙØªØ±Ø© اÙÙ
ØØ§Ø³Ø¨ÙØ©Ø ÙÙ
ا ØØ¯Ø¯ ÙÙ Ø§ÙØªÙضÙÙØ§Øª Ø§ÙØ¹Ø§ÙÙ
ÙØ©."
#: ../src/app-utils/date-utilities.scm:881
msgid "End of accounting period"
@@ -352,7 +413,7 @@ msgstr "ÙÙØ§ÙØ© اÙÙØªØ±Ø© اÙÙ
ØØ§Ø³Ø¨ÙØ©"
#: ../src/app-utils/date-utilities.scm:884
msgid "Last day of the accounting period, as set in the global preferences."
-msgstr ""
+msgstr "اÙÙÙÙ
Ø§ÙØ£Ø®Ùر Ù
Ù ÙØªØ±Ø© اÙÙ
ØØ§Ø³Ø¨ÙØ©Ø ÙÙ
ا ØØ¯Ø¯ ÙÙ Ø§ÙØªÙضÙÙØ§Øª Ø§ÙØ¹Ø§ÙÙ
ÙØ©."
#: ../src/app-utils/date-utilities.scm:888
#: ../src/gnome-utils/gnc-period-select.c:71
@@ -361,7 +422,7 @@ msgstr "Ø¨Ø¯Ø§ÙØ© ÙØ°Ø§ Ø§ÙØ´Ùر"
#: ../src/app-utils/date-utilities.scm:891
msgid "First day of the current month."
-msgstr ""
+msgstr "اÙÙÙÙ
Ø§ÙØ£ÙÙ Ù
Ù Ø§ÙØ´Ùر Ø§ÙØØ§ÙÙ."
#: ../src/app-utils/date-utilities.scm:895
#: ../src/gnome-utils/gnc-period-select.c:87
@@ -370,7 +431,7 @@ msgstr "ÙÙØ§ÙØ© ÙØ°Ø§ Ø§ÙØ´Ùر"
#: ../src/app-utils/date-utilities.scm:898
msgid "Last day of the current month."
-msgstr ""
+msgstr "اÙÙÙÙ
Ø§ÙØ£Ø®Ùر Ù
Ù Ø§ÙØ´Ùر Ø§ÙØØ§ÙÙ."
#: ../src/app-utils/date-utilities.scm:902
#: ../src/gnome-utils/gnc-period-select.c:72
@@ -379,7 +440,7 @@ msgstr "Ø¨Ø¯Ø§ÙØ© Ø§ÙØ´Ùر Ø§ÙØ³Ø§Ø¨Ù"
#: ../src/app-utils/date-utilities.scm:905
msgid "First day of the previous month."
-msgstr ""
+msgstr "اÙÙÙÙ
Ø§ÙØ£ÙÙ Ù
Ù Ø§ÙØ´Ùر Ø§ÙØ³Ø§Ø¨Ù."
#: ../src/app-utils/date-utilities.scm:909
#: ../src/gnome-utils/gnc-period-select.c:88
@@ -388,7 +449,7 @@ msgstr "ÙÙØ§ÙØ© Ø§ÙØ´Ùر Ø§ÙØ³Ø§Ø¨Ù"
#: ../src/app-utils/date-utilities.scm:912
msgid "Last day of previous month."
-msgstr ""
+msgstr "اÙÙÙÙ
Ø§ÙØ£Ø®Ùر Ù
Ù Ø§ÙØ´Ùر Ø§ÙØ³Ø§Ø¨Ù."
#: ../src/app-utils/date-utilities.scm:916
msgid "Start of next month"
@@ -396,7 +457,7 @@ msgstr "Ø¨Ø¯Ø§ÙØ© Ù
Ù Ø§ÙØ´Ùر اÙÙØ§Ø¯Ù
"
#: ../src/app-utils/date-utilities.scm:919
msgid "First day of the next month."
-msgstr ""
+msgstr "اÙÙÙÙ
Ø§ÙØ£ÙÙ Ù
Ù Ø§ÙØ´Ùر Ø§ÙØªØ§ÙÙ."
#: ../src/app-utils/date-utilities.scm:923
msgid "End of next month"
@@ -404,7 +465,7 @@ msgstr "ÙÙØ§ÙØ© Ø§ÙØ´Ùر اÙÙ
ÙØ¨Ù"
#: ../src/app-utils/date-utilities.scm:926
msgid "Last day of next month."
-msgstr ""
+msgstr "اÙÙÙÙ
Ø§ÙØ£Ø®Ùر Ù
Ù Ø§ÙØ´Ùر Ø§ÙØªØ§ÙÙ."
#: ../src/app-utils/date-utilities.scm:930
msgid "Start of current quarter"
@@ -412,7 +473,7 @@ msgstr "Ø¨Ø¯Ø§ÙØ© ربع Ø§ÙØØ§ÙÙ"
#: ../src/app-utils/date-utilities.scm:933
msgid "First day of the current quarterly accounting period."
-msgstr ""
+msgstr "اÙÙÙÙ
Ø§ÙØ£ÙÙ Ù
٠اÙÙØªØ±Ø© اÙÙ
ØØ§Ø³Ø¨ÙØ© اÙÙØµÙÙØ© Ø§ÙØØ§ÙÙØ©."
#: ../src/app-utils/date-utilities.scm:937
msgid "End of current quarter"
@@ -420,7 +481,7 @@ msgstr "ÙÙØ§ÙØ© ربع Ø§ÙØ³ÙØ© Ø§ÙØØ§ÙÙ"
#: ../src/app-utils/date-utilities.scm:940
msgid "Last day of the current quarterly accounting period."
-msgstr ""
+msgstr "اÙÙÙÙ
Ø§ÙØ£Ø®Ùر ÙÙÙØªØ±Ø© اÙÙ
ØØ§Ø³Ø¨ÙØ© اÙÙØµÙÙØ© Ø§ÙØØ§ÙÙØ©."
#: ../src/app-utils/date-utilities.scm:944
#: ../src/gnome-utils/gnc-period-select.c:74
@@ -429,7 +490,7 @@ msgstr "Ø¨Ø¯Ø§ÙØ© Ø§ÙØ±Ø¨Ø¹ Ø§ÙØ³Ø§Ø¨Ù"
#: ../src/app-utils/date-utilities.scm:947
msgid "First day of the previous quarterly accounting period."
-msgstr ""
+msgstr "اÙÙÙÙ
Ø§ÙØ£ÙÙ Ù
٠اÙÙØªØ±Ø© اÙÙ
ØØ§Ø³Ø¨ÙØ© اÙÙØµÙÙØ© Ø§ÙØ³Ø§Ø¨ÙØ©."
#: ../src/app-utils/date-utilities.scm:951
#: ../src/gnome-utils/gnc-period-select.c:90
@@ -438,15 +499,15 @@ msgstr "ÙÙØ§ÙØ© Ø§ÙØ±Ø¨Ø¹ Ø§ÙØ³Ø§Ø¨Ù"
#: ../src/app-utils/date-utilities.scm:954
msgid "Last day of previous quarterly accounting period."
-msgstr ""
+msgstr "اÙÙÙÙ
Ø§ÙØ£Ø®Ùر ÙÙÙØªØ±Ø© اÙÙ
ØØ§Ø³Ø¨ÙØ© اÙÙØµÙÙØ© Ø§ÙØ³Ø§Ø¨ÙØ©."
#: ../src/app-utils/date-utilities.scm:958
msgid "Start of next quarter"
-msgstr "بدء Ù
Ù Ø§ÙØ±Ø¨Ø¹ اÙÙØ§Ø¯Ù
"
+msgstr "Ø¨Ø¯Ø§ÙØ© Ø§ÙØ±Ø¨Ø¹ اÙÙØ§Ø¯Ù
"
#: ../src/app-utils/date-utilities.scm:961
msgid "First day of the next quarterly accounting period."
-msgstr ""
+msgstr "اÙÙÙÙ
Ø§ÙØ£ÙÙ Ù
٠اÙÙØªØ±Ø© اÙÙ
ØØ§Ø³Ø¨ÙØ© اÙÙØµÙÙØ© اÙÙ
ÙØ¨ÙØ©."
#: ../src/app-utils/date-utilities.scm:965
msgid "End of next quarter"
@@ -454,7 +515,7 @@ msgstr "ÙÙØ§ÙØ© Ø§ÙØ±Ø¨Ø¹ اÙÙØ§Ø¯Ù
"
#: ../src/app-utils/date-utilities.scm:968
msgid "Last day of next quarterly accounting period."
-msgstr ""
+msgstr "اÙÙÙÙ
Ø§ÙØ£Ø®Ùر ÙÙÙØªØ±Ø© اÙÙ
ØØ§Ø³Ø¨ÙØ© اÙÙØµÙÙØ© اÙÙØ§Ø¯Ù
Ø©."
#. CY Strings
#: ../src/app-utils/date-utilities.scm:972
@@ -466,7 +527,7 @@ msgstr "اÙÙÙÙ
"
#: ../src/app-utils/date-utilities.scm:974
msgid "The current date."
-msgstr ""
+msgstr "Ø§ÙØªØ§Ø±ÙØ® Ø§ÙØØ§ÙÙ"
#: ../src/app-utils/date-utilities.scm:978
msgid "One Month Ago"
@@ -474,7 +535,7 @@ msgstr "ÙØ¨Ù Ø´ÙØ± ÙØ§ØØ¯"
#: ../src/app-utils/date-utilities.scm:980
msgid "One Month Ago."
-msgstr ""
+msgstr "ÙØ¨Ù Ø´ÙØ± ÙØ§ØØ¯"
#: ../src/app-utils/date-utilities.scm:984
msgid "One Week Ago"
@@ -482,7 +543,7 @@ msgstr "Ù
ÙØ° Ø£Ø³Ø¨ÙØ¹ ÙØ§ØØ¯"
#: ../src/app-utils/date-utilities.scm:986
msgid "One Week Ago."
-msgstr ""
+msgstr "Ù
ÙØ° Ø£Ø³Ø¨ÙØ¹ ÙØ§ØØ¯"
#: ../src/app-utils/date-utilities.scm:990
msgid "Three Months Ago"
@@ -490,7 +551,7 @@ msgstr "ÙØ¨Ù Ø«ÙØ§Ø«Ø© Ø£Ø´ÙØ±"
#: ../src/app-utils/date-utilities.scm:992
msgid "Three Months Ago."
-msgstr ""
+msgstr "ÙØ¨Ù Ø«ÙØ§Ø«Ø© Ø£Ø´ÙØ±"
#: ../src/app-utils/date-utilities.scm:996
msgid "Six Months Ago"
@@ -498,7 +559,7 @@ msgstr "Ù
ÙØ° ستة Ø£Ø´ÙØ±"
#: ../src/app-utils/date-utilities.scm:998
msgid "Six Months Ago."
-msgstr ""
+msgstr "Ù
ÙØ° ستة Ø£Ø´ÙØ±"
#: ../src/app-utils/date-utilities.scm:1001
msgid "One Year Ago"
@@ -506,47 +567,47 @@ msgstr "ÙØ¨Ù عاÙ
ÙØ§ØØ¯"
#: ../src/app-utils/date-utilities.scm:1003
msgid "One Year Ago."
-msgstr ""
+msgstr "ÙØ¨Ù عاÙ
ÙØ§ØØ¯"
#: ../src/app-utils/date-utilities.scm:1007
msgid "One Month Ahead"
-msgstr ""
+msgstr "بعد Ø´ÙØ± ÙØ§ØØ¯"
#: ../src/app-utils/date-utilities.scm:1009
msgid "One Month Ahead."
-msgstr ""
+msgstr "بعد Ø´ÙØ± ÙØ§ØØ¯"
#: ../src/app-utils/date-utilities.scm:1013
msgid "One Week Ahead"
-msgstr ""
+msgstr "بعد Ø£Ø³Ø¨ÙØ¹ ÙØ§ØØ¯"
#: ../src/app-utils/date-utilities.scm:1015
msgid "One Week Ahead."
-msgstr ""
+msgstr "بعد Ø£Ø³Ø¨ÙØ¹ ÙØ§ØØ¯"
#: ../src/app-utils/date-utilities.scm:1019
msgid "Three Months Ahead"
-msgstr ""
+msgstr "بعد Ø«ÙØ§Ø«Ø© Ø£Ø´ÙØ±"
#: ../src/app-utils/date-utilities.scm:1021
msgid "Three Months Ahead."
-msgstr ""
+msgstr "بعد Ø«ÙØ§Ø«Ø© Ø£Ø´ÙØ±"
#: ../src/app-utils/date-utilities.scm:1025
msgid "Six Months Ahead"
-msgstr ""
+msgstr "بعد ستة Ø£Ø´ÙØ±"
#: ../src/app-utils/date-utilities.scm:1027
msgid "Six Months Ahead."
-msgstr ""
+msgstr "بعد ستة Ø£Ø´ÙØ±"
#: ../src/app-utils/date-utilities.scm:1030
msgid "One Year Ahead"
-msgstr ""
+msgstr "بعد عاÙ
ÙØ§ØØ¯"
#: ../src/app-utils/date-utilities.scm:1032
msgid "One Year Ahead."
-msgstr ""
+msgstr "بعد عاÙ
ÙØ§ØØ¯"
#: ../src/app-utils/gnc-exp-parser.c:609
msgid "Illegal variable in expression."
@@ -566,7 +627,7 @@ msgstr "ÙÙÙ
ة عاجزة"
#: ../src/app-utils/gnc-exp-parser.c:626
msgid "Undefined character"
-msgstr "ØØ±Ù ØºÙØ± Ù
عرÙÙ"
+msgstr "ØØ±Ù ØºÙØ± Ù
عرÙ"
#: ../src/app-utils/gnc-exp-parser.c:628
msgid "Not a variable"
@@ -578,7 +639,7 @@ msgstr "ÙØ¸ÙÙØ© ØºÙØ± Ù
ØØ¯Ø¯Ø©"
#: ../src/app-utils/gnc-exp-parser.c:632
msgid "Out of memory"
-msgstr "ÙÙØ§Ø¯ Ø§ÙØ°Ø§Ùرة"
+msgstr "ÙØ§ ØªÙØ¬Ø¯ Ø°Ø§ÙØ±Ø© ÙØ§ÙÙØ©"
#: ../src/app-utils/gnc-exp-parser.c:634
msgid "Numeric error"
@@ -619,32 +680,32 @@ msgstr "رÙ
ز ØºÙØ± صØÙØ %s ÙÙÙØ¹ Ø§ÙØ¶Ø±Ùبة %s"
#: ../src/app-utils/gnc-ui-util.c:451
#, c-format
msgid "Not tax-related; invalid code %s for tax type %s"
-msgstr ""
+msgstr "ÙØ§ تتعÙÙ Ø¨Ø§ÙØ¶Ø±Ø§Ø¦Ø¨. رÙ
ز%s ØºÙØ± ØµØ§ÙØ ÙÙÙÙØ¹%s Ø§ÙØ¶Ø±Ùبة "
#: ../src/app-utils/gnc-ui-util.c:469
#, c-format
msgid "No form: code %s, tax type %s"
-msgstr ""
+msgstr "ÙØ§ Ø´ÙÙ:%s Ø§ÙØµÙØ±Ø©Ø %s Ù
Ù Ø§ÙØ¶Ø±Ùبة"
#: ../src/app-utils/gnc-ui-util.c:473
#, c-format
msgid "Not tax-related; no form: code %s, tax type %s"
-msgstr ""
+msgstr "ÙØ§ تتعÙÙ Ø¨Ø§ÙØ¶Ø±Ø§Ø¦Ø¨. Ø£Ù Ø´ÙÙ: %s Ø : Ø£Ù %s Ù
Ù Ø§ÙØ¶Ø±Ùبة "
#: ../src/app-utils/gnc-ui-util.c:490 ../src/app-utils/gnc-ui-util.c:505
#, c-format
msgid "No description: form %s, code %s, tax type %s"
-msgstr ""
+msgstr "ÙØ§ ÙÙØ¬Ø¯ ÙØµÙ: Ø´ÙÙ %sØ Ø§ÙØµÙرة %sØ , Ù %s Ù
Ù Ø§ÙØ¶Ø±Ùبة"
#: ../src/app-utils/gnc-ui-util.c:494 ../src/app-utils/gnc-ui-util.c:509
#, c-format
msgid "Not tax-related; no description: form %s, code %s, tax type %s"
-msgstr ""
+msgstr "ÙØ§ تتعÙÙ Ø¨Ø§ÙØ¶Ø±Ø§Ø¦Ø¨. ÙØ§ ÙÙØ¬Ø¯ ÙØµÙ: %sÙØ %s Ø§ÙØµÙØ±Ø©Ø %sÙ
Ù Ø§ÙØ¶Ø±Ùبة"
#: ../src/app-utils/gnc-ui-util.c:532
#, c-format
msgid "Not tax-related; %s%s: %s (code %s, tax type %s)"
-msgstr ""
+msgstr "ÙØ§ تتعÙÙ Ø¨Ø§ÙØ¶Ø±Ø§Ø¦Ø¨. Not tax-related; %s%s: %s (code %s, tax type %s)"
#: ../src/app-utils/gnc-ui-util.c:579
#, c-format
@@ -745,13 +806,13 @@ msgstr "دائÙ"
msgid ""
"There is a problem with option %s:%s.\n"
"%s"
-msgstr ""
+msgstr "ÙÙØ§Ù Ù
Ø´ÙÙØ© Ù
ع Ø®ÙØ§Ø± %s%s/n%s"
#: ../src/app-utils/prefs.scm:63
#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3184
#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3191
msgid "Funds In"
-msgstr ""
+msgstr "Ø§ÙØ£Ù
ÙØ§Ù Ø¯Ø§Ø®ÙØ©"
#: ../src/app-utils/prefs.scm:64
#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3133
@@ -762,7 +823,7 @@ msgstr "Ø¥ÙØ¯Ø§Ø¹"
#: ../src/app-utils/prefs.scm:65
#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3138
msgid "Receive"
-msgstr ""
+msgstr "تÙÙÙ"
#. set per book option
#. Mark the transaction as a payment
@@ -899,7 +960,7 @@ msgstr "اÙÙØ§ØªÙرة"
#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3103
#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3110
msgid "Funds Out"
-msgstr ""
+msgstr "Ø£Ù
ÙØ§Ù خارجة"
#: ../src/app-utils/prefs.scm:81
#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3048
@@ -910,7 +971,7 @@ msgstr "Ø³ØØ¨"
#: ../src/app-utils/prefs.scm:82
#: ../src/gnome-utils/gnc-tree-view-split-reg.c:3053
msgid "Spend"
-msgstr ""
+msgstr "Ø¥ÙÙØ§Ù"
#: ../src/app-utils/prefs.scm:86 ../src/app-utils/prefs.scm:87
#: ../src/app-utils/prefs.scm:88
@@ -977,7 +1038,7 @@ msgstr "Ø§ÙØ®ØµÙ
"
#: ../src/report/business-reports/invoice.scm:679
#: ../src/report/business-reports/job-report.scm:431
msgid "Bill"
-msgstr "ÙØ§ØªÙرة"
+msgstr "Ù
Ø·Ø§ÙØ¨Ø©"
#: ../src/bin/gnucash-bin.c:96
msgid "Show GnuCash version"
@@ -985,37 +1046,47 @@ msgstr "Ø¥Ø¸ÙØ§Ø± ÙØ³Ø®Ø© GnuCash"
#: ../src/bin/gnucash-bin.c:101
msgid "Enable debugging mode: increasing logging to provide deep detail."
-msgstr ""
+msgstr "تÙ
ÙÙÙ ÙØ¶Ø¹ Ø§ÙØªØµØÙØ: Ø²ÙØ§Ø¯Ø© Ù
ستÙÙ Ø§ÙØªØ³Ø¬ÙÙ ÙØªÙÙÙØ± ØªÙØ§ØµÙÙ Ø£ÙØ«Ø±."
#: ../src/bin/gnucash-bin.c:106
msgid "Enable extra/development/debugging features."
-msgstr ""
+msgstr "تÙ
ÙÙÙ Ù
ÙØ²Ø§Øª إضاÙÙØ© / ÙÙØªØ·ÙÙØ± / Ø§ÙØªØµØÙØ"
#: ../src/bin/gnucash-bin.c:111
-msgid "Log level overrides, of the form \"log.ger.path={debug,info,warn,crit,error}\""
+msgid ""
+"Log level overrides, of the form \"log.ger.path={debug,info,warn,crit,"
+"error}\""
msgstr ""
+"Ù
ستÙÙ Ø§ÙØªØ³Ø¬ÙÙ Ø§ÙØ¯Ø®ÙÙ Ø¹Ø§ÙØ ÙÙÙÙ
ÙØ°Ø¬ \"log.ger.path={debug,info,warn,crit,"
+"error}\""
#: ../src/bin/gnucash-bin.c:117
-msgid "File to log into; defaults to \"/tmp/gnucash.trace\"; can be \"stderr\" or \"stdout\"."
-msgstr ""
+msgid ""
+"File to log into; defaults to \"/tmp/gnucash.trace\"; can be \"stderr\" or "
+"\"stdout\"."
+msgstr "Ù
ÙÙ ÙØªØ³Ø¬ÙÙ \"/tmp/gnucash.trace\"; can be \"stderr\" or \"stdout\"."
#: ../src/bin/gnucash-bin.c:123
msgid "Do not load the last file opened"
msgstr "ÙØ§ØªØÙ
٠اخر Ù
ÙÙ Ù
ÙØªÙØ"
#: ../src/bin/gnucash-bin.c:127
-msgid "Set the prefix for gsettings schemas for gsettings queries. This can be useful to have a different settings tree while debugging."
+msgid ""
+"Set the prefix for gsettings schemas for gsettings queries. This can be "
+"useful to have a different settings tree while debugging."
msgstr ""
+"تعÙÙ٠بادئة Ùgsettings ÙÙ
خططات Ø§Ø³ØªØ¹ÙØ§Ù
ات gsettings. ÙÙØ°Ø§ ÙÙ
Ù٠أ٠ÙÙÙÙ Ù
Ù "
+"اÙÙ
ÙÙØ¯ ÙÙØØµÙ٠عÙ٠شجرة إعدادات Ù
ختÙÙØ© Ø£Ø«ÙØ§Ø¡ Ø§ÙØªØµØÙØ Ø§ÙØ¨Ø±Ù
جÙ."
#. Translators: Argument description for autohelp; see
#. http://developer.gnome.org/doc/API/2.0/glib/glib-Commandline-option-parser.html
#: ../src/bin/gnucash-bin.c:130
msgid "GSETTINGSPREFIX"
-msgstr ""
+msgstr "GSETTINGSPREFIX"
#: ../src/bin/gnucash-bin.c:134
msgid "Add price quotes to given GnuCash datafile"
-msgstr ""
+msgstr "Ø¥Ø¶Ø§ÙØ© Ø¹Ø±ÙØ¶ Ø§ÙØ£Ø³Ø¹Ø§Ø± ÙÙ
ÙÙ Ø§ÙØ¨ÙØ§ÙØ§Øª"
#. Translators: Argument description for autohelp; see
#. http://developer.gnome.org/doc/API/2.0/glib/glib-Commandline-option-parser.html
@@ -1024,8 +1095,9 @@ msgid "FILE"
msgstr "Ù
ÙÙ"
#: ../src/bin/gnucash-bin.c:141
-msgid "Regular expression determining which namespace commodities will be retrieved"
-msgstr ""
+msgid ""
+"Regular expression determining which namespace commodities will be retrieved"
+msgstr "Ø§ÙØªØ¹Ø¨Ùرات Ø§ÙØ¹Ø§Ø¯ÙØ© ØªØØ¯Ùد Ù
Ø³Ø§ØØ© اسÙ
Ø§ÙØ³Ùع اÙÙ
سترجعة"
#. Translators: Argument description for autohelp; see
#. http://developer.gnome.org/doc/API/2.0/glib/glib-Commandline-option-parser.html
@@ -1035,27 +1107,27 @@ msgstr "Ø£ÙØ§Ù
ر"
#: ../src/bin/gnucash-bin.c:147
msgid "[datafile]"
-msgstr ""
+msgstr " [Ù
ÙÙ Ø¨ÙØ§Ùات]"
#: ../src/bin/gnucash-bin.c:157
msgid "This is a development version. It may or may not work."
-msgstr ""
+msgstr "ÙØ°Ù ÙÙ ÙØ³Ø®Ø© Ø§ÙØªØ·ÙÙØ± Ø§ÙØ¨Ø±Ù
جÙ. ÙØ¯ تعÙ
Ù Ø£Ù ÙØ¯ ÙØ§ تعÙ
Ù"
#: ../src/bin/gnucash-bin.c:158
msgid "Report bugs and other problems to gnucash-devel at gnucash.org"
-msgstr ""
+msgstr "Ø£Ø±Ø³Ù Ø§ÙØ£Ø®Ø·Ø§Ø¡ ÙØºÙØ±ÙØ§ Ù
٠اÙÙ
شاÙÙ Ùgnucash-devel at gnucash.org"
#: ../src/bin/gnucash-bin.c:159
msgid "You can also lookup and file bug reports at http://bugzilla.gnome.org"
-msgstr ""
+msgstr "ÙÙ
ÙÙÙ Ø£ÙØ¶Ø§ Ø¨ØØ« ÙØªÙدÙÙ
Ø§ÙØªÙØ§Ø±ÙØ± Ø§ÙØ£Ø®Ø·Ø§Ø¡ ÙÙ http://bugzilla.gnome.org"
#: ../src/bin/gnucash-bin.c:160
msgid "To find the last stable version, please refer to http://www.gnucash.org"
-msgstr ""
+msgstr "ÙÙØ¹Ø«Ùر عÙÙ Ø£ØØ¯Ø« ÙØ³Ø®Ø© Ù
Ø³ØªÙØ±Ø©Ø ÙØ±Ø¬Ù Ø§ÙØ±Ø¬Ùع Ø¥ÙÙ http://www.gnucash.org"
#: ../src/bin/gnucash-bin.c:379
msgid "- GnuCash personal and small business finance management"
-msgstr ""
+msgstr "- جÙÙÙØ§Ø´ ÙÙØ¥Ø¯Ø§Ø±Ø© اÙÙ
اÙÙØ© Ø§ÙØ´Ø®ØµÙØ© ÙØ§ÙØªØ¬Ø§Ø±ÙØ© Ø§ÙØµØºÙرة "
#: ../src/bin/gnucash-bin.c:385 ../src/bin/gnucash-bin.c:764
#, c-format
@@ -1063,6 +1135,8 @@ msgid ""
"%s\n"
"Run '%s --help' to see a full list of available command line options.\n"
msgstr ""
+"%s\n"
+"شغ٠'%s --help' to see a full list of available command line options.\n"
#: ../src/bin/gnucash-bin.c:398
#, c-format
@@ -1084,6 +1158,8 @@ msgid ""
"%s\n"
"This copy was built from %s rev %s on %s."
msgstr ""
+"%s\n"
+"تÙ
Ø¨ÙØ§Ø¡ اÙÙØ³Ø®Ø© Ù
Ù %s rev %s on %s."
#: ../src/bin/gnucash-bin.c:410
#, c-format
@@ -1099,15 +1175,17 @@ msgid ""
"%s\n"
"This copy was built from rev %s on %s."
msgstr ""
+"%s\n"
+"تÙ
Ø¨ÙØ§Ø¡ اÙÙØ³Ø®Ø© Ù
Ù rev %s on %s."
#: ../src/bin/gnucash-bin.c:516
msgid "No quotes retrieved. Finance::Quote isn't installed properly.\n"
-msgstr ""
+msgstr "Ø§ÙØ¹Ø±Ùض ÙÙ
ÙØªÙ
Ø§Ø³ØªØ±Ø¬Ø§Ø¹ÙØ§. ÙÙ
ÙØªÙ
ØªØ«Ø¨ÙØª اÙÙ
اÙÙØ© :: Ø§ÙØ¹Ø±Ùض بشÙ٠صØÙØ. \n"
#. Install Price Quote Sources
#: ../src/bin/gnucash-bin.c:599
msgid "Checking Finance::Quote..."
-msgstr ""
+msgstr "ÙØØµ اÙÙ
اÙÙØ© :: عرض أسعار ..."
#: ../src/bin/gnucash-bin.c:607
msgid "Loading data..."
@@ -1115,9 +1193,12 @@ msgstr "تØÙ
ÙÙ Ø§ÙØ¨ÙØ§ÙØ§Øª..."
#: ../src/bin/gnucash-bin.c:765
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 ""
+"خطأ: ÙØ§ ÙÙ
Ù٠تÙÙØ¦Ø© ÙØ§Ø¬ÙØ© اÙÙ
ستخدÙ
Ø§ÙØ±Ø³ÙÙ
ÙØ© Ù Ù ÙÙ
ÙØªÙ
تعÙÙÙ Ø®ÙØ§Ø± Ø¥Ø¶Ø§ÙØ© "
+"Ø§ÙØ³Ø¹Ø± ربÙ
ا ØªØØªØ§Ø¬ Ø¥Ù٠تعÙÙÙ Ù
ØªØºÙØ± Ø§ÙØ¨Ùئة $ DISPLAY Ø"
#: ../src/business/business-gnome/business-gnome-utils.c:73
#: ../src/business/business-gnome/business-gnome-utils.c:260
@@ -1137,7 +1218,7 @@ msgstr "ØªØØ±Ùر..."
#: ../src/business/business-gnome/dialog-invoice.c:2530
#: ../src/business/business-gnome/dialog-invoice.c:2531
msgid "Voucher"
-msgstr "ÙØ³ÙÙ
Ø©"
+msgstr " ÙØ³ÙÙ
Ø© Ø§ÙØ´Ø±Ø§Ø¡"
#. This array contains all of the different strings for different column types.
#: ../src/business/business-gnome/business-gnome-utils.c:448
@@ -1197,7 +1278,7 @@ msgstr "ÙØ§ ÙÙØ¬Ø¯ Ù
Ø«Ù ÙØ°Ø§ Ø§ÙØ§Ø¯Ø®Ø§Ù: %s"
#: ../src/business/business-gnome/business-urls.c:279
#, c-format
msgid "Entity type does not match %s: %s"
-msgstr ""
+msgstr "ÙØ§ ÙØªØ·Ø§Ø¨Ù Entity type does not match %s: %s"
#: ../src/business/business-gnome/business-urls.c:289
#, c-format
@@ -1207,20 +1288,23 @@ msgstr "عÙÙØ§Ù خاطئ %s"
#: ../src/business/business-gnome/business-urls.c:302
#, c-format
msgid "No such Account entity: %s"
-msgstr ""
+msgstr "ÙØ§ ÙÙØ¬Ø¯ Ù
Ø«Ù ÙØ°Ø§ اÙÙÙØ§Ù Ø§ÙØØ³Ø§Ø¨Ù No such Account entity: %s"
#: ../src/business/business-gnome/dialog-billterms.c:265
msgid "Discount days cannot be more than due days."
-msgstr ""
+msgstr "Ø£ÙØ§Ù
Ø§ÙØ®ØµÙ
ÙØ§ ÙÙ
Ù٠أ٠تÙÙÙ Ø£ÙØ«Ø± Ù
Ù Ø£ÙØ§Ù
Ø§ÙØ¥Ø³ØªØÙاÙ."
#: ../src/business/business-gnome/dialog-billterms.c:324
msgid "You must provide a name for this Billing Term."
-msgstr ""
+msgstr "ÙØ¬Ø¨ تÙÙÙØ± اسÙ
ا ÙÙØ°Ø§ اÙÙØªØ±Ø© ÙÙÙ
Ø·Ø§ÙØ¨Ø§Øª."
#: ../src/business/business-gnome/dialog-billterms.c:331
#, c-format
-msgid "You must provide a unique name for this Billing Term. Your choice \"%s\" is already in use."
+msgid ""
+"You must provide a unique name for this Billing Term. Your choice \"%s\" is "
+"already in use."
msgstr ""
+"ÙØ¬Ø¨ تÙÙÙØ± اسÙ
ÙØ±Ùد ÙÙØ°Ø§ اÙÙØªØ±Ø© ÙÙÙ
Ø·Ø§ÙØ¨Ø§Øª.Ø§ÙØ§Ø³Ù
اÙÙ
دخ٠\"%s\" Ù
ستخدÙ
Ù
Ù ÙØ¨Ù"
#: ../src/business/business-gnome/dialog-billterms.c:527
#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:17
@@ -1233,7 +1317,7 @@ msgstr "Ø£ÙØ§Ù
"
#: ../src/business/business-gnome/dialog-billterms.c:530
#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:25
msgid "Proximo"
-msgstr ""
+msgstr "Proximo"
#: ../src/business/business-gnome/dialog-billterms.c:533
#: ../src/gnome/gtkbuilder/dialog-price.glade.h:26
@@ -1247,40 +1331,47 @@ msgstr "ØºÙØ± Ù
عرÙÙ"
#: ../src/business/business-gnome/dialog-billterms.c:662
#, c-format
msgid "Term \"%s\" is in use. You cannot delete it."
-msgstr ""
+msgstr "Ù
ØµØ·ÙØ \"%s\" ÙÙØ¯ Ø§ÙØ§Ø³ØªØ®Ø¯Ø§Ù
. ÙØ§ ÙÙ
ÙÙ ØØ°ÙÙ."
#: ../src/business/business-gnome/dialog-billterms.c:668
#: ../src/gnome-utils/dialog-tax-table.c:571
#, c-format
msgid "Are you sure you want to delete \"%s\"?"
-msgstr ""
+msgstr "ÙÙ Ø£ÙØª Ù
ØªØ£ÙØ¯ Ø£ÙÙ ØªØ±ÙØ¯ ØØ°Ù \"%s\"Ø"
#: ../src/business/business-gnome/dialog-choose-owner.c:75
-msgid "This transaction needs to be assigned to a Customer. Please choose the Customer below."
-msgstr ""
+msgid ""
+"This transaction needs to be assigned to a Customer. Please choose the "
+"Customer below."
+msgstr "ÙØ°Ù Ø§ÙØ¹Ù
ÙÙØ© ØªØØªØ§Ø¬ Ø¥ÙÙ Ø£Ù ØªØ³ÙØ¯ Ø¥Ù٠عÙ
ÙÙ. Ø§ÙØ±Ø¬Ø§Ø¡ Ø§Ø®ØªÙØ§Ø± Ø§ÙØ¹Ù
ÙÙ Ø£Ø¯ÙØ§Ù."
#: ../src/business/business-gnome/dialog-choose-owner.c:82
-msgid "This transaction needs to be assigned to a Vendor. Please choose the Vendor below."
-msgstr ""
+msgid ""
+"This transaction needs to be assigned to a Vendor. Please choose the Vendor "
+"below."
+msgstr "ÙØ°Ù Ø§ÙØ¹Ù
ÙÙØ© ØªØØªØ§Ø¬ Ø¥ÙÙ Ø£Ù ØªØ³ÙØ¯ Ø¥ÙÙ Ù
ÙØ±Ø¯. Ø§ÙØ±Ø¬Ø§Ø¡ Ø§Ø®ØªÙØ§Ø± اÙÙ
ÙØ±Ø¯ Ø£Ø¯ÙØ§Ù."
#: ../src/business/business-gnome/dialog-customer.c:329
msgid ""
-"You must enter a company name. If this customer is an individual (and not a company) you should enter the same value for:\n"
+"You must enter a company name. If this customer is an individual (and not a "
+"company) you should enter the same value for:\n"
"Identification - Company Name, and\n"
"Payment Address - Name."
msgstr ""
+"ÙØ¬Ø¨ إدخا٠اسÙ
Ø§ÙØ´Ø±ÙØ©. إذا ÙØ§Ù ÙØ°Ø§ Ø§ÙØ¹Ù
ÙÙ ÙÙ ÙØ±Ø¯ (ÙÙÙØ³ Ø´Ø±ÙØ©) ÙØ¬Ø¨ إدخا٠ÙÙØ³ "
+"اÙÙÙÙ
Ø© ÙÙØªØ¹Ø±ÙÙ- اسÙ
Ø§ÙØ´Ø±ÙØ©Ø ÙØ¹ÙÙØ§Ù Ø§ÙØ¯Ùع Ù Ø§ÙØ§Ø³Ù
"
#: ../src/business/business-gnome/dialog-customer.c:341
msgid "You must enter a billing address."
-msgstr ""
+msgstr "ÙØ¬Ø¨ إدخا٠عÙÙØ§Ù اÙÙÙØ§ØªÙر."
#: ../src/business/business-gnome/dialog-customer.c:351
msgid "Discount percentage must be between 0-100 or you must leave it blank."
-msgstr ""
+msgstr "ÙØ¬Ø¨ أ٠تÙÙÙ ÙØ³Ø¨Ø© Ø§ÙØ®ØµÙ
بÙÙ 0-100 Ø£Ù ÙØ¬Ø¨ ترÙÙØ§ ÙØ§Ø±ØºØ©."
#: ../src/business/business-gnome/dialog-customer.c:356
msgid "Credit must be a positive amount or you must leave it blank."
-msgstr ""
+msgstr "ÙØ¬Ø¨ أ٠تÙÙÙ ÙÙÙ
Ø© Ø§ÙØ§Ø¦ØªÙ
ا٠Ù
ÙØ¬Ø¨Ø© Ø£Ù ÙØ¬Ø¨ ترÙÙØ§ ÙØ§Ø±ØºØ©."
#: ../src/business/business-gnome/dialog-customer.c:432
#: ../src/business/business-gnome/dialog-employee.c:313
@@ -1326,12 +1417,12 @@ msgstr "عÙ
ÙÙØ© Ø§ÙØ¯Ùع"
#: ../src/business/business-gnome/dialog-customer.c:917
msgid "Shipping Contact"
-msgstr "Ø¬ÙØ© اتصا٠اÙÙÙÙ Ø§ÙØ¨ØØ±Ù"
+msgstr "Ø¬ÙØ© Ø§ØªØµØ§Ù Ø§ÙØ´ØÙ"
#: ../src/business/business-gnome/dialog-customer.c:919
#: ../src/business/business-gnome/dialog-vendor.c:722
msgid "Billing Contact"
-msgstr "ÙÙØ§ØªÙر Ø§ÙØ¥ØªØµØ§Ù"
+msgstr " Ø¬ÙØ© اتصا٠اÙÙÙØ§ØªÙر"
#: ../src/business/business-gnome/dialog-customer.c:921
msgid "Customer ID"
@@ -1363,15 +1454,15 @@ msgstr "Ù
عر٠#"
#: ../src/business/business-gnome/dialog-customer.c:957
msgid "Find Customer"
-msgstr "Ø§ÙØ¨ØØ« Ø¹Ù Ø§ÙØ¹Ù
ÙØ§Ø¡"
+msgstr "Ø§ÙØ¨ØØ« ع٠عÙ
ÙÙ"
#: ../src/business/business-gnome/dialog-date-close.c:75
msgid "No Account selected. Please try again."
-msgstr ""
+msgstr "ÙÙØ³ تÙÙ
ØªØØ¯ÙØ¯ØØ³Ø§Ø¨ . ÙØ±Ø¬Ù اÙÙ
ØØ§ÙÙØ© Ù
رة أخرÙ."
#: ../src/business/business-gnome/dialog-date-close.c:82
msgid "Placeholder account selected. Please try again."
-msgstr ""
+msgstr "تÙ
ØªØØ¯Ùد ØØ³Ø§Ø¨ ØºÙØ± ØµØ§ÙØ . ÙØ±Ø¬Ù اÙÙ
ØØ§ÙÙØ© Ù
رة أخرÙ."
#: ../src/business/business-gnome/dialog-employee.c:225
msgid "You must enter a username."
@@ -1444,15 +1535,16 @@ msgstr "Ø§ÙØ¹Ø«Ùر عÙ٠اÙÙ
ÙØ¸Ù"
#: ../src/business/business-gnome/dialog-invoice.c:386
#: ../src/business/business-gnome/dialog-order.c:181
msgid "You need to supply Billing Information."
-msgstr ""
+msgstr "ØªØØªØ§Ø¬ Ø¥Ù٠إدخا٠Ù
عÙÙÙ
ات اÙÙÙØªØ±Ø©."
#: ../src/business/business-gnome/dialog-invoice.c:579
msgid "Are you sure you want to delete the selected entry?"
msgstr "ÙÙ Ø§ÙØª Ù
ØªØ£ÙØ¯ Ù
٠اÙÙ ØªØ±ÙØ¯ ØØ°Ù ÙØ°Ø§ اÙÙ
ÙØ¯Ø®ÙØ"
#: ../src/business/business-gnome/dialog-invoice.c:581
-msgid "This entry is attached to an order and will be deleted from that as well!"
-msgstr ""
+msgid ""
+"This entry is attached to an order and will be deleted from that as well!"
+msgstr "ÙØ°Ø§ اÙÙ
دخ٠Ù
رتبط Ø¨Ø·ÙØ¨Ø ÙØ³ÙتÙ
ØØ°ÙÙ Ù
٠ذÙÙ Ø£ÙØ¶Ø§!"
#: ../src/business/business-gnome/dialog-invoice.c:691
#: ../src/business/business-gnome/dialog-invoice.c:2985
@@ -1476,19 +1568,19 @@ msgstr "ØªØ§Ø±ÙØ® Ø§ÙØ§Ø³ØªØÙاÙ"
#: ../src/report/business-reports/aging.scm:394
#: ../src/report/business-reports/owner-report.scm:571
msgid "Post Date"
-msgstr ""
+msgstr "ØªØ§Ø±ÙØ® Ø§ÙØªØ±ØÙÙ"
#: ../src/business/business-gnome/dialog-invoice.c:693
msgid "Post to Account"
-msgstr "ÙØ¸ÙÙØ© Ø§ÙØØ³Ø§Ø¨"
+msgstr "Ø§ÙØªØ±ØÙ٠اÙÙ ØØ³Ø§Ø¨"
#: ../src/business/business-gnome/dialog-invoice.c:694
msgid "Accumulate Splits?"
-msgstr ""
+msgstr "ÙÙ ØªØ±ÙØ¯ تراÙÙ
Ø§ÙØ¥ÙØ´ÙØ§ÙاتØ"
#: ../src/business/business-gnome/dialog-invoice.c:787
msgid "The Invoice must have at least one Entry."
-msgstr ""
+msgstr "ÙØ¬Ø¨ Ø£Ù ÙÙÙÙ ÙØ¯Ù اÙÙØ§ØªÙرة Ø¥Ø¯Ø®Ø§Ù ÙØ§ØØ¯ عÙÙ Ø§ÙØ£ÙÙ."
#: ../src/business/business-gnome/dialog-invoice.c:807
msgid "Do you really want to post the invoice?"
@@ -1496,12 +1588,16 @@ msgstr "ÙÙ ØªØ±ÙØ¯ ØÙا٠أ٠ترØÙ اÙÙØ§ØªÙرةØ"
#. Fill in the conversion prices with feedback from the user
#: ../src/business/business-gnome/dialog-invoice.c:822
-msgid "One or more of the entries are for accounts different from the invoice/bill currency. You will be asked a conversion rate for each."
+msgid ""
+"One or more of the entries are for accounts different from the invoice/bill "
+"currency. You will be asked a conversion rate for each."
msgstr ""
+"ÙØ§ØØ¯ Ø£Ù Ø£ÙØ«Ø± Ù
Ù Ø§ÙØ¥Ø¯Ø®Ø§Ùات ÙÙ ÙØØ³Ø§Ø¨Ø§Øª Ù
ختÙÙØ© ع٠عÙ
ÙØ© اÙÙØ§ØªÙرة. سÙÙ ÙØ·Ùب Ù
ÙÙ "
+"Ù
عد٠تØÙÙÙ Ø§ÙØ¹Ù
ÙØ© ÙÙÙ Ù
ÙÙØ§."
#: ../src/business/business-gnome/dialog-invoice.c:952
msgid "The post action was canceled because not all exchange rates were given."
-msgstr ""
+msgstr "تÙ
Ø¥ÙØºØ§Ø¡ Ø§ÙØ¥Ø¬Ø±Ø§Ø¡ ÙØ£ÙÙ ÙÙ
تعط٠جÙ
ÙØ¹ أسعار Ø§ÙØµØ±Ù."
#: ../src/business/business-gnome/dialog-invoice.c:1221
#: ../src/gnome/window-reconcile2.c:1142 ../src/gnome/window-reconcile.c:1142
@@ -1539,13 +1635,13 @@ msgstr "Ù
جÙ
ÙØ¹ Ø§ÙØ±Ø³ÙÙ
:"
#: ../src/report/business-reports/invoice.scm:690
#: ../src/report/business-reports/invoice.scm:694
msgid "Credit Note"
-msgstr ""
+msgstr "إشعار Ø¥Ø¶Ø§ÙØ©"
#: ../src/business/business-gnome/dialog-invoice.c:1901
#: ../src/business/business-gnome/dialog-invoice.c:1920
#: ../src/business/business-gnome/dialog-invoice.c:1939
msgid "New Credit Note"
-msgstr ""
+msgstr "إشعار Ø¥Ø¶Ø§ÙØ© Ø¬Ø¯ÙØ¯"
#: ../src/business/business-gnome/dialog-invoice.c:1902
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:275
@@ -1558,7 +1654,7 @@ msgstr "ÙØ§ØªÙرة Ø¬Ø¯ÙØ¯Ø©"
#: ../src/business/business-gnome/dialog-invoice.c:1926
#: ../src/business/business-gnome/dialog-invoice.c:1945
msgid "Edit Credit Note"
-msgstr ""
+msgstr "ØªØØ±Ùر إشعار Ø¥Ø¶Ø§ÙØ©"
#: ../src/business/business-gnome/dialog-invoice.c:1908
msgid "Edit Invoice"
@@ -1568,7 +1664,7 @@ msgstr "ØªØØ±Ùر اÙÙØ§ØªÙرة"
#: ../src/business/business-gnome/dialog-invoice.c:1930
#: ../src/business/business-gnome/dialog-invoice.c:1949
msgid "View Credit Note"
-msgstr ""
+msgstr "عرض إشعار Ø¥Ø¶Ø§ÙØ©"
#: ../src/business/business-gnome/dialog-invoice.c:1912
msgid "View Invoice"
@@ -1603,7 +1699,6 @@ msgstr "عرض Ø¥ÙØµØ§Ù اÙÙ
صرÙÙØ§Øª"
#: ../src/business/business-gnome/dialog-invoice.c:2346
#: ../src/business/business-gnome/dialog-invoice.c:2522
-#, fuzzy
msgid "Bill Information"
msgstr "Ù
عÙÙÙ
ات اÙÙØ§ØªÙرة"
@@ -1615,23 +1710,22 @@ msgstr "Ù
عر٠اÙÙØ§ØªÙرة"
#: ../src/business/business-gnome/dialog-invoice.c:2351
#: ../src/business/business-gnome/dialog-invoice.c:2529
-#, fuzzy
msgid "Voucher Information"
-msgstr "Ù
عÙÙÙ
ات اÙÙØ§ØªÙرة"
+msgstr "Ù
عÙÙÙ
ات اÙÙØ³ÙÙ
Ø©"
#: ../src/business/business-gnome/dialog-invoice.c:2353
#: ../src/business/business-gnome/dialog-invoice.c:2532
#: ../src/business/business-gnome/dialog-invoice.c:3060
msgid "Voucher ID"
-msgstr "Ù
Ø¹Ø±Ù Ø§ÙØ¥ÙصاÙ"
+msgstr "Ù
عر٠اÙÙØ³ÙÙ
Ø©"
#: ../src/business/business-gnome/dialog-invoice.c:2829
msgid "Date of duplicated entries"
-msgstr ""
+msgstr "ØªØ§Ø±ÙØ® Ø§ÙØ¥Ø¯Ø®Ø§Ùات اÙÙ
ÙØ±Ø±Ø©"
#: ../src/business/business-gnome/dialog-invoice.c:2864
msgid "Do you really want to post these invoices?"
-msgstr ""
+msgstr "ÙÙ ØªØ±ÙØ¯ ØÙا٠أ٠ترØÙ ÙØ°Ù اÙÙÙØ§ØªÙرØ"
#: ../src/business/business-gnome/dialog-invoice.c:2930
msgid "View/Edit Invoice"
@@ -1657,7 +1751,7 @@ msgstr "ÙØ¸ÙÙØ©"
#: ../src/business/business-gnome/dialog-invoice.c:2943
#: ../src/business/business-gnome/dialog-invoice.c:2954
msgid "Printable Report"
-msgstr ""
+msgstr "ØªÙØ±ÙØ±ÙØ§Ø¨Ù ÙÙØ·Ø¨Ø§Ø¹Ø©"
#: ../src/business/business-gnome/dialog-invoice.c:2939
#: ../src/business/business-gnome/dialog-invoice.c:3203
@@ -1668,7 +1762,7 @@ msgstr "عرض/تعدÙ٠اÙÙØ§ØªÙرة"
#. interchangeably in gnucash and mean the same thing.
#: ../src/business/business-gnome/dialog-invoice.c:2950
msgid "View/Edit Voucher"
-msgstr "عرض/ØªØØ±Ùر Ø§ÙØ¥ÙصاÙ"
+msgstr "عرض/ØªØØ±Ùر اÙÙØ³ÙÙ
Ø©"
#: ../src/business/business-gnome/dialog-invoice.c:2964
msgid "Invoice Owner"
@@ -1701,7 +1795,7 @@ msgstr "Ù
عر٠اÙÙÙØ§ØªÙر"
#: ../src/business/business-gnome/dialog-invoice.c:3007
#: ../src/business/business-gnome/dialog-invoice.c:3041
msgid "Is Paid?"
-msgstr "ÙØªÙ
Ø§ÙØ¯Ùع Ø"
+msgstr "تÙ
Ø§ÙØ¯Ùع Ø"
#: ../src/business/business-gnome/dialog-invoice.c:2976
#: ../src/business/business-gnome/dialog-invoice.c:3010
@@ -1711,13 +1805,13 @@ msgstr "ÙØªÙ
Ø§ÙØ¯Ùع Ø"
#: ../src/gnome/dialog-find-transactions.c:124
#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2820
msgid "Date Posted"
-msgstr "ØªØ§Ø±ÙØ® اÙÙØ´Ø±"
+msgstr "ØªØ§Ø±ÙØ® Ø§ÙØªØ±ØÙÙ"
#: ../src/business/business-gnome/dialog-invoice.c:2979
#: ../src/business/business-gnome/dialog-invoice.c:3013
#: ../src/business/business-gnome/dialog-invoice.c:3047
msgid "Is Posted?"
-msgstr "ÙØªÙ
Ø§ÙØªØ±ØÙÙ Ø"
+msgstr "تÙ
Ø§ÙØªØ±ØÙÙ Ø"
#: ../src/business/business-gnome/dialog-invoice.c:2982
#: ../src/business/business-gnome/dialog-invoice.c:3016
@@ -1748,11 +1842,11 @@ msgstr "Ù
ÙØ§ØØ¸Ø§Øª اÙÙØ§ØªÙرة"
#: ../src/business/business-gnome/dialog-invoice.c:3032
msgid "Voucher Owner"
-msgstr "Ù
اÙÙ Ø§ÙØ¥ÙصاÙ"
+msgstr "Ù
اÙ٠اÙÙØ³ÙÙ
Ø©"
#: ../src/business/business-gnome/dialog-invoice.c:3035
msgid "Voucher Notes"
-msgstr "Ù
Ø°ÙØ±Ø§Øª Ø§ÙØ¥ÙصاÙ"
+msgstr "Ù
ÙØ§ØØ¸Ø§Øª اÙÙØ³ÙÙ
Ø©"
#: ../src/business/business-gnome/dialog-invoice.c:3069
#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:2
@@ -1779,7 +1873,7 @@ msgstr "Ù
دÙÙØ¹"
#: ../src/business/business-gnome/dialog-invoice.c:3074
msgid "Posted"
-msgstr ""
+msgstr "تÙ
Ø§ÙØªØ±ØÙÙ"
#: ../src/business/business-gnome/dialog-invoice.c:3079
#: ../src/business/business-gnome/dialog-invoice.c:3219
@@ -1810,15 +1904,15 @@ msgstr "تÙ
ÙØªØÙا"
#: ../src/report/standard-reports/transaction.scm:442
#: ../src/report/standard-reports/transaction.scm:946
msgid "Num"
-msgstr ""
+msgstr "رÙÙ
"
#: ../src/business/business-gnome/dialog-invoice.c:3164
msgid "Find Bill"
-msgstr "Ø§ÙØ¹Ø«Ùر عÙ٠اÙÙØ§ØªÙرة"
+msgstr "Ø§ÙØ¨ØØ« ع٠Ù
Ø·Ø§ÙØ¨Ø©"
#: ../src/business/business-gnome/dialog-invoice.c:3170
msgid "Find Expense Voucher"
-msgstr "Ø§ÙØ¹Ø«Ùر عÙÙ Ø¥ÙØµØ§Ù اÙÙ
صارÙÙ"
+msgstr "Ø§ÙØ¨ØØ« Ø¹Ù Ø¥ÙØµØ§Ù ÙÙÙØ§Øª"
#: ../src/business/business-gnome/dialog-invoice.c:3171
#: ../src/gnome-search/dialog-search.c:1065
@@ -1830,13 +1924,13 @@ msgstr "Ø¥ÙØµØ§Ù اÙÙ
صارÙÙ"
#: ../src/business/business-gnome/dialog-invoice.c:3176
msgid "Find Invoice"
-msgstr "Ø§ÙØ¹Ø«Ùر عÙ٠اÙÙØ§ØªÙرة"
+msgstr "Ø§ÙØ¨ØØ« ع٠اÙÙØ§ØªÙرة"
#. Translators: This abbreviation is the column heading for
#. the condition "Is this invoice a Credit Note?"
#: ../src/business/business-gnome/dialog-invoice.c:3213
msgid "CN?"
-msgstr ""
+msgstr "CN?"
#. note the "Amount" multichoice option here
#: ../src/business/business-gnome/dialog-invoice.c:3215
@@ -1872,16 +1966,16 @@ msgstr "اÙÙ
Ø¨ÙØº"
#, c-format
msgid "The following bill is due:"
msgid_plural "The following %d bills are due:"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
-msgstr[5] ""
+msgstr[0] "Ù
Ø·Ø§ÙØ¨Ø©"
+msgstr[1] "اÙÙ
Ø·Ø§ÙØ¨Ø© Ø§ÙØ§ØªÙØ© ØÙت:"
+msgstr[2] "اÙÙ
Ø·Ø§ÙØ¨ØªØ§Ù Ø§ÙØ§ØªÙتا٠ØÙتا:"
+msgstr[3] "اÙÙ
Ø·Ø§ÙØ¨Ø§Øª Ø§ÙØ§ØªÙØ© ØÙت: %d"
+msgstr[4] "اÙÙ
Ø·Ø§ÙØ¨Ø§Øª Ø§ÙØ§ØªÙØ© ØÙت: %d"
+msgstr[5] "اÙÙ
Ø·Ø§ÙØ¨Ø§Øª Ø§ÙØ§ØªÙØ© ØÙت: %d"
#: ../src/business/business-gnome/dialog-invoice.c:3274
msgid "Due Bills Reminder"
-msgstr "ÙÙØ§ØªÙر اÙÙØ§Ø¬Ø¨ ØªØ°ÙØ±Ùا"
+msgstr "Ù
Ø·Ø§ÙØ¨Ø§Øª اÙÙØ§Ø¬Ø¨ ØªØ°ÙØ±Ùا"
#: ../src/business/business-gnome/dialog-job.c:135
msgid "The Job must be given a name."
@@ -1933,7 +2027,7 @@ msgstr "Ø§ÙØ¨ØØ« ع٠اÙÙØ¸ÙÙØ©"
#: ../src/business/business-gnome/dialog-order.c:171
msgid "The Order must be given an ID."
-msgstr ""
+msgstr "ÙØ¬Ø¨ Ø§Ù ÙØ¹Ø·Ù Ø§ÙØ·Ùب Ù
عر٠ÙÙØ·Ùب"
#: ../src/business/business-gnome/dialog-order.c:277
msgid "The Order must have at least one Entry."
@@ -1943,8 +2037,12 @@ msgstr "ÙÙ ÙØ°Ø§ Ø§ÙØ·Ùب ØªØØªØ§Ø¬ Ø§Ø¯Ø®Ø§Ù ÙØ§ØØ¯ عÙÙ Ø§ÙØ£ÙÙ"
#. * close this order!
#.
#: ../src/business/business-gnome/dialog-order.c:299
-msgid "This order contains entries that have not been invoiced. Are you sure you want to close it out before you invoice all the entries?"
+msgid ""
+"This order contains entries that have not been invoiced. Are you sure you "
+"want to close it out before you invoice all the entries?"
msgstr ""
+"ÙØ°Ø§ Ø§ÙØ·Ùب ÙØØªÙÙ Ù
Ø¯Ø®Ø§ÙØ§Øª Ø§ÙØªÙ ÙÙ
ÙØªÙ
ÙÙØªØ±ØªÙا. ÙÙ Ø£ÙØª Ù
ØªØ£ÙØ¯ Ø£ÙÙ ØªØ±ÙØ¯ Ø¥ØºÙØ§ÙÙ "
+"ÙØ¨Ù ÙÙØªØ±Ø© ÙØ§ÙØ© اÙÙ
Ø¯Ø®Ø§ÙØ§ØªØ"
#. Ok, we can close this. Ask for verification and set the closed date
#: ../src/business/business-gnome/dialog-order.c:308
@@ -1970,7 +2068,7 @@ msgstr "ØªØ§Ø±ÙØ® Ø§ÙØ¥ØºÙاÙ"
#: ../src/business/business-gnome/dialog-order.c:870
msgid "Is Closed?"
-msgstr ""
+msgstr "Ù
غÙÙØ"
#: ../src/business/business-gnome/dialog-order.c:874
msgid "Owner Name "
@@ -1992,35 +2090,46 @@ msgstr "Ø§ÙØ¹Ø«Ùر عÙÙ Ø§ÙØ·Ùب"
#: ../src/business/business-gnome/dialog-payment.c:203
msgid "You must enter a valid account name for posting."
-msgstr ""
+msgstr "ÙØ¬Ø¨ إدخا٠اسÙ
ØØ³Ø§Ø¨ ØµØ§ÙØ ÙØ¨Ù Ø§ÙØªØ±ØÙÙ."
#: ../src/business/business-gnome/dialog-payment.c:211
msgid "You must select a company for payment processing."
-msgstr ""
+msgstr "ÙØ¬Ø¨ عÙÙÙ Ø§Ø®ØªÙØ§Ø± Ø´Ø±ÙØ© ÙØ¹Ù
ÙÙØ§Øª Ø§ÙØ¯Ùع."
#: ../src/business/business-gnome/dialog-payment.c:232
msgid "You must select a transfer account from the account tree."
-msgstr ""
+msgstr "ÙØ¬Ø¨ ØªØØ¯Ùد ØØ³Ø§Ø¨ Ø§ÙØªØÙÙÙ Ù
٠شجرة Ø§ÙØØ³Ø§Ø¨Ø§Øª."
#: ../src/business/business-gnome/dialog-payment.c:426
msgid "Pre-Payment"
-msgstr ""
+msgstr "Ø¯ÙØ¹ Ù
سبÙ"
#: ../src/business/business-gnome/dialog-payment.c:715
-msgid "The transfer and post accounts are associated with different currencies. Please specify the conversion rate."
+msgid ""
+"The transfer and post accounts are associated with different currencies. "
+"Please specify the conversion rate."
msgstr ""
+"ترتبط ØØ³Ø§Ø¨Ø§Øª Ø§ÙØªØÙÙÙ Ù Ø§ÙØªØ±ØÙÙ Ù
ع عÙ
ÙØ§Øª Ù
ختÙÙØ©. ÙØ±Ø¬Ù ØªØØ¯Ùد سعر ØµØ±Ù Ø§ÙØ¹Ù
ÙØ§Øª."
#: ../src/business/business-gnome/dialog-payment.c:1108
#, 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?"
+msgid ""
+"You have no valid \"Post To\" accounts. Please create an account of type \"%s"
+"\" before you continue to process this payment. Perhaps you want to create "
+"an Invoice or Bill first?"
msgstr ""
+"ÙØ§ ÙÙØ¬Ø¯ ÙØ¯ÙÙ ØØ³Ø§Ø¨ ØµØ§ÙØ Ø§ÙØ±Ø¬Ø§Ø¡ Ø¥ÙØ´Ø§Ø¡ ØØ³Ø§Ø¨ Ù
Ù ÙÙØ¹%s ÙØ¨Ù اÙÙ
تابعة ÙÙ
Ø¹Ø§ÙØ¬Ø© ÙØ°Ø§ "
+"Ø§ÙØ¯Ùع. ربÙ
ا ÙÙØª ترغب ÙÙ Ø¥ÙØ´Ø§Ø¡ اÙÙØ§ØªÙرة أ٠اÙÙ
Ø·Ø§ÙØ¨Ø© Ø£ÙÙØ§Ø"
#: ../src/business/business-gnome/dialog-vendor.c:214
msgid ""
-"You must enter a company name. If this vendor is an individual (and not a company) you should enter the same value for:\n"
+"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 ""
+"ÙØ¬Ø¨ إدخا٠اسÙ
Ø§ÙØ´Ø±ÙØ©. إذا ÙØ§Ù ÙØ°Ø§ Ø§ÙØ¨Ø§Ø¦Ø¹ ÙÙ ÙØ±Ø¯ (ÙÙÙØ³ Ø´Ø±ÙØ©) ÙØ¬Ø¨ إدخا٠ÙÙØ³ "
+"اÙÙÙÙ
Ø© ÙÙØªØ¹Ø±ÙÙ - اسÙ
Ø§ÙØ´Ø±ÙØ©Ø Ù Ø¹ÙÙØ§Ù Ø§ÙØ¯Ùع-Ø§ÙØ§Ø³Ù
."
#: ../src/business/business-gnome/dialog-vendor.c:226
msgid "You must enter a payment address."
@@ -2076,11 +2185,11 @@ msgstr "_Ø§ÙØ¹Ù
ÙØ§Ø¡"
#: ../src/business/business-gnome/gnc-plugin-business.c:155
msgid "Customers Overview"
-msgstr ""
+msgstr " ÙØ¸Ø±Ø© عاÙ
Ø© عÙÙ Ø§ÙØ¹Ù
ÙØ§Ø¡"
#: ../src/business/business-gnome/gnc-plugin-business.c:156
msgid "Open a Customer overview page"
-msgstr ""
+msgstr "ÙØªØ ØµÙØØ© ÙØ¸Ø±Ø© عاÙ
ةعÙÙ Ø§ÙØ¹Ù
ÙØ§Ø¡"
#: ../src/business/business-gnome/gnc-plugin-business.c:160
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:161
@@ -2126,7 +2235,7 @@ msgstr "اÙÙØ¸ÙÙØ© Ø§ÙØ¬Ø¯Ùدة..."
#: ../src/business/business-gnome/gnc-plugin-business.c:181
#: ../src/business/business-gnome/gnc-plugin-business.c:224
msgid "Open the New Job dialog"
-msgstr ""
+msgstr "ÙØªØ Ù
ربع ØÙار ÙØ¸ÙÙØ© Ø¬Ø¯ÙØ¯Ø©"
#: ../src/business/business-gnome/gnc-plugin-business.c:185
#: ../src/business/business-gnome/gnc-plugin-business.c:228
@@ -2136,7 +2245,7 @@ msgstr "Ø§ÙØ¨ØØ« ع٠اÙÙØ¸ÙÙØ©..."
#: ../src/business/business-gnome/gnc-plugin-business.c:186
#: ../src/business/business-gnome/gnc-plugin-business.c:229
msgid "Open the Find Job dialog"
-msgstr ""
+msgstr "ÙØªØ Ù
ربع ØÙار Ø¨ØØ« Ø¹Ù ÙØ¸ÙÙØ©"
#: ../src/business/business-gnome/gnc-plugin-business.c:190
#: ../src/business/business-gnome/gnc-plugin-business.c:233
@@ -2152,11 +2261,11 @@ msgstr "ÙØªØ Ù
ربع Ø§ÙØÙØ§Ø± \"عÙ
ÙÙØ© Ø§ÙØ¯Ùع\""
#: ../src/business/business-gnome/gnc-plugin-business.c:197
msgid "Vendors Overview"
-msgstr ""
+msgstr "ÙØ¸Ø±Ø© عاÙ
Ø© ع٠اÙÙ
ÙØ±Ø¯ÙÙ"
#: ../src/business/business-gnome/gnc-plugin-business.c:198
msgid "Open a Vendor overview page"
-msgstr ""
+msgstr "ÙØªØ ØµÙØØ© ÙØ¸Ø±Ø© عاÙ
Ø© ع٠اÙÙ
ÙØ±Ø¯ÙÙ"
#: ../src/business/business-gnome/gnc-plugin-business.c:201
msgid "_Vendor"
@@ -2169,7 +2278,7 @@ msgstr "Ù
ÙØ±Ø¯ Ø¬Ø¯ÙØ¯ ..."
#: ../src/business/business-gnome/gnc-plugin-business.c:204
msgid "Open the New Vendor dialog"
-msgstr ""
+msgstr "ÙØªØ Ù
ربع ØÙار Ù
ÙØ±Ø¯ Ø¬Ø¯ÙØ¯"
#: ../src/business/business-gnome/gnc-plugin-business.c:208
msgid "_Find Vendor..."
@@ -2177,7 +2286,7 @@ msgstr "Ø§ÙØ¹Ø«Ùر عÙ٠اÙÙ
ÙØ±Ø¯..."
#: ../src/business/business-gnome/gnc-plugin-business.c:209
msgid "Open the Find Vendor dialog"
-msgstr ""
+msgstr "ÙØªØ Ù
ربع ØÙار Ø¨ØØ« ع٠Ù
ÙØ±Ø¯"
#: ../src/business/business-gnome/gnc-plugin-business.c:213
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:187
@@ -2186,23 +2295,23 @@ msgstr "ÙØ§ØªÙرة Ø¬Ø¯ÙØ¯Ø©..."
#: ../src/business/business-gnome/gnc-plugin-business.c:214
msgid "Open the New Bill dialog"
-msgstr ""
+msgstr "ÙØªØ Ù
ربع ØÙار Ù
Ø·Ø§ÙØ¨Ø© Ø¬Ø¯ÙØ¯Ø©"
#: ../src/business/business-gnome/gnc-plugin-business.c:218
msgid "Find Bi_ll..."
-msgstr ""
+msgstr "Ø¨ØØ« ع٠Ù
Ø·Ø§ÙØ¨Ø©"
#: ../src/business/business-gnome/gnc-plugin-business.c:219
msgid "Open the Find Bill dialog"
-msgstr ""
+msgstr "ÙØªØ Ù
ربع ØÙار Ø¨ØØ« ع٠Ù
Ø·Ø§ÙØ¨Ø©"
#: ../src/business/business-gnome/gnc-plugin-business.c:240
msgid "Employees Overview"
-msgstr ""
+msgstr "ÙØ¸Ø±Ø© عاÙ
Ø© ع٠Ù
ÙØ¸Ù"
#: ../src/business/business-gnome/gnc-plugin-business.c:241
msgid "Open a Employee overview page"
-msgstr ""
+msgstr "Ø£ÙØªØ ØµÙØØ© ÙØ¸Ø±Ø© عاÙ
Ø© ع٠Ù
ÙØ¸Ù"
#: ../src/business/business-gnome/gnc-plugin-business.c:244
msgid "_Employee"
@@ -2231,15 +2340,15 @@ msgstr "Ø¥ÙØµØ§Ù Ù
صرÙÙØ§Øª Ø¬Ø¯ÙØ¯..."
#: ../src/business/business-gnome/gnc-plugin-business.c:257
msgid "Open the New Expense Voucher dialog"
-msgstr ""
+msgstr "Ø£ÙØªØ ØµÙØØ© ÙØ¸Ø±Ø© عاÙ
Ø© ع٠Ù
ÙØ¸Ù"
#: ../src/business/business-gnome/gnc-plugin-business.c:261
msgid "Find Expense _Voucher..."
-msgstr ""
+msgstr "Ø§ÙØ¹Ø«Ùر عÙÙ Ø¥ÙØµØ§Ù اÙÙ
صارÙÙ"
#: ../src/business/business-gnome/gnc-plugin-business.c:262
msgid "Open the Find Expense Voucher dialog"
-msgstr ""
+msgstr "ÙØªØ ÙØ§Ùذة Ø¨ØØ« ÙØ³Ø§Ø¦Ù
اÙÙÙÙØ§Øª"
#: ../src/business/business-gnome/gnc-plugin-business.c:273
msgid "Sales _Tax Table"
@@ -2247,19 +2356,21 @@ msgstr "جدÙÙ Ø¶Ø±ÙØ¨Ø© اÙÙ
Ø¨ÙØ¹Ø§Øª"
#: ../src/business/business-gnome/gnc-plugin-business.c:274
msgid "View and edit the list of Sales Tax Tables (GST/VAT)"
-msgstr "عرض ÙØªØØ±Ùر ÙØ§Ø¦Ù
Ø© \"جداÙÙ Ø¶Ø±ÙØ¨Ø© اÙÙ
Ø¨ÙØ¹Ø§Øª\" (Ø¶Ø±ÙØ¨Ø© اÙÙ
Ø¨ÙØ¹Ø§Øª/Ø¶Ø±ÙØ¨Ø© اÙÙÙÙ
Ø© اÙÙ
Ø¶Ø§ÙØ©)"
+msgstr ""
+"عرض ÙØªØØ±Ùر ÙØ§Ø¦Ù
Ø© \"جداÙÙ Ø¶Ø±ÙØ¨Ø© اÙÙ
Ø¨ÙØ¹Ø§Øª\" (Ø¶Ø±ÙØ¨Ø© اÙÙ
Ø¨ÙØ¹Ø§Øª/Ø¶Ø±ÙØ¨Ø© اÙÙÙÙ
Ø© "
+"اÙÙ
Ø¶Ø§ÙØ©)"
#: ../src/business/business-gnome/gnc-plugin-business.c:278
msgid "_Billing Terms Editor"
-msgstr ""
+msgstr "_Ù
ØØ±Ø± Ø´Ø±ÙØ· Ø§ÙØ¯Ùع"
#: ../src/business/business-gnome/gnc-plugin-business.c:279
msgid "View and edit the list of Billing Terms"
-msgstr ""
+msgstr "عرض ÙØªØØ±Ùر ÙØ§Ø¦Ù
Ø© Ø´Ø±ÙØ· Ø§ÙØ¯Ùع"
#: ../src/business/business-gnome/gnc-plugin-business.c:283
msgid "Bills _Due Reminder"
-msgstr ""
+msgstr "Ø§ÙØªØ°ÙÙØ± بÙ
Ø·Ø§ÙØ¨Ø§Øª _ØÙت"
#: ../src/business/business-gnome/gnc-plugin-business.c:284
msgid "Open the Bills Due Reminder dialog"
@@ -2272,20 +2383,20 @@ msgstr "ØªØµØ¯ÙØ±"
#: ../src/business/business-gnome/gnc-plugin-business.c:292
#: ../src/business/business-gnome/gnc-plugin-business.c:293
msgid "Test Search Dialog"
-msgstr ""
+msgstr "Ø§ÙØ¨ØØ« Ø¹Ù ÙØµ"
#: ../src/business/business-gnome/gnc-plugin-business.c:297
#: ../src/business/business-gnome/gnc-plugin-business.c:298
msgid "Initialize Test Data"
-msgstr ""
+msgstr "تÙÙØ¦Ø© Ø¨ÙØ§Ùات Ø§ÙØ§Ø®ØªØ¨Ø§Ø± "
#: ../src/business/business-gnome/gnc-plugin-business.c:311
msgid "Assign as payment..."
-msgstr ""
+msgstr "تعÙÙÙ ÙÙ
دÙÙØ¹Ø§Øª ..."
#: ../src/business/business-gnome/gnc-plugin-business.c:312
msgid "Assign the selected transaction as payment"
-msgstr ""
+msgstr "تعÙÙÙ Ø§ÙØØ±ÙØ© اÙÙ
ØØ¯Ø¯Ø© ÙÙ
دÙÙØ¹Ø§Øª"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:98
msgid "Sort _Order"
@@ -2334,11 +2445,11 @@ msgstr "ØªØØ±Ùر ÙØ°Ù اÙÙØ§ØªÙرة"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:134
msgid "_Duplicate Invoice"
-msgstr ""
+msgstr "ÙØ§ØªÙرة _Ù
ÙØ±Ø±Ø©"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:135
msgid "Create a new invoice as a duplicate of the current one"
-msgstr ""
+msgstr "Ø¥ÙØ´Ø§Ø¡ ÙØ§ØªÙرة Ø¬Ø¯ÙØ¯Ø© Ù
ÙØ³Ùخة Ù
٠اÙÙØ§ÙÙØ±Ø© Ø§ÙØØ§ÙÙØ©"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:139
msgid "_Post Invoice"
@@ -2346,15 +2457,15 @@ msgstr "_ترØÙÙ ÙØ§ØªÙرة"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:140
msgid "Post this Invoice to your Chart of Accounts"
-msgstr ""
+msgstr "ترØÙÙ ÙØ°Ù اÙÙØ§ØªÙرة Ø¥Ù٠شجرة Ø§ÙØØ³Ø§Ø¨Ø§Øª"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:144
msgid "_Unpost Invoice"
-msgstr ""
+msgstr " _Ø¥ÙØº ترØÙÙ ÙØ°Ù اÙÙØ§ØªÙرة"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:145
msgid "Unpost this Invoice and make it editable"
-msgstr ""
+msgstr " رد ÙÙØ¯ ÙØ°Ù اÙÙØ§ØªÙرة ÙØ¬Ø¹ÙÙØ§ ÙØ§Ø¨ÙØ© ÙÙØªØØ±Ùر"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:151
msgid "_Enter"
@@ -2362,7 +2473,7 @@ msgstr "_أدخÙ"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:152
msgid "Record the current entry"
-msgstr ""
+msgstr "سج٠اÙÙ
عاÙ
ÙØ© Ø§ÙØØ§ÙÙØ©"
#. Add the Cancel button for the matcher
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:156
@@ -2373,7 +2484,7 @@ msgstr "_Ø¥ÙØºØ§Ø¡"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:157
msgid "Cancel the current entry"
-msgstr ""
+msgstr "Ø¥ÙØºØ§Ø¡ Ø§ÙØ¥Ø¯Ø®Ø§Ù Ø§ÙØØ§ÙÙ"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:161
#: ../src/gnome/gnc-plugin-page-sx-list.c:158
@@ -2387,15 +2498,15 @@ msgstr "ØØ°Ù Ø§ÙØ¥Ø¯Ø®Ø§Ù Ø§ÙØØ§ÙÙ"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:166
msgid "_Blank"
-msgstr ""
+msgstr "_ÙØ§Ø±Øº"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:167
msgid "Move to the blank entry at the bottom of the Invoice"
-msgstr ""
+msgstr "Ø§ÙØ§ÙØªÙØ§Ù Ø¥ÙÙ Ø§ÙØ§Ø¯Ø®Ø§Ù اÙÙØ§Ø±Øº ÙÙ Ø§ÙØ¬Ø²Ø¡ Ø§ÙØ³ÙÙÙ Ù
٠اÙÙØ§ØªÙرة"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:171
msgid "Dup_licate Entry"
-msgstr ""
+msgstr "_ØªÙØ±Ø§Ø± اÙÙ
Ø¯Ø®ÙØ§Øª"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:172
msgid "Make a copy of the current entry"
@@ -2403,19 +2514,19 @@ msgstr "ÙÙ
Ø¨Ø¥ÙØ´Ø§Ø¡ ÙØ³Ø®Ø© Ù
Ù Ø§ÙØ¥Ø¯Ø®Ø§Ù Ø§ÙØØ§ÙÙ"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:176
msgid "Move Entry _Up"
-msgstr ""
+msgstr "ÙÙÙ Ø§ÙØ¥Ø¯Ø®Ø§Ù ÙØ£Ø¹ÙÙ"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:177
msgid "Move the current entry one row upwards"
-msgstr ""
+msgstr "ÙÙÙ Ø§ÙØ¥Ø¯Ø®Ø§Ù Ø§ÙØØ§Ù٠سطرا ÙØ§ØØ¯Ø§ ÙØ£Ø¹ÙÙ"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:181
msgid "Move Entry Do_wn"
-msgstr ""
+msgstr "ÙÙÙ Ø§ÙØ¥Ø¯Ø®Ø§Ù ÙØ£Ø³ÙÙ"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:182
msgid "Move the current entry one row downwards"
-msgstr ""
+msgstr "ÙÙÙ Ø§ÙØ¥Ø¯Ø®Ø§Ù Ø§ÙØØ§Ù٠سطرا ÙØ§ØØ¯Ø§ ÙØ£Ø³ÙÙ"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:188
msgid "New _Invoice"
@@ -2423,7 +2534,7 @@ msgstr "_ ÙØ§ØªÙرة Ø¬Ø¯ÙØ¯Ø©"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:189
msgid "Create a new invoice for the same owner as the current one"
-msgstr ""
+msgstr "Ø¥ÙØ´Ø§Ø¡ ÙØ§ØªÙرة Ø¬Ø¯ÙØ¯Ø© ÙÙÙØ³ اÙÙ
اÙÙ Ø§ÙØØ§ÙÙ"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:193
msgid "_Pay Invoice"
@@ -2431,7 +2542,7 @@ msgstr "_ Ø¯ÙØ¹ اÙÙØ§ØªÙرة"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:194
msgid "Enter a payment for the owner of this Invoice"
-msgstr ""
+msgstr "أدخ٠Ù
Ø¯ÙØ¹Ùعات ÙØµØ§ØØ¨ ÙØ°Ù اÙÙØ§ØªÙرة"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:200
msgid "_Company Report"
@@ -2439,7 +2550,7 @@ msgstr "_ØªÙØ±Ùر Ø§ÙØ´Ø±ÙØ©"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:201
msgid "Open a company report window for the owner of this Invoice"
-msgstr ""
+msgstr "ÙØªØ ÙØ§Ùذة ØªÙØ±Ùر Ø´Ø±ÙØ© ÙÙ
اÙÙ ÙØ°Ù اÙÙØ§ØªÙرة"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:209
msgid "_Standard"
@@ -2447,7 +2558,7 @@ msgstr "_Ù
Ø¹ÙØ§Ø±"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:209
msgid "Keep normal invoice order"
-msgstr ""
+msgstr "Ø§ÙØÙØ§Ø¸ عÙÙ ØªØ±ØªÙØ¨ اÙÙØ§ØªÙرة"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:210
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:29
@@ -2490,7 +2601,7 @@ msgstr "ÙØ±Ø² ØØ³Ø¨ Ø§ÙØ³Ø¹Ø±"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:214
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:41
msgid "Descri_ption"
-msgstr ""
+msgstr "_ÙØµÙ"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:214
msgid "Sort by description"
@@ -2535,51 +2646,51 @@ msgstr "ÙØ§Ø±ØºØ©"
#: ../src/business/business-gnome/gnc-plugin-page-invoice.c:266
msgid "Unpost"
-msgstr ""
+msgstr "Ø¹ÙØ³ Ø§ÙØªØ±ØÙÙ"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:141
msgid "E_dit Vendor"
-msgstr ""
+msgstr "ØªØØ±Ùر اÙÙ
ÙØ±Ø¯"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:142
msgid "Edit the selected vendor"
-msgstr ""
+msgstr "ØªØØ±Ùر اÙÙ
ÙØ±Ø¯"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:146
msgid "E_dit Customer"
-msgstr ""
+msgstr "ØªØØ±Ùر Ø§ÙØ¹Ù
Ù٠اÙÙ
ØØ¯Ø¯"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:147
msgid "Edit the selected customer"
-msgstr ""
+msgstr "ØªØØ±Ùر Ø§ÙØ¹Ù
Ù٠اÙÙ
ØØ¯Ø¯"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:151
msgid "E_dit Employee"
-msgstr ""
+msgstr "ØªØØ±Ùر Ù
ÙØ¸Ù"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:152
msgid "Edit the selected employee"
-msgstr ""
+msgstr "ØªØØ±Ùر اÙÙ
ÙØ¸Ù اÙÙ
ØØ¯Ø¯"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:157
msgid "Create a new vendor"
-msgstr ""
+msgstr "Ø¥ÙØ´Ø§Ø¡ Ù
ÙØ±Ø¯ Ø¬Ø¯ÙØ¯"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:162
msgid "Create a new customer"
-msgstr ""
+msgstr "Ø¥ÙØ´Ø§Ø¡ عÙ
ÙÙ Ø¬Ø¯ÙØ¯"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:167
msgid "Create a new employee"
-msgstr ""
+msgstr "Ø¥ÙØ´Ø§Ø¡ Ù
ÙØ¸Ù Ø¬Ø¯ÙØ¯"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:173
msgid "_Delete Owner..."
-msgstr ""
+msgstr "ØØ°Ù Ù
اÙÙ"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:174
msgid "Delete selected owner"
-msgstr ""
+msgstr "ØØ°Ù اÙÙ
اÙ٠اÙÙ
ØØ¯Ø¯"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:181
#: ../src/gnome/gnc-plugin-page-account-tree.c:231
@@ -2592,39 +2703,39 @@ msgstr "_تصÙÙØ© Ø¨ÙØ§Ø³Ø·Ø©..."
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:188
msgid "Create a new bill"
-msgstr ""
+msgstr " Ø§ÙØ´Ø§Ø¡ Ù
Ø·Ø§ÙØ¨Ø© Ø¬Ø¯ÙØ¯Ø©"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:193
msgid "Create a new invoice"
-msgstr ""
+msgstr "Ø¥ÙØ´Ø§Ø¡ ÙØ§ØªÙرة Ø¬Ø¯ÙØ¯Ø©"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:197
msgid "New _Voucher..."
-msgstr ""
+msgstr "ÙØ³ÙÙ
Ø© Ø¬Ø¯ÙØ¯Ø©..."
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:198
msgid "Create a new voucher"
-msgstr ""
+msgstr " Ø§ÙØ´Ø§Ø¡ ÙØ³ÙÙ
Ø© Ø¬Ø¯ÙØ¯Ø©"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:202
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:277
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:897
msgid "Vendor Listing"
-msgstr ""
+msgstr "ÙØ§Ø¦Ù
Ø© اÙÙ
ÙØ±Ø¯ÙÙ"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:203
msgid "Show vendor aging overview for all vendors"
-msgstr ""
+msgstr "Ø¥Ø¸ÙØ§Ø± ÙØ§Ø¦Ù
Ø©Ø§ÙØªÙادÙ
ÙÙØ§ÙØ© اÙÙ
ÙØ±Ø¯ÙÙ"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:207
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:278
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:903
msgid "Customer Listing"
-msgstr ""
+msgstr "ÙØ§Ø¦Ù
Ø© Ø§ÙØ¹Ù
ÙØ§Ø¡"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:208
msgid "Show customer aging overview for all customers"
-msgstr ""
+msgstr "Ø¥Ø¸ÙØ§Ø± ÙØ§Ø¦Ù
Ø© Ø§ÙØªÙادÙ
ÙÙØ§ÙØ© Ø§ÙØ¹Ù
ÙØ§Ø¡"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:212
#: ../src/report/business-reports/job-report.scm:580
@@ -2634,7 +2745,7 @@ msgstr "ØªÙØ±Ùر اÙÙ
ÙØ±Ø¯"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:213
msgid "Show vendor report"
-msgstr ""
+msgstr "Ø¥Ø¸ÙØ§Ø± ØªÙØ±Ùر Ù
ÙØ±Ø¯"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:217
#: ../src/report/business-reports/job-report.scm:574
@@ -2644,7 +2755,7 @@ msgstr "ØªÙØ±Ùر Ø§ÙØ¹Ù
ÙØ§Ø¡"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:218
msgid "Show customer report"
-msgstr ""
+msgstr "Ø¥Ø¸ÙØ§Ø± ØªÙØ±Ùر Ø§ÙØ¹Ù
ÙØ§Ø¡"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:222
#: ../src/report/business-reports/job-report.scm:583
@@ -2654,7 +2765,7 @@ msgstr "ØªÙØ±Ùر اÙÙ
ÙØ¸Ù"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:223
msgid "Show employee report"
-msgstr ""
+msgstr "Ø¥Ø¸ÙØ§Ø± ØªÙØ±Ùر اÙÙ
ÙØ¸Ù"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:268
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:269
@@ -2673,27 +2784,27 @@ msgstr "Ø¬Ø¯ÙØ¯"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:276
msgid "New Voucher"
-msgstr ""
+msgstr "ÙØ³ÙÙ
Ø© Ø¬Ø¯ÙØ¯Ø©"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:433
msgid "Owners"
-msgstr ""
+msgstr "اÙÙ
ÙØ§Ù"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:608
msgid "Customers"
-msgstr ""
+msgstr "Ø§ÙØ¹Ù
ÙØ§Ø¡"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:612
msgid "Jobs"
-msgstr ""
+msgstr "اÙÙØ¸Ø§Ø¦Ù"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:616
msgid "Vendors"
-msgstr ""
+msgstr "اÙÙ
ÙØ±Ø¯ÙÙ"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:620
msgid "Employees"
-msgstr ""
+msgstr "اÙÙ
ÙØ¸ÙÙÙ"
#: ../src/business/business-gnome/gnc-plugin-page-owner-tree.c:1059
#: ../src/gnome/gnc-plugin-page-account-tree.c:1175
@@ -2705,7 +2816,7 @@ msgstr "(ÙØ§ إسÙ
)"
msgid ""
"The owner %s will be deleted.\n"
"Are you sure you want to do this?"
-msgstr ""
+msgstr "Ø³ÙØªÙ
ØØ°Ù اÙÙ
اÙÙ%s ÙÙ Ø£ÙØª Ù
ØªØ£ÙØ¯ Ø£ÙÙ ØªØ±ÙØ¯ Ø£Ù ØªÙØ¹Ù ÙØ°Ø§Ø"
#. * @}
#. * @}
@@ -2722,7 +2833,7 @@ msgstr ""
#: ../src/import-export/gschemas/org.gnucash.dialogs.import.generic.gschema.xml.in.in.h:17
#: ../src/import-export/qif-imp/gschemas/org.gnucash.dialogs.import.qif.gschema.xml.in.in.h:4
msgid "Last window position and size"
-msgstr ""
+msgstr " Ù
ÙØ¶Ø¹ Ø§ÙØ¥Ø·Ø§Ø± ÙØ§ÙØØ¬Ù
Ø§ÙØ³Ø§Ø¨Ù"
#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:2
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:42
@@ -2736,89 +2847,144 @@ msgstr ""
#: ../src/import-export/csv-imp/gschemas/org.gnucash.dialogs.import.csv.gschema.xml.in.in.h:2
#: ../src/import-export/gschemas/org.gnucash.dialogs.import.generic.gschema.xml.in.in.h:18
#: ../src/import-export/qif-imp/gschemas/org.gnucash.dialogs.import.qif.gschema.xml.in.in.h:5
-msgid "This setting describes the size and position of the window when it was last closed. The numbers are the X and Y coordinates of the top left corner of the window followed by the width and height of the window."
+msgid ""
+"This setting describes the size and position of the window when it was last "
+"closed. The numbers are the X and Y coordinates of the top left corner of "
+"the window followed by the width and height of the window."
msgstr ""
+"ÙÙØµÙ ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ØØ¬Ù
ÙÙ
ÙØ¶Ø¹ Ø§ÙØ¥Ø·Ø§Ø± Ø¹ÙØ¯ آخر Ù
رة تÙ
Ø¥ØºÙØ§ÙÙ. Ø§ÙØ£Ø±ÙاÙ
ÙÙ Ø¥ØØ¯Ø§Ø«Ùات "
+"س ÙØµ ÙÙØ²Ø§ÙÙØ© اÙÙØ³Ø±Ù Ø§ÙØ¹ÙÙØ§ Ù
Ù Ø§ÙØ¥Ø·Ø§Ø± Ù
ØªØ¨ÙØ¹Ø§Ù بعرض ÙØ§Ø±ØªÙاع Ø§ÙØ¥Ø·Ø§Ø±."
#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:3
#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:4
msgid "Search only in active items"
-msgstr ""
+msgstr "Ø§ÙØ¨ØØ« ÙÙ Ø§ÙØ¹Ùاصر اÙÙØ´Ø·Ø© ÙÙØ·"
#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:4
-msgid "If active, only the 'active' items in the current class will be searched. Otherwise all items in the current class will be searched."
+msgid ""
+"If active, only the 'active' items in the current class will be searched. "
+"Otherwise all items in the current class will be searched."
msgstr ""
+"ÙÙ ØØ§ÙØ© اÙÙØ´Ø·Ø©Ø Ø³ÙØªÙ
Ø§ÙØ¨ØØ« ÙÙ Ø§ÙØ¹Ùاصر 'اÙÙØ´Ø·Ø©' ÙÙØ· Ù٠اÙÙØ¦Ø© Ø§ÙØØ§ÙÙØ©. ÙØ¥Ùا "
+"Ø³ÙØªÙ
Ø§ÙØ¨ØØ« ÙÙ ÙØ§ÙØ© Ø§ÙØ¹Ùاصر Ù٠اÙÙØ¦Ø© Ø§ÙØØ§ÙÙØ©."
#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:5
msgid "Is tax included in this type of business entry?"
-msgstr ""
+msgstr "ÙÙ Ø§ÙØ¶Ø±Ø§Ø¦Ø¨ Ù
درجة ÙÙ ÙØ°Ø§ اÙÙÙØ¹ Ù
Ù Ø§ÙØ£Ø¹Ù
Ø§ÙØ"
#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:6
-msgid "If set to active then tax is included by default in entries of this type. This setting is inherited by new customers and vendors."
+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 ""
+"ÙÙ ØØ§ÙØ© تعÙÙ٠إÙÙ ÙØ´Ø·Ø© Ø«Ù
ÙØªÙ
تضÙ
ÙÙ Ø¶Ø±ÙØ¨Ø© بشÙ٠اساس٠ÙÙ Ø¥Ø¯Ø®Ø§ÙØ§Øª Ù
Ù ÙØ°Ø§ "
+"اÙÙÙØ¹. ÙØªÙ
تطبÙÙ ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙÙØ¹Ù
ÙØ§Ø¡ ÙØ§ÙÙ
ÙØ±Ø¯ÙÙ Ø§ÙØ¬Ø¯Ø¯ ."
#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:7
msgid "Auto pay when posting."
-msgstr ""
+msgstr "Ø§ÙØ¯Ùع Ø§ÙØªÙÙØ§Ø¦Ù Ø¹ÙØ¯ Ø§ÙØªØ±ØÙÙ."
#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:8
#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:27
-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."
+msgid ""
+"At post time, automatically attempt to pay customer documents with "
+"outstanding pre-payments and counter documents. The pre-payments and "
+"documents obviously have to be against the same customer. Counter documents "
+"are documents with opposite sign. For example for an invoice, customer "
+"credit notes and negative invoices are considered counter documents."
msgstr ""
+"ÙÙ ÙÙØª Ø§ÙØªØ±ØÙÙ,تÙÙØ§Ø¦Ùا Ù
ØØ§ÙÙØ© Ø§ÙØ¯Ùع ÙÙ٠عÙ
ÙÙ ÙÙ Ù
دÙÙØ¹Ø§Øª Ù
Ø³Ø¨ÙØ© Ù
عÙÙØ©Ù ÙØ«Ø§Ø¦Ù "
+"Ù
ÙØ§Ø¨ÙØ©. اÙÙ
دÙÙØ¹Ø§Øª اÙÙ
Ø³Ø¨ÙØ© ÙØ§ÙÙØ«Ø§Ø¦Ù ÙØ¬Ø¨ أ٠تÙÙÙ ÙÙÙØ³ Ø§ÙØ¹Ù
ÙÙ. اÙÙØ«Ø§Ø¦Ù اÙÙ
ÙØ§Ø¨ÙØ© "
+"ÙØ«Ø§Ø¦Ù Ù
ع Ø¹ÙØ§Ù
Ø© Ø¹ÙØ³ÙØ©. عÙ٠سبÙ٠اÙÙ
ثا٠اÙÙØ§ØªÙØ±Ø©Ø ÙØ§Ø´Ø¹Ø§Ø± Ø§ÙØ§Ø¦ØªÙ
ا٠ÙÙØ¹Ù
ÙØ§Ø¡ "
+"ÙØ§ÙÙÙØ§ØªÙر Ø§ÙØ³ÙØ¨ÙØ© ÙØ«Ø§Ø¦Ù Ù
ÙØ§Ø¨ÙØ©."
#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:9
msgid "Enable extra toolbar buttons for business"
-msgstr ""
+msgstr "تÙ
ÙÙ٠أزرار Ø´Ø±ÙØ· Ø§ÙØ£Ø¯Ùات Ø§ÙØ¥Ø¶Ø§ÙÙØ© ÙÙØ£Ø¹Ù
Ø§Ù Ø§ÙØªØ¬Ø§Ø±ÙØ©"
#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:10
#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:22
-msgid "If active, extra toolbar buttons for common business functions are shown as well. Otherwise they are not shown."
-msgstr ""
+msgid ""
+"If active, extra toolbar buttons for common business functions are shown as "
+"well. Otherwise they are not shown."
+msgstr "إذا ÙØ´Ø·Ø ÙØªÙ
عرض أزرار Ø´Ø±ÙØ· Ø§ÙØ£Ø¯Ùات Ø§ÙØ¥Ø¶Ø§ÙÙØ© ÙÙØ¸Ø§Ø¦Ù Ø§ÙØ£Ø¹Ù
ا٠اÙÙ
Ø´ØªØ±ÙØ©."
#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:11
#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:23
msgid "The invoice report to be used for printing."
-msgstr ""
+msgstr "ØªÙØ±Ùر اÙÙØ§ØªÙرة اÙÙ
ستخدÙ
ÙÙØ·Ø¨Ø§Ø¹Ø©."
#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:12
msgid "The name of the report to be used for invoice printing."
-msgstr ""
+msgstr "اسÙ
Ø§ÙØªÙØ±ÙØ± اÙÙ
ستخدÙ
ÙØ·Ø¨Ø§Ø¹Ø© اÙÙØ§ØªÙرة."
#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:13
msgid "Open new invoice in new window"
-msgstr ""
+msgstr "ÙØªØ اÙÙØ§ØªÙØ±Ø©Ø§ÙØ¬Ø¯Ùدة ÙÙ ÙØ§Ùذة Ø¬Ø¯ÙØ¯Ø©"
#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:14
-msgid "If active, each new invoice will be opened in a new window. Otherwise a new invoice will be opened as a tab in the main window."
+msgid ""
+"If active, each new invoice will be opened in a new window. Otherwise a new "
+"invoice will be opened as a tab in the main window."
msgstr ""
+"ÙÙ ØØ§ÙØ© ÙØ´Ø·Ø©Ø Ø³ÙØªÙ
ÙØªØ ÙÙ ÙØ§ØªÙرة Ø¬Ø¯ÙØ¯Ø© ÙÙ ÙØ§Ùذة Ø¬Ø¯ÙØ¯Ø©. ÙØ¥Ùا Ø³ÙØªÙ
ÙØªØ ÙØ§ØªÙرة "
+"Ø¬Ø¯ÙØ¯Ø© ÙØ¹ÙاÙ
Ø© تبÙÙØ¨ Ù٠اÙÙØ§Ùذة Ø§ÙØ±Ø¦ÙØ³ÙØ©."
#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:15
msgid "Accumulate multiple splits into one"
-msgstr ""
+msgstr "تراÙÙ
Ø§ÙØ´ÙØ§ÙØ§Øª Ù
تعددة ÙÙ ÙØ§ØØ¯"
#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:16
-msgid "If this field is active then multiple entries in an invoice that transfer to the same account will be accumulated into a single split. This field can be overridden per invoice in the Posting dialog."
+msgid ""
+"If this field is active then multiple entries in an invoice that transfer to "
+"the same account will be accumulated into a single split. This field can be "
+"overridden per invoice in the Posting dialog."
msgstr ""
+"إذا ÙØ§Ù ÙØ°Ø§ Ø§ÙØÙ٠اÙÙØ´Ø· Ø«Ù
سÙ٠تتراÙÙ
Ø§ÙØ¥Ø¯Ø®Ø§Ùات اÙÙ
تعددة Ù٠اÙÙØ§ØªÙرة Ø§ÙØªÙ "
+"ÙÙ٠إÙÙ ÙÙØ³ Ø§ÙØØ³Ø§Ø¨ Ù٠اÙÙØ³Ø§Ù
ÙØ§ØØ¯. ÙÙ
ÙÙ ØªØ¬Ø§ÙØ² ÙØ°Ø§ Ø§ÙØÙ٠عÙÙ Ù
ستÙ٠اÙÙØ§ØªÙرة "
+"ÙÙ Ù
ربع ØÙار Ø§ÙØªØ±ØÙÙ."
#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:17
#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:30
-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."
+msgid ""
+"At post time, automatically attempt to pay vendor documents with outstanding "
+"pre-payments and counter documents. The pre-payments and documents obviously "
+"have to be against the same vendor. Counter documents are documents with "
+"opposite sign. For example for a bill, vendor credit notes and negative "
+"bills are considered counter documents."
msgstr ""
+"ÙÙ ÙÙØª Ø§ÙØªØ±ØÙÙØ Ù Ù
ØØ§ÙÙØ© Ø§ÙØ¯Ùع تÙÙØ§Ø¦Ùا ÙÙÙ
ÙØ±Ø¯ Ø§ÙØØ§Ø¦Ø² عÙÙ Ù
دÙÙØ¹Ø§Øª Ø³Ø§Ø¨ÙØ© Ø§ÙØ¯Ùع "
+"Ù
ستØÙØ© ÙÙØ«Ø§Ø¦Ù Ù
ÙØ§Ø¨ÙØ©. Ø§ÙØ¯Ùع اÙÙ
Ø³Ø¨Ù ÙØ§ÙÙØ«Ø§Ø¦Ù ÙØ¬Ø¨ أ٠تÙÙÙ ÙÙÙØ³ اÙÙ
ÙØ±Ø¯. "
+"اÙÙØ«Ø§Ø¦Ù اÙÙ
ÙØ§Ø¨ÙØ© ÙÙ ÙØ«Ø§Ø¦Ù Ù
ع Ø¹ÙØ§Ù
Ø© Ù
ÙØ§Ø¨ÙØ©. ÙØ¹Ù٠سبÙ٠اÙÙ
Ø«Ø§Ù ÙØ³Ùد Ø§ÙØ¥Ø´Ø¹Ø§Ø±Ø§Øª "
+"Ø§ÙØ¯Ø§Ø¦ÙØ© ÙÙÙ
ÙØ±Ø¯ÙÙ ÙØ§ÙÙ
Ø·Ø§ÙØ¨Ø§Øª Ø§ÙØ³ÙØ¨ÙØ© تعتبر ÙØ«Ø§Ø¦Ù Ù
ÙØ§Ø¨ÙØ©."
#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:18
msgid "Show bills due reminder at startup"
-msgstr ""
+msgstr "Ø¥Ø¸ÙØ§Ø± ØªÙØ¨Ù٠باÙÙ
Ø·Ø§ÙØ¨Ø§Øª اÙÙ
ستØÙ Ø³Ø¯Ø§Ø¯ÙØ§ Ø¹ÙØ¯ بدء Ø§ÙØªØ´ØºÙÙ"
#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:19
-msgid "If active, at startup GnuCash will check to see whether any bills will become due soon. If so, it will present the user with a reminder dialog. The definition of \"soon\" is controlled by the \"Days in Advance\" setting. Otherwise GnuCash does not check for due bills."
+msgid ""
+"If active, at startup GnuCash will check to see whether any bills will "
+"become due soon. If so, it will present the user with a reminder dialog. The "
+"definition of \"soon\" is controlled by the \"Days in Advance\" setting. "
+"Otherwise GnuCash does not check for due bills."
msgstr ""
+"إذا ÙØ´Ø·ØªØ Ø¹ÙØ¯ بدء Ø§ÙØªØ´ØºÙ٠غÙÙÙØ§Ø´ سÙÙ ÙØÙÙ ÙÙ
Ø¹Ø±ÙØ© Ù
ا إذا ÙØ§Ù Ø£Ù Ù
Ø·Ø§ÙØ¨Ø§Øª ستØÙ "
+"ÙØ±Ùبا. إذا ÙØ§Ù Ø§ÙØ£Ù
ر ÙØ°ÙÙØ ÙØ¥ÙÙ Ø³ÙØªÙ
عرض ØÙار تذÙÙØ± ÙÙÙ
ستخدÙ
. ÙØªÙ
Ø§ÙØªØÙÙ
ÙÙ "
+"تعرÙ٠اÙÙØ±Ø¨ Ù
Ù Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯Øª.عدا ذÙÙ ÙØ§ ÙØªÙ
Ø§ÙØªØÙÙ Ù
٠اÙÙÙØ§ØªÙر اÙÙ
ستØÙØ©."
#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:20
msgid "Show bills due within this many days"
-msgstr ""
+msgstr "Ø¥Ø¸ÙØ§Ø± اÙÙÙØ§ØªÙر اÙÙ
ستØÙØ© ÙÙ Ø®ÙØ§Ù ÙØ°Ø§ Ø§ÙØ¹Ø¯Ø¯ Ù
Ù Ø§ÙØ£ÙاÙ
"
#: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:21
-msgid "This field defines the number of days in advance that GnuCash will check for due bills. Its value is only used if the \"Notify when due\" setting is active."
+msgid ""
+"This field defines the number of days in advance that GnuCash will check for "
+"due bills. Its value is only used if the \"Notify when due\" setting is "
+"active."
msgstr ""
+"ÙØØ¯Ø¯ ÙØ°Ø§ Ø§ÙØÙ٠عدد Ø§ÙØ£ÙاÙ
Ù
ÙØ¯Ù
ا Ø§ÙØªÙ سÙÙ ÙØ¯Ù٠جÙÙÙØ§Ø´ ÙÙÙ
Ø·Ø§ÙØ¨Ø§Øª اÙÙ
ستØÙØ©. "
+"ÙØ³ØªØ®Ø¯Ù
ÙÙØ§ ÙÙÙ
Ø© ÙÙØ· إذا ÙØ§Ù إعداد \"Ø¥Ø¹ÙØ§Ù
Ø¹ÙØ¯ استØÙاÙÙØ§\" ÙØ´Ø·."
#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:1
#: ../src/report/business-reports/invoice.scm:826
@@ -2839,13 +3005,13 @@ msgstr "Ø¶Ø±ÙØ¨Ø© ÙØ§ØªÙرة"
#: ../src/report/business-reports/easy-invoice.scm:888
#: ../src/report/report-gnome/gnc-plugin-page-report.c:1692
msgid "Easy Invoice"
-msgstr ""
+msgstr "ÙØ§ØªÙرة سÙÙØ©"
#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:4
#: ../src/report/business-reports/fancy-invoice.scm:1013
#: ../src/report/report-gnome/gnc-plugin-page-report.c:1693
msgid "Fancy Invoice"
-msgstr ""
+msgstr "ÙØ§ØªÙرة Ù
Ø²Ø®Ø±ÙØ©"
#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:5
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:3
@@ -2863,16 +3029,20 @@ msgid "Ta_x included"
msgstr "ÙØªØ´Ù
Ù Ø§ÙØ¶Ø±Ø§Ø¦Ø¨"
#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:8
-msgid "Whether tax is included by default in entries on Bills. This setting is inherited by new customers and vendors."
+msgid ""
+"Whether tax is included by default in entries on Bills. This setting is "
+"inherited by new customers and vendors."
msgstr ""
+"Ù
ا إذا ÙØ§Ù ÙØªÙ
تضÙ
ÙÙ Ø§ÙØ¶Ø±Ùبة بشÙ٠أساس٠ÙÙ Ø¥Ø¯Ø®Ø§ÙØ§Øª اÙÙ
Ø·Ø§ÙØ¨Ø§Øª. ÙØªÙ
تطبÙÙ ÙØ°Ø§ "
+"Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙÙØ¹Ù
ÙØ§Ø¡ ÙØ§ÙÙ
ÙØ±Ø¯ÙÙ Ø§ÙØ¬Ø¯Ø¯."
#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:9
msgid "How many days in the future to warn about Bills coming due."
-msgstr ""
+msgstr "ÙÙ
عدد Ø§ÙØ£ÙاÙ
Ù٠اÙÙ
Ø³ØªÙØ¨Ù ÙÙØªÙبÙ٠عÙ٠اÙÙ
Ø·Ø§ÙØ¨Ø§Øª اÙÙØ§Ø¯Ù
Ø© اÙÙ
ستØÙØ©."
#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:10
msgid "_Days in advance:"
-msgstr ""
+msgstr "ÙØ¨ÙÙØ§ بعدد Ø£ÙØ§Ù
:"
#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:11
msgid "_Notify when due"
@@ -2880,35 +3050,48 @@ msgstr "_Ø¥Ø¹ÙØ§Ù
Ø¹ÙØ¯ استØÙاÙÙØ§"
#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:12
msgid "Whether to display the list of Bills Due at startup."
-msgstr ""
+msgstr "Ù
ا إذا ÙÙØª ØªØ±ÙØ¯ عرض ÙØ§Ø¦Ù
Ø© اÙÙ
Ø·Ø§ÙØ¨Ø§Øª اÙÙ
ستØÙØ© Ø¹ÙØ¯ بدء Ø§ÙØªØ´ØºÙÙ."
#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:13
msgid "<b>Bills</b>"
-msgstr ""
+msgstr "<b>اÙÙ
Ø·Ø§ÙØ¨Ø§Øª</b>"
#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:14
msgid "_Tax included"
msgstr "_تشÙ
Ù Ø§ÙØ¶Ø±Ø§Ø¦Ø¨"
#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:15
-msgid "Whether tax is included by default in entries on Invoices. This setting is inherited by new customers and vendors."
+msgid ""
+"Whether tax is included by default in entries on Invoices. This setting is "
+"inherited by new customers and vendors."
msgstr ""
+"Ù
ا إذا ÙØ§Ù ÙØªÙ
تضÙ
ÙÙ Ø§ÙØ¶Ø±Ùبة بشÙ٠أساس٠ÙÙ Ø¥Ø¯Ø®Ø§ÙØ§Øª اÙÙÙØ§ØªÙر. ÙØªÙ
تطبÙÙ ÙØ°Ø§ "
+"Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙÙØ¹Ù
ÙØ§Ø¡ ÙØ§ÙÙ
ÙØ±Ø¯ÙÙ Ø§ÙØ¬Ø¯Ø¯."
#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:16
msgid "_Accumulate splits on post"
-msgstr ""
+msgstr "تراÙÙ
Ø§ÙØ§ÙØ´ÙØ§Ùات ÙÙ Ø§ÙØªØ±ØÙÙØ"
#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:17
-msgid "Whether multiple entries in an invoice which transfer to the same account should be accumulated into a single split by default. This setting can be changed in the Post dialog."
+msgid ""
+"Whether multiple entries in an invoice which transfer to the same account "
+"should be accumulated into a single split by default. This setting can be "
+"changed in the Post dialog."
msgstr ""
+"Ù
ا إذا ÙØ§Ù ÙÙØ¨ØºÙ تراÙÙ
Ø¥Ø¯Ø®Ø§ÙØ§Øª Ù
تعددة ÙÙ ÙØ§ØªÙرة تÙÙ٠إÙÙ ÙÙØ³ Ø§ÙØØ³Ø§Ø¨ Ø¥ÙÙ "
+"اÙÙØ³Ø§Ù
ÙØ§ØØ¯ بشÙ٠تÙÙØ§Ø¦Ù. ÙÙ
Ù٠تغÙÙØ± ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙÙ Ù
ربع ØÙار Ø§ÙØªØ±ØÙÙ."
#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:18
msgid "_Open in new window"
msgstr "_ÙØªØ ÙÙ ÙØ§Ùذة Ø¬Ø¯ÙØ¯Ø©"
#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:19
-msgid "If checked, each invoice will be opened in its own top level window. If clear, the invoice will be opened in the current window."
+msgid ""
+"If checked, each invoice will be opened in its own top level window. If "
+"clear, the invoice will be opened in the current window."
msgstr ""
+"إذا Ø£Ø®ØªÙØ±Ø Ø³ÙØªÙ
ÙØªØ ÙÙ ÙØ§ØªÙرة ÙÙ ÙØ§Ùذة اÙÙ
ستÙÙ Ø§ÙØ£Ø¹ÙÙ Ø§ÙØ®Ø§ØµØ© Ø¨ÙØ§. ÙØ¥ÙØ§Ø Ø³ÙØªÙ
"
+"ÙØªØ اÙÙØ§ØªÙرة ÙÙ Ø§ÙØ¥Ø·Ø§Ø± Ø§ÙØØ§ÙÙ."
#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:20
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:59
@@ -2921,19 +3104,19 @@ msgstr "تÙ
ÙÙÙ Ø§ÙØ£Ø²Ø±Ø§Ø± _Ø§ÙØ¥Ø¶Ø§ÙÙØ©"
#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:24
msgid "Report for printing:"
-msgstr ""
+msgstr "ØªÙØ±Ùر ÙÙØ·Ø¨Ø§Ø¹Ø©:"
#. See the tooltip "At post time..." for details.
#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:26
#, fuzzy
msgid "_Process payments on posting"
-msgstr "عÙ
ÙÙØ© Ø§ÙØ¯Ùع"
+msgstr "Ø§ÙØ¯Ùع Ø§ÙØªÙÙØ§Ø¦Ù Ø¹ÙØ¯ Ø§ÙØªØ±ØÙÙ."
#. See the tooltip "At post time..." for details.
#: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:29
#, fuzzy
msgid "Pro_cess payments on posting"
-msgstr "عÙ
ÙÙØ© Ø§ÙØ¯Ùع"
+msgstr "Ø§ÙØ¯Ùع Ø§ÙØªÙÙØ§Ø¦Ù Ø¹ÙØ¯ Ø§ÙØªØ±ØÙÙ."
#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:1
msgid "Cancel your changes"
@@ -2941,7 +3124,7 @@ msgstr "Ø¥ÙØºØ§Ø¡ Ø§ÙØªØºÙÙØ±Ø§Øª"
#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:2
msgid "Commit this Billing Term"
-msgstr ""
+msgstr "Ø£ÙØ¯ شرط Ø§ÙØ¯Ùع"
#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:3
msgid "<b>Term Definition</b>"
@@ -2949,11 +3132,11 @@ msgstr "<b>تعرÙÙ Ø§ÙØ´Ø±Ø·</b>"
#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:4
msgid "De_scription:"
-msgstr ""
+msgstr "اÙÙØµÙ"
#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:5
msgid "The description of the Billing Term, printed on invoices"
-msgstr ""
+msgstr "ÙØµÙ Ø´Ø±ÙØ· Ø§ÙØ¯ÙØ¹Ø Ù
Ø·Ø¨ÙØ¹Ø§ عÙ٠اÙÙÙØ§ØªÙر"
#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:6
#: ../src/gnome/gtkbuilder/dialog-price.glade.h:12
@@ -2963,11 +3146,11 @@ msgstr "_ÙÙØ¹:"
#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:7
msgid "The internal name of the Billing Term."
-msgstr ""
+msgstr "اÙÙØµÙ Ø§ÙØ¯Ø§Ø®ÙÙ ÙØ´Ø±ÙØ· Ø§ÙØ¯Ùع"
#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:8
msgid "<b>New Billing Term</b>"
-msgstr ""
+msgstr "<b>شرط Ø¯ÙØ¹ Ø¬Ø¯ÙØ¯</b>"
#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:9
#: ../src/report/report-gnome/dialog-report.glade.h:17
@@ -2989,15 +3172,17 @@ msgstr "خصÙ
%:"
#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:14
msgid "The number of days to pay the bill after the post date."
-msgstr ""
+msgstr "عدد Ø§ÙØ£ÙاÙ
ÙØ¯Ùع اÙÙ
طاÙÙØ© بعد ØªØ§Ø±ÙØ® Ø§ÙØªØ±ØÙÙ."
#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:15
-msgid "The number of days after the post date during which a discount will be applied for early payment."
-msgstr ""
+msgid ""
+"The number of days after the post date during which a discount will be "
+"applied for early payment."
+msgstr "عدد Ø§ÙØ£ÙاÙ
بعد ØªØ§Ø±ÙØ® Ø§ÙØªØ±ØÙÙ ÙØªÙ
Ø®ÙØ§ÙÙØ§ تطبÙ٠خصÙ
ÙÙØ¯Ùع ÙÙ ÙÙØª Ù
Ø¨ÙØ±."
#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:16
msgid "The percentage discount applied for early payment."
-msgstr ""
+msgstr " ÙØ³Ø¨Ø© Ø§ÙØ®ØµÙ
ÙÙØ¯Ùع ÙÙ ÙÙØª Ù
Ø¨ÙØ±."
#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:18
msgid "Due Day: "
@@ -3013,19 +3198,24 @@ msgstr "ÙÙÙ
Ø§ÙØ§ÙÙØ·Ø§Ø¹:"
#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:21
msgid "The day of the month bills are due"
-msgstr ""
+msgstr "اÙÙ
Ø·Ø§ÙØ¨Ø§Øª تستØÙ Ù٠أ٠ÙÙÙ
Ù
Ù Ø§ÙØ´Ùر"
#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:22
msgid "The last day of the month for the early payment discount."
-msgstr ""
+msgstr "اخر ÙÙÙ
Ù
Ù Ø§ÙØ´Ùر ÙØ®ØµÙ
Ø§ÙØ³Ø¯Ø§Ø¯ اÙÙ
Ø¨ÙØ±."
#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:23
msgid "The discount percentage applied if paid early."
-msgstr ""
+msgstr "ÙØ³Ø¨Ø© Ø§ÙØ®ØµÙ
اÙÙ
Ø·Ø¨ÙØ© إذا ÙØ§Ùت تÙ
Ø§ÙØ³Ø¯Ø§Ø¯ ÙÙ ÙÙØª Ù
Ø¨ÙØ±."
#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:24
-msgid "The cutoff day for applying bills to the next month. After the cutoff, bills are applied to the following month. Negative values count backwards from the end of the month."
+msgid ""
+"The cutoff day for applying bills to the next month. After the cutoff, bills "
+"are applied to the following month. Negative values count backwards from the "
+"end of the month."
msgstr ""
+"ÙÙÙ
Ø§ÙØ§ÙØªÙØ§Ø¡ Ù
Ù Ù
Ø·Ø§ÙØ¨Ø§Øª Ø§ÙØ´Ùر اÙÙ
ÙØ¨Ù. Ø¨Ø¹Ø¯ÙØ§ ÙØªØ·Ø¨Ù اÙÙ
Ø·Ø§ÙØ¨Ø§Øª ÙÙØ´Ùر Ø§ÙØªØ§ÙÙ "
+"Ø§ÙØ´Ùر Ø§ÙØªØ§ÙÙ. اÙÙÙÙ
Ø§ÙØ³ÙØ¨ÙØ© تعد اÙ٠اÙÙØ±Ø§Ø¡ Ù
Ù ÙÙØ§ÙØ© Ø§ÙØ´Ùر."
#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:26
msgid "Table"
@@ -3049,19 +3239,19 @@ msgstr "<b>Ø´Ø±ÙØ·</b>"
#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:30
msgid "Delete the current Billing Term"
-msgstr ""
+msgstr "ØØ°Ù شرط Ø§ÙØ¯Ùع Ø§ÙØØ§ÙÙ"
#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:31
msgid "Create a new Billing Term"
-msgstr ""
+msgstr "شرط Ø¯ÙØ¹ Ø¬Ø¯ÙØ¯"
#: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:32
msgid "Edit the current Billing Term"
-msgstr ""
+msgstr "ØªØØ±Ùر شرط Ø§ÙØ¯Ùع Ø§ÙØØ§ÙÙ"
#: ../src/business/business-gnome/gtkbuilder/dialog-choose-owner.glade.h:1
msgid "Choose Owner Dialog"
-msgstr ""
+msgstr "Ù
ربع ØÙار Ø§Ø®ØªÙØ§Ø± اÙÙ
اÙÙ"
#: ../src/business/business-gnome/gtkbuilder/dialog-choose-owner.glade.h:2
#: ../src/business/business-gnome/gtkbuilder/dialog-date-close.glade.h:5
@@ -3126,14 +3316,16 @@ msgid "Active"
msgstr "ÙØ´Ø·"
#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:5
-msgid "The customer ID number. If left blank a reasonable number will be chosen for you"
-msgstr ""
+msgid ""
+"The customer ID number. If left blank a reasonable number will be chosen for "
+"you"
+msgstr "Ù
Ø¹Ø±Ù Ø§ÙØ¹Ù
ÙÙ. إذا ØªØ±Ù ÙØ§Ø±ØºØ§ ÙØªÙ
Ø§Ø®ØªÙØ§Ø± رÙÙ
Ù
ÙØ§Ø³Ø¨"
#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:6
#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:6
#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:6
msgid "Identification"
-msgstr ""
+msgstr "Ø§ÙØªØ¹Ø±ÙÙ"
#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:7
#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:7
@@ -3238,7 +3430,7 @@ msgstr "جدÙÙ Ø§ÙØ¶Ø±Ø§Ø¦Ø¨:"
#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:21
#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:19
msgid "Override the global Tax Table?"
-msgstr ""
+msgstr "ØªØ¬Ø§ÙØ² Ø§ÙØ¬Ø¯ÙÙ Ø§ÙØ¶Ø±ÙØ¨Ù Ø§ÙØ¹Ø§ÙÙ
ÙØ"
#: ../src/business/business-gnome/gtkbuilder/dialog-customer.glade.h:22
#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:13
@@ -3260,19 +3452,19 @@ msgstr "سؤاÙ"
#: ../src/business/business-gnome/gtkbuilder/dialog-date-close.glade.h:2
msgid "Dummy message"
-msgstr ""
+msgstr "Ø±Ø³Ø§ÙØ© ÙÙÙ
ÙØ©"
#: ../src/business/business-gnome/gtkbuilder/dialog-date-close.glade.h:3
msgid "postd"
-msgstr ""
+msgstr "رØÙت"
#: ../src/business/business-gnome/gtkbuilder/dialog-date-close.glade.h:4
msgid "duedate"
-msgstr ""
+msgstr "ØªØ§Ø±ÙØ® Ø§ÙØ§Ø³ØªØÙاÙ"
#: ../src/business/business-gnome/gtkbuilder/dialog-date-close.glade.h:6
msgid "acct"
-msgstr "acct"
+msgstr "ØØ³Ø§Ø¨"
#: ../src/business/business-gnome/gtkbuilder/dialog-date-close.glade.h:7
msgid "question"
@@ -3282,7 +3474,7 @@ msgstr "سؤاÙ"
#: ../src/import-export/csv-imp/assistant-csv-account-import.glade.h:25
#: ../src/import-export/csv-imp/assistant-csv-trans-import.glade.h:46
msgid "label"
-msgstr ""
+msgstr "تسÙ
ÙØ©"
#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:2
msgid "Employee Number: "
@@ -3293,8 +3485,10 @@ msgid "Username: "
msgstr "اسÙ
اÙÙ
ستخدÙ
:"
#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:5
-msgid "The employee ID number. If left blank a reasonable number will be chosen for you"
-msgstr ""
+msgid ""
+"The employee ID number. If left blank a reasonable number will be chosen for "
+"you"
+msgstr "رÙÙ
تعرÙ٠اÙÙ
ÙØ¸Ù. إذا ØªØ±Ù ÙØ§Ø±ØºØ§ Ø³ÙØªÙ
Ø§Ø®ØªÙØ§Ø± رÙÙ
Ù
ÙØ§Ø³Ø¨"
#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:12
#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:12
@@ -3311,7 +3505,7 @@ msgstr "ÙØ§Ø¬ÙØ©"
#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:15
msgid "Default Hours per Day: "
-msgstr ""
+msgstr "Ø§ÙØ³Ø§Ø¹Ø§Øª Ø§ÙØ§Ø³Ø§Ø³ÙØ© ÙÙÙ ÙÙÙ
:"
#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:16
msgid "Default Rate: "
@@ -3320,7 +3514,7 @@ msgstr "اÙÙ
Ø¹Ø¯Ù Ø§ÙØ§ÙتراضÙ:"
#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:18
#: ../src/gnome-utils/dialog-transfer.c:1956
msgid "Credit Account"
-msgstr ""
+msgstr "ØØ³Ø§Ø¨ Ø§ÙØ§Ø¦ØªÙ
اÙ"
#: ../src/business/business-gnome/gtkbuilder/dialog-employee.glade.h:19
msgid "Billing"
@@ -3346,7 +3540,7 @@ msgstr "Ø§ÙØªØÙÙ
باÙÙØµÙÙ"
#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:6
msgid "Posted Account"
-msgstr ""
+msgstr "ØØ³Ø§Ø¨ Ø§ÙØªØ±ØÙÙ"
#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:8
msgid "Invoice Information"
@@ -3376,29 +3570,33 @@ msgstr "اÙÙØ¸ÙÙØ©:"
#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:17
msgid "Default Chargeback Project"
-msgstr ""
+msgstr "اÙÙ
Ø´Ø±ÙØ¹ Ø§ÙØ§Ø³Ø§Ø³Ù ÙØªØÙ
Ù Ø§ÙØªÙاÙÙÙ "
#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:18
msgid "Additional to Card:"
-msgstr ""
+msgstr "تضا٠إÙÙ Ø¨Ø·Ø§ÙØ©:"
#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:19
msgid "Extra Payments"
-msgstr ""
+msgstr "Ù
دÙÙØ¹Ø§Øª اضاÙÙØ©"
#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:20
msgid "Invoice Entries"
msgstr "Ø¥Ø¯Ø®Ø§ÙØ§Øª اÙÙØ§ØªÙرة"
#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:23
-msgid "The invoice ID number. If left blank a reasonable number will be chosen for you."
-msgstr ""
+msgid ""
+"The invoice ID number. If left blank a reasonable number will be chosen for "
+"you."
+msgstr "رÙÙ
تعرÙ٠اÙÙØ§ØªÙرة. إذا ØªØ±Ù ÙØ§Ø±ØºØ§ Ø³ÙØªÙ
Ø§Ø®ØªÙØ§Ø± رÙÙ
Ù
ÙØ§Ø³Ø¨"
#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:25
msgid ""
"Unposting this Invoice will delete the posted transaction.\n"
"Are you sure you want to unpost it?"
msgstr ""
+"Ø¹ÙØ³ ترØÙÙ ÙØ°Ù اÙÙØ§ØªÙرة Ø³ÙØªÙ
ØØ°Ù اÙÙ
عاÙ
ÙØ§Øª Ø§ÙØªÙ تÙ
ترØÙÙÙØ§. ÙÙ Ø£ÙØª Ù
ØªØ£ÙØ¯ Ø£ÙÙ "
+"ØªØ±ÙØ¯ ذÙÙØ"
#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:27
msgid "Yes, reset the Tax Tables"
@@ -3406,19 +3604,20 @@ msgstr "ÙØ¹Ù
Ø Ø¥Ø¹Ø§Ø¯Ø© تعÙÙÙ \"Ø§ÙØ¬Ø¯Ø§ÙÙ Ø§ÙØ¶Ø±ÙØ¨ÙØ©\""
#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:28
msgid "No, keep them as they are"
-msgstr ""
+msgstr "ÙØ§Ø Ø§ØØªÙظ بÙÙ
ÙÙ
ا ÙÙ
"
#: ../src/business/business-gnome/gtkbuilder/dialog-invoice.glade.h:29
msgid "Reset Tax Tables to present Values?"
-msgstr ""
+msgstr "إعادة تعÙÙÙ Ø§ÙØ¬Ø¯Ø§ÙÙ Ø§ÙØ¶Ø±ÙØ¨ÙØ© ÙÙÙÙÙ
Ø§ÙØØ§ÙÙØ©Ø"
#: ../src/business/business-gnome/gtkbuilder/dialog-job.glade.h:1
msgid "Job Dialog"
-msgstr ""
+msgstr "Ù
ربع ØÙار ÙØ¸ÙÙØ©"
#: ../src/business/business-gnome/gtkbuilder/dialog-job.glade.h:4
-msgid "The job ID number. If left blank a reasonable number will be chosen for you"
-msgstr ""
+msgid ""
+"The job ID number. If left blank a reasonable number will be chosen for you"
+msgstr "رÙÙ
تعرÙ٠اÙÙØ¸ÙÙØ©. إذا ØªØ±Ù ÙØ§Ø±ØºØ§ Ø³ÙØªÙ
Ø§Ø®ØªÙØ§Ø± رÙÙ
Ù
ÙØ§Ø³Ø¨"
#: ../src/business/business-gnome/gtkbuilder/dialog-job.glade.h:5
msgid "Job Information"
@@ -3430,20 +3629,21 @@ msgstr "Ù
عÙÙÙ
ات اÙÙ
اÙÙ"
#: ../src/business/business-gnome/gtkbuilder/dialog-job.glade.h:8
msgid "Job Active"
-msgstr ""
+msgstr "ÙØ¸ÙÙØ© ÙØ´Ø·Ø©"
#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:1
#: ../src/gnome-search/dialog-search.c:1079
msgid "New Order"
-msgstr ""
+msgstr "Ø·ÙØ¨ Ø¬Ø¯ÙØ¯"
#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:4
-msgid "The order ID number. If left blank a reasonable number will be chosen for you"
-msgstr ""
+msgid ""
+"The order ID number. If left blank a reasonable number will be chosen for you"
+msgstr "رÙÙ
تعرÙÙ Ø§ÙØ·Ùب. إذا ØªØ±Ù ÙØ§Ø±ØºØ§ Ø³ÙØªÙ
Ø§Ø®ØªÙØ§Ø± رÙÙ
Ù
ÙØ§Ø³Ø¨"
#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:5
msgid "Order Information"
-msgstr "Ù
عÙÙÙ
ات اÙÙØ¸Ø§Ù
"
+msgstr "Ù
عÙÙÙ
ات Ø§ÙØ·Ùب"
#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:7
#: ../src/gnome-utils/gnc-tree-view-split-reg.c:2847
@@ -3469,7 +3669,7 @@ msgstr "أغÙ٠اÙÙØ¸Ø§Ù
"
#: ../src/business/business-gnome/gtkbuilder/dialog-order.glade.h:15
msgid "Order Entries"
-msgstr ""
+msgstr "Ù
Ø¯Ø®ÙØ§Øª Ø§ÙØ·Ùب"
#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:2
msgid "The company associated with this payment."
@@ -3477,7 +3677,7 @@ msgstr "Ø§ÙØ´Ø±ÙØ© اÙÙ
رتبطة Ø¨ÙØ°Ø§ Ø§ÙØ¯Ùع."
#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:4
msgid "Post To"
-msgstr ""
+msgstr "Ø§ÙØªØ±ØÙ٠اÙÙ"
#. Header string
#. Add the columns
@@ -3547,24 +3747,32 @@ msgstr "عدد"
#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:10
msgid "Documents"
-msgstr ""
+msgstr "اÙÙ
Ø³ØªÙØ¯Ø§Øª"
#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:11
msgid ""
"The amount to pay for this invoice.\n"
"\n"
-"If you have selected an invoice, GnuCash will propose the amount still due for it. You can change this amount to create a partial payment or an over-payment.\n"
+"If you have selected an invoice, GnuCash will propose the amount still due "
+"for it. You can change this amount to create a partial payment or an over-"
+"payment.\n"
"\n"
-"In case of an over-payment or if no invoice was selected, GnuCash will automatically assign the remaining amount to the first unpaid invoice for this company."
+"In case of an over-payment or if no invoice was selected, GnuCash will "
+"automatically assign the remaining amount to the first unpaid invoice for "
+"this company."
msgstr ""
+"Ù
Ø¨ÙØº Ø¯ÙØ¹ ÙØ°Ù اÙÙØ§ØªÙرة. إذا ÙÙ
ت Ø¨ØªØØ¯Ùد ÙØ§ØªÙØ±Ø©Ø Ø³ÙÙÙÙ
جÙÙÙØ§Ø´ Ø¨Ø§ÙØªØ±Ø§Ø Ù
Ø¨ÙØº "
+"Ø§ÙØ°Ù ÙØ§ ÙØ²Ø§Ù Ù
ÙØ±Ø± ÙØ°ÙÙ. ÙÙ
ÙÙ٠تغÙÙØ± ÙØ°Ø§ اÙÙ
Ø¨ÙØº ÙØ¹Ù
Ù Ø¯ÙØ¹Ø© Ø¬Ø²Ø¦ÙØ© Ø£Ù Ø§ÙØ¯Ùع "
+"Ø¨Ø²ÙØ§Ø¯Ø©. ÙÙ ØØ§ÙØ© Ø§ÙØ¯Ùع Ø¨Ø²ÙØ§Ø¯Ø©Ø أ٠إذاÙÙ
ÙØªÙ
Ø§Ø®ØªÙØ§Ø± Ø£Ù ÙØ§ØªÙØ±Ø©Ø Ø³ÙÙÙÙ
جÙÙÙØ§Ø´ "
+"تÙÙØ§Ø¦Ùا بتعÙÙ٠اÙÙ
Ø¨ÙØº اÙÙ
تبÙÙ ÙØ£ÙÙ ÙØ§ØªÙرة ØºÙØ± Ù
دÙÙØ¹Ø© ÙÙØ°Ù Ø§ÙØ´Ø±ÙØ©."
#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:16
msgid "<b>Amount</b>"
-msgstr ""
+msgstr "</b> اÙÙÙ
ÙØ©<b>"
#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:18
msgid "Refund"
-msgstr ""
+msgstr "استرداد"
#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:20
#: ../src/gnome/dialog-find-transactions2.c:150
@@ -3598,7 +3806,7 @@ msgstr ""
#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:22
msgid "Transaction Details"
-msgstr ""
+msgstr "ØªÙØ§ØµÙ٠اÙÙ
عاÙ
ÙØ©"
#: ../src/business/business-gnome/gtkbuilder/dialog-payment.glade.h:23
msgid "Transfer Account"
@@ -3609,8 +3817,10 @@ msgid "Vendor Number: "
msgstr "رÙÙ
اÙÙ
ÙØ±Ø¯:"
#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:5
-msgid "The vendor ID number. If left blank a reasonable number will be chosen for you"
-msgstr ""
+msgid ""
+"The vendor ID number. If left blank a reasonable number will be chosen for "
+"you"
+msgstr "رÙÙ
تعرÙ٠اÙÙ
ÙØ±Ø¯. إذا ØªØ±Ù ÙØ§Ø±ØºØ§ Ø³ÙØªÙ
Ø§Ø®ØªÙØ§Ø± رÙÙ
Ù
ÙØ§Ø³Ø¨"
#. FALL THROUGH
#: ../src/business/business-gnome/gtkbuilder/dialog-vendor.glade.h:14
@@ -3640,7 +3850,7 @@ msgstr "Ù
عÙÙÙ
ات Ø§ÙØ¯Ùع"
#: ../src/business/business-gnome/search-owner.c:163
msgid "You have not selected an owner"
-msgstr ""
+msgstr "ÙÙ
تÙÙ
Ø¨ØªØØ¯Ùد Ù
اÙÙ"
#: ../src/business/business-gnome/search-owner.c:258
#: ../src/gnome-search/search-boolean.c:181
@@ -3660,14 +3870,14 @@ msgstr "ÙÙØ³"
#: ../src/register/ledger-core/split-register.c:1830
#, c-format
msgid "The account %s does not allow transactions."
-msgstr ""
+msgstr "ÙØ§ ÙØ³Ù
Ø Ø§ÙØØ³Ø§Ø¨%s باÙÙ
عاÙ
ÙØ§Øª."
#: ../src/business/business-ledger/gncEntryLedger.c:86
#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1960
#: ../src/register/ledger-core/split-register.c:1831
#, c-format
msgid "The account %s does not exist. Would you like to create it?"
-msgstr ""
+msgstr "عدÙ
ÙØ¬Ùد Ø§ÙØØ³Ø§Ø¨ %s. Ù٠ترغب ÙÙ Ø¥ÙØ´Ø§Ø¦ÙØ"
#. XXX: change this based on the ledger type
#: ../src/business/business-ledger/gncEntryLedger.c:245
@@ -3688,8 +3898,12 @@ msgid "Save the current entry?"
msgstr "ØÙظ Ø§ÙØ¥Ø¯Ø®Ø§Ù Ø§ÙØØ§ÙÙØ"
#: ../src/business/business-ledger/gncEntryLedger.c:904
-msgid "The current transaction has been changed. Would you like to record the changes before duplicating this entry, or cancel the duplication?"
+msgid ""
+"The current transaction has been changed. Would you like to record the "
+"changes before duplicating this entry, or cancel the duplication?"
msgstr ""
+"تÙ
تغÙÙØ± اÙÙ
عاÙ
ÙØ© Ø§ÙØØ§ÙÙØ©. Ù٠ترغب Ù٠تسجÙÙ Ø§ÙØªØºÙÙØ±Ø§Øª ÙØ¨Ù ØªÙØ±Ø§Ø± ÙØ°Ø§ Ø§ÙØ¥Ø¯Ø®Ø§ÙØ "
+"Ø£Ù Ø¥ÙØºØ§Ø¡ Ø§ÙØªÙرارØ"
#: ../src/business/business-ledger/gncEntryLedger.c:919
#: ../src/business/business-ledger/gncEntryLedgerControl.c:892
@@ -3699,25 +3913,32 @@ msgid "_Record"
msgstr "_سجÙ"
#: ../src/business/business-ledger/gncEntryLedgerControl.c:159
-msgid "Invalid Entry: You need to supply an account in the right currency for this position."
-msgstr ""
+msgid ""
+"Invalid Entry: You need to supply an account in the right currency for this "
+"position."
+msgstr "Ø¥Ø¯Ø®Ø§Ù ØºÙØ± ØµØ§ÙØ: ØªØØªØ§Ø¬ Ø¥Ù٠تÙÙÙØ± ØØ³Ø§Ø¨ ÙÙ Ø§ÙØ¹Ù
ÙØ© Ø§ÙØµØÙØØ© ÙÙØ°Ø§ اÙÙ
ÙØ§Ù."
#: ../src/business/business-ledger/gncEntryLedgerControl.c:186
msgid "This account should usually be of type income."
-msgstr ""
+msgstr "عادة ÙØ¬Ø¨ Ø£Ù ÙÙÙÙ ÙØ°Ø§ Ø§ÙØØ³Ø§Ø¨ Ù
Ù ÙÙØ¹ Ø§ÙØ¯Ø®Ù."
#: ../src/business/business-ledger/gncEntryLedgerControl.c:194
msgid "This account should usually be of type expense or asset."
-msgstr ""
+msgstr "عادة ÙØ¬Ø¨ Ø£Ù ÙÙÙÙ ÙØ°Ø§ Ø§ÙØØ³Ø§Ø¨ Ù
Ù ÙÙØ¹ ØØ³Ø§Ø¨ اÙÙ
صارÙÙ Ø£Ù Ø§ÙØ£ØµÙÙ."
#: ../src/business/business-ledger/gncEntryLedgerControl.c:755
#, c-format
msgid "The tax table %s does not exist. Would you like to create it?"
-msgstr ""
+msgstr "ÙØ§ ÙØ¬Ùد Ø§ÙØ¬Ø¯ÙÙ Ø§ÙØ¶Ø±ÙبÙ%s. Ù٠ترغب ÙÙ Ø¥ÙØ´Ø§Ø¦ÙØ"
#: ../src/business/business-ledger/gncEntryLedgerControl.c:872
-msgid "The current entry has been changed. However, this entry is part of an existing order. Would you like to record the change and effectively change your order?"
+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 ""
+"تÙ
تغÙÙØ± اÙÙ
Ø¯Ø®Ù Ø§ÙØØ§ÙÙ. Ù
ع Ø£Ù ÙØ°Ø§ اÙÙ
دخ٠جزء Ù
Ù Ø·ÙØ¨ ÙØ§Ø¦Ù
. Ù٠ترغب Ù٠تسجÙÙ "
+"Ø§ÙØªØºÙÙØ± ٠تغÙÙØ± Ø§ÙØ·ÙبØ"
#: ../src/business/business-ledger/gncEntryLedgerControl.c:890
msgid "_Don't Record"
@@ -3725,7 +3946,7 @@ msgstr "_ÙØ§ تسجÙ"
#: ../src/business/business-ledger/gncEntryLedgerControl.c:977
msgid "The current entry has been changed. Would you like to save it?"
-msgstr ""
+msgstr "تÙ
تغÙÙØ± اÙÙ
Ø¯Ø®Ù Ø§ÙØØ§ÙÙ. Ù٠ترغب ÙÙ ØÙØ¸ÙØ"
#: ../src/business/business-ledger/gncEntryLedgerLayout.c:76
msgid "sample:X"
@@ -3739,11 +3960,11 @@ msgstr "عÙÙØ©:12/12/2000"
#: ../src/business/business-ledger/gncEntryLedgerLayout.c:85
msgid "sample:Description of an Entry"
-msgstr ""
+msgstr "عÙÙØ©: ÙØµÙ اÙÙ
دخÙ"
#: ../src/business/business-ledger/gncEntryLedgerLayout.c:89
msgid "sample:Action"
-msgstr ""
+msgstr "عÙÙØ©: Ø§ÙØ¹Ù
Ù"
#: ../src/business/business-ledger/gncEntryLedgerLayout.c:93
#: ../src/business/business-ledger/gncEntryLedgerLayout.c:101
@@ -3855,7 +4076,7 @@ msgstr "ØØ³Ø§Ø¨ اÙÙ
صرÙÙØ§Øª"
#: ../src/report/business-reports/fancy-invoice.scm:269
#: ../src/report/business-reports/invoice.scm:254
msgid "Action"
-msgstr ""
+msgstr "عÙ
Ù"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:71
#: ../src/report/business-reports/easy-invoice.scm:120
@@ -3908,7 +4129,7 @@ msgstr "ÙØªØ´Ù
Ù Ø§ÙØ¶Ø±Ø§Ø¦Ø¨Ø"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:111
msgid "Invoiced?"
-msgstr ""
+msgstr "ÙÙØªØ±ØªØ"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:116
#: ../src/report/business-reports/easy-invoice.scm:319
@@ -3928,23 +4149,23 @@ msgid "Billable?"
msgstr "اÙÙ
دÙÙØ¹Ø"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:548
-msgid "Enter the income/expense account for the Entry, or choose one from the list"
-msgstr ""
+msgid ""
+"Enter the income/expense account for the Entry, or choose one from the list"
+msgstr "Ø£Ø¯Ø®Ù ØØ³Ø§Ø¨ Ø§ÙØ¯Ø®Ù / اÙÙ
صرÙÙØ أ٠اختر ÙØ§ØØ¯Ø§ Ù
٠اÙÙØ§Ø¦Ù
Ø©"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:561
msgid "Enter the type of Entry"
-msgstr ""
+msgstr "أدخ٠ÙÙØ¹ اÙÙ
دخÙ"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:585
#: ../src/gnome-utils/gnc-tree-util-split-reg.c:460
#: ../src/register/ledger-core/split-register-model.c:889
-#, fuzzy
msgid "%A %d %B %Y"
-msgstr "%B %#d, %Y"
+msgstr "%A %d %B %Y"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:597
msgid "Enter the Entry Description"
-msgstr ""
+msgstr "أدخ٠اÙÙØµÙ اÙÙ
دخÙ"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:613
msgid "Enter the Discount Amount"
@@ -3956,95 +4177,100 @@ msgstr "أدخ٠اÙÙØ³Ø¨Ø© اÙÙ
ئÙÙØ© ÙÙØ®ØµÙ
"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:619
msgid "Enter the Discount ... unknown type"
-msgstr ""
+msgstr "Ø£Ø¯Ø®Ù Ø§ÙØ®ØµÙ
... ÙÙØ¹ ØºÙØ± Ù
عرÙÙ"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:637
msgid "Discount Type: Monetary Value"
-msgstr ""
+msgstr "ÙÙØ¹ Ø§ÙØ®ØµÙ
: ÙÙÙ
Ø© ÙÙØ¯ÙØ©"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:640
msgid "Discount Type: Percent"
-msgstr ""
+msgstr "ÙÙØ¹ Ø§ÙØ®ØµÙ
: ÙØ³Ø¨Ø© Ù
ئÙÙØ©"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:643
msgid "Select the Discount Type"
-msgstr ""
+msgstr "ØØ¯Ø¯ ÙÙØ¹ Ø§ÙØ®ØµÙ
"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:660
msgid "Tax computed after discount is applied"
-msgstr ""
+msgstr "ÙØªÙ
تطبÙÙ Ø§ÙØ¶Ø±Ùبة اÙÙ
ØØ³Ùبة بعد خصÙ
"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:663
msgid "Discount and tax both applied on pretax value"
-msgstr ""
+msgstr "Ø§ÙØ®ØµÙ
ÙØ§Ùضرائب ÙØ·Ø¨Ùا عÙÙ ÙÙÙ
Ø© Ù
ا ÙØ¨Ù Ø§ÙØ¶Ø±Ø§Ø¦Ø¨"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:666
msgid "Discount computed after tax is applied"
-msgstr ""
+msgstr "ÙØªÙ
تطبÙ٠خصÙ
بعد تطبÙÙ Ø§ÙØ¶Ø±Ø§Ø¦Ø¨"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:669
msgid "Select how to compute the Discount and Taxes"
-msgstr ""
+msgstr "ØØ¯Ø¯ ÙÙÙÙØ© ØØ³Ø§Ø¨ Ø§ÙØ®ØµÙ
ÙØ§Ùضرائب"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:682
msgid "Enter the unit-Price for this Entry"
-msgstr ""
+msgstr "أدخ٠سعر اÙÙØØ¯Ø© ÙÙØ°Ø§ اÙÙ
دخÙ"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:694
msgid "Enter the Quantity of units for this Entry"
-msgstr ""
+msgstr "أدخ٠ÙÙ
ÙØ© اÙÙØØ¯Ø§Øª ÙÙØ°Ø§ اÙÙ
دخÙ"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:706
msgid "Enter the Tax Table to apply to this entry"
-msgstr ""
+msgstr "أدخ٠جدÙÙ Ø§ÙØ¶Ø±Ø§Ø¦Ø¨ ÙØªØ·Ø¨ÙÙ ÙÙØ°Ø§ اÙÙ
دخÙ"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:715
msgid "Is this entry taxable?"
-msgstr ""
+msgstr "اÙÙ
دخ٠خاضع ÙÙØ¶Ø±ÙبةØ"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:724
msgid "Is the tax already included in the price of this entry?"
-msgstr ""
+msgstr "ÙÙ Ø§ÙØ¶Ø±Ùبة Ù
تضÙ
ÙØ© باÙÙØ¹Ù Ù٠سعر ÙØ°Ø§ اÙÙ
Ø¯Ø®ÙØ"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:742
msgid "Is this entry invoiced?"
-msgstr ""
+msgstr "ÙÙ ÙÙØªØ± ÙØ°Ù اÙÙ
Ø¯Ø®ÙØ"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:748
msgid "Is this entry credited?"
-msgstr ""
+msgstr "ÙÙ ÙØ°Ù اÙÙ
دخ٠Ù
ؤتÙ
ÙØ"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:752
msgid "Include this entry on this invoice?"
-msgstr ""
+msgstr "Ø§Ø¸ÙØ§Ø± ÙØ°Ø§ اÙÙ
دخ٠عÙ٠اÙÙØ§ØªÙرةØ"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:756
msgid "Include this entry on this credit note?"
-msgstr ""
+msgstr "تضÙ
ÙÙ ÙØ°Ø§ اÙÙ
دخ٠عÙÙ Ù
Ø°ÙØ±Ø© Ø§ÙØ§Ø¦ØªÙ
Ø§Ù ÙØ°ÙØ"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:759
msgid "Unknown EntryLedger Type"
-msgstr ""
+msgstr "ÙÙØ¹ اÙÙ
ÙØ¶Ùع ØºÙØ± Ù
عرÙÙ."
#: ../src/business/business-ledger/gncEntryLedgerModel.c:772
msgid "The subtotal value of this entry "
-msgstr ""
+msgstr "اÙÙ
جÙ
ÙØ¹ اÙÙØ±Ø¹Ù ÙÙØ°Ø§ اÙÙ
دخÙ"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:784
msgid "The total tax of this entry "
-msgstr ""
+msgstr "Ø§ÙØ¶Ø±Ùبة Ø§ÙØ¥Ø¬Ù
اÙÙØ© ÙÙØ°Ø§ اÙÙ
دخÙ"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:793
msgid "Is this entry billable to a customer or job?"
-msgstr ""
+msgstr "ÙÙ ÙØ°Ø§ اÙÙ
Ø¯Ø®Ù ÙØ§Ø¨Ù ÙÙÙÙØªØ±Ø© ÙØ¹Ù
Ù٠أ٠ÙÙ ÙØ¸ÙÙØ©Ø"
#: ../src/business/business-ledger/gncEntryLedgerModel.c:802
msgid "How did you pay for this item?"
-msgstr ""
+msgstr "ÙÙ Ø¯ÙØ¹Øª ÙØ°Ø§ Ø§ÙØ¨ÙدØ"
#: ../src/core-utils/gnc-features.c:116
-msgid "This Dataset contains features not supported by this version of GnuCash. You must use a newer version of GnuCash in order to support the following features:"
+msgid ""
+"This Dataset contains features not supported by this version of GnuCash. You "
+"must use a newer version of GnuCash in order to support the following "
+"features:"
msgstr ""
+"ÙØ°Ù Ø§ÙØ¨ÙØ§ÙØ§Øª ØªØØªÙ٠عÙÙ Ù
ÙØ²Ø§Øª ØºÙØ± Ù
عتÙ
دة Ù
Ù ÙØ¨Ù ÙØ°Ø§ Ø§ÙØ¥ØµØ¯Ø§Ø± Ù
٠جÙÙÙØ§Ø´. ÙØ¬Ø¨ "
+"عÙÙ٠استخداÙ
Ø§ÙØ¥ØµØ¯Ø§Ø± Ø§ÙØ£ØØ¯Ø« Ù
٠جÙÙÙØ§Ø´ Ù
٠أج٠دعÙ
اÙÙ
ÙØ²Ø§Øª Ø§ÙØªØ§ÙÙØ©:"
#: ../src/core-utils/gnc-filepath-utils.c:327
#, c-format
@@ -4054,6 +4280,9 @@ msgid ""
"Please correct the problem and restart GnuCash.\n"
"The reported error was '%s' (errno %d).\n"
msgstr ""
+"ØØ¯Ø« خطأ Ø£Ø«ÙØ§Ø¡ Ø¥ÙØ´Ø§Ø¡ Ø§ÙØ¯ÙÙÙ:. \n"
+" %s \n"
+" Ø§ÙØ±Ø¬Ø§Ø¡ تصØÙØ Ø§ÙÙ
Ø´ÙÙØ© ÙØ¥Ø¹Ø§Ø¯Ø© تشغÙ٠جÙÙÙØ§Ø´ ÙØ§Ù %s (رÙÙ
: %d )\n"
#: ../src/core-utils/gnc-filepath-utils.c:338
#, c-format
@@ -4072,6 +4301,11 @@ msgid ""
"must have full access (read/write/execute) to \n"
"the directory in order to function properly.\n"
msgstr ""
+"Ø§ÙØ¯ÙÙÙ \n"
+" %s \n"
+" Ù
ÙØ¬Ùد ÙÙÙÙ ÙØ§ ÙÙ
Ù٠اÙÙØµÙ٠إÙÙÙ. ÙØ°Ø§ Ø§ÙØ¨Ø±ÙاÙ
ج \n"
+" ÙØ¬Ø¨ Ø£Ù ÙÙÙÙ ÙÙ ØÙ اÙÙØµÙ٠اÙÙØ§Ù
Ù (اÙÙØ±Ø§Ø¡Ø© / اÙÙØªØ§Ø¨Ø© / تÙÙÙØ°)\n"
+" ÙÙØ¯ÙÙÙ ÙÙÙ ÙØ¹Ù
٠بشÙ٠صØÙØ. \n"
#: ../src/core-utils/gnc-filepath-utils.c:359
#: ../src/core-utils/gnc-filepath-utils.c:381
@@ -4082,6 +4316,10 @@ msgid ""
"exists but it is not a directory. Please delete\n"
"the file and start GnuCash again.\n"
msgstr ""
+"اÙÙ
سار \n"
+" %s \n"
+" Ù
ÙØ¬Ùد ÙÙÙÙÙ ÙÙØ³ دÙÙÙØ§. ÙØ±Ø¬Ù ØØ°Ù اÙÙ
ÙÙ \n"
+" اÙÙ
Ø·ÙÙØ¨ ÙØ¨Ø¯Ø¡ جÙÙÙØ§Ø´ Ù
رة أخرÙ. \n"
#: ../src/core-utils/gnc-filepath-utils.c:368
#, c-format
@@ -4092,6 +4330,10 @@ msgid ""
"problem and restart GnuCash. The reported error \n"
"was '%s' (errno %d)."
msgstr ""
+"ØØ¯Ø« خطأ ØºÙØ± Ù
عرÙÙ Ø¹ÙØ¯ Ø§ÙØªØÙÙ Ù
Ù ØµØØ© ÙØ¬Ùد \n"
+" %s \n"
+" ÙÙØ§Ø¨Ù ÙÙØ§Ø³ØªØ®Ø¯Ø§Ù
. ÙØ±Ø¬Ù تصØÙØ Ø§ÙÙ
Ø´ÙÙØ© \n"
+"ÙØ¥Ø¹Ø§Ø¯Ø© تشغÙ٠جÙÙÙØ§Ø´.. Ø§ÙØ®Ø·Ø£ %s رÙÙ
%d"
#: ../src/core-utils/gnc-filepath-utils.c:393
#, c-format
@@ -4100,17 +4342,27 @@ msgid ""
" %s\n"
"They must be at least 'rwx' for the user.\n"
msgstr ""
+"أذÙÙØ§Øª خاطئة عÙÙ Ø§ÙØ¯ÙÙÙ \n"
+" %s \n"
+" ÙØ¬Ø¨ Ø£Ù ÙÙÙÙ'rwx' عÙÙ Ø§ÙØ£Ù٠باÙÙØ³Ø¨Ø© ÙÙÙ
ستخدÙ
. \n"
#: ../src/engine/Account.c:168
#, c-format
msgid ""
"The separator character \"%s\" is used in one or more account names.\n"
"\n"
-"This will result in unexpected behaviour. Either change the account names or choose another separator character.\n"
+"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"
+" %s"
#: ../src/engine/Account.c:3941 ../src/import-export/aqb/gnc-ab-utils.c:460
#: ../src/report/report-system/report-utilities.scm:109
@@ -4145,15 +4397,15 @@ msgstr "تØÙÙÙ Ø§ÙØ¹Ù
ÙØ§Øª"
#: ../src/engine/Account.c:3952
msgid "A/Receivable"
-msgstr ""
+msgstr "Ø/اÙÙ
ÙØ¨Ùضات"
#: ../src/engine/Account.c:3953
msgid "A/Payable"
-msgstr ""
+msgstr "Ø/اÙÙ
دÙÙØ¹Ø§Øª"
#: ../src/engine/Account.c:3954
msgid "Root"
-msgstr ""
+msgstr "Ø§ÙØ¬Ø°Ø±"
#: ../src/engine/Account.c:3955 ../src/engine/Scrub.c:401
#: ../src/engine/Scrub.c:466
@@ -4163,38 +4415,41 @@ msgstr "تجارة"
#: ../src/engine/cap-gains.c:236
msgid "Orphaned Gains"
-msgstr ""
+msgstr "Ø£Ø±Ø¨Ø§Ø Ø¨Ø¯ÙÙ Ù
صدر"
#: ../src/engine/cap-gains.c:250 ../src/engine/cap-gains.c:960
#: ../src/engine/cap-gains.c:965 ../src/engine/cap-gains.c:966
msgid "Realized Gain/Loss"
-msgstr ""
+msgstr "خسارة/Ù
ÙØ§Ø³Ø¨ Ù
ØÙÙØ©"
#: ../src/engine/cap-gains.c:252
-msgid "Realized Gains or Losses from Commodity or Trading Accounts that haven't been recorded elsewhere."
+msgid ""
+"Realized Gains or Losses from Commodity or Trading Accounts that haven't "
+"been recorded elsewhere."
msgstr ""
+"Ø£Ø±Ø¨Ø§Ø Ø£Ù Ø®Ø³Ø§Ø¦Ø± Ù
ØÙÙØ© ÙØ§ØªØ¬Ø© Ø¹Ù Ø³ÙØ¹ Ø£Ù ØØ³Ø§Ø¨Ø§Øª تداÙÙ ÙÙ
ÙØªÙ
تسجÙÙÙØ§ ÙÙ Ù
ÙØ§Ù آخر."
#: ../src/engine/gnc-budget.c:93 ../src/gnome/gnc-plugin-page-budget.c:838
msgid "Unnamed Budget"
-msgstr ""
+msgstr "Ù
ÙØ²Ø§ÙÙØ© ÙÙ
ÙØªÙ
تسÙ
ÙØªÙا"
#. Set memo.
#: ../src/engine/gncInvoice.c:1569
msgid "Extra to Charge Card"
-msgstr ""
+msgstr "Ø¥Ø¶Ø§ÙØ§Øª ÙØ¨Ø·Ø§ÙØ© Ø§ÙØ³Ø¯Ø§Ø¯"
#: ../src/engine/gncInvoice.c:1609
msgid "Generated from an invoice. Try unposting the invoice."
-msgstr ""
+msgstr "ÙÙØ¯Øª Ù
Ù ÙØ§ØªÙرة. ØØ§ÙÙ Ø¹ÙØ³ ترØÙ٠اÙÙØ§ØªÙرة."
#: ../src/engine/gncInvoice.c:2042
msgid " (posted)"
-msgstr ""
+msgstr "(تÙ
Ø§ÙØªØ±ØÙÙ)"
#: ../src/engine/gnc-lot.c:689 ../src/report/standard-reports/register.scm:158
#: ../src/report/standard-reports/register.scm:439
msgid "Lot"
-msgstr ""
+msgstr "Ù
جÙ
ÙØ¹Ø©"
#: ../src/engine/gncOrder.c:552
msgid " (closed)"
@@ -4202,11 +4457,11 @@ msgstr "(Ù
غÙÙØ©)"
#: ../src/engine/gncOwner.c:960
msgid "Offset between documents: "
-msgstr ""
+msgstr "Ù
Ø³Ø§ÙØ© بÙ٠اÙÙØ«Ø§Ø¦Ù:"
#: ../src/engine/gncOwner.c:1070
msgid "Lot Link"
-msgstr ""
+msgstr "رابط اÙÙ
جÙ
ÙØ¹Ø©"
#. translators: " + " is an separator in a list of string-representations of recurrence frequencies
#: ../src/engine/Recurrence.c:487
@@ -4221,7 +4476,7 @@ msgstr " + "
#: ../src/report/standard-reports/category-barchart.scm:132
#: ../src/report/standard-reports/transaction.scm:840
msgid "Weekly"
-msgstr ""
+msgstr "Ø£Ø³Ø¨ÙØ¹Ù"
#. translators: %u is the recurrence multipler, i.e. this
#. event should occur every %u'th week.
@@ -4243,40 +4498,40 @@ msgstr "last %s"
#: ../src/engine/Recurrence.c:642
#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:31
msgid "1st"
-msgstr ""
+msgstr "Ø§ÙØ£ÙÙ"
#: ../src/engine/Recurrence.c:642
#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:32
msgid "2nd"
-msgstr ""
+msgstr "Ø§ÙØ«Ø§ÙÙ"
#: ../src/engine/Recurrence.c:642
#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:33
msgid "3rd"
-msgstr ""
+msgstr "Ø§ÙØ«Ø§ÙØ«"
#: ../src/engine/Recurrence.c:642
#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:34
msgid "4th"
-msgstr ""
+msgstr "Ø§ÙØ±Ø§Ø¨Ø¹"
#. translators: %s is the string 1st, 2nd, 3rd and so on, and
#. * %s is an already-localized form of the day of the week.
#: ../src/engine/Recurrence.c:652
#, c-format
msgid "%s %s"
-msgstr ""
+msgstr "%s %s"
#: ../src/engine/Recurrence.c:689
#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:31
msgid "Semi-monthly"
-msgstr ""
+msgstr "ÙØµÙ Ø´ÙØ±Ù"
#. translators: %d is the number of Recurrences in the list.
#: ../src/engine/Recurrence.c:704
#, c-format
msgid "Unknown, %d-size list."
-msgstr ""
+msgstr "ØºÙØ± Ù
عرÙÙ, %d-size list."
#: ../src/engine/Recurrence.c:716
#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:6
@@ -4310,7 +4565,7 @@ msgstr "سÙÙÙØ§Ù"
#. Reason 2: zero Orphan a/c
#: ../src/engine/Scrub.c:89 ../src/report/business-reports/balsheet-eg.scm:511
msgid "Orphan"
-msgstr ""
+msgstr "بدÙ٠أصÙ"
#. (> (accrec-depth accrec) 1))
#. Reason 1: zero Imbalance a/c
@@ -4323,12 +4578,14 @@ msgstr "ÙØ§ØªÙازÙ"
#: ../src/gnome-utils/gnc-tree-util-split-reg.c:45
#: ../src/report/standard-reports/register.scm:251
msgid "-- Split Transaction --"
-msgstr ""
+msgstr "--ØªÙØ³ÙÙ
اÙÙ
عاÙ
ÙØ©--"
#. Translators: This string has a disambiguation prefix
#: ../src/engine/Split.c:1444
-msgid "Displayed account code of the other account in a multi-split transaction|Split"
-msgstr ""
+msgid ""
+"Displayed account code of the other account in a multi-split transaction|"
+"Split"
+msgstr "عرض رÙ
ز Ø§ÙØØ³Ø§Ø¨ Ù
Ù ØØ³Ø§Ø¨ آخر ÙÙ Ù
عاÙ
ÙØ© Ù
تعددة Ø§ÙØªÙسÙÙ
| ØªÙØ³ÙÙ
"
#: ../src/engine/Transaction.c:2417
msgid "Voided transaction"
@@ -4337,44 +4594,71 @@ msgstr "اÙÙ
عاÙ
ÙØ§Øª اÙÙ
ÙØºØ§Ø©"
#. Dirtying taken care of by SetReadOnly
#: ../src/engine/Transaction.c:2428
msgid "Transaction Voided"
-msgstr ""
+msgstr "Ø§Ø¨Ø·ÙØª اÙÙ
عاÙ
ÙØ©"
#: ../src/gnome/assistant-acct-period.c:190
msgid "The book was closed successfully."
-msgstr ""
+msgstr "تÙ
Ø¥ØºÙØ§Ù ÙØ°Ø§ Ø§ÙØ¯Ùتر Ø¨ÙØ¬Ø§Ø."
#. Translators: %s is a date string. %d is the number of books
#. * that will be created. This is a ngettext(3) message (but
#. * only for the %d part).
#: ../src/gnome/assistant-acct-period.c:315
#, c-format
-msgid "The earliest transaction date found in this book is %s. Based on the selection made above, this book will be split into %d book."
-msgid_plural "The earliest transaction date found in this book is %s. Based on the selection made above, this book will be split into %d books."
+msgid ""
+"The earliest transaction date found in this book is %s. Based on the "
+"selection made above, this book will be split into %d book."
+msgid_plural ""
+"The earliest transaction date found in this book is %s. Based on the "
+"selection made above, this book will be split into %d books."
msgstr[0] ""
+"Ø£ÙØ±Ø¨ ØªØ§Ø±ÙØ® Ù
عاÙ
ÙØ© ÙØ¬Ø¯Øª ÙÙ ÙØ°Ø§ Ø§ÙØ¯Ùتر ÙÙ%s. Ø§Ø³ØªÙØ§Ø¯Ø§ Ø¥ÙÙ Ø§ÙØªØØ¯Ùد اÙÙØ§Ø±Ø¯Ø© "
+"Ø£Ø¹ÙØ§ÙØ ÙØ³ÙتÙ
ØªÙØ³ÙÙ
ÙØ°Ø§ Ø§ÙØ¯Ùتر Ø¥Ù٠عدد%d Ø¯ÙØªØ±."
msgstr[1] ""
+"Ø£ÙØ±Ø¨ ØªØ§Ø±ÙØ® Ù
عاÙ
ÙØ© ÙØ¬Ø¯Øª ÙÙ ÙØ°Ø§ Ø§ÙØ¯Ùتر ÙÙ%s. Ø§Ø³ØªÙØ§Ø¯Ø§ Ø¥ÙÙ Ø§ÙØªØØ¯Ùد اÙÙØ§Ø±Ø¯Ø© "
+"Ø£Ø¹ÙØ§ÙØ ÙØ³ÙتÙ
ØªÙØ³ÙÙ
ÙØ°Ø§ Ø§ÙØ¯Ùتر Ø¥Ù٠عدد%d Ø¯ÙØªØ±."
msgstr[2] ""
+"Ø£ÙØ±Ø¨ ØªØ§Ø±ÙØ® Ù
عاÙ
ÙØ© ÙØ¬Ø¯Øª ÙÙ ÙØ°Ø§ Ø§ÙØ¯Ùتر ÙÙ%s. Ø§Ø³ØªÙØ§Ø¯Ø§ Ø¥ÙÙ Ø§ÙØªØØ¯Ùد اÙÙØ§Ø±Ø¯Ø© "
+"Ø£Ø¹ÙØ§ÙØ ÙØ³ÙتÙ
ØªÙØ³ÙÙ
ÙØ°Ø§ Ø§ÙØ¯Ùتر Ø¥Ù٠عدد%d Ø¯ÙØªØ±."
msgstr[3] ""
+"Ø£ÙØ±Ø¨ ØªØ§Ø±ÙØ® Ù
عاÙ
ÙØ© ÙØ¬Ø¯Øª ÙÙ ÙØ°Ø§ Ø§ÙØ¯Ùتر ÙÙ%s. Ø§Ø³ØªÙØ§Ø¯Ø§ Ø¥ÙÙ Ø§ÙØªØØ¯Ùد اÙÙØ§Ø±Ø¯Ø© "
+"Ø£Ø¹ÙØ§ÙØ ÙØ³ÙتÙ
ØªÙØ³ÙÙ
ÙØ°Ø§ Ø§ÙØ¯Ùتر Ø¥Ù٠عدد%d Ø¯ÙØªØ±."
msgstr[4] ""
+"Ø£ÙØ±Ø¨ ØªØ§Ø±ÙØ® Ù
عاÙ
ÙØ© ÙØ¬Ø¯Øª ÙÙ ÙØ°Ø§ Ø§ÙØ¯Ùتر ÙÙ%s. Ø§Ø³ØªÙØ§Ø¯Ø§ Ø¥ÙÙ Ø§ÙØªØØ¯Ùد اÙÙØ§Ø±Ø¯Ø© "
+"Ø£Ø¹ÙØ§ÙØ ÙØ³ÙتÙ
ØªÙØ³ÙÙ
ÙØ°Ø§ Ø§ÙØ¯Ùتر Ø¥Ù٠عدد%d Ø¯ÙØªØ±."
msgstr[5] ""
+"Ø£ÙØ±Ø¨ ØªØ§Ø±ÙØ® Ù
عاÙ
ÙØ© ÙØ¬Ø¯Øª ÙÙ ÙØ°Ø§ Ø§ÙØ¯Ùتر ÙÙ%s. Ø§Ø³ØªÙØ§Ø¯Ø§ Ø¥ÙÙ Ø§ÙØªØØ¯Ùد اÙÙØ§Ø±Ø¯Ø© "
+"Ø£Ø¹ÙØ§ÙØ ÙØ³ÙتÙ
ØªÙØ³ÙÙ
ÙØ°Ø§ Ø§ÙØ¯Ùتر Ø¥Ù٠عدد%d Ø¯ÙØªØ±."
#: ../src/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 'Forward' to proceed.\n"
" Click on 'Back' to adjust the dates or 'Cancel'."
msgstr ""
+"ÙÙØ¯ Ø³Ø£ÙØª Ø¹Ù Ø§ÙØ¯Ùتر اÙÙ
راد Ø¥ÙØ´Ø§Ø¤Ù. ÙÙØ°Ø§ Ø§ÙØ¯Ùتر ÙØØªÙ٠عÙ٠جÙ
ÙØ¹ اÙÙ
عاÙ
ÙØ§Øª ØØªÙ "
+"Ù
ÙØªØµÙ اÙÙÙÙ %s (ÙÙØµØ¨Ø اÙÙ
جÙ
ÙØ¹ %d Ù
عاÙ
ÙØ§Øª Ù
ÙØ²Ø¹Ø© عÙÙ ØØ³Ø§Ø¨Ø§Øª%d). \n"
+" \n"
+" Ø¹Ø¯Ù Ø§ÙØ¹ÙÙØ§Ù أ٠اÙÙ
ÙØ§ØØ¸Ø§Øª أ٠اÙÙØ± عÙÙ Ø§ÙØ£Ù
اÙ
ÙÙÙ
Ø¶Ù ÙØ¯Ù
ا. \n"
+" اÙÙØ± عÙÙ Ø¹ÙØ¯Ø©Ùضبط اÙÙ
ÙØ§Ø¹Ùد Ø£Ù Ø¥ÙØºØ§Ø¡"
#: ../src/gnome/assistant-acct-period.c:386
#, c-format
msgid "Period %s - %s"
-msgstr ""
+msgstr "اÙÙØªØ±Ø© Ù
Ù %s Ø¥ÙÙ %s"
#: ../src/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."
+msgid ""
+"The book will be created with the title %s when you click on 'Apply'. Click "
+"on 'Back' to adjust, or 'Cancel' to not create any book."
msgstr ""
+"Ø³ÙØªÙ
Ø¥ÙØ´Ø§Ø¡ Ø§ÙØ¯Ùتر Ø¨Ø§ÙØ¹ÙÙØ§Ù %s Ø¹ÙØ¯ اÙÙÙØ± عÙ٠تطبÙÙ ,اÙÙØ± عÙÙ Ø¹ÙØ¯Ø© ÙØªØ¹Ø¯ÙØ Ø£Ù "
+"Ø¥ÙØºØ§Ø¡ ÙØ¹Ø¯Ù
Ø¥ÙØ´Ø§Ø¡ Ø£Ù Ø¯ÙØªØ±."
#. Translation FIXME: Can this %s-containing message please be
#. replaced by one single message? Either this closing went
@@ -4386,6 +4670,8 @@ msgid ""
"%s\n"
"Congratulations! You are done closing books!\n"
msgstr ""
+"%s\n"
+"تÙ
Ø§ÙØ§ÙØªÙØ§Ø¡ Ù
Ù Ø¥ØºÙØ§Ù Ø§ÙØ¯Ùتر! \n"
#. Change the text so that its more mainingful for this assistant
#: ../src/gnome/assistant-acct-period.c:589
@@ -4414,7 +4700,7 @@ msgstr "ØØ³Ø§Ø¨Ø§Øª ÙÙ '%s'"
#: ../src/gnome/assistant-hierarchy.c:512
msgid "No description provided."
-msgstr ""
+msgstr "ÙØ§ ÙÙØ¬Ø¯ ÙØµÙ."
#: ../src/gnome/assistant-hierarchy.c:527
msgid "Accounts in Category"
@@ -4431,7 +4717,7 @@ msgstr "ØØ³Ø§Ø¨ Ù
ÙØ¬Ùد"
#: ../src/gnome/assistant-hierarchy.c:938
#: ../src/gnome-utils/gnc-tree-view-account.c:904
msgid "Placeholder"
-msgstr ""
+msgstr "Ù
ÙØ§Ù ÙÙØªØ«Ø¨Ùت"
#: ../src/gnome/assistant-hierarchy.c:969
msgid "Use Existing"
@@ -4441,7 +4727,7 @@ msgstr "استخداÙ
اÙÙØ§Ø¦Ù
Ø©"
#: ../src/gnome/assistant-hierarchy.c:1139
#: ../src/gnome-utils/dialog-utils.c:591
msgid "New Book Options"
-msgstr ""
+msgstr "Ø®ÙØ§Ø±Ø§Øª Ø¯ÙØªØ± Ø¬Ø¯ÙØ¯."
#. { name, default txn memo, throughEscrowP, specSrcAcctP }
#: ../src/gnome/assistant-loan.c:115
@@ -4463,11 +4749,11 @@ msgstr "Ø¯ÙØ¹ Ø§ÙØªØ£Ù
ÙÙ"
#. Translators: PMI stands for Private Mortgage Insurance.
#: ../src/gnome/assistant-loan.c:118
msgid "PMI"
-msgstr ""
+msgstr "تأÙ
Ù٠رÙÙ Ø¹ÙØ§Ø±Ù خاص"
#: ../src/gnome/assistant-loan.c:118
msgid "PMI Payment"
-msgstr ""
+msgstr "Ø¯ÙØ¹ تأÙ
Ù٠رÙÙ Ø¹ÙØ§Ø±Ù خاص"
#: ../src/gnome/assistant-loan.c:119
msgid "Other Expense"
@@ -4483,11 +4769,11 @@ msgstr "Ù
دÙÙØ¹Ø§Øª Ù
تÙÙØ¹Ø©"
#: ../src/gnome/assistant-loan.c:746
#, c-format
msgid "... pay \"%s\"?"
-msgstr ""
+msgstr "... Ø¯ÙØ¹ \"%s\"Ø"
#: ../src/gnome/assistant-loan.c:758
msgid "via Escrow account?"
-msgstr ""
+msgstr "عبر ØØ³Ø§Ø¨ Ø§ÙØ¶Ù
Ø§ÙØ"
#: ../src/gnome/assistant-loan.c:913
#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2926
@@ -4499,11 +4785,11 @@ msgstr "ÙØ±Ø¶"
#: ../src/gnome/assistant-loan.c:1441
#, c-format
msgid "Loan Repayment Option: \"%s\""
-msgstr ""
+msgstr "Ø®ÙØ§Ø± سداد اÙÙØ±Ø¶: \"%s\""
#: ../src/gnome/assistant-loan.c:1837 ../src/gnome/assistant-loan.c:2834
msgid "Principal"
-msgstr "Ø±Ø¦ÙØ³Ù"
+msgstr "اÙÙ
Ø¨ÙØº Ø§ÙØ£ØµÙÙ"
#: ../src/gnome/assistant-loan.c:1843 ../src/gnome/assistant-loan.c:2854
#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2882
@@ -4533,7 +4819,7 @@ msgstr "Ø¯ÙØ¹ Ø§ÙØ¶Ù
اÙ"
#: ../src/gnome-utils/gnc-tree-model-split-reg.c:2979
#: ../src/register/ledger-core/split-register.c:2568
msgid "Action Column|Split"
-msgstr ""
+msgstr "عÙ
٠عÙ
ÙØ¯|ØªÙØ³ÙÙ
"
#: ../src/gnome/assistant-stock-split.c:410
msgid "Error adding price."
@@ -4590,31 +4876,44 @@ msgstr "سÙÙ
"
#: ../src/gnome/assistant-stock-split.c:773
msgid "You don't have any stock accounts with balances!"
-msgstr ""
+msgstr "ÙÙØ³ ÙØ¯ÙÙ Ø£Ù ØØ³Ø§Ø¨Ø§Øª Ø£ÙØ±Ø§Ù Ù
اÙÙØ© Ù
ع أرصدة!"
#: ../src/gnome/dialog-commodities.c:156
-msgid "That commodity is currently used by at least one of your accounts. You may not delete it."
-msgstr ""
+msgid ""
+"That commodity is currently used by at least one of your accounts. You may "
+"not delete it."
+msgstr "تستخدÙ
تÙÙ Ø§ÙØ³Ùعة ØØ§ÙÙØ§ Ù
Ù ÙØ§ØØ¯ عÙÙ Ø§ÙØ£ÙÙ Ù
Ù ØØ³Ø§Ø¨Ø§ØªÙ. ÙØ§ ØªØ³ØªØ·ÙØ¹ ØØ°ÙÙØ§."
#: ../src/gnome/dialog-commodities.c:170
-msgid "This commodity has price quotes. Are you sure you want to delete the selected commodity and its price quotes?"
+msgid ""
+"This commodity has price quotes. Are you sure you want to delete the "
+"selected commodity and its price quotes?"
msgstr ""
+"ÙØ°Ù Ø§ÙØ³Ùع ÙØ¯ÙÙØ§ Ø¹Ø±ÙØ¶ Ø§ÙØ£Ø³Ø¹Ø§Ø±. ÙÙ Ø£ÙØª Ù
ØªØ£ÙØ¯ Ø£ÙÙ ØªØ±ÙØ¯ ØØ°Ù Ø§ÙØ³ÙØ¹ÙØ© اÙÙ
ختارة ٠"
+"Ø³Ø¹Ø±ÙØ§Ø"
#: ../src/gnome/dialog-commodities.c:177
msgid "Are you sure you want to delete the selected commodity?"
-msgstr ""
+msgstr "Ù
ØªØ£ÙØ¯ Ø£ÙÙ ØªØ±ÙØ¯ ØØ°Ù Ø§ÙØ³Ùعة اÙÙ
ØØ¯Ø¯Ø©Ø"
#: ../src/gnome/dialog-commodities.c:186
msgid "Delete commodity?"
-msgstr ""
+msgstr "ØØ°Ù Ø§ÙØ³ÙعةØ"
#: ../src/gnome/dialog-fincalc.c:312
-msgid "This program can only calculate one value at a time. You must enter values for all but one quantity."
+msgid ""
+"This program can only calculate one value at a time. You must enter values "
+"for all but one quantity."
msgstr ""
+"ÙØ°Ø§ Ø§ÙØ¨Ø±ÙاÙ
ج ÙÙ
ÙÙÙ ØØ³Ø§Ø¨ ÙÙÙ
Ø© ÙØ§ØØ¯Ø© ÙÙØ· ÙÙ ÙÙ Ù
رة. ÙØ¬Ø¨ عÙÙ٠إدخا٠اÙÙÙÙ
"
+"ÙÙØ¬Ù
ÙØ¹ ÙÙÙÙ ÙÙ
ÙØ© ÙØ§ØØ¯Ø©."
#: ../src/gnome/dialog-fincalc.c:314
-msgid "GnuCash cannot determine the value in one of the fields. You must enter a valid expression."
+msgid ""
+"GnuCash cannot determine the value in one of the fields. You must enter a "
+"valid expression."
msgstr ""
+"ÙØ§ ÙÙ
ÙÙ ÙØ¬ÙÙÙØ§Ø´ ØªØØ¯Ùد اÙÙÙÙ
Ø© ÙÙ ÙØ§ØØ¯Ø© Ù
٠اÙÙ
Ø¬Ø§ÙØ§Øª. ÙØ¬Ø¨ عÙÙÙ Ø¥Ø¯Ø®Ø§Ù ØªØ¹Ø¨ÙØ± ØµØ§ÙØ."
#: ../src/gnome/dialog-fincalc.c:353
msgid "The interest rate cannot be zero."
@@ -4626,7 +4925,7 @@ msgstr "ÙØ§ ÙÙ
Ù٠أ٠ÙÙÙ٠عدد اÙÙ
دÙÙØ¹Ø§Øª ØµÙØ±."
#: ../src/gnome/dialog-fincalc.c:377
msgid "The number of payments cannot be negative."
-msgstr ""
+msgstr "عدد Ø§ÙØ¯Ùعات ÙØ§ ÙÙ
Ù٠أ٠ÙÙÙÙ Ø³ÙØ¨Ùا."
#: ../src/gnome/dialog-find-transactions2.c:104
#: ../src/gnome/dialog-find-transactions.c:103
@@ -4655,7 +4954,7 @@ msgstr "Ø¥ØºÙØ§Ù Ø§ÙØ¥Ø¯Ø®Ø§Ùات"
#: ../src/gnome/window-reconcile2.c:1315 ../src/gnome/window-reconcile.c:1315
#: ../src/import-export/csv-exp/csv-transactions-export.c:423
msgid "Reconcile"
-msgstr ""
+msgstr "تسÙÙØ©"
#: ../src/gnome/dialog-find-transactions2.c:119
#: ../src/gnome/dialog-find-transactions.c:118
@@ -4688,7 +4987,7 @@ msgstr "اÙÙÙÙ
Ø©"
#: ../src/import-export/csv-exp/csv-transactions-export.c:422
#: ../src/report/standard-reports/transaction.scm:766
msgid "Number/Action"
-msgstr ""
+msgstr "عدد / Ø§ÙØ¹Ù
Ù"
#: ../src/gnome/dialog-find-transactions2.c:133
#: ../src/gnome/dialog-find-transactions2.c:170
@@ -4703,12 +5002,13 @@ msgstr ""
#: ../src/import-export/csv-exp/csv-transactions-export.c:418
#: ../src/report/standard-reports/transaction.scm:770
msgid "Transaction Number"
-msgstr ""
+msgstr "رÙÙ
Ø§ÙØ¹Ù
ÙÙØ©"
#: ../src/gnome/dialog-find-transactions2.c:146
#: ../src/gnome/dialog-find-transactions.c:145
+#, fuzzy
msgid "Description, Notes, or Memo"
-msgstr ""
+msgstr "اÙÙØµÙ/Ù
ÙØ§ØØ¸Ø§Øª/Ù
Ø°ÙØ±Ø©"
#. FIXME: All this does is leak.
#: ../src/gnome/dialog-find-transactions2.c:221
@@ -4763,7 +5063,7 @@ msgstr "Ø§ÙØ±Ø¨Ø/Ø§ÙØ®Ø³Ø§Ø±Ø©"
#: ../src/gnome/dialog-lot-viewer.c:989
#, c-format
msgid "Lots in Account %s"
-msgstr ""
+msgstr "اÙÙ
جÙ
ÙØ¹Ø§Øª ÙÙ ØØ³Ø§Ø¨ %s"
#. Translators: %d is the number of prices. This
#. is a ngettext(3) message.
@@ -4771,12 +5071,12 @@ msgstr ""
#, c-format
msgid "Are you sure you want to delete the selected price?"
msgid_plural "Are you sure you want to delete the %d selected prices?"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
-msgstr[5] ""
+msgstr[0] "ÙÙ Ø£ÙØª Ù
ØªØ£ÙØ¯ Ø£ÙÙ ØªØ±ÙØ¯ ØØ°Ù Ø§ÙØ³Ø¹Ø± اÙÙ
ØØ¯Ø¯Ø"
+msgstr[1] "ÙÙ Ø£ÙØª Ù
ØªØ£ÙØ¯ Ø£ÙÙ ØªØ±ÙØ¯ ØØ°Ù Ø§ÙØ³Ø¹Ø± اÙÙ
ØØ¯Ø¯Ø"
+msgstr[2] "ÙÙ Ø£ÙØª Ù
ØªØ£ÙØ¯ Ø£ÙÙ ØªØ±ÙØ¯ ØØ°Ù Ø§ÙØ³Ø¹Ø± اÙÙ
ØØ¯Ø¯ %dØ"
+msgstr[3] "ÙÙ Ø£ÙØª Ù
ØªØ£ÙØ¯ Ø£ÙÙ ØªØ±ÙØ¯ ØØ°Ù Ø§ÙØ³Ø¹Ø± اÙÙ
ØØ¯Ø¯ %dØ"
+msgstr[4] "ÙÙ Ø£ÙØª Ù
ØªØ£ÙØ¯ Ø£ÙÙ ØªØ±ÙØ¯ ØØ°Ù Ø§ÙØ³Ø¹Ø± اÙÙ
ØØ¯Ø¯ %dØ"
+msgstr[5] "ÙÙ Ø£ÙØª Ù
ØªØ£ÙØ¯ Ø£ÙÙ ØªØ±ÙØ¯ ØØ°Ù Ø§ÙØ³Ø¹Ø± اÙÙ
ØØ¯Ø¯ %dØ"
#: ../src/gnome/dialog-price-edit-db.c:193
msgid "Delete prices?"
@@ -4784,11 +5084,11 @@ msgstr "ØØ°Ù Ø§ÙØ£Ø³Ø¹Ø§Ø±Ø"
#: ../src/gnome/dialog-price-editor.c:213
msgid "You must select a Security."
-msgstr ""
+msgstr "ØØ¯Ø¯ Ø§ÙØ£Ù
اÙ"
#: ../src/gnome/dialog-price-editor.c:218
msgid "You must select a Currency."
-msgstr ""
+msgstr "إختر Ø§ÙØ¹Ù
ÙØ©"
#: ../src/gnome/dialog-price-editor.c:229
#: ../src/gnome-utils/dialog-transfer.c:1711
@@ -4798,12 +5098,12 @@ msgstr "ÙØ¬Ø¨ إدخا٠ÙÙ
ÙØ© ØµØ§ÙØØ©."
#: ../src/gnome/dialog-print-check2.c:821
#: ../src/gnome/dialog-print-check.c:821
msgid "Cannot save check format file."
-msgstr ""
+msgstr "ÙØ§ ÙÙ
ÙÙ hgØÙظ. تØÙÙ Ù
Ù ÙØ³Ù اÙÙ
ÙÙ."
#: ../src/gnome/dialog-print-check2.c:1509
#: ../src/gnome/dialog-print-check.c:1509
msgid "There is a duplicate check format file."
-msgstr ""
+msgstr "ÙÙØ§Ù ØªÙØ±Ø§Ø± ÙØ³Ù اÙÙ
ÙÙ."
#. Translators: %1$s is the type of the first check
#. * format (user defined or application defined); %2$s
@@ -4813,8 +5113,12 @@ msgstr ""
#: ../src/gnome/dialog-print-check2.c:1517
#: ../src/gnome/dialog-print-check.c:1517
#, c-format
-msgid "The GUIDs in the %s check format file '%s' and the %s check format file '%s' match."
+msgid ""
+"The GUIDs in the %s check format file '%s' and the %s check format file '%s' "
+"match."
msgstr ""
+"خطأ Ù
ÙÙ The GUIDs in the %s check format file '%s' and the %s check format "
+"file '%s' match."
#. Translators: This is a directory name. It may be presented to
#. * the user to indicate that some data file was defined by the
@@ -4853,7 +5157,7 @@ msgstr "أعÙÙ"
#: ../src/gnome/dialog-progress.c:481 ../src/gnome/dialog-progress.c:530
msgid "(paused)"
-msgstr "(Ù
Ø¤ÙØªØ§Ù)"
+msgstr "(Ù
تÙÙÙ Ù
Ø¤ÙØªØ§)"
#: ../src/gnome/dialog-progress.c:765 ../src/gnome/dialog-progress.c:768
msgid "Complete"
@@ -4884,40 +5188,51 @@ msgid "_Actions"
msgstr "_Ø§ÙØ¥Ø¬Ø±Ø§Ø¡Ø§Øª"
#: ../src/gnome/dialog-sx-editor2.c:201 ../src/gnome/dialog-sx-editor.c:202
-msgid "This Scheduled Transaction has changed; are you sure you want to cancel?"
-msgstr ""
+msgid ""
+"This Scheduled Transaction has changed; are you sure you want to cancel?"
+msgstr "ÙÙØ¯ ØªØºÙØ±Øª Ø§ÙØ¹Ù
ÙÙØ© اÙÙ
جدÙÙØ©. ÙÙ Ø£ÙØª Ù
ØªØ£ÙØ¯ Ø£ÙÙ ØªØ±ÙØ¯ Ø§ÙØ¥ÙغاءØ"
#: ../src/gnome/dialog-sx-editor2.c:648 ../src/gnome/dialog-sx-editor.c:655
#, c-format
msgid "Couldn't parse credit formula for split \"%s\"."
-msgstr ""
+msgstr "ÙØ§ ÙÙ
Ù٠تØÙÙÙ ØµÙØºØ© Ø§ÙØ§Ø¦ØªÙ
ا٠ÙÙØªÙسÙÙ
%s"
#: ../src/gnome/dialog-sx-editor2.c:676 ../src/gnome/dialog-sx-editor.c:683
#, c-format
msgid "Couldn't parse debit formula for split \"%s\"."
-msgstr ""
+msgstr "ÙØ§ ÙÙ
Ù٠تØÙÙÙ ØµÙØºØ© Ø§ÙØ®ØµÙ
ÙÙØªÙسÙÙ
%s"
#: ../src/gnome/dialog-sx-editor2.c:710 ../src/gnome/dialog-sx-editor.c:717
#: ../src/gnome/dialog-sx-from-trans.c:260
-msgid "The Scheduled Transaction Editor cannot automatically balance this transaction. Should it still be entered?"
+msgid ""
+"The Scheduled Transaction Editor cannot automatically balance this "
+"transaction. Should it still be entered?"
msgstr ""
+"Ù
ØØ±Ø± عÙ
ÙÙØ© Ù
جدÙÙØ© ÙØ§ ÙÙ
ÙÙ٠تØÙÙÙ Ø§ÙØªÙاز٠تÙÙØ§Ø¦Ùا ÙÙØ°Ù Ø§ÙØ¹Ù
ÙÙØ©Ø©. ÙÙ ÙÙØ¨ØºÙ Ø£Ù "
+"ÙØªÙ
إدخا٠ذÙÙØ"
#: ../src/gnome/dialog-sx-editor2.c:731 ../src/gnome/dialog-sx-editor.c:738
msgid "Please name the Scheduled Transaction."
-msgstr ""
+msgstr "ÙØ±Ø¬Ù تسÙ
ÙØ© Ø§ÙØ¹Ù
ÙÙØ© اÙÙ
جدÙÙØ©."
#: ../src/gnome/dialog-sx-editor2.c:758 ../src/gnome/dialog-sx-editor.c:766
#, c-format
-msgid "A Scheduled Transaction with the name \"%s\" already exists. Are you sure you want to name this one the same?"
+msgid ""
+"A Scheduled Transaction with the name \"%s\" already exists. Are you sure "
+"you want to name this one the same?"
msgstr ""
+"Ø§ÙØ¹Ù
ÙÙØ© اÙÙ
جدÙÙØ© باسÙ
%s Ù
ÙØ¬Ùدة باÙÙØ¹Ù. ÙÙ Ø£ÙØª Ù
ØªØ£ÙØ¯ Ø£ÙÙ ØªØ±ÙØ¯ تسÙ
ÙØ© ÙØ°Ù "
+"Ø¨Ø§ÙØ§Ø³Ù
ÙÙØ³ÙØ"
#: ../src/gnome/dialog-sx-editor2.c:786 ../src/gnome/dialog-sx-editor.c:794
msgid "Scheduled Transactions with variables cannot be automatically created."
-msgstr ""
+msgstr "اÙÙ
عاÙ
ÙØ§Øª اÙÙ
جدÙÙØ© Ù
ع Ù
ØªØºÙØ±Ø§Øª ÙØ§ ÙÙ
ÙÙ Ø£Ù ØªÙØ´Ø£ تÙÙØ§Ø¦Ùا."
#: ../src/gnome/dialog-sx-editor2.c:796 ../src/gnome/dialog-sx-editor.c:804
-msgid "Scheduled Transactions without a template transaction cannot be automatically created."
-msgstr ""
+msgid ""
+"Scheduled Transactions without a template transaction cannot be "
+"automatically created."
+msgstr "اÙÙ
عاÙ
ÙØ§Øª اÙÙ
جدÙÙØ© دÙÙ ÙØ§Ùب ÙØ§ ÙÙ
ÙÙ Ø£Ù ØªÙØ´Ø£ تÙÙØ§Ø¦Ùا."
#: ../src/gnome/dialog-sx-editor2.c:811 ../src/gnome/dialog-sx-editor.c:819
msgid "Please provide a valid end selection."
@@ -4925,28 +5240,38 @@ msgstr "ÙØ±Ø¬Ù ØªØØ¯Ùد ÙÙØ§ÙØ© ØµØ§ÙØØ©."
#: ../src/gnome/dialog-sx-editor2.c:829 ../src/gnome/dialog-sx-editor.c:837
msgid "There must be some number of occurrences."
-msgstr ""
+msgstr "ÙØ¬Ø¨ Ø£Ù ÙÙÙÙ ÙÙØ§Ù عدد Ù
Ù Ù
رات Ø§ÙØØ¯ÙØ«."
#: ../src/gnome/dialog-sx-editor2.c:838 ../src/gnome/dialog-sx-editor.c:846
#, c-format
-msgid "The number of remaining occurrences (%d) is greater than the number of total occurrences (%d)."
-msgstr ""
+msgid ""
+"The number of remaining occurrences (%d) is greater than the number of total "
+"occurrences (%d)."
+msgstr "عدد Ù
رات Ø§ÙØØ¯ÙØ« اÙÙ
تبÙÙØ© (%d) Ø£ÙØ¨Ø± Ù
٠إجÙ
اÙÙ Ù
رات Ø§ÙØØ¯ÙØ« (%d)."
#: ../src/gnome/dialog-sx-editor2.c:870 ../src/gnome/dialog-sx-editor.c:878
-msgid "You have attempted to create a Scheduled Transaction which will never run. Do you really want to do this?"
+msgid ""
+"You have attempted to create a Scheduled Transaction which will never run. "
+"Do you really want to do this?"
msgstr ""
+"ÙÙØ¯ ØØ§ÙÙØª Ø¥ÙØ´Ø§Ø¡ عÙ
ÙÙØ© Ù
جدÙÙØ© ÙÙ ÙØªÙ
تشغÙÙÙØ§ أبدا. ÙÙ ØªØ±ÙØ¯ ØÙا Ø£Ù ØªÙØ¹Ù ÙØ°Ø§Ø"
#: ../src/gnome/dialog-sx-editor2.c:1316
-msgid "Note: If you have already accepted changes to the Template, Cancel will not revoke them."
+msgid ""
+"Note: If you have already accepted changes to the Template, Cancel will not "
+"revoke them."
msgstr ""
+"Ù
ÙØ§ØØ¸Ø©: إذا ÙÙØª ÙØ¯ ÙØ¨Ùت باÙÙØ¹Ù تغÙÙØ±Ø§Øª عÙ٠اÙÙØ§ÙØ¨Ø Ø¹Ù
ÙÙØ©Ø§ÙØ§ÙØºØ§Ø¡ ÙÙ ØªÙØ¹ÙÙØ§."
#: ../src/gnome/dialog-sx-editor2.c:1363 ../src/gnome/dialog-sx-editor.c:1381
msgid "(never)"
msgstr "(ابدأ)"
#: ../src/gnome/dialog-sx-editor2.c:1531 ../src/gnome/dialog-sx-editor.c:1549
-msgid "The current template transaction has been changed. Would you like to record the changes?"
-msgstr ""
+msgid ""
+"The current template transaction has been changed. Would you like to record "
+"the changes?"
+msgstr "تÙ
تغÙÙØ± ÙØ§Ùب Ø§ÙØ¹Ù
ÙÙØ§Øª Ø§ÙØØ§ÙÙ. Ù٠ترغب Ù٠تسجÙÙ Ø§ÙØªØºÙÙØ±Ø§ØªØ"
#: ../src/gnome/dialog-sx-editor2.c:1784 ../src/gnome/dialog-sx-editor.c:1814
#: ../src/gnome/gnc-plugin-page-sx-list.c:243
@@ -4955,12 +5280,18 @@ msgid "Scheduled Transactions"
msgstr "اÙÙ
عاÙ
ÙØ§Øª اÙÙ
جدÙÙØ©"
#: ../src/gnome/dialog-sx-from-trans.c:557
-msgid "The Scheduled Transaction is unbalanced. You are strongly encouraged to correct this situation."
-msgstr ""
+msgid ""
+"The Scheduled Transaction is unbalanced. You are strongly encouraged to "
+"correct this situation."
+msgstr "Ø§ÙØ¹Ù
ÙÙØ© اÙÙ
جدÙÙØ© ØºÙØ± Ù
ØªÙØ§Ø²ÙØ©. ÙÙØµØ بتصØÙØ ÙØ°Ø§ اÙÙØ¶Ø¹."
#: ../src/gnome/dialog-sx-from-trans.c:781
-msgid "Cannot create a Scheduled Transaction from a Transaction currently being edited. Please Enter the Transaction before Scheduling."
+msgid ""
+"Cannot create a Scheduled Transaction from a Transaction currently being "
+"edited. Please Enter the Transaction before Scheduling."
msgstr ""
+"ÙØ§ ÙÙ
ÙÙ Ø¥ÙØ´Ø§Ø¡ عÙ
ÙÙØ© Ù
جدÙÙØ© Ù
٠عÙ
ÙÙØ© ÙØªÙ
ØªØØ±ÙØ±ÙØ§ ØØ§ÙÙØ§. Ø§ÙØ±Ø¬Ø§Ø¡ أدخا٠عÙ
ÙÙØ© "
+"اÙÙ
جدÙÙØ© ÙØ¨Ùا."
#: ../src/gnome/dialog-sx-since-last-run.c:388
msgid "Ignored"
@@ -4972,7 +5303,7 @@ msgstr "تأجÙÙ"
#: ../src/gnome/dialog-sx-since-last-run.c:390
msgid "To-Create"
-msgstr ""
+msgstr "Ø¥ÙØ´Ø§Ø¡"
#: ../src/gnome/dialog-sx-since-last-run.c:391
msgid "Reminder"
@@ -4993,14 +5324,30 @@ msgstr "(Ø¨ØØ§Ø¬Ø© Ø¥ÙÙ ÙÙÙ
Ø©)"
#: ../src/gnome/dialog-sx-since-last-run.c:830
#, c-format
-msgid "There are no Scheduled Transactions to be entered at this time. (One transaction automatically created)"
-msgid_plural "There are no Scheduled Transactions to be entered at this time. (%d transactions automatically created)"
+msgid ""
+"There are no Scheduled Transactions to be entered at this time. (One "
+"transaction automatically created)"
+msgid_plural ""
+"There are no Scheduled Transactions to be entered at this time. (%d "
+"transactions automatically created)"
msgstr[0] ""
+"ÙØ§ ØªÙØ¬Ø¯ اÙÙ
عاÙ
ÙØ§Øª Ù
جدÙÙØ© Ù
ÙØ±Ø± ادخاÙÙØ§ ÙÙ ÙØ°Ø§ اÙÙÙØª. ( Ù
عاÙ
ÙØ© ÙØ§ØØ¯Ø© تÙ
"
+"Ø¥ÙØ´Ø§Ø¤Ùا تÙÙØ§Ø¦Ùا)"
msgstr[1] ""
+"ÙØ§ ØªÙØ¬Ø¯ اÙÙ
عاÙ
ÙØ§Øª Ù
جدÙÙØ© Ù
ÙØ±Ø± ادخاÙÙØ§ ÙÙ ÙØ°Ø§ اÙÙÙØª. ( Ù
عاÙ
ÙØ© ÙØ§ØØ¯Ø© تÙ
"
+"Ø¥ÙØ´Ø§Ø¤Ùا تÙÙØ§Ø¦Ùا)"
msgstr[2] ""
+"ÙØ§ ØªÙØ¬Ø¯ اÙÙ
عاÙ
ÙØ§Øª Ù
جدÙÙØ© Ù
ÙØ±Ø± ادخاÙÙØ§ ÙÙ ÙØ°Ø§ اÙÙÙØª. (Ù
عاÙ
ÙØªØ§Ù تÙ
Ø¥ÙØ´Ø§Ø¤Ùا "
+"تÙÙØ§Ø¦Ùا)"
msgstr[3] ""
+"ÙØ§ ØªÙØ¬Ø¯ اÙÙ
عاÙ
ÙØ§Øª Ù
جدÙÙØ© Ù
ÙØ±Ø± ادخاÙÙØ§ ÙÙ ÙØ°Ø§ اÙÙÙØª. ( %d Ù
عاÙ
ÙØ§Øª تÙ
Ø¥ÙØ´Ø§Ø¤Ùا "
+"تÙÙØ§Ø¦Ùا)"
msgstr[4] ""
+"ÙØ§ ØªÙØ¬Ø¯ اÙÙ
عاÙ
ÙØ§Øª Ù
جدÙÙØ© Ù
ÙØ±Ø± ادخاÙÙØ§ ÙÙ ÙØ°Ø§ اÙÙÙØª. ( %d Ù
عاÙ
ÙØ§Øª تÙ
Ø¥ÙØ´Ø§Ø¤Ùا "
+"تÙÙØ§Ø¦Ùا)"
msgstr[5] ""
+"ÙØ§ ØªÙØ¬Ø¯ اÙÙ
عاÙ
ÙØ§Øª Ù
جدÙÙØ© Ù
ÙØ±Ø± ادخاÙÙØ§ ÙÙ ÙØ°Ø§ اÙÙÙØª. ( %d Ù
عاÙ
ÙØ§Øª تÙ
Ø¥ÙØ´Ø§Ø¤Ùا "
+"تÙÙØ§Ø¦Ùا)"
#: ../src/gnome/dialog-sx-since-last-run.c:952
#: ../src/gnome-search/dialog-search.c:1081
@@ -5019,7 +5366,7 @@ msgstr "اÙÙ
عاÙ
ÙØ§Øª Ø§ÙØªÙ تÙ
Ø¥ÙØ´Ø§Ø¤Ùا"
#: ../src/gnome/dialog-tax-info.c:284
msgid "Last Valid Year: "
-msgstr ""
+msgstr "اخر Ø³ÙØ© ØµØ§ÙØØ©:"
#: ../src/gnome/dialog-tax-info.c:285
msgid "Form Line Data: "
@@ -5040,8 +5387,12 @@ msgid "Income Tax Identity"
msgstr "ÙÙÙØ© Ø¶Ø±ÙØ¨Ø© Ø§ÙØ¯Ø®Ù"
#: ../src/gnome/dialog-tax-info.c:1199
-msgid "CAUTION: If you set TXF categories, and later change 'Type', you will need to manually reset those categories one at a time"
+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Ø ÙÙÙ
ت ÙØ§ØÙا بتغÙÙØ± اÙÙÙØ¹Ø âØ³ÙÙ ØªØØªØ§Ø¬ Ø¥Ù٠إعادة "
+"تعÙÙ٠تÙ٠اÙÙØ¦Ø§Øª ÙØ¯ÙÙØ§ ÙÙØ§ عÙÙ ØØ¯Ø©"
#: ../src/gnome/dialog-tax-info.c:1348
msgid "Form"
@@ -5058,7 +5409,7 @@ msgstr "اÙÙ
صرÙÙØ§Øª"
#: ../src/gnome/gnc-budget-view.c:389
msgid "Transfers"
-msgstr ""
+msgstr "تØÙÙÙØ§Øª"
#. (if (gnc-numeric-negative-p total)
#. (_ "Total Credit")
@@ -5125,15 +5476,15 @@ msgstr "ØÙظ باسÙ
..."
#: ../src/gnome/gnc-plugin-basic-commands.c:123
msgid "Save this file with a different name"
-msgstr ""
+msgstr "ØÙظ ÙØ°Ø§ اÙÙ
ÙÙ Ù
ع اسÙ
Ù
ختÙÙ"
#: ../src/gnome/gnc-plugin-basic-commands.c:127
msgid "Re_vert"
-msgstr ""
+msgstr "Ø§ÙØºØ§Ø¡ Ø§ÙØªØºÙÙØ±Ø§Øª"
#: ../src/gnome/gnc-plugin-basic-commands.c:128
msgid "Reload the current database, reverting all unsaved changes"
-msgstr ""
+msgstr "إعادة تØÙ
ÙÙ ÙØ§Ø¹Ø¯Ø© Ø§ÙØ¨ÙØ§ÙØ§Øª Ø§ÙØØ§ÙÙØ©Ø Ø¨Ø§ÙØ¹Ùدة Ø¹Ù Ø§ÙØªØºÙÙØ±Ø§Øª Ø§ÙØºÙر Ù
ØÙÙØ¸Ø©"
#: ../src/gnome/gnc-plugin-basic-commands.c:133
msgid "Export _Accounts"
@@ -5141,7 +5492,7 @@ msgstr "ØªØµØ¯ÙØ± Ø§ÙØØ³Ø§Ø¨Ø§Øª"
#: ../src/gnome/gnc-plugin-basic-commands.c:134
msgid "Export the account hierarchy to a new GnuCash datafile"
-msgstr ""
+msgstr "ØªØµØ¯ÙØ± شجرة Ø§ÙØØ³Ø§Ø¨Ø§Øª Ø¥ÙÙ Ù
Ù٠جÙÙÙØ§Ø´ Ø¬Ø¯ÙØ¯"
#: ../src/gnome/gnc-plugin-basic-commands.c:141
#: ../src/gnome/gnc-plugin-page-register2.c:246
@@ -5166,6 +5517,7 @@ msgstr "Ø®ÙØ§Ø±Ø§Øª Ø§ÙØªÙØ±ÙØ± Ø§ÙØ¶Ø±ÙبÙ"
#: ../src/gnome/gnc-plugin-basic-commands.c:152
msgid "Setup relevant accounts for tax reports, e.g. US income tax"
msgstr ""
+"إعداد Ø§ÙØØ³Ø§Ø¨Ø§Øª ذات Ø§ÙØµÙØ© ÙØªÙØ§Ø±ÙØ± Ø§ÙØ¶Ø±Ø§Ø¦Ø¨Ø Ù
Ø«Ù Ø¶Ø±ÙØ¨Ø© Ø§ÙØ¯Ø®Ù باÙÙÙØ§Ùات اÙÙ
ØªØØ¯Ø©"
#. Actions menu
#: ../src/gnome/gnc-plugin-basic-commands.c:158
@@ -5186,7 +5538,7 @@ msgstr "Ù
ÙØ° آخر تشغÙÙ..."
#: ../src/gnome/gnc-plugin-basic-commands.c:166
msgid "Create Scheduled Transactions since the last time run"
-msgstr ""
+msgstr "Ø®Ù٠اÙÙ
عاÙ
ÙØ§Øª اÙÙ
جدÙÙØ© Ù
ÙØ° آخر Ù
رة تÙ
عÙ
Ù Ø§ÙØ¨Ø±ÙاÙ
ج"
#: ../src/gnome/gnc-plugin-basic-commands.c:170
msgid "_Mortgage & Loan Repayment..."
@@ -5194,7 +5546,7 @@ msgstr "_Ø§ÙØ±ÙÙ Ø§ÙØ¹ÙØ§Ø±Ù ÙØªØ³Ø¯Ùد اÙÙØ±Ùض..."
#: ../src/gnome/gnc-plugin-basic-commands.c:171
msgid "Setup scheduled transactions for repayment of a loan"
-msgstr ""
+msgstr "إعداد اÙÙ
عاÙ
ÙØ§Øª Ø§ÙØ¬Ø¯ÙÙØ© ÙØ³Ø¯Ø§Ø¯ ÙØ±Ø¶"
#: ../src/gnome/gnc-plugin-basic-commands.c:174
#: ../src/report/report-system/report.scm:67
@@ -5203,11 +5555,11 @@ msgstr "اÙÙ
ÙØ²Ø§ÙÙØ©"
#: ../src/gnome/gnc-plugin-basic-commands.c:177
msgid "Close _Books"
-msgstr ""
+msgstr "Ø¥ØºÙØ§Ù Ø§ÙØ¯Ùاتر"
#: ../src/gnome/gnc-plugin-basic-commands.c:178
msgid "Archive old data using accounting periods"
-msgstr ""
+msgstr "أرشÙÙ Ø§ÙØ¨ÙØ§ÙØ§Øª اÙÙØ¯ÙÙ
Ø© باستخداÙ
اÙÙØªØ±Ø§Øª اÙÙ
ØØ§Ø³Ø¨ÙØ©"
#: ../src/gnome/gnc-plugin-basic-commands.c:186
msgid "_Price Editor"
@@ -5223,7 +5575,7 @@ msgstr "_Ù
ØØ±Ø± Ø§ÙØ£Ù
اÙ"
#: ../src/gnome/gnc-plugin-basic-commands.c:192
msgid "View and edit the commodities for stocks and mutual funds"
-msgstr ""
+msgstr "عرض ÙØªØØ±Ùر Ø§ÙØ³Ùع ÙÙØ£Ø³ÙÙ
ÙØµÙادÙÙ Ø§ÙØ§Ø³ØªØ«Ù
ار اÙÙ
Ø´ØªØ±ÙØ©"
#: ../src/gnome/gnc-plugin-basic-commands.c:196
msgid "_Loan Repayment Calculator"
@@ -5235,11 +5587,11 @@ msgstr "استخداÙ
ØØ§Ø³Ø¨Ø© سداد اÙÙØ±Ø¶/Ø§ÙØ±ÙÙ Ø§ÙØ¹ÙارÙ"
#: ../src/gnome/gnc-plugin-basic-commands.c:201
msgid "_Close Book"
-msgstr ""
+msgstr "إغÙÙ Ø§ÙØ¯Ùتر"
#: ../src/gnome/gnc-plugin-basic-commands.c:202
msgid "Close the Book at the end of the Period"
-msgstr ""
+msgstr "Ø¥ØºÙØ§Ù Ø§ÙØ¯Ùتر ÙÙ ÙÙØ§ÙØ© اÙÙØªØ±Ø©"
#: ../src/gnome/gnc-plugin-basic-commands.c:209
msgid "_Tips Of The Day"
@@ -5251,20 +5603,30 @@ msgstr "عرض ÙØµØ§Ø¦Ø اÙÙÙÙ
"
#: ../src/gnome/gnc-plugin-basic-commands.c:546
msgid "There are no Scheduled Transactions to be entered at this time."
-msgstr ""
+msgstr "ÙØ§ ØªÙØ¬Ø¯ Ù
عاÙ
ÙØ§Øª Ù
جدÙÙØ© ÙÙØ¥Ø¯Ø®Ø§Ù ÙÙ ÙØ°Ø§ اÙÙÙØª."
#. Translators: %d is the number of transactions. This is a
#. ngettext(3) message.
#: ../src/gnome/gnc-plugin-basic-commands.c:577
#, c-format
-msgid "There are no Scheduled Transactions to be entered at this time. (%d transaction automatically created)"
-msgid_plural "There are no Scheduled Transactions to be entered at this time. (%d transactions automatically created)"
+msgid ""
+"There are no Scheduled Transactions to be entered at this time. (%d "
+"transaction automatically created)"
+msgid_plural ""
+"There are no Scheduled Transactions to be entered at this time. (%d "
+"transactions automatically created)"
msgstr[0] ""
+"ÙØ§ ØªÙØ¬Ø¯ Ù
عاÙ
ÙØ§Øª Ù
جدÙÙØ© ÙÙØ¥Ø¯Ø®Ø§Ù ÙÙ ÙØ°Ø§ اÙÙÙØª. (تÙ
Ø¥ÙØ´Ø§Ø¡ %d Ù
عاÙ
ÙØ© Ø£ÙÙØ§)"
msgstr[1] ""
+"ÙØ§ ØªÙØ¬Ø¯ Ù
عاÙ
ÙØ§Øª Ù
جدÙÙØ© ÙÙØ¥Ø¯Ø®Ø§Ù ÙÙ ÙØ°Ø§ اÙÙÙØª. (تÙ
Ø¥ÙØ´Ø§Ø¡ %d Ù
عاÙ
ÙØ© Ø£ÙÙØ§)"
msgstr[2] ""
+"ÙØ§ ØªÙØ¬Ø¯ Ù
عاÙ
ÙØ§Øª Ù
جدÙÙØ© ÙÙØ¥Ø¯Ø®Ø§Ù ÙÙ ÙØ°Ø§ اÙÙÙØª. (تÙ
Ø¥ÙØ´Ø§Ø¡ %d Ù
عاÙ
ÙØ© Ø£ÙÙØ§)"
msgstr[3] ""
+"ÙØ§ ØªÙØ¬Ø¯ Ù
عاÙ
ÙØ§Øª Ù
جدÙÙØ© ÙÙØ¥Ø¯Ø®Ø§Ù ÙÙ ÙØ°Ø§ اÙÙÙØª. (تÙ
Ø¥ÙØ´Ø§Ø¡ %d Ù
عاÙ
ÙØ© Ø£ÙÙØ§)"
msgstr[4] ""
+"ÙØ§ ØªÙØ¬Ø¯ Ù
عاÙ
ÙØ§Øª Ù
جدÙÙØ© ÙÙØ¥Ø¯Ø®Ø§Ù ÙÙ ÙØ°Ø§ اÙÙÙØª. (تÙ
Ø¥ÙØ´Ø§Ø¡ %d Ù
عاÙ
ÙØ© Ø£ÙÙØ§)"
msgstr[5] ""
+"ÙØ§ ØªÙØ¬Ø¯ Ù
عاÙ
ÙØ§Øª Ù
جدÙÙØ© ÙÙØ¥Ø¯Ø®Ø§Ù ÙÙ ÙØ°Ø§ اÙÙÙØª. (تÙ
Ø¥ÙØ´Ø§Ø¡ %d Ù
عاÙ
ÙØ© Ø£ÙÙØ§)"
#: ../src/gnome/gnc-plugin-budget.c:59
msgid "New Budget"
@@ -5304,7 +5666,7 @@ msgstr "Ø§ÙØªØ³Ùس٠اÙÙØ±Ù
Ù ÙØØ³Ø§Ø¨ Ø¬Ø¯ÙØ¯..."
#: ../src/gnome/gnc-plugin-page-account-tree.c:171
msgid "Extend the current book by merging with new account type categories"
-msgstr ""
+msgstr "تÙ
Ø¯ÙØ¯ Ø§ÙØ¯Ùتر Ø§ÙØØ§Ù٠ع٠طرÙÙ Ø§ÙØ¯Ù
ج Ù
ع ÙØ¦Ø§Øª ÙÙØ¹ ØØ³Ø§Ø¨Ø§Øª Ø¬Ø¯ÙØ¯Ø©"
#: ../src/gnome/gnc-plugin-page-account-tree.c:176
#: ../src/gnome/gnc-plugin-page-account-tree.c:187
@@ -5322,17 +5684,17 @@ msgstr "ÙØªØ Ø§ÙØØ³Ø§Ø¨ اÙÙ
ØØ¯Ø¯"
#: ../src/gnome/gnc-plugin-page-account-tree.c:181
msgid "Open _Old Style Register Account"
-msgstr ""
+msgstr "ÙØªØ ÙØ§Ùذة Ø¯ÙØªØ± أستاذ عاÙ
ÙÙ
Ø· ÙØ¯ÙÙ
"
#: ../src/gnome/gnc-plugin-page-account-tree.c:182
msgid "Open the old style register selected account"
-msgstr ""
+msgstr "ÙØªØ ÙØ§Ùذة Ø¯ÙØªØ± أستاذ عاÙ
ÙÙ
Ø· ÙØ¯ÙÙ
Ù
ØØ¯Ø¯"
#: ../src/gnome/gnc-plugin-page-account-tree.c:195
#: ../src/gnome/gnc-plugin-page-account-tree.c:206
#: ../src/gnome/gnc-plugin-page-account-tree.c:285
msgid "Open _SubAccounts"
-msgstr ""
+msgstr "ÙØªØ Ø§ÙØØ³Ø§Ø¨Ø§Øª اÙÙØ±Ø¹ÙØ©"
#: ../src/gnome/gnc-plugin-page-account-tree.c:196
#: ../src/gnome/gnc-plugin-page-account-tree.c:207
@@ -5343,11 +5705,11 @@ msgstr "ÙØªØ Ø§ÙØØ³Ø§Ø¨ اÙÙ
ØØ¯Ø¯ ÙØ¬Ù
ÙØ¹ Ù
ا ÙÙØ§ Ù
Ù Ø§ÙØØ³Ø§
#: ../src/gnome/gnc-plugin-page-account-tree.c:200
msgid "Open Old St_yle Subaccounts"
-msgstr ""
+msgstr "ÙØªØ Ø§ÙØØ³Ø§Ø¨Ø§Øª اÙÙØ±Ø¹ÙØ© باÙÙÙ
Ø· اÙÙØ¯ÙÙ
"
#: ../src/gnome/gnc-plugin-page-account-tree.c:201
msgid "Open the old style register selected account and all its subaccounts"
-msgstr ""
+msgstr "ÙØªØ Ø§ÙØØ³Ø§Ø¨Ø§Øª باÙÙÙ
Ø· اÙÙØ¯ÙÙ
Ù ÙØ°Ø§ ÙÙ ØØ³Ø§Ø¨Ø§ØªÙا اÙÙØ±Ø¹ÙØ©"
#: ../src/gnome/gnc-plugin-page-account-tree.c:214
#: ../src/gnome/gnc-plugin-page-register2.c:241
@@ -5375,29 +5737,29 @@ msgstr "_إعادة ترÙÙÙ
Ø§ÙØØ³Ø§Ø¨Ø§Øª اÙÙØ±Ø¹ÙØ©..."
#: ../src/gnome/gnc-plugin-page-account-tree.c:225
msgid "Renumber the children of the selected account"
-msgstr ""
+msgstr "ØªØ°ÙØ± ÙÙ Ø§ÙØ®Ø³Ø§Ø¨Ø§Øª اÙÙØ±Ø¹ÙØ© ÙÙØØ³Ø§Ø¨ اÙÙ
ØØ¯Ø¯"
#: ../src/gnome/gnc-plugin-page-account-tree.c:237
#: ../src/gnome/gnc-plugin-page-register2.c:336
#: ../src/gnome/gnc-plugin-page-register.c:345
msgid "_Reconcile..."
-msgstr ""
+msgstr "تسÙÙØ©"
#: ../src/gnome/gnc-plugin-page-account-tree.c:238
#: ../src/gnome/gnc-plugin-page-register2.c:337
#: ../src/gnome/gnc-plugin-page-register.c:346
msgid "Reconcile the selected account"
-msgstr ""
+msgstr " Ø§ÙØªØ³ÙÙØ© بÙÙ Ø§ÙØØ³Ø§Ø¨Ø§Øª اÙÙ
ختارة"
#: ../src/gnome/gnc-plugin-page-account-tree.c:242
#: ../src/gnome/gnc-plugin-page-register2.c:341
#: ../src/gnome/gnc-plugin-page-register.c:350
msgid "_Auto-clear..."
-msgstr ""
+msgstr "Ù
Ø³Ø ØªÙÙØ§Ø¦Ù"
#: ../src/gnome/gnc-plugin-page-account-tree.c:243
msgid "Automatically clear individual transactions, given a cleared amount"
-msgstr ""
+msgstr "Ù
Ø³Ø ØªÙÙØ§Ø¦Ù ÙÙÙ
عاÙ
ÙØ§Øª اÙÙØ±Ø¯ÙØ©Ø ØØªÙ تص٠إÙÙ Ù
Ø¨ÙØº Ù
عÙ٠تÙ
Ù
سØÙ"
#: ../src/gnome/gnc-plugin-page-account-tree.c:247
#: ../src/gnome/gnc-plugin-page-register2.c:331
@@ -5418,25 +5780,25 @@ msgstr "ÙÙÙ Ø§ÙØ£Ù
ÙØ§Ù Ù
Ù ØØ³Ø§Ø¨ ÙØ§ØØ¯ Ø¥Ù٠آخر"
#: ../src/gnome/gnc-plugin-page-register2.c:346
#: ../src/gnome/gnc-plugin-page-register.c:355
msgid "Stoc_k Split..."
-msgstr ""
+msgstr "تجزئة Ø§ÙØ³ÙÙ
"
#: ../src/gnome/gnc-plugin-page-account-tree.c:253
#: ../src/gnome/gnc-plugin-page-register2.c:347
#: ../src/gnome/gnc-plugin-page-register.c:356
msgid "Record a stock split or a stock merger"
-msgstr ""
+msgstr "تسجÙ٠تجزئة Ø§ÙØ³ÙÙ
Ø£Ù Ø§ÙØ§ÙدÙ
اج Ø§ÙØ£Ø³ÙÙ
"
#: ../src/gnome/gnc-plugin-page-account-tree.c:257
#: ../src/gnome/gnc-plugin-page-register2.c:351
#: ../src/gnome/gnc-plugin-page-register.c:360
msgid "View _Lots..."
-msgstr ""
+msgstr "عرض اÙÙ
جÙ
ÙØ¹Ø§Øª"
#: ../src/gnome/gnc-plugin-page-account-tree.c:258
#: ../src/gnome/gnc-plugin-page-register2.c:352
#: ../src/gnome/gnc-plugin-page-register.c:361
msgid "Bring up the lot viewer/editor window"
-msgstr ""
+msgstr "عارض/Ù
ØØ±Ø± اÙÙ
جÙ
ÙØ¹Ø§Øª"
#: ../src/gnome/gnc-plugin-page-account-tree.c:262
msgid "Check & Repair A_ccount"
@@ -5444,34 +5806,45 @@ msgstr "ÙØØµ ÙØ¥ØµÙØ§Ø ØØ³Ø§Ø¨"
#: ../src/gnome/gnc-plugin-page-account-tree.c:263
#: ../src/gnome/window-reconcile2.c:2190 ../src/gnome/window-reconcile.c:2190
-msgid "Check for and repair unbalanced transactions and orphan splits in this account"
+msgid ""
+"Check for and repair unbalanced transactions and orphan splits in this "
+"account"
msgstr ""
+"تØÙÙ Ù
Ù ÙØ¥ØµÙØ Ø§ÙÙ
عاÙ
ÙØ§Øª Ø§ÙØºÙر Ù
ØªÙØ§Ø²ÙØ© ÙØ§ÙاÙÙØ³Ø§Ù
ات بدÙ٠أصÙÙ ÙÙ ÙØ°Ø§ Ø§ÙØØ³Ø§Ø¨"
#: ../src/gnome/gnc-plugin-page-account-tree.c:267
msgid "Check & Repair Su_baccounts"
msgstr "ÙØØµ Ù Ø¥ØµÙØ§Ø Ø§ÙØØ³Ø§Ø¨Ø§Øª اÙÙØ±Ø¹ÙØ©"
#: ../src/gnome/gnc-plugin-page-account-tree.c:268
-msgid "Check for and repair unbalanced transactions and orphan splits in this account and its subaccounts"
+msgid ""
+"Check for and repair unbalanced transactions and orphan splits in this "
+"account and its subaccounts"
msgstr ""
+"تØÙÙ Ù
Ù ÙØ¥ØµÙØ Ø§ÙÙ
عاÙ
ÙØ§Øª Ø§ÙØºÙر Ù
ØªÙØ§Ø²ÙØ© ÙØ§ÙاÙÙØ³Ø§Ù
ات بدÙ٠أصÙÙ ÙÙ ÙØ°Ø§ Ø§ÙØØ³Ø§Ø¨ Ù "
+"ØØ³Ø§Ø¨Ø§ØªÙ اÙÙØ±Ø¹ÙØ©"
#: ../src/gnome/gnc-plugin-page-account-tree.c:273
msgid "Check & Repair A_ll"
msgstr "ÙØØµ & Ù Ø¥ØµÙØ§Ø Ø§ÙØ¬Ù
ÙØ¹"
#: ../src/gnome/gnc-plugin-page-account-tree.c:274
-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
#: ../src/gnome/gnc-plugin-page-account-tree.c:278
#: ../src/gnome/gnc-plugin-register2.c:64
msgid "_Register2"
-msgstr ""
+msgstr "سجÙ2"
#: ../src/gnome/gnc-plugin-page-account-tree.c:341
msgid "Open2"
-msgstr ""
+msgstr "Ø£ÙØªØ2"
#. FIXME this needs an indent option
#. FIXME this could use an indent option
@@ -5528,16 +5901,16 @@ msgstr "Ø³ÙØªÙ
ØØ°Ù Ø§ÙØØ³Ø§Ø¨ %s."
#: ../src/gnome/gnc-plugin-page-account-tree.c:1337
#, c-format
msgid "All transactions in this account will be moved to the account %s."
-msgstr ""
+msgstr "Ø³ÙØªÙ
ÙÙ٠جÙ
ÙØ¹ اÙÙ
عاÙ
ÙØ§Øª ÙÙ ÙØ°Ø§ Ø§ÙØØ³Ø§Ø¨ Ø¥ÙÙ Ø§ÙØØ³Ø§Ø¨ %s."
#: ../src/gnome/gnc-plugin-page-account-tree.c:1343
msgid "All transactions in this account will be deleted."
-msgstr ""
+msgstr "Ø³ÙØªÙ
ØØ°Ù جÙ
ÙØ¹ اÙÙ
عاÙ
ÙØ§Øª ÙÙ ÙØ°Ø§ Ø§ÙØØ³Ø§Ø¨."
#: ../src/gnome/gnc-plugin-page-account-tree.c:1352
#, c-format
msgid "All of its sub-accounts will be moved to the account %s."
-msgstr ""
+msgstr "Ø³ÙØªÙ
ÙÙÙ ÙÙ Ø§ÙØØ³Ø§Ø¨Ø§Øª اÙÙØ±Ø¹ÙØ© ÙÙØØ³Ø§Ø¨ %s "
#: ../src/gnome/gnc-plugin-page-account-tree.c:1358
msgid "All of its subaccounts will be deleted."
@@ -5546,15 +5919,15 @@ msgstr "Ø³ÙØªÙ
ØØ°Ù جÙ
ÙØ¹ Ø§ÙØØ³Ø§Ø¨Ø§Øª ÙØ±Ø¹ÙØ© ÙÙØ§."
#: ../src/gnome/gnc-plugin-page-account-tree.c:1363
#, c-format
msgid "All sub-account transactions will be moved to the account %s."
-msgstr ""
+msgstr "Ø³ÙØªÙ
ÙÙ٠جÙ
ÙØ¹ Ù
عاÙ
ÙØ§Øª Ø§ÙØØ³Ø§Ø¨ اÙÙØ±Ø¹Ù ÙÙØØ³Ø§Ø¨ %s."
#: ../src/gnome/gnc-plugin-page-account-tree.c:1369
msgid "All sub-account transactions will be deleted."
-msgstr ""
+msgstr "Ø³ÙØªÙ
ØØ°Ù جÙ
ÙØ¹ Ù
عاÙ
ÙØ§Øª Ø§ÙØØ³Ø§Ø¨ اÙÙØ±Ø¹Ù."
#: ../src/gnome/gnc-plugin-page-account-tree.c:1374
msgid "Are you sure you want to do this?"
-msgstr ""
+msgstr "ÙÙ Ø£ÙØª Ù
ØªØ£ÙØ¯ Ø£ÙÙ ØªØ±ÙØ¯ Ø£Ù ØªÙØ¹Ù ÙØ°Ø§Ø"
#: ../src/gnome/gnc-plugin-page-budget.c:132
msgid "Open _Subaccounts"
@@ -5582,8 +5955,10 @@ msgid "Estimate Budget"
msgstr "ØªÙØ¯Ùرات اÙÙ
ÙØ²Ø§ÙÙØ©"
#: ../src/gnome/gnc-plugin-page-budget.c:151
-msgid "Estimate a budget value for the selected accounts from past transactions"
+msgid ""
+"Estimate a budget value for the selected accounts from past transactions"
msgstr ""
+"ØªÙØ¯Ùر ÙÙÙ
Ø© اÙÙ
ÙØ²Ø§ÙÙØ© ÙØØ³Ø§Ø¨Ø§Øª Ø§ÙØªÙØ¯ÙØ±ÙØ© اÙÙ
ختارة Ø¨ÙØ§Ø¡ عÙ٠اÙÙ
عاÙ
ÙØ§Øª Ø§ÙØ³Ø§Ø¨ÙØ©"
#: ../src/gnome/gnc-plugin-page-budget.c:178
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:12
@@ -5614,7 +5989,7 @@ msgstr "ØØ°Ù %s Ø"
#: ../src/gnome/gnc-plugin-page-budget.c:911
msgid "You must select at least one account to estimate."
-msgstr ""
+msgstr "ÙØ¬Ø¨ ØªØØ¯Ùد ØØ³Ø§Ø¨ ÙØ§ØØ¯ عÙÙ Ø§ÙØ£ÙÙ ÙÙØªÙØ¯ÙØ±."
#. **********************************************************
#. Actions
@@ -5649,39 +6024,39 @@ msgstr "_ØØ°Ù اÙÙ
عاÙ
ÙØ§Øª"
#: ../src/gnome/gnc-plugin-page-register2.c:195
#: ../src/gnome/gnc-plugin-page-register.c:200
msgid "Cu_t Split"
-msgstr ""
+msgstr "ÙØµ Ø§ÙØªÙسÙÙ
"
#: ../src/gnome/gnc-plugin-page-register2.c:196
#: ../src/gnome/gnc-plugin-page-register.c:201
msgid "_Copy Split"
-msgstr ""
+msgstr "ÙØ³Ø® Ø§ÙØªÙسÙÙ
"
#: ../src/gnome/gnc-plugin-page-register2.c:197
#: ../src/gnome/gnc-plugin-page-register.c:202
msgid "_Paste Split"
-msgstr ""
+msgstr "ÙØµÙ Ø§ÙØªÙسÙÙ
"
#: ../src/gnome/gnc-plugin-page-register2.c:198
#: ../src/gnome/gnc-plugin-page-register.c:203
msgid "Dup_licate Split"
-msgstr ""
+msgstr "ØªÙØ±Ø§Ø± Ø§ÙØªÙسÙÙ
"
#: ../src/gnome/gnc-plugin-page-register2.c:199
#: ../src/gnome/gnc-plugin-page-register.c:204
#: ../src/gnome/gnc-split-reg.c:1297
#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1025
msgid "_Delete Split"
-msgstr ""
+msgstr "ØØ°Ù Ø§ÙØªÙسÙÙ
."
#: ../src/gnome/gnc-plugin-page-register2.c:200
#: ../src/gnome/gnc-plugin-page-register.c:205
msgid "Cut the selected transaction into clipboard"
-msgstr ""
+msgstr "ÙØ·Ø¹ اÙÙ
عاÙ
ÙØ© اÙÙ
ØØ¯Ø¯Ø© ÙÙ Ø§ÙØØ§ÙØ¸Ø©"
#: ../src/gnome/gnc-plugin-page-register2.c:201
#: ../src/gnome/gnc-plugin-page-register.c:206
msgid "Copy the selected transaction into clipboard"
-msgstr ""
+msgstr "ÙØ³Ø® اÙÙ
عاÙ
ÙØ© اÙÙ
ØØ¯Ø¯Ø© ÙÙ Ø§ÙØØ§ÙØ¸Ø©"
#: ../src/gnome/gnc-plugin-page-register2.c:202
#: ../src/gnome/gnc-plugin-page-register.c:207
@@ -5701,27 +6076,27 @@ msgstr "ØØ°Ù اÙÙ
عاÙ
ÙØ© Ø§ÙØØ§ÙÙØ©"
#: ../src/gnome/gnc-plugin-page-register2.c:205
#: ../src/gnome/gnc-plugin-page-register.c:213
msgid "Cut the selected split into clipboard"
-msgstr ""
+msgstr "ÙØµ Ø§ÙØªÙسÙÙ
اÙÙ
ØØ¯Ø¯ Ø¥ÙÙ Ø§ÙØØ§ÙØ¸Ø©"
#: ../src/gnome/gnc-plugin-page-register2.c:206
#: ../src/gnome/gnc-plugin-page-register.c:214
msgid "Copy the selected split into clipboard"
-msgstr ""
+msgstr "ÙØ³Ø® Ø§ÙØªÙسÙÙ
اÙÙ
ØØ¯Ø¯ Ø¥ÙÙ Ø§ÙØØ§ÙØ¸Ø©"
#: ../src/gnome/gnc-plugin-page-register2.c:207
#: ../src/gnome/gnc-plugin-page-register.c:215
msgid "Paste the split from the clipboard"
-msgstr ""
+msgstr "ÙØµÙ Ø§ÙØªÙسÙÙ
Ù
Ù Ø§ÙØØ§ÙØ¸Ø©"
#: ../src/gnome/gnc-plugin-page-register2.c:208
#: ../src/gnome/gnc-plugin-page-register.c:216
msgid "Make a copy of the current split"
-msgstr ""
+msgstr "ÙÙ
Ø¨Ø¥ÙØ´Ø§Ø¡ ÙØ³Ø®Ø© Ù
Ù Ø§ÙØªÙسÙÙ
Ø§ÙØØ§ÙÙ"
#: ../src/gnome/gnc-plugin-page-register2.c:209
#: ../src/gnome/gnc-plugin-page-register.c:217
msgid "Delete the current split"
-msgstr ""
+msgstr "ØØ°Ù Ø§ÙØªÙسÙÙ
Ø§ÙØØ§ÙÙ"
#: ../src/gnome/gnc-plugin-page-register2.c:219
#: ../src/gnome/gnc-plugin-page-register.c:224
@@ -5740,7 +6115,7 @@ msgstr "ÙØµ"
#: ../src/gnome-utils/gnc-main-window.c:306
#: ../src/report/report-gnome/gnc-plugin-page-report.c:1019
msgid "Cut the current selection and copy it to clipboard"
-msgstr ""
+msgstr "ÙØµ Ø§ÙØªØØ¯Ùد Ø§ÙØØ§ÙÙ ÙÙØ³Ø®Ù Ø¥ÙÙ Ø§ÙØØ§ÙØ¸Ø©"
#: ../src/gnome/gnc-plugin-page-register2.c:231
#: ../src/gnome/gnc-plugin-page-register.c:236
@@ -5754,23 +6129,23 @@ msgstr "_ÙØ³Ø®"
#: ../src/gnome-utils/gnc-main-window.c:311
#: ../src/report/report-gnome/gnc-plugin-page-report.c:1024
msgid "Copy the current selection to clipboard"
-msgstr ""
+msgstr "ÙØ³Ø® Ø§ÙØªØØ¯Ùد Ø§ÙØØ§Ù٠إÙÙ Ø§ÙØØ§ÙØ¸Ø©"
#: ../src/gnome/gnc-plugin-page-register2.c:237
#: ../src/gnome/gnc-plugin-page-register.c:242
#: ../src/gnome-utils/gnc-main-window.c:316
#: ../src/report/report-gnome/gnc-plugin-page-report.c:1029
msgid "Paste the clipboard content at the cursor position"
-msgstr ""
+msgstr "ÙØµÙ Ù
ØØªÙÙ Ø§ÙØØ§ÙØ¸Ø© ÙÙ Ù
ÙØ¶Ø¹ اÙÙ
ؤشر"
#: ../src/gnome/gnc-plugin-page-register2.c:279
msgid "Remo_ve All Splits"
-msgstr ""
+msgstr "أز٠جÙ
ÙØ¹ Ø§ÙØªÙسÙÙ
ات"
#: ../src/gnome/gnc-plugin-page-register2.c:280
#: ../src/gnome/gnc-plugin-page-register.c:285
msgid "Remove all splits in the current transaction"
-msgstr ""
+msgstr "أز٠جÙ
ÙØ¹ Ø§ÙØªÙسÙÙ
ات Ù٠اÙÙ
عاÙ
ÙØ© Ø§ÙØØ§ÙÙØ©"
#: ../src/gnome/gnc-plugin-page-register2.c:284
#: ../src/gnome/gnc-plugin-page-register.c:289
@@ -5800,28 +6175,37 @@ msgstr "_Ø¥ÙØºØ§Ø¡ اÙÙ
عاÙ
ÙØ§Øª"
#: ../src/gnome/gnc-plugin-page-register2.c:298
#: ../src/gnome/gnc-plugin-page-register.c:303
msgid "_Unvoid Transaction"
-msgstr ""
+msgstr "Ø¥Ø¹ÙØ³ Ø¥ÙØºØ§Ø¡ ÙØ°Ù اÙÙ
عاÙ
ÙØ©"
#: ../src/gnome/gnc-plugin-page-register2.c:302
#: ../src/gnome/gnc-plugin-page-register.c:307
msgid "Add _Reversing Transaction"
-msgstr ""
+msgstr "Ø¥Ø¶Ø§ÙØ© Ù
عاÙ
ÙØ© Ø¹ÙØ³ÙØ©"
#: ../src/gnome/gnc-plugin-page-register2.c:306
msgid "Move Transaction _Up"
-msgstr ""
+msgstr "ØªØØ±ÙÙ ÙØ£Ø¹ÙÙ"
#: ../src/gnome/gnc-plugin-page-register2.c:307
-msgid "Move the current transaction one row upwards. Only available if the date and number of both rows are identical and the register window is sorted by date."
+msgid ""
+"Move the current transaction one row upwards. Only available if the date and "
+"number of both rows are identical and the register window is sorted by date."
msgstr ""
+"ÙÙ٠اÙÙ
عاÙ
ÙØ© ØµÙ ÙØ§ØØ¯ ØµØ¹ÙØ¯Ø§. Ù
ØªØ§Ø ÙÙØ· إذا ÙØ§Ù ØªØ§Ø±ÙØ® ÙØ¹Ø¯Ø¯ ÙÙ Ø§ÙØµÙÙÙ Ù
تطاب٠"
+"ÙÙØªÙ
ÙØ±Ø² ÙØ§Ùذة Ø§ÙØ³Ø¬Ù Ø¨Ø§ÙØªØ§Ø±ÙØ®."
#: ../src/gnome/gnc-plugin-page-register2.c:311
msgid "Move Transaction Do_wn"
-msgstr ""
+msgstr "ØªØØ±ÙÙ ÙØ£Ø³ÙÙ"
#: ../src/gnome/gnc-plugin-page-register2.c:312
-msgid "Move the current transaction one row downwards. Only available if the date and number of both rows are identical and the register window is sorted by date."
+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 ""
+"ÙÙ٠اÙÙ
عاÙ
ÙØ© ØµÙ ÙØ§ØØ¯ ÙØ²ÙÙØ§Ø§. Ù
ØªØ§Ø ÙÙØ· إذا ÙØ§Ù ØªØ§Ø±ÙØ® ÙØ¹Ø¯Ø¯ ÙÙ Ø§ÙØµÙÙÙ Ù
تطاب٠"
+"ÙÙØªÙ
ÙØ±Ø² ÙØ§Ùذة Ø§ÙØ³Ø¬Ù Ø¨Ø§ÙØªØ§Ø±ÙØ®."
#: ../src/gnome/gnc-plugin-page-register2.c:323
#: ../src/gnome-utils/gnc-main-window.c:336
@@ -5837,13 +6221,15 @@ msgstr "ØªØØ¯ÙØ« ÙØ°Ù اÙÙØ§Ùذة"
#: ../src/gnome/gnc-plugin-page-register2.c:342
#: ../src/gnome/gnc-plugin-page-register.c:351
-msgid "Automatically clear individual transactions, so as to reach a certain cleared amount"
-msgstr ""
+msgid ""
+"Automatically clear individual transactions, so as to reach a certain "
+"cleared amount"
+msgstr "Ù
Ø³Ø ØªÙÙØ§Ø¦Ù ÙÙÙ
عاÙ
ÙØ§Øª اÙÙØ±Ø¯ÙØ©Ø ØØªÙ تص٠إÙÙ Ù
Ø¨ÙØº Ù
عÙ٠تÙ
Ù
سØÙ"
#: ../src/gnome/gnc-plugin-page-register2.c:356
#: ../src/gnome/gnc-plugin-page-register.c:365
msgid "_Blank Transaction"
-msgstr ""
+msgstr "_Ù
عاÙ
ÙØ© ÙØ§Ø±ØºØ©"
#: ../src/gnome/gnc-plugin-page-register2.c:357
#: ../src/gnome/gnc-plugin-page-register.c:366
@@ -5858,7 +6244,7 @@ msgstr "ØªØØ±Ùر سعر Ø§ÙØµØ±Ù"
#: ../src/gnome/gnc-plugin-page-register2.c:362
#: ../src/gnome/gnc-plugin-page-register.c:371
msgid "Edit the exchange rate for the current transaction"
-msgstr ""
+msgstr "ØªØØ±Ùر سعر Ø§ÙØµØ±Ù ÙÙÙ
عاÙ
ÙØ© Ø§ÙØØ§ÙÙØ©"
#: ../src/gnome/gnc-plugin-page-register2.c:366
#: ../src/gnome/gnc-plugin-page-register.c:375
@@ -5878,8 +6264,9 @@ msgstr "Ø§ÙØ¬Ø¯ÙÙ Ø§ÙØ²Ù
ÙÙ..."
#: ../src/gnome/gnc-plugin-page-register2.c:372
#: ../src/gnome/gnc-plugin-page-register.c:381
-msgid "Create a Scheduled Transaction with the current transaction as a template"
-msgstr ""
+msgid ""
+"Create a Scheduled Transaction with the current transaction as a template"
+msgstr "Ø¥ÙØ´Ø§Ø¡ Ù
عاÙ
ÙØ© Ù
جدÙÙØ© بإستخداÙ
اÙÙ
عاÙ
ÙØ© Ø§ÙØØ§ÙÙØ© ÙÙØ§Ùب"
#: ../src/gnome/gnc-plugin-page-register2.c:376
#: ../src/gnome/gnc-plugin-page-register.c:385
@@ -5904,42 +6291,42 @@ msgstr "ÙØªØ Ø³Ø¬Ù ØªÙØ±Ùر ÙÙØ°Ø§ Ø§ÙØØ³Ø§Ø¨"
#: ../src/gnome/gnc-plugin-page-register2.c:392
#: ../src/gnome/gnc-plugin-page-register.c:401
msgid "Account Report - Single Transaction"
-msgstr ""
+msgstr "ØªÙØ±Ùر Ø§ÙØØ³Ø§Ø¨-Ù
عاÙ
ÙØ© ÙØ§ØØ¯Ø©"
#: ../src/gnome/gnc-plugin-page-register2.c:393
#: ../src/gnome/gnc-plugin-page-register.c:402
msgid "Open a register report for the selected Transaction"
-msgstr ""
+msgstr "ÙØªØ ØªÙØ±Ùر سج٠ÙÙÙ
عاÙ
ÙØ§Øª اÙÙ
ØØ¯Ø¯Ø©"
#: ../src/gnome/gnc-plugin-page-register2.c:403
#: ../src/gnome/gnc-plugin-page-register.c:412
msgid "_Double Line"
-msgstr ""
+msgstr "خط Ù
Ø²Ø¯ÙØ¬"
#: ../src/gnome/gnc-plugin-page-register2.c:404
#: ../src/gnome/gnc-plugin-page-register.c:413
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:89
msgid "Show two lines of information for each transaction"
-msgstr ""
+msgstr "Ø¥Ø¸ÙØ§Ø± سطرÙÙ Ù
٠اÙÙ
عÙÙÙ
ات ÙÙÙ Ù
عاÙ
ÙØ©"
#: ../src/gnome/gnc-plugin-page-register2.c:409
msgid "Show _Extra Dates"
-msgstr ""
+msgstr "Ø¥Ø¸ÙØ§Ø± Ø§ÙØªÙØ§Ø±ÙØ® Ø§ÙØ¥Ø¶Ø§ÙÙØ©"
#: ../src/gnome/gnc-plugin-page-register2.c:410
msgid "Show entered and reconciled dates"
-msgstr ""
+msgstr "Ø£Ø¸ÙØ± ØªÙØ§Ø±ÙØ® Ø§ÙØ¥Ø¯Ø®Ø§Ù Ù Ø§ÙØªØ³ÙÙØ©"
#: ../src/gnome/gnc-plugin-page-register2.c:415
#: ../src/gnome/gnc-plugin-page-register.c:418
#: ../src/gnome-utils/gnc-icons.c:44
msgid "S_plit Transaction"
-msgstr ""
+msgstr "ØªÙØ³ÙÙ
اÙÙ
عاÙ
ÙØ§Øª"
#: ../src/gnome/gnc-plugin-page-register2.c:416
#: ../src/gnome/gnc-plugin-page-register.c:419
msgid "Show all splits in the current transaction"
-msgstr ""
+msgstr "عرض ÙÙ Ø§ÙØªÙسÙÙ
ات Ù٠اÙÙ
عاÙ
ÙØ© Ø§ÙØØ§ÙÙØ©"
#: ../src/gnome/gnc-plugin-page-register2.c:427
#: ../src/gnome/gnc-plugin-page-register.c:430
@@ -5949,17 +6336,18 @@ msgstr "Ø¯ÙØªØ± Ø§ÙØ£Ø³ØªØ§Ø° Ø§ÙØ£Ø³Ø§Ø³Ù"
#: ../src/gnome/gnc-plugin-page-register2.c:428
#: ../src/gnome/gnc-plugin-page-register.c:431
msgid "Show transactions on one or two lines"
-msgstr ""
+msgstr "Ø¥Ø¸ÙØ§Ø± اÙÙ
عاÙ
ÙØ§Øª عÙ٠خط أ٠اثÙÙÙ"
#: ../src/gnome/gnc-plugin-page-register2.c:432
#: ../src/gnome/gnc-plugin-page-register.c:435
msgid "_Auto-Split Ledger"
-msgstr ""
+msgstr "Ø¯ÙØªØ± Ø§ÙØ£Ø³ØªØ§Ø° ÙÙØªÙسÙÙ
Ø§ÙØ¢ÙÙ"
#: ../src/gnome/gnc-plugin-page-register2.c:433
#: ../src/gnome/gnc-plugin-page-register.c:436
-msgid "Show transactions on one or two lines and expand the current transaction"
-msgstr ""
+msgid ""
+"Show transactions on one or two lines and expand the current transaction"
+msgstr "Ø¥Ø¸ÙØ§Ø± اÙÙ
عاÙ
ÙØ§Øª عÙ٠خط أ٠اثÙÙÙ ÙÙØ³Ø¹ اÙÙ
عاÙ
ÙØ© Ø§ÙØØ§ÙÙØ©"
#: ../src/gnome/gnc-plugin-page-register2.c:437
#: ../src/gnome/gnc-plugin-page-register.c:440
@@ -5970,7 +6358,7 @@ msgstr "Ù
عاÙ
ÙØ§Øª Ø¯ÙØªØ± اÙÙÙÙ
ÙØ©"
#: ../src/gnome/gnc-plugin-page-register2.c:438
#: ../src/gnome/gnc-plugin-page-register.c:441
msgid "Show expanded transactions with all splits"
-msgstr ""
+msgstr "Ù
Ø´Ø§ÙØ¯Ø© ØªÙØ³Ùعات اÙÙ
عاÙ
ÙØ§Øª Ù
ع جÙ
ÙØ¹ Ø§ÙØªÙسÙÙ
ات"
#: ../src/gnome/gnc-plugin-page-register2.c:476
#: ../src/gnome/gnc-plugin-page-register.c:479
@@ -5986,7 +6374,7 @@ msgstr "ÙÙÙ"
#: ../src/gnome/gnc-plugin-page-register.c:484
#: ../src/gnome-search/dialog-search.c:1085
msgid "Split"
-msgstr ""
+msgstr "ØªÙØ³ÙÙ
"
#: ../src/gnome/gnc-plugin-page-register2.c:482
#: ../src/gnome/gnc-plugin-page-register.c:485
@@ -6001,12 +6389,14 @@ msgid "Auto-clear"
msgstr "Ù
Ø³Ø ØªÙÙØ§Ø¦Ù"
#: ../src/gnome/gnc-plugin-page-register2.c:679
-msgid "You have tried to open an account in the new register while it is open in the old register."
-msgstr ""
+msgid ""
+"You have tried to open an account in the new register while it is open in "
+"the old register."
+msgstr "ÙÙØ¯ ØØ§ÙÙØª ÙØªØ ØØ³Ø§Ø¨ ÙÙ Ø§ÙØ³Ø¬Ù Ø§ÙØ¬Ø¯Ùد Ø£Ø«ÙØ§Ø¡ ÙØªØÙ ÙÙ Ø§ÙØ³Ø¬Ù اÙÙØ¯ÙÙ
."
#: ../src/gnome/gnc-plugin-page-register2.c:752
msgid "General Ledger2"
-msgstr ""
+msgstr "Ø§ÙØ§Ø³ØªØ§Ø°Ø§ÙعاÙ
2"
#. Translators: %s is the name
#. of the tab page
@@ -6018,8 +6408,13 @@ msgstr "ÙÙ ØªØ±ÙØ¯ ØÙظ Ø§ÙØªØºÙÙØ±Ø§Øª Ø¥ÙÙ %s?"
#: ../src/gnome/gnc-plugin-page-register2.c:1617
#: ../src/gnome/gnc-plugin-page-register.c:1548
-msgid "This register has pending changes to a transaction. Would you like to save the changes to this transaction, discard the transaction, or cancel the operation?"
+msgid ""
+"This register has pending changes to a transaction. Would you like to save "
+"the changes to this transaction, discard the transaction, or cancel the "
+"operation?"
msgstr ""
+"Ø§ÙØ³Ø¬Ù عÙÙ٠تغÙÙØ±Ø§Øª Ù
عÙÙØ© ÙÙ
عاÙ
ÙØ©. Ù٠ترغب ÙÙ ØÙظ Ø§ÙØªØºÙÙØ±Ø§Øª Ø¥ÙÙ ÙØ°Ù "
+"اÙÙ
عاÙ
ÙØ©Ø تجاÙ٠اÙÙ
عاÙ
ÙØ©Ø Ø£Ù ÙÙ
Ø¨Ø¥ÙØºØ§Ø¡ Ø§ÙØ¹Ù
ÙÙØ©Ø"
#: ../src/gnome/gnc-plugin-page-register2.c:1620
#: ../src/gnome/gnc-plugin-page-register.c:1551
@@ -6107,8 +6502,12 @@ msgstr "طباعة Ø§ÙØ´ÙÙØ§Øª Ù
Ù ØØ³Ø§Ø¨Ø§Øª Ù
تعددةØ"
#: ../src/gnome/gnc-plugin-page-register2.c:2632
#: ../src/gnome/gnc-plugin-page-register.c:2764
-msgid "This search result contains splits from more than one account. Do you want to print the checks even though they are not all from the same account?"
+msgid ""
+"This search result contains splits from more than one account. Do you want "
+"to print the checks even though they are not all from the same account?"
msgstr ""
+"ÙØªÙجة ÙØ°Ø§ Ø§ÙØ¨ØØ« ØªØØªÙ٠عÙÙ ØªÙØ³ÙÙ
ات Ù
Ù Ø£ÙØ«Ø± Ù
Ù ØØ³Ø§Ø¨ ÙØ§ØØ¯. Ù٠ترغب Ù٠طباعة "
+"Ø§ÙØ´ÙÙØ§Øª عÙÙ Ø§ÙØ±ØºÙ
Ù
٠أÙÙÙ
ÙÙØ³Ùا جÙ
ÙØ¹Ø§ Ù
Ù ÙÙØ³ Ø§ÙØØ³Ø§Ø¨Ø"
#: ../src/gnome/gnc-plugin-page-register2.c:2643
#: ../src/gnome/gnc-plugin-page-register.c:2775
@@ -6117,13 +6516,14 @@ msgstr "_طباعة Ø§ÙØ´ÙÙØ§Øª"
#: ../src/gnome/gnc-plugin-page-register2.c:2662
#: ../src/gnome/gnc-plugin-page-register.c:2794
-msgid "You can only print checks from a bank account register or search results."
-msgstr ""
+msgid ""
+"You can only print checks from a bank account register or search results."
+msgstr "ÙÙ
ÙÙÙ ÙÙØ· طباعة Ø§ÙØ´ÙÙØ§Øª Ù
Ù Ø³Ø¬Ù ØØ³Ø§Ø¨ Ù
صرÙÙ Ø£Ù ÙØªØ§Ø¦Ø¬ Ø§ÙØ¨ØØ«."
#: ../src/gnome/gnc-plugin-page-register2.c:2854
#: ../src/gnome/gnc-plugin-page-register.c:2954
msgid "You cannot void a transaction with reconciled or cleared splits."
-msgstr ""
+msgstr "ÙØ§ ÙÙ
ÙÙ٠إبطا٠Ù
عاÙ
ÙØ© Ù
ع ØªÙØ³ÙÙ
ات Ù
Ø³ÙØ§Ù Ø£Ù Ù
Ù
Ø³ÙØØ©."
#. Translators: The %s is the name of the plugin page
#: ../src/gnome/gnc-plugin-page-register2.c:2998
@@ -6136,31 +6536,31 @@ msgstr "تصÙÙØ© %s Ù
Ù ÙØ¨Ù..."
#: ../src/gnome/gnc-plugin-page-register.c:197
msgid "_Associate File with Transaction"
-msgstr ""
+msgstr "ربط اÙÙ
ÙÙ Ù
ع Ù
عاÙ
ÙØ©"
#: ../src/gnome/gnc-plugin-page-register.c:198
msgid "_Associate Location with Transaction"
-msgstr ""
+msgstr "ربط اÙÙ
ÙÙØ¹ Ù
ع Ù
عاÙ
ÙØ©"
#: ../src/gnome/gnc-plugin-page-register.c:199
msgid "_Open Associated File/Location"
-msgstr ""
+msgstr "ÙÙ
Ø¨ÙØªØ اÙÙ
Ù٠اÙÙ
ÙØªØ±Ù أ٠اÙÙ
ÙÙØ¹ اÙÙ
ÙØªØ±Ù"
#: ../src/gnome/gnc-plugin-page-register.c:210
msgid "Associate a file with the current transaction"
-msgstr ""
+msgstr "ربط Ù
ÙÙ Ù
ع اÙÙ
عاÙ
ÙØ© Ø§ÙØØ§ÙÙØ©"
#: ../src/gnome/gnc-plugin-page-register.c:211
msgid "Associate a location with the current transaction"
-msgstr ""
+msgstr "ربط اÙÙ
ÙÙØ¹ Ù
ع اÙÙ
عاÙ
ÙØ© Ø§ÙØØ§ÙÙØ©"
#: ../src/gnome/gnc-plugin-page-register.c:212
msgid "Open the associated file or location with the current transaction"
-msgstr ""
+msgstr "ÙÙ
Ø¨ÙØªØ اÙÙ
Ù٠اÙÙ
ÙØªØ±Ù أ٠اÙÙ
ÙÙØ¹ ÙÙØ¹Ù
ÙÙØ© Ø§ÙØØ§ÙÙØ©"
#: ../src/gnome/gnc-plugin-page-register.c:284
msgid "Remo_ve Other Splits"
-msgstr ""
+msgstr "Ø£Ø²Ù Ø§ÙØªÙسÙÙ
ات Ø§ÙØ£Ø®Ø±Ù"
#: ../src/gnome/gnc-plugin-page-register.c:329
#: ../src/gnome-utils/gnc-main-window.c:328
@@ -6169,19 +6569,21 @@ msgstr "ÙØ±Ø² ØØ³Ø¨..."
#: ../src/gnome/gnc-plugin-page-register.c:489
msgid "Associate File"
-msgstr ""
+msgstr "Ø§ÙØ±Ù Ù
ÙÙ"
#: ../src/gnome/gnc-plugin-page-register.c:490
msgid "Associate Location"
-msgstr ""
+msgstr "Ø¥ÙØ±Ù Ù
ÙÙØ¹"
#: ../src/gnome/gnc-plugin-page-register.c:491
msgid "Open File/Location"
-msgstr ""
+msgstr "ÙØªØ Ù
ÙÙ/Ù
ÙÙØ¹"
#: ../src/gnome/gnc-plugin-page-register.c:685
-msgid "You have tried to open an account in the old register while it is open in the new register."
-msgstr ""
+msgid ""
+"You have tried to open an account in the old register while it is open in "
+"the new register."
+msgstr "ÙÙØ¯ ØØ§ÙÙØª ÙØªØ ØØ³Ø§Ø¨ ÙÙ Ø§ÙØ³Ø¬Ù اÙÙØ¯ÙÙ
Ø£Ø«ÙØ§Ø¡ ÙØªØÙ ÙÙ Ø§ÙØ³Ø¬Ù Ø§ÙØ¬Ø¯Ùد."
#. Define the strings here to avoid typos and make changes easier.
#: ../src/gnome/gnc-plugin-page-register.c:2565
@@ -6194,7 +6596,7 @@ msgstr "ØªÙØ±Ùر ع٠Ù
عاÙ
ÙØ©"
#: ../src/gnome/gnc-split-reg.c:882
#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1123
msgid "A reversing entry has already been created for this transaction."
-msgstr ""
+msgstr "تÙ
Ø¥Ø¯Ø®Ø§Ù Ø¹ÙØ³Ù Ù
Ø³Ø¨ÙØ§Ù ÙÙØ°Ù Ø§ÙØØ±ÙØ©."
#. Translations: The %s is the name of the plugin page
#: ../src/gnome/gnc-plugin-page-register.c:3076
@@ -6204,7 +6606,7 @@ msgstr "ÙØ±Ø² %s Ù
Ù ÙØ¨Ù..."
#: ../src/gnome/gnc-plugin-page-sx-list.c:132
msgid "_Scheduled"
-msgstr ""
+msgstr "_Ù
جدÙÙØ©"
#: ../src/gnome/gnc-plugin-page-sx-list.c:134
msgid "_New"
@@ -6212,41 +6614,41 @@ msgstr "_Ø¬Ø¯ÙØ¯"
#: ../src/gnome/gnc-plugin-page-sx-list.c:135
msgid "Create a new scheduled transaction"
-msgstr ""
+msgstr "Ø¥ÙØ´Ø§Ø¡ Ù
عاÙ
ÙØ© Ø¬Ø¯ÙØ¯Ø© Ù
جدÙÙØ©"
#: ../src/gnome/gnc-plugin-page-sx-list.c:140
msgid "_New 2"
-msgstr ""
+msgstr "Ø¬Ø¯ÙØ¯2"
#: ../src/gnome/gnc-plugin-page-sx-list.c:141
msgid "Create a new scheduled transaction 2"
-msgstr ""
+msgstr "Ø¥ÙØ´Ø§Ø¡ Ù
عاÙ
ÙØ© Ø¬Ø¯ÙØ¯Ø© Ù
جدÙÙØ© 2"
#: ../src/gnome/gnc-plugin-page-sx-list.c:147
msgid "Edit the selected scheduled transaction"
-msgstr ""
+msgstr "ØªØØ±Ùر اÙÙ
عاÙ
ÙØ© اÙÙ
جدÙÙØ© اÙÙ
ØØ¯Ø¯Ø©"
#: ../src/gnome/gnc-plugin-page-sx-list.c:152
msgid "_Edit 2"
-msgstr ""
+msgstr "ØªØØ±Ùر2"
#: ../src/gnome/gnc-plugin-page-sx-list.c:153
msgid "Edit the selected scheduled transaction 2"
-msgstr ""
+msgstr "ØªØØ±Ùر اÙÙ
عاÙ
ÙØ§Øª اÙÙ
جدÙÙØ© اÙÙ
ØØ¯Ø¯Ø© 2"
#: ../src/gnome/gnc-plugin-page-sx-list.c:159
msgid "Delete the selected scheduled transaction"
-msgstr ""
+msgstr "ØØ°Ù اÙÙ
عاÙ
ÙØ© اÙÙ
جدÙÙØ© اÙÙ
ØØ¯Ø¯Ø©"
#: ../src/gnome/gnc-plugin-page-sx-list.c:379
#, c-format
msgid "Transactions"
-msgstr ""
+msgstr "Ù
عاÙ
ÙØ§Øª"
#: ../src/gnome/gnc-plugin-page-sx-list.c:441
#, c-format
msgid "Upcoming Transactions"
-msgstr ""
+msgstr "اÙÙ
عاÙ
ÙØ§Øª اÙÙØ§Ø¯Ù
Ø©"
#. FIXME: Does this always refer to only one transaction? Or could
#. multiple SXs be deleted as well? Ideally, the number of
@@ -6254,7 +6656,7 @@ msgstr ""
#. dialog-sx-since-last-run.c:807
#: ../src/gnome/gnc-plugin-page-sx-list.c:763
msgid "Do you really want to delete this scheduled transaction?"
-msgstr ""
+msgstr "ÙÙ ØªØ±ÙØ¯ ØØ°Ù ÙØ°Ù اÙÙ
عاÙ
ÙØ© اÙÙ
جدÙÙØ© ØÙØ§ÙØ"
#: ../src/gnome/gnc-plugin-register2.c:57
#: ../src/gnome/gnc-plugin-register.c:58
@@ -6268,19 +6670,19 @@ msgstr "ÙØªØ ÙØ§Ùذة Ø¯ÙØªØ± Ø§ÙØ£Ø³ØªØ§Ø° Ø§ÙØ¹Ø§Ù
"
#: ../src/gnome/gnc-plugin-register2.c:66
#: ../src/gnome/gnc-plugin-register2.c:67
msgid "Register2 Open GL Account"
-msgstr ""
+msgstr "سجÙ2 ÙØªØ ØØ³Ø§Ø¨ أستاذ عاÙ
"
#: ../src/gnome/gnc-plugin-register.c:54
msgid "Old St_yle General Ledger"
-msgstr ""
+msgstr "Ø¯ÙØªØ± Ø§ÙØ£Ø³ØªØ§Ø° Ø§ÙØ¹Ø§Ù
باÙÙÙ
Ø· اÙÙØ¯ÙÙ
"
#: ../src/gnome/gnc-plugin-register.c:55
msgid "Open an old style general ledger window"
-msgstr ""
+msgstr "ÙØªØ ÙØ§Ùذة Ø¯ÙØªØ± أستاذ عاÙ
ÙÙ
Ø· ÙØ¯ÙÙ
"
#: ../src/gnome/gnc-plugin-register.c:59
msgid "Open general ledger window"
-msgstr ""
+msgstr "ÙØªØ ÙØ§Ùذة Ø¯ÙØªØ± Ø§ÙØ£Ø³ØªØ§Ø° Ø§ÙØ¹Ø§Ù
"
#: ../src/gnome/gnc-split-reg2.c:625 ../src/gnome/gnc-split-reg.c:636
msgid "<No information>"
@@ -6288,7 +6690,7 @@ msgstr "<ÙØ§ ØªÙØ¬Ø¯ Ù
عÙÙÙ
ات>"
#: ../src/gnome/gnc-split-reg2.c:764 ../src/gnome/gnc-split-reg.c:1624
msgid "Balancing entry from reconcilation"
-msgstr ""
+msgstr "Ù
ÙØ§Ø²ÙØ© اÙÙ
Ø¯Ø®ÙØ§Øª Ù
Ù Ø§ÙØªØ³ÙÙØ©"
#: ../src/gnome/gnc-split-reg2.c:935 ../src/gnome/gnc-split-reg.c:2082
msgid "Present:"
@@ -6304,7 +6706,7 @@ msgstr "Ù
سØ:"
#: ../src/gnome/gnc-split-reg2.c:938 ../src/gnome/gnc-split-reg.c:2085
msgid "Reconciled:"
-msgstr ""
+msgstr "تسÙÙØ© :"
#: ../src/gnome/gnc-split-reg2.c:939 ../src/gnome/gnc-split-reg.c:2086
msgid "Projected Minimum:"
@@ -6320,23 +6722,40 @@ msgstr "اÙÙÙÙ
Ø© Ø§ÙØØ§ÙÙØ©:"
#: ../src/gnome/gnc-split-reg2.c:1019
msgid "Account Payable / Receivable Register"
-msgstr ""
+msgstr "Ø³Ø¬Ù ØØ³Ø§Ø¨Ø§Øª اÙÙ
دÙÙØ¹Ø§Øª / اÙÙ
ÙØ¨Ùضات"
#: ../src/gnome/gnc-split-reg2.c:1021
-msgid "The register displayed is for Account Payable or Account Receivable. Changing the entries may cause harm, please use the business options to change the entries."
+msgid ""
+"The register displayed is for Account Payable or Account Receivable. "
+"Changing the entries may cause harm, please use the business options to "
+"change the entries."
msgstr ""
+"Ø§ÙØ³Ø¬Ù اÙÙ
Ø¹Ø±ÙØ¶ ÙÙ ÙØØ³Ø§Ø¨ اÙÙ
دÙÙØ¹Ø§Øª أ٠اÙÙ
ÙØ¨Ùضات. تغÙÙØ± Ø§ÙØ¥Ø¯Ø®Ø§Ùات ÙØ¯ ÙØ³Ø¨Ø¨ Ø¶Ø±Ø±Ø "
+"ÙØ±Ø¬Ù استخداÙ
Ø®ÙØ§Ø±Ø§Øª Ø§ÙØ£Ø¹Ù
Ø§Ù ÙØªØºÙÙØ± Ø§ÙØ¥Ø¯Ø®Ø§Ùات."
#: ../src/gnome/gnc-split-reg2.c:1068 ../src/gnome/gnc-split-reg.c:2165
msgid "This account register is read-only."
msgstr "ÙØ°Ø§ Ø³Ø¬Ù Ø§ÙØØ³Ø§Ø¨ ÙÙÙØ±Ø§Ø¡Ø© ÙÙØ·"
#: ../src/gnome/gnc-split-reg2.c:1111 ../src/gnome/gnc-split-reg.c:2208
-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."
+msgid ""
+"This account may not be edited. If you want to edit transactions in this "
+"register, please open the account options and turn off the placeholder "
+"checkbox."
msgstr ""
+"ÙØ§ ÙØ¬Ùز Ø£Ù ØªØ¹Ø¯Ù ÙØ°Ø§ Ø§ÙØØ³Ø§Ø¨. إذا ÙÙØª ترغب Ù٠تعدÙ٠اÙÙ
عاÙ
ÙØ§Øª ÙÙ ÙØ°Ø§ Ø§ÙØ³Ø¬ÙØ "
+"Ø§ÙØ±Ø¬Ø§Ø¡ ÙØªØ Ø®ÙØ§Ø±Ø§Øª Ø§ÙØØ³Ø§Ø¨ ÙØ¹Ø¯Ù
Ø¥Ø®ØªÙØ§Ø± Ù
ربع اÙÙ
ÙØ§Ù اÙÙ
ØØ¬Ùز"
#: ../src/gnome/gnc-split-reg2.c:1118 ../src/gnome/gnc-split-reg.c:2215
-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."
+msgid ""
+"One of the sub-accounts selected may not be edited. If you want to edit "
+"transactions in this register, please open the sub-account options and turn "
+"off the placeholder checkbox. You may also open an individual account "
+"instead of a set of accounts."
msgstr ""
+"ÙØ§ ÙÙ
ÙÙ ØªØØ±Ùر Ø£ØØ¯ Ø§ÙØØ³Ø§Ø¨Ø§Øª اÙÙØ±Ø¹ÙØ© اÙÙ
ØØ¯Ø¯Ø©. إذا ÙÙØª ترغب Ù٠تعدÙ٠اÙÙ
عاÙ
ÙØ§Øª "
+"ÙÙ ÙØ°Ø§ Ø§ÙØ³Ø¬ÙØ Ø§ÙØ±Ø¬Ø§Ø¡ ÙØªØ Ø®ÙØ§Ø±Ø§Øª Ø§ÙØØ³Ø§Ø¨ اÙÙØ±Ø¹Ù ÙØ¹Ø¯Ù
Ø¥Ø®ØªÙØ§Ø± اÙÙ
ÙØ§Ù اÙÙ
ØØ¬Ùز. "
+"ÙÙ
ÙÙÙ Ø£ÙØ¶Ø§ ÙØªØ ØØ³Ø§Ø¨ ÙØ±Ø¯ÙØ© Ø¨Ø¯ÙØ§ Ù
Ù Ù
جÙ
ÙØ¹Ø© Ù
Ù Ø§ÙØØ³Ø§Ø¨Ø§Øª."
#: ../src/gnome/gnc-split-reg.c:909
#: ../src/gnome-utils/gnc-tree-control-split-reg.c:66
@@ -6347,57 +6766,75 @@ msgstr "ÙØ§ ÙÙ
Ù٠تعدÙÙ Ø£Ù ØØ°Ù ÙØ°Ù اÙÙ
عاÙ
ÙØ©."
#: ../src/gnome-utils/gnc-tree-control-split-reg.c:68
#, c-format
msgid "This transaction is marked read-only with the comment: '%s'"
-msgstr ""
+msgstr "ÙØ°Ù اÙÙ
عاÙ
ÙØ© ÙÙÙØ±Ø§Ø¡Ø© ÙÙØ·. Ù
ع Ù
ÙØÙØ¸Ø© %s"
#: ../src/gnome/gnc-split-reg.c:923
#: ../src/gnome-utils/gnc-tree-control-split-reg.c:83
-msgid "The date of this transaction is older than the \"Read-Only Threshold\" set for this book. This setting can be changed in File -> Properties -> Accounts."
+msgid ""
+"The date of this transaction is older than the \"Read-Only Threshold\" set "
+"for this book. This setting can be changed in File -> Properties -> Accounts."
msgstr ""
+"ØªØ§Ø±ÙØ® ÙØ°Ù Ø§ÙØµÙÙØ© Ø£ÙØ¯Ù
Ù
٠عتبة ÙÙÙØ±Ø§Ø¡Ø© ÙÙØ· اÙÙ
ØØ¯Ø¯Ø© ÙÙØ°Ø§ Ø§ÙØ¯Ùتر. ÙÙ
Ù٠تغÙÙØ± "
+"ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙÙ Ù
ÙÙ - خصائص - ØØ³Ø§Ø¨Ø§Øª."
#: ../src/gnome/gnc-split-reg.c:959
#: ../src/gnome-utils/gnc-tree-control-split-reg.c:841
msgid "Remove the splits from this transaction?"
-msgstr ""
+msgstr "Ø¥Ø²Ø§ÙØ© Ø§ÙØªÙسÙÙ
ات Ù
Ù ÙØ°Ù اÙÙ
عاÙ
ÙØ©Ø"
#: ../src/gnome/gnc-split-reg.c:960
#: ../src/gnome-utils/gnc-tree-control-split-reg.c:842
-msgid "This transaction contains reconciled splits. Modifying it is not a good idea because that will cause your reconciled balance to be off."
+msgid ""
+"This transaction contains reconciled splits. Modifying it is not a good idea "
+"because that will cause your reconciled balance to be off."
msgstr ""
+"ÙØ°Ù Ø§ÙØµÙÙØ© ÙØØªÙ٠عÙÙ ØªÙØ³ÙÙ
ات Ù
Ø³ÙØ§Ù. Ø§ÙØªØ¹Ø¯ÙÙ ÙÙØ³ ÙÙØ±Ø© Ø¬ÙØ¯Ø© ÙØ£Ù ذÙ٠سÙÙ ÙØ¬Ø¹Ù "
+"Ø±ØµÙØ¯ Ø§ÙØªØ³ÙÙØ© ØºÙØ± دÙÙÙ."
#: ../src/gnome/gnc-split-reg.c:987
#: ../src/gnome-utils/gnc-tree-control-split-reg.c:888
msgid "_Remove Splits"
-msgstr ""
+msgstr "Ø£Ø²Ù Ø§ÙØªÙسÙÙ
ات"
#: ../src/gnome/gnc-split-reg.c:1180
msgid "This transaction is not associated with a URI."
-msgstr ""
+msgstr "ÙØ§ ترتبط ÙØ°Ù اÙÙ
عاÙ
ÙØ© Ù
ع URI."
#: ../src/gnome/gnc-split-reg.c:1236
#: ../src/gnome-utils/gnc-tree-control-split-reg.c:964
#, c-format
msgid "Delete the split '%s' from the transaction '%s'?"
-msgstr ""
+msgstr "ØØ°Ù Ø§ÙØªÙسÙÙ
%s Ù
Ù Ø§ÙØ¹Ù
ÙÙØ© %sØ"
#: ../src/gnome/gnc-split-reg.c:1237
#: ../src/gnome-utils/gnc-tree-control-split-reg.c:965
-msgid "You would be deleting a reconciled split! This is not a good idea as it will cause your reconciled balance to be off."
+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 ""
+"ØØ°Ù Ø§ÙØªÙسÙÙ
اÙÙ
سÙÙ ÙÙØ³ ÙÙØ±Ø© Ø¬ÙØ¯Ø© ÙØ£Ù٠سÙÙ ÙØ¤Ø¯Ù ÙÙÙÙ Ø±ØµÙØ¯Ù اÙÙ
سÙÙ ØºÙØ± دÙÙÙ."
#: ../src/gnome/gnc-split-reg.c:1240
#: ../src/gnome-utils/gnc-tree-control-split-reg.c:968
msgid "You cannot delete this split."
-msgstr ""
+msgstr "ÙØ§ ÙÙ
ÙÙÙ ØØ°Ù ÙØ°Ø§ Ø§ÙØªÙسÙÙ
."
#: ../src/gnome/gnc-split-reg.c:1241
#: ../src/gnome-utils/gnc-tree-control-split-reg.c:969
-msgid "This is the split anchoring this transaction to the register. You may not delete it from this register window. You may delete the entire transaction from this window, or you may navigate to a register that shows another side of this same transaction and delete the split from that register."
+msgid ""
+"This is the split anchoring this transaction to the register. You may not "
+"delete it from this register window. You may delete the entire transaction "
+"from this window, or you may navigate to a register that shows another side "
+"of this same transaction and delete the split from that register."
msgstr ""
+"ÙØ°Ø§ Ø§ÙØªÙسÙÙ
ÙÙ Ø§ÙØ°Ù ÙØ±Ø¨Ø· ÙØ°Ù اÙÙ
عاÙ
ÙØ© Ø¥ÙÙ Ø§ÙØ³Ø¬Ù. ÙØ§ ØªØ³ØªØ·ÙØ¹ ØØ°ÙÙ Ù
Ù ÙØ§Ùذة "
+"Ø§ÙØ³Ø¬Ù ÙØ°Ù. ØªØ³ØªØ·ÙØ¹ ØØ°Ù اÙÙ
عاÙ
ÙØ© باÙÙØ§Ù
Ù Ù
Ù ÙØ°Ù اÙÙØ§ÙØ°Ø©Ø Ø£Ù Ø§ÙØªÙÙ Ø³Ø¬Ù ÙØ¸Ùر "
+"Ø¬Ø§ÙØ¨ آخر Ù
Ù ÙØ°Ù اÙÙ
عاÙ
ÙØ© ÙÙØ³Ùا Ù Ø¥ØØ°Ù Ø§ÙØªÙسÙÙ
Ù
٠ذÙÙ Ø§ÙØ³Ø¬Ù."
#: ../src/gnome/gnc-split-reg.c:1269
#: ../src/gnome-utils/gnc-tree-control-split-reg.c:997
msgid "(no memo)"
-msgstr ""
+msgstr "(ÙØ§ ÙÙØ¬Ø¯Ù
Ø°ÙØ±Ø©)"
#: ../src/gnome/gnc-split-reg.c:1272
#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1000
@@ -6411,180 +6848,265 @@ msgstr "ØØ°Ù اÙÙ
عاÙ
ÙØ© Ø§ÙØØ§ÙÙØ©Ø"
#: ../src/gnome/gnc-split-reg.c:1314
#: ../src/gnome-utils/gnc-tree-control-split-reg.c:1042
-msgid "You would be deleting a transaction with reconciled splits! This is not a good idea as it will cause your reconciled balance to be off."
+msgid ""
+"You would be deleting a transaction with reconciled splits! This is not a "
+"good idea as it will cause your reconciled balance to be off."
msgstr ""
+"ØØ°Ù Ù
عاÙ
ÙØ© Ø¨Ù ØªÙØ³ÙÙ
ات Ù
Ø³ÙØ§Ù ÙÙØ³ ÙÙØ±Ø© Ø¬ÙØ¯Ø© ÙØ£Ù٠سÙÙ ÙØ¤Ø¯Ù ÙÙÙÙ Ø±ØµÙØ¯Ù اÙÙ
سÙÙ "
+"ØºÙØ± دÙÙÙ."
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:1
msgid "GUID of predefined check format to use"
-msgstr ""
+msgstr "GUID ÙÙÙ
Ø· Ø§ÙØ´ÙÙØ§Øª اÙÙ
ØØ¯Ø¯ Ù
Ù ÙØ¨Ù"
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:2
-msgid "This value specifies the predefined check format to use. The number is the guid of a known check format."
+msgid ""
+"This value specifies the predefined check format to use. The number is the "
+"guid of a known check format."
msgstr ""
+"ØªØØ¯Ø¯ ÙØ°Ù اÙÙÙÙ
Ø© ÙÙ
Ø· Ø§ÙØ´Ù٠اÙÙ
ØØ¯Ø¯ Ù
Ø³Ø¨ÙØ§ ÙÙØ§Ø³ØªØ®Ø¯Ø§Ù
. Ø§ÙØ¹Ø¯Ø¯ ÙÙ GUID Ù
Ù ÙÙ
Ø· Ù
Ù "
+"اÙÙ
اط Ø§ÙØ´ÙÙØ§Øª اÙÙ
عرÙÙØ©."
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:3
msgid "Which check position to print"
-msgstr ""
+msgstr "Ù
ÙØ¶Ø¹ Ø§ÙØ´ÙÙ ÙÙØ·Ø¨Ø§Ø¹Ø©"
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:4
-msgid "On preprinted checks containing multiple checks per page, this setting specifies which check position to print. The possible values are 0, 1 and 2, corresponding to the top, middle and bottom checks on the page."
+msgid ""
+"On preprinted checks containing multiple checks per page, this setting "
+"specifies which check position to print. The possible values are 0, 1 and 2, "
+"corresponding to the top, middle and bottom checks on the page."
msgstr ""
+"ÙÙØ´ÙÙØ§Øª اÙÙ
Ø·Ø¨ÙØ¹Ø© Ù
Ø³Ø¨ÙØ§ : ØªØØªÙÙ ÙÙ ØµÙØØ© عÙÙ Ø´ÙÙØ§Øª Ù
ØªØ¹Ø¯Ø¯Ø©Ø ÙØØ¯Ø¯ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ Ù
ÙÙÙ "
+"Ø§ÙØ·Ø¨Ø§Ø¹Ø©. اÙÙÙÙ
اÙÙ
Ù
ÙÙØ© ÙÙ 0Ø 1 Ù 2Ø ÙØ§ÙÙ
ÙØ§Ø¨ÙØ© ÙØ£Ø¹ÙÙ ÙØ§ÙÙ
ÙØªØµÙ Ù Ø§ÙØ§Ø³Ù٠عÙÙ "
+"Ø§ÙØµÙØØ©."
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:5
msgid "Number of checks to print on the first page."
-msgstr ""
+msgstr "عدد Ø§ÙØ´ÙÙØ§Øª ÙÙØ·Ø¨Ø§Ø¹Ø© ÙÙ Ø§ÙØµÙØØ© Ø§ÙØ£ÙÙÙ"
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:6
msgid "Date format to use"
-msgstr ""
+msgstr "ØªÙØ³ÙÙ Ø§ÙØªØ§Ø±ÙØ®"
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:7
msgid "This is the numerical identifier of the predefined date format to use."
-msgstr ""
+msgstr "ÙØ°Ø§ Ù٠اÙÙ
Ø¹Ø±Ù Ø§ÙØ¹Ø¯Ø¯Ù ÙØªÙسÙÙ Ø§ÙØªØ§Ø±ÙØ® اÙÙ
ØØ¯Ø¯ Ù
Ø³Ø¨ÙØ§."
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:8
msgid "Custom date format"
-msgstr ""
+msgstr "ØªÙØ³ÙÙ ØªØ§Ø±ÙØ® Ù
Ø®ØµÙØµ"
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:9
-msgid "If the date format is set to indicate a custom date format, this value is used as an argument to strftime to produce the date to be printed. It may be any valid strftime string; for more information about this format, read the manual page of strftime by \"man 3 strftime\"."
+msgid ""
+"If the date format is set to indicate a custom date format, this value is "
+"used as an argument to strftime to produce the date to be printed. It may be "
+"any valid strftime string; for more information about this format, read the "
+"manual page of strftime by \"man 3 strftime\"."
msgstr ""
+"إذا تÙ
تعÙÙÙ ØªÙØ³ÙÙ Ø§ÙØªØ§Ø±ÙØ® ÙÙØ¥Ø´Ø§Ø±Ø© Ø¥ÙÙ ØªÙØ³ÙÙ ØªØ§Ø±ÙØ® Ù
Ø®ØµÙØµØ ÙØªÙ
استخداÙ
ÙØ°Ù "
+"اÙÙÙÙ
Ø© ÙÙ
دخ٠ÙSTRFTIME ÙØ¥Ùتاج Ø§ÙØªØ§Ø±ÙØ® اÙÙ
راد طباعتÙ. ÙØ¯ ÙÙÙÙ Ù
Ù Ø£Ù ÙØµ "
+"STRFTIME ØµØ§ÙØ. ÙÙ
Ø²ÙØ¯ Ù
٠اÙÙ
عÙÙÙ
ات ØÙÙ ÙØ°Ø§ Ø§ÙØ´ÙÙØ Ø§ÙØ±Ø¬Ø§Ø¡ ÙØ±Ø§Ø¡Ø© Ø§ÙØµÙØØ§Øª ÙÙ "
+"ÙØªÙب Ø§ÙØªØ´ØºÙÙ Ù
Ù STRFTIME Ù
Ù ÙØ¨Ù strftime by \"man 3 \"."
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:10
msgid "Units in which the custom coordinates are expressed"
-msgstr ""
+msgstr "اÙÙØØ¯Ø§Øª Ø§ÙØªÙ ÙØªÙ
Ø§ÙØªØ¹Ø¨Ùر Ø¹Ù Ø§ÙØ¥ØØ¯Ø§Ø«Ùات اÙÙ
خصصة Ø¨ÙØ§"
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:11
msgid "Units in which the custom coordinates are expressed (inches, mm, ...)."
-msgstr ""
+msgstr "اÙÙØØ¯Ø§Øª Ø§ÙØªÙ ÙØªÙ
Ø§ÙØªØ¹Ø¨Ùر Ø¹Ù Ø§ÙØ¥ØØ¯Ø§Ø«Ùات اÙÙ
خصصة Ø¨ÙØ§ (Ø¨ÙØµØ©,Ù
Ù
,....)"
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:12
msgid "Position of payee name"
-msgstr ""
+msgstr "Ù
ÙØ¶Ø¹ اسÙ
اÙÙ
ستÙÙØ¯"
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:13
-msgid "This value contains the X,Y coordinates for the start of the payee line on the check."
-msgstr ""
+msgid ""
+"This value contains the X,Y coordinates for the start of the payee line on "
+"the check."
+msgstr "ØªØØªÙÙ ÙØ°Ù اÙÙÙÙ
Ø© Ø§ÙØ§ØØ¯Ø§Ø«Ùات س ٠ص ÙØ¨Ø¯Ø§ÙØ© Ù
ÙØ¶Ø¹ سطر اÙÙ
ستÙÙØ¯ عÙÙ Ø§ÙØ´ÙÙ."
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:14
msgid "Position of date line"
-msgstr ""
+msgstr "Ù
ÙØ¶Ø¹ خط Ø§ÙØªØ§Ø±ÙØ®"
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:15
-msgid "This value contains the X,Y coordinates for the start of the date line on the check. Coordinates are from the lower left corner of the specified check position."
+msgid ""
+"This value contains the X,Y coordinates for the start of the date line on "
+"the check. Coordinates are from the lower left corner of the specified check "
+"position."
msgstr ""
+"ØªØØªÙÙ ÙØ°Ù اÙÙÙÙ
Ø© Ø§ÙØ§ØØ¯Ø§Ø«Ùات س ٠ص ÙØ¨Ø¯Ø§ÙØ© Ù
ÙØ¶Ø¹ سطر Ø§ÙØªØ§Ø±ÙØ® عÙÙ Ø§ÙØ´ÙÙ. "
+"Ø§ÙØ¥ØØ¯Ø§Ø«Ùات Ù
Ù Ø§ÙØ²Ø§ÙÙØ© اÙÙØ³Ø±Ù Ø§ÙØ³ÙÙÙ Ù
Ù Ù
ÙÙÙ Ø§ÙØ§Ø®ØªÙار اÙÙ
ØØ¯Ø¯."
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:16
msgid "Position of check amount in words"
-msgstr ""
+msgstr "Ù
ÙØ¶Ø¹ ÙÙÙ
Ø© Ø§ÙØ´Ù٠باÙÙÙÙ
ات"
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:17
-msgid "This value contains the X,Y coordinates for the start of the written amount line on the check. Coordinates are from the lower left corner of the specified check position."
+msgid ""
+"This value contains the X,Y coordinates for the start of the written amount "
+"line on the check. Coordinates are from the lower left corner of the "
+"specified check position."
msgstr ""
+"ØªØØªÙÙ ÙØ°Ù اÙÙÙÙ
Ø© Ø§ØØ¯Ø§Ø«Ùات س ٠ص ÙØ¨Ø¯Ø§ÙØ© Ù
ÙØ¶Ø¹ سطر اÙÙÙÙ
Ø© باÙÙÙÙ
ات عÙÙ Ø§ÙØ´ÙÙ. "
+"Ø§ÙØ¥ØØ¯Ø§Ø«Ùات Ù
Ù Ø§ÙØ²Ø§ÙÙØ© اÙÙØ³Ø±Ù Ø§ÙØ³ÙÙÙ Ù
Ù Ù
ÙÙÙ Ø§ÙØ§Ø®ØªÙار اÙÙ
ØØ¯Ø¯."
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:18
msgid "Position of check amount in numbers"
-msgstr ""
+msgstr "Ù
ÙØ¶Ø¹ ÙÙÙ
Ø© Ø§ÙØ´ÙÙ Ø¨Ø§ÙØ£Ø±ÙاÙ
"
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:19
-msgid "This value contains the X,Y coordinates for the start of the numerical amount line on the check. Coordinates are from the lower left corner of the specified check position."
+msgid ""
+"This value contains the X,Y coordinates for the start of the numerical "
+"amount line on the check. Coordinates are from the lower left corner of the "
+"specified check position."
msgstr ""
+"ØªØØªÙÙ ÙØ°Ù اÙÙÙÙ
Ø© Ø§ØØ¯Ø§Ø«Ùات س ٠ص ÙØ¨Ø¯Ø§ÙØ© Ù
ÙØ¶Ø¹ سطر ÙÙÙ
Ø© Ø§ÙØ´Ù٠عÙÙ Ø§ÙØ´ÙÙ. "
+"Ø§ÙØ¥ØØ¯Ø§Ø«Ùات Ù
Ù Ø§ÙØ²Ø§ÙÙØ© اÙÙØ³Ø±Ù Ø§ÙØ³ÙÙÙ Ù
Ù Ù
ÙÙÙ Ø§ÙØ§Ø®ØªÙار اÙÙ
ØØ¯Ø¯."
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:20
msgid "Position of payee address"
-msgstr ""
+msgstr "Ù
ÙØ¶Ø¹ عÙÙØ§Ù اÙÙ
ستÙÙØ¯"
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:21
-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."
+msgid ""
+"This value contains the X,Y coordinates for the start of the payee address "
+"line on the check. Coordinates are from the lower left corner of the "
+"specified check position."
msgstr ""
+"ØªØØªÙÙ ÙØ°Ù اÙÙÙÙ
Ø© Ø§ØØ¯Ø§Ø«Ùات س ٠ص ÙØ¨Ø¯Ø§ÙØ© Ù
ÙØ¶Ø¹ سطر عÙÙØ§Ù اÙÙ
ستÙÙØ¯ عÙÙ Ø§ÙØ´ÙÙ. "
+"Ø§ÙØ¥ØØ¯Ø§Ø«Ùات Ù
Ù Ø§ÙØ²Ø§ÙÙØ© اÙÙØ³Ø±Ù Ø§ÙØ³ÙÙÙ Ù
Ù Ù
ÙÙÙ Ø§ÙØ§Ø®ØªÙار اÙÙ
ØØ¯Ø¯."
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:22
msgid "Position of notes line"
-msgstr ""
+msgstr "Ù
ÙÙ٠خط اÙÙ
ÙØ§ØØ¸Ø§Øª"
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:23
-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."
+msgid ""
+"This value contains the X,Y coordinates for the start of the notes line on "
+"the check. Coordinates are from the lower left corner of the specified check "
+"position."
msgstr ""
+"ØªØØªÙÙ ÙØ°Ù اÙÙÙÙ
Ø© Ø§ØØ¯Ø§Ø«Ùات س ٠ص ÙØ¨Ø¯Ø§ÙØ© Ù
ÙØ¶Ø¹ سطر اÙÙ
ÙØ§ØØ¸Ø§Øª عÙÙ Ø§ÙØ´ÙÙ. "
+"Ø§ÙØ¥ØØ¯Ø§Ø«Ùات Ù
Ù Ø§ÙØ²Ø§ÙÙØ© اÙÙØ³Ø±Ù Ø§ÙØ³ÙÙÙ Ù
Ù Ù
ÙÙÙ Ø§ÙØ§Ø®ØªÙار اÙÙ
ØØ¯Ø¯."
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:24
msgid "Position of memo line"
-msgstr ""
+msgstr "Ù
ÙÙ٠خط Ù
Ø°ÙØ±Ø©"
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:25
-msgid "This value contains the X,Y coordinates for the start of the memo line on the check. Coordinates are from the lower left corner of the specified check position."
+msgid ""
+"This value contains the X,Y coordinates for the start of the memo line on "
+"the check. Coordinates are from the lower left corner of the specified check "
+"position."
msgstr ""
+"ØªØØªÙÙ ÙØ°Ù اÙÙÙÙ
Ø© Ø§ØØ¯Ø§Ø«Ùات س ٠ص ÙØ¨Ø¯Ø§ÙØ© Ù
ÙØ¶Ø¹ سطر اÙÙ
Ø°ÙØ±Ø© عÙÙ Ø§ÙØ´ÙÙ. "
+"Ø§ÙØ¥ØØ¯Ø§Ø«Ùات Ù
Ù Ø§ÙØ²Ø§ÙÙØ© اÙÙØ³Ø±Ù Ø§ÙØ³ÙÙÙ Ù
Ù Ù
ÙÙÙ Ø§ÙØ§Ø®ØªÙار اÙÙ
ØØ¯Ø¯."
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:26
msgid "Offset for complete check"
-msgstr ""
+msgstr "Ø§ÙØªØ±ØÙÙ ÙÙ Ø§ÙØ·Ø¨Ø§Ø¹Ø© ÙÙØ´Ù٠باÙÙØ§Ù
Ù"
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:27
-msgid "This value contains the X,Y offset for the complete check. Coordinates are from the lower left corner of the specified check position."
+msgid ""
+"This value contains the X,Y offset for the complete check. Coordinates are "
+"from the lower left corner of the specified check position."
msgstr ""
+"ØªØØªÙÙ ÙØ°Ù اÙÙÙÙ
Ø© Ø§ØØ¯Ø§Ø«Ùات س ÙØµ ÙÙÙÙ
Ø§ÙØªØ±ØÙÙ ÙÙ Ø·Ø¨Ø§Ø¹Ù Ø§ÙØ´Ù٠باÙÙØ§Ù
Ù. "
+"Ø§ÙØ¥ØØ¯Ø§Ø«Ùات Ù
Ù Ø§ÙØ²Ø§ÙÙØ© اÙÙØ³Ø±Ù Ø§ÙØ³ÙÙÙ Ù
Ù Ù
ÙÙÙ Ø§ÙØ§Ø®ØªÙار اÙÙ
ØØ¯Ø¯."
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:28
msgid "Rotation angle"
-msgstr ""
+msgstr "زاÙÙØ© Ø§ÙØ§Ø³ØªØ¯Ø§Ø±Ø©"
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:29
msgid "Number of degrees to rotate the check."
-msgstr ""
+msgstr "عدد درجات تدÙÙØ± Ø§ÙØ´ÙÙØ§Øª."
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:30
msgid "Position of split's amount in numbers"
-msgstr ""
+msgstr "Ù
ÙØ¶Ø¹ ÙÙ
ÙØ© Ø§ÙØªÙسÙÙ
Ø¨Ø§ÙØ£Ø±ÙاÙ
"
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:31
-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."
+msgid ""
+"This value contains the X,Y coordinates for the start of the split's amount "
+"line on the check. Coordinates are from the lower left corner of the "
+"specified check position."
msgstr ""
+"ØªØØªÙÙ ÙØ°Ù اÙÙÙÙ
Ø© Ø§ØØ¯Ø§Ø«Ùات س ٠ص ÙØ¨Ø¯Ø§ÙØ© Ù
ÙØ¶Ø¹ ÙÙ
ÙØ© Ø§ÙØªÙسÙÙ
Ø¨Ø§ÙØ£Ø±ÙاÙ
عÙÙ Ø§ÙØ´ÙÙ. "
+"Ø§ÙØ¥ØØ¯Ø§Ø«Ùات Ù
Ù Ø§ÙØ²Ø§ÙÙØ© اÙÙØ³Ø±Ù Ø§ÙØ³ÙÙÙ Ù
Ù Ù
ÙÙÙ Ø§ÙØ§Ø®ØªÙار اÙÙ
ØØ¯Ø¯."
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:32
msgid "Position of split's memo line"
-msgstr ""
+msgstr "Ù
ÙØ¶Ø¹ خط Ù
Ø°ÙØ±Ø© Ø§ÙØªÙسÙÙ
"
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:33
-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."
+msgid ""
+"This value contains the X,Y coordinates for the start of the split's memo "
+"line on the check. Coordinates are from the lower left corner of the "
+"specified check position."
msgstr ""
+"ØªØØªÙÙ ÙØ°Ù اÙÙÙÙ
Ø© Ø§ØØ¯Ø§Ø«Ùات س ٠ص ÙØ¨Ø¯Ø§ÙØ© Ù
ÙØ¶Ø¹ Ù
Ø°ÙØ±Ø© Ø§ÙØªÙسÙÙ
Ø¨Ø§ÙØ£Ø±ÙاÙ
عÙÙ "
+"Ø§ÙØ´ÙÙ. Ø§ÙØ¥ØØ¯Ø§Ø«Ùات Ù
Ù Ø§ÙØ²Ø§ÙÙØ© اÙÙØ³Ø±Ù Ø§ÙØ³ÙÙÙ Ù
Ù Ù
ÙÙÙ Ø§ÙØ§Ø®ØªÙار اÙÙ
ØØ¯Ø¯."
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:34
msgid "Position of split's account line"
-msgstr ""
+msgstr "Ù
ÙØ¶Ø¹ خط ØØ³Ø§Ø¨ Ø§ÙØªÙسÙÙ
"
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:35
-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."
+msgid ""
+"This value contains the X,Y coordinates for the start of the split's account "
+"line on the check. Coordinates are from the lower left corner of the "
+"specified check position."
msgstr ""
+"ØªØØªÙÙ ÙØ°Ù اÙÙÙÙ
Ø© Ø§ØØ¯Ø§Ø«Ùات س ٠ص ÙØ¨Ø¯Ø§ÙØ© Ù
ÙØ¶Ø¹ ØØ³Ø§Ø¨ Ø§ÙØªÙسÙÙ
عÙÙ Ø§ÙØ´ÙÙ. "
+"Ø§ÙØ¥ØØ¯Ø§Ø«Ùات Ù
Ù Ø§ÙØ²Ø§ÙÙØ© اÙÙØ³Ø±Ù Ø§ÙØ³ÙÙÙ Ù
Ù Ù
ÙÙÙ Ø§ÙØ§Ø®ØªÙار اÙÙ
ØØ¯Ø¯."
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:36
msgid "Print the date format below the date."
-msgstr ""
+msgstr "طباعة ØªÙØ³ÙÙ Ø§ÙØªØ§Ø±ÙØ® أسÙÙ Ø§ÙØªØ§Ø±ÙØ®."
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:37
-msgid "Each time the date is printed, print the date format immediately below in 8 point type using the characters Y, M, and D."
+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."
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:38
msgid "The default check printing font"
-msgstr ""
+msgstr "خط طباعة Ø§ÙØ´ÙÙØ§Øª Ø§ÙØ§ÙتراضÙ"
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:39
-msgid "The default font to use when printing checks. This value will be overridden by any font specified in a check description file."
+msgid ""
+"The default font to use when printing checks. This value will be overridden "
+"by any font specified in a check description file."
msgstr ""
+"Ø§ÙØ®Ø· Ø§ÙØ§ÙØªØ±Ø§Ø¶Ù ÙØ§Ø³ØªØ®Ø¯Ø§Ù
Ù Ø¹ÙØ¯ طباعة Ø§ÙØ´ÙÙØ§Øª. سÙÙ ÙØªÙ
ØªØ¬Ø§ÙØ² ÙØ°Ù اÙÙÙÙ
Ø© Ø¨Ø§ÙØ®Ø· "
+"اÙÙ
ØØ¯Ø¯ ÙÙ Ù
ÙÙ ÙØµÙ Ø§ÙØ´ÙÙØ§Øª."
#: ../src/gnome/gschemas/org.gnucash.dialogs.checkprinting.gschema.xml.in.in.h:40
msgid "Print '***' before and after text."
-msgstr ""
+msgstr "طباعة '***' ÙØ¨Ù ÙØ¨Ø¹Ø¯ اÙÙØµ."
#: ../src/gnome/gschemas/org.gnucash.dialogs.commodities.gschema.xml.in.in.h:1
msgid "Show currencies in this dialog"
-msgstr ""
+msgstr "اعرض Ø§ÙØ¹Ù
ÙØ§Øª ÙÙ Ù
ربع Ø§ÙØÙØ§Ø±"
#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:3
msgid "Position of the horizontal pane divider."
-msgstr ""
+msgstr "Ù
ÙØ¶Ø¹ خط اÙÙ
ÙØ±Ù Ø§ÙØ£ÙÙÙ."
#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:5
-msgid "This setting indicates whether to search in all items in the current class, or only in 'active' items in the current class."
+msgid ""
+"This setting indicates whether to search in all items in the current class, "
+"or only in 'active' items in the current class."
msgstr ""
+"ÙØ´Ùر ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ Ù
ا إذا ÙØ§Ù Ø§ÙØ¨ØØ« Ù٠جÙ
ÙØ¹ Ø§ÙØ¨ÙÙØ¯ Ù٠اÙÙØ¶Ø¹ Ø§ÙØØ§ÙÙØ Ø£Ù ÙÙØ· ÙÙ "
+"Ø§ÙØ¨ÙÙØ¯ اÙÙØ´Ø·Ø© Ù٠اÙÙØ¶Ø¹ Ø§ÙØØ§ÙÙ."
#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:6
#: ../src/import-export/aqb/gschemas/org.gnucash.dialogs.import.hbci.gschema.xml.in.in.h:17
@@ -6593,7 +7115,7 @@ msgstr ""
#: ../src/import-export/ofx/gschemas/org.gnucash.dialogs.import.ofx.gschema.xml.in.in.h:1
#: ../src/import-export/qif-imp/gschemas/org.gnucash.dialogs.import.qif.gschema.xml.in.in.h:6
msgid "Last pathname used"
-msgstr ""
+msgstr "اسÙ
اÙÙ
سار اÙÙ
ستخدÙ
اخر Ù
رة"
#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:7
#: ../src/import-export/aqb/gschemas/org.gnucash.dialogs.import.hbci.gschema.xml.in.in.h:18
@@ -6601,329 +7123,528 @@ msgstr ""
#: ../src/import-export/csv-imp/gschemas/org.gnucash.dialogs.import.csv.gschema.xml.in.in.h:4
#: ../src/import-export/ofx/gschemas/org.gnucash.dialogs.import.ofx.gschema.xml.in.in.h:2
#: ../src/import-export/qif-imp/gschemas/org.gnucash.dialogs.import.qif.gschema.xml.in.in.h:7
-msgid "This field contains the last pathname used by this window. It will be used as the initial filename/pathname the next time this window is opened."
+msgid ""
+"This field contains the last pathname used by this window. It will be used "
+"as the initial filename/pathname the next time this window is opened."
msgstr ""
+"ÙØØªÙÙ ÙØ°Ø§ Ø§ÙØÙ٠اسÙ
آخر Ù
سار Ù
ستخدÙ
Ù
Ù ÙØ¨Ù ÙØ°Ù اÙÙØ§Ùذة. ÙØ³ÙÙ ÙØ³ØªØ®Ø¯Ù
عÙ٠أÙÙ "
+"اسÙ
اÙÙ
ÙÙ / اسÙ
اÙÙ
سار Ø§ÙØ£ÙÙÙ Ù٠اÙÙ
رة اÙÙØ§Ø¯Ù
Ø© Ø§ÙØªÙ ÙØªÙ
ÙØªØ ÙØ°Ù اÙÙØ§Ùذة "
+"ÙÙÙØ§."
#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:8
msgid "Position of the vertical pane divider."
-msgstr ""
+msgstr "Ù
ÙØ¶Ø¹ خط اÙÙ
ÙØ±Ù Ø§ÙØ±Ø£Ø³Ù."
#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:9
msgid "Show the new user window"
-msgstr ""
+msgstr "Ø¥Ø¸ÙØ§Ø± إطار Ù
ستخدÙ
Ø¬Ø¯ÙØ¯"
#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:10
-msgid "If active, the new user window will be shown. Otherwise it will not be shown."
-msgstr ""
+msgid ""
+"If active, the new user window will be shown. Otherwise it will not be shown."
+msgstr "إذا ÙØ´Ø·Ø©Ø Ø³ÙØªÙ
عرض ÙØ§Ùذة Ù
ستخدÙ
Ø¬Ø¯ÙØ¯. ÙØ¥Ùا ÙÙ ÙØªÙ
Ø¹Ø±Ø¶ÙØ§."
#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:11
msgid "New hierarchy window on \"New File\""
-msgstr ""
+msgstr "ÙØ§Ùذة ØªØ³ÙØ³Ù ÙØ±Ù
Ù ÙÙ
ÙÙ Ø¬Ø¯ÙØ¯"
#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:12
-msgid "If active, the \"New Hierarchy\" window will be shown whenever the \"New File\" menu item is chosen. Otherwise it will not be shown."
+msgid ""
+"If active, the \"New Hierarchy\" window will be shown whenever the \"New File"
+"\" menu item is chosen. Otherwise it will not be shown."
msgstr ""
+"إذا ÙØ´Ø·Ø©Ø Ø³ÙØªÙ
عرض ÙØ§Ùذة Ø§ÙØªØ³Ùس٠اÙÙØ±Ù
Ù Ø§ÙØ¬Ø¯Ùد ÙÙÙ
ا تÙ
Ø§Ø®ØªÙØ§Ø± Ù
ÙÙ Ø¬Ø¯ÙØ¯ Ù
Ù "
+"اÙÙØ§Ø¦Ù
Ø©."
#: ../src/gnome/gschemas/org.gnucash.dialogs.gschema.xml.in.in.h:13
msgid "Default to 'new search' if fewer than this number of items is returned"
msgstr ""
+"Ø§ÙØ¹Ùدة باÙÙØ¶Ø¹ Ø§ÙØ§Ùتراض٠إÙÙ Ø¨ØØ« Ø¬Ø¯ÙØ¯ إذا تÙ
إرجاع Ø£ÙÙ Ù
Ù ÙØ°Ø§ Ø§ÙØ¹Ø¯Ø¯ Ù
Ù Ø§ÙØ¹Ùاصر"
#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:1
msgid "Pre-select cleared transactions"
-msgstr ""
+msgstr "ØØ¯Ø¯ ÙØ¨Ùا اÙÙ
عاÙ
ÙØ§Øª اÙÙ
Ù
Ø³ÙØØ©"
#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:2
-msgid "If active, all transactions marked as cleared in the register will appear already selected in the reconcile dialog. Otherwise no transactions will be initially selected."
+msgid ""
+"If active, all transactions marked as cleared in the register will appear "
+"already selected in the reconcile dialog. Otherwise no transactions will be "
+"initially selected."
msgstr ""
+"إذا ÙØ´Ø·Ø©Ø ÙØ¬Ù
ÙØ¹ اÙÙ
عاÙ
ÙØ§Øª Ø³ØªØØ¯Ø¯ ÙØ¨Ùا اÙÙ
عاÙ
ÙØ§Øª اÙÙ
Ù
Ø³ÙØØ© ÙÙ Ù
ربع ØÙار "
+"Ø§ÙØªØ³ÙÙØ©. ÙØ¥Ùا ÙÙ ÙØªÙ
ØªØØ¯Ùد Ø£Ù Ù
عاÙ
ÙØ§Øª ÙÙ Ø§ÙØ¨Ø¯Ø§ÙØ©."
#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:3
msgid "Prompt for interest charges"
-msgstr ""
+msgstr "Ø·ÙØ¨ إدخا٠رسÙÙ
اÙÙØ§Ø¦Ø¯Ø©"
#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:4
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:118
-msgid "Prior to reconciling an account which charges or pays interest, prompt the user to enter a transaction for the interest charge or payment. Currently only enabled for Bank, Credit, Mutual, Asset, Receivable, Payable, and Liability accounts."
+msgid ""
+"Prior to reconciling an account which charges or pays interest, prompt the "
+"user to enter a transaction for the interest charge or payment. Currently "
+"only enabled for Bank, Credit, Mutual, Asset, Receivable, Payable, and "
+"Liability accounts."
msgstr ""
+"ÙØ¨Ù Ø§ÙØªØ³ÙÙØ© بÙÙ ØØ³Ø§Ø¨ Ø§ÙØªÙ ØªØ¯ÙØ¹ Ø£Ù ØªØØµÙ ÙØ§Ø¦Ø¯Ø©Ø Ø³ÙØªÙ
Ù
Ø·Ø§ÙØ¨Ø© اÙÙ
ستخدÙ
بإدخا٠"
+"رسÙÙ
اÙÙØ§Ø¦Ø¯Ø© Ø£Ù Ø§ÙØ¯Ùع ÙÙ Ø§ÙØ¹Ù
ÙÙØ© . ØØ§ÙÙØ§ ØªÙØ¹Ù ÙÙØ· ÙØØ³Ø§Ø¨Ø§Øª ÙÙØ¨ÙÙÙØ "
+"ÙØ§ÙائتÙ
Ø§ÙØ اÙÙ
ØªØ¨Ø§Ø¯ÙØ©Ø ÙØ§ÙأصÙÙØ ÙØ§ÙÙØ¨Ø¶Ø ÙØ§ÙÙ
دÙÙØ¹Ø§ØªØ ٠اÙÙ
سؤÙÙÙØ©."
#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:5
msgid "Prompt for credit card payment"
-msgstr ""
+msgstr "Ø£Ø·ÙØ¨ Ø§ÙØ³Ø¯Ø§Ø¯ Ø¨Ø¨Ø·Ø§ÙØ© إئتÙ
اÙ"
#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:6
-msgid "If active, after reconciling a credit card account, prompt the user to enter a credit card payment. Otherwise do not prompt the user for this."
+msgid ""
+"If active, after reconciling a credit card account, prompt the user to enter "
+"a credit card payment. Otherwise do not prompt the user for this."
msgstr ""
+"إذا ÙØ´Ø·Ø©Ø بعد تسÙÙØ© ØØ³Ø§Ø¨ Ø¨Ø·Ø§ÙØ© Ø§ÙØ§Ø¦ØªÙ
Ø§ÙØØ³ÙØªÙ
Ù
Ø·Ø§ÙØ¨Ø© اÙÙ
ستخدÙ
Ø¨Ø¥Ø¯Ø®Ø§Ù Ø¨Ø·Ø§ÙØ© "
+"Ø§ÙØ§Ø¦ØªÙ
اÙ."
#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:7
msgid "Always reconcile to today"
-msgstr ""
+msgstr "Ø§ÙØªØ³ÙÙØ© Ø¥Ù٠اÙÙÙÙ
دائÙ
ا"
#: ../src/gnome/gschemas/org.gnucash.dialogs.reconcile.gschema.xml.in.in.h:8
-msgid "If active, always open the reconcile dialog using today's date for the statement date, regardless of previous reconciliations."
+msgid ""
+"If active, always open the reconcile dialog using today's date for the "
+"statement date, regardless of previous reconciliations."
msgstr ""
+"إذا ÙØ´Ø·Ø©Ø Ø³ÙØªÙ
ÙØªØ Ø§ÙØÙØ§Ø± Ø§ÙØªØ³ÙÙØ© دائÙ
ا باستخداÙ
ØªØ§Ø±ÙØ® اÙÙÙÙ
ÙØªØ§Ø±ÙØ® Ø§ÙØ¨ÙØ§ÙØ "
+"بغض اÙÙØ¸Ø± Ø¹Ù Ø§ÙØªØ³ÙÙØ§Øª Ø§ÙØ³Ø§Ø¨ÙØ©."
#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:3
msgid "Run \"since last run\" dialog when a file is opened."
-msgstr ""
+msgstr "تشغÙÙ Ù
ربع ØÙار \"Ù
ÙØ° أخر Ù
رة تÙ
Ø§ÙØªØ´ØºÙÙ\" Ø¹ÙØ¯ ÙØªØ اÙÙ
ÙÙ."
#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:4
-msgid "This setting controls whether the scheduled transactions \"since last run\" processing is run automatically when a data file is opened. This includes the initial opening of the data file when GnuCash starts. If this setting is active, run the \"since last run\" process, otherwise it is not run."
+msgid ""
+"This setting controls whether the scheduled transactions \"since last run\" "
+"processing is run automatically when a data file is opened. This includes "
+"the initial opening of the data file when GnuCash starts. If this setting is "
+"active, run the \"since last run\" process, otherwise it is not run."
msgstr ""
+"ÙØªØÙÙ
ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ Ù
ا إذا ÙØ§Ù ÙØªÙ
تشغÙ٠تÙÙØ§Ø¦Ùا \"Ù
ÙØ° أخر Ù
رة تÙ
Ø§ÙØªØ´ØºÙÙ\" "
+"Ø¹ÙØ¯ ÙØªØ Ù
ÙÙ Ø§ÙØ¨ÙØ§ÙØ§Øª. ÙÙØ°Ø§ ÙØ´Ù
Ù Ø§ÙØ§ÙØªØªØ§Ø Ø§ÙØ£ÙÙÙ ÙÙ
ÙÙ Ø¨ÙØ§Ùات Ø¹ÙØ¯ بدء تشغÙÙ "
+"جÙÙÙØ§Ø´. إذا ÙØ§Ù ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙØ´Ø·Ø§ÙÙØªÙ
تشغÙ٠عÙ
ÙÙØ© \"Ù
ÙØ° أخر Ù
رة تÙ
Ø§ÙØªØ´ØºÙÙ\" "
+"ÙØ¥Ùا ÙØ¥ÙÙ ÙØ§ ÙØªÙ
تشغÙÙ."
#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:5
msgid "Show \"since last run\" notification dialog when a file is opened."
-msgstr ""
+msgstr "تشغÙÙ Ù
ربع ØÙار ØªÙØ¨ÙÙ \"Ù
ÙØ° أخر Ù
رة تÙ
Ø§ÙØªØ´ØºÙÙ\" Ø¹ÙØ¯ ÙØªØ اÙÙ
ÙÙ."
#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:6
-msgid "This setting controls whether the scheduled transactions notification-only \"since last run\" dialog is shown when a data file is opened (if \"since last run\" processing is enabled on file open). This includes the initial opening of the data file when GnuCash starts. If this setting is active, show the dialog, otherwise it is not shown."
+msgid ""
+"This setting controls whether the scheduled transactions notification-only "
+"\"since last run\" dialog is shown when a data file is opened (if \"since "
+"last run\" processing is enabled on file open). This includes the initial "
+"opening of the data file when GnuCash starts. If this setting is active, "
+"show the dialog, otherwise it is not shown."
msgstr ""
+"ÙØªØÙÙ
ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ Ù
ا إذا ÙØ§Ù ÙØªÙ
ØªÙØ¨Ù٠تÙÙØ§Ø¦Ù \"Ù
ÙØ° أخر Ù
رة تÙ
Ø§ÙØªØ´ØºÙÙ\" "
+"Ø¹ÙØ¯ ÙØªØ Ù
ÙÙ Ø§ÙØ¨ÙØ§ÙØ§Øª. ÙÙØ°Ø§ ÙØ´Ù
Ù Ø§ÙØ§ÙØªØªØ§Ø Ø§ÙØ£ÙÙÙ ÙÙ
ÙÙ Ø¨ÙØ§Ùات Ø¹ÙØ¯ بدء تشغÙÙ "
+"جÙÙÙØ§Ø´. إذا ÙØ§Ù ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙØ´Ø·Ø§ ÙÙØªÙ
Ø¥Ø¸ÙØ§Ø± \"Ù
ÙØ° أخر Ù
رة تÙ
Ø§ÙØªØ´ØºÙÙ\" ÙØ¥Ùا "
+"ÙØ¥ÙÙ ÙØ§ ÙØªÙ
Ø§ÙØ¥Ø¸Ùار."
#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:7
msgid "Set the \"auto create\" flag by default"
-msgstr ""
+msgstr "تعÙÙÙ \"Ø¥ÙØ´Ø§Ø¡ تÙÙØ§Ø¦Ù\" Ø§ÙØªØ±Ø§Ø¶Ùا"
#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:8
-msgid "If active, any newly created scheduled transaction will have its 'auto create' flag set active by default. The user can change this flag during transaction creation, or at any later time by editing the scheduled transaction."
+msgid ""
+"If active, any newly created scheduled transaction will have its 'auto "
+"create' flag set active by default. The user can change this flag during "
+"transaction creation, or at any later time by editing the scheduled "
+"transaction."
msgstr ""
+"إذا ÙØ´Ø·Ø©Ø ÙØ¥Ù أ٠صÙÙØ© Ù
٠اÙÙ
ÙØ±Ø± Ø¥ÙØ´Ø§Ø¤Ùا ØØ¯Ùثا ÙÙÙÙ ÙÙØ§ \"Ø¥ÙØ´Ø§Ø¡ تÙÙØ§Ø¦Ù\" ÙØ´Ø·Ø© "
+"Ø§ÙØªØ±Ø§Ø¶Ùا. ÙÙ
ÙÙ ÙÙÙ
ستخدÙ
تغÙÙØ± ÙØ°Ø§ Ø§ÙØ§Ø¹Ø¯Ø§Ø¯ Ø£Ø«ÙØ§Ø¡ Ø¥ÙØ´Ø§Ø¡ اÙÙ
عاÙ
ÙØ§ØªØ Ø£Ù Ù٠أ٠"
+"ÙÙØª ÙØ§ØÙ ع٠طرÙÙ ØªØØ±Ùر اÙÙ
عاÙ
ÙØ§Øª اÙÙ
ØØ¯Ø¯Ø©."
#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:9
msgid "How many days in advance to notify the user."
-msgstr ""
+msgstr " Ø¥Ø¹ÙØ§Ù
اÙÙ
ستخدÙ
Ù
ÙØ¯Ù
ا بÙÙ
عدد Ø£ÙØ§Ù
"
#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:10
msgid "Set the \"notify\" flag by default"
-msgstr ""
+msgstr "تعÙÙÙ \"Ø§ÙØªÙبÙÙ\" Ø§ÙØªØ±Ø§Ø¶Ùا"
#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:11
-msgid "If active, any newly created scheduled transaction will have its 'notify' flag set by default. The user can change this flag during transaction creation, or at any later time by editing the scheduled transaction. This setting only has meaning if the create-auto setting is active."
+msgid ""
+"If active, any newly created scheduled transaction will have its 'notify' "
+"flag set by default. The user can change this flag during transaction "
+"creation, or at any later time by editing the scheduled transaction. This "
+"setting only has meaning if the create-auto setting is active."
msgstr ""
+"إذا ÙØ´Ø·Ø©Ø ÙØ¥Ù Ø£Ù Ù
عاÙ
ÙØ© Ù
٠اÙÙ
ÙØ±Ø± Ø¥ÙØ´Ø§Ø¤Ùا ØØ¯Ùثا ÙÙÙÙ ÙÙØ§ ØªÙØ¨ÙÙ Ø§ÙØªØ±Ø§Ø¶Ùا. "
+"ÙÙ
ÙÙ ÙÙÙ
ستخدÙ
تغÙÙØ± ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ Ø£Ø«ÙØ§Ø¡ Ø¥ÙØ´Ø§Ø¡ اÙÙ
عاÙ
ÙØ§ØªØ Ø£Ù Ù٠أ٠ÙÙØª ÙØ§ØÙ ع٠"
+"طرÙÙ ØªØØ±Ùر اÙÙ
عاÙ
ÙØ§Øª اÙÙ
ÙØ±Ø±Ø©. ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙÙØ· ÙÙ Ù
عÙ٠إذا ÙØ§Ù Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ Ø¥ÙØ´Ø§Ø¡ "
+"تÙÙØ§Ø¦Ù ÙØ´Ø·."
#: ../src/gnome/gschemas/org.gnucash.dialogs.sxs.gschema.xml.in.in.h:12
msgid "How many days in advance to remind the user."
-msgstr ""
+msgstr "تذÙÙØ± اÙÙ
ستخدÙ
Ù
ÙØ¯Ù
ا بÙÙ
عدد Ø£ÙØ§Ù
"
#: ../src/gnome/gschemas/org.gnucash.dialogs.totd.gschema.xml.in.in.h:1
msgid "The next tip to show."
-msgstr ""
+msgstr "اÙÙØµÙØØ© Ø§ÙØªØ§ÙÙØ© ÙÙØ¹Ø±Ø¶"
#: ../src/gnome/gschemas/org.gnucash.dialogs.totd.gschema.xml.in.in.h:4
msgid "Show \"Tip Of The Day\" at GnuCash start"
-msgstr ""
+msgstr "Ù
Ø´Ø§ÙØ¯Ø© \"ÙØµÙØØ© اÙÙÙÙ
\" ÙÙ Ø¨Ø¯Ø§ÙØ© جÙÙÙØ§Ø´"
#: ../src/gnome/gschemas/org.gnucash.dialogs.totd.gschema.xml.in.in.h:5
-msgid "Enables the \"Tip Of The Day\" when GnuCash starts up. If active, the dialog will be shown. Otherwise it will not be shown."
+msgid ""
+"Enables the \"Tip Of The Day\" when GnuCash starts up. If active, the dialog "
+"will be shown. Otherwise it will not be shown."
msgstr ""
+"تÙ
ÙÙ Ù
Ø´Ø§ÙØ¯Ø© \"ÙØµÙØØ© اÙÙÙÙ
\" ÙÙ Ø¨Ø¯Ø§ÙØ© جÙÙÙØ§Ø´. إذا ÙØ´Ø·Ø©Ø Ø³ÙØ¸Ùر Ù
ربع Ø§ÙØÙØ§Ø±. "
+"ÙØ¥Ùا ÙÙ ÙØ¸Ùر."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:1
msgid "Save window sizes and locations"
-msgstr ""
+msgstr "ØÙظ Ø£ØØ¬Ø§Ù
ÙÙ
ÙØ§Ùع اÙÙÙØ§Ùذ"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:2
-msgid "If active, the size and location of each dialog window will be saved when it is closed. The sizes and locations of content windows will be remembered when you quit GnuCash. Otherwise the sizes will not be saved."
+msgid ""
+"If active, the size and location of each dialog window will be saved when it "
+"is closed. The sizes and locations of content windows will be remembered "
+"when you quit GnuCash. Otherwise the sizes will not be saved."
msgstr ""
+"إذا ÙØ´Ø·Ø©Ø Ø³ÙØªÙ
ØÙظ ØØ¬Ù
ÙÙ
ÙÙØ¹ ÙÙ ÙÙØ§Ùذ Ø§ÙØÙØ§Ø± Ø¹ÙØ¯Ù
ا ÙØªÙ
Ø¥ØºÙØ§ÙÙ. Ø³ÙØÙØ¸ Ø£ØØ¬Ø§Ù
"
+"ÙÙ
ÙØ§Ùع ÙÙØ§Ùذ اÙÙ
ØØªÙÙ Ø¹ÙØ¯ Ø¥ÙÙØ§Ø¡ جÙÙÙØ§Ø´. ÙØ¥Ùا ÙÙ ÙØªÙ
ØÙظ Ø§ÙØ£ØØ¬Ø§Ù
."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:3
msgid "Character to use as separator between account names"
-msgstr ""
+msgstr "Ø§ÙØØ±Ù Ø§ÙÙ
ستخدÙ
ÙÙØ§ØµÙ بÙ٠أسÙ
اء Ø§ÙØØ³Ø§Ø¨Ø§Øª"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:4
-msgid "This setting determines the character that will be used between components of an account name. Possible values are any single non-alphanumeric unicode character, or any of the following strings: \"colon\" \"slash\", \"backslash\", \"dash\" and \"period\"."
+msgid ""
+"This setting determines the character that will be used between components "
+"of an account name. Possible values are any single non-alphanumeric unicode "
+"character, or any of the following strings: \"colon\" \"slash\", \"backslash"
+"\", \"dash\" and \"period\"."
msgstr ""
+"ÙØØ¯Ø¯ ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ Ø§ÙØØ±Ù Ø§ÙØ°Ù Ø³ÙØªÙ
استخداÙ
٠بÙÙ Ù
ÙÙÙØ§Øª اسÙ
ØØ³Ø§Ø¨. اÙÙÙÙ
اÙÙ
Ù
ÙÙØ© "
+"ÙÙ Ø£Ù ØØ±Ù ÙÙÙÙÙÙØ¯ ØºÙØ± أبجد٠رÙÙ
Ù ÙØ§ØØ¯Ø أ٠أ٠Ù
Ù Ø§ÙØªØ§ÙÙ\"ÙÙØ·ØªØ§Ù,Ø®ÙØ¶,Ø®ÙØ¶ Ø¹ÙØ³Ù,"
+"شرطة,ÙÙØ·Ø©\""
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:5
msgid "Compress the data file"
-msgstr ""
+msgstr "ضغط Ù
ÙÙ Ø§ÙØ¨ÙØ§ÙØ§Øª"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:6
msgid "Enables file compression when writing the data file."
-msgstr ""
+msgstr "ضغط اÙÙ
ÙÙ Ø¹ÙØ¯ ÙØªØ§Ø¨Ø© Ù
ÙÙ Ø§ÙØ¨ÙØ§ÙØ§Øª."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:7
msgid "Show auto-save explanation"
-msgstr ""
+msgstr "Ø¥Ø¸ÙØ§Ø± ØªÙØ³Ùر Ø§ÙØÙØ¸ Ø§ÙØªÙÙØ§Ø¦Ù"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:8
-msgid "If active, GnuCash shows an explanation of the auto-save feature the first time that feature is started. Otherwise no extra explanation is shown."
+msgid ""
+"If active, GnuCash shows an explanation of the auto-save feature the first "
+"time that feature is started. Otherwise no extra explanation is shown."
msgstr ""
+"إذا ÙØ´Ø·ØªØ ÙØ¸Ùر جÙÙÙØ§Ø´ ØªÙØ³Ùرا ÙØ®Ø§ØµÙØ© Ø§ÙØÙØ¸ Ø§ÙØªÙÙØ§Ø¦Ù Ø¹ÙØ¯ Ø§ÙØ¥Ø³ØªØ®Ø¯Ø§Ù
Ø§ÙØ£ÙÙ ÙÙØ°Ù "
+"Ø§ÙØ®Ø§ØµÙØ©"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:9
msgid "Auto-save time interval"
-msgstr ""
+msgstr "اÙÙØªØ±Ø© Ø§ÙØ²Ù
ÙÙØ© ÙÙÙØª Ø§ÙØÙØ¸ Ø§ÙØªÙÙØ§Ø¦Ù"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:10
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:85
-msgid "The number of minutes until saving of the data file to harddisk will be started automatically. If zero, no saving will be started automatically."
+msgid ""
+"The number of minutes until saving of the data file to harddisk will be "
+"started automatically. If zero, no saving will be started automatically."
msgstr ""
+"Ø³ÙØªÙ
بدأ عدد Ù
Ù Ø¯ÙØ§Ø¦Ù ØØªÙ ØÙظ Ù
ÙÙ Ø§ÙØ¨ÙØ§ÙØ§Øª Ø¥Ù٠اÙÙØ±Øµ Ø§ÙØµÙب تÙÙØ§Ø¦Ùا. إذا ÙØ§Ùت "
+"اÙÙÙÙ
Ø© ØµÙØ±Ø ØªØ¹Ø·Ù Ø§ÙØ®Ø§ØµÙØ©."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:11
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:95
msgid "Enable timeout on \"Save changes on closing\" question"
-msgstr ""
+msgstr "تÙ
ÙÙÙ Ù
ÙÙØ© عÙ٠سؤاÙ\"ØÙظ Ø§ÙØªØºÙÙØ±Ø§Øª Ø¹ÙØ¯ Ø§ÙØ§ØºÙاÙ\""
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:12
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:96
-msgid "If enabled, the \"Save changes on closing\" question will only wait a limited number of seconds for an answer. If the user didn't answer within that time, the changes will be saved automatically and the question window closed."
+msgid ""
+"If enabled, the \"Save changes on closing\" question will only wait a "
+"limited number of seconds for an answer. If the user didn't answer within "
+"that time, the changes will be saved automatically and the question window "
+"closed."
msgstr ""
+"إذا ÙØ´Ø·Ø ÙØ¥Ù اÙÙ
ÙÙØ© عÙ٠سؤاÙ\"ØÙظ Ø§ÙØªØºÙÙØ±Ø§Øª Ø¹ÙØ¯ Ø§ÙØ§ØºÙاÙ\" ستÙÙ٠عدد Ù
ØØ¯Ùد Ù
Ù "
+"Ø§ÙØ«ÙاÙÙ ÙÙØ¥Ø¬Ø§Ø¨Ø©. إذا ÙÙ
ÙÙÙ
اÙÙ
ستخدÙ
Ø¨Ø§ÙØ¥Ø¬Ø§Ø¨Ø© Ø®ÙØ§Ù ذÙ٠اÙÙÙØªØ Ø³ÙØªÙ
ØÙظ "
+"Ø§ÙØªØºÙÙØ±Ø§Øª تÙÙØ§Ø¦Ùا ÙØ£ØºÙØ§Ù ÙØ§Ùذة Ø§ÙØ³Ø¤Ø§Ù."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:13
msgid "Time to wait for answer"
-msgstr ""
+msgstr "اÙÙÙØª ÙØ§Ùتظار Ø§ÙØ¬Ùاب"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:14
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:98
-msgid "The number of seconds to wait before the question window will be closed and the changes saved automatically."
-msgstr ""
+msgid ""
+"The number of seconds to wait before the question window will be closed and "
+"the changes saved automatically."
+msgstr "عدد Ø§ÙØ«ÙاÙÙ ÙÙØ§Ùتظار ÙØ¨Ù Ø¥ØºÙØ§Ù ÙØ§Ùذة Ø§ÙØ³Ø¤Ø§Ù Ù ØÙظ Ø§ÙØªØºÙرات تÙÙØ§Ø¦Ùا."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:15
msgid "Display negative amounts in red"
-msgstr ""
+msgstr "عرض اÙÙÙÙ
Ø§ÙØ³Ø§Ùبة باÙÙÙÙ Ø§ÙØ£ØÙ
ر."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:16
msgid "Automatically insert a decimal point"
-msgstr ""
+msgstr "إدراج تÙÙØ§Ø¦Ù ÙÙÙØ§ØµÙØ© Ø§ÙØ¹Ø´Ø±ÙØ©"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:17
-msgid "If active, GnuCash will automatically insert a decimal point into values that are entered without one. Otherwise GnuCash will not modify entered numbers."
+msgid ""
+"If active, GnuCash will automatically insert a decimal point into values "
+"that are entered without one. Otherwise GnuCash will not modify entered "
+"numbers."
msgstr ""
+"إذا ÙØ´Ø·Ø©Ø سÙÙ ÙØ¯Ø±Ø¬ جÙÙÙØ§Ø´ تÙÙØ§Ø¦Ùا ÙØ§ØµÙØ© Ø¹Ø´Ø±ÙØ© Ø¥Ù٠اÙÙÙÙ
Ø§ÙØªÙ ÙØªÙ
إدخاÙÙØ§ دÙÙ "
+"ÙØ§ØØ¯Ø©. ÙØ¥Ùا ÙÙ ÙÙÙÙ
جÙÙÙØ§Ø´ بتعدÙÙ Ø§ÙØ£Ø±ÙاÙ
Ø§ÙØªÙ تÙ
إدخاÙÙØ§."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:18
msgid "Number of automatic decimal places"
-msgstr ""
+msgstr "عدد اÙÙ
ÙØ§Ø²Ù Ø§ÙØ¹Ø´Ø±ÙØ© Ø§ÙØªÙÙØ§Ø¦ÙØ©"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:19
-msgid "This field specifies the number of automatic decimal places that will be filled in."
-msgstr ""
+msgid ""
+"This field specifies the number of automatic decimal places that will be "
+"filled in."
+msgstr "ÙØØ¯Ø¯ ÙØ°Ø§ Ø§ÙØÙ٠عدد Ù
٠اÙÙ
ÙØ§Ø²Ù Ø§ÙØ¹Ø´Ø±ÙØ© Ø§ÙØ¢ÙÙØ© Ø§ÙØªÙ Ø³ÙØªÙ
شغÙÙØ§ ."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:20
-msgid "Tool to migrate preferences from old backend (CGonf) to new one (GSettings) has run successfully."
+msgid ""
+"Tool to migrate preferences from old backend (CGonf) to new one (GSettings) "
+"has run successfully."
msgstr ""
+"أداة ترØÙÙ ØªÙØ¶ÙÙØ§Øª Ù
٠اÙÙØ§Ø¬ÙØ© Ø§ÙØ®ÙÙÙØ© اÙÙØ¯ÙÙ
Ø© (CGonf) Ø¥ÙÙ Ø§ÙØ¬Ø¯Ùدة "
+"(GSettings) تÙ
ت Ø¨ÙØ¬Ø§Ø."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:21
-msgid "GnuCash switched to another backend to store user preferences between 2.4 and 2.6. To smooth the transition, most preferences will be migrated the first time a 2.6 version of GnuCash is run. This migration should only run once. This preference keeps track whether or not this migration tool has run successfully."
+msgid ""
+"GnuCash switched to another backend to store user preferences between 2.4 "
+"and 2.6. To smooth the transition, most preferences will be migrated the "
+"first time a 2.6 version of GnuCash is run. This migration should only run "
+"once. This preference keeps track whether or not this migration tool has run "
+"successfully."
msgstr ""
+"جÙÙÙØ§Ø´ تØÙ٠إÙÙ Ø®ÙÙÙØ© Ø¢Ø®Ø±Ù ÙØªØ®Ø²ÙÙ ØªÙØ¶ÙÙØ§Øª اÙÙ
ستخدÙ
بÙÙ 2.4 Ù 2.6. ÙØ¶Ù
ا٠"
+"Ø³ÙØ§Ø³Ø© Ø§ÙØªØÙÙØ Ø³ÙØªÙ
ترØÙÙ Ù
عظÙ
Ø§ÙØªÙضÙÙØ§Øª Ø£ÙÙ Ù
رة ÙØªÙ
تشغÙÙ Ø§ÙØ¥ØµØ¯Ø§Ø± 2.6 Ù
Ù "
+"جÙÙÙØ§Ø´. ÙØ°Ø§ Ø§ÙØªØÙÙÙ ÙØ¬Ø¨ تشغÙÙÙ Ù
رة ÙØ§ØØ¯Ø© ÙÙØ·. ÙØ°Ø§ Ø§ÙØªÙضÙÙ ÙØªØªØ¨Ø¹ Ù
ا إذا ÙØ§Ù "
+"ÙØ°Ù Ø§ÙØ£Ø¯Ø§Ø© ÙÙØªØ±ØÙ٠تعÙ
Ù Ø¨ÙØ¬Ø§Ø Ø£Ù ÙÙ
تعÙ
Ù."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:22
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:90
msgid "Do not create log/backup files."
-msgstr ""
+msgstr "ÙØ§ تÙÙ
Ø¨Ø¥ÙØ´Ø§Ø¡ سج٠/ Ù
ÙÙØ§Øª اÙÙØ³Ø® Ø§ÙØ§ØØªÙاطÙ."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:23
-msgid "This setting specifies what to do with old log/backups files. \"forever\" means keep all old files. \"never\" means no old log/backup files are kept. Each time you save, older versions of the file are removed. \"days\" means keep old files for a number of days. How many days is defined in key 'retain-days'"
-msgstr ""
+msgid ""
+"This setting specifies what to do with old log/backups files. \"forever\" "
+"means keep all old files. \"never\" means no old log/backup files are kept. "
+"Each time you save, older versions of the file are removed. \"days\" means "
+"keep old files for a number of days. How many days is defined in key 'retain-"
+"days'"
+msgstr ""
+"ÙØØ¯Ø¯ ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ Ù
ا ÙØ¬Ø¨ اÙÙÙØ§Ù
ب٠Ù
ع سج٠/ اÙÙØ³Ø® Ø§ÙØ§ØØªÙاط٠اÙÙ
ÙÙØ§Øª اÙÙØ¯ÙÙ
Ø©. "
+"\"اÙÙ Ø§ÙØ§Ø¨Ø¯\" ÙØ¹ÙÙ Ù
ÙØ¹ جÙ
ÙØ¹ اÙÙ
ÙÙØ§Øª اÙÙØ¯ÙÙ
Ø©. \"أبدا\" ÙØ¹ÙÙ ÙØ§ تØÙظ Ù
ÙÙØ§Øª "
+"اÙÙØ³Ø® Ø§ÙØ§ØØªÙاط٠ÙÙØ³Ø¬Ù اÙÙØ¯ÙÙ
.ÙÙ ÙÙ Ù
رة تÙÙÙ
بØÙØ¸ÙØ تتÙ
Ø¥Ø²Ø§ÙØ© Ø§ÙØ¥ØµØ¯Ø§Ø±Ø§Øª "
+"اÙÙØ¯ÙÙ
Ø© Ù
٠اÙÙ
ÙÙ. \"Ø§ÙØ£ÙاÙ
\" Ø¥Ø¨ÙØ§Ø¡ اÙÙ
ÙÙØ§Øª اÙÙØ¯ÙÙ
Ø© ÙØ¹Ø¯Ø¯ Ù
Ù Ø§ÙØ£ÙاÙ
. ÙÙ
ÙÙÙ
ا "
+"ÙØªÙ
تعرÙÙÙØ§ ÙÙ Ø§ÙØ±Ø¦ÙØ³ÙØ© \"Ø§ÙØ§ØØªÙاظ Ø¨Ø§ÙØ£ÙاÙ
\""
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:24
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:92
msgid "Delete old log/backup files after this many days (0 = never)."
-msgstr ""
+msgstr "ØØ°Ù Ø§ÙØ³Ø¬Ù اÙÙØ¯ÙÙ
/ Ù
ÙÙØ§Øª اÙÙØ³Ø® Ø§ÙØ§ØØªÙاط٠بعد عدة Ø£ÙØ§Ù
(0 = أبدا)."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:25
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:94
msgid "Do not delete log/backup files."
-msgstr ""
+msgstr "ÙØ§ تÙÙ
Ø¨ØØ°Ù سج٠/ Ù
ÙÙØ§Øª اÙÙØ³Ø® Ø§ÙØ§ØØªÙاطÙ."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:26
msgid "Delete old log/backup files after this many days (0 = never)"
-msgstr ""
+msgstr "ØØ°Ù Ø§ÙØ³Ø¬Ù اÙÙØ¯ÙÙ
/ Ù
ÙÙØ§Øª اÙÙØ³Ø® Ø§ÙØ§ØØªÙاط٠بعد عدة Ø£ÙØ§Ù
(0 = أبدا)."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:27
-msgid "This setting specifies the number of days after which old log/backup files will be deleted (0 = never)."
+msgid ""
+"This setting specifies the number of days after which old log/backup files "
+"will be deleted (0 = never)."
msgstr ""
+"ÙØØ¯Ø¯ ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ عدد Ø§ÙØ£ÙاÙ
ÙØ¨Ø¹Ø¯ ذÙÙ Ø³ÙØªÙ
ØØ°Ù Ø§ÙØ³Ø¬Ù اÙÙØ¯ÙÙ
/ Ù
ÙÙØ§Øª اÙÙØ³Ø® "
+"Ø§ÙØ§ØØªÙاط٠(0 = أبدا)."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:28
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:23
msgid "Don't sign reverse any accounts."
-msgstr ""
+msgstr "ÙØ§ تÙÙ
Ø¨Ø¹ÙØ³ إشارة Ø£Ù ØØ³Ø§Ø¨Ø§Øª."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:29
-msgid "This setting allows certain accounts to have their balances reversed in sign from positive to negative, or vice versa. The setting \"income-expense\" is for users who like to see negative expenses and positive income. The setting of \"credit\" is for users who want to see balances reflect the debit/credit status of the account. The setting \"none\" doesn't reverse the sign on any balances."
-msgstr ""
+msgid ""
+"This setting allows certain accounts to have their balances reversed in sign "
+"from positive to negative, or vice versa. The setting \"income-expense\" is "
+"for users who like to see negative expenses and positive income. The setting "
+"of \"credit\" is for users who want to see balances reflect the debit/credit "
+"status of the account. The setting \"none\" doesn't reverse the sign on any "
+"balances."
+msgstr ""
+"ÙØ³Ù
Ø ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙØØ³Ø§Ø¨Ø§Øª Ù
عÙÙØ© Ø£Ø±ØµØ¯ØªÙØ§ Ø¹ÙØ³Øª Ù٠إشارة Ù
٠اÙÙ
ÙØ¬Ø¨ Ø¥ÙÙ Ø§ÙØ³Ø§ÙØ¨Ø "
+"Ø£Ù Ø§ÙØ¹Ùس Ø¨Ø§ÙØ¹Ùس. Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ \"ØØ³Ø§Ø¨ Ø§ÙØ¯Ø®Ù\" Ù٠باÙÙØ³Ø¨Ø© ÙÙÙ
ستخدÙ
ÙÙ Ø§ÙØ°ÙÙ ÙØØ¨Ù٠أ٠"
+"ÙØ±Ù ÙÙÙØ§Øª Ø§ÙØ³ÙØ¨ÙØ© ÙØ§ÙØ¥ÙØ¬Ø§Ø¨ÙØ© Ø§ÙØ¯Ø®Ù. ØªØØ¯Ùد \"Ø§ÙØ§Ø¦ØªÙ
اÙ\" ÙÙ ÙÙÙ
ستخدÙ
ÙÙ Ø§ÙØ°ÙÙ "
+"ÙØ±ÙدÙÙ Ø£Ù ÙØ±Ùا Ø¹ÙØ³ Ø§ÙØªÙØ§Ø²ÙØ§Øª ÙÙ ÙØ¶Ø¹ Ø§ÙØ®ØµÙ
/ Ø§ÙØ§Ø¦ØªÙ
ا٠Ù
Ù Ø§ÙØØ³Ø§Ø¨. Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ "
+"\"ÙØ§ Ø´ÙØ¡\" ÙØ§ ÙØ¹Ùس Ø¹ÙØ§Ù
Ø© عÙ٠أ٠أرصدة."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:30
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:25
-msgid "Sign reverse balances on the following: Credit Card, Payable, Liability, Equity, and Income."
+msgid ""
+"Sign reverse balances on the following: Credit Card, Payable, Liability, "
+"Equity, and Income."
msgstr ""
+"Ø¹ÙØ³ Ø¹ÙØ§Ù
Ø© Ø§ÙØ£Ø±ØµØ¯Ø© ÙÙ
ا ÙÙÙ: Ø¨Ø·Ø§ÙØ© Ø§ÙØ§Ø¦ØªÙ
ا٠٠اÙÙ
دÙÙØ¹Ø§Øª ٠اÙÙ
سؤÙÙÙØ§Øª ÙØ§ÙدÙÙÙ "
+"ÙØ§ÙدخÙ."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:31
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:27
msgid "Sign reverse balances on income and expense accounts."
-msgstr ""
+msgstr "Ø¹ÙØ³ Ø¹ÙØ§Ù
Ø© Ø§ÙØ±ØµÙد ÙØØ³Ø§Ø¨Ø§Øª ÙØ¯Ø®Ù ٠اÙÙ
صارÙÙ."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:32
msgid "Use account colors in the account hierarchy"
-msgstr ""
+msgstr "استخداÙ
Ø£ÙÙØ§Ù Ø§ÙØØ³Ø§Ø¨ ÙÙ Ø§ÙØªØ³Ùس٠اÙÙØ±Ù
Ù ÙÙØØ³Ø§Ø¨Ø§Øª"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:33
-msgid "If active the account hierarchy will colorize the account using the account's custom color if set. This can serve as a visual aid to quickly identify accounts."
+msgid ""
+"If active the account hierarchy will colorize the account using the "
+"account's custom color if set. This can serve as a visual aid to quickly "
+"identify accounts."
msgstr ""
+"إذا ÙØ´Ø·Ø©, Ø§ÙØªØ³Ùس٠اÙÙØ±Ù
Ù ÙÙØØ³Ø§Ø¨Ø§Øª سÙÙ ÙÙÙ٠باستخداÙ
اÙÙÙ٠اÙÙ
خصص ÙÙØØ³Ø§Ø¨ إذا "
+"تعÙÙÙ. ÙÙØ°Ø§ ÙÙ
Ù٠أ٠تÙÙ٠بÙ
ثابة Ù
ساعدات Ø¨ØµØ±ÙØ© ÙØ³Ø±Ø¹Ø© ØªØØ¯Ùد Ø§ÙØØ³Ø§Ø¨Ø§Øª."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:34
msgid "Use account colors in the tabs of open account registers"
-msgstr ""
+msgstr "استخداÙ
Ø£ÙÙØ§Ù Ø§ÙØØ³Ø§Ø¨ ÙÙ Ø¹ÙØ§Ù
ات Ø§ÙØªØ¨ÙÙØ¨ ÙØ³Ø¬Ùات Ø§ÙØØ³Ø§Ø¨ اÙÙ
ÙØªÙØØ©"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:35
-msgid "If active the account register tabs will be colored using the account's custom color if set. This can serve as a visual aid to quickly identify accounts."
+msgid ""
+"If active the account register tabs will be colored using the account's "
+"custom color if set. This can serve as a visual aid to quickly identify "
+"accounts."
msgstr ""
+"إذا ÙØ´Ø·Ø©, Ø¹ÙØ§Ù
ات Ø§ÙØªØ¨ÙÙØ¨ ÙØ³Ø¬Ùات Ø§ÙØØ³Ø§Ø¨ اÙÙ
ÙØªÙØØ© سÙ٠تÙÙ٠باستخداÙ
اÙÙÙÙ "
+"اÙÙ
خصص ÙÙØØ³Ø§Ø¨ إذا تعÙÙÙ. ÙÙØ°Ø§ ÙÙ
Ù٠أ٠تÙÙ٠بÙ
ثابة Ù
ساعدات Ø¨ØµØ±ÙØ© ÙØ³Ø±Ø¹Ø© ØªØØ¯Ùد "
+"Ø§ÙØØ³Ø§Ø¨Ø§Øª."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:36
msgid "Use formal account labels"
-msgstr ""
+msgstr "استخداÙ
تسÙ
ÙØ§Øª Ø§ÙØØ³Ø§Ø¨Ø§Øª رسÙ
ÙØ©"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:37
-msgid "If active, formal accounting labels \"Credit\" and \"Debit\" will be used when designating fields on screen. Otherwise, informal labels such as Increase/Decrease, \"Funds In\"/\"Funds Out\", etc. will be used."
+msgid ""
+"If active, formal accounting labels \"Credit\" and \"Debit\" will be used "
+"when designating fields on screen. Otherwise, informal labels such as "
+"Increase/Decrease, \"Funds In\"/\"Funds Out\", etc. will be used."
msgstr ""
+"إذا ÙØ´Ø·Ø©Ø Ø³ÙØªÙ
استخداÙ
تسÙ
ÙØ§Øª اÙÙ
ØØ§Ø³Ø¨Ø© Ø§ÙØ±Ø³Ù
ÙØ© \"Ø§ÙØ§Ø¦ØªÙ
اÙ\" Ù \"Ø§ÙØ®ØµÙ
اÙÙ
باشر"
+"\" Ø¹ÙØ¯ تعÙÙÙ Ø§ÙØÙÙÙ Ø§ÙØªÙ ØªØ¸ÙØ± عÙÙ Ø§ÙØ´Ø§Ø´Ø©. Ø®ÙØ§Ù ذÙÙØ اÙÙ
سÙ
ÙØ§Øª ØºÙØ± Ø§ÙØ±Ø³Ù
ÙØ© Ù
ث٠"
+"Ø²ÙØ§Ø¯Ø© / ÙÙØµØ§Ù Ø§ÙØ®.Ø Ø³Ù٠تستخدÙ
"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:38
msgid "Show close buttons on notebook tabs"
-msgstr ""
+msgstr "Ø¥Ø¸ÙØ§Ø± زر Ø¥ØºÙØ§Ù Ø¹ÙØ§Ù
ات تبÙÙØ¨ Ø¯ÙØªØ± اÙÙ
ÙØ§ØØ¸Ø§Øª"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:39
-msgid "If active, a \"close\" button will be displayed on any notebook tab that may be closed. Otherwise, no such button will be shown on the tab. Regardless of this setting, pages can always be closed via the \"close\" menu item or the \"close\" button on toolbar."
+msgid ""
+"If active, a \"close\" button will be displayed on any notebook tab that may "
+"be closed. Otherwise, no such button will be shown on the tab. Regardless of "
+"this setting, pages can always be closed via the \"close\" menu item or the "
+"\"close\" button on toolbar."
msgstr ""
+"إذا ÙØ´Ø·Ø©Ø Ø³ÙØªÙ
عرض زر \"Ø¥ØºÙØ§Ù\" عÙÙ Ø£Ù Ø¹ÙØ§Ù
Ø© تبÙÙØ¨ Ø¯ÙØªØ± ÙØ§Ø¨ÙØ© ÙÙØ¥ØºÙاÙ. Ø®ÙØ§Ù "
+"ذÙÙØ Ø³ÙØªÙ
عرض أ٠زر Ù
Ù ÙØ°Ø§ اÙÙØ¨Ù٠عÙÙ Ø¹ÙØ§Ù
Ø© Ø§ÙØªØ¨ÙÙØ¨. بغض اÙÙØ¸Ø± Ø¹Ù ÙØ°Ø§ "
+"Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯Ø Ø§ÙØµÙØØ§Øª ÙÙ
Ù٠دائÙ
ا Ø¥ØºÙØ§ÙÙØ§ عبر Ø¹ÙØµØ± اÙÙØ§Ø¦Ù
Ø©\"إغÙÙ\" Ø£Ù Ø§ÙØ²Ø± \"Ø¥ØºÙØ§Ù"
+"\" عÙÙ Ø´Ø±ÙØ· Ø§ÙØ£Ø¯Ùات."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:40
msgid "Width of notebook tabs"
-msgstr ""
+msgstr "عرض Ø¹ÙØ§Ù
ات Ø§ÙØªØ¨ÙÙØ¨"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:41
-msgid "This key specifies the maximum width of notebook tabs. If the text in the tab is longer than this value (the test is approximate) then the tab label will have the middle cut and replaced with an ellipsis."
+msgid ""
+"This key specifies the maximum width of notebook tabs. If the text in the "
+"tab is longer than this value (the test is approximate) then the tab label "
+"will have the middle cut and replaced with an ellipsis."
msgstr ""
+"ÙØØ¯Ø¯ ÙØ°Ø§ اÙÙ
ÙØªØ§Ø Ø§ÙØ¹Ø±Ø¶ Ø§ÙØ£ÙØµÙ ÙØ¹ÙاÙ
ات Ø§ÙØªØ¨ÙÙØ¨ ÙÙØ¯Ùتر. إذا ÙØ§Ù اÙÙØµ ÙÙ Ø¹ÙØ§Ù
Ø© "
+"Ø§ÙØªØ¨ÙÙØ¨ أطÙÙ Ù
Ù ÙØ°Ù اÙÙÙÙ
Ø© (Ø§ÙØ§Ø®ØªØ¨Ø§Ø± ÙÙ ØªÙØ±ÙبÙ) Ø«Ù
ÙØ¥Ù تسÙ
ÙØ© Ø§ÙØªØ¨ÙÙØ¨ Ø³ØªÙØ·Ø¹ "
+"ÙØªØ³ØªØ¨Ø¯Ù بÙÙØ§Ø·."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:42
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:32
msgid "Use the system locale currency for all newly created accounts."
-msgstr ""
+msgstr "استخداÙ
عÙ
ÙØ© ÙØºØ© اÙÙØ¸Ø§Ù
ÙØ¬Ù
ÙØ¹ Ø§ÙØØ³Ø§Ø¨Ø§Øª Ø§ÙØªÙ ÙØªÙ
Ø¥ÙØ´Ø§Ø¤Ùا ØØ¯Ùثا."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:43
-msgid "This setting controls the source of the default currency for new accounts. If set to \"locale\" then GnuCash will retrieve the default currency from the user's locale setting. If set to \"other\", GnuCash will use the setting specified by the currency-other key."
+msgid ""
+"This setting controls the source of the default currency for new accounts. "
+"If set to \"locale\" then GnuCash will retrieve the default currency from "
+"the user's locale setting. If set to \"other\", GnuCash will use the setting "
+"specified by the currency-other key."
msgstr ""
+"ÙØªØÙÙ
ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ بÙ
صدر Ø§ÙØ¹Ù
ÙØ© Ø§ÙØ§ÙØªØ±Ø§Ø¶ÙØ© ÙÙØØ³Ø§Ø¨Ø§Øª Ø§ÙØ¬Ø¯Ùدة. تعÙÙÙ \"ÙØºØ©\" Ø«Ù
"
+"جÙÙÙØ§Ø´\" Ø³ÙØªÙ
استرداد Ø§ÙØ¹Ù
ÙØ© Ø§ÙØ§ÙØªØ±Ø§Ø¶ÙØ© Ù
Ù Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ اÙÙ
ØÙÙ ÙÙÙ
ستخدÙ
. إذا تÙ
"
+"Ø§ÙØªØ¹ÙÙ٠إÙÙ \"Ø§ÙØ¢Ø®Ø±\"Ø Ø³ÙÙ ÙÙÙÙ
جÙÙÙØ§Ø´ باستخداÙ
Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ اÙÙ
ØØ¯Ø¯ Ø¨ÙØ§Ø³Ø·Ø© Ù
ÙØªØ§Ø "
+"Ø§ÙØ¹Ù
ÙØ§Øª Ø§ÙØ£Ø®Ø±Ù."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:44
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:34
msgid "Use the specified currency for all newly created accounts."
-msgstr ""
+msgstr "استخداÙ
Ø§ÙØ¹Ù
ÙØ© اÙÙ
ØØ¯Ø¯Ø© ÙØ¬Ù
ÙØ¹ Ø§ÙØØ³Ø§Ø¨Ø§Øª Ø§ÙØªÙ تÙ
Ø¥ÙØ´Ø§Ø¤Ùا ØØ¯Ùثا."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:45
msgid "Default currency for new accounts"
-msgstr ""
+msgstr "Ø§ÙØ¹Ù
ÙØ© Ø§ÙØ§ÙØªØ±Ø§Ø¶ÙØ© ÙÙØØ³Ø§Ø¨Ø§Øª Ø§ÙØ¬Ø¯Ùدة"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:46
-msgid "This setting specifies the default currency used for new accounts if the currency-choice setting is set to \"other\". This field must contain the three letter ISO 4217 code for a currency (e.g. USD, GBP, RUB)."
+msgid ""
+"This setting specifies the default currency used for new accounts if the "
+"currency-choice setting is set to \"other\". This field must contain the "
+"three letter ISO 4217 code for a currency (e.g. USD, GBP, RUB)."
msgstr ""
+"ÙØØ¯Ø¯ ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ Ø§ÙØ¹Ù
ÙØ© Ø§ÙØ§ÙØªØ±Ø§Ø¶ÙØ© اÙÙ
ستخدÙ
Ø© ÙÙØØ³Ø§Ø¨Ø§Øª Ø§ÙØ¬Ø¯Ùدة إذا تÙ
تعÙÙÙ "
+"إعداد Ø§ÙØ¹Ù
ÙØ© Ø§ÙØ®Ùارات Ø¥ÙÙ \"Ø§ÙØ¢Ø®Ø±\". ÙØ¬Ø¨ Ø£Ù ÙØØªÙÙ ÙØ°Ø§ Ø§ÙØÙ٠عÙÙ Ø«ÙØ§Ø«Ø© Ø£ØØ±Ù "
+"ISO 4217 رÙ
ز Ø§ÙØ¹Ù
ÙØ© (عÙ٠سبÙ٠اÙÙ
ثا٠USDØ GBPØ RUB)."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:47
msgid "Use 24 hour time format"
-msgstr ""
+msgstr "استخداÙ
ØªÙØ³Ù٠اÙÙÙØª 24 ساعة"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:48
-msgid "If active, use a 24 hour time format. Otherwise use a 12 hour time format."
-msgstr ""
+msgid ""
+"If active, use a 24 hour time format. Otherwise use a 12 hour time format."
+msgstr "إذا ÙØ´Ø·Ø©Ø استخدÙ
ØªÙØ³ÙÙ ÙÙØª 24 ساعة. ÙØ¥Ùا استخداÙ
ØªÙØ³ÙÙ ÙÙØª 12 ساعة."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:49
msgid "Date format choice"
-msgstr ""
+msgstr "Ø§Ø®ØªÙØ§Ø± ØªÙØ³ÙÙ Ø§ÙØªØ§Ø±ÙØ®"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:50
-msgid "This setting chooses the way dates are displayed in GnuCash. Possible values for this setting are \"locale\" to use the system locale setting, \"ce\" for Continental Europe style dates, \"iso\" for ISO 8601 standard dates , \"uk\" for United Kingdom style dates, and \"us\" for United States style dates."
+msgid ""
+"This setting chooses the way dates are displayed in GnuCash. Possible values "
+"for this setting are \"locale\" to use the system locale setting, \"ce\" for "
+"Continental Europe style dates, \"iso\" for ISO 8601 standard dates , \"uk\" "
+"for United Kingdom style dates, and \"us\" for United States style dates."
msgstr ""
+"ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙØ®ØªØ§Ø± طرÙÙØ© عرض Ø§ÙØªÙØ§Ø±ÙØ® Ù٠جÙÙÙØ§Ø´. اÙÙÙÙ
اÙÙ
Ù
ÙÙØ© ÙÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ "
+"ÙÙ \"ÙØºØ©\" ÙØ§Ø³ØªØ®Ø¯Ø§Ù
إعداد ÙØºØ© اÙÙØ¸Ø§Ù
Ø \"CE\" ÙÙØªÙØ§Ø±ÙØ® عÙ٠غرار Ø£ÙØ±Ùبا Ø \"iso"
+"\"; ÙISO 8601 Ù
ÙØ§Ø¹Ùد اÙÙÙØ§Ø³ÙØ©Ø \"uk\" ÙÙØªÙØ§Ø±ÙØ® عÙ٠غرار اÙÙ
Ù
ÙÙØ© اÙÙ
ØªØØ¯Ø©Ø Ù "
+"\"us\" ÙÙÙÙØ§Ùات اÙÙ
ØªØØ¯Ø©."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:51
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:51
@@ -6931,385 +7652,604 @@ msgid "In the current calendar year"
msgstr "ÙÙ Ø§ÙØ¹Ø§Ù
اÙÙ
ÙÙØ§Ø¯Ù Ø§ÙØØ§ÙÙ"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:52
-msgid "When a date is entered without year it can be completed so that it will be within the current calendar year or close to the current date based on a sliding window starting a set number of months backwards in time."
+msgid ""
+"When a date is entered without year it can be completed so that it will be "
+"within the current calendar year or close to the current date based on a "
+"sliding window starting a set number of months backwards in time."
msgstr ""
+"Ø¹ÙØ¯ Ø¥Ø¯Ø®Ø§Ù ØªØ§Ø±ÙØ® دÙÙ Ø§ÙØ³ÙØ© ÙÙ
ÙÙ Ø§ÙØ§ÙØªÙØ§Ø¡ Ù
Ù٠بØÙØ« سÙÙÙÙ Ø®ÙØ§Ù Ø§ÙØ³ÙØ© Ø§ÙØªÙÙÙÙ
ÙØ© "
+"Ø§ÙØØ§ÙÙØ© أ٠عÙÙ Ù
ÙØ±Ø¨Ø© Ù
Ù Ø§ÙØªØ§Ø±ÙØ® Ø§ÙØØ§Ù٠عÙ٠أساس ÙØ§Ùذة Ø§ÙØ²Ùا٠بدءا Ù
٠عدد Ù
Ù "
+"Ø§ÙØ£Ø´Ùر Ø¥Ù٠اÙÙØ±Ø§Ø¡ Ù٠اÙÙÙØª اÙÙ
ÙØ§Ø³Ø¨."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:53
-msgid "In a sliding 12-month window starting a configurable number of months before the current month"
-msgstr ""
+msgid ""
+"In a sliding 12-month window starting a configurable number of months before "
+"the current month"
+msgstr "ÙØ§Ùذة ÙÙ
دة 12 Ø´ÙØ±Ø§ ÙØªØØ¯Ùد عدد Ù
Ù Ø§ÙØ£Ø´Ùر ÙØ¨Ù Ø§ÙØ´Ùر Ø§ÙØØ§ÙÙ"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:54
msgid "Maximum number of months to go back."
-msgstr ""
+msgstr "Ø§ÙØØ¯ Ø§ÙØ£ÙØµÙ ÙØ¹Ø¯Ø¯ Ø£Ø´ÙØ± ÙÙØ¹Ùدة."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:55
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:55
-msgid "Dates will be completed so that they are close to the current date. Enter the maximum number of months to go backwards in time when completing dates."
+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 ""
+"Ø³ÙØªÙ
اÙÙ
Ø§Ù Ø§ÙØªÙØ§Ø±ÙØ® بØÙØ« تÙÙÙ ÙØ±Ùبة Ù
Ù Ø§ÙØªØ§Ø±ÙØ® Ø§ÙØØ§ÙÙ. Ø£Ø¯Ø®Ù Ø§ÙØØ¯ Ø§ÙØ£ÙØµÙ ÙØ¹Ø¯Ø¯ "
+"Ø£Ø´ÙØ± ÙÙØ°Ùاب Ø¥Ù٠اÙÙØ±Ø§Ø¡ Ø¹ÙØ¯ استÙÙ
Ø§Ù Ø§ÙØªÙØ§Ø±ÙØ®."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:56
msgid "Show splash screen"
-msgstr ""
+msgstr "Ù
Ø´Ø§ÙØ¯Ø© شاشة Ø§ÙØ¨Ø¯Ø§ÙØ©"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:57
-msgid "If active, a splash screen will be shown at startup. Otherwise no splash screen will be shown."
+msgid ""
+"If active, a splash screen will be shown at startup. Otherwise no splash "
+"screen will be shown."
msgstr ""
+"إذا ÙØ´Ø·Ø©Ø Ø³ÙØªÙ
عرض شاشة Ø§ÙØ¨Ø¯Ø§ÙØ© Ø¹ÙØ¯ بدء Ø§ÙØªØ´ØºÙÙ. ÙØ¥Ùا ÙÙ ÙØªÙ
عرض شاشة "
+"Ø§ÙØ¨Ø¯Ø§ÙØ©."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:58
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:176
msgid "Display the notebook tabs at the top of the window."
-msgstr ""
+msgstr "عرض Ø¹ÙØ§Ù
ات Ø§ÙØªØ¨ÙÙØ¨ Ø¯ÙØªØ± ÙÙ Ø§ÙØ¬Ø²Ø¡ Ø§ÙØ¹ÙÙÙ Ù
٠اÙÙØ§Ùذة."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:59
-msgid "This setting determines the edge at which the tabs for switching pages in notebooks are drawn. Possible values are \"top\", \"left\", \"bottom\" and \"right\". It defaults to \"top\"."
+msgid ""
+"This setting determines the edge at which the tabs for switching pages in "
+"notebooks are drawn. Possible values are \"top\", \"left\", \"bottom\" and "
+"\"right\". It defaults to \"top\"."
msgstr ""
+"ÙØØ¯Ø¯ ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ Ø§ÙØØ§ÙØ© Ø§ÙØªÙ ÙØªÙ
رسÙ
Ø¹ÙØ§Ù
ات Ø§ÙØªØ¨ÙÙØ¨ ÙØªØ¨Ø¯ÙÙ Ø§ÙØµÙØØ§Øª . اÙÙÙÙ
"
+"اÙÙ
Ù
ÙÙØ© Ù٠أعÙÙ ;اÙÙØ³Ø§Ø± ;أسÙÙ;اÙÙÙ
ÙÙ;. اÙÙØ¶Ø¹ Ø§ÙØ§Ùتراض٠إÙ٠أعÙÙ."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:60
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:178
msgid "Display the notebook tabs at the bottom of the window."
-msgstr ""
+msgstr "عرض Ø¹ÙØ§Ù
ات Ø§ÙØªØ¨ÙÙØ¨ Ø¯ÙØªØ± ÙÙ Ø§ÙØ¬Ø²Ø¡ Ø§ÙØ³ÙÙÙ Ù
٠اÙÙØ§Ùذة."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:61
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:180
msgid "Display the notebook tabs at the left of the window."
-msgstr ""
+msgstr "عرض Ø¹ÙØ§Ù
ات Ø§ÙØªØ¨ÙÙØ¨ Ø¯ÙØªØ± ÙÙ Ø§ÙØ¬ÙØ© اÙÙØ³Ø±Ù Ù
٠اÙÙØ§Ùذة."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:62
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:182
msgid "Display the notebook tabs at the right of the window."
-msgstr ""
+msgstr "عرض Ø¹ÙØ§Ù
ات Ø§ÙØªØ¨ÙÙØ¨ Ø¯ÙØªØ± عÙÙ ÙÙ
Ù٠اÙÙØ§Ùذة."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:63
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:185
msgid "Display the summary bar at the top of the page."
-msgstr ""
+msgstr "عرض Ø´Ø±ÙØ· Ù
ÙØ®Øµ Ù٠أعÙÙ Ø§ÙØµÙØØ©."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:64
-msgid "This setting determines the edge at which the summary bar for various pages is drawn. Possible values are \"top\" and \"bottom\". It defaults to \"bottom\"."
+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 ""
+"ÙØØ¯Ø¯ ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ Ø§ÙØØ§ÙØ© Ø§ÙØªÙ ÙØªÙ
رسÙ
ÙØ§ ÙØ´Ø±ÙØ· اÙÙ
ÙØ®Øµ ÙÙØµÙØØ§Øª اÙÙ
ختÙÙØ©. اÙÙÙÙ
"
+"اÙÙ
Ù
ÙÙØ© Ù٠أعÙÙ ÙØ£Ø³Ù٠اÙÙØ¶Ø¹ Ø§ÙØ§Ùتراض٠إÙ٠أسÙÙ"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:65
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:187
msgid "Display the summary bar at the bottom of the page."
-msgstr ""
+msgstr "عرض Ø´Ø±ÙØ· Ù
ÙØ®Øµ ÙÙ Ø§ÙØ¬Ø²Ø¡ Ø§ÙØ³ÙÙÙ Ù
Ù Ø§ÙØµÙØØ©."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:66
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:173
msgid "Closing a tab moves to the most recently visited tab."
msgstr ""
+"Ø¥ØºÙØ§Ù Ø¹ÙØ§Ù
Ø© Ø§ÙØªØ¨ÙÙØ¨ ÙÙØªÙ٠إÙÙ Ø¹ÙØ§Ù
Ø© Ø§ÙØªØ¨ÙÙØ¨ Ø§ÙØ£Ùثر Ø²ÙØ§Ø±Ø© ÙÙ Ø§ÙØ¢ÙÙØ© Ø§ÙØ£Ø®Ùرة."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:67
-msgid "If active, closing a tab moves to the most recently visited tab. Otherwise closing a tab moves one tab to the left."
+msgid ""
+"If active, closing a tab moves to the most recently visited tab. Otherwise "
+"closing a tab moves one tab to the left."
msgstr ""
+"إذا ÙØ´Ø·Ø©Ø ÙØªÙ
Ø¥ØºÙØ§Ù Ø¹ÙØ§Ù
Ø© تبÙÙØ¨ ÙÙØªÙ٠إÙÙ Ø¹ÙØ§Ù
Ø© Ø§ÙØªØ¨ÙÙØ¨ Ø§ÙØ£Ùثر Ø²ÙØ§Ø±Ø© ÙÙ "
+"Ø§ÙØ¢ÙÙØ© Ø§ÙØ£Ø®Ùرة. Ø®ÙØ§Ù ذÙÙ Ø¥ØºÙØ§Ù Ø¹ÙØ§Ù
Ø© تبÙÙØ¨ ÙØØ±Ù Ø¹ÙØ§Ù
Ø© Ø§ÙØªØ¨ÙÙØ¨ ÙØ§ØØ¯Ø© Ø¥ÙÙ "
+"اÙÙØ³Ø§Ø±."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:68
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:62
-msgid "Set book option on new files to use split \"action\" field for \"Num\" field on registers/reports"
+msgid ""
+"Set book option on new files to use split \"action\" field for \"Num\" field "
+"on registers/reports"
msgstr ""
+"تعÙÙÙ Ø§ÙØ®Ùار ÙØ¨Ø¯Ùتر ع٠Ù
ÙÙØ§Øª Ø¬Ø¯ÙØ¯Ø© ÙØ§Ø³ØªØ®Ø¯Ø§Ù
Ø§ÙØ§ÙÙØ³Ø§Ù
ÙØ®Ø§ÙØ© Ø§ÙØ¹Ù
Ù ÙÙØ±ÙÙ
"
+"Ø§ÙØ³Ø¬Ùات / Ø§ÙØªÙØ§Ø±ÙØ±"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:69
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:63
-msgid "If selected, the default book option for new files is set so that the 'Num' cell on registers shows/updates the split 'action' field and the transaction 'num' field is shown on the second line in double line mode (and is not visible in single line mode). Otherwise, the default book option for new files is set so that the 'Num' cell on registers shows/updates the transaction 'num' field."
+msgid ""
+"If selected, the default book option for new files is set so that the 'Num' "
+"cell on registers shows/updates the split 'action' field and the transaction "
+"'num' field is shown on the second line in double line mode (and is not "
+"visible in single line mode). Otherwise, the default book option for new "
+"files is set so that the 'Num' cell on registers shows/updates the "
+"transaction 'num' field."
msgstr ""
+"إذا ØØ¯Ø¯ØªØ ÙØªÙ
تعÙÙÙ Ø§ÙØ®Ùار Ø§ÙØ§Ùتراض٠ÙÙØ¯Ùتر ÙÙÙ
ÙÙØ§Øª Ø§ÙØ¬Ø¯Ùدة بØÙØ« Ø§ÙØµÙغة "
+"Ø§ÙØ±ÙÙ
Ù Ø®ÙÙØ© ÙÙ Ø§ÙØ¹Ø±Ø¶ / Ø§ÙØªØØ¯ÙØ« Ø¨Ø§ÙØ³Ø¬Ùات ÙØÙ٠عÙ
Ù Ø§ÙØ§ÙÙØ³Ø§Ù
٠رÙÙ
اÙÙ
عاÙ
ÙØ© "
+"ÙØ¸Ùر عÙÙ Ø§ÙØ³Ø·Ø± Ø§ÙØ«Ø§ÙÙ ÙÙ ÙØ¶Ø¹ خط Ù
Ø²Ø¯ÙØ¬ ( ØºÙØ± Ù
رئ٠ÙÙ ÙØ¶Ø¹ سطر ÙØ§ØØ¯). "
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:70
msgid "Color the register as specified by the system theme"
-msgstr ""
+msgstr "ÙÙÙ Ø§ÙØ³Ø¬Ù ÙÙ
ا ÙÙ Ù
ØØ¯Ø¯ Ù
Ù ÙØ¨Ù Ø£ÙÙØ§Ù اÙÙØ¸Ø§Ù
"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:71
-msgid "If active, the register will be colored as specified by the system theme. This can be overridden to provide custom colors by editing the gtkrc file in the users home directory. Otherwise the standard register colors will be used that GnuCash has always used."
+msgid ""
+"If active, the register will be colored as specified by the system theme. "
+"This can be overridden to provide custom colors by editing the gtkrc file in "
+"the users home directory. Otherwise the standard register colors will be "
+"used that GnuCash has always used."
msgstr ""
+"إذا ÙØ´Ø·Ø©Ø سÙ٠تÙÙ٠أÙÙØ§Ù Ø§ÙØ³Ø¬Ù ÙÙ
ا ÙÙ Ù
ØØ¯Ø¯ Ù
Ù ÙØ¨Ù اÙÙØ¸Ø§Ù
. ÙÙØ°Ø§ ÙÙ
ÙÙ Ø£Ù ÙØªÙ
"
+"ØªØ¬Ø§ÙØ²Ù ÙØªÙÙÙØ± Ø£ÙÙØ§Ù Ù
Ø®ØµÙØµØ© ع٠طرÙÙ ØªØØ±Ùر Ù
ÙÙ gtkrc ÙÙ Ø§ÙØ¯ÙÙÙ Ø§ÙØ±Ø¦ÙسÙ. ÙØ¥Ùا "
+"Ø³ÙØªÙ
استخداÙ
Ø£ÙÙØ§Ù Ø§ÙØ³Ø¬Ù اÙÙÙØ§Ø³ÙØ© ÙØ¬ÙÙÙØ§Ø´."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:72
msgid "\"Enter\" key moves to bottom of register"
-msgstr ""
+msgstr "Ù
ÙØªØ§Ø Ø£Ø¯Ø®Ø§Ù ÙØØ±Ù ÙØ£Ø³ÙÙ Ø§ÙØ³Ø¬Ù"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:73
-msgid "If active, pressing the enter key will move to the bottom of the register. Otherwise pressing the enter key will move to the next transaction line."
+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 ""
+"إذا ÙØ´Ø·Ø©Ø ÙØªÙ
Ø§ÙØ¶ØºØ· عÙÙ Ù
ÙØªØ§Ø Ø¥Ø¯Ø®Ø§Ù ÙØªÙ
Ø§ÙØ§ÙØªÙØ§Ù Ø¥ÙÙ Ø§ÙØ¬Ø²Ø¡ Ø§ÙØ³ÙÙÙ Ù
Ù "
+"Ø§ÙØ³Ø¬Ù. Ø®ÙØ§Ù ذÙÙ Ø§ÙØ¶ØºØ· عÙÙ Ù
ÙØªØ§Ø إدخا٠ÙÙØªÙ٠إÙ٠خط اÙÙ
عاÙ
ÙØ© Ø§ÙØªØ§ÙÙØ©."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:74
msgid "Automatically raise the list of accounts or actions during input"
-msgstr ""
+msgstr "تعÙÙØ© ÙØ§Ø¦Ù
Ø© Ø§ÙØØ³Ø§Ø¨Ø§Øª Ø£Ù Ø§ÙØ¥Ø¬Ø±Ø§Ø¡Ø§Øª Ø®ÙØ§Ù Ø§ÙØ¥Ø¯Ø®Ø§Ù تÙÙØ§Ø¦Ùا"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:75
msgid "Move to Transfer field when memorised transaction auto filled"
-msgstr ""
+msgstr "Ø§ÙØ§ÙØªÙØ§Ù Ø¥ÙÙ ØÙÙ Ø§ÙØªØÙÙÙ Ø¹ÙØ¯Ù
ا تÙ
ÙØ£ Ø§ÙØ¹Ù
ÙÙØ© تÙÙØ§Ø¦Ùا."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:76
-msgid "If active then after a memorised transaction is automatically filled in the cursor will move to the Transfer field. If not active then it skips to the value field."
+msgid ""
+"If active then after a memorised transaction is automatically filled in the "
+"cursor will move to the Transfer field. If not active then it skips to the "
+"value field."
msgstr ""
+"إذا ÙØ´Ø·Ø© بعد Ù
ÙØ¦ اÙÙ
عاÙ
ÙØ© اÙÙ
ØÙÙØ¸Ø© ÙØ¨Ùا ÙØ§ÙÙ
ؤشر سÙÙØªÙ٠إÙÙ ØÙÙ Ø§ÙØªØÙÙÙ. Ø¥Ù "
+"ÙÙ
ÙÙÙ ÙØ´Ø·Ø§ ÙØ¥ÙÙ ØÙ٠اÙÙÙÙ
Ø©."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:77
msgid "Create a new window for each new register"
-msgstr ""
+msgstr "Ø¥ÙØªØ ÙØ§Ùذة Ø¬Ø¯ÙØ¯Ø© ÙÙÙ Ø³Ø¬Ù Ø¬Ø¯ÙØ¯"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:78
-msgid "If active, each new register will be opened in a new window. Otherwise each new register will be opened as a tab in the main window."
+msgid ""
+"If active, each new register will be opened in a new window. Otherwise each "
+"new register will be opened as a tab in the main window."
msgstr ""
+"ÙÙ ØØ§ÙØ© ÙØ´Ø·Ø©Ø Ø³ÙØªÙ
ÙØªØ ÙÙ Ø³Ø¬Ù Ø¬Ø¯ÙØ¯ ÙÙ ÙØ§Ùذة Ø¬Ø¯ÙØ¯Ø©. ÙØ¥Ùا Ø³ÙØªÙ
ÙØªØ Ø§ÙØ³Ø¬Ù "
+"Ø§ÙØ¬Ø¯Ùد ÙØ¹ÙاÙ
Ø© تبÙÙØ¨ Ù٠اÙÙØ§Ùذة Ø§ÙØ±Ø¦ÙØ³ÙØ©."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:79
msgid "Color all lines of a transaction the same"
-msgstr ""
+msgstr "ÙÙ٠جÙ
ÙØ¹ Ø®Ø·ÙØ· اÙÙ
عاÙ
ÙØ© ÙÙØ³ اÙÙÙÙ"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:80
-msgid "If active all lines that make up a single transaction will use the same color for their background. Otherwise the background colors are alternated on each line."
+msgid ""
+"If active all lines that make up a single transaction will use the same "
+"color for their background. Otherwise the background colors are alternated "
+"on each line."
msgstr ""
+"إذا ÙØ´Ø·Ø© ÙØ¥Ù جÙ
ÙØ¹ Ø§ÙØ®Ø·ÙØ· Ø§ÙØªÙ تشÙÙ Ù
عاÙ
ÙØ© ÙØ§ØØ¯Ø© سÙ٠تستخدÙ
ÙÙØ³ اÙÙÙÙ "
+"ÙØ®ÙÙÙØªÙÙ
. ÙÙÙ
ا عدا ذÙÙ ÙØªÙ
ØªÙØ§Ùب Ø£ÙÙØ§Ù Ø§ÙØ®ÙÙÙØ© ÙÙ Ù٠سطر."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:81
msgid "Show horizontal borders in a register"
-msgstr ""
+msgstr "Ø¥Ø¸ÙØ§Ø± Ø§ÙØØ¯ÙØ¯ Ø§ÙØ£ÙÙÙØ© عÙÙ Ø§ÙØ³Ø¬Ù."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:82
-msgid "Show horizontal borders between rows in a register. If active the border between cells will be indicated with a heavy line. Otherwise the border between cells will not be marked."
+msgid ""
+"Show horizontal borders between rows in a register. If active the border "
+"between cells will be indicated with a heavy line. Otherwise the border "
+"between cells will not be marked."
msgstr ""
+"ØªØ¸ÙØ± Ø§ÙØØ¯ÙØ¯ Ø§ÙØ£ÙÙÙØ© بÙÙ Ø§ÙØµÙÙÙ ÙÙ Ø§ÙØ³Ø¬Ù. إذا ÙØ´Ø·Ø© سÙ٠تتÙ
Ø§ÙØ¥Ø´Ø§Ø±Ø© Ø¥ÙÙ Ø§ÙØØ¯ÙØ¯ "
+"بÙÙ Ø§ÙØ®ÙØ§ÙØ§ Ø¨Ø®Ø·ÙØ· Ø«ÙÙÙØ©. ÙØ¥Ùا ÙÙ ÙØªÙ
ÙØ¶Ø¹ ØØ¯Ùد بÙÙ Ø§ÙØ®ÙØ§ÙØ§."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:83
msgid "Show vertical borders in a register"
-msgstr ""
+msgstr "Ø¥Ø¸ÙØ§Ø± Ø§ÙØØ¯ÙØ¯ Ø§ÙØ±Ø£Ø³ÙØ© عÙÙ Ø§ÙØ³Ø¬Ù."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:84
-msgid "Show vertical borders between columns in a register. If active the border between cells will be indicated with a heavy line. Otherwise the border between cells will not be marked."
+msgid ""
+"Show vertical borders between columns in a register. If active the border "
+"between cells will be indicated with a heavy line. Otherwise the border "
+"between cells will not be marked."
msgstr ""
+"ØªØ¸ÙØ± Ø§ÙØØ¯ÙØ¯ Ø§ÙØ±Ø£Ø³ÙØ© بÙÙ Ø§ÙØµÙÙÙ ÙÙ Ø§ÙØ³Ø¬Ù. إذا ÙØ´Ø·Ø© سÙ٠تتÙ
Ø§ÙØ¥Ø´Ø§Ø±Ø© Ø¥ÙÙ Ø§ÙØØ¯ÙØ¯ "
+"بÙÙ Ø§ÙØ®ÙØ§ÙØ§ Ø¨Ø®Ø·ÙØ· Ø«ÙÙÙØ©. ÙØ¥Ùا ÙÙ ÙØªÙ
ÙØ¶Ø¹ ØØ¯Ùد بÙÙ Ø§ÙØ®ÙØ§ÙØ§."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:85
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:138
msgid "Show all transactions on one line. (Two in double line mode.)"
-msgstr ""
+msgstr "عرض جÙ
ÙØ¹ اÙÙ
عاÙ
ÙØ§Øª Ù٠سطر ÙØ§ØØ¯. (Ø§Ø«ÙØ§Ù ÙÙ ÙØ¶Ø¹ Ø§ÙØ®Ø· اÙÙ
Ø²Ø¯ÙØ¬)."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:86
-msgid "This field specifies the default view style when opening a new register window. Possible values are \"ledger\", \"auto-ledger\" and \"journal\". The \"ledger\" setting says to show each transaction on one or two lines. The \"auto-ledger\" setting does the same, but also expands only the current transaction to show all splits. The \"journal\" setting shows all transactions in expanded form."
-msgstr ""
+msgid ""
+"This field specifies the default view style when opening a new register "
+"window. Possible values are \"ledger\", \"auto-ledger\" and \"journal\". The "
+"\"ledger\" setting says to show each transaction on one or two lines. The "
+"\"auto-ledger\" setting does the same, but also expands only the current "
+"transaction to show all splits. The \"journal\" setting shows all "
+"transactions in expanded form."
+msgstr ""
+"ÙØØ¯Ø¯ ÙØ°Ø§ Ø§ÙØÙ٠أسÙÙØ¨ Ø§ÙØ¹Ø±Ø¶ Ø§ÙØ§ÙØªØ±Ø§Ø¶Ù Ø¹ÙØ¯ ÙØªØ ÙØ§Ùذة Ø§ÙØ³Ø¬Ù Ø§ÙØ¬Ø¯Ùد. اÙÙÙÙ
"
+"اÙÙ
Ù
ÙÙØ© ÙÙ Ø§ÙØ£Ø³ØªØ§Ø° Ù Ø§ÙØ£Ø³ØªØ§Ø°Ø§ÙتÙÙØ§Ø¦Ù ÙØ§ÙÙÙÙ
ÙØ©. Ø§ÙØ£Ø³ØªØ§Ø° ÙØ¥Ø¸Ùار ÙÙ Ù
عاÙ
ÙØ© عÙÙ "
+"سطر ÙØ§ØØ¯ أ٠سطرÙÙ. Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ Ø§ÙØ£Ø³ØªØ§Ø°Ø§ÙتÙÙØ§Ø¦Ù ÙÙØ¹Ù ÙÙØ³ Ø§ÙØ´ÙØ¡Ø ÙÙÙÙ Ø£ÙØ¶Ø§ ÙÙØ³Ø¹ "
+"ÙÙØ· اÙÙ
عاÙ
ÙØ© Ø§ÙØØ§ÙÙØ© ÙØ¥Ø¸Ùار ÙÙ Ø§ÙØ§ÙÙØ³Ø§Ù
ات. ÙØ¸Ùر Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ اÙÙÙÙ
ÙØ© جÙ
ÙØ¹ "
+"اÙÙ
عاÙ
ÙØ§Øª ÙÙ Ø´ÙÙ Ù
ÙØ³Ø¹."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:87
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:140
-msgid "Automatically expand the current transaction to show all splits. All other transactions are shown on one line. (Two in double line mode.)"
+msgid ""
+"Automatically expand the current transaction to show all splits. All other "
+"transactions are shown on one line. (Two in double line mode.)"
msgstr ""
+"ØªÙØ³Ùع تÙÙØ§Ø¦Ù ÙÙÙ
عاÙ
ÙØ© Ø§ÙØØ§ÙÙØ© ÙØ¥Ø¸Ùار ÙÙ Ø§ÙØ§ÙÙØ³Ø§Ù
ات. ÙØªÙ
عرض جÙ
ÙØ¹ اÙÙ
عاÙ
ÙØ§Øª "
+"Ø§ÙØ£Ø®Ø±Ù عÙ٠سطر ÙØ§ØØ¯. (Ø§Ø«ÙØ§Ù ÙÙ ÙØ¶Ø¹ Ø§ÙØ®Ø· اÙÙ
Ø²Ø¯ÙØ¬)."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:88
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:142
msgid "All transactions are expanded to show all splits."
-msgstr ""
+msgstr "ØªÙØ³Ùع اÙÙ
عاÙ
ÙØ§Øª ÙØ¹Ø±Ø¶ جÙ
ÙØ¹ Ø§ÙØªÙسÙÙ
ات"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:90
-msgid "Show two lines of information for each transaction in a register. This is the default setting for when a register is first opened. The setting can be changed at any time via the \"View->Double Line\" menu item."
+msgid ""
+"Show two lines of information for each transaction in a register. This is "
+"the default setting for when a register is first opened. The setting can be "
+"changed at any time via the \"View->Double Line\" menu item."
msgstr ""
+"عرض سطرÙÙ Ù
٠اÙÙ
عÙÙÙ
ات ÙÙÙ Ù
عاÙ
ÙØ© ÙÙ Ø§ÙØ³Ø¬Ù. ÙØ°Ø§ ÙÙ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ Ø§ÙØ§ÙØªØ±Ø§Ø¶Ù Ø¹ÙØ¯ ÙØªØ "
+"Ø§ÙØ³Ø¬Ù Ø£ÙÙØ§. ÙÙ
Ù٠تغÙÙØ± Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ Ù٠أ٠ÙÙØª ع٠طرÙ٠عرض - خط Ù
Ø²Ø¯ÙØ¬ Ù
٠اÙÙØ§Ø¦Ù
Ø©."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:91
msgid "Only display leaf account names."
-msgstr ""
+msgstr "عرض أسÙ
اء ØØ³Ø§Ø¨Ø§Øª Ø§ÙØ£Ùرا٠ÙÙØ·"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:92
-msgid "Show only the names of the leaf accounts in the register and in the account selection popup. The default behaviour is to display the full name, including the path in the account tree. Activating this option implies that you use unique leaf names."
+msgid ""
+"Show only the names of the leaf accounts in the register and in the account "
+"selection popup. The default behaviour is to display the full name, "
+"including the path in the account tree. Activating this option implies that "
+"you use unique leaf names."
msgstr ""
+"إذا Ø£Ø®ØªÙØ±ØªØ ÙØªÙ
عرض أسÙ
اء ØØ³Ø§Ø¨Ø§Øª Ø§ÙØ£Ùرا٠ÙÙØ· ÙÙ Ø§ÙØ³Ø¬Ù ÙÙÙ ÙØ§Ùذة Ø§Ø®ØªÙØ§Ø± ØØ³Ø§Ø¨. "
+"Ø§ÙØ³ÙÙÙ Ø§ÙØ§Ùتراض٠Ù٠عرض Ø§ÙØ§Ø³Ù
اÙÙØ§Ù
ÙØ بÙ
ا Ù٠ذÙ٠اÙÙ
سار ÙÙ Ø§ÙØ¹Ø±Ø¶ Ø§ÙØªØ¯Ø±Ø¬Ù "
+"ÙÙØØ³Ø§Ø¨. ÙØ°Ø§ Ø§ÙØ®Ùار ÙØ¹Ù٠أÙÙ ÙÙ
ÙÙ٠استخداÙ
أسÙ
اء ÙØ±Ùدة Ù
Ù ÙÙØ¹Ùا ÙÙØ£ÙراÙ."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:93
msgid "Show the entered and reconcile dates"
-msgstr ""
+msgstr "Ø£Ø¸ÙØ± ØªÙØ§Ø±ÙØ® Ø§ÙØ¥Ø¯Ø®Ø§Ù Ù Ø§ÙØªØ³ÙÙØ©"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:94
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:154
-msgid "Show the date when the transaction was entered below the posted date and reconciled date on split row."
+msgid ""
+"Show the date when the transaction was entered below the posted date and "
+"reconciled date on split row."
msgstr ""
+"عرض ØªØ§Ø±ÙØ® إدخا٠اÙÙ
عاÙ
ÙØ© أسÙÙ ØªØ§Ø±ÙØ® Ø§ÙØªØ±ØÙÙ ÙØªØ§Ø±ÙØ® Ø§ÙØªØ³ÙÙØ© عÙ٠سطر Ø§ÙØ§ÙÙØ³Ø§Ù
."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:95
msgid "Show entered and reconciled dates on selection"
-msgstr ""
+msgstr "Ø£Ø¸ÙØ± ØªÙØ§Ø±ÙØ® Ø§ÙØ¥Ø¯Ø®Ø§Ù Ù Ø§ÙØªØ³ÙÙØ© ÙÙÙ
ØØ¯Ø¯"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:96
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:160
msgid "Show the entered date and reconciled date on transaction selection."
-msgstr ""
+msgstr "Ø£Ø¸ÙØ± ØªÙØ§Ø±ÙØ® Ø§ÙØ¥Ø¯Ø®Ø§Ù Ù Ø§ÙØªØ³ÙÙØ© ÙÙÙ
عاÙ
ÙØ§Øª اÙÙ
ØØ¯Ø¯Ø©"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:97
msgid "Show the calendar buttons"
-msgstr ""
+msgstr "عرض أزرار Ø§ÙØªÙÙÙÙ
"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:98
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:156
msgid "Show the calendar buttons Cancel, Today and Select."
-msgstr ""
+msgstr "عرض أزرار تÙÙÙÙ
Ø¥ÙØºØ§Ø¡Ø ÙØ§ÙÙÙÙ
ÙØªØØ¯Ùد."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:99
msgid "Move the selection to the blank split on expand"
-msgstr ""
+msgstr "ÙÙÙ Ø§ÙØªØØ¯Ùد اÙÙ Ø§ÙØªÙسÙÙ
اÙÙØ§Ø±Øº Ø¹ÙØ¯ Ø§ÙØªÙØ³ÙØ¹"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:100
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:158
-msgid "This will move the selection to the blank split when the transaction is expanded."
-msgstr ""
+msgid ""
+"This will move the selection to the blank split when the transaction is "
+"expanded."
+msgstr "ØªØØ±ÙÙ Ø§ÙØªØØ¯Ùد Ø¥ÙÙ Ø§ÙØ§ÙÙØ³Ø§Ù
اÙÙØ§Ø±Øº Ø¹ÙØ¯ ØªÙØ³Ùع اÙÙ
عاÙ
ÙØ©."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:101
msgid "Number of transactions to show in a register."
-msgstr ""
+msgstr "عدد اÙÙ
عاÙ
ÙØ§Øª Ø§ÙØªÙ Ø³ØªØ¸ÙØ± ÙÙ Ø§ÙØ³Ø¬Ù."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:102
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:144
-msgid "Show this many transactions in a register. A value of zero means show all transactions."
+msgid ""
+"Show this many transactions in a register. A value of zero means show all "
+"transactions."
msgstr ""
+"Ø¥Ø¸ÙØ§Ø± ÙØ°Ø§ Ø§ÙØ¹Ø¯Ø¯ Ù
٠اÙÙ
عاÙ
ÙØ§Øª ÙÙ Ø§ÙØ³Ø¬Ù. ÙÙÙ
Ø© Ø§ÙØµÙر تعÙÙ Ø¥Ø¸ÙØ§Ø± جÙ
ÙØ¹ اÙÙ
عاÙ
ÙØ§Øª."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:103
msgid "Number of characters for auto complete."
-msgstr ""
+msgstr "عدد Ø§ÙØ£ØØ±Ù ÙØ§Ø³ØªÙÙ
ا٠اÙÙÙÙ
ات."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:104
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:152
-msgid "This sets the number of characters before auto complete starts for description, notes and memo fields."
+msgid ""
+"This sets the number of characters before auto complete starts for "
+"description, notes and memo fields."
msgstr ""
+"ÙØ°Ø§ ÙØØ¯Ø¯ عدد Ø§ÙØ£ØØ±Ù ÙØ¨Ù Ø£Ù ÙØ¨Ø¯Ø£ Ø§ÙØ§ÙÙ
Ø§Ù Ø§ÙØªÙÙØ§Ø¦Ù ÙÙÙÙÙ
ات ÙÙÙØµÙ ÙØ§ÙÙ
Ø°ÙØ±Ø§Øª "
+"ÙØÙÙ٠اÙÙ
Ø°ÙØ±Ø©."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:105
msgid "Create a new window for each new report"
-msgstr ""
+msgstr "Ø¥ÙØ´Ø§Ø¡ إطار Ø¬Ø¯ÙØ¯ ÙÙÙ ØªÙØ±Ùر Ø¬Ø¯ÙØ¯"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:106
-msgid "If active, each new report will be opened in its own window. Otherwise new reports will be opened as tabs in the main window."
+msgid ""
+"If active, each new report will be opened in its own window. Otherwise new "
+"reports will be opened as tabs in the main window."
msgstr ""
+"إذا ÙØ´Ø·Ø©Ø Ø³ÙØªÙ
ÙØªØ ÙÙ ØªÙØ±Ùر Ø¬Ø¯ÙØ¯ Ù٠اÙÙØ§Ùذة Ø§ÙØ®Ø§ØµØ© بÙ. ÙØ¥Ùا Ø³ÙØªÙ
ÙØªØ ØªÙØ§Ø±Ùر "
+"Ø¬Ø¯ÙØ¯Ø© ÙÙ Ø¹ÙØ§Ù
ات Ø§ÙØªØ¨ÙÙØ¨ Ù٠اÙÙØ§Ùذة Ø§ÙØ±Ø¦ÙØ³ÙØ©."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:107
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:163
msgid "Use the system locale currency for all newly created reports."
-msgstr ""
+msgstr "استخداÙ
عÙ
ÙØ© ÙØºØ© اÙÙØ¸Ø§Ù
Ù٠جÙ
ÙØ¹ Ø§ÙØªÙØ§Ø±ÙØ± Ø§ÙØªÙ تÙ
Ø¥ÙØ´Ø§Ø¤Ùا ØØ¯Ùثا."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:108
-msgid "This setting controls the default currency used for reports. If set to \"locale\" then GnuCash will retrieve the default currency from the user's locale setting. If set to \"other\", GnuCash will use the setting specified by the currency-other key."
+msgid ""
+"This setting controls the default currency used for reports. If set to "
+"\"locale\" then GnuCash will retrieve the default currency from the user's "
+"locale setting. If set to \"other\", GnuCash will use the setting specified "
+"by the currency-other key."
msgstr ""
+"ÙØªØÙÙ
ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ بÙ
صدر Ø§ÙØ¹Ù
ÙØ© Ø§ÙØ§ÙØªØ±Ø§Ø¶ÙØ© ÙÙØØ³Ø§Ø¨Ø§Øª Ø§ÙØ¬Ø¯Ùدة. تعÙÙÙ \"ÙØºØ©\" Ø«Ù
"
+"جÙÙÙØ§Ø´\" Ø³ÙØªÙ
استرداد Ø§ÙØ¹Ù
ÙØ© Ø§ÙØ§ÙØªØ±Ø§Ø¶ÙØ© Ù
Ù Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ اÙÙ
ØÙÙ ÙÙÙ
ستخدÙ
. إذا تÙ
"
+"Ø§ÙØªØ¹ÙÙ٠إÙÙ \"Ø§ÙØ¢Ø®Ø±\"Ø Ø³ÙÙ ÙÙÙÙ
جÙÙÙØ§Ø´ باستخداÙ
Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ اÙÙ
ØØ¯Ø¯ Ø¨ÙØ§Ø³Ø·Ø© Ù
ÙØªØ§Ø "
+"Ø§ÙØ¹Ù
ÙØ§Øª Ø§ÙØ£Ø®Ø±Ù."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:109
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:162
msgid "Use the specified currency for all newly created reports."
-msgstr ""
+msgstr "استخدÙ
Ø§ÙØ¹Ù
ÙØ© اÙÙ
ØØ¯Ø¯Ø© ÙØ¬Ù
ÙØ¹ Ø§ÙØªÙØ§Ø±ÙØ± Ø§ÙØªÙ تÙ
Ø¥ÙØ´Ø§Ø¤Ùا ØØ¯Ùثا."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:110
msgid "Default currency for new reports"
-msgstr ""
+msgstr "Ø§ÙØ¹Ù
ÙØ© Ø§ÙØ§ÙØªØ±Ø§Ø¶ÙØ© ÙÙØªÙØ§Ø±ÙØ± Ø§ÙØ¬Ø¯Ùدة"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:111
msgid "PDF export file name format"
-msgstr ""
+msgstr "اسÙ
Ù
ÙÙ Ø§ÙØªØµØ¯Ùر Ø¨ÙØ³Ù PDF"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:113
#, no-c-format
-msgid "This setting chooses the file name for PDF export. This is a sprintf(3) string with three arguments: \"%1$s\" is the report name such as \"Invoice\". \"%2$s\" is the number of the report, which for an invoice report is the invoice number. \"%3$s\" is the date of the report, formatted according to the filename-date-format setting. (Note: Any characters that are not allowed in filenames, such as '/', will be replaced with underscores '_' in the resulting file name.)"
-msgstr ""
+msgid ""
+"This setting chooses the file name for PDF export. This is a sprintf(3) "
+"string with three arguments: \"%1$s\" is the report name such as \"Invoice"
+"\". \"%2$s\" is the number of the report, which for an invoice report is the "
+"invoice number. \"%3$s\" is the date of the report, formatted according to "
+"the filename-date-format setting. (Note: Any characters that are not allowed "
+"in filenames, such as '/', will be replaced with underscores '_' in the "
+"resulting file name.)"
+msgstr ""
+"ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙØ®ØªØ§Ø± اسÙ
Ù
ÙÙ PDF Ø§ÙØªØµØ¯Ùر. his 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.)"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:114
msgid "PDF export file name date format choice"
-msgstr ""
+msgstr " Ø§Ø®ØªÙØ§Ø± ØªÙØ³ÙÙ Ø§ÙØªØ§Ø±ÙØ® ÙØ¥Ø³Ù
Ù
ÙÙ PDF ÙÙØªØµØ¯Ùر"
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:115
-msgid "This setting chooses the way dates are used in the filename of PDF export. Possible values for this setting are \"locale\" to use the system locale setting, \"ce\" for Continental Europe style dates, \"iso\" for ISO 8601 standard dates , \"uk\" for United Kingdom style dates, and \"us\" for United States style dates."
+msgid ""
+"This setting chooses the way dates are used in the filename of PDF export. "
+"Possible values for this setting are \"locale\" to use the system locale "
+"setting, \"ce\" for Continental Europe style dates, \"iso\" for ISO 8601 "
+"standard dates , \"uk\" for United Kingdom style dates, and \"us\" for "
+"United States style dates."
msgstr ""
+"ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙØ®ØªØ§Ø± Ø§ÙØ·Ø±ÙÙØ© Ø§ÙØªÙ ÙØªÙ
Ø¨ÙØ§ استخداÙ
Ø§ÙØªÙØ§Ø±ÙØ® Ù٠اسÙ
اÙÙ
ÙÙ Ù
Ù PDF "
+"ÙÙØªØµØ¯Ùر. اÙÙÙÙ
اÙÙ
Ù
ÙÙØ© ÙÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙÙ ÙØºØ© ÙØ§Ø³ØªØ®Ø¯Ø§Ù
Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙØºØ© اÙÙØ¸Ø§Ù
Ø CE "
+"ÙÙØªÙØ§Ø±ÙØ® عÙ٠غرار Ø£ÙØ±Ùبا ISO ÙISO 8601Ø " Ù UK عÙ٠غرار اÙÙ
Ù
ÙÙØ© "
+"اÙÙ
ØªØØ¯Ø©Ø Ù US ÙÙÙÙØ§Ùات اÙÙ
ØªØØ¯Ø© ."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:116
msgid "Allow file incompatibility with older versions."
-msgstr ""
+msgstr "Ø§ÙØ³Ù
Ø§Ø Ø¨Ø¹Ø¯Ù
ØªÙØ§Ù٠اÙÙ
ÙÙ Ù
ع Ø§ÙØ¥ØµØ¯Ø§Ø±Ø§Øª اÙÙØ¯ÙÙ
Ø©."
#: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:117
-msgid "If active, gnucash will be allowed to intentionally break file compatibility with older versions, so that a data file saved in this version cannot be read by an older version again. Otherwise gnucash will write data files only in formats that can be read by older versions as well."
+msgid ""
+"If active, gnucash will be allowed to intentionally break file compatibility "
+"with older versions, so that a data file saved in this version cannot be "
+"read by an older version again. Otherwise gnucash will write data files only "
+"in formats that can be read by older versions as well."
msgstr ""
+"إذا ÙØ´Ø·Ø©Ø سÙÙ ÙÙØ³Ø± عÙ
دا ØªÙØ§Ù٠اÙÙ
ÙÙ Ù
ع Ø§ÙØ¥ØµØ¯Ø§Ø±Ø§Øª اÙÙØ¯ÙÙ
Ø©Ø Ù
ÙÙ Ø§ÙØ¨ÙØ§ÙØ§Øª "
+"اÙÙ
ØÙÙØ¸ ÙÙ ÙØ°Ø§ Ø§ÙØ¥ØµØ¯Ø§Ø± ÙØ§ ÙÙ
ÙÙ ÙØ±Ø§Ø¡ØªÙ Ø¨ÙØ§Ø³Ø·Ø© إصدار Ø£ÙØ¯Ù
Ù
رة أخرÙ. ÙØ¥Ùا سÙÙ "
+"ÙØÙØ¸ اÙÙ
Ù٠بطرÙÙØ© ÙÙ
ÙÙ ÙØ±Ø§Ø¡ØªÙا Ù
Ù ÙØ¨Ù Ø§ÙØ¥ØµØ¯Ø§Ø±Ø§Øª اÙÙØ¯ÙÙ
Ø© Ø£ÙØ¶Ø§."
#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:1
-msgid "Show a grand total of all accounts converted to the default report currency"
-msgstr ""
+msgid ""
+"Show a grand total of all accounts converted to the default report currency"
+msgstr "ØªØ¸ÙØ± اÙÙ
جÙ
ÙØ¹ اÙÙÙÙ ÙØ¬Ù
ÙØ¹ Ø§ÙØØ³Ø§Ø¨Ø§Øª ٠تØÙÙÙÙØ§ Ø¥ÙÙ ØªÙØ±Ùر Ø§ÙØ¹Ù
ÙØ© Ø§ÙØ§ÙتراضÙ"
#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:2
msgid "Show non currency commodities"
-msgstr ""
+msgstr "عرض Ø§ÙØ³Ùع Ø¨ØºÙØ± Ø§ÙØ¹Ù
ÙØ©"
#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:3
-msgid "If active, non currency commodities (stocks) will be shown. Otherwise they will be hidden."
+msgid ""
+"If active, non currency commodities (stocks) will be shown. Otherwise they "
+"will be hidden."
msgstr ""
+"إذا ÙØ´Ø·Ø© Ø³ÙØªÙ
عرض Ø§ÙØ³Ùع بدÙ٠عÙ
ÙØ© (Ø§ÙØ£Ø³ÙÙ
). ÙØ¥Ùا ÙØ¥ÙÙØ§ سÙ٠تÙÙÙ Ù
Ø®ÙÙØ©."
#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:4
msgid "Use relative profit/loss starting date"
-msgstr ""
+msgstr "استخداÙ
ØªØ§Ø±ÙØ® بدء Ø§ÙØ±Ø¨Ø / Ø§ÙØ®Ø³Ø§Ø±Ø© اÙÙØ³Ø¨Ù"
#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:5
-msgid "This setting controls the type of starting date used in profit/loss calculations. If set to \"absolute\" then GnuCash will retrieve the starting date specified by the start-date key. If set to anything else, GnuCash will retrieve the starting date specified by the start-period key."
+msgid ""
+"This setting controls the type of starting date used in profit/loss "
+"calculations. If set to \"absolute\" then GnuCash will retrieve the starting "
+"date specified by the start-date key. If set to anything else, GnuCash will "
+"retrieve the starting date specified by the start-period key."
msgstr ""
+"ÙØªØÙÙ
ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙÙ ÙÙØ¹ ØªØ§Ø±ÙØ® Ø§ÙØ¨Ø¯Ø§ÙØ© Ø§ÙØ°Ù ÙØ³ØªØ®Ø¯Ù
ÙÙ ØØ³Ø§Ø¨Ø§Øª Ø§ÙØ±Ø¨Ø / "
+"Ø§ÙØ®Ø³Ø§Ø±Ø© . إذا إخترت \"اÙÙ
Ø·ÙÙ\" ÙØ¥Ù جÙÙÙØ§Ø´ Ø³ÙØ³ØªØ±Ø¯ ØªØ§Ø±ÙØ® Ø§ÙØ¨Ø¯Ø¡ اÙÙ
ØØ¯Ø¯ Ø¨ÙØ§Ø³Ø·Ø© "
+"Ù
ÙØªØ§Ø بدء Ø§ÙØªØ§Ø±ÙØ®. إذا تÙ
تعÙÙ٠إÙÙ Ø£Ù Ø´ÙØ¡ Ø¢Ø®Ø±Ø Ø³ÙÙ ÙØªÙ
استرداد ØªØ§Ø±ÙØ® Ø§ÙØ¨Ø¯Ø¡ "
+"اÙÙ
ØØ¯Ø¯ Ø¨ÙØ§Ø³Ø·Ø© Ù
ÙØªØ§Ø بدء اÙÙØªØ±Ø©."
#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:6
msgid "Use absolute profit/loss starting date"
-msgstr ""
+msgstr "استخداÙ
ØªØ§Ø±ÙØ® بدء Ù
Ø·ÙÙ ÙÙØ±Ø¨Ø / Ø§ÙØ®Ø³Ø§Ø±Ø©"
#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:7
msgid "Starting date (in seconds from Jan 1, 1970)"
-msgstr ""
+msgstr "ØªØ§Ø±ÙØ® Ø§ÙØ¨Ø¯Ø¡ (Ø¨Ø§ÙØ«ÙاÙÙ Ù
Ù 1 ÙÙØ§Ùر 1970)"
#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:8
-msgid "This setting controls the starting date set in profit/loss calculations if the start-choice setting is set to \"absolute\". This field should contain a date as represented in seconds from January 1st, 1970."
+msgid ""
+"This setting controls the starting date set in profit/loss calculations if "
+"the start-choice setting is set to \"absolute\". This field should contain a "
+"date as represented in seconds from January 1st, 1970."
msgstr ""
+"ÙØªØÙÙ
ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙÙ ÙÙØ¹ ØªØ§Ø±ÙØ® Ø§ÙØ¨Ø¯Ø§ÙØ© Ø§ÙØ°Ù ÙØ³ØªØ®Ø¯Ù
ÙÙ ØØ³Ø§Ø¨Ø§Øª Ø§ÙØ±Ø¨Ø / "
+"Ø§ÙØ®Ø³Ø§Ø±Ø© . إذا إخترت \"اÙÙ
Ø·ÙÙ\" ÙØ¥Ù جÙÙÙØ§Ø´ Ø³ÙØ³ØªØ±Ø¯ ØªØ§Ø±ÙØ® Ø§ÙØ¨Ø¯Ø¡ اÙÙ
ØØ¯Ø¯ Ø¨ÙØ§Ø³Ø·Ø© "
+"Ù
ÙØªØ§Ø بدء Ø§ÙØªØ§Ø±ÙØ®. ÙØ¬Ø¨ Ø£Ù ÙØØªÙÙ ÙØ°Ø§ Ø§ÙØÙ٠عÙÙ ØªØ§Ø±ÙØ® Ù
تÙ
ث٠ÙÙ Ø«ÙØ§Ù Ù
Ù 1 ÙÙØ§Ùر "
+"1970."
#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:9
msgid "Starting time period identifier"
-msgstr ""
+msgstr "بدءا Ù
عر٠اÙÙØªØ±Ø© Ø§ÙØ²Ù
ÙÙØ©"
#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:10
-msgid "This setting controls the starting date set in profit/loss calculations if the start-choice setting is set to anything other than \"absolute\". This field should contain a value between 0 and 8."
+msgid ""
+"This setting controls the starting date set in profit/loss calculations if "
+"the start-choice setting is set to anything other than \"absolute\". This "
+"field should contain a value between 0 and 8."
msgstr ""
+" ÙØªØÙÙ
ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙÙ ÙÙØ¹ ØªØ§Ø±ÙØ® Ø§ÙØ¨Ø¯Ø§ÙØ© Ø§ÙØ°Ù ÙØ³ØªØ®Ø¯Ù
ÙÙ ØØ³Ø§Ø¨Ø§Øª Ø§ÙØ±Ø¨Ø / "
+"Ø§ÙØ®Ø³Ø§Ø±Ø© . إذا ÙÙ
تختر \"اÙÙ
Ø·ÙÙ\" . ÙØ¬Ø¨ Ø£Ù ÙØØªÙÙ ÙØ°Ø§ Ø§ÙØÙ٠عÙÙ ÙÙÙ
Ø© بÙÙ 0 Ù 8."
#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:11
msgid "Use relative profit/loss ending date"
-msgstr ""
+msgstr "استخداÙ
ØªØ§Ø±ÙØ® Ø§ÙØªÙاء ÙØ³Ø¨Ù ÙÙØ±Ø¨Ø / Ø§ÙØ®Ø³Ø§Ø±Ø©"
#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:12
-msgid "This setting controls the type of ending date used in profit/loss calculations. If set to \"absolute\" then GnuCash will retrieve the ending date specified by the end-date key. If set to anything else, GnuCash will retrieve the ending date specified by the end-period key."
+msgid ""
+"This setting controls the type of ending date used in profit/loss "
+"calculations. If set to \"absolute\" then GnuCash will retrieve the ending "
+"date specified by the end-date key. If set to anything else, GnuCash will "
+"retrieve the ending date specified by the end-period key."
msgstr ""
+" ÙØªØÙÙ
ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙÙ ØªØ§Ø±ÙØ® اÙÙÙØ§ÙØ© Ø§ÙØ°Ù ÙØ³ØªØ®Ø¯Ù
ÙÙ ØØ³Ø§Ø¨Ø§Øª Ø§ÙØ±Ø¨Ø / Ø§ÙØ®Ø³Ø§Ø±Ø©. "
+"إذا إخترت\"اÙÙ
Ø·ÙÙ\" ÙØ¥Ù جÙÙÙØ§Ø´ Ø³ÙØ³ØªØ±Ø¯ ØªØ§Ø±ÙØ® Ø§ÙØ§ÙØªÙØ§Ø¡ اÙÙ
ØØ¯Ø¯ Ø¨ÙØ§Ø³Ø·Ø© Ù
ÙØªØ§Ø "
+"ÙÙØ§ÙØ© Ø§ÙØªØ§Ø±ÙØ®. إذا تÙ
تعÙÙ٠إÙÙ Ø£Ù Ø´ÙØ¡ Ø¢Ø®Ø±Ø Ø³ÙÙ ÙÙÙÙ
جÙÙÙØ§Ø´ باسترداد ØªØ§Ø±ÙØ® "
+"Ø§ÙØ§ÙØªÙØ§Ø¡ اÙÙ
ØØ¯Ø¯ Ø¨ÙØ§Ø³Ø·Ø© Ù
ÙØªØ§Ø ÙÙ ÙÙØ§ÙØ© اÙÙØªØ±Ø©."
#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:13
msgid "Use absolute profit/loss ending date"
-msgstr ""
+msgstr "استخداÙ
ØªØ§Ø±ÙØ® Ø§ÙØªÙاء Ù
Ø·ÙÙ ÙÙØ±Ø¨Ø / Ø§ÙØ®Ø³Ø§Ø±Ø©"
#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:14
msgid "Ending date (in seconds from Jan 1, 1970)"
-msgstr ""
+msgstr "ØªØ§Ø±ÙØ® اÙÙÙØ§ÙØ© (Ø¨Ø§ÙØ«ÙاÙÙ Ù
Ù 1 ÙÙØ§Ùر 1970)"
#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:15
-msgid "This setting controls the ending date set in profit/loss calculations if the end-choice setting is set to \"absolute\". This field should contain a date as represented in seconds from January 1st, 1970."
+msgid ""
+"This setting controls the ending date set in profit/loss calculations if the "
+"end-choice setting is set to \"absolute\". This field should contain a date "
+"as represented in seconds from January 1st, 1970."
msgstr ""
+"ÙØªØÙÙ
ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙÙ ØªØ§Ø±ÙØ® اÙÙÙØ§ÙØ© Ø§ÙØ°Ù ÙØ³ØªØ®Ø¯Ù
ÙÙ ØØ³Ø§Ø¨Ø§Øª Ø§ÙØ±Ø¨Ø / Ø§ÙØ®Ø³Ø§Ø±Ø© . "
+"إذا إخترت \"اÙÙ
Ø·ÙÙ\" ÙØ¥Ù جÙÙÙØ§Ø´ Ø³ÙØ³ØªØ±Ø¯ ØªØ§Ø±ÙØ® اÙÙÙØ§ÙØ© اÙÙ
ØØ¯Ø¯ Ø¨ÙØ§Ø³Ø·Ø© Ù
ÙØªØ§Ø بدء "
+"Ø§ÙØªØ§Ø±ÙØ®. ÙØ¬Ø¨ Ø£Ù ÙØØªÙÙ ÙØ°Ø§ Ø§ÙØÙ٠عÙÙ ØªØ§Ø±ÙØ® Ù
تÙ
ث٠ÙÙ Ø«ÙØ§Ù Ù
Ù 1 ÙÙØ§Ùر 1970."
#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:16
msgid "Ending time period identifier"
-msgstr ""
+msgstr "Ù
عر٠إÙÙØ§Ø¡ اÙÙØªØ±Ø© Ø§ÙØ²Ù
ÙÙØ©"
#: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:17
-msgid "This setting controls the ending date set in profit/loss calculations if the end-choice setting is set to anything other than \"absolute\". This field should contain a value between 0 and 8."
+msgid ""
+"This setting controls the ending date set in profit/loss calculations if the "
+"end-choice setting is set to anything other than \"absolute\". This field "
+"should contain a value between 0 and 8."
msgstr ""
+"ÙØªØÙÙ
ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙÙ ØªØ§Ø±ÙØ® Ø§ÙØ§ÙØªÙØ§Ø¡ اÙÙ
ÙØµÙص عÙÙÙ ÙÙ ØØ³Ø§Ø¨Ø§Øª Ø§ÙØ±Ø¨Ø / Ø§ÙØ®Ø³Ø§Ø±Ø© "
+"إذا تÙ
تعÙÙ٠إعداد ÙÙØ§ÙØ© Ø§ÙØ§Ø®ØªÙار Ø¥ÙÙ Ø£Ù Ø´ÙØ¡ آخر ØºÙØ± \"Ù
Ø·ÙÙ\". ÙØ¬Ø¨ Ø£Ù ÙØØªÙÙ "
+"ÙØ°Ø§ Ø§ÙØÙ٠عÙÙ ÙÙÙ
Ø© بÙÙ 0 Ù 8."
#: ../src/gnome/gschemas/org.gnucash.window.pages.gschema.xml.in.in.h:1
msgid "Display this column"
-msgstr ""
+msgstr "عرض ÙØ°Ø§ Ø§ÙØ¹Ù
ÙØ¯"
#: ../src/gnome/gschemas/org.gnucash.window.pages.gschema.xml.in.in.h:2
-msgid "This setting controls whether the given column will be visible in the view. TRUE means visible, FALSE means hidden."
+msgid ""
+"This setting controls whether the given column will be visible in the view. "
+"TRUE means visible, FALSE means hidden."
msgstr ""
+"ÙØªØÙÙ
ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ Ù
ا إذا ÙØ§Ù Ø§ÙØ¹Ù
ÙØ¯ Ø¸Ø§ÙØ±Ø§ ÙÙ Ø§ÙØ¹Ø±Ø¶. تعÙ٠اÙÙÙÙ
Ø© \"صØÙØ\" Ø£ÙÙ "
+"Ù
رئ٠Ù\"خاطئ\" Ø£ÙÙ Ø®ÙÙ."
#: ../src/gnome/gschemas/org.gnucash.window.pages.gschema.xml.in.in.h:3
msgid "Width of this column"
-msgstr ""
+msgstr "عرض ÙØ°Ø§ Ø§ÙØ¹Ù
ÙØ¯"
#: ../src/gnome/gschemas/org.gnucash.window.pages.gschema.xml.in.in.h:4
msgid "This setting stores the width of the given column in pixels."
-msgstr ""
+msgstr "ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙØ®Ø²Ù عرض Ø§ÙØ¹Ù
ÙØ¯ بÙÙØ§Ø· Ø§ÙØ´Ø§Ø´Ø©."
#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:1
msgid ""
"This assistant will help you setup and use accounting periods. \n"
" \n"
-"Danger: this feature does not work correctly at this time; it is still under development. It will probably damage your data in such a way that it cannot be repaired!"
+"Danger: this feature does not work correctly at this time; it is still under "
+"development. It will probably damage your data in such a way that it cannot "
+"be repaired!"
msgstr ""
+"ÙØ°Ø§ اÙÙ
ساعد ÙØ³Ø§Ø¹Ø¯Ù عÙ٠إعداد ÙØ§Ø³ØªØ®Ø¯Ø§Ù
اÙÙØªØ±Ø§Øª اÙÙ
ØØ§Ø³Ø¨ÙØ©. \n"
+" ØªÙØ¨ÙÙ: ÙØ°Ù اÙÙ
ÙØ²Ø© ÙØ§ تعÙ
٠بشÙ٠صØÙØ ÙÙ ÙØ°Ø§ اÙÙÙØª. ÙÙÙ ÙØ§ تزا٠ÙÙØ¯ Ø§ÙØªØ·ÙÙØ±. "
+"Ù
٠اÙÙ
ØØªÙ
Ù Ø£Ù ØªÙØÙ Ø§ÙØ¶Ø±Ø± Ø¨Ø§ÙØ¨ÙØ§ÙØ§Øª Ø§ÙØ®Ø§ØµØ© ب٠بطرÙÙØ© ÙØ§ ÙÙ
ÙÙ Ø¥ØµÙØ§ØÙا!"
#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:4
msgid "Setup Account Period"
-msgstr ""
+msgstr "إعداد ÙØªØ±Ø© ØØ³Ø§Ø¨"
#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:5
msgid ""
"\n"
-"Select an accounting period and the closing date which must not be in the future and is greater than the closing date of the previous book.\n"
+"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"
+" \"Ø§ÙØ¯Ùتر\" Ø³ÙØªÙ
Ø¥ØºÙØ§ÙÙ Ø¹ÙØ¯ Ù
ÙØªØµÙ اÙÙÙÙ ÙÙ Ø§ÙØªØ§Ø±ÙØ® اÙÙ
ØØ¯Ø¯."
#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:9
msgid "xxx"
@@ -7317,7 +8257,7 @@ msgstr "xxx"
#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:10
msgid "Book Closing Dates"
-msgstr ""
+msgstr "ØªØ§Ø±ÙØ® Ø¥ØºÙØ§Ù Ø§ÙØ¯Ùتر:"
#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:11
msgid "Title:"
@@ -7331,26 +8271,33 @@ msgstr "Ù
ÙØ§ØØ¸Ø§Øª:"
#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:13
#: ../src/gnome-utils/gtkbuilder/dialog-book-close.glade.h:1
msgid "Close Book"
-msgstr ""
+msgstr "إغÙÙ Ø§ÙØ¯Ùتر"
#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:14
msgid "Account Period Finish"
-msgstr ""
+msgstr "Ø¥ÙØªÙاء ÙØªØ±Ø© Ø§ÙØØ³Ø§Ø¨"
#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:15
msgid "Press 'Close' to Exit."
-msgstr ""
+msgstr "اضغط عÙÙ âØ¥ØºÙØ§Ùâ ÙÙØ®Ø±Ùج."
#: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:16
msgid "Summary Page"
-msgstr ""
+msgstr "ØµÙØØ© اÙÙ
ÙØ®Øµ"
#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:1
msgid ""
-"This assistant will help you create a set of GnuCash accounts for your assets (such as investments, checking or savings accounts), liabilities (such as loans) and different kinds of income and expenses you might have.\n"
+"This assistant will help you create a set of GnuCash accounts for your "
+"assets (such as investments, checking or savings accounts), liabilities "
+"(such as loans) and different kinds of income and expenses you might have.\n"
"\n"
"Click 'Cancel' if you do not wish to create any new accounts now."
msgstr ""
+"ÙØ°Ø§ اÙÙ
ساعد سÙÙ ÙØ³Ø§Ø¹Ø¯Ù ÙØ¥Ùشاء Ù
جÙ
ÙØ¹Ø© Ù
Ù ØØ³Ø§Ø¨Ø§Øª ÙØ£ØµÙÙÙ (Ù
Ø«Ù Ø§ÙØ§Ø³ØªØ«Ù
Ø§Ø±Ø§ØªØ "
+"ÙØ§ÙØ´ÙÙØ§Øª Ø£Ù ØØ³Ø§Ø¨Ø§Øª Ø§ÙØ§Ø¯Ø®Ø§Ø±)Ø ÙØ§ÙخصÙÙ
(Ù
ث٠اÙÙØ±Ùض) ÙØ£ÙÙØ§Ø¹ Ù
ختÙÙØ© Ù
Ù Ø§ÙØ¥Ùرادات "
+"ÙØ§ÙÙ
صرÙÙØ§Øª ÙØ¯ تÙÙÙ ÙØ¯ÙÙÙ
. \n"
+"\n"
+" اÙÙØ± ÙÙÙ Ø¥ÙØºØ§Ø¡ إذا ÙÙØª ÙØ§ ترغب ÙÙ Ø¥ÙØ´Ø§Ø¡ Ø£Ù ØØ³Ø§Ø¨Ø§Øª Ø¬Ø¯ÙØ¯Ø© Ø§ÙØ¢Ù."
#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:4
msgid "New Account Hierarchy Setup"
@@ -7361,6 +8308,8 @@ msgid ""
"\n"
"Please choose the currency to use for new accounts."
msgstr ""
+"\n"
+" Ø§ÙØ±Ø¬Ø§Ø¡ Ø§Ø®ØªÙØ§Ø± عÙ
ÙØ© ÙØ§Ø³ØªØ®Ø¯Ø§Ù
ÙØ§ ÙÙ Ø§ÙØØ³Ø§Ø¨Ø§Øª Ø¬Ø¯ÙØ¯Ø©."
#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:7
msgid "Choose Currency"
@@ -7369,12 +8318,19 @@ msgstr "اختر Ø§ÙØ¹Ù
ÙØ©"
#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:8
msgid ""
"\n"
-"Select categories that correspond to the ways that you will use GnuCash. Each category you select will cause several accounts to be created. Select the categories that are relevant to you. You can always create additional accounts by hand later."
+"Select categories that correspond to the ways that you will use GnuCash. "
+"Each category you select will cause several accounts to be created. Select "
+"the categories that are relevant to you. You can always create additional "
+"accounts by hand later."
msgstr ""
+"\n"
+" ØØ¯Ø¯ اÙÙØ¦Ø§Øª Ø§ÙØªÙ ØªØªÙØ§ÙÙ Ù
ع Ø§ÙØ·Ø±Ù Ø§ÙØªÙ ستستخدÙ
ÙØ§ ÙØ¬ÙÙÙØ§Ø´. ÙÙ ÙØ¦Ø© ÙÙ
ت Ø¨ØªØØ¯ÙØ¯ÙØ§ "
+"سÙ٠تسبب Ø¥ÙØ´Ø§Ø¡ عدة ØØ³Ø§Ø¨Ø§Øª. ØØ¯Ø¯ اÙÙØ¦Ø§Øª Ø§ÙØªÙ ØªØ±ÙØ¯Ùا. ÙÙ
ÙÙÙ Ø¥ÙØ´Ø§Ø¡ ØØ³Ø§Ø¨Ø§Øª "
+"إضاÙÙØ© دائÙ
ا باÙÙØ¯ ÙÙ ÙÙØª ÙØ§ØÙ."
#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:10
msgid "<b>Categories</b>"
-msgstr ""
+msgstr "</b>Ø§ÙØªØµÙÙÙØ§Øª<b>"
#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:11
#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:50
@@ -7389,22 +8345,29 @@ msgstr "Ù
Ø³Ø Ø§ÙÙÙ"
#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:13
msgid "<b>Category Description</b>"
-msgstr ""
+msgstr "</b>ÙØµÙ Ø§ÙØªØµÙÙÙØ§Øª<b>"
#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:14
msgid "Choose accounts to create"
-msgstr ""
+msgstr "اختر Ø§ÙØØ³Ø§Ø¨ ÙÙØ§Ùشاء"
#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:15
msgid ""
"\n"
-"If you would like to change an account's name, click on the row containing the account, then click on the account name and change it.\n"
+"If you would like to change an account's name, click on the row containing "
+"the account, then click on the account name and change it.\n"
"\n"
-"Some accounts are marked as \"Placeholder\". Placeholder accounts are used to create a hierarchy of accounts and normally do not have transactions or opening balances. If you would like an account to be a placeholder account, click the checkbox for that account.\n"
+"Some accounts are marked as \"Placeholder\". Placeholder accounts are used "
+"to create a hierarchy of accounts and normally do not have transactions or "
+"opening balances. If you would like an account to be a placeholder account, "
+"click the checkbox for that account.\n"
"\n"
-"If you would like an account to have an opening balance, click on the row containing the account, then click on the opening balance field and enter the starting balance.\n"
+"If you would like an account to have an opening balance, click on the row "
+"containing the account, then click on the opening balance field and enter "
+"the starting balance.\n"
"\n"
-"Note: all accounts except Equity and placeholder accounts may have an opening balance.\n"
+"Note: all accounts except Equity and placeholder accounts may have an "
+"opening balance.\n"
msgstr ""
#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:24
@@ -7413,12 +8376,19 @@ msgstr "إعداد Ø§ÙØØ³Ø§Ø¨Ø§Øª اÙÙ
ختارة"
#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:25
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"
"Press `Cancel' to close this dialog without creating any new accounts."
msgstr ""
+"أختر \"تطبÙÙ\";ÙØ¥Ùشاء ØØ³Ø§Ø¨Ø§Øª Ø¬Ø¯ÙØ¯Ø©. سÙ٠تÙÙ٠بعد ذÙÙ ÙØ§Ø¯Ø±Ø§ عÙÙ ØÙØ¸ÙØ§ Ø¥ÙÙ Ù
ÙÙ "
+"Ø£Ù ÙØ§Ø¹Ø¯Ø© Ø§ÙØ¨ÙØ§ÙØ§Øª. \n"
+"\n"
+" اضغط \"Ø§ÙØ®ÙÙ\" ÙÙ
راجعة Ø§Ø®ØªÙØ§Ø±Ø§ØªÙ. \n"
+"\n"
+" اضغط \"Ø¥ÙØºØ§Ø¡ Ø§ÙØ£Ù
ر\" ÙØ¥ØºÙØ§Ù ÙØ°Ø§ Ø§ÙØÙØ§Ø± دÙÙ Ø¥ÙØ´Ø§Ø¡ Ø£Ù ØØ³Ø§Ø¨Ø§Øª Ø¬Ø¯ÙØ¯Ø©."
#: ../src/gnome/gtkbuilder/assistant-hierarchy.glade.h:30
msgid "Finish Account Setup"
@@ -7426,18 +8396,29 @@ msgstr "Ø§ÙØ§ÙØªÙØ§Ø¡ Ù
٠إعداد Ø§ÙØØ³Ø§Ø¨"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:1
msgid ""
-"This is a step-by-step method for creating a loan repayment within GnuCash. In this assistant, you can input the details of your loan and its repayment along with the details of its payback. Using that information, the appropriate Scheduled Transactions will be created.\n"
+"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."
+"If you make a mistake or want to make changes later, you can edit the "
+"created Scheduled Transactions directly."
msgstr ""
+"ÙØ°Ù Ù٠طرÙÙØ© Ø®Ø·ÙØ© Ø¨Ø®Ø·ÙØ© ÙØ¥Ùشاء سداد اÙÙØ±Ø¶ Ù٠جÙÙÙØ§Ø´. ÙÙ ÙØ°Ø§ اÙÙ
Ø³Ø§Ø¹Ø¯Ø ÙÙ
ÙÙ "
+"Ø¥Ø¯Ø®Ø§Ù ØªÙØ§ØµÙ٠اÙÙØ±Ø¶ Ø§ÙØ®Ø§Øµ Ø¨ÙØ ÙØ¥Ø³ÙÙØ¨ Ø§ÙØ£Ùساط Ù Ø§ÙØ³Ø¯Ø§Ø¯ . باستخداÙ
ÙØ°Ù "
+"اÙÙ
عÙÙÙ
Ø§ØªØ Ø³ÙØªÙ
Ø¥ÙØ´Ø§Ø¡ اÙÙ
عاÙ
ÙØ§Øª اÙÙ
جدÙÙØ©. \n"
+"\n"
+" إذا أخطأت أ٠ترغب Ù٠إجراء تغÙÙØ±Ø§Øª ÙÙ ÙÙØª ÙØ§ØÙØ ÙÙ
ÙÙÙ ØªØØ±Ùر اÙÙ
عاÙ
ÙØ§Øª Ø§ÙØªÙ "
+"Ù
٠اÙÙ
ÙØ±Ø± Ø¥ÙØ´Ø§Ø¤Ùا Ù
باشرة."
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:4
msgid "Loan / Mortgage Repayment Setup"
-msgstr ""
+msgstr "إعداد سداد اÙÙØ±Ø¶ / Ø§ÙØ±ÙÙ Ø§ÙØ¹ÙارÙ"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:5
-msgid "Enter the Loan Details, as a minimum enter a valid Loan Account and Amount.\n"
-msgstr ""
+msgid ""
+"Enter the Loan Details, as a minimum enter a valid Loan Account and Amount.\n"
+msgstr "Ø£Ø¯Ø®Ù ØªÙØ§ØµÙ٠اÙÙØ±Ø¶Ø ÙØØ¯ أدÙÙ Ø¥Ø¯Ø®Ù ØØ³Ø§Ø¨ ÙØ±Ø¶ ØµØ§ÙØ ÙÙ
ÙØ¯Ø§Ø±Ù. \n"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:7
msgid "Interest Rate:"
@@ -7464,7 +8445,9 @@ msgid "Loan Account:"
msgstr "ØØ³Ø§Ø¨ اÙÙØ±Ø¶:"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:12
-msgid "Enter the number of months still to be paid off. This determines both the remaining principle and the duration of the scheduled transaction."
+msgid ""
+"Enter the number of months still to be paid off. This determines both the "
+"remaining principle and the duration of the scheduled transaction."
msgstr ""
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:15
@@ -7483,17 +8466,19 @@ msgstr "ØªÙØ±Ø§Ø± ØªØºÙØ± سعر اÙÙØ§Ø¦Ø¯Ø©"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:18
msgid "Loan Details"
-msgstr ""
+msgstr "ØªÙØ§ØµÙ٠اÙÙØ±Ø¶"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:19
msgid ""
"\n"
"Do you utilise an escrow account, if so an account must be specified..."
msgstr ""
+"\n"
+" ÙÙ ØªØ±ÙØ¯ استخداÙ
ØØ³Ø§Ø¨ Ø§ÙØ¶Ù
Ø§ÙØ إذا ÙØ§Ù Ø§ÙØ£Ù
ر ÙØ°ÙÙ ÙØ¬Ø¨ ØªØØ¯Ùد ØØ³Ø§Ø¨ ..."
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:21
msgid "... utilize an escrow account for payments?"
-msgstr ""
+msgstr "... استخداÙ
ØØ³Ø§Ø¨ Ø§ÙØ¶Ù
ا٠ÙÙÙ
دÙÙØ¹Ø§ØªØ"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:22
msgid "Escrow Account:"
@@ -7501,13 +8486,15 @@ msgstr "ØØ³Ø§Ø¨ Ø§ÙØ¶Ù
اÙ:"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:23
msgid "Loan Repayment Options"
-msgstr ""
+msgstr "Ø®ÙØ§Ø±Ø§Øª سداد اÙÙØ±Ø¶"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:24
msgid ""
"\n"
"All accounts must have valid entries to continue.\n"
msgstr ""
+"\n"
+"ÙØ¬Ø¨ Ø£Ù ÙÙÙÙ ÙÙÙ Ø§ÙØØ³Ø§Ø¨Ø§Øª Ø¥Ø¯Ø®Ø§ÙØ§Øª ØµØ§ÙØØ© ÙÙÙ
تابعة.\n"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:27
msgid "Payment From:"
@@ -7529,17 +8516,19 @@ msgstr "اÙÙØ§Ø¦Ø¯Ø© Ø¥ÙÙ:"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:31
msgid "Repayment Frequency"
-msgstr ""
+msgstr "تردد Ø¯ÙØ¹Ø§Øª Ø§ÙØ³Ø¯Ø§Ø¯"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:32
msgid "Loan Repayment"
-msgstr ""
+msgstr "سداد اÙÙØ±Ø¶"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:33
msgid ""
"\n"
"All enabled option pages must contain valid entries to continue.\n"
msgstr ""
+"\n"
+" ÙØ¬Ø¨ Ø£Ù ØªØØªÙÙ ÙÙ ØµÙØØ§Øª Ø§ÙØ®Ùارات عÙÙ Ø¥Ø¯Ø®Ø§ÙØ§Øª ØµØ§ÙØØ© ÙÙÙ
تابعة . \n"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:36
msgid "Payment To (Escrow):"
@@ -7578,21 +8567,23 @@ msgstr "ØªÙØ±Ø§Ø± Ø§ÙØ¯Ùع"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:44
msgid "Previous Option"
-msgstr ""
+msgstr "Ø§ÙØ®Ùار Ø§ÙØ³Ø§Ø¨Ù"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:45
msgid "Next Option"
-msgstr ""
+msgstr "Ø§ÙØ®Ùار اÙÙØ§Ø¯Ù
"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:46
msgid "Loan Payment"
-msgstr ""
+msgstr "سداد اÙÙØ±Ø¶"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:47
msgid ""
"\n"
"Review the details below and if correct press Apply to create the schedule."
msgstr ""
+"\n"
+" راجع Ø§ÙØªÙاصÙÙ Ø£Ø¯ÙØ§ÙØ ÙØ¥Ø°Ø§ ÙØ§Ùت صØÙØØ© Ø£ÙÙØ± تطبÙÙ ÙØ¥Ùشاء Ø§ÙØ¬Ø¯ÙÙ Ø§ÙØ²Ù
ÙÙ."
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:49
msgid "Range: "
@@ -7611,15 +8602,15 @@ msgstr "ÙØ·Ø§Ù Ø§ÙØªØ§Ø±ÙØ®"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:52
msgid "Loan Review"
-msgstr ""
+msgstr "Ù
راجعة اÙÙØ±Ø¶"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:53
msgid "Schedule added successfully."
-msgstr ""
+msgstr "أضÙÙ Ø§ÙØ¬Ø¯ÙÙ Ø¨ÙØ¬Ø§Ø."
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:54
msgid "Loan Summary"
-msgstr ""
+msgstr "Ù
ÙØ®Øµ ÙØ±Ø¶"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:55
#: ../src/gnome-utils/gnc-date-delta.c:220
@@ -7635,43 +8626,43 @@ msgstr "Ø§ÙØ³ÙÙØ§Øª"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:57
msgid "Current Year"
-msgstr ""
+msgstr "Ø§ÙØ³ÙØ© Ø§ÙØØ§ÙÙØ©"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:58
msgid "Now + 1 Year"
-msgstr ""
+msgstr "Ø§ÙØ¢Ù + Ø³ÙØ©"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:59
msgid "Whole Loan"
-msgstr ""
+msgstr "اÙÙØ±Ø¶ ÙÙÙ"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:61
msgid "Interest Rate"
-msgstr ""
+msgstr "سعر اÙÙØ§Ø¦Ø¯Ø©"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:62
msgid "APR (Compounded Daily)"
-msgstr ""
+msgstr "اÙÙ
Ø¹Ø¯Ù Ø§ÙØ³ÙÙÙ (ÙÙÙ
Ù Ù
Ø±ÙØ¨)"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:63
msgid "APR (Compounded Weekly)"
-msgstr ""
+msgstr "اÙÙ
Ø¹Ø¯Ù Ø§ÙØ³ÙÙÙ (Ø£Ø³Ø¨ÙØ¹Ù Ù
Ø±ÙØ¨)"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:64
msgid "APR (Compounded Monthly)"
-msgstr ""
+msgstr "اÙÙ
Ø¹Ø¯Ù Ø§ÙØ³ÙÙÙ (Ø´ÙØ±Ù Ù
Ø±ÙØ¨)"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:65
msgid "APR (Compounded Quarterly)"
-msgstr ""
+msgstr "اÙÙ
Ø¹Ø¯Ù Ø§ÙØ³ÙÙÙ (ربع سÙÙÙ Ù
Ø±ÙØ¨)"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:66
msgid "APR (Compounded Annually)"
-msgstr ""
+msgstr "اÙÙ
Ø¹Ø¯Ù Ø§ÙØ³ÙÙÙ (سÙÙÙ Ù
Ø±ÙØ¨)"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:67
msgid "Fixed Rate"
-msgstr ""
+msgstr "Ù
عد٠ثابت"
#: ../src/gnome/gtkbuilder/assistant-loan.glade.h:68
msgid "3/1 Year ARM"
@@ -7691,23 +8682,31 @@ msgstr ""
#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:1
msgid "This assistant will help you record a stock split or stock merger.\n"
-msgstr ""
+msgstr "ÙÙØ°Ø§ اÙÙ
ساعد سÙÙ ÙØ³Ø§Ø¹Ø¯Ù عÙ٠تسجÙ٠تجزئة سÙÙ
Ø£Ù Ø§ÙØ¯Ù
اج أسÙÙ
. \n"
#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:3
msgid "Stock Split Assistant"
-msgstr ""
+msgstr "Ù
ساعد تجزئة Ø§ÙØ£Ø³ÙÙ
"
#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:4
-msgid "Select the account for which you want to record a stock split or merger."
-msgstr ""
+msgid ""
+"Select the account for which you want to record a stock split or merger."
+msgstr "ØØ¯Ø¯ Ø§ÙØØ³Ø§Ø¨ Ø§ÙØ°Ù ØªØ±ÙØ¯ تسجÙ٠تجزئة Ø§ÙØ³ÙÙ
Ø£Ù Ø§ÙØ¯Ù
اجÙ."
#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:5
msgid "Stock Split Account"
-msgstr ""
+msgstr "ØØ³Ø§Ø¨ تجزئة Ø§ÙØ³ÙÙ
."
#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:6
-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."
+msgid ""
+"Enter the date and the number of shares you gained or lost from the stock "
+"split or merger. For stock mergers (negative splits) use a negative value "
+"for the share distribution. You can also enter a description of the "
+"transaction, or accept the default one."
msgstr ""
+"Ø£Ø¯Ø®Ù Ø§ÙØªØ§Ø±ÙØ® ÙØ¹Ø¯Ø¯ Ø§ÙØ£Ø³ÙÙ
اÙÙ
ÙØªØ³Ø¨Ø© أ٠اÙÙ
ÙÙÙØ¯Ø© Ù
٠تجزئة Ø§ÙØ³ÙÙ
Ø£Ù Ø§ÙØ§ÙدÙ
اج. "
+"ÙØ¹Ù
ÙÙØ§Øª دÙ
ج Ø§ÙØ£Ø³ÙÙ
(اÙÙØ³Ø§Ù
ات Ø³ÙØ¨ÙØ©) استخداÙ
ÙÙÙ
Ø© Ø³Ø§ÙØ¨Ø© ÙØªÙØ²ÙØ¹ سÙÙ
. ÙÙ
ÙÙÙ "
+"Ø£ÙØ¶Ø§ Ø¥Ø¯Ø®Ø§Ù ÙØµÙا ÙÙØ°Ù Ø§ÙØµÙÙØ©Ø Ø£Ù ÙØ¨ÙÙ Ø§ÙØ®Ùار Ø§ÙØ§ÙتراضÙ."
#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:7
#: ../src/gnome/gtkbuilder/dialog-price.glade.h:6
@@ -7728,11 +8727,14 @@ msgstr "اÙÙØµÙ:"
#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:10
msgid "Stock Split"
-msgstr ""
+msgstr "تجزئة Ø§ÙØ³ÙÙ
"
#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:11
-msgid "If you want to record a stock price for the split, enter it below. You may safely leave it blank."
+msgid ""
+"If you want to record a stock price for the split, enter it below. You may "
+"safely leave it blank."
msgstr ""
+"إذا ÙÙØª ترغب Ù٠تسجÙ٠سعر Ø§ÙØ³ÙÙ
ÙÙØ§ÙÙØ³Ø§Ù
Ø Ø£Ø¯Ø®ÙÙ Ø£Ø¯ÙØ§Ù. Ø£Ù ÙÙ
ÙÙ٠ترÙÙ ÙØ§Ø±ØºØ§."
#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:12
msgid "New _Price:"
@@ -7744,11 +8746,15 @@ msgstr "Ø§ÙØ¹Ù
ÙØ©:"
#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:14
msgid "Stock Split Details"
-msgstr ""
+msgstr "ØªÙØ§ØµÙ٠تجزئة Ø§ÙØ³ÙÙ
."
#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:15
-msgid "If you received a cash disbursement as a result of the stock split, enter the details of that payment here. Otherwise, just click `Forward'."
+msgid ""
+"If you received a cash disbursement as a result of the stock split, enter "
+"the details of that payment here. Otherwise, just click `Forward'."
msgstr ""
+"إذا ÙÙØª ÙØ¯ تÙÙÙØª صر٠ÙÙØ¯ÙØ© ÙØªÙجة ÙØªØ¬Ø²Ø¦Ø© Ø§ÙØ³ÙÙ
Ø Ø£Ø¯Ø®Ù ØªÙØ§ØµÙÙ ÙÙØ§. Ø®ÙØ§Ù ذÙÙØ "
+"ÙÙØ· اÙÙØ± `Ø¥ÙÙ Ø§ÙØ£Ù
اÙ
;."
#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:16
msgid "_Amount:"
@@ -7761,27 +8767,32 @@ msgstr "_\"Ù
Ø°ÙØ±Ø©\":"
#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:18
msgid "Cash In Lieu"
-msgstr ""
+msgstr "ÙÙØ¯Ù"
#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:19
msgid "<b>_Income Account</b>"
-msgstr ""
+msgstr "<b>ØØ³Ø§Ø¨ Ø§ÙØ¯Ø®Ù</b>"
#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:20
msgid "<b>A_sset Account</b>"
-msgstr ""
+msgstr "<b>ØØ³Ø§Ø¨ Ø§ÙØ£ØµÙÙ</b>"
#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:21
msgid "Cash in Lieu"
-msgstr ""
+msgstr "ÙÙØ¯Ù"
#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:22
-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."
+msgid ""
+"If you are finished creating the stock split or merger, press `Apply'. You "
+"may also press `Back' to review your choices, or `Cancel' to quit without "
+"making any changes."
msgstr ""
+"إذا تÙ
Ø§ÙØ§ÙØªÙØ§Ø¡ Ù
٠تÙÙØ¦Ø© تجزئة Ø§ÙØ³ÙÙ
Ø£Ù Ø§ÙØ§ÙدÙ
Ø§Ø¬Ø Ø§Ø¶ØºØ· تطبÙÙ. ÙÙ
ا ØªØ³ØªØ·ÙØ¹ "
+"Ø§ÙØ¶ØºØ· Ø§ÙØ®ÙÙ ÙÙ
راجعة Ø§Ø®ØªÙØ§Ø±Ø§ØªÙØ Ø£Ù Ø¥ÙØºØ§Ø¡ ÙØ¥ÙÙØ§Ø¡ دÙ٠إجراء Ø£ÙØ© تغÙÙØ±Ø§Øª."
#: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:23
msgid "Stock Split Finish"
-msgstr ""
+msgstr "Ø¥ÙÙØ§Ø¡ تجزئة Ø§ÙØ£Ø³ÙÙ
"
#: ../src/gnome/gtkbuilder/dialog-commodities.glade.h:1
msgid "Securities"
@@ -7797,15 +8808,15 @@ msgstr "Ø¥Ø¸ÙØ§Ø± Ø§ÙØ¹Ù
ÙØ§Øª اÙÙØ·ÙÙØ©"
#: ../src/gnome/gtkbuilder/dialog-commodities.glade.h:4
msgid "Add a new commodity."
-msgstr ""
+msgstr "Ø¥Ø¶Ø§ÙØ© Ø³ÙØ¹Ø© Ø¬Ø¯ÙØ¯Ø©."
#: ../src/gnome/gtkbuilder/dialog-commodities.glade.h:5
msgid "Remove the current commodity."
-msgstr ""
+msgstr "Ø¥Ø²Ø§ÙØ© Ø§ÙØ³Ùعة Ø§ÙØØ§ÙÙØ©."
#: ../src/gnome/gtkbuilder/dialog-commodities.glade.h:6
msgid "Edit the current commodity."
-msgstr ""
+msgstr "ØªØØ±Ùر Ø§ÙØ³Ùعة Ø§ÙØØ§ÙÙØ©."
#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:1
msgid "Loan Repayment Calculator"
@@ -7821,7 +8832,7 @@ msgstr "ÙØªØ±Ø§Øª Ø§ÙØ³Ø¯Ø§Ø¯"
#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:4
msgid "Clear the entry."
-msgstr ""
+msgstr "Ù
Ø³Ø Ø§ÙØ¥Ø¯Ø®Ø§Ù."
#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:5
msgid "Interest rate"
@@ -7845,7 +8856,7 @@ msgstr "اÙÙÙÙ
Ø© اÙÙ
Ø³ØªÙØ¨ÙÙØ©"
#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:10
msgid "Recalculate the (single) blank entry in the above fields."
-msgstr ""
+msgstr "إعادة ØØ³Ø§Ø¨ اÙÙ
دخÙ٠اÙÙØ§Ø±Øº Ù٠اÙÙ
Ø¬Ø§ÙØ§Øª Ø£Ø¹ÙØ§Ù."
#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:11
msgid "Calculate"
@@ -7875,7 +8886,7 @@ msgstr "Ù
ØªÙØ§ØµÙ"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:51
#: ../src/gnome-utils/gtkbuilder/gnc-frequency.glade.h:1
msgid "Frequency:"
-msgstr ""
+msgstr "Ø§ÙØªØ±Ø¯Ø¯:"
#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:19
msgid "When paid:"
@@ -7883,7 +8894,7 @@ msgstr "Ø¹ÙØ¯ Ø¯ÙØ¹Ùا:"
#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:20
msgid "Beginning"
-msgstr ""
+msgstr "Ø¨Ø¯Ø§ÙØ©"
#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:21
msgid "End"
@@ -7891,7 +8902,7 @@ msgstr "ÙÙØ§ÙØ©"
#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:22
msgid "<b>Compounding:</b>"
-msgstr ""
+msgstr "<b>Ù
Ø±ÙØ¨Ø©:</b>"
#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:23
msgid "<b>Period:</b>"
@@ -7899,15 +8910,15 @@ msgstr "<b>اÙÙØªØ±Ø©</b>"
#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:25
msgid "Annual"
-msgstr ""
+msgstr "سÙÙÙ"
#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:26
msgid "Semi-annual"
-msgstr ""
+msgstr "ÙØµÙ سÙÙÙ"
#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:27
msgid "Tri-annual"
-msgstr ""
+msgstr "Ø«ÙØ« سÙÙÙ"
#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:28
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:44
@@ -7917,103 +8928,118 @@ msgstr "ربع سÙÙÙ"
#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:29
msgid "Bi-monthly"
-msgstr ""
+msgstr "ÙÙ Ø´ÙØ±ÙÙ"
#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:32
msgid "Bi-weekly"
-msgstr ""
+msgstr "ÙÙ Ø£Ø³Ø¨ÙØ¹ÙÙ"
#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:34
msgid "Daily (360)"
-msgstr ""
+msgstr "ÙÙÙ
ÙØ§ (360)"
#: ../src/gnome/gtkbuilder/dialog-fincalc.glade.h:35
msgid "Daily (365)"
-msgstr ""
+msgstr "ÙÙÙ
ÙØ§ (365)"
#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:1
msgid "Lot Viewer"
-msgstr ""
+msgstr "عارض اÙÙ
جÙ
ÙØ¹Ø§Øª"
#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:2
msgid "Enter a name for the highlighted lot."
-msgstr ""
+msgstr "أدخ٠اسÙ
ا اÙÙ
جÙ
ÙØ¹Ø© اÙÙ
ختارة."
#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:3
msgid "<b>_Notes</b>"
-msgstr ""
+msgstr "<b>Ù
ÙØ§ØØ¸Ø§Øª</b>"
#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:4
msgid "Enter any notes you want to make about this lot."
-msgstr ""
+msgstr "أدخ٠أ٠Ù
ÙØ§ØØ¸Ø§Øª ÙÙØª ØªØ±ÙØ¯ أ٠تجع٠ØÙÙ ÙØ°Ù اÙÙ
جÙ
ÙØ¹Ø©."
#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:5
msgid "<b>_Title</b>"
-msgstr ""
+msgstr "<b>Ø§ÙØ¹ÙÙØ§Ù</b>"
#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:6
msgid "<b>_Lots in This Account</b>"
-msgstr ""
+msgstr "<b> اÙÙ
جÙ
ÙØ¹Ø§Øª ÙÙ ÙØ°Ø§ Ø§ÙØØ³Ø§Ø¨</b>"
#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:7
msgid "Show only open lots"
-msgstr ""
+msgstr "Ø£Ø¸ÙØ± اÙÙ
جÙ
ÙØ¹Ø§Øª اÙÙ
ÙØªÙØØ© ÙÙØ·"
#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:8
msgid "<b>Splits _free</b>"
-msgstr ""
+msgstr "<b> Ø§ÙØ§ÙØ´ÙØ§Ùات Ø§ÙØØ±Ø©</b>"
#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:9
msgid ">>"
-msgstr ""
+msgstr ">>"
#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:10
msgid "<<"
-msgstr ""
+msgstr "<<"
#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:11
msgid "<b>Splits _in lot</b>"
-msgstr ""
+msgstr "<b> Ø§ÙØ§ÙØ´ÙØ§Ùات Ù٠اÙÙ
جÙ
ÙØ¹Ø©</b>"
#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:12
msgid "_New Lot"
-msgstr ""
+msgstr "Ù
جÙ
ÙØ¹Ø© Ø¬Ø¯ÙØ¯Ø©"
#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:13
msgid "Scrub _Account"
-msgstr ""
+msgstr "تÙÙÙØ© Ø§ÙØØ³Ø§Ø¨"
#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:14
msgid "Scrub the highlighted lot"
-msgstr ""
+msgstr "تÙÙÙØ© اÙÙ
جÙ
ÙØ¹Ø© اÙÙ
ختارة"
#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:15
msgid "_Scrub"
-msgstr ""
+msgstr "تÙÙÙØ©"
#: ../src/gnome/gtkbuilder/dialog-lot-viewer.glade.h:16
msgid "Delete the highlighted lot"
-msgstr ""
+msgstr "Ø£ØØ°Ù اÙÙ
جÙ
ÙØ¹Ø© اÙÙ
ختارة."
#: ../src/gnome/gtkbuilder/dialog-new-user.glade.h:1
-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>"
#: ../src/gnome/gtkbuilder/dialog-new-user.glade.h:2
-msgid "If you press the <i>Yes</i> button, the <i>Welcome to GnuCash</i> dialog will be displayed again next time you start GnuCash. If you press the <i>No</i> button, it will not be displayed again."
+msgid ""
+"If you press the <i>Yes</i> button, the <i>Welcome to GnuCash</i> dialog "
+"will be displayed again next time you start GnuCash. If you press the <i>No</"
+"i> button, it will not be displayed again."
msgstr ""
+"إذا ÙÙ
ت Ø¨Ø§ÙØ¶ØºØ· عÙÙ Ø§ÙØ²Ø± \" <i>ÙØ¹Ù
</i> \"Ø Ø³ÙØªÙ
عرض Ù
ربع Ø§ÙØÙØ§Ø± <i>Ø§ÙØªØ±ØÙب "
+"Ø¥Ù٠جÙÙÙØ§Ø´</i>Ø¹ÙØ¯ بدء تشغÙ٠جÙÙÙØ§Ø´ Ù
رة أخر٠Ù٠اÙÙ
رة اÙÙØ§Ø¯Ù
Ø©. إذا ÙÙ
ت Ø¨Ø§ÙØ¶ØºØ· "
+"عÙÙ Ø§ÙØ²Ø± \" <i>ÙØ§</i> \"Ø ÙÙ ÙØªÙ
Ø§ÙØ¹Ø±Ø¶ Ù
رة أخرÙ."
#: ../src/gnome/gtkbuilder/dialog-new-user.glade.h:3
msgid "<span size=\"larger\" weight=\"bold\">Welcome to GnuCash!</span>"
-msgstr ""
+msgstr "<span size=\"larger\" weight=\"bold\">Ù
Ø±ØØ¨Ø§ بÙÙ
Ù٠جÙÙÙØ§Ø´!</span>"
#: ../src/gnome/gtkbuilder/dialog-new-user.glade.h:4
-msgid "There are some predefined actions available that most new users prefer to get started with GnuCash. Select one of these actions from below and click the <i>OK</i> button or press the <i>Cancel</i> button if you don't want to perform any of them."
+msgid ""
+"There are some predefined actions available that most new users prefer to "
+"get started with GnuCash. Select one of these actions from below and click "
+"the <i>OK</i> button or press the <i>Cancel</i> button if you don't want to "
+"perform any of them."
msgstr ""
+" Ù
عظÙ
اÙÙ
ستخدÙ
ÙÙ Ø§ÙØ¬Ø¯Ø¯ ÙÙØ¶ÙÙÙ Ø§ÙØ¨Ø¯Ø¡ ببعض Ø§ÙØ¥Ø¬Ø±Ø§Ø¡Ø§Øª اÙÙ
Ø¹Ø±ÙØ© Ù
Ø³Ø¨ÙØ§Ù اÙÙ
تÙÙØ±Ø©Ù
ع "
+"جÙÙÙØ§Ø´ . ØØ¯Ø¯ Ø£ØØ¯ ÙØ°Ù Ø§ÙØ¥Ø¬Ø±Ø§Ø¡Ø§Øª Ù
Ù Ø§ÙØ£Ø³ÙÙ ÙØ§ÙÙØ± ÙÙÙ Ø§ÙØ²Ø± <i>\"Ù
ÙØ§ÙÙ\"</i> Ø£Ù "
+"اضغط عÙÙ Ø§ÙØ²Ø± \" <i>Ø¥ÙØºØ§Ø¡ Ø§ÙØ£Ù
ر</i> \" إذا ÙÙØª ÙØ§ ØªØ±ÙØ¯ اÙÙÙØ§Ù
بأ٠Ù
ÙÙØ§."
#: ../src/gnome/gtkbuilder/dialog-new-user.glade.h:5
msgid "C_reate a new set of accounts"
-msgstr ""
+msgstr "Ø£ÙØ´Ø¦ Ù
جÙ
ÙØ¹Ø© Ø¬Ø¯ÙØ¯Ø© Ù
Ù ØØ³Ø§Ø¨Ø§Øª"
#: ../src/gnome/gtkbuilder/dialog-new-user.glade.h:6
msgid "_Import my QIF files"
@@ -8021,27 +9047,41 @@ msgstr "_ Ø§Ø³ØªÙØ±Ø§Ø¯ Ù
ÙÙØ§Øª QIF"
#: ../src/gnome/gtkbuilder/dialog-new-user.glade.h:7
msgid "_Open the new user tutorial"
-msgstr ""
+msgstr "ÙØªØ Ø§ÙØ¨Ø±ÙاÙ
ج Ø§ÙØªØ¹ÙÙÙ
Ù ÙÙÙ
ستخدÙ
Ø§ÙØ¬Ø¯Ùد"
#: ../src/gnome/gtkbuilder/dialog-price.glade.h:1
-msgid "Delete all stock prices before the date below based upon the following criteria:"
-msgstr ""
+msgid ""
+"Delete all stock prices before the date below based upon the following "
+"criteria:"
+msgstr "ØØ°Ù ÙØ§ÙØ© أسعار Ø§ÙØ£Ø³ÙÙ
ÙØ¨Ù Ø§ÙØªØ§Ø±ÙØ® Ø£Ø¯ÙØ§Ù Ø§Ø³ØªÙØ§Ø¯Ø§Ù Ø¥Ù٠اÙÙ
عاÙÙØ± Ø§ÙØªØ§ÙÙØ©:"
#: ../src/gnome/gtkbuilder/dialog-price.glade.h:2
msgid "Delete _manually entered prices"
-msgstr "ØØ°Ù Ø§ÙØ£Ø³Ø¹Ø§Ø± اÙÙ
Ø¯Ø®ÙØ© ÙØ¯ÙÙØ§Ù"
+msgstr "Ø¥ØØ°Ù Ø§ÙØ£Ø³Ø¹Ø§Ø± اÙÙ
Ø¯Ø®ÙØ© ÙØ¯ÙÙØ§"
#: ../src/gnome/gtkbuilder/dialog-price.glade.h:3
-msgid "If activated, delete manually entered stock prices dated earlier than the specified date. Otherwise only stock prices added by Finance::Quote will be deleted."
+msgid ""
+"If activated, delete manually entered stock prices dated earlier than the "
+"specified date. Otherwise only stock prices added by Finance::Quote will be "
+"deleted."
msgstr ""
+"ÙÙ ØØ§ÙØ© Ø§ÙØªÙØ´ÙØ·Ø ÙØªÙ
Ø§ÙØØ°Ù ÙØ¯ÙÙØ§Ù ÙØ£Ø³Ø¹Ø§Ø± Ø§ÙØ£Ø³ÙÙ
اÙÙ
ؤرخة ÙÙ ØªØ§Ø±ÙØ® ساب٠"
+"ÙÙØªØ§Ø±ÙØ® اÙÙ
ØØ¯Ø¯. ÙØ¥Ùا Ø³ÙØªÙ
ØØ°Ù أسعار Ø§ÙØ£Ø³ÙÙ
Ø§ÙØªÙ أضÙÙØª Ù
Ù ÙØ¨Ù Ù
اÙÙ:Ø¹Ø±ÙØ¶ أسعار "
+"ÙÙØ·,."
#: ../src/gnome/gtkbuilder/dialog-price.glade.h:4
msgid "Delete _last price for a stock"
msgstr "ØØ°Ù آخر سعر ÙÙØ£Ø³ÙÙ
"
#: ../src/gnome/gtkbuilder/dialog-price.glade.h:5
-msgid "If activated, delete all prices before the specified date. Otherwise the last stock price dated before the date will be kept and all earlier quotes deleted."
+msgid ""
+"If activated, delete all prices before the specified date. Otherwise the "
+"last stock price dated before the date will be kept and all earlier quotes "
+"deleted."
msgstr ""
+"ÙÙ ØØ§ÙØ© Ø§ÙØªÙØ´ÙØ·Ø Ø³ÙØªÙ
ØØ°Ù جÙ
ÙØ¹ Ø§ÙØ£Ø³Ø¹Ø§Ø± ÙØ¨Ù اÙÙ
ÙØ¹Ø¯ اÙÙ
ØØ¯Ø¯. Ø®ÙØ§Ù ذÙÙ Ø³ÙØªÙ
"
+"Ø§ÙØ§ØØªÙاظ بسعر Ø§ÙØ³ÙÙ
Ø§ÙØ£Ø®Ùر اÙÙ
ؤرخ ÙØ¨Ù Ø§ÙØªØ§Ø±ÙØ® ÙØØ°Ù ÙØ§ÙØ© Ø¹Ø±ÙØ¶ Ø§ÙØ£Ø³Ø¹Ø§Ø± "
+"Ø§ÙØ³Ø§Ø¨ÙØ©."
#: ../src/gnome/gtkbuilder/dialog-price.glade.h:7
msgid "Price Editor"
@@ -8049,7 +9089,7 @@ msgstr "Ù
ØØ±Ø± Ø§ÙØ³Ø¹Ø±"
#: ../src/gnome/gtkbuilder/dialog-price.glade.h:8
msgid "_Namespace:"
-msgstr ""
+msgstr "Ù
Ø³Ø§ØØ© Ø§ÙØ§Ø³Ù
"
#: ../src/gnome/gtkbuilder/dialog-price.glade.h:9
#: ../src/gnome-utils/dialog-commodity.c:289
@@ -8075,7 +9115,7 @@ msgstr "Ø¥Ø¶Ø§ÙØ© سعر Ø¬Ø¯ÙØ¯."
#: ../src/gnome/gtkbuilder/dialog-price.glade.h:15
msgid "Remove the current price."
-msgstr ""
+msgstr "Ø¥Ø²Ø§ÙØ© Ø§ÙØ³Ø¹Ø± Ø§ÙØØ§ÙÙ."
#: ../src/gnome/gtkbuilder/dialog-price.glade.h:16
msgid "Edit the current price."
@@ -8083,7 +9123,7 @@ msgstr "تعدÙÙ Ø§ÙØ£Ø³Ø¹Ø§Ø± Ø§ÙØØ§ÙÙØ©."
#: ../src/gnome/gtkbuilder/dialog-price.glade.h:18
msgid "Remove prices older than a user-entered date."
-msgstr ""
+msgstr "Ø¥Ø²Ø§ÙØ© Ø§ÙØ£Ø³Ø¹Ø§Ø± Ø§ÙØ£ÙدÙ
Ù
Ù ØªØ§Ø±ÙØ® إدخا٠اÙÙ
ستخدÙ
."
#: ../src/gnome/gtkbuilder/dialog-price.glade.h:19
msgid "Remove _Old"
@@ -8091,45 +9131,51 @@ msgstr " Ø¥Ø²Ø§ÙØ© اÙÙØ¯ÙÙ
Ø©"
#: ../src/gnome/gtkbuilder/dialog-price.glade.h:20
msgid "Get new online quotes for stock accounts."
-msgstr ""
+msgstr "Ø§ÙØØµÙ٠عÙÙ Ø¹Ø±ÙØ¶ Ø§ÙØ£Ø³Ø¹Ø§Ø± عبر Ø§ÙØ¥ÙØªØ±ÙØª Ø§ÙØ¬Ø¯Ùدة ÙØØ³Ø§Ø¨Ø§Øª Ø§ÙØ§Ø³ÙÙ
."
#: ../src/gnome/gtkbuilder/dialog-price.glade.h:21
msgid "Get _Quotes"
-msgstr ""
+msgstr "Ø§ÙØØµÙ٠عÙÙ Ø¹Ø±ÙØ¶ Ø§ÙØ£Ø³Ø¹Ø§Ø±"
#: ../src/gnome/gtkbuilder/dialog-price.glade.h:22
msgid "Bid"
-msgstr ""
+msgstr "عرض"
#: ../src/gnome/gtkbuilder/dialog-price.glade.h:23
msgid "Ask"
-msgstr ""
+msgstr "Ø·ÙØ¨"
#: ../src/gnome/gtkbuilder/dialog-price.glade.h:24
msgid "Last"
-msgstr ""
+msgstr "آخر"
#: ../src/gnome/gtkbuilder/dialog-price.glade.h:25
msgid "Net Asset Value"
-msgstr ""
+msgstr "صاÙÙ ÙÙÙ
Ø© Ø§ÙØ£ØµÙÙ"
#: ../src/gnome/gtkbuilder/dialog-price.glade.h:27
#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:26
msgid "Dummy commodity Line"
-msgstr ""
+msgstr "خط Ø§ÙØ³Ùع Ø§ÙØ£Ø³Ø§Ø³ÙØ© ÙØ§Ø±Øº"
#: ../src/gnome/gtkbuilder/dialog-price.glade.h:28
#: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:27
msgid "Dummy namespace Line"
-msgstr ""
+msgstr "خط Ù
Ø³Ø§ØØ© Ø§ÙØ§Ø³Ù
ÙØ§Ø±Øº"
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:1
msgid "Save Custom Check Format"
msgstr "ØÙظ Ø®ÙØ§Ø± Ø§ÙØªÙسÙ٠اÙÙ
خصص"
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:2
-msgid "Enter a title for this custom format. This title will appear in the \"Check format\" selector of the Print Check dialog. Using the title of an existing custom format will cause that format to be overwritten."
+msgid ""
+"Enter a title for this custom format. This title will appear in the \"Check "
+"format\" selector of the Print Check dialog. Using the title of an existing "
+"custom format will cause that format to be overwritten."
msgstr ""
+"أدخ٠عÙÙØ§Ùا٠ÙÙØ°Ø§ Ø§ÙØªÙسÙ٠اÙÙ
خصص. ÙØ°Ø§ Ø§ÙØ¹ÙÙØ§Ù Ø³ÙØ¸Ùر ÙÙ Ù
ØØ¯Ø¯ \"ØªÙØ³ÙÙ Ø§ÙØ´ÙÙ\" "
+"ÙÙ Ù
ربع ØÙار \"Ø§ÙØªØÙÙ Ù
٠طباعة\". استخداÙ
عÙÙØ§Ù ØªÙØ³ÙÙ Ù
خصص Ù
ÙØ¬Ùد ÙØ¨Ùا سÙÙ "
+"ÙØ³Ø¨Ø¨ Ø§ÙØÙØ¸ ÙÙÙ ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯."
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:3
msgid "Print Check"
@@ -8141,7 +9187,7 @@ msgstr "Ø§ÙØªØ£Ùد Ù
Ù Ø§ÙØªÙسÙÙ"
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:5
msgid "Check po_sition:"
-msgstr ""
+msgstr "Ù
ÙØ¶Ø¹ Ø§ÙØ´ÙÙ"
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:6
msgid "_Date format:"
@@ -8153,6 +9199,9 @@ msgid ""
"ADDRESS item defined in order\n"
"to print an address on the check."
msgstr ""
+"ÙÙ ØªÙØ³ÙÙ Ø§ÙØ´ÙÙ ÙØ¬Ø¨ Ø£Ù ÙÙÙÙ Ø§ÙØ¹ÙÙØ§Ù \n"
+"Ù
عر٠\n"
+" ÙØ·Ø¨Ø§Ø¹ØªÙ عÙÙ Ø§ÙØ´ÙÙ."
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:10
msgid "_Address"
@@ -8160,7 +9209,7 @@ msgstr "_Ø§ÙØ¹ÙÙØ§Ù"
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:11
msgid "Checks on first _page:"
-msgstr ""
+msgstr "Ø§ÙØ´ÙÙØ§Øª ÙÙ Ø§ÙØµÙØØ© Ø§ÙØ£ÙÙÙ:"
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:13
msgid "x"
@@ -8196,15 +9245,15 @@ msgstr "_Ø§ÙØªØ±Ø¬Ù
Ø©:"
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:22
msgid "_Rotation"
-msgstr ""
+msgstr "Ø§ÙØ§Ø³ØªØ¯Ø§Ø±Ø©"
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:23
msgid "The origin point is the upper left-hand corner of the page."
-msgstr ""
+msgstr "ÙÙØ·Ø© Ø§ÙØ£ØµÙÙÙ Ø§ÙØ±ÙÙ Ø§ÙØ£ÙÙ
Ù Ø§ÙØ¹ÙÙÙ Ù
Ù Ø§ÙØµÙØØ©."
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:24
msgid "The origin point is the lower left-hand corner of the page."
-msgstr ""
+msgstr "ÙÙØ·Ø© Ø§ÙØ£ØµÙÙÙ Ø§ÙØ±ÙÙ Ø§ÙØ£ÙÙ
Ù Ø§ÙØ³ÙÙÙ Ù
Ù Ø§ÙØµÙØØ©."
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:25
msgid "Degrees"
@@ -8220,15 +9269,15 @@ msgstr "_Ø§ÙØ¹ÙÙØ§Ù"
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:29
msgid "Splits Memo"
-msgstr ""
+msgstr "Ù
Ø°ÙØ±Ø© Ø§ÙØªÙسÙÙ
ات"
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:30
msgid "Splits Amount"
-msgstr ""
+msgstr "ÙÙ
ÙØ© Ø§ÙØªÙسÙÙ
ات"
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:31
msgid "Splits Account"
-msgstr ""
+msgstr "ØØ³Ø§Ø¨ Ø§ÙØªÙسÙÙ
ات"
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:32
msgid "Custom format"
@@ -8236,23 +9285,23 @@ msgstr "ØªÙØ³ÙÙ Ù
خصص"
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:33
msgid "Inches"
-msgstr ""
+msgstr "Ø¨ÙØµØ©"
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:34
msgid "Centimeters"
-msgstr ""
+msgstr "سÙÙÙØªÙÙÙ
ÙØªÙØ±ÙØ§Øª"
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:35
msgid "Millimeters"
-msgstr ""
+msgstr "Ù
ÙÙÙÙ
ترات"
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:36
msgid "Points"
-msgstr ""
+msgstr "ÙÙØ§Ø·"
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:38
msgid "Middle"
-msgstr ""
+msgstr "Ø£ÙØ³Ø·"
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:39
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:186
@@ -8261,40 +9310,43 @@ msgstr "أسÙÙ"
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:41
msgid "Quicken/QuickBooks (tm) US-Letter"
-msgstr ""
+msgstr "Quicken/QuickBooks (tm) US-Letter"
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:42
msgid "Deluxe(tm) Personal Checks US-Letter"
-msgstr ""
+msgstr "Deluxe(tm) Personal Checks US-Letter"
#: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:43
msgid "Quicken(tm) Wallet Checks w/ side stub"
-msgstr ""
+msgstr "Quicken(tm) Wallet Checks w/ side stub"
#: ../src/gnome/gtkbuilder/dialog-progress.glade.h:1
msgid "Working..."
-msgstr ""
+msgstr "ÙØ¹Ù
Ù..."
#: ../src/gnome/gtkbuilder/dialog-progress.glade.h:2
msgid "1234567890123456789012345678901234567890"
-msgstr ""
+msgstr "1234567890123456789012345678901234567890"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:1
msgid "Account Deletion"
msgstr "ØØ°Ù Ø§ÙØØ³Ø§Ø¨"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:2
-msgid "The following Scheduled Transactions reference the deleted account and must now be corrected. Press OK to edit them."
+msgid ""
+"The following Scheduled Transactions reference the deleted account and must "
+"now be corrected. Press OK to edit them."
msgstr ""
+"اÙÙ
عاÙ
ÙØ§Øª Ø§ÙØªØ§ÙÙØ© اÙÙ
جدÙÙØ© ÙÙØ§ Ù
رجع ÙÙØØ³Ø§Ø¨ اÙÙ
ØØ°ÙÙ Ù ÙØ¬Ø¨ Ø£Ù ØªØµØØ Ø§ÙØ¢Ù . "
+"اضغط عÙÙ Ù
ÙØ§ÙÙ ÙØªØØ±ÙØ±ÙØ§."
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:4
-#, fuzzy
msgid "<b>Since Last Run</b>"
-msgstr "Ù
ÙØ° آخر تشغÙÙ..."
+msgstr "<b>Ù
ÙØ° Ø§ÙØªØ´ØºÙÙ Ø§ÙØ£Ø®Ùر</b>"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:5
msgid "<b>Transaction Editor Defaults</b>"
-msgstr ""
+msgstr "<b>Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯Ø§Øª Ø§ÙØ§ÙØªØ±Ø§Ø¶ÙØ© ÙÙ
ØØ±Ø± اÙÙ
عاÙ
ÙØ©</b>"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:6
msgid "_Run when data file opened"
@@ -8302,16 +9354,17 @@ msgstr "_تشغÙÙ Ø¹ÙØ¯ ÙØªØ Ù
ÙÙ Ø§ÙØ¨ÙØ§ÙØ§Øª"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:7
msgid "Run the \"since last run\" process when a file is opened."
-msgstr ""
+msgstr "ÙÙ
بتشغÙ٠عÙ
ÙÙØ© \"Ù
ÙØ° آخر تشغÙÙ\" Ø¹ÙØ¯ ÙØªØ Ù
ÙÙ."
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:8
-#, fuzzy
msgid "_Show notification window"
-msgstr "Ø¥Ø¸ÙØ§Ø± ÙØ§Ùذة Ø§ÙØ³Ø¬Ù"
+msgstr "Ø¥Ø¸ÙØ§Ø± ÙØ§Ùذة Ø§ÙØªÙبÙÙØ§Øª"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:9
-msgid "Show the notification window for the \"since last run\" process when a file is opened."
-msgstr ""
+msgid ""
+"Show the notification window for the \"since last run\" process when a file "
+"is opened."
+msgstr "Ø¥Ø¸ÙØ§Ø± ÙØ§Ùذة Ø§ÙØ¥Ø´Ø¹Ø§Ø± ÙØ¹Ù
ÙÙØ© \"Ù
ÙØ° آخر تشغÙÙ\" Ø¹ÙØ¯ ÙØªØ Ù
ÙÙ."
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:10
msgid "_Auto-create new transactions"
@@ -8319,19 +9372,20 @@ msgstr "_Ø¥ÙØ´Ø§Ø¡ Ù
عاÙ
ÙØ© Ø¬Ø¯ÙØ¯Ø© - تÙÙØ§Ø¦Ù"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:11
msgid "Set the 'auto-create' flag on newly created scheduled transactions."
-msgstr "تعÙÙÙ Ø¹ÙØ§Ù
Ø© 'Ø§ÙØ¥Ùشاء Ø§ÙØªÙÙØ§Ø¦Ù' عÙ٠اÙÙ
عاÙ
ÙØ§Øª اÙÙ
جدÙÙØ© Ø§ÙØªÙ تÙ
Ø¥ÙØ´Ø§Ø¤Ùا ØØ¯Ùثا."
+msgstr ""
+"تعÙÙÙ Ø¹ÙØ§Ù
Ø© 'Ø§ÙØ¥Ùشاء Ø§ÙØªÙÙØ§Ø¦Ù' عÙ٠اÙÙ
عاÙ
ÙØ§Øª اÙÙ
جدÙÙØ© Ø§ÙØªÙ تÙ
Ø¥ÙØ´Ø§Ø¤Ùا ØØ¯Ùثا."
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:12
msgid "Crea_te in advance:"
-msgstr ""
+msgstr "Ø¥ÙØ´Ø§Ø¡ Ù
ÙØ¯Ù
ا:"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:13
msgid "R_emind in advance:"
-msgstr ""
+msgstr "تذÙÙØ± Ù
ÙØ¯Ù
ا:"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:14
msgid "Begin notifications this many days before the transaction is created."
-msgstr ""
+msgstr "Ø§ÙØ¨Ø¯Ø¡ ÙÙ Ø§ÙØ¥Ø®Ø·Ø§Ø±Ø§Øª ÙØ¨Ù Ø£Ù ÙØªÙ
Ø¥ÙØ´Ø§Ø¡ اÙÙ
عاÙ
ÙØ© بعدة Ø£ÙØ§Ù
."
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:15
#: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:67
@@ -8340,7 +9394,7 @@ msgstr "Ø£ÙØ§Ù
"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:16
msgid "Create the transaction this many days before its effective date."
-msgstr ""
+msgstr "Ø¥ÙØ´Ø§Ø¡ Ø§ÙØØ±ÙØ© ÙØ¨Ù ØªØ§Ø±ÙØ® ÙÙØ§Ø°Ùا بعدة Ø£ÙØ§Ù
."
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:17
msgid "_Notify before transactions are created "
@@ -8364,11 +9418,11 @@ msgstr "<b>Ø®ÙØ§Ø±Ø§Øª</b>"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:22
msgid "Create in advance:"
-msgstr ""
+msgstr "Ø¥ÙØ´Ø§Ø¡ Ù
ÙØ¯Ù
ا:"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:23
msgid "Remind in advance:"
-msgstr ""
+msgstr "تذÙÙØ± Ù
ÙØ¯Ù
ا:"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:24
msgid " days"
@@ -8376,15 +9430,15 @@ msgstr "Ø£ÙØ§Ù
"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:25
msgid "Create automatically"
-msgstr ""
+msgstr "Ø¥ÙØ´Ø§Ø¡ تÙÙØ§Ø¦Ù"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:26
msgid "Conditional on splits not having variables"
-msgstr ""
+msgstr "Ù
Ø´Ø±ÙØ·Ø© عÙÙ Ø§ÙØ§ÙÙØ³Ø§Ù
ات بدÙÙ Ù
ØªØºÙØ±Ø§Øª"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:27
msgid "Notify me when created"
-msgstr ""
+msgstr "اخطرÙÙ Ø¹ÙØ¯ Ø§ÙØ¥Ùشاء"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:28
#: ../src/gnome-utils/gnc-tree-view-sx-list.c:168
@@ -8393,7 +9447,7 @@ msgstr "تÙ
ÙÙÙ"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:29
msgid "<b>Occurrences</b>"
-msgstr ""
+msgstr "<b>Ù
رات Ø§ÙØØ¯ÙØ«</b>"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:30
msgid "Last Occurred: "
@@ -8419,7 +9473,7 @@ msgstr "Ù
٠أجÙ:"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:35
msgid "occurrences"
-msgstr ""
+msgstr "Ù
رات Ø§ÙØØ¯ÙØ«"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:36
msgid "remaining"
@@ -8433,7 +9487,7 @@ msgstr "ÙØ¸Ø±Ø© عاÙ
Ø©"
#: ../src/gnome-utils/gnc-dense-cal.c:338
#: ../src/gnome-utils/gnc-tree-view-sx-list.c:177
msgid "Frequency"
-msgstr ""
+msgstr "تردد"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:39
msgid "Template Transaction"
@@ -8441,7 +9495,7 @@ msgstr "ÙØ§Ùب اÙÙ
عاÙ
ÙØ©"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:42
msgid "Bi-Weekly"
-msgstr ""
+msgstr "ÙÙ Ø£Ø³Ø¨ÙØ¹ÙÙ"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:46
msgid "Since Last Run..."
@@ -8453,28 +9507,28 @@ msgstr "_استعراض اÙÙ
عاÙ
ÙØ§Øª Ø§ÙØªÙ تÙ
Ø¥ÙØ´Ø§Ø¤Ùا"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:48
msgid "Make Scheduled Transaction"
-msgstr ""
+msgstr "إعÙ
٠عÙ
ÙÙØ© Ù
جدÙÙØ©"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:49
msgid "Advanced..."
-msgstr ""
+msgstr "اÙÙ
ØªÙØ¯Ù
..."
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:53
msgid "Never End"
-msgstr ""
+msgstr "ÙØ§ ÙÙØªÙÙ"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:55
msgid "Number of Occurrences:"
-msgstr ""
+msgstr "عدد Ù
رات Ø§ÙØØ¯ÙØ«:"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:56
#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:2
msgid "1"
-msgstr ""
+msgstr "1"
#: ../src/gnome/gtkbuilder/dialog-sx.glade.h:57
msgid "End: "
-msgstr ""
+msgstr "ÙÙØ§ÙØ©:"
#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:1
msgid "Income Tax Information"
@@ -8482,11 +9536,11 @@ msgstr "Ù
عÙÙÙ
ات Ø¶Ø±ÙØ¨Ø© Ø§ÙØ¯Ø®Ù"
#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:2
msgid "<b>Income Tax Identity</b>"
-msgstr ""
+msgstr "<b>تعرÙÙ Ø¶Ø±ÙØ¨Ø© Ø§ÙØ¯Ø®Ù</b>"
#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:5
msgid "Click to change Tax Name and/or Tax Type."
-msgstr ""
+msgstr "اÙÙØ± ÙØªØºÙÙØ± اسÙ
Ø§ÙØ¶Ø±Ø§Ø¦Ø¨ Ù / Ø£Ù ÙÙØ¹ Ø§ÙØ¶Ø±Ø§Ø¦Ø¨."
#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:6
#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:14
@@ -8538,11 +9592,11 @@ msgstr "Ø§ÙØ¶Ø±Ø§Ø¦Ø¨ ذات Ø§ÙØµÙØ©"
#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:16
msgid "<b>_TXF Categories</b>"
-msgstr ""
+msgstr "<b>ÙØ¦Ø§Øª TXF </b>"
#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:17
msgid "<b>Payer Name Source</b>"
-msgstr ""
+msgstr "<b>Ù
صدر إسÙ
Ø§ÙØ¯Ø§Ùع</b>"
#: ../src/gnome/gtkbuilder/dialog-tax-info.glade.h:18
msgid "C_urrent Account"
@@ -8578,19 +9632,21 @@ msgstr "ØØ°Ù اÙÙ
ÙØ²Ø§ÙÙØ© اÙÙ
ØØ¯Ø¯Ø©"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:6
msgid "Estimate Budget Values"
-msgstr ""
+msgstr "ÙÙÙ
اÙÙ
ÙØ²Ø§ÙÙØ© Ø§ÙØªÙØ¯ÙØ±ÙØ©"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:7
-msgid "GnuCash will estimate budget values for the selected accounts from past transactions."
-msgstr ""
+msgid ""
+"GnuCash will estimate budget values for the selected accounts from past "
+"transactions."
+msgstr "جÙÙÙØ§Ø´ سÙÙØ¯Ø± ÙÙÙ
اÙÙ
ÙØ§Ø²ÙØ© ÙÙØØ³Ø§Ø¨Ø§Øª اÙÙ
ختارة Ù
٠اÙÙ
عاÙ
ÙØ§Øª Ø§ÙØ³Ø§Ø¨ÙØ©."
#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:9
msgid "Significant Digits:"
-msgstr ""
+msgstr "Ø§ÙØ£Ø±ÙاÙ
Ø§ÙØ¹Ø´Ø±ÙØ© ÙÙØªÙØ±ÙØ¨:"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:10
msgid "The number of leading digits to keep when rounding"
-msgstr ""
+msgstr "عدد Ø§ÙØ£Ø±ÙاÙ
Ø§ÙØ¹Ø´Ø±ÙØ© Ø§ÙØ±Ø§Ø¦Ø¯Ø© Ø¹ÙØ¯ Ø§ÙØªÙØ±ÙØ¨"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-budget.glade.h:12
msgid "Budget Name:"
@@ -8612,7 +9668,7 @@ msgstr "ØªÙØ±Ø§Ø± اÙÙ
عاÙ
ÙØ§Øª"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:2
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:2
msgid "<b>New Transaction Information</b>"
-msgstr ""
+msgstr "<b>Ù
عÙÙÙ
ات عÙ
ÙÙØ© Ø¬Ø¯ÙØ¯Ø© </b>"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:4
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:4
@@ -8646,7 +9702,7 @@ msgstr "بدء Ø§ÙØªØ´ØºÙÙ:"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:10
#: ../src/import-export/csv-exp/assistant-csv-export.glade.h:26
msgid "_Earliest"
-msgstr ""
+msgstr "Ø§ÙØ£ÙدÙ
"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:10
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:11
@@ -8693,7 +9749,7 @@ msgstr "ÙÙ
ÙØªÙ
تسÙÙØªÙ"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:19
#: ../src/import-export/qif-imp/dialog-account-picker.glade.h:5
msgid "_Reconciled"
-msgstr ""
+msgstr "تÙ
ت Ø§ÙØªØ³ÙÙØ© "
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:19
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:20
@@ -8708,7 +9764,7 @@ msgstr "_Ù
ÙØºØ§Ø©"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:21
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:22
msgid "_Frozen"
-msgstr ""
+msgstr "Ù
جÙ
د"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:22
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:23
@@ -8718,7 +9774,7 @@ msgstr "ØªØØ¯Ùد اÙÙÙ"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:24
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:25
msgid "Sa_ve Filter"
-msgstr ""
+msgstr "ØÙظ Ø§ÙØªØµÙÙØ©"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register2.glade.h:25
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:51
@@ -8732,7 +9788,7 @@ msgstr "Ø§ÙØ³Ø¨Ø¨ ÙØ¥Ø¨Ø·Ø§Ù اÙÙ
عاÙ
ÙØ©:"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:5
msgid "_Transaction Number:"
-msgstr ""
+msgstr "رÙÙ
Ø§ÙØ¹Ù
ÙÙØ©"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:26
msgid "Sort register by..."
@@ -8740,29 +9796,30 @@ msgstr "ÙØ±Ø² Ø§ÙØ³Ø¬Ù ع٠طرÙÙ"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:27
msgid "_Standard Order"
-msgstr ""
+msgstr "ØªØ±ØªÙØ¨ ÙÙØ§Ø³Ù"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:28
msgid "Keep normal account order."
-msgstr ""
+msgstr "Ø§ÙØÙØ§Ø¸ عÙÙ ØªØ±ØªÙØ¨ Ø§ÙØØ³Ø§Ø¨ Ø§ÙØ¹Ø§Ø¯Ù."
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:30
#: ../src/report/standard-reports/transaction.scm:735
#: ../src/report/standard-reports/transaction.scm:790
msgid "Sort by date."
-msgstr ""
+msgstr "ÙØ±Ø² ØØ³Ø¨ Ø§ÙØªØ§Ø±ÙØ®."
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:32
msgid "Sort by the date of entry."
-msgstr ""
+msgstr "ÙØ±Ø² ØØ³Ø¨ ØªØ§Ø±ÙØ® Ø§ÙØ¥Ø¯Ø®Ø§Ù."
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:33
msgid "S_tatement Date"
msgstr "ØªØ§Ø±ÙØ® Ø§ÙØ¨ÙاÙ"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:34
-msgid "Sort by the statement date (and group by cleared, unreconciled, reconciled)."
-msgstr ""
+msgid ""
+"Sort by the statement date (and group by cleared, unreconciled, reconciled)."
+msgstr "ØªØ±ØªÙØ¨ ØØ³Ø¨ ØªØ§Ø±ÙØ® Ø§ÙØ¨Ùا٠(ÙÙ
جÙ
ÙØ¹Ø© باÙÙ
ØØ°ÙÙØ©Ø ÙÙ
تتÙ
تسÙÙØªÙØ§ØØªÙ
تسÙÙØªÙا)."
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:35
msgid "Num_ber"
@@ -8770,7 +9827,7 @@ msgstr "عدد"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:36
msgid "Sort by number."
-msgstr ""
+msgstr "ÙØ±Ø² Ø¨Ø§ÙØ§Ø±ÙاÙ
"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:37
msgid "Amo_unt"
@@ -8780,7 +9837,7 @@ msgstr "اÙÙ
Ø¨ÙØº"
#: ../src/report/standard-reports/transaction.scm:759
#: ../src/report/standard-reports/transaction.scm:814
msgid "Sort by amount."
-msgstr ""
+msgstr "ÙØ±Ø² باÙÙÙÙ
Ø©"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:39
msgid "_Memo"
@@ -8790,21 +9847,21 @@ msgstr "_Ù
Ø°ÙØ±Ø©"
#: ../src/report/standard-reports/transaction.scm:775
#: ../src/report/standard-reports/transaction.scm:826
msgid "Sort by memo."
-msgstr ""
+msgstr "ÙØ±Ø² ØØ³Ø¨ اÙÙ
Ø°ÙØ±Ø©."
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:42
#: ../src/report/standard-reports/transaction.scm:763
#: ../src/report/standard-reports/transaction.scm:818
msgid "Sort by description."
-msgstr ""
+msgstr "ÙØ±Ø² ØØ³Ø¨ اÙÙØµÙ."
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:43
msgid "_Action"
-msgstr ""
+msgstr "عÙ
Ù"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:44
msgid "Sort by action field."
-msgstr ""
+msgstr "ÙØ±Ø² ØØ³Ø¨ ØÙÙ Ø§ÙØ¹Ù
Ù."
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:45
msgid "_Notes"
@@ -8812,27 +9869,27 @@ msgstr "_Ù
Ø³ÙØ¯Ø©"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:46
msgid "Sort by notes field."
-msgstr ""
+msgstr "ÙØ±Ø² ØØ³Ø¨ ØÙ٠اÙÙ
ÙØ§ØØ¸Ø§Øª."
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:47
msgid "Sa_ve Sort Order"
-msgstr ""
+msgstr " Ø¥ØÙظ ØªØ±ØªÙØ¨ اÙÙØ±Ø²"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:48
msgid "Save the sort order for this register."
-msgstr ""
+msgstr "ØÙظ اسÙÙØ¨ ØªØ±ØªÙØ¨ ÙØ°Ø§ Ø§ÙØ³Ø¬Ù."
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:49
msgid "Reverse Order"
-msgstr ""
+msgstr "Ø¨ØªØ±ØªÙØ¨ Ø¹ÙØ³Ù"
#: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:50
msgid "Sort in descending order."
-msgstr ""
+msgstr "ÙØ±Ø² ØªÙØ§Ø²ÙÙ."
#: ../src/gnome/gtkbuilder/window-autoclear.glade.h:1
msgid "<b>Auto-Clear Information</b>"
-msgstr ""
+msgstr "<b>Ù
Ø³Ø Ù
عÙÙÙ
ات تÙÙØ§Ø¦Ù</b>"
#: ../src/gnome/gtkbuilder/window-autoclear.glade.h:2
#: ../src/gnome/gtkbuilder/window-reconcile.glade.h:4
@@ -8841,7 +9898,7 @@ msgstr "_Ø§ÙØ±ØµÙد اÙÙÙØ§Ø¦Ù:"
#: ../src/gnome/gtkbuilder/window-reconcile.glade.h:1
msgid "<b>Reconcile Information</b>"
-msgstr ""
+msgstr "<b>Ù
عÙÙÙ
ات Ø§ÙØªØ³ÙÙØ©</b>"
#: ../src/gnome/gtkbuilder/window-reconcile.glade.h:2
msgid "Statement _Date:"
@@ -8860,13 +9917,13 @@ msgstr "٠تشÙ
Ù Ø§ÙØØ³Ø§Ø¨Ø§Øª اÙÙØ±Ø¹ÙØ©"
#: ../src/gnome/gtkbuilder/window-reconcile.glade.h:6
#: ../src/gnome/window-reconcile2.c:762 ../src/gnome/window-reconcile.c:762
msgid "Enter _Interest Payment..."
-msgstr ""
+msgstr "أدخ٠Ù
دÙÙØ¹ اÙÙØ§Ø¦Ø¯Ø©"
#: ../src/gnome/reconcile-view.c:368
#: ../src/register/ledger-core/split-register-layout.c:671
#: ../src/register/ledger-core/split-register-model.c:303
msgid "Reconciled:R"
-msgstr ""
+msgstr "تÙ
Ø§ÙØªØ³ÙÙØ©"
#: ../src/gnome-search/dialog-search.c:239
msgid "You must select an item from the list"
@@ -8878,9 +9935,8 @@ msgid "Select"
msgstr "ØØ¯Ø¯"
#: ../src/gnome-search/dialog-search.c:1077
-#, fuzzy
msgid "Order"
-msgstr "Ù
Ø¹Ø±Ù Ø§ÙØ·Ùب"
+msgstr "Ø§ÙØ·Ùب"
#: ../src/gnome-search/dialog-search.c:1083
msgid "New Transaction"
@@ -8888,19 +9944,23 @@ msgstr "Ù
عاÙ
ÙØ© Ø¬Ø¯ÙØ¯Ø©"
#: ../src/gnome-search/dialog-search.c:1087
msgid "New Split"
-msgstr ""
+msgstr "ØªÙØ³ÙÙ
Ø¬Ø¯ÙØ¯"
#: ../src/gnome-search/dialog-search.c:1096
-msgid "Item represents an unknown object type (in the sense of bill, customer, invoice, transaction, split,...)|New item"
+msgid ""
+"Item represents an unknown object type (in the sense of bill, customer, "
+"invoice, transaction, split,...)|New item"
msgstr ""
+"Ø§ÙØ¨Ùد ÙÙ
ث٠ÙÙØ¹ ØºÙØ± Ù
عرÙÙ (بÙ
عÙ٠اÙÙ
Ø·Ø§ÙØ¨Ø©Ø Ø§ÙØ¹Ù
ÙØ§Ø¡Ø ÙØ§ØªÙØ±Ø©Ø ÙØ§ÙÙ
عاÙ
ÙØ§ØªØ "
+"ÙØ§ÙاÙÙØ³Ø§Ù
Ø ...) | Ø¹ÙØµØ± Ø¬Ø¯ÙØ¯"
#: ../src/gnome-search/dialog-search.c:1145
msgid "all criteria are met"
-msgstr ""
+msgstr "تÙ
استÙÙØ§Ø¡ جÙ
ÙØ¹ اÙÙ
عاÙÙØ±"
#: ../src/gnome-search/dialog-search.c:1146
msgid "any criteria are met"
-msgstr ""
+msgstr "تÙ
استÙÙØ§Ø¡ Ø£ÙØ© Ù
عاÙÙØ±"
#: ../src/gnome-search/dialog-search.glade.h:1
msgid "_New item..."
@@ -8947,8 +10007,9 @@ msgid "Search only active data"
msgstr "Ø§ÙØ¨ØØ« Ø¹Ù Ø§ÙØ¨ÙØ§ÙØ§Øª اÙÙØ´Ø·Ø© ÙÙØ·"
#: ../src/gnome-search/dialog-search.glade.h:12
-msgid "Choose whether to search all your data or only that marked as \"active\"."
-msgstr ""
+msgid ""
+"Choose whether to search all your data or only that marked as \"active\"."
+msgstr "Ø§Ø®ØªÙØ§Ø± Ù
ا إذا ÙØ§Ù Ø§ÙØ¨ØØ« ÙÙ ÙÙ Ø§ÙØ¨ÙØ§ÙØ§Øª Ø£Ù ÙÙØ· اÙÙ
عÙÙ
Ø©\"ÙØ´Ø·\""
#: ../src/gnome-search/dialog-search.glade.h:13
msgid "Type of search"
@@ -8960,15 +10021,15 @@ msgstr "ÙÙ
تÙÙ
Ø¨ØªØØ¯Ùد Ø£ÙØ© ØØ³Ø§Ø¨Ø§Øª"
#: ../src/gnome-search/search-account.c:196
msgid "matches all accounts"
-msgstr ""
+msgstr "Ù
اث٠جÙ
ÙØ¹ Ø§ÙØØ³Ø§Ø¨Ø§Øª"
#: ../src/gnome-search/search-account.c:201
msgid "matches any account"
-msgstr ""
+msgstr "Ù
Ø§Ø«Ù Ø£Ù ØØ³Ø§Ø¨"
#: ../src/gnome-search/search-account.c:202
msgid "matches no accounts"
-msgstr ""
+msgstr "ÙØ§ تÙ
Ø§Ø«Ù Ø£Ù ØØ³Ø§Ø¨"
#: ../src/gnome-search/search-account.c:219
#: ../src/report/standard-reports/cash-flow.scm:409
@@ -8982,11 +10043,11 @@ msgstr "اختر Ø§ÙØØ³Ø§Ø¨Ø§Øª"
#. Create the label
#: ../src/gnome-search/search-account.c:254
msgid "Select Accounts to Match"
-msgstr ""
+msgstr "ØØ¯Ø¯ Ø§ÙØØ³Ø§Ø¨Ø§Øª ÙÙÙ
Ø·Ø§Ø¨ÙØ©"
#: ../src/gnome-search/search-account.c:258
msgid "Select the Accounts to Compare"
-msgstr ""
+msgstr "ØØ¯Ø¯ Ø§ÙØØ³Ø§Ø¨Ø§Øª ÙÙÙ
ÙØ§Ø±ÙØ©"
#. Build and connect the toggle
#: ../src/gnome-search/search-boolean.c:205
@@ -8995,33 +10056,33 @@ msgstr "تعÙÙ٠صØÙØ"
#: ../src/gnome-search/search-date.c:195
msgid "is before"
-msgstr ""
+msgstr "ÙØ¨Ù"
#: ../src/gnome-search/search-date.c:196
msgid "is before or on"
-msgstr ""
+msgstr "ÙØ¨Ù أ٠عÙÙ"
#: ../src/gnome-search/search-date.c:197
msgid "is on"
-msgstr ""
+msgstr "عÙÙ"
#: ../src/gnome-search/search-date.c:198
msgid "is not on"
-msgstr ""
+msgstr "ÙÙØ³ عÙÙ"
#: ../src/gnome-search/search-date.c:199
msgid "is after"
-msgstr ""
+msgstr "بعد"
#: ../src/gnome-search/search-date.c:200
msgid "is on or after"
-msgstr ""
+msgstr "عÙ٠أ٠بعد"
#: ../src/gnome-search/search-double.c:187
#: ../src/gnome-search/search-int64.c:189
#: ../src/gnome-search/search-numeric.c:220
msgid "is less than"
-msgstr ""
+msgstr "Ø£ÙÙ Ù
Ù"
#: ../src/gnome-search/search-double.c:188
#: ../src/gnome-search/search-int64.c:190
@@ -9092,7 +10153,7 @@ msgstr "Ø§ÙØ£Ø±ØµØ¯Ø© Ø§ÙØ¯Ø§Ø¦ÙØ©"
#. Build and connect the toggles
#: ../src/gnome-search/search-reconciled.c:226
msgid "Not Cleared"
-msgstr "ÙØ§ تÙ
سØ"
+msgstr "ÙÙ
ÙÙ
سØ"
#: ../src/gnome-search/search-reconciled.c:229
#: ../src/gnome-utils/gnc-tree-view-account.c:796
@@ -9102,11 +10163,11 @@ msgstr "Ù
سØ"
#: ../src/gnome-search/search-reconciled.c:232
#: ../src/gnome-utils/gnc-tree-view-account.c:810
msgid "Reconciled"
-msgstr ""
+msgstr "تÙ
ت Ø§ÙØªØ³ÙÙØ© "
#: ../src/gnome-search/search-reconciled.c:235
msgid "Frozen"
-msgstr ""
+msgstr "Ù
جÙ
د"
#: ../src/gnome-search/search-reconciled.c:238
msgid "Voided"
@@ -9114,7 +10175,7 @@ msgstr "Ù
ÙØºØ§Ø©"
#: ../src/gnome-search/search-string.c:191
msgid "You need to enter some search text."
-msgstr ""
+msgstr "ÙØ¬Ø¨ Ø¥Ø¯Ø®Ø§Ù ÙØµ ÙÙØ¨ØØ«."
#: ../src/gnome-search/search-string.c:220
#: ../src/import-export/csv-imp/csv-account-import.c:112
@@ -9125,6 +10186,8 @@ msgid ""
"Error in regular expression '%s':\n"
"%s"
msgstr ""
+"خطأ Ù٠اÙÙ
ØµØ·ÙØ '%s':\n"
+"%s"
#: ../src/gnome-search/search-string.c:264
msgid "contains"
@@ -9132,31 +10195,31 @@ msgstr "ÙØØªÙ٠عÙÙ"
#: ../src/gnome-search/search-string.c:265
msgid "matches regex"
-msgstr ""
+msgstr "Ù
Ù
اث٠ÙÙÙ
ØµØ·ÙØ"
#: ../src/gnome-search/search-string.c:267
msgid "does not match regex"
-msgstr ""
+msgstr "ØºÙØ± Ù
Ù
اث٠ÙÙÙ
ØµØ·ÙØ"
#. Build and connect the case-sensitive check button; defaults to off
#: ../src/gnome-search/search-string.c:329
msgid "Match case"
-msgstr ""
+msgstr "Ù
Ù
اث٠ÙÙØØ§ÙØ©"
#: ../src/gnome/top-level.c:98
#, c-format
msgid "Entity Not Found: %s"
-msgstr ""
+msgstr "ÙÙØ§Ù ØºÙØ± Ù
ÙØ¬Ùد: %s"
#: ../src/gnome/top-level.c:158
#, c-format
msgid "Transaction with no Accounts: %s"
-msgstr ""
+msgstr "Ø§ÙØ¹Ù
ÙÙØ© بدÙÙ ØØ³Ø§Ø¨Ø§Øª:%s"
#: ../src/gnome/top-level.c:174
#, c-format
msgid "Unsupported entity type: %s"
-msgstr ""
+msgstr "ÙÙØ¹ اÙÙÙØ§Ù ØºÙØ± Ù
عتÙ
د: %s"
#: ../src/gnome/top-level.c:211
#, c-format
@@ -9166,27 +10229,62 @@ msgstr "ÙØ§ ÙÙØ¬Ø¯ Ù
Ø«Ù ÙØ°Ø§ Ø§ÙØ³Ø¹Ø±: %s"
#: ../src/gnome-utils/assistant-xml-encoding.c:159
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"
+"The file you are trying to load is from an older version of GnuCash. The "
+"file format in the older versions was missing the detailed specification of "
+"the character encoding being used. This means the text in your data file "
+"could be read in multiple ambiguous ways. This ambiguity cannot be resolved "
+"automatically, but the new GnuCash 2.0.0 file format will include all "
+"necessary specifications so that you do not have to go through this step "
+"again.\n"
"\n"
-"GnuCash will try to guess the correct character encoding for your data file. On the next page GnuCash will show the resulting texts when using this guess. You have to check whether the words look as expected. Either everything looks fine and you can simply press 'Forward'. Or the words contain unexpected characters, in which case you should select different character encodings to see different results. You may have to edit the list of character encodings by clicking on the respective button.\n"
+"GnuCash will try to guess the correct character encoding for your data file. "
+"On the next page GnuCash will show the resulting texts when using this "
+"guess. You have to check whether the words look as expected. Either "
+"everything looks fine and you can simply press 'Forward'. Or the words "
+"contain unexpected characters, in which case you should select different "
+"character encodings to see different results. You may have to edit the list "
+"of character encodings by clicking on the respective button.\n"
"\n"
-"Press 'Forward' now to select the correct character encoding for your data file.\n"
+"Press 'Forward' now to select the correct character encoding for your data "
+"file.\n"
msgstr ""
+"\n"
+"اÙÙ
ÙÙ Ø§ÙØ°Ù ØªØØ§ÙÙ Ø§ÙØªØÙ
ÙÙ Ù
ÙÙ Ù
Ù ÙØ³Ø®Ø© ÙØ¯ÙÙ
Ø© Ù
٠جÙÙÙØ§Ø´. ØªÙØ³Ù٠اÙÙ
ÙÙ ÙÙ "
+"Ø§ÙØ¥ØµØ¯Ø§Ø±Ø§Øª اÙÙØ¯ÙÙ
Ø© ÙÙ
ÙÙ
٠ب٠Ù
ÙØ§ØµÙات ØªÙØµÙÙÙØ© ÙØªØ±Ù
ÙØ² Ø§ÙØ£ØØ±Ù اÙÙ
ستخدÙ
Ø©. ÙÙØ°Ø§ "
+"ÙØ¹Ù٠أ٠اÙÙØµ ÙÙ Ù
ÙÙ Ø§ÙØ¨ÙØ§ÙØ§Øª Ø§ÙØ®Ø§Øµ ب٠ÙÙ
Ù٠أ٠ÙÙØ±Ø£ بطر٠غاÙ
ضة Ù
تعددة. ÙØ§ "
+"ÙÙ
ÙÙ ØÙ ÙØ°Ø§ Ø§ÙØºÙ
ÙØ¶ تÙÙØ§Ø¦ÙØ§Ø ÙÙÙ٠سÙÙ ÙØ´Ù
Ù Ø§ÙØ´ÙÙ Ø§ÙØ¬Ø¯Ùد Ù
Ù٠غÙÙÙØ§Ø´ 2.0.0 جÙ
ÙØ¹ "
+"اÙÙ
ÙØ§ØµÙات اÙÙØ§Ø²Ù
Ø© بØÙØ« ÙØ§ ØªÙØ±Ø± Ø§ÙØ®Ø·ÙØ© Ù
رة أخرÙ. \n"
+"\n"
+"سÙÙ ÙØØ§Ù٠جÙÙÙØ§Ø´ تخÙ
Ù٠ترÙ
ÙØ² Ø§ÙØ£ØØ±Ù Ø§ÙØµØÙØ ÙÙ
ÙÙ Ø§ÙØ¨ÙØ§ÙØ§Øª Ø§ÙØ®Ø§Øµ بÙ. ÙÙ "
+"Ø§ÙØµÙØØ© Ø§ÙØªØ§ÙÙØ© سÙÙ ÙØ¹Ø±Ø¶ اÙÙØµÙص اÙÙØ§ØªØ¬Ø© Ø¹ÙØ¯ استخداÙ
ÙØ°Ø§ Ø§ÙØªØ®Ù
ÙÙ ÙÙØªØÙÙ Ù
ا "
+"إذا ÙØ§Ùت اÙÙÙÙ
ات تبد٠ÙÙ
ا ÙÙ Ù
تÙÙØ¹. إذا ÙØ§Ù ÙÙ Ø´ÙØ¡ ÙØ¨Ø¯Ù عÙÙ Ù
ا ÙØ±Ø§Ù
ÙÙÙ
ÙÙÙ "
+"ببساطة Ø§ÙØ¶ØºØ· عÙÙ 'Ø¥ÙÙ Ø§ÙØ£Ù
اÙ
'. أ٠إذا ÙØ§Ùت اÙÙÙÙ
ات ØªØØªÙ٠عÙÙ Ø£ØØ±Ù ØºÙØ± "
+"Ù
تÙÙØ¹Ø©ÙÙÙ ÙØ°Ù Ø§ÙØØ§ÙØ© ÙØ¬Ø¨ ØªØØ¯Ùد اÙÙ
ØØ§Ø±Ù اÙÙ
ختÙÙØ© ÙÙØªØ§Ø¦Ø¬ Ù
ختÙÙØ©. ÙØ¯ تضطر Ø¥ÙÙ "
+"ØªØØ±Ùر ÙØ§Ø¦Ù
Ø© اÙÙ
ØØ§Ø±Ù Ù
Ù Ø®ÙØ§Ù اÙÙÙØ± عÙÙ Ø§ÙØ²Ø± اÙÙ
عÙÙ\n"
+"اضغط عÙÙ \"Ø¥ÙÙ Ø§ÙØ£Ù
اÙ
\" Ø§ÙØ¢Ù ÙØªØØ¯Ùد ترÙ
ÙØ² Ø§ÙØ£ØØ±Ù Ø§ÙØµØÙØ ÙÙ
ÙÙ Ø§ÙØ¨ÙØ§ÙØ§Øª Ø§ÙØ®Ø§Øµ "
+"بÙ.\n"
#: ../src/gnome-utils/assistant-xml-encoding.c:179
msgid "Ambiguous character encoding"
-msgstr ""
+msgstr "ترÙ
ÙØ² Ø§ÙØ£ØØ±Ù ØºÙØ± Ù
عرÙÙ"
#: ../src/gnome-utils/assistant-xml-encoding.c:182
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"
+" ÙÙ
ÙÙÙ Ø£ÙØ¶Ø§ Ø§ÙØ¹Ùدة ÙØ§ÙتØÙÙ Ù
Ù Ø§ÙØªØØ¯Ùدات Ø§ÙØ®Ø§ØµØ© ب٠ع٠طرÙ٠اÙÙÙØ± عÙÙ \"Ø¹ÙØ¯Ø©\""
#: ../src/gnome-utils/assistant-xml-encoding.c:205
msgid "Unicode"
-msgstr ""
+msgstr "ÙÙÙÙÙÙØ¯"
#: ../src/gnome-utils/assistant-xml-encoding.c:207
msgid "European"
@@ -9267,17 +10365,17 @@ msgstr "KOI8-U (Ø§ÙØ£ÙÙØ±Ø§ÙÙ)"
#: ../src/gnome-utils/assistant-xml-encoding.c:661
#, c-format
msgid "There are %d unassigned and %d undecodable words. Please add encodings."
-msgstr ""
+msgstr "ÙÙØ§Ù ÙÙÙ
ات ØºÙØ± Ù
خصصة %d ÙÙÙ
ات ØºÙØ± Ù
ÙØ³Ø±Ø© %d. Ø§ÙØ±Ø¬Ø§Ø¡ Ø¥Ø¶Ø§ÙØ© ترÙ
ÙØ²."
#: ../src/gnome-utils/assistant-xml-encoding.c:669
#, c-format
msgid "There are %d unassigned words. Please decide on them or add encodings."
-msgstr ""
+msgstr "ÙÙØ§Ù ÙÙÙ
ات ØºÙØ± Ù
خصصة %d. راجعÙÙ
أ٠إض٠ترÙ
ÙØ²."
#: ../src/gnome-utils/assistant-xml-encoding.c:680
#, c-format
msgid "There are %d undecodable words. Please add encodings."
-msgstr ""
+msgstr "ÙÙØ§Ù ÙÙÙ
ات ØºÙØ± Ù
ÙØ³Ø±Ø© %d. راجعÙÙ
أ٠إض٠ترÙ
ÙØ²."
#. Translators: Please insert encodings here that are typically used in your
#. * locale, separated by spaces. No need for ASCII or UTF-8, check `locale -m`
@@ -9324,18 +10422,21 @@ msgstr "تعذر Ø¥ÙØ´Ø§Ø¡ Ø§ÙØ±ØµÙد Ø§ÙØ§ÙتتاØÙ."
#. primary label
#: ../src/gnome-utils/dialog-account.c:661
msgid "Give the children the same type?"
-msgstr ""
+msgstr "إعطاء اÙÙØ±Ùع Ù
Ù ÙÙØ³ اÙÙÙØ¹Ø"
#. secondary label
#: ../src/gnome-utils/dialog-account.c:679
#, c-format
-msgid "The children of the edited account have to be changed to type \"%s\" to make them compatible."
+msgid ""
+"The children of the edited account have to be changed to type \"%s\" to make "
+"them compatible."
msgstr ""
+"Ø§ÙØØ³Ø§Ø¨Ø§Øª اÙÙØ±Ø¹ÙØ© ÙÙØØ³Ø§Ø¨Ø§Øª اÙÙ
راد ØªØØ±ÙØ±ÙØ§ ÙØ¬Ø¨ Ø£Ù ØªØªØºÙØ± Ù %s ÙØ¬Ø¹ÙÙØ§ Ù
ØªÙØ§ÙÙØ©."
#. children
#: ../src/gnome-utils/dialog-account.c:690
msgid "_Show children accounts"
-msgstr ""
+msgstr "عرض Ø§ÙØØ³Ø§Ø¨Ø§Øª اÙÙØ±Ø¹ÙØ©"
#: ../src/gnome-utils/dialog-account.c:763
msgid "The account must be given a name."
@@ -9347,27 +10448,31 @@ msgstr "ÙÙØ§Ù ØØ³Ø§Ø¨ Ø¨ÙØ°Ø§ Ø§ÙØ¥Ø³Ù
."
#: ../src/gnome-utils/dialog-account.c:798
msgid "You must choose a valid parent account."
-msgstr ""
+msgstr "ÙØ¬Ø¨ عÙÙÙ Ø§Ø®ØªÙØ§Ø± ØØ³Ø§Ø¨ Ø±Ø¦ÙØ³Ù ØµØ§ÙØ."
#: ../src/gnome-utils/dialog-account.c:807
msgid "You must select an account type."
msgstr "ÙØ¬Ø¨ ØªØØ¯Ùد ÙÙØ¹ ØØ³Ø§Ø¨."
#: ../src/gnome-utils/dialog-account.c:816
-msgid "The selected account type is incompatible with the one of the selected parent."
-msgstr ""
+msgid ""
+"The selected account type is incompatible with the one of the selected "
+"parent."
+msgstr "ÙÙØ¹ Ø§ÙØØ³Ø§Ø¨ اÙÙ
ØØ¯Ø¯ ØºÙØ± Ù
ØªÙØ§ÙÙ Ù
ع ÙØ§ØØ¯Ø© Ù
ع Ø§ÙØ±Ø¦Ùس٠اÙÙ
ØØ¯Ø¯."
#: ../src/gnome-utils/dialog-account.c:828
msgid "You must choose a commodity."
-msgstr ""
+msgstr "ÙØ¬Ø¨ عÙÙÙ Ø§Ø®ØªÙØ§Ø± Ø³ÙØ¹Ø©."
#: ../src/gnome-utils/dialog-account.c:884
msgid "You must enter a valid opening balance or leave it blank."
-msgstr ""
+msgstr "ÙØ¬Ø¨ Ø¥Ø¯Ø®Ø§Ù Ø§ÙØ±ØµÙد Ø§ÙØ§ÙتتاØÙ ØµØ§ÙØ أ٠اترÙÙ ÙØ§Ø±ØºØ§."
#: ../src/gnome-utils/dialog-account.c:908
-msgid "You must select a transfer account or choose the opening balances equity account."
-msgstr ""
+msgid ""
+"You must select a transfer account or choose the opening balances equity "
+"account."
+msgstr "ÙØ¬Ø¨ ØªØØ¯Ùد ØØ³Ø§Ø¨ Ø§ÙØªØÙÙÙ Ø£Ù Ø§Ø®ØªÙØ§Ø± Ø±ØµÙØ¯ Ø¥ÙØªØªØ§ØÙ ÙØØ³Ø§Ø¨ أرصدة Ø§ÙØ£Ø³ÙÙ
."
#: ../src/gnome-utils/dialog-account.c:1458
msgid "Edit Account"
@@ -9385,28 +10490,36 @@ msgstr "ØØ³Ø§Ø¨ Ø¬Ø¯ÙØ¯"
#: ../src/gnome-utils/dialog-account.c:2024
#, c-format
-msgid "Renumber the immediate sub-accounts of %s? This will replace the account code field of each child account with a newly generated code."
+msgid ""
+"Renumber the immediate sub-accounts of %s? This will replace the account "
+"code field of each child account with a newly generated code."
msgstr ""
+"ØªØ°ÙØ± Ø§ÙØØ³Ø§Ø¨Ø§Øª اÙÙØ±Ø¹ÙØ© %sØ Ø³ÙØ¤Ø¯Ù ذÙ٠إÙ٠استبدا٠ØÙ٠رÙ
ز ØØ³Ø§Ø¨ ÙÙÙ ØØ³Ø§Ø¨ ÙØ±Ø¹Ù "
+"Ù
ع Ø§ÙØ±Ù
ز Ø§ÙØ°Ù تÙ
Ø¥ÙØ´Ø§Ø¤Ù ØØ¯Ùثا."
#: ../src/gnome-utils/dialog-book-close.c:301
msgid "Please select an Equity account to hold the total Period Income."
-msgstr ""
+msgstr "ÙØ±Ø¬Ù ØªØØ¯Ùد ØØ³Ø§Ø¨ ØÙÙ٠اÙÙ
ساÙÙ
ÙÙ ÙØ¥Ø¬Ù
اÙ٠دخ٠اÙÙØªØ±Ø©."
#: ../src/gnome-utils/dialog-book-close.c:308
msgid "Please select an Equity account to hold the total Period Expense."
-msgstr ""
+msgstr "ÙØ±Ø¬Ù ØªØØ¯Ùد ØØ³Ø§Ø¨ ØÙÙ٠اÙÙ
ساÙÙ
ÙÙ ÙØ¥Ø¬Ù
اÙÙ Ø¥ÙØ±Ø§Ø¯ اÙÙØªØ±Ø©."
#: ../src/gnome-utils/dialog-commodity.c:174
msgid ""
"\n"
"Please select a commodity to match:"
msgstr ""
+"\n"
+" Ø§ÙØ±Ø¬Ø§Ø¡ ØªØØ¯Ùد Ø³ÙØ¹Ø© ÙÙ
Ù
Ø§Ø«ÙØªÙا:"
#: ../src/gnome-utils/dialog-commodity.c:181
msgid ""
"\n"
"Commodity: "
msgstr ""
+"\n"
+" Ø³ÙØ¹Ø©:"
#. Translators: Replace here and later CUSIP by the name of your local
#. National Securities Identifying Number
@@ -9417,25 +10530,29 @@ msgid ""
"\n"
"Exchange code (ISIN, CUSIP or similar): "
msgstr ""
+"\n"
+"ÙÙØ¯ Ø§ÙØ¨Ùرصة (Ø§ÙØªØ±ÙÙÙ
Ø§ÙØ¯ÙÙÙØ CUSIP Ø£Ù Ù
ا شاب٠ذÙÙ):"
#: ../src/gnome-utils/dialog-commodity.c:189
msgid ""
"\n"
"Mnemonic (Ticker symbol or similar): "
msgstr ""
+"\n"
+" (رÙ
ز Ø§ÙØ³ÙÙ
Ø£Ù Ù
ا شاب٠ذÙÙ):"
#: ../src/gnome-utils/dialog-commodity.c:284
msgid "Select security/currency"
-msgstr "ØØ¯Ø¯ Ø£Ù
ا٠/ Ø§ÙØ¹Ù
ÙØ©"
+msgstr "ØØ¯Ø¯ Ø§ÙØ³ÙÙ
/ Ø§ÙØ¹Ù
ÙØ©"
#: ../src/gnome-utils/dialog-commodity.c:285
#: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:14
msgid "_Security/currency:"
-msgstr ""
+msgstr "Ø§ÙØ³ÙÙ
/ Ø§ÙØ¹Ù
ÙØ©:"
#: ../src/gnome-utils/dialog-commodity.c:288
msgid "Select security"
-msgstr "ØØ¯Ø¯ Ø§ÙØ£Ù
اÙ"
+msgstr "ØØ¯Ø¯ Ø§ÙØ³ÙÙ
"
#: ../src/gnome-utils/dialog-commodity.c:293
msgid "Select currency"
@@ -9443,7 +10560,7 @@ msgstr "ØØ¯Ø¯ Ø§ÙØ¹Ù
ÙØ©"
#: ../src/gnome-utils/dialog-commodity.c:546
msgid "You must select a commodity. To create a new one, click \"New\""
-msgstr ""
+msgstr "ÙØ¬Ø¨ ØªØØ¯Ùد Ø§ÙØ³Ùعة. ÙØ¥Ùشاء ÙØ§ØØ¯Ø© Ø¬Ø¯ÙØ¯Ø©Ø اÙÙØ± ÙÙÙ \"Ø¬Ø¯ÙØ¯\""
#: ../src/gnome-utils/dialog-commodity.c:913
msgid "Use local time"
@@ -9471,25 +10588,28 @@ msgstr "Ù
عÙÙÙ
ات Ø§ÙØ£Ù
اÙ"
#: ../src/gnome-utils/dialog-commodity.c:1325
msgid "You may not create a new national currency."
-msgstr ""
+msgstr "ÙØ§ ØªØ³ØªØ·ÙØ¹ Ø¥ÙØ´Ø§Ø¡ عÙ
ÙØ© ÙØ·ÙÙØ© Ø¬Ø¯ÙØ¯Ø©."
#: ../src/gnome-utils/dialog-commodity.c:1335
#, c-format
msgid "%s is a reserved commodity type. Please use something else."
-msgstr ""
+msgstr "%s ÙÙ ÙÙØ¹ Ø³ÙØ¹Ø© Ù
ØØ¬Ùز. Ø§ÙØ±Ø¬Ø§Ø¡ استخداÙ
Ø´ÙØ¡ آخر."
#: ../src/gnome-utils/dialog-commodity.c:1350
msgid "That commodity already exists."
-msgstr ""
+msgstr "تÙÙ Ø§ÙØ³Ùعة Ù
ÙØ¬Ùدة باÙÙØ¹Ù."
#: ../src/gnome-utils/dialog-commodity.c:1399
-msgid "You must enter a non-empty \"Full name\", \"Symbol/abbreviation\", and \"Type\" for the commodity."
+msgid ""
+"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
#: ../src/gnome-utils/dialog-dup-trans.c:235
msgid "Action/Number:"
-msgstr ""
+msgstr "Ø§ÙØ¹Ù
Ù / رÙÙ
:"
#: ../src/gnome-utils/dialog-file-access.c:295
msgid "Open..."
@@ -9525,11 +10645,11 @@ msgstr "Ù
Ø³Ø Ø§ÙØªØØ¯Ùد ÙØ¥Ùغاء ØªØØ¯Ùد ÙØ§ÙØ© Ø§ÙØØ³Ø§Ø¨Ø§Øª.
#: ../src/gnome-utils/dialog-options.c:825
msgid "Select Children"
-msgstr ""
+msgstr "إختر Ø§ÙØØ³Ø§Ø¨Ø§Øª اÙÙØ±Ø¹ÙØ©"
#: ../src/gnome-utils/dialog-options.c:827
msgid "Select all descendents of selected account."
-msgstr ""
+msgstr "ØªØØ¯Ùد ÙØ§ÙØ© ÙØ±Ùع Ø§ÙØØ³Ø§Ø¨ اÙÙ
ØØ¯Ø¯."
#: ../src/gnome-utils/dialog-options.c:833
#: ../src/gnome-utils/dialog-options.c:967
@@ -9546,7 +10666,7 @@ msgstr "Ø¥Ø¸ÙØ§Ø± Ø§ÙØØ³Ø§Ø¨Ø§Øª اÙÙ
Ø®ÙÙØ©"
#: ../src/gnome-utils/dialog-options.c:851
msgid "Show accounts that have been marked hidden."
-msgstr ""
+msgstr "Ù
Ø´Ø§ÙØ¯Ø© Ø§ÙØØ³Ø§Ø¨Ø§Øª Ø§ÙØªÙ تÙ
ØªØØ¯ÙØ¯ÙØ§ ÙÙØ§Ø®Ùاء."
#: ../src/gnome-utils/dialog-options.c:955
msgid "Select all entries."
@@ -9554,11 +10674,11 @@ msgstr "ØØ¯Ø¯ ÙØ§ÙØ© Ø§ÙØ¥Ø¯Ø®Ø§Ùات."
#: ../src/gnome-utils/dialog-options.c:962
msgid "Clear the selection and unselect all entries."
-msgstr ""
+msgstr "Ù
Ø³Ø Ø§ÙØªØØ¯Ùد ÙØ¥Ùغاء ØªØØ¯Ùد ÙØ§ÙØ© Ø§ÙØ¥Ø¯Ø®Ø§Ùات."
#: ../src/gnome-utils/dialog-options.c:969
msgid "Select the default selection."
-msgstr ""
+msgstr "ØØ¯Ø¯ Ø§ÙØªØØ¯Ùد Ø§ÙØ§Ø³Ø§Ø³Ù."
#. The reset button on each option page
#: ../src/gnome-utils/dialog-options.c:1129
@@ -9571,7 +10691,7 @@ msgstr "إعادة تعÙÙÙ ÙØ§ÙØ© اÙÙÙÙ
Ø¥ÙÙ Ø¥Ø¹Ø¯Ø§Ø¯Ø§ØªÙØ§ اÙ
#: ../src/gnome-utils/dialog-options.c:1455
msgid "Page"
-msgstr ""
+msgstr "ØµÙØØ©"
#: ../src/gnome-utils/dialog-options.c:2070
msgid "Clear"
@@ -9602,33 +10722,40 @@ msgstr "Ø§ÙØ¯Ø®Ù%sØ§ÙØ±Ø§ØªØ¨%sØ§ÙØ®Ø§Ø¶Ø¹ ÙÙØ¶Ø±Ùبة"
#: ../src/gnome-utils/dialog-tax-table.c:116
msgid "You must provide a name for this Tax Table."
-msgstr ""
+msgstr "ÙØ¬Ø¨ تÙÙÙØ± اسÙ
ÙØ¬Ø¯ÙÙ Ø§ÙØ¶Ø±Ø§Ø¦Ø¨."
#: ../src/gnome-utils/dialog-tax-table.c:123
#, c-format
-msgid "You must provide a unique name for this Tax Table. Your choice \"%s\" is already in use."
+msgid ""
+"You must provide a unique name for this Tax Table. Your choice \"%s\" is "
+"already in use."
msgstr ""
+"ÙØ¬Ø¨ تÙÙÙØ± اسÙ
ÙØ±Ùد ÙÙØ¬Ø¯ÙÙ Ø§ÙØ¶Ø±Ø§Ø¦Ø¨ ÙØ°Ø§. Ø§Ø®ØªÙØ§Ø±Ù\"%s\"ÙÙØ¯ Ø§ÙØ§Ø³ØªØ®Ø¯Ø§Ù
باÙÙØ¹Ù."
#: ../src/gnome-utils/dialog-tax-table.c:137
msgid "Percentage amount must be between -100 and 100."
-msgstr ""
+msgstr "ÙÙØ¬Ø¨ أ٠تÙÙ٠اÙÙØ³Ø¨Ø© بÙÙ -100 Ù 100."
#: ../src/gnome-utils/dialog-tax-table.c:146
msgid "You must choose a Tax Account."
-msgstr ""
+msgstr "ÙØ¬Ø¨ عÙÙÙ Ø§Ø®ØªÙØ§Ø± ØØ³Ø§Ø¨ Ø§ÙØ¶Ø±Ø§Ø¦Ø¨."
#: ../src/gnome-utils/dialog-tax-table.c:563
#, c-format
msgid "Tax table \"%s\" is in use. You cannot delete it."
-msgstr ""
+msgstr "Ø§ÙØ¬Ø¯ÙÙ Ø§ÙØ¶Ø±Ùب٠%s ÙÙØ¯ Ø§ÙØ§Ø³ØªØ®Ø¯Ø§Ù
. ÙØ§ ÙÙ
ÙÙÙ ØØ°ÙÙ."
#: ../src/gnome-utils/dialog-tax-table.c:611
-msgid "You cannot remove the last entry from the tax table. Try deleting the tax table if you want to do that."
+msgid ""
+"You cannot remove the last entry from the tax table. Try deleting the tax "
+"table if you want to do that."
msgstr ""
+"ÙØ§ ÙÙ
ÙÙÙ Ø¥Ø²Ø§ÙØ© Ø§ÙØ¥Ø¯Ø®Ø§Ù Ø§ÙØ£Ø®Ùر Ù
Ù Ø§ÙØ¬Ø¯ÙÙ Ø§ÙØ¶Ø±ÙبÙ. ØØ§ÙÙ ØØ°Ù Ø§ÙØ¬Ø¯ÙÙ Ø§ÙØ¶Ø±Ùب٠إذا "
+"ÙÙØª ØªØ±ÙØ¯ Ø£Ù ØªÙØ¹Ù ذÙÙ."
#: ../src/gnome-utils/dialog-tax-table.c:618
msgid "Are you sure you want to delete this entry?"
-msgstr ""
+msgstr "ÙÙ Ø£ÙØª Ù
ØªØ£ÙØ¯ Ø£ÙÙ ØªØ±ÙØ¯ ØØ°Ù ÙØ°Ø§ اÙÙ
Ø¯Ø®ÙØ"
#: ../src/gnome-utils/dialog-transfer.c:606
msgid "Show the income and expense accounts"
@@ -9639,24 +10766,34 @@ msgid "Error"
msgstr "خطأ"
#: ../src/gnome-utils/dialog-transfer.c:1327
-msgid "Retrieve the current online quote. This will fail if there is a manually-created price for today."
+msgid ""
+"Retrieve the current online quote. This will fail if there is a manually-"
+"created price for today."
msgstr ""
#: ../src/gnome-utils/dialog-transfer.c:1331
msgid "Finance::Quote must be installed to enable this button."
-msgstr ""
+msgstr "ÙØ¬Ø¨ ØªØ«Ø¨ÙØª اÙÙ
اÙÙØ© :: ØªØ³Ø¹ÙØ± ÙØªÙ
ÙÙÙ ÙØ°Ø§ Ø§ÙØ²Ø±."
#: ../src/gnome-utils/dialog-transfer.c:1433
-msgid "You must specify an account to transfer from, or to, or both, for this transaction. Otherwise, it will not be recorded."
+msgid ""
+"You must specify an account to transfer from, or to, or both, for this "
+"transaction. Otherwise, it will not be recorded."
msgstr ""
+"ÙØ¬Ø¨ ØªØØ¯Ùد ØØ³Ø§Ø¨ ÙÙÙÙ Ù
٠أ٠إÙÙØ Ø£Ù ÙÙÙÙÙ
Ø§Ø ÙÙØ°Ù Ø§ÙØ¹Ù
ÙÙØ©. Ø®ÙØ§Ù ذÙÙØ ÙÙ ÙØªÙ
"
+"تسجÙÙÙ."
#: ../src/gnome-utils/dialog-transfer.c:1443
msgid "You can't transfer from and to the same account!"
-msgstr ""
+msgstr "ÙØ§ ÙÙ
ÙÙÙ Ø§ÙØªØÙÙÙ Ù
Ù ÙØ¥ÙÙ ÙÙØ³ Ø§ÙØØ³Ø§Ø¨!"
#: ../src/gnome-utils/dialog-transfer.c:1470
-msgid "You can't transfer from a non-currency account. Try reversing the \"from\" and \"to\" accounts and making the \"amount\" negative."
+msgid ""
+"You can't transfer from a non-currency account. Try reversing the \"from\" "
+"and \"to\" accounts and making the \"amount\" negative."
msgstr ""
+"ÙØ§ ÙÙ
ÙÙÙ Ø§ÙØªØÙÙÙ Ù
Ù ØØ³Ø§Ø¨ Ø¨ØºÙØ± Ø§ÙØ¹Ù
ÙØ©. ØØ§ÙÙ Ø¹ÙØ³ ØØ³Ø§Ø¨Ø§Øª\"Ù
Ù\" Ù\";Ø¥ÙÙ\" ÙØ¬Ø¹Ù"
+"\"اÙÙÙ
ÙØ©\" Ø³ÙØ¨ÙØ©."
#: ../src/gnome-utils/dialog-transfer.c:1488
msgid "You must enter a valid price."
@@ -9664,11 +10801,11 @@ msgstr "ÙØ¬Ø¨ عÙÙ٠إدخا٠سعر ØµØ§ÙØ."
#: ../src/gnome-utils/dialog-transfer.c:1500
msgid "You must enter a valid `to' amount."
-msgstr ""
+msgstr "ÙØ¬Ø¨ Ø¥Ø¯Ø®Ø§ÙØ§Ù Ù
Ø¨ÙØº ØµØ§ÙØ ÙÙ \"Ø¥ÙÙ\" :"
#: ../src/gnome-utils/dialog-transfer.c:1720
msgid "You must enter an amount to transfer."
-msgstr ""
+msgstr "ÙØ¬Ø¨ عÙÙ٠إدخا٠Ù
Ø¨ÙØº ÙÙØªØÙÙÙ."
#: ../src/gnome-utils/dialog-transfer.c:1960
msgid "Debit Account"
@@ -9689,7 +10826,7 @@ msgstr "اÙÙ
Ø¨ÙØº اÙÙ
دÙÙ:"
#: ../src/gnome-utils/dialog-transfer.c:2044
#: ../src/gnome-utils/gtkbuilder/dialog-transfer.glade.h:14
msgid "To Amount:"
-msgstr ""
+msgstr "اÙÙÙÙ
ةإÙÙ :"
#: ../src/gnome-utils/dialog-utils.c:547
msgid "Remember and don't _ask me again."
@@ -9719,23 +10856,77 @@ msgstr "ÙÙ ØªØ±ÙØ¯ ØÙظ اÙÙ
Ù٠تÙÙØ§Ø¦ÙØ§ÙØ"
#: ../src/gnome-utils/gnc-autosave.c:101
#, c-format
msgid ""
-"Your data file needs to be saved to your hard disk to save your changes. GnuCash has a feature to save the file automatically every %d minute, just as if you had pressed the \"Save\" button each time. \n"
+"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"
+"\n"
+" ÙÙ
ÙÙ٠تغÙÙØ± اÙÙØ§ØµÙ Ø§ÙØ²Ù
Ù٠أ٠إÙÙØ§Ù تشغÙÙ ÙØ°Ù اÙÙ
ÙØ²Ø© ØªØØª ØªØØ±Ùر -> ØªÙØ¶ÙÙØ§Øª -> "
+"عاÙ
-> ÙØ§ØµÙ Ø§ÙØÙØ¸ Ø§ÙØ²Ù
ÙÙ Ø§ÙØ§ÙÙ.\n"
+" \n"
+"ÙÙ ÙØªÙ
ØÙظ اÙÙ
ÙÙ Ø§ÙØ®Ø§Øµ ب٠تÙÙØ§Ø¦ÙاØ"
msgstr[1] ""
+"ÙØØªØ§Ø¬ Ù
ÙÙ Ø§ÙØ¨ÙØ§ÙØ§Øª Ø£Ù ÙØÙØ¸ عÙ٠اÙÙØ±Øµ Ø§ÙØ«Ø§Ø¨Øª ÙØÙØ¸ Ø§ÙØªØºÙÙØ±Ø§Øª. جÙÙÙØ§Ø´ ÙØ¯ÙÙ Ù
ÙØ²Ø© "
+"ÙØÙØ¸ اÙÙ
Ù٠تÙÙØ§Ø¦Ùا Ù٠دÙÙÙØ©%dØ ØªÙ
اÙ
ا ÙÙ
ا ÙÙ ÙÙØª ÙØ¯ ضغطت عÙÙ Ø§ÙØ²Ø± \"ØÙظ\"ÙÙ "
+"ÙÙ Ù
رة \n"
+"\n"
+" ÙÙ
ÙÙ٠تغÙÙØ± اÙÙØ§ØµÙ Ø§ÙØ²Ù
Ù٠أ٠إÙÙØ§Ù تشغÙÙ ÙØ°Ù اÙÙ
ÙØ²Ø© ØªØØª ØªØØ±Ùر -> ØªÙØ¶ÙÙØ§Øª -> "
+"عاÙ
-> ÙØ§ØµÙ Ø§ÙØÙØ¸ Ø§ÙØ²Ù
ÙÙ Ø§ÙØ§ÙÙ.\n"
+" \n"
+"ÙÙ ÙØªÙ
ØÙظ اÙÙ
ÙÙ Ø§ÙØ®Ø§Øµ ب٠تÙÙØ§Ø¦ÙاØ"
msgstr[2] ""
+"ÙØØªØ§Ø¬ Ù
ÙÙ Ø§ÙØ¨ÙØ§ÙØ§Øª Ø£Ù ÙØÙØ¸ عÙ٠اÙÙØ±Øµ Ø§ÙØ«Ø§Ø¨Øª ÙØÙØ¸ Ø§ÙØªØºÙÙØ±Ø§Øª. جÙÙÙØ§Ø´ ÙØ¯ÙÙ Ù
ÙØ²Ø© "
+"ÙØÙØ¸ اÙÙ
Ù٠تÙÙØ§Ø¦Ùا Ù٠دÙÙÙØ©%dØ ØªÙ
اÙ
ا ÙÙ
ا ÙÙ ÙÙØª ÙØ¯ ضغطت عÙÙ Ø§ÙØ²Ø± \"ØÙظ\"ÙÙ "
+"ÙÙ Ù
رة \n"
+"\n"
+" ÙÙ
ÙÙ٠تغÙÙØ± اÙÙØ§ØµÙ Ø§ÙØ²Ù
Ù٠أ٠إÙÙØ§Ù تشغÙÙ ÙØ°Ù اÙÙ
ÙØ²Ø© ØªØØª ØªØØ±Ùر -> ØªÙØ¶ÙÙØ§Øª -> "
+"عاÙ
-> ÙØ§ØµÙ Ø§ÙØÙØ¸ Ø§ÙØ²Ù
ÙÙ Ø§ÙØ§ÙÙ.\n"
+" \n"
+"ÙÙ ÙØªÙ
ØÙظ اÙÙ
ÙÙ Ø§ÙØ®Ø§Øµ ب٠تÙÙØ§Ø¦ÙاØ"
msgstr[3] ""
+"ÙØØªØ§Ø¬ Ù
ÙÙ Ø§ÙØ¨ÙØ§ÙØ§Øª Ø£Ù ÙØÙØ¸ عÙ٠اÙÙØ±Øµ Ø§ÙØ«Ø§Ø¨Øª ÙØÙØ¸ Ø§ÙØªØºÙÙØ±Ø§Øª. جÙÙÙØ§Ø´ ÙØ¯ÙÙ Ù
ÙØ²Ø© "
+"ÙØÙØ¸ اÙÙ
Ù٠تÙÙØ§Ø¦Ùا Ù٠دÙÙÙØ©%dØ ØªÙ
اÙ
ا ÙÙ
ا ÙÙ ÙÙØª ÙØ¯ ضغطت عÙÙ Ø§ÙØ²Ø± \"ØÙظ\"ÙÙ "
+"ÙÙ Ù
رة \n"
+"\n"
+" ÙÙ
ÙÙ٠تغÙÙØ± اÙÙØ§ØµÙ Ø§ÙØ²Ù
Ù٠أ٠إÙÙØ§Ù تشغÙÙ ÙØ°Ù اÙÙ
ÙØ²Ø© ØªØØª ØªØØ±Ùر -> ØªÙØ¶ÙÙØ§Øª -> "
+"عاÙ
-> ÙØ§ØµÙ Ø§ÙØÙØ¸ Ø§ÙØ²Ù
ÙÙ Ø§ÙØ§ÙÙ.\n"
+" \n"
+"ÙÙ ÙØªÙ
ØÙظ اÙÙ
ÙÙ Ø§ÙØ®Ø§Øµ ب٠تÙÙØ§Ø¦ÙاØ"
msgstr[4] ""
+"ÙØØªØ§Ø¬ Ù
ÙÙ Ø§ÙØ¨ÙØ§ÙØ§Øª Ø£Ù ÙØÙØ¸ عÙ٠اÙÙØ±Øµ Ø§ÙØ«Ø§Ø¨Øª ÙØÙØ¸ Ø§ÙØªØºÙÙØ±Ø§Øª. جÙÙÙØ§Ø´ ÙØ¯ÙÙ Ù
ÙØ²Ø© "
+"ÙØÙØ¸ اÙÙ
Ù٠تÙÙØ§Ø¦Ùا Ù٠دÙÙÙØ©%dØ ØªÙ
اÙ
ا ÙÙ
ا ÙÙ ÙÙØª ÙØ¯ ضغطت عÙÙ Ø§ÙØ²Ø± \"ØÙظ\"ÙÙ "
+"ÙÙ Ù
رة \n"
+"\n"
+" ÙÙ
ÙÙ٠تغÙÙØ± اÙÙØ§ØµÙ Ø§ÙØ²Ù
Ù٠أ٠إÙÙØ§Ù تشغÙÙ ÙØ°Ù اÙÙ
ÙØ²Ø© ØªØØª ØªØØ±Ùر -> ØªÙØ¶ÙÙØ§Øª -> "
+"عاÙ
-> ÙØ§ØµÙ Ø§ÙØÙØ¸ Ø§ÙØ²Ù
ÙÙ Ø§ÙØ§ÙÙ.\n"
+" \n"
+"ÙÙ ÙØªÙ
ØÙظ اÙÙ
ÙÙ Ø§ÙØ®Ø§Øµ ب٠تÙÙØ§Ø¦ÙاØ"
msgstr[5] ""
+"ÙØØªØ§Ø¬ Ù
ÙÙ Ø§ÙØ¨ÙØ§ÙØ§Øª Ø£Ù ÙØÙØ¸ عÙ٠اÙÙØ±Øµ Ø§ÙØ«Ø§Ø¨Øª ÙØÙØ¸ Ø§ÙØªØºÙÙØ±Ø§Øª. جÙÙÙØ§Ø´ ÙØ¯ÙÙ Ù
ÙØ²Ø© "
+"ÙØÙØ¸ اÙÙ
Ù٠تÙÙØ§Ø¦Ùا Ù٠دÙÙÙØ©%dØ ØªÙ
اÙ
ا ÙÙ
ا ÙÙ ÙÙØª ÙØ¯ ضغطت عÙÙ Ø§ÙØ²Ø± \"ØÙظ\"ÙÙ "
+"ÙÙ Ù
رة \n"
+"\n"
+" ÙÙ
ÙÙ٠تغÙÙØ± اÙÙØ§ØµÙ Ø§ÙØ²Ù
Ù٠أ٠إÙÙØ§Ù تشغÙÙ ÙØ°Ù اÙÙ
ÙØ²Ø© ØªØØª ØªØØ±Ùر -> ØªÙØ¶ÙÙØ§Øª -> "
+"عاÙ
-> ÙØ§ØµÙ Ø§ÙØÙØ¸ Ø§ÙØ²Ù
ÙÙ Ø§ÙØ§ÙÙ.\n"
+" \n"
+"ÙÙ ÙØªÙ
ØÙظ اÙÙ
ÙÙ Ø§ÙØ®Ø§Øµ ب٠تÙÙØ§Ø¦ÙاØ"
#: ../src/gnome-utils/gnc-autosave.c:116
msgid "_Yes, this time"
@@ -9808,7 +10999,7 @@ msgstr "Ø§ÙØªØ§Ø±ÙØ®:"
#: ../src/gnome-utils/gnc-dense-cal.c:1169
msgid "(unnamed)"
-msgstr ""
+msgstr "(ÙÙ
ÙØ³Ù
)"
#. File menu
#. Menu Items
@@ -9841,71 +11032,104 @@ msgstr "(ÙØ§Ø±ØºØ©)"
#: ../src/gnome-utils/gnc-file.c:218
#, c-format
msgid "No suitable backend was found for %s."
-msgstr ""
+msgstr "ÙÙ
ÙØ¹Ø«Ø± عÙ٠أ٠بÙÙØ© Ø®ÙÙÙØ© Ù
ÙØ§Ø³Ø¨Ø© Ù %s"
#: ../src/gnome-utils/gnc-file.c:223
#, c-format
msgid "The URL %s is not supported by this version of GnuCash."
-msgstr ""
+msgstr "Ø§ÙØ±Ø§ÙØ· %s ØºÙØ± Ù
دعÙÙ
Ù
Ù ÙØ¨Ù ÙØ°Ø§ Ø§ÙØ¥ØµØ¯Ø§Ø± Ù
٠جÙÙÙØ§Ø´."
#: ../src/gnome-utils/gnc-file.c:228
#, c-format
msgid "Can't parse the URL %s."
-msgstr ""
+msgstr "ÙØ§ ÙÙ
Ù٠تØÙÙÙ Ø§ÙØ±Ø§Ø¨Ø· %s."
#: ../src/gnome-utils/gnc-file.c:233
#, c-format
msgid "Can't connect to %s. The host, username or password were incorrect."
-msgstr ""
+msgstr "ÙØ§ ÙÙ
ÙÙ Ø§ÙØ§ØªØµØ§Ù باÙÙ
ضÙÙ %s . اسÙ
اÙÙ
ستخدÙ
Ø£Ù ÙÙÙ
Ø© اÙÙ
Ø±ÙØ± ØºÙØ± صØÙØØ©."
#: ../src/gnome-utils/gnc-file.c:239
#, c-format
msgid "Can't connect to %s. Connection was lost, unable to send data."
-msgstr ""
+msgstr "ÙØ§ ÙÙ
ÙÙ Ø§ÙØ§ØªØµØ§Ù ب %s. Ø§ÙØ§ØªØµØ§Ù Ù
ÙÙÙØ¯Ø ØºÙØ± ÙØ§Ø¯Ø± عÙÙ Ø¥Ø±Ø³Ø§Ù Ø§ÙØ¨ÙØ§ÙØ§Øª."
#: ../src/gnome-utils/gnc-file.c:245
-msgid "This file/URL appears to be from a newer version of GnuCash. You must upgrade your version of GnuCash to work with this data."
+msgid ""
+"This file/URL appears to be from a newer version of GnuCash. You must "
+"upgrade your version of GnuCash to work with this data."
msgstr ""
+"ÙØ¨Ø¯Ù Ø£Ù ÙØ°Ø§ اÙÙ
ÙÙ/عÙÙØ§Ù URL ÙØ¥ØµØ¯Ø§Ø± Ø£ØØ¯Ø« Ù
٠جÙÙÙØ§Ø´. ÙØ¬Ø¨ ترÙÙØ© Ø§ÙØ¥ØµØ¯Ø§Ø± Ø§ÙØ®Ø§Øµ "
+"ب٠Ù
٠جÙÙÙØ§Ø´ ÙÙØ¹Ù
Ù Ù
ع ÙØ°Ù Ø§ÙØ¨ÙØ§ÙØ§Øª."
#: ../src/gnome-utils/gnc-file.c:252
#, c-format
msgid "The database %s doesn't seem to exist. Do you want to create it?"
-msgstr ""
+msgstr "ÙØ§ ÙØ¨Ø¯Ù Ø£Ù ÙØ§Ø¹Ø¯Ø© Ø§ÙØ¨ÙØ§ÙØ§Øª %s Ù
ÙØ¬Ùدة. ÙÙ ØªØ±ÙØ¯ Ø¥ÙØ´Ø§Ø¦ÙاØ"
#: ../src/gnome-utils/gnc-file.c:266
#, c-format
-msgid "GnuCash could not obtain the lock for %s. That database may be in use by another user, in which case you should not open the database. Do you want to proceed with opening the database?"
+msgid ""
+"GnuCash could not obtain the lock for %s. That database may be in use by "
+"another user, in which case you should not open the database. Do you want to "
+"proceed with opening the database?"
msgstr ""
+"جÙÙÙØ§Ø´ ÙØ§ ÙÙ
ÙÙÙ Ø§ÙØØµÙ٠عÙ٠اÙÙÙÙ Ù%s . ÙØ¯ تÙÙÙ ÙØ§Ø¹Ø¯Ø© Ø§ÙØ¨ÙØ§ÙØ§Øª ÙÙØ¯ Ø§ÙØ§Ø³ØªØ®Ø¯Ø§Ù
"
+"Ù
Ù ÙØ¨Ù Ù
ستخدÙ
Ø¢Ø®Ø±Ø ÙÙÙ ÙØ°Ù Ø§ÙØØ§ÙØ© ÙØ§ ÙØ¬Ø¨ ÙØªØ ÙØ§Ø¹Ø¯Ø© Ø§ÙØ¨ÙØ§ÙØ§Øª. ÙÙ ØªØ±ÙØ¯ "
+"اÙÙ
تابعة Ù
ع ÙØªØ ÙØ§Ø¹Ø¯Ø© Ø§ÙØ¨ÙØ§ÙØ§ØªØ"
#: ../src/gnome-utils/gnc-file.c:274
#, c-format
-msgid "GnuCash could not obtain the lock for %s. That database may be in use by another user, in which case you should not import the database. Do you want to proceed with importing the database?"
+msgid ""
+"GnuCash could not obtain the lock for %s. That database may be in use by "
+"another user, in which case you should not import the database. Do you want "
+"to proceed with importing the database?"
msgstr ""
+"جÙÙÙØ§Ø´ ÙØ§ ÙÙ
ÙÙÙ Ø§ÙØØµÙ٠عÙ٠اÙÙÙÙ Ù%s . ÙØ¯ تÙÙÙ ÙØ§Ø¹Ø¯Ø© Ø§ÙØ¨ÙØ§ÙØ§Øª ÙÙØ¯ Ø§ÙØ§Ø³ØªØ®Ø¯Ø§Ù
"
+"Ù
Ù ÙØ¨Ù Ù
ستخدÙ
Ø¢Ø®Ø±Ø ÙÙÙ ÙØ°Ù Ø§ÙØØ§ÙØ© ÙØ§ ÙØ¬Ø¨ Ø¥Ø³ØªÙØ±Ø§Ø¯ ÙØ§Ø¹Ø¯Ø© Ø§ÙØ¨ÙØ§ÙØ§Øª. ÙÙ ØªØ±ÙØ¯ "
+"اÙÙ
تابعة Ù
ع Ø¥Ø³ØªÙØ±Ø§Ø¯ ÙØ§Ø¹Ø¯Ø© Ø§ÙØ¨ÙØ§ÙØ§ØªØ"
#: ../src/gnome-utils/gnc-file.c:282
#, c-format
-msgid "GnuCash could not obtain the lock for %s. That database may be in use by another user, in which case you should not save the database. Do you want to proceed with saving the database?"
+msgid ""
+"GnuCash could not obtain the lock for %s. That database may be in use by "
+"another user, in which case you should not save the database. Do you want to "
+"proceed with saving the database?"
msgstr ""
+"جÙÙÙØ§Ø´ ÙØ§ ÙÙ
ÙÙÙ Ø§ÙØØµÙ٠عÙ٠اÙÙÙÙ Ù%s . ÙØ¯ تÙÙÙ ÙØ§Ø¹Ø¯Ø© Ø§ÙØ¨ÙØ§ÙØ§Øª ÙÙØ¯ Ø§ÙØ§Ø³ØªØ®Ø¯Ø§Ù
"
+"Ù
Ù ÙØ¨Ù Ù
ستخدÙ
آخ