Sync and clean language files
This commit is contained in:
parent
94c5b40c51
commit
e7a09c07f9
@ -14,6 +14,7 @@ fi
|
|||||||
|
|
||||||
if [ "x$1" = "xlist" ]
|
if [ "x$1" = "xlist" ]
|
||||||
then
|
then
|
||||||
|
echo "Search duplicate keys into en_US lang files (there is no cross file check)"
|
||||||
for file in `find htdocs/langs/en_US -name *.lang -type f`
|
for file in `find htdocs/langs/en_US -name *.lang -type f`
|
||||||
do
|
do
|
||||||
dupes=$(
|
dupes=$(
|
||||||
|
|||||||
@ -16,6 +16,7 @@ fi
|
|||||||
# To detect
|
# To detect
|
||||||
if [ "x$1" = "xlist" ]
|
if [ "x$1" = "xlist" ]
|
||||||
then
|
then
|
||||||
|
echo "Search duplicate line for lang en_US"
|
||||||
for file in `find htdocs/langs/en_US -type f -name *.lang`
|
for file in `find htdocs/langs/en_US -type f -name *.lang`
|
||||||
do
|
do
|
||||||
if [ `sort "$file" | grep -v '^$' | uniq -d | wc -l` -gt 0 ]
|
if [ `sort "$file" | grep -v '^$' | uniq -d | wc -l` -gt 0 ]
|
||||||
@ -29,6 +30,7 @@ fi
|
|||||||
# To fix
|
# To fix
|
||||||
if [ "x$1" = "xfix" ]
|
if [ "x$1" = "xfix" ]
|
||||||
then
|
then
|
||||||
|
echo "Fix duplicate line for lang en_US"
|
||||||
for file in `find htdocs/langs/en_US -type f -name *.lang`
|
for file in `find htdocs/langs/en_US -type f -name *.lang`
|
||||||
do
|
do
|
||||||
awk -i inplace ' !x[$0]++' "$file"
|
awk -i inplace ' !x[$0]++' "$file"
|
||||||
@ -42,4 +42,4 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
echo Think to launch also:
|
echo Think to launch also:
|
||||||
echo "> dev/fixaltlanguages.sh fix all"
|
echo "> dev/tools/fixaltlanguages.sh fix all"
|
||||||
|
|||||||
@ -188,7 +188,7 @@ $formaccounting = new FormAccounting($db);
|
|||||||
|
|
||||||
// Create mode
|
// Create mode
|
||||||
if ($action == 'create') {
|
if ($action == 'create') {
|
||||||
print load_fiche_titre($langs->trans('NewAccount'));
|
print load_fiche_titre($langs->trans('NewAccountingAccount'));
|
||||||
|
|
||||||
print '<form name="add" action="' . $_SERVER["PHP_SELF"] . '" method="POST">' . "\n";
|
print '<form name="add" action="' . $_SERVER["PHP_SELF"] . '" method="POST">' . "\n";
|
||||||
print '<input type="hidden" name="token" value="' . $_SESSION['newtoken'] . '">';
|
print '<input type="hidden" name="token" value="' . $_SESSION['newtoken'] . '">';
|
||||||
|
|||||||
@ -79,6 +79,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
// Actions
|
// Actions
|
||||||
if ($action == 'COMPANY_CREATE')
|
if ($action == 'COMPANY_CREATE')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("companies");
|
$langs->load("companies");
|
||||||
|
|
||||||
@ -93,6 +94,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'COMPANY_SENTBYMAIL')
|
elseif ($action == 'COMPANY_SENTBYMAIL')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("orders");
|
$langs->load("orders");
|
||||||
|
|
||||||
@ -105,6 +107,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'CONTRACT_VALIDATE')
|
elseif ($action == 'CONTRACT_VALIDATE')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("contracts");
|
$langs->load("contracts");
|
||||||
|
|
||||||
@ -117,6 +120,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'PROPAL_VALIDATE')
|
elseif ($action == 'PROPAL_VALIDATE')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("propal");
|
$langs->load("propal");
|
||||||
|
|
||||||
@ -129,6 +133,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'PROPAL_SENTBYMAIL')
|
elseif ($action == 'PROPAL_SENTBYMAIL')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("propal");
|
$langs->load("propal");
|
||||||
|
|
||||||
@ -145,6 +150,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'PROPAL_CLOSE_SIGNED')
|
elseif ($action == 'PROPAL_CLOSE_SIGNED')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("propal");
|
$langs->load("propal");
|
||||||
|
|
||||||
@ -157,6 +163,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'PROPAL_CLASSIFY_BILLED')
|
elseif ($action == 'PROPAL_CLASSIFY_BILLED')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("propal");
|
$langs->load("propal");
|
||||||
|
|
||||||
@ -169,6 +176,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'PROPAL_CLOSE_REFUSED')
|
elseif ($action == 'PROPAL_CLOSE_REFUSED')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("propal");
|
$langs->load("propal");
|
||||||
|
|
||||||
@ -181,6 +189,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'ORDER_VALIDATE')
|
elseif ($action == 'ORDER_VALIDATE')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("orders");
|
$langs->load("orders");
|
||||||
|
|
||||||
$object->actiontypecode='AC_OTH_AUTO';
|
$object->actiontypecode='AC_OTH_AUTO';
|
||||||
@ -192,6 +201,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'ORDER_CLOSE')
|
elseif ($action == 'ORDER_CLOSE')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("orders");
|
$langs->load("orders");
|
||||||
|
|
||||||
@ -204,6 +214,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'ORDER_CLASSIFY_BILLED')
|
elseif ($action == 'ORDER_CLASSIFY_BILLED')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("orders");
|
$langs->load("orders");
|
||||||
|
|
||||||
@ -216,6 +227,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'ORDER_CANCEL')
|
elseif ($action == 'ORDER_CANCEL')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("orders");
|
$langs->load("orders");
|
||||||
|
|
||||||
@ -228,6 +240,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'ORDER_SENTBYMAIL')
|
elseif ($action == 'ORDER_SENTBYMAIL')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("orders");
|
$langs->load("orders");
|
||||||
|
|
||||||
@ -244,6 +257,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'BILL_VALIDATE')
|
elseif ($action == 'BILL_VALIDATE')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("bills");
|
$langs->load("bills");
|
||||||
|
|
||||||
@ -256,6 +270,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'BILL_UNVALIDATE')
|
elseif ($action == 'BILL_UNVALIDATE')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("bills");
|
$langs->load("bills");
|
||||||
|
|
||||||
@ -268,6 +283,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'BILL_SENTBYMAIL')
|
elseif ($action == 'BILL_SENTBYMAIL')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("bills");
|
$langs->load("bills");
|
||||||
|
|
||||||
@ -284,6 +300,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'BILL_PAYED')
|
elseif ($action == 'BILL_PAYED')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("bills");
|
$langs->load("bills");
|
||||||
|
|
||||||
@ -297,6 +314,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'BILL_CANCEL')
|
elseif ($action == 'BILL_CANCEL')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("bills");
|
$langs->load("bills");
|
||||||
|
|
||||||
@ -309,6 +327,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'FICHINTER_CREATE')
|
elseif ($action == 'FICHINTER_CREATE')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("interventions");
|
$langs->load("interventions");
|
||||||
|
|
||||||
@ -323,6 +342,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'FICHINTER_VALIDATE')
|
elseif ($action == 'FICHINTER_VALIDATE')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("interventions");
|
$langs->load("interventions");
|
||||||
|
|
||||||
@ -337,6 +357,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'FICHINTER_MODIFY')
|
elseif ($action == 'FICHINTER_MODIFY')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("interventions");
|
$langs->load("interventions");
|
||||||
|
|
||||||
@ -351,6 +372,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'FICHINTER_SENTBYMAIL')
|
elseif ($action == 'FICHINTER_SENTBYMAIL')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("interventions");
|
$langs->load("interventions");
|
||||||
|
|
||||||
@ -363,6 +385,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'FICHINTER_CLASSIFY_BILLED')
|
elseif ($action == 'FICHINTER_CLASSIFY_BILLED')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("interventions");
|
$langs->load("interventions");
|
||||||
|
|
||||||
@ -375,6 +398,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'FICHINTER_CLASSIFY_UNBILLED')
|
elseif ($action == 'FICHINTER_CLASSIFY_UNBILLED')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("interventions");
|
$langs->load("interventions");
|
||||||
|
|
||||||
@ -387,6 +411,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'FICHINTER_DELETE')
|
elseif ($action == 'FICHINTER_DELETE')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("interventions");
|
$langs->load("interventions");
|
||||||
|
|
||||||
@ -401,6 +426,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'SHIPPING_VALIDATE')
|
elseif ($action == 'SHIPPING_VALIDATE')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("sendings");
|
$langs->load("sendings");
|
||||||
|
|
||||||
@ -417,6 +443,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'SHIPPING_SENTBYMAIL')
|
elseif ($action == 'SHIPPING_SENTBYMAIL')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("sendings");
|
$langs->load("sendings");
|
||||||
|
|
||||||
@ -433,6 +460,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'ORDER_SUPPLIER_CREATE')
|
elseif ($action == 'ORDER_SUPPLIER_CREATE')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("orders");
|
$langs->load("orders");
|
||||||
|
|
||||||
@ -445,6 +473,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'ORDER_SUPPLIER_VALIDATE')
|
elseif ($action == 'ORDER_SUPPLIER_VALIDATE')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("orders");
|
$langs->load("orders");
|
||||||
|
|
||||||
@ -457,6 +486,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'ORDER_SUPPLIER_APPROVE')
|
elseif ($action == 'ORDER_SUPPLIER_APPROVE')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("orders");
|
$langs->load("orders");
|
||||||
|
|
||||||
@ -469,6 +499,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'ORDER_SUPPLIER_REFUSE')
|
elseif ($action == 'ORDER_SUPPLIER_REFUSE')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("orders");
|
$langs->load("orders");
|
||||||
|
|
||||||
@ -481,6 +512,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'ORDER_SUPPLIER_SUBMIT')
|
elseif ($action == 'ORDER_SUPPLIER_SUBMIT')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("orders");
|
$langs->load("orders");
|
||||||
|
|
||||||
@ -493,6 +525,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'ORDER_SUPPLIER_RECEIVE')
|
elseif ($action == 'ORDER_SUPPLIER_RECEIVE')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("orders");
|
$langs->load("orders");
|
||||||
|
|
||||||
@ -505,6 +538,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'ORDER_SUPPLIER_SENTBYMAIL')
|
elseif ($action == 'ORDER_SUPPLIER_SENTBYMAIL')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("bills");
|
$langs->load("bills");
|
||||||
$langs->load("orders");
|
$langs->load("orders");
|
||||||
@ -522,6 +556,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'ORDER_SUPPLIER_CLASSIFY_BILLED')
|
elseif ($action == 'ORDER_SUPPLIER_CLASSIFY_BILLED')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("bills");
|
$langs->load("bills");
|
||||||
$langs->load("orders");
|
$langs->load("orders");
|
||||||
@ -538,6 +573,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'BILL_SUPPLIER_VALIDATE')
|
elseif ($action == 'BILL_SUPPLIER_VALIDATE')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("bills");
|
$langs->load("bills");
|
||||||
|
|
||||||
@ -550,6 +586,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'BILL_SUPPLIER_UNVALIDATE')
|
elseif ($action == 'BILL_SUPPLIER_UNVALIDATE')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("bills");
|
$langs->load("bills");
|
||||||
|
|
||||||
@ -562,6 +599,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'BILL_SUPPLIER_SENTBYMAIL')
|
elseif ($action == 'BILL_SUPPLIER_SENTBYMAIL')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("bills");
|
$langs->load("bills");
|
||||||
$langs->load("orders");
|
$langs->load("orders");
|
||||||
@ -579,6 +617,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'BILL_SUPPLIER_PAYED')
|
elseif ($action == 'BILL_SUPPLIER_PAYED')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("bills");
|
$langs->load("bills");
|
||||||
|
|
||||||
@ -591,6 +630,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'BILL_SUPPLIER_CANCELED')
|
elseif ($action == 'BILL_SUPPLIER_CANCELED')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("bills");
|
$langs->load("bills");
|
||||||
|
|
||||||
@ -605,6 +645,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
// Members
|
// Members
|
||||||
elseif ($action == 'MEMBER_VALIDATE')
|
elseif ($action == 'MEMBER_VALIDATE')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("members");
|
$langs->load("members");
|
||||||
|
|
||||||
@ -619,6 +660,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'MEMBER_SUBSCRIPTION')
|
elseif ($action == 'MEMBER_SUBSCRIPTION')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("members");
|
$langs->load("members");
|
||||||
|
|
||||||
@ -635,6 +677,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'MEMBER_RESILIATE')
|
elseif ($action == 'MEMBER_RESILIATE')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("members");
|
$langs->load("members");
|
||||||
|
|
||||||
@ -649,6 +692,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
elseif ($action == 'MEMBER_DELETE')
|
elseif ($action == 'MEMBER_DELETE')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("members");
|
$langs->load("members");
|
||||||
|
|
||||||
@ -665,6 +709,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
// Projects
|
// Projects
|
||||||
elseif ($action == 'PROJECT_CREATE')
|
elseif ($action == 'PROJECT_CREATE')
|
||||||
{
|
{
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("projects");
|
$langs->load("projects");
|
||||||
|
|
||||||
@ -677,6 +722,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
$object->sendtoid=0;
|
$object->sendtoid=0;
|
||||||
}
|
}
|
||||||
elseif($action == 'PROJECT_CREATE') {
|
elseif($action == 'PROJECT_CREATE') {
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("projects");
|
$langs->load("projects");
|
||||||
|
|
||||||
@ -691,6 +737,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
|
|
||||||
elseif($action == 'PROJECT_MODIFY') {
|
elseif($action == 'PROJECT_MODIFY') {
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("projects");
|
$langs->load("projects");
|
||||||
|
|
||||||
@ -705,6 +752,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
|
|
||||||
// Project tasks
|
// Project tasks
|
||||||
elseif($action == 'TASK_CREATE') {
|
elseif($action == 'TASK_CREATE') {
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("projects");
|
$langs->load("projects");
|
||||||
|
|
||||||
@ -719,6 +767,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
|
|
||||||
elseif($action == 'TASK_MODIFY') {
|
elseif($action == 'TASK_MODIFY') {
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("projects");
|
$langs->load("projects");
|
||||||
|
|
||||||
@ -732,6 +781,7 @@ class InterfaceActionsAuto extends DolibarrTriggers
|
|||||||
}
|
}
|
||||||
|
|
||||||
elseif($action == 'TASK_DELETE') {
|
elseif($action == 'TASK_DELETE') {
|
||||||
|
$langs->load("agenda");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
$langs->load("projects");
|
$langs->load("projects");
|
||||||
|
|
||||||
|
|||||||
@ -33,6 +33,7 @@ require_once DOL_DOCUMENT_ROOT.'/core/modules/export/modules_export.php';
|
|||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
|
||||||
|
|
||||||
$langs->load("exports");
|
$langs->load("exports");
|
||||||
|
$langs->load("other");
|
||||||
$langs->load("users");
|
$langs->load("users");
|
||||||
$langs->load("companies");
|
$langs->load("companies");
|
||||||
$langs->load("projects");
|
$langs->load("projects");
|
||||||
|
|||||||
@ -14,48 +14,69 @@ Journaux=دفاتر اليومية
|
|||||||
JournalFinancial=دفاتر اليومية المالية
|
JournalFinancial=دفاتر اليومية المالية
|
||||||
BackToChartofaccounts=العودة لشجرة الحسابات
|
BackToChartofaccounts=العودة لشجرة الحسابات
|
||||||
|
|
||||||
|
AccountancyArea=Accountancy area
|
||||||
|
AccountancyAreaDescIntro=Usage of the accountancy module is done in several step:
|
||||||
|
AccountancyAreaDescActionOnce=The following actions are usually executed one time only, or once per year...
|
||||||
|
AccountancyAreaDescActionFreq=The following actions are usually executed every month, week or day for very large companies...
|
||||||
|
AccountancyAreaDescChart=STEP %s: Create or check your chart of account from menu %s
|
||||||
|
AccountancyAreaDescProd=STEP %s: Check the binding between products/services and accounting account is done. Complete missing bindings. This will save you time in future for the next steps by suggesting you the correct default accounting account on your invoice lines.<br>For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescBank=STEP %s: Check the binding between bank accounts and accounting account is done. Complete missing bindings. This will save you time in future for the next steps by suggesting you the correct default accounting account on your payment lines.<br>For this, go on the card of each financial account. You can start from page %s.
|
||||||
|
AccountancyAreaDescVat=STEP %s: Check the binding between vat payment and accounting account is done. Complete missing bindings. This will save you time in future for the next steps by suggesting you the correct default accounting account on records related to VAT payments.<br>You can set accounting accounts to use for each VAT from page %s.
|
||||||
|
AccountancyAreaDescSal=STEP %s: Check the binding between salaries payment and accounting account is done. Complete missing bindings. This will save you time in future for the next steps by suggesting you the correct default accounting account on records related to payment of salaries.<br>For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescContrib=STEP %s: Check the binding between special expences (social or fiscal contributions) and accounting account is done. Complete missing bindings. This will save you time in future for the next steps by suggesting you the correct default accounting account on records related to payments of social contributions.<br>For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescDonation=STEP %s: Check the binding between donation and accounting account is done. Complete missing bindings. This will save you time in future for the next steps by suggesting you the correct default accounting account on records related to payments of donation.<br>You can set the account dedicated for that from the menu entry %s.
|
||||||
|
|
||||||
|
AccountancyAreaDescCustomer=STEP %s: Check the binding between existing customer invoice lines and accounting account is done. Complete missing bindings. Once binding is complete, application will be able to record transactions in General Ledger in one click.<br>For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescSupplier=STEP %s: Check the binding between existing supplier invoice lines and accounting account is done. Complete missing bindings. Once binding is complete, application will be able to record transactions in General Ledger in one click.<br>For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescWriteRecords=STEP %s: Write transactions into the General Ledger. Add or edit existing transactions and generate reports
|
||||||
|
|
||||||
Selectchartofaccounts=اختر شجرة الحسابات
|
Selectchartofaccounts=اختر شجرة الحسابات
|
||||||
Addanaccount=إضافة حساب محاسبي
|
Addanaccount=إضافة حساب محاسبي
|
||||||
AccountAccounting=حساب محاسبي
|
AccountAccounting=حساب محاسبي
|
||||||
AccountAccountingShort=Account
|
AccountAccountingShort=Account
|
||||||
AccountAccountingSuggest=اقتراح حساب محاسبي
|
AccountAccountingSuggest=اقتراح حساب محاسبي
|
||||||
Ventilation=تحليل
|
Ventilation=Binding to accounts
|
||||||
|
ProductsBinding=Products bindings
|
||||||
|
|
||||||
MenuAccountancy=Accountancy
|
MenuAccountancy=Accountancy
|
||||||
CustomersVentilation=تصنيف العملاء
|
CustomersVentilation=Customer invoice binding
|
||||||
SuppliersVentilation=تصنيف الموردين
|
SuppliersVentilation=Supplier invoice binding
|
||||||
Reports=تقارير
|
Reports=تقارير
|
||||||
NewAccount=حساب محاسبي جديد
|
NewAccount=حساب محاسبي جديد
|
||||||
Create=إنشاء
|
Create=إنشاء
|
||||||
CreateMvts=إنشاء حركة
|
CreateMvts=Create new transaction
|
||||||
UpdateMvts=تعديل حركة
|
UpdateMvts=Modification of a transaction
|
||||||
WriteBookKeeping=سجل الحسابات في دفتر الأستاذ العام
|
WriteBookKeeping=Record operations in General Ledger
|
||||||
Bookkeeping=دفتر الأستاذ العام
|
Bookkeeping=دفتر الأستاذ العام
|
||||||
AccountBalance=Account balance
|
AccountBalance=Account balance
|
||||||
|
|
||||||
CAHTF=إجمالي شراء المورد قبل الضريبة
|
CAHTF=إجمالي شراء المورد قبل الضريبة
|
||||||
InvoiceLines=خطوط الفاتورة الجاهزة للإعلان
|
InvoiceLines=Lines of invoices to bind
|
||||||
InvoiceLinesDone=خطوط الفاتورة المعلنة
|
InvoiceLinesDone=Bound lines of invoices
|
||||||
IntoAccount=الإعلان في الحساب المحاسبي
|
IntoAccount=Bind line with the accounting account
|
||||||
|
|
||||||
Ventilate=أعلن عن
|
Ventilate=Bind
|
||||||
|
|
||||||
Processing=معالجة
|
Processing=معالجة
|
||||||
EndProcessing=نهاية المعالجة
|
EndProcessing=نهاية المعالجة
|
||||||
AnyLineVentilate=أي خطوط للإعلان
|
AnyLineVentilate=Any lines to bind
|
||||||
SelectedLines=الخطوط المحددة
|
SelectedLines=الخطوط المحددة
|
||||||
Lineofinvoice=خط الفاتورة
|
Lineofinvoice=خط الفاتورة
|
||||||
VentilatedinAccount=المعلن عنها في الحساب المحاسبي
|
VentilatedinAccount=Binded successfully to the accounting account
|
||||||
NotVentilatedinAccount=لم يتم الاعلان عنها في الحساب المحاسبي
|
NotVentilatedinAccount=Not bound to the accounting account
|
||||||
|
XLineSuccessfullyBinded=%s products/services successfuly bound to an accounting account
|
||||||
|
XLineFailedToBeBinded=%s products/services were not bound to any accounting account
|
||||||
|
|
||||||
ACCOUNTING_LIMIT_LIST_VENTILATION=عدد العناصر الظاهرة في الصفحة ليتم احلالها (العدد الأقصى الموصى به : 50)
|
ACCOUNTING_LIMIT_LIST_VENTILATION=Number of elements to bind shown by page (maximum recommended : 50)
|
||||||
ACCOUNTING_LIST_SORT_VENTILATION_TODO=بدء الفرز للصفحات المحللة "يجب ان تحل" بناء على احدث العناصر
|
ACCOUNTING_LIST_SORT_VENTILATION_TODO=Begin the sorting of the page "Binding to do" by the most recent elements
|
||||||
ACCOUNTING_LIST_SORT_VENTILATION_DONE=بدء الفرز للصفحات المحللة "إحلال" بناء على أحدث العناصر
|
ACCOUNTING_LIST_SORT_VENTILATION_DONE=Begin the sorting of the page "Binding done" by the most recent elements
|
||||||
|
|
||||||
ACCOUNTING_LENGTH_DESCRIPTION=الطول المستخدم لعرض وصف المنتجات والخدمات في القوائم. (المفضل = 50)
|
ACCOUNTING_LENGTH_DESCRIPTION=الطول المستخدم لعرض وصف المنتجات والخدمات في القوائم. (المفضل = 50)
|
||||||
ACCOUNTING_LENGTH_DESCRIPTION_ACCOUNT=الطول المستخدم لعرض وصف نماذج المنتجات والخدمات في القوائم. (المفضل = 50)
|
ACCOUNTING_LENGTH_DESCRIPTION_ACCOUNT=الطول المستخدم لعرض وصف نماذج المنتجات والخدمات في القوائم. (المفضل = 50)
|
||||||
ACCOUNTING_LENGTH_GACCOUNT=طول الحسابات العامة
|
ACCOUNTING_LENGTH_GACCOUNT=Length of the general accounting accounts
|
||||||
ACCOUNTING_LENGTH_AACCOUNT=طول حسابات الطرف ثالث
|
ACCOUNTING_LENGTH_AACCOUNT=Length of the third party accounting accounts
|
||||||
|
ACCOUNTING_MANAGE_ZERO=Manage the zero at the end of an accounting account. Needed by some countries. Disable by default. Be careful with the function "length of the accounts".
|
||||||
|
BANK_DISABLE_DIRECT_INPUT=Disable free input of bank transactions (Enabled by default with this module).
|
||||||
|
|
||||||
ACCOUNTING_SELL_JOURNAL=دفتر البيع اليومي
|
ACCOUNTING_SELL_JOURNAL=دفتر البيع اليومي
|
||||||
ACCOUNTING_PURCHASE_JOURNAL=دفتر الشراء اليومي
|
ACCOUNTING_PURCHASE_JOURNAL=دفتر الشراء اليومي
|
||||||
@ -81,32 +102,31 @@ Sens=Sens
|
|||||||
Codejournal=دفتر اليومية
|
Codejournal=دفتر اليومية
|
||||||
NumPiece=Piece number
|
NumPiece=Piece number
|
||||||
AccountingCategory=Accounting category
|
AccountingCategory=Accounting category
|
||||||
|
|
||||||
NotMatch=Not Set
|
NotMatch=Not Set
|
||||||
|
|
||||||
DeleteMvt=Delete general ledger lines
|
DeleteMvt=Delete general ledger lines
|
||||||
DelYear=Year to delete
|
DelYear=Year to delete
|
||||||
DelJournal=Journal to delete
|
DelJournal=Journal to delete
|
||||||
ConfirmDeleteMvt=This will delete all line of of the general ledger for year and/or from a specifics journal
|
ConfirmDeleteMvt=This will delete all lines of the general ledger for year and/or from a specifics journal
|
||||||
|
ConfirmDeleteMvtPartial=This will delete the selected line(s) of the general ledger
|
||||||
DelBookKeeping=حذف السجلات من دفتر الأستاذ العام
|
DelBookKeeping=حذف السجلات من دفتر الأستاذ العام
|
||||||
|
|
||||||
DescSellsJournal=دفتر المبيعات اليومية
|
DescSellsJournal=دفتر المبيعات اليومية
|
||||||
DescPurchasesJournal=دفتر المشتريات اليومية
|
DescPurchasesJournal=دفتر المشتريات اليومية
|
||||||
FinanceJournal=دفتر المالية اليومي
|
FinanceJournal=دفتر المالية اليومي
|
||||||
DescFinanceJournal=دفتر المالية اليومي المتضمن لجميع الدفعات عن طريق الحساب المصرفي
|
DescFinanceJournal=دفتر المالية اليومي المتضمن لجميع الدفعات عن طريق الحساب المصرفي
|
||||||
|
DescJournalOnlyBindedVisible=This is a view of records that are bound to products/services accountancy account and can be recorded into the General Ledger.
|
||||||
|
VATAccountNotDefined=Account for VAT not defined
|
||||||
|
ThirdpartyAccountNotDefined=Account for third party not defined
|
||||||
|
ProductAccountNotDefined=Account for product not defined
|
||||||
|
BankAccountNotDefined=Account for bank not defined
|
||||||
CustomerInvoicePayment=دفعة فاتورة العميل
|
CustomerInvoicePayment=دفعة فاتورة العميل
|
||||||
|
|
||||||
ThirdPartyAccount=حساب طرف ثالث
|
ThirdPartyAccount=حساب طرف ثالث
|
||||||
|
NewAccountingMvt=New transaction
|
||||||
NewAccountingMvt=حركة جديدة
|
NumMvts=Numero of transaction
|
||||||
NumMvts=رقم الحركة
|
ListeMvts=List of movements
|
||||||
ListeMvts=قائمة الحركة
|
|
||||||
ErrorDebitCredit=الدائن والمدين لا يمكن أن يكون لهم قيمة في الوقت نفسه
|
ErrorDebitCredit=الدائن والمدين لا يمكن أن يكون لهم قيمة في الوقت نفسه
|
||||||
|
|
||||||
ReportThirdParty=قائمة حساب الطرف الثالث
|
ReportThirdParty=List third party account
|
||||||
DescThirdPartyReport=استشر هنا قائمة للعملاء والموردين وحساباتهم المحاسبية
|
DescThirdPartyReport=Consult here the list of the third party customers and suppliers and their accounting accounts
|
||||||
|
|
||||||
ListAccounts=قائمة الحسابات المحاسبية
|
ListAccounts=قائمة الحسابات المحاسبية
|
||||||
|
|
||||||
@ -114,22 +134,29 @@ Pcgtype=فئة الحساب
|
|||||||
Pcgsubtype=تحت فئة الحساب
|
Pcgsubtype=تحت فئة الحساب
|
||||||
Accountparent=أصل الحساب
|
Accountparent=أصل الحساب
|
||||||
|
|
||||||
DescVentilCustomer=استشر هنا الإحلال السنوي المحاسبي لفواتير العملاء
|
|
||||||
TotalVente=المبيعات الإجمالية قبل الضريبة
|
TotalVente=المبيعات الإجمالية قبل الضريبة
|
||||||
TotalMarge=إجمالي هامش المبيعات
|
TotalMarge=إجمالي هامش المبيعات
|
||||||
DescVentilDoneCustomer=استشر هنا لائحة خطوط الفواتير للعملاء وحساب المحاسبية
|
|
||||||
DescVentilTodoCustomer=إعلان الخطوط الخاصة بك من فاتورة العميل مع حساب المحاسبة
|
|
||||||
ChangeAccount=تغيير حساب المحاسبية للخطوط التي اختارها الحساب:
|
|
||||||
Vide=-
|
|
||||||
DescVentilSupplier=استشر هنا الإحلال السنوي المحاسبي لفواتير الموردين
|
|
||||||
DescVentilDoneSupplier=استشر هنا لائحة خطوط فواتير الموردين وحساب المحاسبية
|
|
||||||
|
|
||||||
ValidateHistory=تحقق تلقائيا
|
DescVentilCustomer=Consult here the list of customer invoice lines bound (or not) to a product accounting account
|
||||||
|
DescVentilMore=In most cases, if you use predefined products or services and you set the account number on the product/service card, the application will be able to make all the binding between your invoice lines and the accounting account of your chart of accounts, just in one click with the button <strong>"%s"</strong>. If account was not set on product/service cards or if you still has some lines not bound to any account, you will have to make a manual binding from the menu "<strong>%s</strong>".
|
||||||
|
DescVentilDoneCustomer=Consult here the list of the lines of invoices customers and their product accounting account
|
||||||
|
DescVentilTodoCustomer=Bind invoice lines not already bound with a product accounting account
|
||||||
|
ChangeAccount=Change the product/service accounting account for selected lines with the following accounting account:
|
||||||
|
Vide=-
|
||||||
|
DescVentilSupplier=Consult here the list of supplier invoice lines bound or not yet bound to a product accounting account
|
||||||
|
DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier and their accounting account
|
||||||
|
|
||||||
|
ValidateHistory=Bind Automatically
|
||||||
|
AutomaticBindingDone=Automatic binding done
|
||||||
|
|
||||||
ErrorAccountancyCodeIsAlreadyUse=خطأ، لا يمكنك حذف هذا الحساب المحاسبي لأنه مستخدم
|
ErrorAccountancyCodeIsAlreadyUse=خطأ، لا يمكنك حذف هذا الحساب المحاسبي لأنه مستخدم
|
||||||
MvtNotCorrectlyBalanced=الحركة غير متوازنة\nالدائن =%s\nالمدين =%s
|
MvtNotCorrectlyBalanced=الحركة غير متوازنة\nالدائن =%s\nالمدين =%s
|
||||||
FicheVentilation=بطاقة الإحلال
|
FicheVentilation=Binding card
|
||||||
GeneralLedgerIsWritten=العمليات مسجلة في دفتر الاستاذ العام
|
GeneralLedgerIsWritten=العمليات مسجلة في دفتر الاستاذ العام
|
||||||
|
GeneralLedgerSomeRecordWasNotRecorded=Some of the transactions could not be recorded.
|
||||||
|
NoNewRecordSaved=No new record saved
|
||||||
|
ListOfProductsWithoutAccountingAccount=List of products not bound to any accounting account
|
||||||
|
ChangeBinding=Change the binding
|
||||||
|
|
||||||
## Admin
|
## Admin
|
||||||
ApplyMassCategories=Apply mass categories
|
ApplyMassCategories=Apply mass categories
|
||||||
@ -151,12 +178,14 @@ Modelcsv_cogilog=Export towards Cogilog
|
|||||||
|
|
||||||
## Tools - Init accounting account on product / service
|
## Tools - Init accounting account on product / service
|
||||||
InitAccountancy=Init accountancy
|
InitAccountancy=Init accountancy
|
||||||
InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
|
InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of chart of accounts is complete.
|
||||||
Options=Options
|
Options=Options
|
||||||
OptionModeProductSell=Mode sales
|
OptionModeProductSell=Mode sales
|
||||||
OptionModeProductBuy=Mode purchases
|
OptionModeProductBuy=Mode purchases
|
||||||
OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
|
OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
|
||||||
OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
|
OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
|
||||||
|
CleanFixHistory=Remove accountancy code from lines that not exists into charts of account
|
||||||
|
CleanHistory=Reset all bindings for selected year
|
||||||
|
|
||||||
## Dictionary
|
## Dictionary
|
||||||
Range=Range of accounting account
|
Range=Range of accounting account
|
||||||
@ -167,3 +196,9 @@ Formula=Formula
|
|||||||
ErrorNoAccountingCategoryForThisCountry=No accounting category are available for this country
|
ErrorNoAccountingCategoryForThisCountry=No accounting category are available for this country
|
||||||
ExportNotSupported=The export format setuped is not supported into this page
|
ExportNotSupported=The export format setuped is not supported into this page
|
||||||
BookeppingLineAlreayExists=Lines already existing into bookeeping
|
BookeppingLineAlreayExists=Lines already existing into bookeeping
|
||||||
|
|
||||||
|
Binded=Lines bound
|
||||||
|
ToBind=Lines to bind
|
||||||
|
|
||||||
|
WarningReportNotReliable=Warning, this report is not based on the General Ledger, so is not reliable yet. It will be replaced by a correct report in a next version.
|
||||||
|
|
||||||
|
|||||||
@ -8,11 +8,16 @@ VersionExperimental=تجريبية
|
|||||||
VersionDevelopment=تطويرية
|
VersionDevelopment=تطويرية
|
||||||
VersionUnknown=غير معروف
|
VersionUnknown=غير معروف
|
||||||
VersionRecommanded=موصى بها
|
VersionRecommanded=موصى بها
|
||||||
FileCheck=النزاهة ملفات
|
FileCheck=Files integrity checker
|
||||||
|
FileCheckDesc=This tool allows you to check the integrity of files of your application, comparing each files with the official ones. You can use this tool to detect if some files were modified by a hacker for example.
|
||||||
|
MakeIntegrityAnalysisFrom=Make integrity analysis of application files from
|
||||||
|
LocalSignature=Embedded local signature (less reliable)
|
||||||
|
RemoteSignature=Remote distant signature (more reliable)
|
||||||
FilesMissing=الملفات المفقودة
|
FilesMissing=الملفات المفقودة
|
||||||
FilesUpdated=الملفات التي تم تحديثها
|
FilesUpdated=الملفات التي تم تحديثها
|
||||||
FileCheckDolibarr=تحقق Dolibarr ملفات النزاهة
|
FileCheckDolibarr=Check integrity of application files
|
||||||
XmlNotFound=ملف XML من Dolibarr النزاهة لم يتم العثور على
|
AvailableOnlyOnPackagedVersions=The local file for integrity checking is only available when application is installed from a certified package
|
||||||
|
XmlNotFound=Xml Integrity File of application not found
|
||||||
SessionId=Session ID
|
SessionId=Session ID
|
||||||
SessionSaveHandler=معالج لحفظ الجلسات
|
SessionSaveHandler=معالج لحفظ الجلسات
|
||||||
SessionSavePath=جلسة التخزين المحلية
|
SessionSavePath=جلسة التخزين المحلية
|
||||||
@ -49,7 +54,7 @@ ErrorDecimalLargerThanAreForbidden=خطأ, برنامج دوليبار <b>%s</b>
|
|||||||
DictionarySetup=إعداد القاموس
|
DictionarySetup=إعداد القاموس
|
||||||
Dictionary=قواميس
|
Dictionary=قواميس
|
||||||
Chartofaccounts=جدول الحسابات
|
Chartofaccounts=جدول الحسابات
|
||||||
Fiscalyear=السنوات المالية
|
Fiscalyear=Fiscal year
|
||||||
ErrorReservedTypeSystemSystemAuto=القيمة 'system' و 'systemauto' لهذا النوع محفوظ. يمكنك إستخدام 'user' كقيمة لإضافة السجل الخاص بك
|
ErrorReservedTypeSystemSystemAuto=القيمة 'system' و 'systemauto' لهذا النوع محفوظ. يمكنك إستخدام 'user' كقيمة لإضافة السجل الخاص بك
|
||||||
ErrorCodeCantContainZero=الكود لا يمكن أن يحتوي على القيمة 0
|
ErrorCodeCantContainZero=الكود لا يمكن أن يحتوي على القيمة 0
|
||||||
DisableJavascript=تعطيل جافا سكريبت واياكس وظائف (مستحسن للأعمى شخص أو النص المتصفحات)
|
DisableJavascript=تعطيل جافا سكريبت واياكس وظائف (مستحسن للأعمى شخص أو النص المتصفحات)
|
||||||
@ -176,10 +181,11 @@ EncodeBinariesInHexa=ترميز البيانات الأحادية لستة عش
|
|||||||
IgnoreDuplicateRecords=تجاهل الأخطاء في السجلات المكررة (تجاهل الإدراج)
|
IgnoreDuplicateRecords=تجاهل الأخطاء في السجلات المكررة (تجاهل الإدراج)
|
||||||
AutoDetectLang=اكتشاف تلقائي (لغة المتصفح)
|
AutoDetectLang=اكتشاف تلقائي (لغة المتصفح)
|
||||||
FeatureDisabledInDemo=الميزة معلطة في العرض التجريبي
|
FeatureDisabledInDemo=الميزة معلطة في العرض التجريبي
|
||||||
|
FeatureAvailableOnlyOnStable=Feature only available on official stable versions
|
||||||
Rights=الصلاحيات
|
Rights=الصلاحيات
|
||||||
BoxesDesc=Widgets are components showing some information that you can add to personalize some pages. You can choose between showing the widget or not by selecting target page and clicking 'Activate', or by clicking the dustbin to disable it.
|
BoxesDesc=Widgets are components showing some information that you can add to personalize some pages. You can choose between showing the widget or not by selecting target page and clicking 'Activate', or by clicking the dustbin to disable it.
|
||||||
OnlyActiveElementsAreShown=فقط العناصر من <a href="%s">النماذج المفعلة </a> سوف تظهر.
|
OnlyActiveElementsAreShown=فقط العناصر من <a href="%s">النماذج المفعلة </a> سوف تظهر.
|
||||||
ModulesDesc=نماذج دوليبار تحدد اي الوظائف سيتم تفعيلها في البرنامج. بعض النماذج تتطلب بعض التصاريح يجب عليك اعطائها للمستخدمين، بعد تفعيل النموذج. اضغط على زر on/off في عمود الحالة لتفعيل النموذج/الميزة
|
ModulesDesc=Dolibarr modules define which functionality is enabled in software. Some modules require permissions you must grant to users, after enabling module. Click on button on/off to enable a module/feature.
|
||||||
ModulesMarketPlaceDesc=You can find more modules to download on external websites on the Internet...
|
ModulesMarketPlaceDesc=You can find more modules to download on external websites on the Internet...
|
||||||
ModulesMarketPlaces=مزيد من وحدات...
|
ModulesMarketPlaces=مزيد من وحدات...
|
||||||
DoliStoreDesc=DoliStore ، في السوق الرسمي لتخطيط موارد المؤسسات وحدات Dolibarr / خارجي إدارة علاقات العملاء
|
DoliStoreDesc=DoliStore ، في السوق الرسمي لتخطيط موارد المؤسسات وحدات Dolibarr / خارجي إدارة علاقات العملاء
|
||||||
@ -273,9 +279,10 @@ YouCanSubmitFile=لهذه الخطوة، يمكنك إرسال حزمة باست
|
|||||||
CurrentVersion=Dolibarr النسخة الحالية
|
CurrentVersion=Dolibarr النسخة الحالية
|
||||||
CallUpdatePage=Go to the page that updates the database structure and data: %s.
|
CallUpdatePage=Go to the page that updates the database structure and data: %s.
|
||||||
LastStableVersion=Latest stable version
|
LastStableVersion=Latest stable version
|
||||||
|
LastActivationDate=Last activation date
|
||||||
UpdateServerOffline=خادم التحديث متواجد حاليا
|
UpdateServerOffline=خادم التحديث متواجد حاليا
|
||||||
GenericMaskCodes=يمكنك إدخال أي قناع الترقيم. في هذا القناع ، وبعد ويمكن استخدام العلامات : <br> <b>(000000)</b> يطابق عدد الذي سيكون على كل يزداد ٪ s. كما تدخل العديد من أصفار على النحو المنشود طول المضادة. المضاد وسيتم الانتهاء من اصفار من اليسار من أجل الحصول على أكبر عدد اصفار كما القناع. <br> <b>000000 +000) (نفس</b> السابقة ولكن يقابل المقابلة لعدد للحق من علامة + يطبق اعتبارا من أول ٪ s. <br> <b>000000 @ (س)</b> نفس السابقة ولكن المضاد هو إعادة الصفر عندما يتم التوصل إلى الشهر خ خ ما بين 1 و 12). إذا كان هذا الخيار هو المستخدمة وس 2 أو أعلى ، ثم تسلسل (ذ ذ م م)) ((سنة أو ملم)) (مطلوب أيضا. <br> <b>(ب)</b> اليوم (01 الى 31). <br> <b>() ملم</b> في الشهر (01 الى 12). <br> <b>(كذا)</b> ، <b>(سنة))</b> أو <b>(ذ</b> السنة أكثر من 2 أو 4 أو 1 الأرقام. <br>
|
GenericMaskCodes=يمكنك إدخال أي قناع الترقيم. في هذا القناع ، وبعد ويمكن استخدام العلامات : <br> <b>(000000)</b> يطابق عدد الذي سيكون على كل يزداد ٪ s. كما تدخل العديد من أصفار على النحو المنشود طول المضادة. المضاد وسيتم الانتهاء من اصفار من اليسار من أجل الحصول على أكبر عدد اصفار كما القناع. <br> <b>000000 +000) (نفس</b> السابقة ولكن يقابل المقابلة لعدد للحق من علامة + يطبق اعتبارا من أول ٪ s. <br> <b>000000 @ (س)</b> نفس السابقة ولكن المضاد هو إعادة الصفر عندما يتم التوصل إلى الشهر خ خ ما بين 1 و 12). إذا كان هذا الخيار هو المستخدمة وس 2 أو أعلى ، ثم تسلسل (ذ ذ م م)) ((سنة أو ملم)) (مطلوب أيضا. <br> <b>(ب)</b> اليوم (01 الى 31). <br> <b>() ملم</b> في الشهر (01 الى 12). <br> <b>(كذا)</b> ، <b>(سنة))</b> أو <b>(ذ</b> السنة أكثر من 2 أو 4 أو 1 الأرقام. <br>
|
||||||
GenericMaskCodes2=<b>{CCCC}</b> رمز العميل على أحرف ن <br> <b>{cccc000}</b> يتبع رمز العميل على الأحرف التي كتبها ن عداد مخصصة للعملاء. تتم إعادة تعيين هذا العداد مخصصة للعملاء في الوقت نفسه من عداد العالمية. <br> <b>{TTTT} رمز</b> من نوع مرشحين عن على أحرف ن (انظر أنواع-القاموس مرشحين عن). <br>
|
GenericMaskCodes2=<b>{cccc}</b> the client code on n characters<br><b>{cccc000}</b> the client code on n characters is followed by a counter dedicated for customer. This counter dedicated to customer is reset at same time than global counter.<br><b>{tttt}</b> The code of third party type on n characters (see dictionary-thirdparty types).<br>
|
||||||
GenericMaskCodes3=جميع الشخصيات الاخرى في قناع سوف تظل سليمة. <br> المساحات غير مسموح بها. <br>
|
GenericMaskCodes3=جميع الشخصيات الاخرى في قناع سوف تظل سليمة. <br> المساحات غير مسموح بها. <br>
|
||||||
GenericMaskCodes4a=<u>ومثال على 99th %s من طرف ثالث TheCompany عمله 2007-01-31 :</u> <br>
|
GenericMaskCodes4a=<u>ومثال على 99th %s من طرف ثالث TheCompany عمله 2007-01-31 :</u> <br>
|
||||||
GenericMaskCodes4b=<u>ومثال على طرف ثالث على إنشاء 2007-03-01 :</u> <br>
|
GenericMaskCodes4b=<u>ومثال على طرف ثالث على إنشاء 2007-03-01 :</u> <br>
|
||||||
@ -331,7 +338,7 @@ UrlGenerationParameters=المعلمات لتأمين عناوين المواق
|
|||||||
SecurityTokenIsUnique=استخدام معلمة securekey فريدة لكل URL
|
SecurityTokenIsUnique=استخدام معلمة securekey فريدة لكل URL
|
||||||
EnterRefToBuildUrl=أدخل مرجع لكائن %s
|
EnterRefToBuildUrl=أدخل مرجع لكائن %s
|
||||||
GetSecuredUrl=الحصول على عنوان محسوب
|
GetSecuredUrl=الحصول على عنوان محسوب
|
||||||
ButtonHideUnauthorized=إخفاء أزرار لإجراءات غير مصرح بها بدلا من إظهار أزرار ذوي الاحتياجات الخاصة
|
ButtonHideUnauthorized=Hide buttons to non admin users for unauthorized actions instead of showing greyed disabled buttons
|
||||||
OldVATRates=معدل ضريبة القيمة المضافة القديم
|
OldVATRates=معدل ضريبة القيمة المضافة القديم
|
||||||
NewVATRates=معدل ضريبة القيمة المضافة الجديد
|
NewVATRates=معدل ضريبة القيمة المضافة الجديد
|
||||||
PriceBaseTypeToChange=تعديل على الأسعار مع القيمة المرجعية قاعدة المعرفة على
|
PriceBaseTypeToChange=تعديل على الأسعار مع القيمة المرجعية قاعدة المعرفة على
|
||||||
@ -349,6 +356,7 @@ ExtrafieldMail = Email
|
|||||||
ExtrafieldSelect = Select list
|
ExtrafieldSelect = Select list
|
||||||
ExtrafieldSelectList = Select from table
|
ExtrafieldSelectList = Select from table
|
||||||
ExtrafieldSeparator=Separator
|
ExtrafieldSeparator=Separator
|
||||||
|
ExtrafieldPassword=Password
|
||||||
ExtrafieldCheckBox=Checkbox
|
ExtrafieldCheckBox=Checkbox
|
||||||
ExtrafieldRadio=Radio button
|
ExtrafieldRadio=Radio button
|
||||||
ExtrafieldCheckBoxFromList= مربع من الجدول
|
ExtrafieldCheckBoxFromList= مربع من الجدول
|
||||||
@ -383,11 +391,14 @@ EnableFileCache=Enable file cache
|
|||||||
ShowDetailsInPDFPageFoot=Add more details into footer of PDF files, like your company address, or manager names (to complete professional ids, company capital and VAT number).
|
ShowDetailsInPDFPageFoot=Add more details into footer of PDF files, like your company address, or manager names (to complete professional ids, company capital and VAT number).
|
||||||
NoDetails=No more details in footer
|
NoDetails=No more details in footer
|
||||||
DisplayCompanyInfo=Display company address
|
DisplayCompanyInfo=Display company address
|
||||||
DisplayCompanyInfoAndManagers=Display company and manager names
|
DisplayCompanyManagers=Display manager names
|
||||||
|
DisplayCompanyInfoAndManagers=Display company address and manager names
|
||||||
EnableAndSetupModuleCron=If you want to have this recurring invoice beeing generated automatically, module *%s* must be enabled and correctly setup. Otherwise, generation of invoices must be done manually from this template with button *Create*. Note that even if you enabled automatic generation, you can still safely launch manual generation. Duplicates generation for same period are not possible.
|
EnableAndSetupModuleCron=If you want to have this recurring invoice beeing generated automatically, module *%s* must be enabled and correctly setup. Otherwise, generation of invoices must be done manually from this template with button *Create*. Note that even if you enabled automatic generation, you can still safely launch manual generation. Duplicates generation for same period are not possible.
|
||||||
ModuleCompanyCodeAquarium=Return an accountancy code built by:<br>%s followed by third party supplier code for a supplier accountancy code,<br>%s followed by third party customer code for a customer accountancy code.
|
ModuleCompanyCodeAquarium=Return an accountancy code built by:<br>%s followed by third party supplier code for a supplier accountancy code,<br>%s followed by third party customer code for a customer accountancy code.
|
||||||
ModuleCompanyCodePanicum=Return an empty accountancy code.
|
ModuleCompanyCodePanicum=Return an empty accountancy code.
|
||||||
ModuleCompanyCodeDigitaria=Accountancy code depends on third party code. The code is composed of the character "C" in the first position followed by the first 5 characters of the third party code.
|
ModuleCompanyCodeDigitaria=Accountancy code depends on third party code. The code is composed of the character "C" in the first position followed by the first 5 characters of the third party code.
|
||||||
|
Use3StepsApproval=By default, Purchase Orders need to be created and approved by 2 different users (one step/user to create and one step/user to approve. Note that if user has both permission to create and approve, one step/user will be enough). You can ask with this option to introduce an third step/user approval, if amount is higher than a dedicated value (so 3 steps will be necessary: 1 validation, 2=first approval and 3=second approval if amount is enough).<br>Set this to empty if one approval (2 steps) is enough, set it to a very low value (0.1) if a second approval is always required.
|
||||||
|
UseDoubleApproval=Use a 3 steps approval when amount (without tax) is higher than...
|
||||||
|
|
||||||
# Modules
|
# Modules
|
||||||
Module0Name=& مجموعات المستخدمين
|
Module0Name=& مجموعات المستخدمين
|
||||||
@ -428,8 +439,8 @@ Module55Name=Barcodes
|
|||||||
Module55Desc=Barcodes إدارة
|
Module55Desc=Barcodes إدارة
|
||||||
Module56Name=الخدمات الهاتفية
|
Module56Name=الخدمات الهاتفية
|
||||||
Module56Desc=تكامل الخدمات الهاتفية
|
Module56Desc=تكامل الخدمات الهاتفية
|
||||||
Module57Name=أوامر دائمة
|
Module57Name=Direct bank payment orders
|
||||||
Module57Desc=يقف أوامر وإدارة الانسحاب. ويشمل أيضا جيل من ملف المصلحة للبلدان الأوروبية.
|
Module57Desc=Management of Direct Debit payment orders. It includes generation of SEPA file for european countries.
|
||||||
Module58Name=انقر للاتصال
|
Module58Name=انقر للاتصال
|
||||||
Module58Desc=ClickToDial التكامل
|
Module58Desc=ClickToDial التكامل
|
||||||
Module59Name=Bookmark4u
|
Module59Name=Bookmark4u
|
||||||
@ -466,8 +477,8 @@ Module410Name=Webcalendar
|
|||||||
Module410Desc=التكامل Webcalendar
|
Module410Desc=التكامل Webcalendar
|
||||||
Module500Name=المصروفات الخاصة
|
Module500Name=المصروفات الخاصة
|
||||||
Module500Desc=إدارة المصروفات الخاصة (الضرائب، الضرائب الاجتماعية أو المالية وتوزيعات الأرباح)
|
Module500Desc=إدارة المصروفات الخاصة (الضرائب، الضرائب الاجتماعية أو المالية وتوزيعات الأرباح)
|
||||||
Module510Name=الرواتب
|
Module510Name=Employee contracts and salaries
|
||||||
Module510Desc=إدارة رواتب الموظفين والمدفوعات
|
Module510Desc=Management of employees contracts, salaries and payments
|
||||||
Module520Name=قرض
|
Module520Name=قرض
|
||||||
Module520Desc=إدارة القروض
|
Module520Desc=إدارة القروض
|
||||||
Module600Name=الإخطارات
|
Module600Name=الإخطارات
|
||||||
@ -606,10 +617,10 @@ Permission142=إنشاء / تعديل كافة المشاريع والمهام (
|
|||||||
Permission144=حذف جميع المشاريع والمهام (أيضا مشاريع خاصة وأنا لا اتصال لل)
|
Permission144=حذف جميع المشاريع والمهام (أيضا مشاريع خاصة وأنا لا اتصال لل)
|
||||||
Permission146=قراءة موفري
|
Permission146=قراءة موفري
|
||||||
Permission147=قراءة احصائيات
|
Permission147=قراءة احصائيات
|
||||||
Permission151=قراءة أوامر دائمة
|
Permission151=Read direct debit payment orders
|
||||||
Permission152=إعداد أوامر دائمة
|
Permission152=Create/modify a direct debit payment orders
|
||||||
Permission153=قراءة أوامر دائمة إيصالات
|
Permission153=Send/Transmit direct debit payment orders
|
||||||
Permission154=الائتمان / ورفض أوامر دائمة ايصالات
|
Permission154=Record Credits/Rejects of direct debit payment orders
|
||||||
Permission161=قراءة العقود / الاشتراكات
|
Permission161=قراءة العقود / الاشتراكات
|
||||||
Permission162=إنشاء / تعديل العقود / الاشتراكات
|
Permission162=إنشاء / تعديل العقود / الاشتراكات
|
||||||
Permission163=تفعيل خدمة / الاشتراك عقد
|
Permission163=تفعيل خدمة / الاشتراك عقد
|
||||||
@ -747,6 +758,7 @@ Permission1236=تصدير فواتير الموردين والصفات والم
|
|||||||
Permission1237=أوامر المورد التصدير وتفاصيلها
|
Permission1237=أوامر المورد التصدير وتفاصيلها
|
||||||
Permission1251=ادارة الدمار الواردات الخارجية البيانات في قاعدة البيانات (بيانات تحميل)
|
Permission1251=ادارة الدمار الواردات الخارجية البيانات في قاعدة البيانات (بيانات تحميل)
|
||||||
Permission1321=تصدير العملاء والفواتير والمدفوعات والصفات
|
Permission1321=تصدير العملاء والفواتير والمدفوعات والصفات
|
||||||
|
Permission1322=Reopen a paid bill
|
||||||
Permission1421=التصدير طلبات الزبائن وصفاته
|
Permission1421=التصدير طلبات الزبائن وصفاته
|
||||||
Permission20001=قراءة طلبات الإجازة (لك والمرؤوسين لديك)
|
Permission20001=قراءة طلبات الإجازة (لك والمرؤوسين لديك)
|
||||||
Permission20002=إنشاء / تعديل طلبات الإجازات الخاصة بك
|
Permission20002=إنشاء / تعديل طلبات الإجازات الخاصة بك
|
||||||
@ -780,6 +792,10 @@ Permission55002=إنشاء / تعديل استطلاعات الرأي
|
|||||||
Permission59001=قراءة الهوامش التجارية
|
Permission59001=قراءة الهوامش التجارية
|
||||||
Permission59002=تحديد هوامش التجارية
|
Permission59002=تحديد هوامش التجارية
|
||||||
Permission59003=قراءة كل الهامش المستخدم
|
Permission59003=قراءة كل الهامش المستخدم
|
||||||
|
Permission63001=Read resources
|
||||||
|
Permission63002=Create/modify resources
|
||||||
|
Permission63003=Delete resources
|
||||||
|
Permission63004=Link resources to agenda events
|
||||||
DictionaryCompanyType=Types of thirdparties
|
DictionaryCompanyType=Types of thirdparties
|
||||||
DictionaryCompanyJuridicalType=Legal forms of thirdparties
|
DictionaryCompanyJuridicalType=Legal forms of thirdparties
|
||||||
DictionaryProspectLevel=احتمال المستوى المحتمل
|
DictionaryProspectLevel=احتمال المستوى المحتمل
|
||||||
@ -853,6 +869,7 @@ LabelUsedByDefault=العلامة التي يستخدمها التقصير إذ
|
|||||||
LabelOnDocuments=علامة على وثائق
|
LabelOnDocuments=علامة على وثائق
|
||||||
NbOfDays=ملاحظة : من الأيام
|
NbOfDays=ملاحظة : من الأيام
|
||||||
AtEndOfMonth=في نهاية الشهر
|
AtEndOfMonth=في نهاية الشهر
|
||||||
|
CurrentNext=Current/Next
|
||||||
Offset=ويقابل
|
Offset=ويقابل
|
||||||
AlwaysActive=حركة دائمة
|
AlwaysActive=حركة دائمة
|
||||||
Upgrade=ترقية
|
Upgrade=ترقية
|
||||||
@ -950,7 +967,7 @@ LogEventDesc=هنا يمكنك تمكين قطع الأشجار لDolibarr ال
|
|||||||
AreaForAdminOnly=هذه الميزات يمكن أن تستخدم من قبل <b>مدير المستخدمين</b> فقط.
|
AreaForAdminOnly=هذه الميزات يمكن أن تستخدم من قبل <b>مدير المستخدمين</b> فقط.
|
||||||
SystemInfoDesc=نظام المعلومات المتنوعة المعلومات التقنية تحصل في قراءة فقط وواضحة للمشرفين فقط.
|
SystemInfoDesc=نظام المعلومات المتنوعة المعلومات التقنية تحصل في قراءة فقط وواضحة للمشرفين فقط.
|
||||||
SystemAreaForAdminOnly=هذا المجال المتاح لمدير المستخدمين فقط. أيا من Dolibarr أذونات يمكن أن تقلل من هذا الحد.
|
SystemAreaForAdminOnly=هذا المجال المتاح لمدير المستخدمين فقط. أيا من Dolibarr أذونات يمكن أن تقلل من هذا الحد.
|
||||||
CompanyFundationDesc=تعديل على هذه الصفحة كل المعلومات المعروفة للشركة أو مؤسسة تحتاج لإدارة
|
CompanyFundationDesc=Edit on this page all known information of the company or foundation you need to manage (For this, click on "Modify" or "Save" button at bottom of page)
|
||||||
DisplayDesc=يمكنك ان تختار كل معلمة إلى Dolibarr هنا الشكل والمظهر
|
DisplayDesc=يمكنك ان تختار كل معلمة إلى Dolibarr هنا الشكل والمظهر
|
||||||
AvailableModules=تتوفر وحدات
|
AvailableModules=تتوفر وحدات
|
||||||
ToActivateModule=لتفعيل وحدات ، على الإعداد منطقة الصفحة الرئيسية> الإعداد -> الوحدات).
|
ToActivateModule=لتفعيل وحدات ، على الإعداد منطقة الصفحة الرئيسية> الإعداد -> الوحدات).
|
||||||
@ -1029,9 +1046,17 @@ SendmailOptionNotComplete=تحذير، في بعض أنظمة لينكس، لإ
|
|||||||
PathToDocuments=الطريق إلى وثائق
|
PathToDocuments=الطريق إلى وثائق
|
||||||
PathDirectory=دليل
|
PathDirectory=دليل
|
||||||
SendmailOptionMayHurtBuggedMTA=ميزة لإرسال رسائل باستخدام طريقة "البريد PHP مباشرة" سيتم إنشاء رسالة البريد الإلكتروني التي قد لا تحليل بشكل صحيح من قبل بعض ملقمات البريد المستقبلة. النتيجة هي أن بعض رسائل لا يمكن قراءتها من قبل الشعب الذي استضافته تلك البرامج تنصتت. انها حالة لبعض مزودي الانترنت (مثال: أورانج في فرنسا). هذه ليست مشكلة في Dolibarr ولا في PHP ولكن على استقبال خادم البريد. ولكن هل يمكن أن تضيف MAIN_FIX_FOR_BUGGED_MTA الخيار ل1 إلى الإعداد - البعض لتعديل Dolibarr لتجنب ذلك. ومع ذلك، قد تواجه مشكلة مع خوادم أخرى تحترم بدقة المعيار SMTP. الحل الآخر (موصى به) هو استخدام طريقة "مكتبة مأخذ SMTP" الذي لا يوجد لديه عيوب.
|
SendmailOptionMayHurtBuggedMTA=ميزة لإرسال رسائل باستخدام طريقة "البريد PHP مباشرة" سيتم إنشاء رسالة البريد الإلكتروني التي قد لا تحليل بشكل صحيح من قبل بعض ملقمات البريد المستقبلة. النتيجة هي أن بعض رسائل لا يمكن قراءتها من قبل الشعب الذي استضافته تلك البرامج تنصتت. انها حالة لبعض مزودي الانترنت (مثال: أورانج في فرنسا). هذه ليست مشكلة في Dolibarr ولا في PHP ولكن على استقبال خادم البريد. ولكن هل يمكن أن تضيف MAIN_FIX_FOR_BUGGED_MTA الخيار ل1 إلى الإعداد - البعض لتعديل Dolibarr لتجنب ذلك. ومع ذلك، قد تواجه مشكلة مع خوادم أخرى تحترم بدقة المعيار SMTP. الحل الآخر (موصى به) هو استخدام طريقة "مكتبة مأخذ SMTP" الذي لا يوجد لديه عيوب.
|
||||||
TranslationSetup=التكوين دي لا TRADUCTION
|
TranslationSetup=Setup of translation
|
||||||
TranslationDesc=How to set displayed application language<br>* Systemwide: menu <strong>Home - Setup - Display</strong><br>* Per user: <strong>User display setup</strong> tab of user card (click on username at the top of the screen).
|
TranslationKeySearch=Search a translation key or string
|
||||||
TranslationOverwriteDesc=You can also override strings filling the following table. Choose your language from "%s" dropdown, insert the key string found in the lang file (langs/xx_XX/somefile.lang) into "%s" and your new translation into "%s".
|
TranslationOverwriteKey=Overwrite a translation string
|
||||||
|
TranslationDesc=How to set displayed application language :<br>* Systemwide: menu <strong>Home - Setup - Display</strong><br>* Per user: <strong>User display setup</strong> tab of user card (click on username at the top of the screen).
|
||||||
|
TranslationOverwriteDesc=You can also override strings filling the following table. Choose your language from "%s" dropdown, insert the translation key string into "%s" and your new translation into "%s"
|
||||||
|
TranslationOverwriteDesc2=You can use the other tab to help you know translation key to use
|
||||||
|
TranslationString=Translation string
|
||||||
|
CurrentTranslationString=Current translation string
|
||||||
|
WarningAtLeastKeyOrTranslationRequired=A search criteria is required at least for key or translation string
|
||||||
|
NewTranslationStringToShow=New translation string to show
|
||||||
|
OriginalValueWas=The original translation is overwritten. Original value was:<br><br>%s
|
||||||
TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b> / <b>%s</b>
|
TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b> / <b>%s</b>
|
||||||
YouMustEnableOneModule=يجب على الأقل تمكين 1 وحدة
|
YouMustEnableOneModule=يجب على الأقل تمكين 1 وحدة
|
||||||
ClassNotFoundIntoPathWarning=لم يتم العثور على %s في مسار PHP
|
ClassNotFoundIntoPathWarning=لم يتم العثور على %s في مسار PHP
|
||||||
@ -1170,7 +1195,7 @@ LDAPServerUseTLS=استخدام TLS
|
|||||||
LDAPServerUseTLSExample=خادم LDAP الخاص بك استخدام TLS
|
LDAPServerUseTLSExample=خادم LDAP الخاص بك استخدام TLS
|
||||||
LDAPServerDn=خادم DN
|
LDAPServerDn=خادم DN
|
||||||
LDAPAdminDn=مدير DN
|
LDAPAdminDn=مدير DN
|
||||||
LDAPAdminDnExample=Complete DN (ex: cn=adminldap,dc=society,dc=DN الكامل (مثلا : cn= adminldap العاصمة= المجتمع ، العاصمة= كوم)
|
LDAPAdminDnExample=Complete DN (ex: cn=admin,dc=example,dc=com or cn=Administrator,cn=Users,dc=example,dc=com for active directory)
|
||||||
LDAPPassword=مدير البرنامج كلمة السر
|
LDAPPassword=مدير البرنامج كلمة السر
|
||||||
LDAPUserDn=المستخدمين DN
|
LDAPUserDn=المستخدمين DN
|
||||||
LDAPUserDnExample=Complete DN (ex: ou=users,dc=society,dc=DN الكامل (مثلا : où= المستخدمين ، العاصمة= المجتمع ، العاصمة= كوم)
|
LDAPUserDnExample=Complete DN (ex: ou=users,dc=society,dc=DN الكامل (مثلا : où= المستخدمين ، العاصمة= المجتمع ، العاصمة= كوم)
|
||||||
@ -1258,7 +1283,7 @@ LDAPFieldCompanyExample=على سبيل المثال : س
|
|||||||
LDAPFieldSid=سيد
|
LDAPFieldSid=سيد
|
||||||
LDAPFieldSidExample=مثال ذلك : objectsid
|
LDAPFieldSidExample=مثال ذلك : objectsid
|
||||||
LDAPFieldEndLastSubscription=تاريخ انتهاء الاكتتاب
|
LDAPFieldEndLastSubscription=تاريخ انتهاء الاكتتاب
|
||||||
LDAPFieldTitle=وظيفة / وظيفة
|
LDAPFieldTitle=Job position
|
||||||
LDAPFieldTitleExample=مثال: اللقب
|
LDAPFieldTitleExample=مثال: اللقب
|
||||||
LDAPSetupNotComplete=LDAP الإعداد غير كاملة (على آخرين علامات التبويب)
|
LDAPSetupNotComplete=LDAP الإعداد غير كاملة (على آخرين علامات التبويب)
|
||||||
LDAPNoUserOrPasswordProvidedAccessIsReadOnly=أي مدير أو كلمة السر. LDAP الوصول مجهولة وسيكون في قراءة فقط.
|
LDAPNoUserOrPasswordProvidedAccessIsReadOnly=أي مدير أو كلمة السر. LDAP الوصول مجهولة وسيكون في قراءة فقط.
|
||||||
@ -1293,7 +1318,7 @@ ProductServiceSetup=منتجات وخدمات إعداد وحدات
|
|||||||
NumberOfProductShowInSelect=Max number of products in combos select lists (0=الحد الأقصى لعدد من المنتجات في اختيار قوائم المجموعات (0= لا حدود)
|
NumberOfProductShowInSelect=Max number of products in combos select lists (0=الحد الأقصى لعدد من المنتجات في اختيار قوائم المجموعات (0= لا حدود)
|
||||||
ViewProductDescInFormAbility=تصور وصف المنتج في أشكال (ما المنبثقة tooltip)
|
ViewProductDescInFormAbility=تصور وصف المنتج في أشكال (ما المنبثقة tooltip)
|
||||||
MergePropalProductCard=في تنشيط المنتج / الخدمة المرفقة التبويب ملفات خيار دمج المستند المنتج PDF إلى اقتراح PDF دازور إذا كان المنتج / الخدمة في الاقتراح
|
MergePropalProductCard=في تنشيط المنتج / الخدمة المرفقة التبويب ملفات خيار دمج المستند المنتج PDF إلى اقتراح PDF دازور إذا كان المنتج / الخدمة في الاقتراح
|
||||||
ViewProductDescInThirdpartyLanguageAbility=تصور من أوصاف المنتجات في لغة مرشحين عن
|
ViewProductDescInThirdpartyLanguageAbility=Visualization of products descriptions in the third party language
|
||||||
UseSearchToSelectProductTooltip=أيضا إذا كان لديك عدد كبير من المنتجات (> 100 000)، يمكنك زيادة السرعة عن طريق وضع PRODUCT_DONOTSEARCH_ANYWHERE ثابت إلى 1 في الإعداد، <أخرى. وبعد ذلك البحث أن يقتصر على بداية السلسلة.
|
UseSearchToSelectProductTooltip=أيضا إذا كان لديك عدد كبير من المنتجات (> 100 000)، يمكنك زيادة السرعة عن طريق وضع PRODUCT_DONOTSEARCH_ANYWHERE ثابت إلى 1 في الإعداد، <أخرى. وبعد ذلك البحث أن يقتصر على بداية السلسلة.
|
||||||
UseSearchToSelectProduct=استخدام نموذج البحث لاختيار المنتج (بدلا من القائمة المنسدلة).
|
UseSearchToSelectProduct=استخدام نموذج البحث لاختيار المنتج (بدلا من القائمة المنسدلة).
|
||||||
SetDefaultBarcodeTypeProducts=النوع الافتراضي لاستخدام الباركود للمنتجات
|
SetDefaultBarcodeTypeProducts=النوع الافتراضي لاستخدام الباركود للمنتجات
|
||||||
@ -1333,7 +1358,7 @@ GenbarcodeLocation=شريط أدوات سطر الأوامر رمز جيل (ال
|
|||||||
BarcodeInternalEngine=Internal engine
|
BarcodeInternalEngine=Internal engine
|
||||||
BarCodeNumberManager=مدير لصناعة السيارات تحديد أرقام الباركود
|
BarCodeNumberManager=مدير لصناعة السيارات تحديد أرقام الباركود
|
||||||
##### Prelevements #####
|
##### Prelevements #####
|
||||||
WithdrawalsSetup=انسحاب وحدة الإعداد
|
WithdrawalsSetup=Setup of module Direct debit payment orders
|
||||||
##### ExternalRSS #####
|
##### ExternalRSS #####
|
||||||
ExternalRSSSetup=RSS الواردات الخارجية الإعداد <textarea></textarea>
|
ExternalRSSSetup=RSS الواردات الخارجية الإعداد <textarea></textarea>
|
||||||
NewRSS=الجديد تغذية RSS
|
NewRSS=الجديد تغذية RSS
|
||||||
@ -1506,6 +1531,7 @@ OpenFiscalYear=السنة المالية المفتوحة
|
|||||||
CloseFiscalYear=السنة المالية وثيق
|
CloseFiscalYear=السنة المالية وثيق
|
||||||
DeleteFiscalYear=حذف السنة المالية
|
DeleteFiscalYear=حذف السنة المالية
|
||||||
ConfirmDeleteFiscalYear=هل أنت متأكد من حذف هذه السنة المالية؟
|
ConfirmDeleteFiscalYear=هل أنت متأكد من حذف هذه السنة المالية؟
|
||||||
|
ShowFiscalYear=Show fiscal year
|
||||||
AlwaysEditable=يمكن دائما أن تعدل
|
AlwaysEditable=يمكن دائما أن تعدل
|
||||||
MAIN_APPLICATION_TITLE=إجبار اسم المرئي من التطبيق (تحذير: وضع اسمك هنا قد كسر ميزة تسجيل الدخول التدوين الآلي عند استخدام تطبيقات الهاتف المتحرك DoliDroid)
|
MAIN_APPLICATION_TITLE=إجبار اسم المرئي من التطبيق (تحذير: وضع اسمك هنا قد كسر ميزة تسجيل الدخول التدوين الآلي عند استخدام تطبيقات الهاتف المتحرك DoliDroid)
|
||||||
NbMajMin=الحد الأدنى لعدد الأحرف الكبيرة
|
NbMajMin=الحد الأدنى لعدد الأحرف الكبيرة
|
||||||
@ -1526,7 +1552,7 @@ ListOfNotificationsPerUser=List of notifications per user*
|
|||||||
ListOfNotificationsPerUserOrContact=List of notifications per user* or per contact**
|
ListOfNotificationsPerUserOrContact=List of notifications per user* or per contact**
|
||||||
ListOfFixedNotifications=قائمة الإشعارات ثابت
|
ListOfFixedNotifications=قائمة الإشعارات ثابت
|
||||||
GoOntoUserCardToAddMore=Go on the tab "Notifications" of a user to add or remove notifications for users
|
GoOntoUserCardToAddMore=Go on the tab "Notifications" of a user to add or remove notifications for users
|
||||||
GoOntoContactCardToAddMore=الذهاب على علامة التبويب "التبليغات" من جهة اتصال مرشحين عن إضافة أو إزالة إخطارات للاتصالات / عناوين
|
GoOntoContactCardToAddMore=Go on the tab "Notifications" of a third party to add or remove notifications for contacts/addresses
|
||||||
Threshold=عتبة
|
Threshold=عتبة
|
||||||
BackupDumpWizard=المعالج لبناء قاعدة بيانات النسخ الاحتياطي ملف تفريغ
|
BackupDumpWizard=المعالج لبناء قاعدة بيانات النسخ الاحتياطي ملف تفريغ
|
||||||
SomethingMakeInstallFromWebNotPossible=تركيب وحدة خارجية غير ممكن من واجهة ويب للسبب التالي:
|
SomethingMakeInstallFromWebNotPossible=تركيب وحدة خارجية غير ممكن من واجهة ويب للسبب التالي:
|
||||||
@ -1538,9 +1564,10 @@ HighlightLinesColor=تسليط الضوء على لون الخط عند تمري
|
|||||||
TextTitleColor=Color of page title
|
TextTitleColor=Color of page title
|
||||||
LinkColor=لون الروابط
|
LinkColor=لون الروابط
|
||||||
PressF5AfterChangingThis=اضغط F5 على لوحة المفاتيح بعد تغيير هذه القيمة أن يكون ذلك فعالا
|
PressF5AfterChangingThis=اضغط F5 على لوحة المفاتيح بعد تغيير هذه القيمة أن يكون ذلك فعالا
|
||||||
NotSupportedByAllThemes=الإرادة يعمل مع موضوع eldy لكن غير معتمد من قبل جميع المواضيع
|
NotSupportedByAllThemes=Will works with core themes, may not be supported by external themes
|
||||||
BackgroundColor=لون الخلفية
|
BackgroundColor=لون الخلفية
|
||||||
TopMenuBackgroundColor=لون الخلفية لقائمة الأعلى
|
TopMenuBackgroundColor=لون الخلفية لقائمة الأعلى
|
||||||
|
TopMenuDisableImages=Hide images in Top menu
|
||||||
LeftMenuBackgroundColor=لون الخلفية القائمة اليمنى
|
LeftMenuBackgroundColor=لون الخلفية القائمة اليمنى
|
||||||
BackgroundTableTitleColor=لون الخلفية لخط عنوان الجدول
|
BackgroundTableTitleColor=لون الخلفية لخط عنوان الجدول
|
||||||
BackgroundTableLineOddColor=لون الخلفية لخطوط الجدول غريبة
|
BackgroundTableLineOddColor=لون الخلفية لخطوط الجدول غريبة
|
||||||
@ -1569,7 +1596,7 @@ MailToSendIntervention=لإرسال التدخل
|
|||||||
MailToSendSupplierRequestForQuotation=لإرسال طلب الاقتباس إلى المورد
|
MailToSendSupplierRequestForQuotation=لإرسال طلب الاقتباس إلى المورد
|
||||||
MailToSendSupplierOrder=لإرسال المورد أجل
|
MailToSendSupplierOrder=لإرسال المورد أجل
|
||||||
MailToSendSupplierInvoice=لإرسال فاتورة المورد
|
MailToSendSupplierInvoice=لإرسال فاتورة المورد
|
||||||
MailToThirdparty=لإرسال البريد الإلكتروني من صفحة مرشحين عن
|
MailToThirdparty=To send email from third party page
|
||||||
ByDefaultInList=تظهر بشكل افتراضي على عرض القائمة
|
ByDefaultInList=تظهر بشكل افتراضي على عرض القائمة
|
||||||
YouUseLastStableVersion=كنت تستخدم إصدار مستقر الماضي
|
YouUseLastStableVersion=كنت تستخدم إصدار مستقر الماضي
|
||||||
TitleExampleForMajorRelease=مثال على رسالة يمكنك استخدامها ليعلن هذا الإصدار الرئيسي (لا تتردد في استخدامها على مواقع الويب الخاص بك)
|
TitleExampleForMajorRelease=مثال على رسالة يمكنك استخدامها ليعلن هذا الإصدار الرئيسي (لا تتردد في استخدامها على مواقع الويب الخاص بك)
|
||||||
@ -1600,3 +1627,8 @@ UrlToGetKeyToUseAPIs=Url to get token to use API (once token has been received i
|
|||||||
ListOfAvailableAPIs=List of available APIs
|
ListOfAvailableAPIs=List of available APIs
|
||||||
activateModuleDependNotSatisfied=Module "%s" depends on module "%s" that is missing, so module "%1$s" may not work correclty. Please install module "%2$s" or disable module "%1$s" if you want to be safe from any surprise
|
activateModuleDependNotSatisfied=Module "%s" depends on module "%s" that is missing, so module "%1$s" may not work correclty. Please install module "%2$s" or disable module "%1$s" if you want to be safe from any surprise
|
||||||
CommandIsNotInsideAllowedCommands=The command you try to run is not inside list of allowed commands defined into parameter <strong>$dolibarr_main_restrict_os_commands</strong> into <strong>conf.php</strong> file.
|
CommandIsNotInsideAllowedCommands=The command you try to run is not inside list of allowed commands defined into parameter <strong>$dolibarr_main_restrict_os_commands</strong> into <strong>conf.php</strong> file.
|
||||||
|
LandingPage=Landing page
|
||||||
|
SamePriceAlsoForSharedCompanies=If you use a multicompany module, with the choice "Single price", price will be also the same for all companies if products are shared between environments
|
||||||
|
ModuleEnabledAdminMustCheckRights=Module has been activated. Permissions for activated module(s) were given to admin users only. You may need to grant permissions to other users manually if necessary.
|
||||||
|
UserHasNoPermissions=This user has no permission defined
|
||||||
|
TypeCdr=Use "None" if the date of payment term is date of invoice plus a delta in days (delta is field "Nb of days")<br>Use "At end of month", if, after delta, the date must be increased to reach the end of month (+ an optional "Offset" in days)<br>Use "Current/Next" to have payment term date being the first Nth of the month (N is stored into field "Nb of days")
|
||||||
|
|||||||
@ -27,13 +27,9 @@ AllTime=من البداية
|
|||||||
Reconciliation=المصالحة
|
Reconciliation=المصالحة
|
||||||
RIB=رقم الحساب المصرفي
|
RIB=رقم الحساب المصرفي
|
||||||
IBAN=عدد إيبان
|
IBAN=عدد إيبان
|
||||||
IbanValid=IBAN غير صالح
|
|
||||||
IbanNotValid=IBAN غير صالح
|
|
||||||
BIC=بيك / سويفت عدد
|
BIC=بيك / سويفت عدد
|
||||||
SwiftValid=BIC / SWIFT غير صالح
|
StandingOrders=Direct Debit orders
|
||||||
SwiftNotValid=BIC / SWIFT غير صالح
|
StandingOrder=Direct debit order
|
||||||
StandingOrders=أوامر دائمة
|
|
||||||
StandingOrder=من أجل الوقوف
|
|
||||||
AccountStatement=كشف حساب
|
AccountStatement=كشف حساب
|
||||||
AccountStatementShort=بيان
|
AccountStatementShort=بيان
|
||||||
AccountStatements=بيانات الحساب
|
AccountStatements=بيانات الحساب
|
||||||
@ -78,6 +74,7 @@ AccountToCredit=الحساب على الائتمان
|
|||||||
AccountToDebit=لحساب الخصم
|
AccountToDebit=لحساب الخصم
|
||||||
DisableConciliation=تعطيل ميزة التوفيق لهذا الحساب
|
DisableConciliation=تعطيل ميزة التوفيق لهذا الحساب
|
||||||
ConciliationDisabled=توفيق سمة المعوقين
|
ConciliationDisabled=توفيق سمة المعوقين
|
||||||
|
LinkedToAConciliatedTransaction=Linked to a conciliated transaction
|
||||||
StatusAccountOpened=فتح
|
StatusAccountOpened=فتح
|
||||||
StatusAccountClosed=مغلقة
|
StatusAccountClosed=مغلقة
|
||||||
AccountIdShort=عدد
|
AccountIdShort=عدد
|
||||||
@ -87,6 +84,8 @@ AddBankRecordLong=إضافة المعاملات يدويا
|
|||||||
ConciliatedBy=طريق التصالح
|
ConciliatedBy=طريق التصالح
|
||||||
DateConciliating=التوفيق التاريخ
|
DateConciliating=التوفيق التاريخ
|
||||||
BankLineConciliated=صفقة التصالح
|
BankLineConciliated=صفقة التصالح
|
||||||
|
Reconciled=Reconciled
|
||||||
|
NotReconciled=Not reconciled
|
||||||
CustomerInvoicePayment=عملاء الدفع
|
CustomerInvoicePayment=عملاء الدفع
|
||||||
SupplierInvoicePayment=Supplier payment
|
SupplierInvoicePayment=Supplier payment
|
||||||
SubscriptionPayment=Subscription payment
|
SubscriptionPayment=Subscription payment
|
||||||
@ -94,7 +93,8 @@ WithdrawalPayment=انسحاب الدفع
|
|||||||
SocialContributionPayment=اجتماعي / دفع الضرائب المالية
|
SocialContributionPayment=اجتماعي / دفع الضرائب المالية
|
||||||
BankTransfer=حوالة مصرفية
|
BankTransfer=حوالة مصرفية
|
||||||
BankTransfers=التحويلات المصرفية
|
BankTransfers=التحويلات المصرفية
|
||||||
TransferDesc=التحويل من حساب إلى آخر واحد ، وسوف يكتب Dolibarr اثنين من السجلات (أ مصدر في حساب الخصم والائتمان في الاعتبار الهدف من نفس المبلغ. العلامة نفسها وحتى الآن وسيتم استخدام هذه الصفقة)
|
MenuBankInternalTransfer=Internal transfer
|
||||||
|
TransferDesc=Transfer from one account to another one, Dolibarr will write two records (a debit in source account and a credit in target account. The same amount (except sign), label and date will be used for this transaction)
|
||||||
TransferFrom=من
|
TransferFrom=من
|
||||||
TransferTo=إلى
|
TransferTo=إلى
|
||||||
TransferFromToDone=ونقل من هناك إلى ٪ <b>%s ق %s</b> ٪ وقد سجلت ق.
|
TransferFromToDone=ونقل من هناك إلى ٪ <b>%s ق %s</b> ٪ وقد سجلت ق.
|
||||||
@ -129,7 +129,7 @@ FutureTransaction=الصفقة في أجل المستقبل. أي وسيلة ل
|
|||||||
SelectChequeTransactionAndGenerate=حدد / تصفية الشيكات لتشمل في الاختيار استلام الودائع وانقر على "إنشاء".
|
SelectChequeTransactionAndGenerate=حدد / تصفية الشيكات لتشمل في الاختيار استلام الودائع وانقر على "إنشاء".
|
||||||
InputReceiptNumber=اختيار كشف حساب مصرفي ذات الصلة مع التوفيق. استخدام قيمة رقمية للفرز: YYYYMM أو YYYYMMDD
|
InputReceiptNumber=اختيار كشف حساب مصرفي ذات الصلة مع التوفيق. استخدام قيمة رقمية للفرز: YYYYMM أو YYYYMMDD
|
||||||
EventualyAddCategory=في نهاية المطاف، حدد الفئة التي لتصنيف السجلات
|
EventualyAddCategory=في نهاية المطاف، حدد الفئة التي لتصنيف السجلات
|
||||||
ToConciliate=التوفيق؟
|
ToConciliate=To reconcile ?
|
||||||
ThenCheckLinesAndConciliate=ثم، والتحقق من خطوط الحالية في بيان البنك وانقر
|
ThenCheckLinesAndConciliate=ثم، والتحقق من خطوط الحالية في بيان البنك وانقر
|
||||||
DefaultRIB=BAN الافتراضي
|
DefaultRIB=BAN الافتراضي
|
||||||
AllRIB=جميع BAN
|
AllRIB=جميع BAN
|
||||||
@ -142,3 +142,6 @@ ConfirmRejectCheck=هل أنت متأكد أنك تريد وضع علامة هذ
|
|||||||
RejectCheckDate=تاريخ أعيد الاختيار
|
RejectCheckDate=تاريخ أعيد الاختيار
|
||||||
CheckRejected=تحقق عاد
|
CheckRejected=تحقق عاد
|
||||||
CheckRejectedAndInvoicesReopened=تحقق عاد والفواتير فتح
|
CheckRejectedAndInvoicesReopened=تحقق عاد والفواتير فتح
|
||||||
|
BankAccountModelModule=Document templates for bank accounts
|
||||||
|
DocumentModelSepaMandate=Template of SEPA mandate. Usefull for european countries in EEC only.
|
||||||
|
DocumentModelBan=Template to print a page with BAN information.
|
||||||
|
|||||||
@ -142,7 +142,7 @@ ErrorCantCancelIfReplacementInvoiceNotValidated=خطأ ، لا يمكن إلغا
|
|||||||
BillFrom=من
|
BillFrom=من
|
||||||
BillTo=مشروع قانون ل
|
BillTo=مشروع قانون ل
|
||||||
ActionsOnBill=الإجراءات على فاتورة
|
ActionsOnBill=الإجراءات على فاتورة
|
||||||
RecurringInvoiceTemplate=Recurring invoice
|
RecurringInvoiceTemplate=Template/Recurring invoice
|
||||||
NoQualifiedRecurringInvoiceTemplateFound=No recurring template invoice qualified for generation.
|
NoQualifiedRecurringInvoiceTemplateFound=No recurring template invoice qualified for generation.
|
||||||
FoundXQualifiedRecurringInvoiceTemplate=Found %s recurring template invoice(s) qualified for generation.
|
FoundXQualifiedRecurringInvoiceTemplate=Found %s recurring template invoice(s) qualified for generation.
|
||||||
NotARecurringInvoiceTemplate=Not a recurring template invoice
|
NotARecurringInvoiceTemplate=Not a recurring template invoice
|
||||||
@ -209,8 +209,8 @@ EscompteOffered=عرض الخصم (الدفع قبل الأجل)
|
|||||||
EscompteOfferedShort=Discount
|
EscompteOfferedShort=Discount
|
||||||
SendBillRef=تقديم فاتورة%s
|
SendBillRef=تقديم فاتورة%s
|
||||||
SendReminderBillRef=تقديم فاتورة%s (تذكير)
|
SendReminderBillRef=تقديم فاتورة%s (تذكير)
|
||||||
StandingOrders=أوامر دائمة
|
StandingOrders=Direct debit orders
|
||||||
StandingOrder=من أجل الوقوف
|
StandingOrder=Direct debit order
|
||||||
NoDraftBills=أي مشروع الفواتير
|
NoDraftBills=أي مشروع الفواتير
|
||||||
NoOtherDraftBills=أي مشروع الفواتير
|
NoOtherDraftBills=أي مشروع الفواتير
|
||||||
NoDraftInvoices=لا يوجد مسودة فواتير
|
NoDraftInvoices=لا يوجد مسودة فواتير
|
||||||
@ -351,8 +351,8 @@ VarAmount=مقدار متغير (٪٪ TOT).
|
|||||||
# PaymentType
|
# PaymentType
|
||||||
PaymentTypeVIR=Bank transfer
|
PaymentTypeVIR=Bank transfer
|
||||||
PaymentTypeShortVIR=Bank transfer
|
PaymentTypeShortVIR=Bank transfer
|
||||||
PaymentTypePRE=البنك بغية
|
PaymentTypePRE=Direct debit payment order
|
||||||
PaymentTypeShortPRE=البنك بغية
|
PaymentTypeShortPRE=Debit payment order
|
||||||
PaymentTypeLIQ=نقدا
|
PaymentTypeLIQ=نقدا
|
||||||
PaymentTypeShortLIQ=نقدا
|
PaymentTypeShortLIQ=نقدا
|
||||||
PaymentTypeCB=بطاقة الائتمان
|
PaymentTypeCB=بطاقة الائتمان
|
||||||
@ -381,6 +381,7 @@ ExtraInfos=معلومات اضافية
|
|||||||
RegulatedOn=وتنظم على
|
RegulatedOn=وتنظم على
|
||||||
ChequeNumber=رقم الشيك
|
ChequeNumber=رقم الشيك
|
||||||
ChequeOrTransferNumber=شيك / نقل رقم
|
ChequeOrTransferNumber=شيك / نقل رقم
|
||||||
|
ChequeBordereau=Check schedule
|
||||||
ChequeMaker=الاختيار / الارسال نقل
|
ChequeMaker=الاختيار / الارسال نقل
|
||||||
ChequeBank=الشيكات المصرفية
|
ChequeBank=الشيكات المصرفية
|
||||||
CheckBank=الاختيار
|
CheckBank=الاختيار
|
||||||
@ -429,13 +430,15 @@ CantRemoveConciliatedPayment=Can't remove conciliated payment
|
|||||||
PayedByThisPayment=سيولي هذا الدفع
|
PayedByThisPayment=سيولي هذا الدفع
|
||||||
ClosePaidInvoicesAutomatically=تصنيف "مدفوع" كل مستوى، حالة أو الفواتير استبدال دفعت بالكامل.
|
ClosePaidInvoicesAutomatically=تصنيف "مدفوع" كل مستوى، حالة أو الفواتير استبدال دفعت بالكامل.
|
||||||
ClosePaidCreditNotesAutomatically=تصنيف "مدفوع" كل الملاحظات الائتمان تدفع بالكامل مرة أخرى.
|
ClosePaidCreditNotesAutomatically=تصنيف "مدفوع" كل الملاحظات الائتمان تدفع بالكامل مرة أخرى.
|
||||||
|
ClosePaidContributionsAutomatically=Classify "Paid" all social or fiscal contributions entirely paid.
|
||||||
AllCompletelyPayedInvoiceWillBeClosed=كل فاتورة مع عدم وجود لا تزال لدفع ستغلق تلقائيا إلى "فياض" الوضع.
|
AllCompletelyPayedInvoiceWillBeClosed=كل فاتورة مع عدم وجود لا تزال لدفع ستغلق تلقائيا إلى "فياض" الوضع.
|
||||||
ToMakePayment=دفع
|
ToMakePayment=دفع
|
||||||
ToMakePaymentBack=تسديد
|
ToMakePaymentBack=تسديد
|
||||||
ListOfYourUnpaidInvoices=قائمة الفواتير غير المسددة
|
ListOfYourUnpaidInvoices=قائمة الفواتير غير المسددة
|
||||||
NoteListOfYourUnpaidInvoices=ملاحظة: تحتوي هذه القائمة على الفواتير الوحيدة لأطراف ثالثة ترتبط لك كممثل بيع.
|
NoteListOfYourUnpaidInvoices=ملاحظة: تحتوي هذه القائمة على الفواتير الوحيدة لأطراف ثالثة ترتبط لك كممثل بيع.
|
||||||
RevenueStamp=طوابع الواردات
|
RevenueStamp=طوابع الواردات
|
||||||
YouMustCreateInvoiceFromThird=يتوفر هذا الخيار فقط عند إنشاء الفاتورة من علامة التبويب "العملاء" من مرشحين عن
|
YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of third party
|
||||||
|
YouMustCreateInvoiceFromSupplierThird=This option is only available when creating invoice from tab "supplier" of third party
|
||||||
YouMustCreateStandardInvoiceFirstDesc=You have to create a standard invoice first and convert it to "template" to create a new template invoice
|
YouMustCreateStandardInvoiceFirstDesc=You have to create a standard invoice first and convert it to "template" to create a new template invoice
|
||||||
PDFCrabeDescription=نموذج فاتورة Crabe. نموذج الفاتورة كاملة (دعم الخيار الضريبة على القيمة المضافة ، والخصومات ، وشروط الدفع ، والشعار ، الخ..)
|
PDFCrabeDescription=نموذج فاتورة Crabe. نموذج الفاتورة كاملة (دعم الخيار الضريبة على القيمة المضافة ، والخصومات ، وشروط الدفع ، والشعار ، الخ..)
|
||||||
PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for situation invoices
|
PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for situation invoices
|
||||||
@ -477,4 +480,6 @@ updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
|
|||||||
ToCreateARecurringInvoice=To create a recurring invoice for this contract, first create this draft invoice, then convert it into an invoice template and define the frequency for generation of future invoices.
|
ToCreateARecurringInvoice=To create a recurring invoice for this contract, first create this draft invoice, then convert it into an invoice template and define the frequency for generation of future invoices.
|
||||||
ToCreateARecurringInvoiceGene=To generate future invoices regularly and manually, just go on menu <strong>%s - %s - %s</strong>.
|
ToCreateARecurringInvoiceGene=To generate future invoices regularly and manually, just go on menu <strong>%s - %s - %s</strong>.
|
||||||
ToCreateARecurringInvoiceGeneAuto=If you need to have such invoices generated automatically, ask you administrator to enable and setup module <strong>%s</strong>. Note that both method (manual and automatic) can be used together with no risk of duplication.
|
ToCreateARecurringInvoiceGeneAuto=If you need to have such invoices generated automatically, ask you administrator to enable and setup module <strong>%s</strong>. Note that both method (manual and automatic) can be used together with no risk of duplication.
|
||||||
|
DeleteRepeatableInvoice=Delete template invoice
|
||||||
|
ConfirmDeleteRepeatableInvoice=Are your sure you want to delete the template invoice ?
|
||||||
|
|
||||||
|
|||||||
@ -38,7 +38,7 @@ BoxMyLastBookmarks=My latest %s bookmarks
|
|||||||
BoxOldestExpiredServices=أقدم خدمات منتهية الصلاحية النشطة
|
BoxOldestExpiredServices=أقدم خدمات منتهية الصلاحية النشطة
|
||||||
BoxLastExpiredServices=Latest %s oldest contacts with active expired services
|
BoxLastExpiredServices=Latest %s oldest contacts with active expired services
|
||||||
BoxTitleLastActionsToDo=Latest %s actions to do
|
BoxTitleLastActionsToDo=Latest %s actions to do
|
||||||
BoxTitleLastContracts=Latest %s contracts
|
BoxTitleLastContracts=Latest %s modified contracts
|
||||||
BoxTitleLastModifiedDonations=Latest %s modified donations
|
BoxTitleLastModifiedDonations=Latest %s modified donations
|
||||||
BoxTitleLastModifiedExpenses=Latest %s modified expense reports
|
BoxTitleLastModifiedExpenses=Latest %s modified expense reports
|
||||||
BoxGlobalActivity=النشاط العالمي (الفواتير والمقترحات والطلبات)
|
BoxGlobalActivity=النشاط العالمي (الفواتير والمقترحات والطلبات)
|
||||||
@ -72,8 +72,13 @@ BoxProposalsPerMonth=مقترحات شهريا
|
|||||||
NoTooLowStockProducts=أي منتج في إطار الحد الأقصى الأسهم منخفضة
|
NoTooLowStockProducts=أي منتج في إطار الحد الأقصى الأسهم منخفضة
|
||||||
BoxProductDistribution=منتجات / خدمات توزيع
|
BoxProductDistribution=منتجات / خدمات توزيع
|
||||||
BoxProductDistributionFor=توزيع من %s لـ %s
|
BoxProductDistributionFor=توزيع من %s لـ %s
|
||||||
|
BoxTitleLastModifiedSupplierBills=Latest %s modified supplier bills
|
||||||
|
BoxTitleLatestModifiedSupplierOrders=Latest %s modified supplier orders
|
||||||
|
BoxTitleLastModifiedCustomerBills=Latest %s modified customer bills
|
||||||
|
BoxTitleLastModifiedCustomerOrders=Latest %s modified customer orders
|
||||||
|
BoxTitleLastModifiedPropals=Latest %s modified propals
|
||||||
ForCustomersInvoices=عملاء الفواتير
|
ForCustomersInvoices=عملاء الفواتير
|
||||||
ForCustomersOrders=أوامر العملاء
|
ForCustomersOrders=أوامر العملاء
|
||||||
ForProposals=اقتراحات
|
ForProposals=اقتراحات
|
||||||
LastXMonthRolling=The latest %s month rolling
|
LastXMonthRolling=The latest %s month rolling
|
||||||
ChooseBoxToAdd=Add widget to your dashboard...
|
ChooseBoxToAdd=Add widget to your dashboard
|
||||||
|
|||||||
@ -12,10 +12,9 @@ CashDeskOn=في
|
|||||||
CashDeskThirdParty=طرف ثالث
|
CashDeskThirdParty=طرف ثالث
|
||||||
ShoppingCart=عربة التسوق
|
ShoppingCart=عربة التسوق
|
||||||
NewSell=بيع جديد
|
NewSell=بيع جديد
|
||||||
BackOffice=المكتب الخلفي
|
|
||||||
AddThisArticle=إضافة هذا المقال
|
AddThisArticle=إضافة هذا المقال
|
||||||
RestartSelling=بالعدول عن بيع
|
RestartSelling=بالعدول عن بيع
|
||||||
SellFinished=بيع الانتهاء
|
SellFinished=Sale complete
|
||||||
PrintTicket=طباعة تذكرة
|
PrintTicket=طباعة تذكرة
|
||||||
NoProductFound=لا مادة وجدت
|
NoProductFound=لا مادة وجدت
|
||||||
ProductFound=العثور على المنتج
|
ProductFound=العثور على المنتج
|
||||||
|
|||||||
@ -14,6 +14,7 @@ CustomersCategoriesArea=العملاء العلامات / المنطقة الف
|
|||||||
MembersCategoriesArea=به أعضاء / المنطقة الفئات
|
MembersCategoriesArea=به أعضاء / المنطقة الفئات
|
||||||
ContactsCategoriesArea=اتصالات به / المنطقة الفئات
|
ContactsCategoriesArea=اتصالات به / المنطقة الفئات
|
||||||
AccountsCategoriesArea=Accounts tags/categories area
|
AccountsCategoriesArea=Accounts tags/categories area
|
||||||
|
ProjectsCategoriesArea=Projects tags/categories area
|
||||||
SubCats=الفئات الفرعية
|
SubCats=الفئات الفرعية
|
||||||
CatList=قائمة العلامات / فئات
|
CatList=قائمة العلامات / فئات
|
||||||
NewCategory=علامة جديدة / فئة
|
NewCategory=علامة جديدة / فئة
|
||||||
@ -33,9 +34,10 @@ CompanyIsInSuppliersCategories=ويرتبط هذا الطرف الثالث لي
|
|||||||
MemberIsInCategories=ويرتبط هذا العضو ليلي أعضاء علامات / فئات
|
MemberIsInCategories=ويرتبط هذا العضو ليلي أعضاء علامات / فئات
|
||||||
ContactIsInCategories=ويرتبط هذا الاتصال بعد اتصالات به / فئات
|
ContactIsInCategories=ويرتبط هذا الاتصال بعد اتصالات به / فئات
|
||||||
ProductHasNoCategory=هذا المنتج / الخدمة ليست في أية علامات / فئات
|
ProductHasNoCategory=هذا المنتج / الخدمة ليست في أية علامات / فئات
|
||||||
CompanyHasNoCategory=هذه مرشحين عن ليس في أية علامات / فئات
|
CompanyHasNoCategory=This third party is not in any tags/categories
|
||||||
MemberHasNoCategory=هذا العضو ليس في أية علامات / فئات
|
MemberHasNoCategory=هذا العضو ليس في أية علامات / فئات
|
||||||
ContactHasNoCategory=هذا الاتصال ليست في أية علامات / فئات
|
ContactHasNoCategory=هذا الاتصال ليست في أية علامات / فئات
|
||||||
|
ProjectHasNoCategory=This project is not in any tags/categories
|
||||||
ClassifyInCategory=إضافة إلى علامة / فئة
|
ClassifyInCategory=إضافة إلى علامة / فئة
|
||||||
NotCategorized=من دون سمة / فئة
|
NotCategorized=من دون سمة / فئة
|
||||||
CategoryExistsAtSameLevel=هذه الفئة موجودة بالفعل في نفس المكان
|
CategoryExistsAtSameLevel=هذه الفئة موجودة بالفعل في نفس المكان
|
||||||
@ -56,12 +58,14 @@ ProductsCategoriesShort=منتجات العلامات / فئات
|
|||||||
MembersCategoriesShort=به أعضاء / فئات
|
MembersCategoriesShort=به أعضاء / فئات
|
||||||
ContactCategoriesShort=اتصالات به / فئات
|
ContactCategoriesShort=اتصالات به / فئات
|
||||||
AccountsCategoriesShort=Accounts tags/categories
|
AccountsCategoriesShort=Accounts tags/categories
|
||||||
|
ProjectsCategoriesShort=Projects tags/categories
|
||||||
ThisCategoryHasNoProduct=هذه الفئة لا تحتوي على أي منتج.
|
ThisCategoryHasNoProduct=هذه الفئة لا تحتوي على أي منتج.
|
||||||
ThisCategoryHasNoSupplier=هذه الفئة لا تحتوي على أي مورد.
|
ThisCategoryHasNoSupplier=هذه الفئة لا تحتوي على أي مورد.
|
||||||
ThisCategoryHasNoCustomer=هذه الفئة لا تحتوي على أي عميل.
|
ThisCategoryHasNoCustomer=هذه الفئة لا تحتوي على أي عميل.
|
||||||
ThisCategoryHasNoMember=هذا التصنيف لا يحتوي على أي عضو.
|
ThisCategoryHasNoMember=هذا التصنيف لا يحتوي على أي عضو.
|
||||||
ThisCategoryHasNoContact=لا تحتوي هذه الفئة أي اتصال.
|
ThisCategoryHasNoContact=لا تحتوي هذه الفئة أي اتصال.
|
||||||
ThisCategoryHasNoAccount=This category does not contain any account.
|
ThisCategoryHasNoAccount=This category does not contain any account.
|
||||||
|
ThisCategoryHasNoProject=This category does not contain any project.
|
||||||
CategId=العلامة / فئة معرف
|
CategId=العلامة / فئة معرف
|
||||||
CatSupList=قائمة المورد به / فئات
|
CatSupList=قائمة المورد به / فئات
|
||||||
CatCusList=قائمة العملاء / احتمال علامات / فئات
|
CatCusList=قائمة العملاء / احتمال علامات / فئات
|
||||||
@ -71,6 +75,7 @@ CatContactList=قائمة الاتصال به / فئات
|
|||||||
CatSupLinks=الروابط بين الموردين والعلامات / فئات
|
CatSupLinks=الروابط بين الموردين والعلامات / فئات
|
||||||
CatCusLinks=الروابط بين العملاء / آفاق والعلامات / فئات
|
CatCusLinks=الروابط بين العملاء / آفاق والعلامات / فئات
|
||||||
CatProdLinks=الروابط بين المنتجات / الخدمات والعلامات / فئات
|
CatProdLinks=الروابط بين المنتجات / الخدمات والعلامات / فئات
|
||||||
|
CatProJectLinks=Links between projects and tags/categories
|
||||||
DeleteFromCat=إزالة من العلامات / فئة
|
DeleteFromCat=إزالة من العلامات / فئة
|
||||||
ExtraFieldsCategories=سمات التكميلية
|
ExtraFieldsCategories=سمات التكميلية
|
||||||
CategoriesSetup=الكلمات / فئات الإعداد
|
CategoriesSetup=الكلمات / فئات الإعداد
|
||||||
|
|||||||
@ -13,6 +13,8 @@ MenuNewPrivateIndividual=فرد جديد
|
|||||||
NewCompany=الشركة الجديدة (آفاق ، والعملاء ، والموردين)
|
NewCompany=الشركة الجديدة (آفاق ، والعملاء ، والموردين)
|
||||||
NewThirdParty=طرف ثالث جديد (آفاق ، والعملاء ، والموردين)
|
NewThirdParty=طرف ثالث جديد (آفاق ، والعملاء ، والموردين)
|
||||||
CreateDolibarrThirdPartySupplier=إنشاء طرف ثالث (المورد)
|
CreateDolibarrThirdPartySupplier=إنشاء طرف ثالث (المورد)
|
||||||
|
CreateThirdPartyOnly=Create thirdpary
|
||||||
|
CreateThirdPartyAndContact=Create a third party + a child contact
|
||||||
ProspectionArea=مجال التنقيب
|
ProspectionArea=مجال التنقيب
|
||||||
IdThirdParty=هوية الطرف الثالث
|
IdThirdParty=هوية الطرف الثالث
|
||||||
IdCompany=رقم تعريف الشركة
|
IdCompany=رقم تعريف الشركة
|
||||||
@ -38,7 +40,7 @@ ThirdPartySuppliers=الموردين
|
|||||||
ThirdPartyType=طرف ثالث من نوع
|
ThirdPartyType=طرف ثالث من نوع
|
||||||
Company/Fundation=الشركة / المؤسسة
|
Company/Fundation=الشركة / المؤسسة
|
||||||
Individual=فرد
|
Individual=فرد
|
||||||
ToCreateContactWithSameName=سيتم تلقائيا إنشاء نفس معلومات الاتصال
|
ToCreateContactWithSameName=Will create automatically a contact/address with same information than third party under the third party. In most cases, even if your third party is a physical people, creating a third party alone is enough.
|
||||||
ParentCompany=الشركة الأم
|
ParentCompany=الشركة الأم
|
||||||
Subsidiaries=الشركات التابعة
|
Subsidiaries=الشركات التابعة
|
||||||
ReportByCustomers=تقرير للعملاء
|
ReportByCustomers=تقرير للعملاء
|
||||||
@ -47,7 +49,7 @@ CivilityCode=قانون الكياسة
|
|||||||
RegisteredOffice=المكتب المسجل
|
RegisteredOffice=المكتب المسجل
|
||||||
Lastname=اللقب
|
Lastname=اللقب
|
||||||
Firstname=Firstname
|
Firstname=Firstname
|
||||||
PostOrFunction=وظيفة / وظيفة
|
PostOrFunction=Job position
|
||||||
UserTitle=العنوان
|
UserTitle=العنوان
|
||||||
Address=عنوان
|
Address=عنوان
|
||||||
State=الولاية / المقاطعة
|
State=الولاية / المقاطعة
|
||||||
@ -64,7 +66,7 @@ Chat=دردشة
|
|||||||
PhonePro=الأستاذ الهاتف
|
PhonePro=الأستاذ الهاتف
|
||||||
PhonePerso=عدد الأفراد. الهاتف
|
PhonePerso=عدد الأفراد. الهاتف
|
||||||
PhoneMobile=الجوال
|
PhoneMobile=الجوال
|
||||||
No_Email=لا ترسل الرسائل الإلكترونية الجماعية
|
No_Email=Refuse mass e-mailings
|
||||||
Fax=الفاكس
|
Fax=الفاكس
|
||||||
Zip=الرمز البريدي
|
Zip=الرمز البريدي
|
||||||
Town=مدينة
|
Town=مدينة
|
||||||
@ -73,7 +75,7 @@ Poste= موقف
|
|||||||
DefaultLang=اللغة افتراضيا
|
DefaultLang=اللغة افتراضيا
|
||||||
VATIsUsed=وتستخدم ضريبة القيمة المضافة
|
VATIsUsed=وتستخدم ضريبة القيمة المضافة
|
||||||
VATIsNotUsed=ضريبة القيمة المضافة لا يستخدم
|
VATIsNotUsed=ضريبة القيمة المضافة لا يستخدم
|
||||||
CopyAddressFromSoc=ملء العنوان مع عنوان مرشحين عن
|
CopyAddressFromSoc=Fill address with third party address
|
||||||
ThirdpartyNotCustomerNotSupplierSoNoRef=Thirdparty neither customer nor supplier, no available refering objects
|
ThirdpartyNotCustomerNotSupplierSoNoRef=Thirdparty neither customer nor supplier, no available refering objects
|
||||||
##### Local Taxes #####
|
##### Local Taxes #####
|
||||||
LocalTax1IsUsed=استخدام الضرائب الثانية
|
LocalTax1IsUsed=استخدام الضرائب الثانية
|
||||||
@ -239,7 +241,6 @@ ProfId6RU=-
|
|||||||
VATIntra=رقم الضريبة على القيمة المضافة
|
VATIntra=رقم الضريبة على القيمة المضافة
|
||||||
VATIntraShort=رقم الضريبة على القيمة المضافة
|
VATIntraShort=رقم الضريبة على القيمة المضافة
|
||||||
VATIntraSyntaxIsValid=تركيب صالحة
|
VATIntraSyntaxIsValid=تركيب صالحة
|
||||||
VATIntraValueIsValid=قيمة صالحة
|
|
||||||
ProspectCustomer=احتمال / العملاء
|
ProspectCustomer=احتمال / العملاء
|
||||||
Prospect=احتمال
|
Prospect=احتمال
|
||||||
CustomerCard=بطاقة الزبون
|
CustomerCard=بطاقة الزبون
|
||||||
@ -261,7 +262,9 @@ AddContactAddress=إنشاء الاتصال / عنوان
|
|||||||
EditContact=تحرير الاتصال / عنوان
|
EditContact=تحرير الاتصال / عنوان
|
||||||
EditContactAddress=تحرير الاتصال / عنوان
|
EditContactAddress=تحرير الاتصال / عنوان
|
||||||
Contact=جهة اتصال
|
Contact=جهة اتصال
|
||||||
|
ContactId=Contact id
|
||||||
ContactsAddresses=اتصالات / عناوين
|
ContactsAddresses=اتصالات / عناوين
|
||||||
|
FromContactName=Name:
|
||||||
NoContactDefinedForThirdParty=أي اتصال محددة لهذا الطرف الثالث
|
NoContactDefinedForThirdParty=أي اتصال محددة لهذا الطرف الثالث
|
||||||
NoContactDefined=لا يوجد اتصال محددة لهذا الطرف الثالث
|
NoContactDefined=لا يوجد اتصال محددة لهذا الطرف الثالث
|
||||||
DefaultContact=الاتصال الافتراضية
|
DefaultContact=الاتصال الافتراضية
|
||||||
@ -284,7 +287,7 @@ CompanyDeleted=شركة "٪ ل" حذفها من قاعدة البيانات.
|
|||||||
ListOfContacts=قائمة الاتصالات
|
ListOfContacts=قائمة الاتصالات
|
||||||
ListOfContactsAddresses=قائمة الأسماء / عناوين
|
ListOfContactsAddresses=قائمة الأسماء / عناوين
|
||||||
ListOfThirdParties=قائمة أطراف ثالثة
|
ListOfThirdParties=قائمة أطراف ثالثة
|
||||||
ShowCompany=مشاهدة مرشحين عن
|
ShowCompany=Show third party
|
||||||
ShowContact=وتظهر الاتصال
|
ShowContact=وتظهر الاتصال
|
||||||
ContactsAllShort=جميع (بدون فلتر)
|
ContactsAllShort=جميع (بدون فلتر)
|
||||||
ContactType=نوع الاتصال
|
ContactType=نوع الاتصال
|
||||||
@ -294,6 +297,7 @@ ContactForProposals=مقترحات اتصال
|
|||||||
ContactForContracts=عقود اتصال
|
ContactForContracts=عقود اتصال
|
||||||
ContactForInvoices=فواتير اتصال
|
ContactForInvoices=فواتير اتصال
|
||||||
NoContactForAnyOrder=هذا الاتصال ليس من أجل أي اتصال
|
NoContactForAnyOrder=هذا الاتصال ليس من أجل أي اتصال
|
||||||
|
NoContactForAnyOrderOrShipments=This contact is not a contact for any order or shipment
|
||||||
NoContactForAnyProposal=هذا الاتصال ليست على اتصال في أي اقتراح التجارية
|
NoContactForAnyProposal=هذا الاتصال ليست على اتصال في أي اقتراح التجارية
|
||||||
NoContactForAnyContract=هذا الاتصال ليس أي عقد للاتصال
|
NoContactForAnyContract=هذا الاتصال ليس أي عقد للاتصال
|
||||||
NoContactForAnyInvoice=هذا الاتصال ليست على اتصال في أي فاتورة
|
NoContactForAnyInvoice=هذا الاتصال ليست على اتصال في أي فاتورة
|
||||||
@ -352,9 +356,9 @@ ExportCardToFormat=تصدير بطاقة شكل
|
|||||||
ContactNotLinkedToCompany=اتصالات ليست مرتبطة بطرف ثالث
|
ContactNotLinkedToCompany=اتصالات ليست مرتبطة بطرف ثالث
|
||||||
DolibarrLogin=ادخل Dolibarr
|
DolibarrLogin=ادخل Dolibarr
|
||||||
NoDolibarrAccess=لا Dolibarr الوصول
|
NoDolibarrAccess=لا Dolibarr الوصول
|
||||||
ExportDataset_company_1=أطراف ثالثة (الشركات / المؤسسات / الناس البدني) وخصائص
|
ExportDataset_company_1=Third parties (Companies / foundations / physical people) and properties
|
||||||
ExportDataset_company_2=الاتصالات والعقارات
|
ExportDataset_company_2=الاتصالات والعقارات
|
||||||
ImportDataset_company_1=أطراف ثالثة (الشركات / المؤسسات / الناس البدني) وخصائص
|
ImportDataset_company_1=Third parties (Companies / foundations / physical people) and properties
|
||||||
ImportDataset_company_2=اتصالات / عناوين (من thirdparties أو لا) وسمات
|
ImportDataset_company_2=اتصالات / عناوين (من thirdparties أو لا) وسمات
|
||||||
ImportDataset_company_3=التفاصيل المصرفية
|
ImportDataset_company_3=التفاصيل المصرفية
|
||||||
ImportDataset_company_4=الأطراف الثالث / مندوبي المبيعات (على مستخدمي مندوبي المبيعات للشركات)
|
ImportDataset_company_4=الأطراف الثالث / مندوبي المبيعات (على مستخدمي مندوبي المبيعات للشركات)
|
||||||
@ -393,3 +397,5 @@ ThirdpartiesMergeSuccess=تم دمج Thirdparties
|
|||||||
SaleRepresentativeLogin=Login of sales representative
|
SaleRepresentativeLogin=Login of sales representative
|
||||||
SaleRepresentativeFirstname=Firstname of sales representative
|
SaleRepresentativeFirstname=Firstname of sales representative
|
||||||
SaleRepresentativeLastname=Lastname of sales representative
|
SaleRepresentativeLastname=Lastname of sales representative
|
||||||
|
ErrorThirdpartiesMerge=There was an error when deleting the thirdparties. Please check the log. Changes have been reverted.
|
||||||
|
NewCustomerSupplierCodeProposed=New customer or supplier code suggested on duplicate code
|
||||||
|
|||||||
@ -49,6 +49,8 @@ SocialContribution=الضريبة الاجتماعية أو المالية
|
|||||||
SocialContributions=الضرائب الاجتماعية أو المالية
|
SocialContributions=الضرائب الاجتماعية أو المالية
|
||||||
SocialContributionsDeductibles=Deductible social or fiscal taxes
|
SocialContributionsDeductibles=Deductible social or fiscal taxes
|
||||||
SocialContributionsNondeductibles=Nondeductible social or fiscal taxes
|
SocialContributionsNondeductibles=Nondeductible social or fiscal taxes
|
||||||
|
LabelContrib=Label contribution
|
||||||
|
TypeContrib=Type contribution
|
||||||
MenuSpecialExpenses=المصروفات الخاصة
|
MenuSpecialExpenses=المصروفات الخاصة
|
||||||
MenuTaxAndDividends=الضرائب وعوائد
|
MenuTaxAndDividends=الضرائب وعوائد
|
||||||
MenuSocialContributions=الضرائب الاجتماعية / المالية
|
MenuSocialContributions=الضرائب الاجتماعية / المالية
|
||||||
|
|||||||
@ -7,7 +7,7 @@ Permission23103 = حذف مهمة مجدولة
|
|||||||
Permission23104 = تنفيذ مهمة مجدولة
|
Permission23104 = تنفيذ مهمة مجدولة
|
||||||
# Admin
|
# Admin
|
||||||
CronSetup= من المقرر إعداد إدارة العمل
|
CronSetup= من المقرر إعداد إدارة العمل
|
||||||
URLToLaunchCronJobs=URL لفحص وإطلاق كرون الوظائف إذا لزم الأمر
|
URLToLaunchCronJobs=URL to check and launch qualified cron jobs
|
||||||
OrToLaunchASpecificJob=أو لفحص وإطلاق وظيفة محددة
|
OrToLaunchASpecificJob=أو لفحص وإطلاق وظيفة محددة
|
||||||
KeyForCronAccess=مفتاح أمان للURL لإطلاق كرون الوظائف
|
KeyForCronAccess=مفتاح أمان للURL لإطلاق كرون الوظائف
|
||||||
FileToLaunchCronJobs=سطر الأوامر لإطلاق كرون الوظائف
|
FileToLaunchCronJobs=سطر الأوامر لإطلاق كرون الوظائف
|
||||||
@ -23,7 +23,7 @@ CronCommand=أمر
|
|||||||
CronList=المهام المجدولة
|
CronList=المهام المجدولة
|
||||||
CronDelete=حذف المهام المجدولة
|
CronDelete=حذف المهام المجدولة
|
||||||
CronConfirmDelete=هل أنت متأكد أنك تريد حذف هذه المهام المجدولة؟
|
CronConfirmDelete=هل أنت متأكد أنك تريد حذف هذه المهام المجدولة؟
|
||||||
CronExecute=إطلاق المهام المجدولة
|
CronExecute=Launch scheduled job
|
||||||
CronConfirmExecute=هل أنت متأكد أنك تريد تنفيذ هذه المهام المجدولة الآن؟
|
CronConfirmExecute=هل أنت متأكد أنك تريد تنفيذ هذه المهام المجدولة الآن؟
|
||||||
CronInfo=وحدة مهمة مجدولة تسمح لتنفيذ المهمة التي تم التخطيط لها
|
CronInfo=وحدة مهمة مجدولة تسمح لتنفيذ المهمة التي تم التخطيط لها
|
||||||
CronTask=وظيفة
|
CronTask=وظيفة
|
||||||
@ -39,7 +39,7 @@ CronMethod=الطريقة
|
|||||||
CronModule=وحدة
|
CronModule=وحدة
|
||||||
CronNoJobs=أي وظيفة سجلت
|
CronNoJobs=أي وظيفة سجلت
|
||||||
CronPriority=الأولوية
|
CronPriority=الأولوية
|
||||||
CronLabel=وصف
|
CronLabel=Label
|
||||||
CronNbRun=ملحوظة. إطلاق
|
CronNbRun=ملحوظة. إطلاق
|
||||||
CronMaxRun=Max nb. launch
|
CronMaxRun=Max nb. launch
|
||||||
CronEach=كل
|
CronEach=كل
|
||||||
@ -76,3 +76,4 @@ UseMenuModuleToolsToAddCronJobs=Go into menu "Home - Admin tools - Scheduled job
|
|||||||
JobDisabled=Job disabled
|
JobDisabled=Job disabled
|
||||||
MakeLocalDatabaseDumpShort=Local database backup
|
MakeLocalDatabaseDumpShort=Local database backup
|
||||||
MakeLocalDatabaseDump=Create a local database dump
|
MakeLocalDatabaseDump=Create a local database dump
|
||||||
|
WarningCronDelayed=Attention, for performance purpose, whatever is next date of execution of active jobs, your jobs may be delayed to a maximum of %s hours before being run.
|
||||||
|
|||||||
@ -129,7 +129,7 @@ ErrorPHPNeedModule=خطأ، يجب PHP الخاص بتثبيت <b>وحدة٪ s
|
|||||||
ErrorOpenIDSetupNotComplete=يمكنك إعداد Dolibarr ملف التكوين للسماح بالمصادقة رض، ولكن لم يتم تعريف URL الخدمة رض إلى المستمر٪ الصورة
|
ErrorOpenIDSetupNotComplete=يمكنك إعداد Dolibarr ملف التكوين للسماح بالمصادقة رض، ولكن لم يتم تعريف URL الخدمة رض إلى المستمر٪ الصورة
|
||||||
ErrorWarehouseMustDiffers=يجب المصدر والهدف يختلف المستودعات
|
ErrorWarehouseMustDiffers=يجب المصدر والهدف يختلف المستودعات
|
||||||
ErrorBadFormat=شكل سيئة!
|
ErrorBadFormat=شكل سيئة!
|
||||||
ErrorMemberNotLinkedToAThirpartyLinkOrCreateFirst=خطأ، لا يرتبط هذا العضو حتى الآن أي مرشحين عن. عضو تصل إلى طرف ثالث القائمة أو إنشاء مرشحين عن الجديد قبل إنشاء الاشتراك مع الفاتورة.
|
ErrorMemberNotLinkedToAThirpartyLinkOrCreateFirst=Error, this member is not yet linked to any third party. Link member to an existing third party or create a new third party before creating subscription with invoice.
|
||||||
ErrorThereIsSomeDeliveries=خطأ، وهناك بعض الولادات ترتبط هذه الشحنة. رفض الحذف.
|
ErrorThereIsSomeDeliveries=خطأ، وهناك بعض الولادات ترتبط هذه الشحنة. رفض الحذف.
|
||||||
ErrorCantDeletePaymentReconciliated=لا يمكنك حذف الدفع التي قد ولدت المعاملات المصرفية التي تم التصالح
|
ErrorCantDeletePaymentReconciliated=لا يمكنك حذف الدفع التي قد ولدت المعاملات المصرفية التي تم التصالح
|
||||||
ErrorCantDeletePaymentSharedWithPayedInvoice=لا يمكنك حذف دفع تتقاسمها فاتورة واحدة على الأقل مع وضع سيولي
|
ErrorCantDeletePaymentSharedWithPayedInvoice=لا يمكنك حذف دفع تتقاسمها فاتورة واحدة على الأقل مع وضع سيولي
|
||||||
@ -174,6 +174,8 @@ ErrorStockIsNotEnoughToAddProductOnOrder=Stock is not enougth for product %s to
|
|||||||
ErrorStockIsNotEnoughToAddProductOnInvoice=Stock is not enougth for product %s to add it into a new invoice.
|
ErrorStockIsNotEnoughToAddProductOnInvoice=Stock is not enougth for product %s to add it into a new invoice.
|
||||||
ErrorStockIsNotEnoughToAddProductOnShipment=Stock is not enougth for product %s to add it into a new shipment.
|
ErrorStockIsNotEnoughToAddProductOnShipment=Stock is not enougth for product %s to add it into a new shipment.
|
||||||
ErrorStockIsNotEnoughToAddProductOnProposal=Stock is not enougth for product %s to add it into a new proposal.
|
ErrorStockIsNotEnoughToAddProductOnProposal=Stock is not enougth for product %s to add it into a new proposal.
|
||||||
|
ErrorFailedToLoadLoginFileForMode=Failed to get the login file for mode '%s'.
|
||||||
|
ErrorModuleNotFound=File of module was not found.
|
||||||
|
|
||||||
# Warnings
|
# Warnings
|
||||||
WarningPasswordSetWithNoAccount=تم تعيين كلمة مرور لهذا العضو. ومع ذلك، تم إنشاء أي حساب المستخدم. لذلك يتم تخزين كلمة المرور هذه ولكن لا يمكن استخدامها للدخول إلى Dolibarr. ويمكن استخدامه من قبل وحدة / واجهة خارجية ولكن إذا كنت لا تحتاج إلى تعريف أي تسجيل دخول أو كلمة المرور لأحد أفراد، يمكنك تعطيل خيار "إدارة تسجيل دخول لكل عضو" من إعداد وحدة الأعضاء. إذا كنت بحاجة إلى إدارة تسجيل الدخول ولكن لا تحتاج إلى أي كلمة المرور، يمكنك الحفاظ على هذا الحقل فارغا لتجنب هذا التحذير. ملاحظة: يمكن أيضا أن تستخدم البريد الإلكتروني لتسجيل الدخول إذا تم ربط عضو إلى المستخدم.
|
WarningPasswordSetWithNoAccount=تم تعيين كلمة مرور لهذا العضو. ومع ذلك، تم إنشاء أي حساب المستخدم. لذلك يتم تخزين كلمة المرور هذه ولكن لا يمكن استخدامها للدخول إلى Dolibarr. ويمكن استخدامه من قبل وحدة / واجهة خارجية ولكن إذا كنت لا تحتاج إلى تعريف أي تسجيل دخول أو كلمة المرور لأحد أفراد، يمكنك تعطيل خيار "إدارة تسجيل دخول لكل عضو" من إعداد وحدة الأعضاء. إذا كنت بحاجة إلى إدارة تسجيل الدخول ولكن لا تحتاج إلى أي كلمة المرور، يمكنك الحفاظ على هذا الحقل فارغا لتجنب هذا التحذير. ملاحظة: يمكن أيضا أن تستخدم البريد الإلكتروني لتسجيل الدخول إذا تم ربط عضو إلى المستخدم.
|
||||||
|
|||||||
@ -11,12 +11,14 @@ PHPSupportSessions=يدعم هذا الـ PHP ميزة الجلسات الزمن
|
|||||||
PHPSupportPOSTGETOk=يدعم هذا الـ PHP وظائف POST و GET.
|
PHPSupportPOSTGETOk=يدعم هذا الـ PHP وظائف POST و GET.
|
||||||
PHPSupportPOSTGETKo=من المحتمل أن نسخة الـ PHP لديك لاتدعم وظائف POST - GET. تحقق من <b>variables_order</b> في ملف php.ini
|
PHPSupportPOSTGETKo=من المحتمل أن نسخة الـ PHP لديك لاتدعم وظائف POST - GET. تحقق من <b>variables_order</b> في ملف php.ini
|
||||||
PHPSupportGD=يدعم اصدار الـ PHP هذا وظائف GD الرسومية.
|
PHPSupportGD=يدعم اصدار الـ PHP هذا وظائف GD الرسومية.
|
||||||
|
PHPSupportCurl=This PHP support Curl.
|
||||||
PHPSupportUTF8=يدعم هذاا الاصدار من PHP وظائف الترميز UTF8.
|
PHPSupportUTF8=يدعم هذاا الاصدار من PHP وظائف الترميز UTF8.
|
||||||
PHPMemoryOK=تم إعداد الجلسة الزمنية للذاكرة في PHP الى <b>%s</b> . من المفترض ان تكون كافية.
|
PHPMemoryOK=تم إعداد الجلسة الزمنية للذاكرة في PHP الى <b>%s</b> . من المفترض ان تكون كافية.
|
||||||
PHPMemoryTooLow=الحد الأقصى الخاص بك PHP دورة الذاكرة ومن المقرر <b>٪ ق</b> بايت. لهذا ينبغي أن يكون منخفضا جدا. تغيير <b>php.ini</b> وضع <b>memory_limit</b> المعلم إلى ما لا يقل عن <b>٪ ق</b> بايت.
|
PHPMemoryTooLow=الحد الأقصى الخاص بك PHP دورة الذاكرة ومن المقرر <b>٪ ق</b> بايت. لهذا ينبغي أن يكون منخفضا جدا. تغيير <b>php.ini</b> وضع <b>memory_limit</b> المعلم إلى ما لا يقل عن <b>٪ ق</b> بايت.
|
||||||
Recheck=اضغط هنا لمزيد من الاختبار ذو معنى
|
Recheck=اضغط هنا لمزيد من الاختبار ذو معنى
|
||||||
ErrorPHPDoesNotSupportSessions=PHP تركيب الخاص بك لا يدعم الدورات. هذه الميزة هو مطلوب لجعل العمل Dolibarr. التحقق من اتصالك PHP الإعداد.
|
ErrorPHPDoesNotSupportSessions=PHP تركيب الخاص بك لا يدعم الدورات. هذه الميزة هو مطلوب لجعل العمل Dolibarr. التحقق من اتصالك PHP الإعداد.
|
||||||
ErrorPHPDoesNotSupportGD=PHP تركيب الخاص بك لا يدعم وظيفة بيانية ش ج. لا الرسم البياني سيكون متاحا.
|
ErrorPHPDoesNotSupportGD=PHP تركيب الخاص بك لا يدعم وظيفة بيانية ش ج. لا الرسم البياني سيكون متاحا.
|
||||||
|
ErrorPHPDoesNotSupportCurl=Your PHP installation does not support Curl.
|
||||||
ErrorPHPDoesNotSupportUTF8=PHP تركيب الخاص بك لا يدعم UTF8 المهام. Dolibarr لا يمكن أن تعمل بشكل صحيح. لحل هذه قبل تثبيت Dolibarr.
|
ErrorPHPDoesNotSupportUTF8=PHP تركيب الخاص بك لا يدعم UTF8 المهام. Dolibarr لا يمكن أن تعمل بشكل صحيح. لحل هذه قبل تثبيت Dolibarr.
|
||||||
ErrorDirDoesNotExists=دليل ٪ ق لا يوجد.
|
ErrorDirDoesNotExists=دليل ٪ ق لا يوجد.
|
||||||
ErrorGoBackAndCorrectParameters=العودة إلى الوراء وتصحيح الخطأ البارامترات.
|
ErrorGoBackAndCorrectParameters=العودة إلى الوراء وتصحيح الخطأ البارامترات.
|
||||||
@ -133,6 +135,10 @@ ActivateModule=تفعيل وحدة %s
|
|||||||
ShowEditTechnicalParameters=انقر هنا لعرض/تحرير المعلمات المتقدمة (وضع الخبراء)
|
ShowEditTechnicalParameters=انقر هنا لعرض/تحرير المعلمات المتقدمة (وضع الخبراء)
|
||||||
WarningUpgrade=تحذير: \n\nهل قمت بأخذ النسخة الاحتياطية لقاعدة البيانات أولا؟ \n\nينصح به بشدة: على سبيل المثال، بسبب بعض الخلل في نظام قاعدة البيانات (على سبيل المثال MySQL النسخة 5.5.40 / 41/42/43)، وبعض البيانات أو الجداول قد تفقد خلال هذه العملية، لذلك الأفضل لك أن يكون هنالك نسخ احتياطي كامل لقاعدة البيانات الخاصة بك قبل البدء الترحيل.\n\n\nانقر فوق موافق لبدء عملية الترحيل...
|
WarningUpgrade=تحذير: \n\nهل قمت بأخذ النسخة الاحتياطية لقاعدة البيانات أولا؟ \n\nينصح به بشدة: على سبيل المثال، بسبب بعض الخلل في نظام قاعدة البيانات (على سبيل المثال MySQL النسخة 5.5.40 / 41/42/43)، وبعض البيانات أو الجداول قد تفقد خلال هذه العملية، لذلك الأفضل لك أن يكون هنالك نسخ احتياطي كامل لقاعدة البيانات الخاصة بك قبل البدء الترحيل.\n\n\nانقر فوق موافق لبدء عملية الترحيل...
|
||||||
ErrorDatabaseVersionForbiddenForMigration=إصدار قاعدة البيانات الخاصة بك هي%s. يوجد بعض الخلل أدى لفقدان بعض البيانات إذا قمت بإجراء تغيير هيكلي على قاعدة البيانات الخاصة بك، مثل كان مطلوبا خلال عملية ترحيل البيانات. لن يسمح لك بترحيل البيانات حتى تقوم بترقية قاعدة البيانات الخاصة بك إلى إصدار أعلى موثوق (قائمة الاصدارات الموثوقة : %s)
|
ErrorDatabaseVersionForbiddenForMigration=إصدار قاعدة البيانات الخاصة بك هي%s. يوجد بعض الخلل أدى لفقدان بعض البيانات إذا قمت بإجراء تغيير هيكلي على قاعدة البيانات الخاصة بك، مثل كان مطلوبا خلال عملية ترحيل البيانات. لن يسمح لك بترحيل البيانات حتى تقوم بترقية قاعدة البيانات الخاصة بك إلى إصدار أعلى موثوق (قائمة الاصدارات الموثوقة : %s)
|
||||||
|
KeepDefaultValuesWamp=You use the Dolibarr setup wizard from DoliWamp, so values proposed here are already optimized. Change them only if you know what you do.
|
||||||
|
KeepDefaultValuesDeb=You use the Dolibarr setup wizard from a Linux package (Ubuntu, Debian, Fedora...), so values proposed here are already optimized. Only the password of the database owner to create must be completed. Change other parameters only if you know what you do.
|
||||||
|
KeepDefaultValuesMamp=You use the Dolibarr setup wizard from DoliMamp, so values proposed here are already optimized. Change them only if you know what you do.
|
||||||
|
KeepDefaultValuesProxmox=You use the Dolibarr setup wizard from a Proxmox virtual appliance, so values proposed here are already optimized. Change them only if you know what you do.
|
||||||
|
|
||||||
#########
|
#########
|
||||||
# upgrade
|
# upgrade
|
||||||
@ -185,6 +191,8 @@ MigrationActioncommElement=تحديث البيانات على الإجراءات
|
|||||||
MigrationPaymentMode=بيانات الهجرة لطريقة الدفع
|
MigrationPaymentMode=بيانات الهجرة لطريقة الدفع
|
||||||
MigrationCategorieAssociation=تحديث الفئات
|
MigrationCategorieAssociation=تحديث الفئات
|
||||||
MigrationEvents=الترحيل من الأحداث لإضافة مالك الحدث في جدول الاحالة
|
MigrationEvents=الترحيل من الأحداث لإضافة مالك الحدث في جدول الاحالة
|
||||||
|
MigrationRemiseEntity=Update entity field value of llx_societe_remise
|
||||||
|
MigrationRemiseExceptEntity=Update entity field value of llx_societe_remise_except
|
||||||
MigrationReloadModule=إعادة تحديث الوحدات %s
|
MigrationReloadModule=إعادة تحديث الوحدات %s
|
||||||
ShowNotAvailableOptions=عرض خيارات غير متوفرة
|
ShowNotAvailableOptions=عرض خيارات غير متوفرة
|
||||||
HideNotAvailableOptions=إخفاء خيارات غير متوفرة
|
HideNotAvailableOptions=إخفاء خيارات غير متوفرة
|
||||||
|
|||||||
@ -45,6 +45,7 @@ TypeContact_fichinter_external_CUSTOMER=متابعة العملاء الاتصا
|
|||||||
# Modele numérotation
|
# Modele numérotation
|
||||||
PrintProductsOnFichinter=Print also lines of type "product" (not only services) on intervention card
|
PrintProductsOnFichinter=Print also lines of type "product" (not only services) on intervention card
|
||||||
PrintProductsOnFichinterDetails=التدخلات المتولدة من أوامر
|
PrintProductsOnFichinterDetails=التدخلات المتولدة من أوامر
|
||||||
|
UseServicesDurationOnFichinter=Use services duration for interventions generated from orders
|
||||||
InterventionStatistics=Statistics of interventions
|
InterventionStatistics=Statistics of interventions
|
||||||
NbOfinterventions=Nb of intervention cards
|
NbOfinterventions=Nb of intervention cards
|
||||||
NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
|
NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
|
||||||
|
|||||||
@ -15,6 +15,8 @@ LDAPFieldFirstSubscriptionDate=أول موعد الاكتتاب
|
|||||||
LDAPFieldFirstSubscriptionAmount=قبضة مبلغ الاشتراك
|
LDAPFieldFirstSubscriptionAmount=قبضة مبلغ الاشتراك
|
||||||
LDAPFieldLastSubscriptionDate=آخر موعد الاكتتاب
|
LDAPFieldLastSubscriptionDate=آخر موعد الاكتتاب
|
||||||
LDAPFieldLastSubscriptionAmount=الاكتتاب المبلغ الأخير
|
LDAPFieldLastSubscriptionAmount=الاكتتاب المبلغ الأخير
|
||||||
|
LDAPFieldSkype=Skype id
|
||||||
|
LDAPFieldSkypeExample=Example : skypeName
|
||||||
UserSynchronized=وتزامن المستخدم
|
UserSynchronized=وتزامن المستخدم
|
||||||
GroupSynchronized=مجموعة متزامنة
|
GroupSynchronized=مجموعة متزامنة
|
||||||
MemberSynchronized=عضو متزامنة
|
MemberSynchronized=عضو متزامنة
|
||||||
|
|||||||
@ -67,8 +67,9 @@ MailingStatusRead=قرأ
|
|||||||
YourMailUnsubcribeOK=البريد <b>الإلكتروني٪ s غير</b> unsubcribe بشكل صحيح من القائمة البريدية
|
YourMailUnsubcribeOK=البريد <b>الإلكتروني٪ s غير</b> unsubcribe بشكل صحيح من القائمة البريدية
|
||||||
ActivateCheckReadKey=المفتاح المستخدم في تشفير URL المستخدمة ل "اقرأ استلام" و "Unsubcribe" ميزة
|
ActivateCheckReadKey=المفتاح المستخدم في تشفير URL المستخدمة ل "اقرأ استلام" و "Unsubcribe" ميزة
|
||||||
EMailSentToNRecipients=البريد الإلكتروني المرسلة إلى المستلمين٪ الصورة.
|
EMailSentToNRecipients=البريد الإلكتروني المرسلة إلى المستلمين٪ الصورة.
|
||||||
|
EMailSentForNElements=EMail sent for %s elements.
|
||||||
XTargetsAdded=وأضاف <b>المتلقين٪ الصورة</b> إلى قائمة المستهدفين
|
XTargetsAdded=وأضاف <b>المتلقين٪ الصورة</b> إلى قائمة المستهدفين
|
||||||
OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
|
OnlyPDFattachmentSupported=If the PDF document was already generated for the object to send, it will be attached to email. If not, no email will be sent (also, note that only pdf documents are supported as attachment in mass sending in this version).
|
||||||
AllRecipientSelected=جميع thirdparties اختيار وإذا تم تعيين بالبريد.
|
AllRecipientSelected=جميع thirdparties اختيار وإذا تم تعيين بالبريد.
|
||||||
ResultOfMailSending=نتيجة لإرسال البريد الإلكتروني الشامل
|
ResultOfMailSending=نتيجة لإرسال البريد الإلكتروني الشامل
|
||||||
NbSelected=ملحوظة مختارة
|
NbSelected=ملحوظة مختارة
|
||||||
@ -127,7 +128,7 @@ AdvTgtMaxVal=Maximum value
|
|||||||
AdvTgtSearchDtHelp=Use interval to select date value
|
AdvTgtSearchDtHelp=Use interval to select date value
|
||||||
AdvTgtStartDt=Start dt.
|
AdvTgtStartDt=Start dt.
|
||||||
AdvTgtEndDt=End dt.
|
AdvTgtEndDt=End dt.
|
||||||
AdvTgtTypeOfIncudeHelp=Target Email of thirdparty and email of contact of the thridparty, or just thridparty email or just contact email
|
AdvTgtTypeOfIncudeHelp=Target Email of third party and email of contact of the third party, or just third party email or just contact email
|
||||||
AdvTgtTypeOfIncude=Type of targeted email
|
AdvTgtTypeOfIncude=Type of targeted email
|
||||||
AdvTgtContactHelp=Use only if you target contact into "Type of targeted email"
|
AdvTgtContactHelp=Use only if you target contact into "Type of targeted email"
|
||||||
AddAll=Add all
|
AddAll=Add all
|
||||||
|
|||||||
@ -67,6 +67,7 @@ SelectDate=تحديد تاريخ
|
|||||||
SeeAlso=See also %s
|
SeeAlso=See also %s
|
||||||
SeeHere=انظر هنا
|
SeeHere=انظر هنا
|
||||||
BackgroundColorByDefault=لون الخلفية الافتراضية
|
BackgroundColorByDefault=لون الخلفية الافتراضية
|
||||||
|
FileRenamed=The file was successfully renamed
|
||||||
FileUploaded=تم تحميل الملف بنجاح
|
FileUploaded=تم تحميل الملف بنجاح
|
||||||
FileWasNotUploaded=يتم اختيار ملف لمرفق ولكن لم تحميلها بعد. انقر على "إرفاق ملف" لهذا الغرض.
|
FileWasNotUploaded=يتم اختيار ملف لمرفق ولكن لم تحميلها بعد. انقر على "إرفاق ملف" لهذا الغرض.
|
||||||
NbOfEntries=ملحوظة من إدخالات
|
NbOfEntries=ملحوظة من إدخالات
|
||||||
@ -245,6 +246,10 @@ DateBuild=تقرير تاريخ الإنشاء
|
|||||||
DatePayment=تاريخ الدفع
|
DatePayment=تاريخ الدفع
|
||||||
DateApprove=تاريخ الموافقة
|
DateApprove=تاريخ الموافقة
|
||||||
DateApprove2=تاريخ الموافقة (موافقة الثانية)
|
DateApprove2=تاريخ الموافقة (موافقة الثانية)
|
||||||
|
UserCreation=Creation user
|
||||||
|
UserModification=Modification user
|
||||||
|
UserCreationShort=Creat. user
|
||||||
|
UserModificationShort=Modif. user
|
||||||
DurationYear=سنة
|
DurationYear=سنة
|
||||||
DurationMonth=شهر
|
DurationMonth=شهر
|
||||||
DurationWeek=أسبوع
|
DurationWeek=أسبوع
|
||||||
@ -256,6 +261,7 @@ DurationDays=أيام
|
|||||||
Year=سنة
|
Year=سنة
|
||||||
Month=شهر
|
Month=شهر
|
||||||
Week=أسبوع
|
Week=أسبوع
|
||||||
|
WeekShort=Week
|
||||||
Day=يوم
|
Day=يوم
|
||||||
Hour=ساعة
|
Hour=ساعة
|
||||||
Minute=دقيقة
|
Minute=دقيقة
|
||||||
@ -278,6 +284,7 @@ MonthOfDay=شهر من اليوم
|
|||||||
HourShort=H
|
HourShort=H
|
||||||
MinuteShort=مليون
|
MinuteShort=مليون
|
||||||
Rate=معدل
|
Rate=معدل
|
||||||
|
CurrencyRate=Currency conversion rate
|
||||||
UseLocalTax=يشمل الضرائب
|
UseLocalTax=يشمل الضرائب
|
||||||
Bytes=بايت
|
Bytes=بايت
|
||||||
KiloBytes=كيلو بايت
|
KiloBytes=كيلو بايت
|
||||||
@ -565,8 +572,11 @@ BackToList=العودة إلى قائمة
|
|||||||
GoBack=العودة
|
GoBack=العودة
|
||||||
CanBeModifiedIfOk=يمكن تعديلها إذا كان صحيحا
|
CanBeModifiedIfOk=يمكن تعديلها إذا كان صحيحا
|
||||||
CanBeModifiedIfKo=يمكن تعديلها إذا لم يكن صحيحا
|
CanBeModifiedIfKo=يمكن تعديلها إذا لم يكن صحيحا
|
||||||
|
ValueIsValid=Value is valid
|
||||||
|
ValueIsNotValid=Value is not valid
|
||||||
RecordModifiedSuccessfully=سجل تعديل بنجاح
|
RecordModifiedSuccessfully=سجل تعديل بنجاح
|
||||||
RecordsModified=%s records modified
|
RecordsModified=%s records modified
|
||||||
|
RecordsDeleted=%s records deleted
|
||||||
AutomaticCode=مدونة الآلي
|
AutomaticCode=مدونة الآلي
|
||||||
FeatureDisabled=سمة المعوقين
|
FeatureDisabled=سمة المعوقين
|
||||||
MoveBox=Move widget
|
MoveBox=Move widget
|
||||||
@ -575,6 +585,7 @@ NotEnoughPermissions=ليس لديك إذن لهذا العمل
|
|||||||
SessionName=اسم الدورة
|
SessionName=اسم الدورة
|
||||||
Method=الطريقة
|
Method=الطريقة
|
||||||
Receive=استقبال
|
Receive=استقبال
|
||||||
|
CompleteOrNoMoreReceptionExpected=Complete or nothing more expected
|
||||||
PartialWoman=جزئي
|
PartialWoman=جزئي
|
||||||
TotalWoman=المجموع
|
TotalWoman=المجموع
|
||||||
NeverReceived=لم يتلق
|
NeverReceived=لم يتلق
|
||||||
@ -598,6 +609,7 @@ DisabledModules=والمعوقين وحدات
|
|||||||
For=لأجل
|
For=لأجل
|
||||||
ForCustomer=الزبون
|
ForCustomer=الزبون
|
||||||
Signature=التوقيع
|
Signature=التوقيع
|
||||||
|
DateOfSignature=Date of signature
|
||||||
HidePassword=وتبين للقيادة مع كلمة السر الخفي
|
HidePassword=وتبين للقيادة مع كلمة السر الخفي
|
||||||
UnHidePassword=وتظهر واضحة للقيادة حقيقية كلمة السر
|
UnHidePassword=وتظهر واضحة للقيادة حقيقية كلمة السر
|
||||||
Root=جذور
|
Root=جذور
|
||||||
@ -641,6 +653,15 @@ NewAttribute=جديد السمة
|
|||||||
AttributeCode=السمة رمز
|
AttributeCode=السمة رمز
|
||||||
URLPhoto=للتسجيل من الصورة / الشعار
|
URLPhoto=للتسجيل من الصورة / الشعار
|
||||||
SetLinkToAnotherThirdParty=تصل إلى طرف ثالث آخر
|
SetLinkToAnotherThirdParty=تصل إلى طرف ثالث آخر
|
||||||
|
LinkTo=Link to
|
||||||
|
LinkToProposal=Link to proposal
|
||||||
|
LinkToOrder=Link to order
|
||||||
|
LinkToInvoice=Link to invoice
|
||||||
|
LinkToSupplierOrder=Link to supplier order
|
||||||
|
LinkToSupplierProposal=Link to supplier proposal
|
||||||
|
LinkToSupplierInvoice=Link to supplier invoice
|
||||||
|
LinkToContract=Link to contract
|
||||||
|
LinkToIntervention=Link to intervention
|
||||||
CreateDraft=إنشاء مشروع
|
CreateDraft=إنشاء مشروع
|
||||||
SetToDraft=العودة إلى مشروع
|
SetToDraft=العودة إلى مشروع
|
||||||
ClickToEdit=انقر للتحرير
|
ClickToEdit=انقر للتحرير
|
||||||
@ -701,6 +722,9 @@ RelatedObjects=Related Objects
|
|||||||
ClassifyBilled=Classify billed
|
ClassifyBilled=Classify billed
|
||||||
Progress=Progress
|
Progress=Progress
|
||||||
ClickHere=Click here
|
ClickHere=Click here
|
||||||
|
FrontOffice=Front office
|
||||||
|
BackOffice=Back office
|
||||||
|
View=View
|
||||||
# Week day
|
# Week day
|
||||||
Monday=يوم الاثنين
|
Monday=يوم الاثنين
|
||||||
Tuesday=الثلاثاء
|
Tuesday=الثلاثاء
|
||||||
|
|||||||
@ -41,3 +41,4 @@ rateMustBeNumeric=سعر يجب أن تكون قيمة رقمية
|
|||||||
markRateShouldBeLesserThan100=وينبغي أن يكون معدل علامة أقل من 100
|
markRateShouldBeLesserThan100=وينبغي أن يكون معدل علامة أقل من 100
|
||||||
ShowMarginInfos=عرض بقية المقال الهامش
|
ShowMarginInfos=عرض بقية المقال الهامش
|
||||||
CheckMargins=Margins detail
|
CheckMargins=Margins detail
|
||||||
|
MarginPerSaleRepresentativeWarning=The report of margin per user use the link between thirdparties and sale representatives to calculate the margin of each user. Because some thirdparties may not be linked to any sale representative and some thirdparties may be linked to several users, some margins may not appears in these report or may appears in several different lines.
|
||||||
|
|||||||
@ -1,5 +1,7 @@
|
|||||||
# Dolibarr language file - Source file is en_US - oauth
|
# Dolibarr language file - Source file is en_US - oauth
|
||||||
ConfigOAuth=تكوين أوث
|
ConfigOAuth=تكوين أوث
|
||||||
|
OAuthServices=OAuth services
|
||||||
|
ManualTokenGeneration=Manual token generation
|
||||||
NoAccessToken=لا رمز وصول حفظها في قاعدة البيانات المحلية
|
NoAccessToken=لا رمز وصول حفظها في قاعدة البيانات المحلية
|
||||||
HasAccessToken=تم إنشاء رمز مميز وحفظها في قاعدة البيانات المحلية
|
HasAccessToken=تم إنشاء رمز مميز وحفظها في قاعدة البيانات المحلية
|
||||||
NewTokenStored=الجواب تلقى رمزية حفظ
|
NewTokenStored=الجواب تلقى رمزية حفظ
|
||||||
@ -9,7 +11,16 @@ RequestAccess=انقر هنا لطلب / تجديد الوصول والحصول
|
|||||||
DeleteAccess=انقر هنا لحذف رمز
|
DeleteAccess=انقر هنا لحذف رمز
|
||||||
UseTheFollowingUrlAsRedirectURI=استخدام URL التالية باعتبارها إعادة توجيه URI عند إنشاء الاعتماد الخاص على مزود أوث الخاص بك:
|
UseTheFollowingUrlAsRedirectURI=استخدام URL التالية باعتبارها إعادة توجيه URI عند إنشاء الاعتماد الخاص على مزود أوث الخاص بك:
|
||||||
ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
|
ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
|
||||||
OAUTH_GOOGLE_NAME=جوجل API
|
TOKEN_ACCESS=
|
||||||
OAUTH_GOOGLE_ID=جوجل API معرف
|
TOKEN_REFRESH=Token Refresh Present
|
||||||
OAUTH_GOOGLE_SECRET=جوجل API السرية
|
TOKEN_EXPIRED=Token expired
|
||||||
OAUTH_GOOGLE_DESC=Go on <a href="https://console.developers.google.com/" target="_blank">this page</a> then Credentials to create Oauth credentials
|
TOKEN_EXPIRE_AT=Token expire at
|
||||||
|
TOKEN_DELETE=Delete saved token
|
||||||
|
OAUTH_GOOGLE_NAME=Oauth Google service
|
||||||
|
OAUTH_GOOGLE_ID=Oauth Google Id
|
||||||
|
OAUTH_GOOGLE_SECRET=Oauth Google Secret
|
||||||
|
OAUTH_GOOGLE_DESC=Go on <a class="notasortlink" href="https://console.developers.google.com/" target="_blank">this page</a> then "Credentials" to create Oauth credentials
|
||||||
|
OAUTH_GITHUB_NAME=Oauth GitHub service
|
||||||
|
OAUTH_GITHUB_ID=Oauth GitHub Id
|
||||||
|
OAUTH_GITHUB_SECRET=Oauth GitHub Secret
|
||||||
|
OAUTH_GITHUB_DESC=Go on <a class="notasortlink" href="https://github.com/settings/developers" target="_blank">this page</a> then "Register a new application" to create Oauth credentials
|
||||||
|
|||||||
@ -157,3 +157,4 @@ OrderCreated=وقد تم إنشاء طلباتكم
|
|||||||
OrderFail=حدث خطأ أثناء إنشاء طلباتكم
|
OrderFail=حدث خطأ أثناء إنشاء طلباتكم
|
||||||
CreateOrders=إنشاء أوامر
|
CreateOrders=إنشاء أوامر
|
||||||
ToBillSeveralOrderSelectCustomer=لإنشاء فاتورة لعدة أوامر، انقر أولا على العملاء، ثم اختر "٪ الصورة".
|
ToBillSeveralOrderSelectCustomer=لإنشاء فاتورة لعدة أوامر، انقر أولا على العملاء، ثم اختر "٪ الصورة".
|
||||||
|
CloseReceivedSupplierOrdersAutomatically=Close order to "%s" automatically if all products are received.
|
||||||
|
|||||||
@ -18,10 +18,6 @@ UserConf=الإعداد لكل مستخدم
|
|||||||
PRINTGCP_INFO=جوجل أوث الإعداد API
|
PRINTGCP_INFO=جوجل أوث الإعداد API
|
||||||
PRINTGCP_AUTHLINK=المصادقة
|
PRINTGCP_AUTHLINK=المصادقة
|
||||||
PRINTGCP_TOKEN_ACCESS=جوجل الغيمة طباعة أوث رمز
|
PRINTGCP_TOKEN_ACCESS=جوجل الغيمة طباعة أوث رمز
|
||||||
PRINTGCP_TOKEN_REFRESH=رمزي تحميل الحاضر
|
|
||||||
PRINTGCP_TOKEN_EXPIRED=رمز منتهي الصلاحية
|
|
||||||
PRINTGCP_TOKEN_EXPIRE_AT=رمز تنتهي في
|
|
||||||
PRINTGCP_DELETE_TOKEN=حذف رمز المحفوظة
|
|
||||||
PrintGCPDesc=برنامج التشغيل هذا يسمح لإرسال المستندات مباشرة إلى طابعة مع جوجل الغيمة طباعة.
|
PrintGCPDesc=برنامج التشغيل هذا يسمح لإرسال المستندات مباشرة إلى طابعة مع جوجل الغيمة طباعة.
|
||||||
GCP_Name=اسم
|
GCP_Name=اسم
|
||||||
GCP_displayName=اسم العرض
|
GCP_displayName=اسم العرض
|
||||||
|
|||||||
@ -8,8 +8,8 @@ Batch=الكثير / المسلسل
|
|||||||
atleast1batchfield=أكل حسب التاريخ أو بيع حسب التاريخ أو لوط / الرقم التسلسلي
|
atleast1batchfield=أكل حسب التاريخ أو بيع حسب التاريخ أو لوط / الرقم التسلسلي
|
||||||
batch_number=الكثير / الرقم التسلسلي
|
batch_number=الكثير / الرقم التسلسلي
|
||||||
BatchNumberShort=الكثير / المسلسل
|
BatchNumberShort=الكثير / المسلسل
|
||||||
l_eatby=أكل حسب التاريخ
|
EatByDate=Eat-by date
|
||||||
l_sellby=بيع من قبل التاريخ
|
SellByDate=Sell-by date
|
||||||
DetailBatchNumber=الكثير / تفاصيل المسلسل
|
DetailBatchNumber=الكثير / تفاصيل المسلسل
|
||||||
DetailBatchFormat=الكثير / المسلسل:٪ ق - تناول بواسطة:٪ ق - للبيع عن طريق:٪ ق (الكمية:٪ د)
|
DetailBatchFormat=الكثير / المسلسل:٪ ق - تناول بواسطة:٪ ق - للبيع عن طريق:٪ ق (الكمية:٪ د)
|
||||||
printBatch=الكثير / التسلسلي:٪ الصورة
|
printBatch=الكثير / التسلسلي:٪ الصورة
|
||||||
@ -19,3 +19,6 @@ printQty=الكمية:٪ د
|
|||||||
AddDispatchBatchLine=إضافة سطر لالصلاحية إيفاد
|
AddDispatchBatchLine=إضافة سطر لالصلاحية إيفاد
|
||||||
WhenProductBatchModuleOnOptionAreForced=عندما وحدة لوط / المسلسل على، وزيادة / نقصان تضطر وضع الأسهم إلى الخيار الاخير ولا يمكن تحريرها. خيارات أخرى يمكن تعريفها على النحو الذي تريد.
|
WhenProductBatchModuleOnOptionAreForced=عندما وحدة لوط / المسلسل على، وزيادة / نقصان تضطر وضع الأسهم إلى الخيار الاخير ولا يمكن تحريرها. خيارات أخرى يمكن تعريفها على النحو الذي تريد.
|
||||||
ProductDoesNotUseBatchSerial=هذا المنتج لا يستخدم الكثير / الرقم التسلسلي
|
ProductDoesNotUseBatchSerial=هذا المنتج لا يستخدم الكثير / الرقم التسلسلي
|
||||||
|
ProductLotSetup=Setup of module lot/serial
|
||||||
|
ShowCurrentStockOfLot=Show current stock for couple product/lot
|
||||||
|
ShowLogOfMovementIfLot=Show log of movements for couple product/lot
|
||||||
|
|||||||
@ -18,8 +18,8 @@ ProductVatMassChange=تغيير VAT الشامل
|
|||||||
ProductVatMassChangeDesc=هذه الصفحة يمكن استخدامها لتعديل نسبة الضريبة على القيمة المضافة المحددة على المنتجات أو الخدمات من قيمة إلى أخرى. تحذير، ويتم هذا التغيير على كل قاعدة البيانات.
|
ProductVatMassChangeDesc=هذه الصفحة يمكن استخدامها لتعديل نسبة الضريبة على القيمة المضافة المحددة على المنتجات أو الخدمات من قيمة إلى أخرى. تحذير، ويتم هذا التغيير على كل قاعدة البيانات.
|
||||||
MassBarcodeInit=الحرف الأول الباركود الشامل
|
MassBarcodeInit=الحرف الأول الباركود الشامل
|
||||||
MassBarcodeInitDesc=هذه الصفحة يمكن استخدامها لتهيئة الباركود على الكائنات التي لا يكون الباركود تعريف. تحقق قبل أن الإعداد وحدة الباركود كاملة.
|
MassBarcodeInitDesc=هذه الصفحة يمكن استخدامها لتهيئة الباركود على الكائنات التي لا يكون الباركود تعريف. تحقق قبل أن الإعداد وحدة الباركود كاملة.
|
||||||
ProductAccountancyBuyCode=المحاسبة الرمز (شراء)
|
ProductAccountancyBuyCode=Accountancy code (purchase)
|
||||||
ProductAccountancySellCode=المحاسبة الرمز (بيع)
|
ProductAccountancySellCode=Accountancy code (sale)
|
||||||
ProductOrService=المنتج أو الخدمة
|
ProductOrService=المنتج أو الخدمة
|
||||||
ProductsAndServices=المنتجات والخدمات
|
ProductsAndServices=المنتجات والخدمات
|
||||||
ProductsOrServices=منتجات أو خدمات
|
ProductsOrServices=منتجات أو خدمات
|
||||||
@ -59,6 +59,8 @@ SellingPriceHT=سعر البيع (صافي الضرائب)
|
|||||||
SellingPriceTTC=سعر البيع (شركة الضريبية)
|
SellingPriceTTC=سعر البيع (شركة الضريبية)
|
||||||
CostPriceDescription=هذا السعر (صافية من الضرائب) يمكن استخدامها لتخزين متوسط كمية هذا تكلفة المنتج لشركتك. قد يكون بأي ثمن على حساب نفسك، على سبيل المثال من متوسط سعر الشراء بالإضافة إلى متوسط إنتاج وتوزيع التكاليف.
|
CostPriceDescription=هذا السعر (صافية من الضرائب) يمكن استخدامها لتخزين متوسط كمية هذا تكلفة المنتج لشركتك. قد يكون بأي ثمن على حساب نفسك، على سبيل المثال من متوسط سعر الشراء بالإضافة إلى متوسط إنتاج وتوزيع التكاليف.
|
||||||
CostPriceUsage=في النسخة المقبلة، ويمكن استخدام هذه القيمة لحساب الهامش.
|
CostPriceUsage=في النسخة المقبلة، ويمكن استخدام هذه القيمة لحساب الهامش.
|
||||||
|
SoldAmount=Sold amount
|
||||||
|
PurchasedAmount=Purchased amount
|
||||||
NewPrice=السعر الجديد
|
NewPrice=السعر الجديد
|
||||||
MinPrice=دقيقة. سعر البيع
|
MinPrice=دقيقة. سعر البيع
|
||||||
CantBeLessThanMinPrice=سعر البيع لا يمكن أن يكون أقل من الحد الأدنى المسموح لهذا المنتج (٪ ق بدون الضرائب)
|
CantBeLessThanMinPrice=سعر البيع لا يمكن أن يكون أقل من الحد الأدنى المسموح لهذا المنتج (٪ ق بدون الضرائب)
|
||||||
@ -197,11 +199,11 @@ PrintsheetForOneBarCode=طباعة عدة ملصقات لالباركود واح
|
|||||||
BuildPageToPrint=توليد الصفحة لطباعة
|
BuildPageToPrint=توليد الصفحة لطباعة
|
||||||
FillBarCodeTypeAndValueManually=ملء نوع الباركود والقيمة يدويا.
|
FillBarCodeTypeAndValueManually=ملء نوع الباركود والقيمة يدويا.
|
||||||
FillBarCodeTypeAndValueFromProduct=ملء نوع الباركود وقيمة من الباركود للمنتج.
|
FillBarCodeTypeAndValueFromProduct=ملء نوع الباركود وقيمة من الباركود للمنتج.
|
||||||
FillBarCodeTypeAndValueFromThirdParty=ملء نوع الباركود وقيمة من الباركود لمرشحين عن.
|
FillBarCodeTypeAndValueFromThirdParty=Fill barcode type and value from barcode of a third party.
|
||||||
DefinitionOfBarCodeForProductNotComplete=تعريف نوع أو قيمة الرمز الشريطي يست كاملة للمنتج٪ الصورة.
|
DefinitionOfBarCodeForProductNotComplete=تعريف نوع أو قيمة الرمز الشريطي يست كاملة للمنتج٪ الصورة.
|
||||||
DefinitionOfBarCodeForThirdpartyNotComplete=تعريف نوع أو قيمة الرمز الشريطي غير كامل للمرشحين عن٪ الصورة.
|
DefinitionOfBarCodeForThirdpartyNotComplete=Definition of type or value of bar code non complete for third party %s.
|
||||||
BarCodeDataForProduct=معلومات الباركود من الناتج٪ الصورة:
|
BarCodeDataForProduct=معلومات الباركود من الناتج٪ الصورة:
|
||||||
BarCodeDataForThirdparty=معلومات الباركود من مرشحين عن٪ الصورة:
|
BarCodeDataForThirdparty=Barcode information of third party %s :
|
||||||
ResetBarcodeForAllRecords=تحديد قيمة الباركود لكافة السجلات (هذه القيمة الباركود سيتم إعادة تعيين أيضا يعرف بالفعل مع القيم الجديدة)
|
ResetBarcodeForAllRecords=تحديد قيمة الباركود لكافة السجلات (هذه القيمة الباركود سيتم إعادة تعيين أيضا يعرف بالفعل مع القيم الجديدة)
|
||||||
PriceByCustomer=Different prices for each customer
|
PriceByCustomer=Different prices for each customer
|
||||||
PriceCatalogue=A single sell price per product/service
|
PriceCatalogue=A single sell price per product/service
|
||||||
|
|||||||
@ -70,11 +70,11 @@ ListOfTasks=List of tasks
|
|||||||
GoToListOfTimeConsumed=Go to list of time consumed
|
GoToListOfTimeConsumed=Go to list of time consumed
|
||||||
GoToListOfTasks=Go to list of tasks
|
GoToListOfTasks=Go to list of tasks
|
||||||
ListProposalsAssociatedProject=قائمة المقترحات التجارية المرتبطة بالمشروع.
|
ListProposalsAssociatedProject=قائمة المقترحات التجارية المرتبطة بالمشروع.
|
||||||
ListOrdersAssociatedProject=قائمة الزبائن المرتبطة بالمشروع.
|
ListOrdersAssociatedProject=List of customer orders associated with the project
|
||||||
ListInvoicesAssociatedProject=قائمة العملاء والفواتير المرتبطة بالمشروع
|
ListInvoicesAssociatedProject=List of customer invoices associated with the project
|
||||||
ListPredefinedInvoicesAssociatedProject=List of customer's template invoices associated with project
|
ListPredefinedInvoicesAssociatedProject=List of customer template invoices associated with project
|
||||||
ListSupplierOrdersAssociatedProject=قائمة الموردين الأوامر المرتبطة بالمشروع
|
ListSupplierOrdersAssociatedProject=List of supplier orders associated with the project
|
||||||
ListSupplierInvoicesAssociatedProject=قائمة الموردين المرتبطة بالمشروع.
|
ListSupplierInvoicesAssociatedProject=List of supplier invoices associated with the project
|
||||||
ListContractAssociatedProject=قائمة العقود المرتبطة بالمشروع.
|
ListContractAssociatedProject=قائمة العقود المرتبطة بالمشروع.
|
||||||
ListFichinterAssociatedProject=قائمة التدخلات المرتبطة بالمشروع
|
ListFichinterAssociatedProject=قائمة التدخلات المرتبطة بالمشروع
|
||||||
ListExpenseReportsAssociatedProject=قائمة تقارير المصاريف المرتبطة بالمشروع
|
ListExpenseReportsAssociatedProject=قائمة تقارير المصاريف المرتبطة بالمشروع
|
||||||
@ -123,6 +123,7 @@ ProjectReportDate=تغيير موعد المهمة وفقا المشروع تا
|
|||||||
ErrorShiftTaskDate=من المستحيل تحويل التاريخ المهمة وفقا لتاريخ بدء المشروع الجديد
|
ErrorShiftTaskDate=من المستحيل تحويل التاريخ المهمة وفقا لتاريخ بدء المشروع الجديد
|
||||||
ProjectsAndTasksLines=المشاريع والمهام
|
ProjectsAndTasksLines=المشاريع والمهام
|
||||||
ProjectCreatedInDolibarr=مشروع٪ الصورة التي تم إنشاؤها
|
ProjectCreatedInDolibarr=مشروع٪ الصورة التي تم إنشاؤها
|
||||||
|
ProjectModifiedInDolibarr=Project %s modified
|
||||||
TaskCreatedInDolibarr=مهمة٪ الصورة التي تم إنشاؤها
|
TaskCreatedInDolibarr=مهمة٪ الصورة التي تم إنشاؤها
|
||||||
TaskModifiedInDolibarr=مهمة٪ الصورة المعدلة
|
TaskModifiedInDolibarr=مهمة٪ الصورة المعدلة
|
||||||
TaskDeletedInDolibarr=مهمة٪ الصورة حذف
|
TaskDeletedInDolibarr=مهمة٪ الصورة حذف
|
||||||
@ -153,7 +154,7 @@ PlannedWorkload=عبء العمل المخطط لها
|
|||||||
PlannedWorkloadShort=عبء العمل
|
PlannedWorkloadShort=عبء العمل
|
||||||
ProjectReferers=Related items
|
ProjectReferers=Related items
|
||||||
ProjectMustBeValidatedFirst=يجب التحقق من صحة المشروع أولا
|
ProjectMustBeValidatedFirst=يجب التحقق من صحة المشروع أولا
|
||||||
FirstAddRessourceToAllocateTime=ربط الموارد إلى تخصيص وقت
|
FirstAddRessourceToAllocateTime=Assign a user resource to task to allocate time
|
||||||
InputPerDay=إدخال يوميا
|
InputPerDay=إدخال يوميا
|
||||||
InputPerWeek=مساهمة في الأسبوع
|
InputPerWeek=مساهمة في الأسبوع
|
||||||
InputPerAction=مساهمة في عمل
|
InputPerAction=مساهمة في عمل
|
||||||
@ -174,7 +175,7 @@ ProjectOpenedProjectByOppStatus=Open project/lead by opportunity status
|
|||||||
ProjectsStatistics=إحصاءات عن المشاريع / يؤدي
|
ProjectsStatistics=إحصاءات عن المشاريع / يؤدي
|
||||||
TaskAssignedToEnterTime=المهمة الموكلة. يجب دخول الوقت على هذه المهمة يكون ممكنا.
|
TaskAssignedToEnterTime=المهمة الموكلة. يجب دخول الوقت على هذه المهمة يكون ممكنا.
|
||||||
IdTaskTime=الوقت مهمة معرف
|
IdTaskTime=الوقت مهمة معرف
|
||||||
YouCanCompleteRef=إذا كنت ترغب في استكمال المرجع مع بعض المعلومات (لاستخدامه بمثابة مرشحات البحث)، وريكومانديد لإضافة - شخصية لفصلها، وبالتالي فإن الترقيم التلقائي سوف لا تزال تعمل بشكل صحيح للمشاريع المقبلة. على سبيل المثال٪ S-ABC. قد تفضل أيضا لإضافة مفاتيح البحث في التسمية.
|
YouCanCompleteRef=If you want to complete the ref with some information (to use it as search filters), it is recommanded to add a - character to separate it, so the automatic numbering will still work correctly for next projects. For example %s-ABC. You may also prefer to add search keys into label. But best practice may be to add a dedicated field, also called complementary attributes.
|
||||||
OpenedProjectsByThirdparties=Open projects by thirdparties
|
OpenedProjectsByThirdparties=Open projects by thirdparties
|
||||||
OnlyOpportunitiesShort=Only opportunities
|
OnlyOpportunitiesShort=Only opportunities
|
||||||
OpenedOpportunitiesShort=Open opportunities
|
OpenedOpportunitiesShort=Open opportunities
|
||||||
|
|||||||
@ -7,8 +7,8 @@ NewSalaryPayment=دفع الرواتب جديد
|
|||||||
SalaryPayment=دفع الرواتب
|
SalaryPayment=دفع الرواتب
|
||||||
SalariesPayments=مدفوعات الرواتب
|
SalariesPayments=مدفوعات الرواتب
|
||||||
ShowSalaryPayment=مشاهدة دفع الرواتب
|
ShowSalaryPayment=مشاهدة دفع الرواتب
|
||||||
THM=متوسط سعر ساعة
|
THM=Average hourly rate
|
||||||
TJM=متوسط السعر اليومي
|
TJM=Average daily rate
|
||||||
CurrentSalary=الراتب الحالي
|
CurrentSalary=الراتب الحالي
|
||||||
THMDescription=يمكن استخدام هذه القيمة لحساب تكلفة الوقت المستهلك في المشروع المدخل من قبل المستخدمين إذا تم استخدام وحدة مشروع
|
THMDescription=يمكن استخدام هذه القيمة لحساب تكلفة الوقت المستهلك في المشروع المدخل من قبل المستخدمين إذا تم استخدام وحدة مشروع
|
||||||
TJMDescription=هذه القيمة هي حاليا فقط كمعلومات وليس لاستخدامها في أي حساب
|
TJMDescription=هذه القيمة هي حاليا فقط كمعلومات وليس لاستخدامها في أي حساب
|
||||||
|
|||||||
@ -15,6 +15,8 @@ DeleteSending=حذف ارسال
|
|||||||
Stock=الأسهم
|
Stock=الأسهم
|
||||||
Stocks=الاسهم
|
Stocks=الاسهم
|
||||||
StocksByLotSerial=الأسهم عن طريق القرعة / المسلسل
|
StocksByLotSerial=الأسهم عن طريق القرعة / المسلسل
|
||||||
|
LotSerial=Lots/Serials
|
||||||
|
LotSerialList=List of lot/serials
|
||||||
Movements=حركات
|
Movements=حركات
|
||||||
ErrorWarehouseRefRequired=مستودع الاشارة اسم مطلوب
|
ErrorWarehouseRefRequired=مستودع الاشارة اسم مطلوب
|
||||||
ListOfWarehouses=لائحة المخازن
|
ListOfWarehouses=لائحة المخازن
|
||||||
@ -43,6 +45,7 @@ PMPValue=المتوسط المرجح لسعر
|
|||||||
PMPValueShort=الواب
|
PMPValueShort=الواب
|
||||||
EnhancedValueOfWarehouses=قيمة المستودعات
|
EnhancedValueOfWarehouses=قيمة المستودعات
|
||||||
UserWarehouseAutoCreate=إنشاء مخزون تلقائيا عند إنشاء مستخدم
|
UserWarehouseAutoCreate=إنشاء مخزون تلقائيا عند إنشاء مستخدم
|
||||||
|
AllowAddLimitStockByWarehouse=Allow to add limit and desired stock by product and warehouse
|
||||||
IndependantSubProductStock=الأسهم المنتجات والأوراق المالية subproduct ومستقل
|
IndependantSubProductStock=الأسهم المنتجات والأوراق المالية subproduct ومستقل
|
||||||
QtyDispatched=ارسال كمية
|
QtyDispatched=ارسال كمية
|
||||||
QtyDispatchedShort=أرسل الكمية
|
QtyDispatchedShort=أرسل الكمية
|
||||||
@ -132,3 +135,9 @@ OpenAll=Open for all actions
|
|||||||
OpenInternal=Open for internal actions
|
OpenInternal=Open for internal actions
|
||||||
OpenShipping=Open for shippings
|
OpenShipping=Open for shippings
|
||||||
OpenDispatch=Open for dispatch
|
OpenDispatch=Open for dispatch
|
||||||
|
UseDispatchStatus=Use dispatch status (aprouve/refuse)
|
||||||
|
OptionMULTIPRICESIsOn=Option "several prices per segment" is on. It means a product has several selling price so value for sell can't be calculated
|
||||||
|
ProductStockWarehouseCreated=Stock limit for alert and desired optimal stock correctly created
|
||||||
|
ProductStockWarehouseUpdated=Stock limit for alert and desired optimal stock correctly updated
|
||||||
|
ProductStockWarehouseDeleted=Stock limit for alert and desired optimal stock correctly deleted
|
||||||
|
AddNewProductStockWarehouse=Set new limit for alert and desired optimal stock
|
||||||
|
|||||||
@ -47,6 +47,7 @@ DefaultModelSupplierProposalCreate=إنشاء نموذج افتراضي
|
|||||||
DefaultModelSupplierProposalToBill=القالب الافتراضي عند إغلاق طلب السعر (مقبول)
|
DefaultModelSupplierProposalToBill=القالب الافتراضي عند إغلاق طلب السعر (مقبول)
|
||||||
DefaultModelSupplierProposalClosed=القالب الافتراضي عند إغلاق طلب السعر (رفض)
|
DefaultModelSupplierProposalClosed=القالب الافتراضي عند إغلاق طلب السعر (رفض)
|
||||||
ListOfSupplierProposal=قائمة الطلبات اقتراح المورد
|
ListOfSupplierProposal=قائمة الطلبات اقتراح المورد
|
||||||
|
ListSupplierProposalsAssociatedProject=List of supplier proposals associated with project
|
||||||
SupplierProposalsToClose=Supplier proposals to close
|
SupplierProposalsToClose=Supplier proposals to close
|
||||||
SupplierProposalsToProcess=Supplier proposals to process
|
SupplierProposalsToProcess=Supplier proposals to process
|
||||||
LastSupplierProposals=Last price requests
|
LastSupplierProposals=Last price requests
|
||||||
|
|||||||
@ -7,13 +7,13 @@ History=التاريخ
|
|||||||
ListOfSuppliers=قائمة الموردين
|
ListOfSuppliers=قائمة الموردين
|
||||||
ShowSupplier=وتظهر المورد
|
ShowSupplier=وتظهر المورد
|
||||||
OrderDate=من أجل التاريخ
|
OrderDate=من أجل التاريخ
|
||||||
BuyingPriceMin=Minimum purchase price
|
BuyingPriceMin=Best buying price
|
||||||
BuyingPriceMinShort=Min purchase price
|
BuyingPriceMinShort=Best buying price
|
||||||
TotalBuyingPriceMinShort=Total of subproducts purchase prices
|
TotalBuyingPriceMinShort=Total of subproducts buying prices
|
||||||
TotalSellingPriceMinShort=Total of subproducts sell prices
|
TotalSellingPriceMinShort=Total of subproducts selling prices
|
||||||
SomeSubProductHaveNoPrices=بعض المنتجات الفرعية التي لا تعرف السعر
|
SomeSubProductHaveNoPrices=بعض المنتجات الفرعية التي لا تعرف السعر
|
||||||
AddSupplierPrice=إضافة مورد الأسعار
|
AddSupplierPrice=Add buying price
|
||||||
ChangeSupplierPrice=تغيير سعر المورد
|
ChangeSupplierPrice=Change buying price
|
||||||
ReferenceSupplierIsAlreadyAssociatedWithAProduct=ويرتبط هذا المورد بالفعل مرجع مع مرجع : %s
|
ReferenceSupplierIsAlreadyAssociatedWithAProduct=ويرتبط هذا المورد بالفعل مرجع مع مرجع : %s
|
||||||
NoRecordedSuppliers=لم تسجل الموردين
|
NoRecordedSuppliers=لم تسجل الموردين
|
||||||
SupplierPayment=المورد الدفع
|
SupplierPayment=المورد الدفع
|
||||||
@ -36,8 +36,8 @@ ListOfSupplierOrders=قائمة الطلبات المورد
|
|||||||
MenuOrdersSupplierToBill=أوامر مورد للفاتورة
|
MenuOrdersSupplierToBill=أوامر مورد للفاتورة
|
||||||
NbDaysToDelivery=تأخير التسليم في أيام
|
NbDaysToDelivery=تأخير التسليم في أيام
|
||||||
DescNbDaysToDelivery=أكبر تسليم تأخير من المنتجات من هذا النظام
|
DescNbDaysToDelivery=أكبر تسليم تأخير من المنتجات من هذا النظام
|
||||||
UseDoubleApproval=استخدام موافقة مزدوجة عندما مبلغ (بدون ضريبة) أعلى من (ويمكن أن يتم الموافقة الثانية من قبل أي مستخدم بإذن مخصص. تعيين إلى 0 من دون موافقة مزدوجة)
|
|
||||||
SupplierReputation=Supplier reputation
|
SupplierReputation=Supplier reputation
|
||||||
DoNotOrderThisProductToThisSupplier=Do not order
|
DoNotOrderThisProductToThisSupplier=Do not order
|
||||||
NotTheGoodQualitySupplier=Wrong quality
|
NotTheGoodQualitySupplier=Wrong quality
|
||||||
ReputationForThisProduct=Reputation
|
ReputationForThisProduct=Reputation
|
||||||
|
BuyerName=Buyer name
|
||||||
|
|||||||
@ -100,3 +100,6 @@ WeeklyHours=الساعات الأسبوعية
|
|||||||
ColorUser=اللون المستخدم
|
ColorUser=اللون المستخدم
|
||||||
DisabledInMonoUserMode=Disabled in maintenance mode
|
DisabledInMonoUserMode=Disabled in maintenance mode
|
||||||
UserAccountancyCode=User accountancy code
|
UserAccountancyCode=User accountancy code
|
||||||
|
UserLogoff=User logout
|
||||||
|
UserLogged=User logged
|
||||||
|
DateEmployment=Date of Employment
|
||||||
|
|||||||
@ -12,6 +12,7 @@ EditMenu=Edit menu
|
|||||||
EditPageMeta=Edit Meta
|
EditPageMeta=Edit Meta
|
||||||
EditPageContent=Edit Content
|
EditPageContent=Edit Content
|
||||||
Website=Web site
|
Website=Web site
|
||||||
|
Webpage=Web page
|
||||||
AddPage=Add page
|
AddPage=Add page
|
||||||
PreviewOfSiteNotYetAvailable=Preview of your website <strong>%s</strong> not yet available. You must first add a page.
|
PreviewOfSiteNotYetAvailable=Preview of your website <strong>%s</strong> not yet available. You must first add a page.
|
||||||
RequestedPageHasNoContentYet=Requested page with id %s has not content yet or cache file .tpl.php was removed. Edit content of page to solve this.
|
RequestedPageHasNoContentYet=Requested page with id %s has not content yet or cache file .tpl.php was removed. Edit content of page to solve this.
|
||||||
@ -22,4 +23,6 @@ ViewPageInNewTab=View page in new tab
|
|||||||
SetAsHomePage=Set as Home page
|
SetAsHomePage=Set as Home page
|
||||||
RealURL=Real URL
|
RealURL=Real URL
|
||||||
ViewWebsiteInProduction=View web site using home URLs
|
ViewWebsiteInProduction=View web site using home URLs
|
||||||
SetHereVirtualHost=If you can set, on your web server, a dedicated virtual host with a root directory on <strong>%s</strong>, define here the virtual hostname so the preview will be done using this direct access instead of Dolibarr URLs wrapper.
|
SetHereVirtualHost=If you can set, on your web server, a dedicated virtual host with a root directory on <strong>%s</strong>, define here the virtual hostname so the preview can be done also using this direct web server access and not only using Dolibarr server.
|
||||||
|
PreviewSiteServedByWebServer=Preview %s in a new tab. The %s will be served by an external web server (like Apache, Nginx, IIS). You must instal and setup this server before.<br>URL of %s served by external server:<br><strong>%s</strong>
|
||||||
|
PreviewSiteServedByDolibarr=Preview %s in a new tab. The %s will be served by Dolibarr server so it does not need any extra web server (like Apache, Nginx, IIS) to be installed.<br>The inconvenient is that URL of pages are using path of your Dolibarr.<br>URL of %s served by Dolibarr:<br><strong>%s</strong>
|
||||||
|
|||||||
@ -1,27 +1,28 @@
|
|||||||
# Dolibarr language file - Source file is en_US - withdrawals
|
# Dolibarr language file - Source file is en_US - withdrawals
|
||||||
CustomersStandingOrdersArea=أوامر دائمة منطقة العملاء
|
CustomersStandingOrdersArea=Direct debit payment orders area
|
||||||
StandingOrders=أوامر دائمة
|
SuppliersStandingOrdersArea=Direct credit payment orders area
|
||||||
StandingOrder=أوامر دائمة
|
StandingOrders=Direct debit payment orders
|
||||||
NewStandingOrder=دائمة جديدة من أجل
|
StandingOrder=Direct debit payment order
|
||||||
|
NewStandingOrder=New direct debit order
|
||||||
StandingOrderToProcess=لعملية
|
StandingOrderToProcess=لعملية
|
||||||
WithdrawalsReceipts=إيصالات السحب
|
WithdrawalsReceipts=Direct debit orders
|
||||||
WithdrawalReceipt=انسحاب ورود
|
WithdrawalReceipt=Direct debit order
|
||||||
LastWithdrawalReceipts=Latest %s withdrawal receipts
|
LastWithdrawalReceipts=Latest %s direct debit files
|
||||||
WithdrawalsLines=خطوط السحب
|
WithdrawalsLines=Direct debit order lines
|
||||||
RequestStandingOrderToTreat=طلب لأوامر إلى معالجة دائمة
|
RequestStandingOrderToTreat=Request for direct debit payment order to process
|
||||||
RequestStandingOrderTreated=طلب الأوامر الدائمة معالجة
|
RequestStandingOrderTreated=Request for direct debit payment order processed
|
||||||
NotPossibleForThisStatusOfWithdrawReceiptORLine=لم يكن ممكنا حتى الآن. سحب يجب أن يتم تعيين الحالة إلى "الفضل" قبل أن يعلن رفض على خطوط محددة.
|
NotPossibleForThisStatusOfWithdrawReceiptORLine=لم يكن ممكنا حتى الآن. سحب يجب أن يتم تعيين الحالة إلى "الفضل" قبل أن يعلن رفض على خطوط محددة.
|
||||||
NbOfInvoiceToWithdraw=ملحوظة. من فاتورة مع سحب الطلب
|
NbOfInvoiceToWithdraw=Nb. of invoice with direct debit order
|
||||||
NbOfInvoiceToWithdrawWithInfo=ملحوظة. من فاتورة مع سحب الطلب للعملاء الحصول على معلومات الحساب المصرفي المحدد
|
NbOfInvoiceToWithdrawWithInfo=Nb. of customer invoice with direct debit payment orders having defined bank account information
|
||||||
InvoiceWaitingWithdraw=فاتورة انتظار الانسحاب
|
InvoiceWaitingWithdraw=Invoice waiting for direct debit
|
||||||
AmountToWithdraw=سحب المبلغ
|
AmountToWithdraw=سحب المبلغ
|
||||||
WithdrawsRefused=ورفض سحب
|
WithdrawsRefused=Direct debit refused
|
||||||
NoInvoiceToWithdraw=فاتورة العميل في أي طريقة الدفع "سحب" تنتظر. على 'سحب' تبويبة على فاتورة بطاقة لتقديم الطلب.
|
NoInvoiceToWithdraw=فاتورة العميل في أي طريقة الدفع "سحب" تنتظر. على 'سحب' تبويبة على فاتورة بطاقة لتقديم الطلب.
|
||||||
ResponsibleUser=مسؤولة المستخدم
|
ResponsibleUser=مسؤولة المستخدم
|
||||||
WithdrawalsSetup=الإعداد للانسحاب
|
WithdrawalsSetup=Direct debit payment setup
|
||||||
WithdrawStatistics=تسحب 'إحصاءات
|
WithdrawStatistics=Direct debit payment statistics
|
||||||
WithdrawRejectStatistics=وترفض الانسحاب 'إحصاءات
|
WithdrawRejectStatistics=Direct debit payment reject statistics
|
||||||
LastWithdrawalReceipt=Latest %s withdrawal receipts
|
LastWithdrawalReceipt=Latest %s direct debit receipts
|
||||||
MakeWithdrawRequest=تقديم طلب سحب
|
MakeWithdrawRequest=تقديم طلب سحب
|
||||||
ThirdPartyBankCode=طرف ثالث بنك مدونة
|
ThirdPartyBankCode=طرف ثالث بنك مدونة
|
||||||
NoInvoiceCouldBeWithdrawed=أي فاتورة withdrawed بالنجاح. تأكد من أن الفاتورة على الشركات الحظر ساري المفعول.
|
NoInvoiceCouldBeWithdrawed=أي فاتورة withdrawed بالنجاح. تأكد من أن الفاتورة على الشركات الحظر ساري المفعول.
|
||||||
@ -46,7 +47,7 @@ StatusRefused=رفض
|
|||||||
StatusMotif0=غير محدد
|
StatusMotif0=غير محدد
|
||||||
StatusMotif1=توفير insuffisante
|
StatusMotif1=توفير insuffisante
|
||||||
StatusMotif2=Tirage conteste
|
StatusMotif2=Tirage conteste
|
||||||
StatusMotif3=لا من أجل الانسحاب
|
StatusMotif3=No direct debit payment order
|
||||||
StatusMotif4=طلب العملاء
|
StatusMotif4=طلب العملاء
|
||||||
StatusMotif5=الضلع inexploitable
|
StatusMotif5=الضلع inexploitable
|
||||||
StatusMotif6=حساب بدون رصيد
|
StatusMotif6=حساب بدون رصيد
|
||||||
@ -61,28 +62,43 @@ NotifyCredit=انسحاب الائتمان
|
|||||||
NumeroNationalEmetter=رقم المرسل وطنية
|
NumeroNationalEmetter=رقم المرسل وطنية
|
||||||
WithBankUsingRIB=عن الحسابات المصرفية باستخدام RIB
|
WithBankUsingRIB=عن الحسابات المصرفية باستخدام RIB
|
||||||
WithBankUsingBANBIC=عن الحسابات المصرفية باستخدام IBAN / BIC / SWIFT
|
WithBankUsingBANBIC=عن الحسابات المصرفية باستخدام IBAN / BIC / SWIFT
|
||||||
BankToReceiveWithdraw=حساب مصرفي لتلقي تنسحب
|
BankToReceiveWithdraw=Bank account to receive direct debit
|
||||||
CreditDate=الائتمان على
|
CreditDate=الائتمان على
|
||||||
WithdrawalFileNotCapable=غير قادر على توليد ملف استلام الانسحاب لبلدكم٪ الصورة (لا يتم اعتماد البلد)
|
WithdrawalFileNotCapable=غير قادر على توليد ملف استلام الانسحاب لبلدكم٪ الصورة (لا يتم اعتماد البلد)
|
||||||
ShowWithdraw=وتظهر سحب
|
ShowWithdraw=وتظهر سحب
|
||||||
IfInvoiceNeedOnWithdrawPaymentWontBeClosed=ومع ذلك، إذا فاتورة واحدة على الأقل دفع انسحاب لا تتم معالجتها حتى الآن، فإنه لن يكون كما سيولي للسماح لإدارة الانسحاب قبل.
|
IfInvoiceNeedOnWithdrawPaymentWontBeClosed=ومع ذلك، إذا فاتورة واحدة على الأقل دفع انسحاب لا تتم معالجتها حتى الآن، فإنه لن يكون كما سيولي للسماح لإدارة الانسحاب قبل.
|
||||||
DoStandingOrdersBeforePayments=هذا التبويب يسمح لك لطلب أمر مستديم. وبمجرد القيام به، انتقل إلى القائمة Bank-> سحب لإدارة النظام واقفا. عندما أمر يقف مغلق، سيتم تسجيلها تلقائيا الدفع على الفاتورة، وأغلقت الفاتورة إذا تبقى لدفع فارغة.
|
DoStandingOrdersBeforePayments=This tab allows you to request a direct debit payment order. Once done, go into menu Bank->Withdrawal to manage the direct debit payment order. When payment order is closed, payment on invoice will be automatically recorded, and invoice closed if remainder to pay is null.
|
||||||
WithdrawalFile=ملف الانسحاب
|
WithdrawalFile=ملف الانسحاب
|
||||||
SetToStatusSent=تعيين إلى حالة "المرسلة ملف"
|
SetToStatusSent=تعيين إلى حالة "المرسلة ملف"
|
||||||
ThisWillAlsoAddPaymentOnInvoice=وهذا أيضا ينطبق على الفواتير والمدفوعات وتصنيفها على أنها "تدفع"
|
ThisWillAlsoAddPaymentOnInvoice=وهذا أيضا ينطبق على الفواتير والمدفوعات وتصنيفها على أنها "تدفع"
|
||||||
StatisticsByLineStatus=إحصاءات عن طريق وضع خطوط
|
StatisticsByLineStatus=إحصاءات عن طريق وضع خطوط
|
||||||
RUM=رم
|
RUM=UMR
|
||||||
RUMWillBeGenerated=سيتم إنشاء عدد رم مرة واحدة يتم حفظ معلومات الحساب المصرفي
|
RUMLong=Unique Mandate Reference
|
||||||
WithdrawMode=وضع (FRST أو تتكرر) سحب
|
RUMWillBeGenerated=UMR number will be generated once bank account information are saved
|
||||||
|
WithdrawMode=Direct debit mode (FRST or RECUR)
|
||||||
WithdrawRequestAmount=سحب طلب كمية:
|
WithdrawRequestAmount=سحب طلب كمية:
|
||||||
WithdrawRequestErrorNilAmount=غير قادر على إنشاء سحب طلب مبلغ لا شيء.
|
WithdrawRequestErrorNilAmount=غير قادر على إنشاء سحب طلب مبلغ لا شيء.
|
||||||
|
SepaMandate=SEPA Direct Debit Mandate
|
||||||
|
SepaMandateShort=SEPA Mandate
|
||||||
|
PleaseReturnMandate=Please return this mandate form by email to %s or by mail to
|
||||||
|
SEPALegalText=By signing this mandate form, you authorize (A) %s to send instructions to your bank to debit your account and (B) your bank to debit your account in accordance with the instructions from %s. As part of your rights, you are entitled to a refund from your bank under the terms and conditions of your agreement with your bank. A refund must be claimed within 8 weeks starting from the date on which your account was debited. Your rights regarding the above mandate are explained in a statement that you can obtain from your bank.
|
||||||
|
CreditorIdentifier=Creditor Identifier
|
||||||
|
CreditorName=Creditor’s Name
|
||||||
|
SEPAFillForm=(B) Please complete all the fields marked *
|
||||||
|
SEPAFormYourName=Your name
|
||||||
|
SEPAFormYourBAN=Your Bank Account Name (IBAN)
|
||||||
|
SEPAFormYourBIC=Your Bank Identifier Code (BIC)
|
||||||
|
SEPAFrstOrRecur=Type of payment
|
||||||
|
ModeRECUR=Reccurent payment
|
||||||
|
ModeFRST=One-off payment
|
||||||
|
PleaseCheckOne=Please check one only
|
||||||
|
|
||||||
### Notifications
|
### Notifications
|
||||||
InfoCreditSubject=دفع %s النظام الدائمة من قبل البنك
|
InfoCreditSubject=Payment of direct debit payment order %s by the bank
|
||||||
InfoCreditMessage=تم دفع %s النظام وقوفه الى جانب البنك <br> بيانات الدفع: %s
|
InfoCreditMessage=The direct debit payment order %s has been paid by the bank<br>Data of payment: %s
|
||||||
InfoTransSubject=انتقال %s ترتيب دائمة للبنك
|
InfoTransSubject=Transmission of direct debit payment order %s to bank
|
||||||
InfoTransMessage=وقد transmited في %s أجل الوقوف على البنك من قبل %s %s. <br><br>
|
InfoTransMessage=The direct debit payment order %s has been sent to bank by %s %s.<br><br>
|
||||||
InfoTransData=المبلغ: %s <br> Metode: %s <br> تاريخ: %s
|
InfoTransData=المبلغ: %s <br> Metode: %s <br> تاريخ: %s
|
||||||
InfoRejectSubject=ورفض النظام واقفا
|
InfoRejectSubject=Direct debit payment order refused
|
||||||
InfoRejectMessage=أهلا، <br><br> وقد رفض النظام مكانة فاتورة%s المتعلقة بالشركة٪ الصورة، مع مبلغ٪ الصورة من قبل البنك. <br><br> - <br> ٪ الصورة
|
InfoRejectMessage=Hello,<br><br>the direct debit payment order of invoice %s related to the company %s, with an amount of %s has been refused by the bank.<br><br>--<br>%s
|
||||||
ModeWarning=لم يتم تعيين خيار الوضع الحقيقي، ونحن بعد توقف هذه المحاكاة
|
ModeWarning=لم يتم تعيين خيار الوضع الحقيقي، ونحن بعد توقف هذه المحاكاة
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
# Dolibarr language file - Source file is en_US - admin
|
# Dolibarr language file - Source file is en_US - workflow
|
||||||
WorkflowSetup=سير العمل وحدة الإعداد
|
WorkflowSetup=سير العمل وحدة الإعداد
|
||||||
WorkflowDesc=تم تصميم هذه الوحدة لتعديل السلوك من الإجراءات الآلية إلى التطبيق. افتراضيا، سير العمل مفتوح (يمكنك أن تفعل أشياء في النظام الذي تريد). يمكنك تفعيل الإجراءات الآلية كنت مهتما في.
|
WorkflowDesc=تم تصميم هذه الوحدة لتعديل السلوك من الإجراءات الآلية إلى التطبيق. افتراضيا، سير العمل مفتوح (يمكنك أن تفعل أشياء في النظام الذي تريد). يمكنك تفعيل الإجراءات الآلية كنت مهتما في.
|
||||||
ThereIsNoWorkflowToModify=لا يوجد أي تعديلات سير العمل المتاحة مع وحدات تفعيلها.
|
ThereIsNoWorkflowToModify=لا يوجد أي تعديلات سير العمل المتاحة مع وحدات تفعيلها.
|
||||||
@ -9,3 +9,5 @@ descWORKFLOW_ORDER_AUTOCREATE_INVOICE=إنشاء فاتورة العميل تل
|
|||||||
descWORKFLOW_ORDER_CLASSIFY_BILLED_PROPAL=تصنيف مقترح مصدر على صلة وصفت عند تعيين النظام العميل لدفع
|
descWORKFLOW_ORDER_CLASSIFY_BILLED_PROPAL=تصنيف مقترح مصدر على صلة وصفت عند تعيين النظام العميل لدفع
|
||||||
descWORKFLOW_INVOICE_CLASSIFY_BILLED_ORDER=تصنيف المصدر المرتبط النظام العميل (ق) إلى المنقار عند تعيين فاتورة العملاء لدفع
|
descWORKFLOW_INVOICE_CLASSIFY_BILLED_ORDER=تصنيف المصدر المرتبط النظام العميل (ق) إلى المنقار عند تعيين فاتورة العملاء لدفع
|
||||||
descWORKFLOW_INVOICE_AMOUNT_CLASSIFY_BILLED_ORDER=تصنيف ربط مصدر النظام العميل (ق) إلى المنقار عند التحقق من صحة الفاتورة العملاء
|
descWORKFLOW_INVOICE_AMOUNT_CLASSIFY_BILLED_ORDER=تصنيف ربط مصدر النظام العميل (ق) إلى المنقار عند التحقق من صحة الفاتورة العملاء
|
||||||
|
descWORKFLOW_INVOICE_CLASSIFY_BILLED_PROPAL=Classify linked source proposal to billed when customer invoice is validated
|
||||||
|
descWORKFLOW_ORDER_CLASSIFY_SHIPPED_SHIPPING=Classify shipped linked source order on shipping validate if quantity shipped is the same as in order
|
||||||
|
|||||||
@ -14,48 +14,69 @@ Journaux=Журнали
|
|||||||
JournalFinancial=Financial journals
|
JournalFinancial=Financial journals
|
||||||
BackToChartofaccounts=Return chart of accounts
|
BackToChartofaccounts=Return chart of accounts
|
||||||
|
|
||||||
|
AccountancyArea=Accountancy area
|
||||||
|
AccountancyAreaDescIntro=Usage of the accountancy module is done in several step:
|
||||||
|
AccountancyAreaDescActionOnce=The following actions are usually executed one time only, or once per year...
|
||||||
|
AccountancyAreaDescActionFreq=The following actions are usually executed every month, week or day for very large companies...
|
||||||
|
AccountancyAreaDescChart=STEP %s: Create or check your chart of account from menu %s
|
||||||
|
AccountancyAreaDescProd=STEP %s: Check the binding between products/services and accounting account is done. Complete missing bindings. This will save you time in future for the next steps by suggesting you the correct default accounting account on your invoice lines.<br>For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescBank=STEP %s: Check the binding between bank accounts and accounting account is done. Complete missing bindings. This will save you time in future for the next steps by suggesting you the correct default accounting account on your payment lines.<br>For this, go on the card of each financial account. You can start from page %s.
|
||||||
|
AccountancyAreaDescVat=STEP %s: Check the binding between vat payment and accounting account is done. Complete missing bindings. This will save you time in future for the next steps by suggesting you the correct default accounting account on records related to VAT payments.<br>You can set accounting accounts to use for each VAT from page %s.
|
||||||
|
AccountancyAreaDescSal=STEP %s: Check the binding between salaries payment and accounting account is done. Complete missing bindings. This will save you time in future for the next steps by suggesting you the correct default accounting account on records related to payment of salaries.<br>For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescContrib=STEP %s: Check the binding between special expences (social or fiscal contributions) and accounting account is done. Complete missing bindings. This will save you time in future for the next steps by suggesting you the correct default accounting account on records related to payments of social contributions.<br>For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescDonation=STEP %s: Check the binding between donation and accounting account is done. Complete missing bindings. This will save you time in future for the next steps by suggesting you the correct default accounting account on records related to payments of donation.<br>You can set the account dedicated for that from the menu entry %s.
|
||||||
|
|
||||||
|
AccountancyAreaDescCustomer=STEP %s: Check the binding between existing customer invoice lines and accounting account is done. Complete missing bindings. Once binding is complete, application will be able to record transactions in General Ledger in one click.<br>For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescSupplier=STEP %s: Check the binding between existing supplier invoice lines and accounting account is done. Complete missing bindings. Once binding is complete, application will be able to record transactions in General Ledger in one click.<br>For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescWriteRecords=STEP %s: Write transactions into the General Ledger. Add or edit existing transactions and generate reports
|
||||||
|
|
||||||
Selectchartofaccounts=Select a chart of accounts
|
Selectchartofaccounts=Select a chart of accounts
|
||||||
Addanaccount=Add an accounting account
|
Addanaccount=Add an accounting account
|
||||||
AccountAccounting=Accounting account
|
AccountAccounting=Accounting account
|
||||||
AccountAccountingShort=Account
|
AccountAccountingShort=Account
|
||||||
AccountAccountingSuggest=Accounting account suggest
|
AccountAccountingSuggest=Accounting account suggest
|
||||||
Ventilation=Breakdown
|
Ventilation=Binding to accounts
|
||||||
|
ProductsBinding=Products bindings
|
||||||
|
|
||||||
MenuAccountancy=Accountancy
|
MenuAccountancy=Accountancy
|
||||||
CustomersVentilation=Breakdown customers
|
CustomersVentilation=Customer invoice binding
|
||||||
SuppliersVentilation=Breakdown suppliers
|
SuppliersVentilation=Supplier invoice binding
|
||||||
Reports=Отчети
|
Reports=Отчети
|
||||||
NewAccount=New accounting account
|
NewAccount=New accounting account
|
||||||
Create=Create
|
Create=Create
|
||||||
CreateMvts=Create movement
|
CreateMvts=Create new transaction
|
||||||
UpdateMvts=Modification of a movement
|
UpdateMvts=Modification of a transaction
|
||||||
WriteBookKeeping=Record accounts in general ledger
|
WriteBookKeeping=Record operations in General Ledger
|
||||||
Bookkeeping=General ledger
|
Bookkeeping=General ledger
|
||||||
AccountBalance=Account balance
|
AccountBalance=Account balance
|
||||||
|
|
||||||
CAHTF=Total purchase supplier before tax
|
CAHTF=Total purchase supplier before tax
|
||||||
InvoiceLines=Lines of invoice to be ventilated
|
InvoiceLines=Lines of invoices to bind
|
||||||
InvoiceLinesDone=Ventilated lines of invoice
|
InvoiceLinesDone=Bound lines of invoices
|
||||||
IntoAccount=Ventilate in the accounting account
|
IntoAccount=Bind line with the accounting account
|
||||||
|
|
||||||
Ventilate=Ventilate
|
Ventilate=Bind
|
||||||
|
|
||||||
Processing=Processing
|
Processing=Processing
|
||||||
EndProcessing=The end of processing
|
EndProcessing=The end of processing
|
||||||
AnyLineVentilate=Any lines to ventilate
|
AnyLineVentilate=Any lines to bind
|
||||||
SelectedLines=Selected lines
|
SelectedLines=Selected lines
|
||||||
Lineofinvoice=Line of invoice
|
Lineofinvoice=Line of invoice
|
||||||
VentilatedinAccount=Ventilated successfully in the accounting account
|
VentilatedinAccount=Binded successfully to the accounting account
|
||||||
NotVentilatedinAccount=Not ventilated in the accounting account
|
NotVentilatedinAccount=Not bound to the accounting account
|
||||||
|
XLineSuccessfullyBinded=%s products/services successfuly bound to an accounting account
|
||||||
|
XLineFailedToBeBinded=%s products/services were not bound to any accounting account
|
||||||
|
|
||||||
ACCOUNTING_LIMIT_LIST_VENTILATION=Number of elements to be breakdown shown by page (maximum recommended : 50)
|
ACCOUNTING_LIMIT_LIST_VENTILATION=Number of elements to bind shown by page (maximum recommended : 50)
|
||||||
ACCOUNTING_LIST_SORT_VENTILATION_TODO=Begin the sorting of the breakdown pages "Has to breakdown" by the most recent elements
|
ACCOUNTING_LIST_SORT_VENTILATION_TODO=Begin the sorting of the page "Binding to do" by the most recent elements
|
||||||
ACCOUNTING_LIST_SORT_VENTILATION_DONE=Begin the sorting of the breakdown pages "Breakdown" by the most recent elements
|
ACCOUNTING_LIST_SORT_VENTILATION_DONE=Begin the sorting of the page "Binding done" by the most recent elements
|
||||||
|
|
||||||
ACCOUNTING_LENGTH_DESCRIPTION=Length for displaying product & services description in listings (Best = 50)
|
ACCOUNTING_LENGTH_DESCRIPTION=Length for displaying product & services description in listings (Best = 50)
|
||||||
ACCOUNTING_LENGTH_DESCRIPTION_ACCOUNT=Length for displaying product & services account description form in listings (Best = 50)
|
ACCOUNTING_LENGTH_DESCRIPTION_ACCOUNT=Length for displaying product & services account description form in listings (Best = 50)
|
||||||
ACCOUNTING_LENGTH_GACCOUNT=Length of the general accounts
|
ACCOUNTING_LENGTH_GACCOUNT=Length of the general accounting accounts
|
||||||
ACCOUNTING_LENGTH_AACCOUNT=Length of the third party accounts
|
ACCOUNTING_LENGTH_AACCOUNT=Length of the third party accounting accounts
|
||||||
|
ACCOUNTING_MANAGE_ZERO=Manage the zero at the end of an accounting account. Needed by some countries. Disable by default. Be careful with the function "length of the accounts".
|
||||||
|
BANK_DISABLE_DIRECT_INPUT=Disable free input of bank transactions (Enabled by default with this module).
|
||||||
|
|
||||||
ACCOUNTING_SELL_JOURNAL=Sell journal
|
ACCOUNTING_SELL_JOURNAL=Sell journal
|
||||||
ACCOUNTING_PURCHASE_JOURNAL=Purchase journal
|
ACCOUNTING_PURCHASE_JOURNAL=Purchase journal
|
||||||
@ -81,32 +102,31 @@ Sens=Sens
|
|||||||
Codejournal=Дневник
|
Codejournal=Дневник
|
||||||
NumPiece=Номер на част
|
NumPiece=Номер на част
|
||||||
AccountingCategory=Accounting category
|
AccountingCategory=Accounting category
|
||||||
|
|
||||||
NotMatch=Not Set
|
NotMatch=Not Set
|
||||||
|
|
||||||
DeleteMvt=Delete general ledger lines
|
DeleteMvt=Delete general ledger lines
|
||||||
DelYear=Year to delete
|
DelYear=Year to delete
|
||||||
DelJournal=Journal to delete
|
DelJournal=Journal to delete
|
||||||
ConfirmDeleteMvt=This will delete all line of of the general ledger for year and/or from a specifics journal
|
ConfirmDeleteMvt=This will delete all lines of the general ledger for year and/or from a specifics journal
|
||||||
|
ConfirmDeleteMvtPartial=This will delete the selected line(s) of the general ledger
|
||||||
DelBookKeeping=Delete the records of the general ledger
|
DelBookKeeping=Delete the records of the general ledger
|
||||||
|
|
||||||
DescSellsJournal=Sells journal
|
DescSellsJournal=Sells journal
|
||||||
DescPurchasesJournal=Purchases journal
|
DescPurchasesJournal=Purchases journal
|
||||||
FinanceJournal=Finance journal
|
FinanceJournal=Finance journal
|
||||||
DescFinanceJournal=Finance journal including all the types of payments by bank account
|
DescFinanceJournal=Finance journal including all the types of payments by bank account
|
||||||
|
DescJournalOnlyBindedVisible=This is a view of records that are bound to products/services accountancy account and can be recorded into the General Ledger.
|
||||||
|
VATAccountNotDefined=Account for VAT not defined
|
||||||
|
ThirdpartyAccountNotDefined=Account for third party not defined
|
||||||
|
ProductAccountNotDefined=Account for product not defined
|
||||||
|
BankAccountNotDefined=Account for bank not defined
|
||||||
CustomerInvoicePayment=Payment of invoice customer
|
CustomerInvoicePayment=Payment of invoice customer
|
||||||
|
|
||||||
ThirdPartyAccount=Thirdparty account
|
ThirdPartyAccount=Thirdparty account
|
||||||
|
NewAccountingMvt=New transaction
|
||||||
NewAccountingMvt=New movement
|
NumMvts=Numero of transaction
|
||||||
NumMvts=Number of movement
|
ListeMvts=List of movements
|
||||||
ListeMvts=List of the movement
|
|
||||||
ErrorDebitCredit=Debit and Credit cannot have a value at the same time
|
ErrorDebitCredit=Debit and Credit cannot have a value at the same time
|
||||||
|
|
||||||
ReportThirdParty=List third party account
|
ReportThirdParty=List third party account
|
||||||
DescThirdPartyReport=Consult here the list of the thirdparty customers and the suppliers and their accounting accounts
|
DescThirdPartyReport=Consult here the list of the third party customers and suppliers and their accounting accounts
|
||||||
|
|
||||||
ListAccounts=List of the accounting accounts
|
ListAccounts=List of the accounting accounts
|
||||||
|
|
||||||
@ -114,22 +134,29 @@ Pcgtype=Class of account
|
|||||||
Pcgsubtype=Under class of account
|
Pcgsubtype=Under class of account
|
||||||
Accountparent=Root of the account
|
Accountparent=Root of the account
|
||||||
|
|
||||||
DescVentilCustomer=Consult here the annual breakdown accounting of your invoices customers
|
|
||||||
TotalVente=Total turnover before tax
|
TotalVente=Total turnover before tax
|
||||||
TotalMarge=Total sales margin
|
TotalMarge=Total sales margin
|
||||||
DescVentilDoneCustomer=Consult here the list of the lines of invoices customers and their accounting account
|
|
||||||
DescVentilTodoCustomer=Ventilate your lines of customer invoice with an accounting account
|
DescVentilCustomer=Consult here the list of customer invoice lines bound (or not) to a product accounting account
|
||||||
ChangeAccount=Change the accounting account for lines selected by the account:
|
DescVentilMore=In most cases, if you use predefined products or services and you set the account number on the product/service card, the application will be able to make all the binding between your invoice lines and the accounting account of your chart of accounts, just in one click with the button <strong>"%s"</strong>. If account was not set on product/service cards or if you still has some lines not bound to any account, you will have to make a manual binding from the menu "<strong>%s</strong>".
|
||||||
|
DescVentilDoneCustomer=Consult here the list of the lines of invoices customers and their product accounting account
|
||||||
|
DescVentilTodoCustomer=Bind invoice lines not already bound with a product accounting account
|
||||||
|
ChangeAccount=Change the product/service accounting account for selected lines with the following accounting account:
|
||||||
Vide=-
|
Vide=-
|
||||||
DescVentilSupplier=Consult here the annual breakdown accounting of your invoices suppliers
|
DescVentilSupplier=Consult here the list of supplier invoice lines bound or not yet bound to a product accounting account
|
||||||
DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier and their accounting account
|
DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier and their accounting account
|
||||||
|
|
||||||
ValidateHistory=Валидирайте автоматично
|
ValidateHistory=Bind Automatically
|
||||||
|
AutomaticBindingDone=Automatic binding done
|
||||||
|
|
||||||
ErrorAccountancyCodeIsAlreadyUse=Възникна грешка, вие не можете да изтриете тази счетоводна сметка, защото се използва.
|
ErrorAccountancyCodeIsAlreadyUse=Възникна грешка, вие не можете да изтриете тази счетоводна сметка, защото се използва.
|
||||||
MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
|
MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
|
||||||
FicheVentilation=Breakdown card
|
FicheVentilation=Binding card
|
||||||
GeneralLedgerIsWritten=Operations are written in the general ledger
|
GeneralLedgerIsWritten=Operations are written in the general ledger
|
||||||
|
GeneralLedgerSomeRecordWasNotRecorded=Some of the transactions could not be recorded.
|
||||||
|
NoNewRecordSaved=No new record saved
|
||||||
|
ListOfProductsWithoutAccountingAccount=List of products not bound to any accounting account
|
||||||
|
ChangeBinding=Change the binding
|
||||||
|
|
||||||
## Admin
|
## Admin
|
||||||
ApplyMassCategories=Apply mass categories
|
ApplyMassCategories=Apply mass categories
|
||||||
@ -151,12 +178,14 @@ Modelcsv_cogilog=Export towards Cogilog
|
|||||||
|
|
||||||
## Tools - Init accounting account on product / service
|
## Tools - Init accounting account on product / service
|
||||||
InitAccountancy=Init accountancy
|
InitAccountancy=Init accountancy
|
||||||
InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
|
InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of chart of accounts is complete.
|
||||||
Options=Options
|
Options=Options
|
||||||
OptionModeProductSell=Mode sales
|
OptionModeProductSell=Mode sales
|
||||||
OptionModeProductBuy=Mode purchases
|
OptionModeProductBuy=Mode purchases
|
||||||
OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
|
OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
|
||||||
OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
|
OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
|
||||||
|
CleanFixHistory=Remove accountancy code from lines that not exists into charts of account
|
||||||
|
CleanHistory=Reset all bindings for selected year
|
||||||
|
|
||||||
## Dictionary
|
## Dictionary
|
||||||
Range=Range of accounting account
|
Range=Range of accounting account
|
||||||
@ -167,3 +196,9 @@ Formula=Formula
|
|||||||
ErrorNoAccountingCategoryForThisCountry=No accounting category are available for this country
|
ErrorNoAccountingCategoryForThisCountry=No accounting category are available for this country
|
||||||
ExportNotSupported=The export format setuped is not supported into this page
|
ExportNotSupported=The export format setuped is not supported into this page
|
||||||
BookeppingLineAlreayExists=Lines already existing into bookeeping
|
BookeppingLineAlreayExists=Lines already existing into bookeeping
|
||||||
|
|
||||||
|
Binded=Lines bound
|
||||||
|
ToBind=Lines to bind
|
||||||
|
|
||||||
|
WarningReportNotReliable=Warning, this report is not based on the General Ledger, so is not reliable yet. It will be replaced by a correct report in a next version.
|
||||||
|
|
||||||
|
|||||||
@ -8,11 +8,16 @@ VersionExperimental=Експериментален
|
|||||||
VersionDevelopment=Разработка
|
VersionDevelopment=Разработка
|
||||||
VersionUnknown=Неизвестен
|
VersionUnknown=Неизвестен
|
||||||
VersionRecommanded=Препоръчва се
|
VersionRecommanded=Препоръчва се
|
||||||
FileCheck=Files Integrity
|
FileCheck=Files integrity checker
|
||||||
|
FileCheckDesc=This tool allows you to check the integrity of files of your application, comparing each files with the official ones. You can use this tool to detect if some files were modified by a hacker for example.
|
||||||
|
MakeIntegrityAnalysisFrom=Make integrity analysis of application files from
|
||||||
|
LocalSignature=Embedded local signature (less reliable)
|
||||||
|
RemoteSignature=Remote distant signature (more reliable)
|
||||||
FilesMissing=Missing Files
|
FilesMissing=Missing Files
|
||||||
FilesUpdated=Updated Files
|
FilesUpdated=Updated Files
|
||||||
FileCheckDolibarr=Check Dolibarr Files Integrity
|
FileCheckDolibarr=Check integrity of application files
|
||||||
XmlNotFound=Xml File of Dolibarr Integrity Not Found
|
AvailableOnlyOnPackagedVersions=The local file for integrity checking is only available when application is installed from a certified package
|
||||||
|
XmlNotFound=Xml Integrity File of application not found
|
||||||
SessionId=ID на сесията
|
SessionId=ID на сесията
|
||||||
SessionSaveHandler=Handler за да запазите сесията
|
SessionSaveHandler=Handler за да запазите сесията
|
||||||
SessionSavePath=Място за съхранение на сесията
|
SessionSavePath=Място за съхранение на сесията
|
||||||
@ -49,7 +54,7 @@ ErrorDecimalLargerThanAreForbidden=Грешка, точност по-висок
|
|||||||
DictionarySetup=Dictionary setup
|
DictionarySetup=Dictionary setup
|
||||||
Dictionary=Dictionaries
|
Dictionary=Dictionaries
|
||||||
Chartofaccounts=Chart of accounts
|
Chartofaccounts=Chart of accounts
|
||||||
Fiscalyear=Fiscal years
|
Fiscalyear=Fiscal year
|
||||||
ErrorReservedTypeSystemSystemAuto=Стойност 'система' и 'автосистема' за типа са запазени. Може да използвате за стойност 'потребител' при добавяне на ваш личен запис.
|
ErrorReservedTypeSystemSystemAuto=Стойност 'система' и 'автосистема' за типа са запазени. Може да използвате за стойност 'потребител' при добавяне на ваш личен запис.
|
||||||
ErrorCodeCantContainZero=Кода не може да съдържа стойност 0
|
ErrorCodeCantContainZero=Кода не може да съдържа стойност 0
|
||||||
DisableJavascript=Изключете функциите JavaScript и Ajax (Препоръчва се за незрящи и при текстови браузъри)
|
DisableJavascript=Изключете функциите JavaScript и Ajax (Препоръчва се за незрящи и при текстови браузъри)
|
||||||
@ -176,10 +181,11 @@ EncodeBinariesInHexa=Encode binary data in hexadecimal
|
|||||||
IgnoreDuplicateRecords=Ignore errors of duplicate records (INSERT IGNORE)
|
IgnoreDuplicateRecords=Ignore errors of duplicate records (INSERT IGNORE)
|
||||||
AutoDetectLang=Автоматично (език на браузъра)
|
AutoDetectLang=Автоматично (език на браузъра)
|
||||||
FeatureDisabledInDemo=Feature инвалиди в демо
|
FeatureDisabledInDemo=Feature инвалиди в демо
|
||||||
|
FeatureAvailableOnlyOnStable=Feature only available on official stable versions
|
||||||
Rights=Права
|
Rights=Права
|
||||||
BoxesDesc=Widgets are components showing some information that you can add to personalize some pages. You can choose between showing the widget or not by selecting target page and clicking 'Activate', or by clicking the dustbin to disable it.
|
BoxesDesc=Widgets are components showing some information that you can add to personalize some pages. You can choose between showing the widget or not by selecting target page and clicking 'Activate', or by clicking the dustbin to disable it.
|
||||||
OnlyActiveElementsAreShown=Показани са само елементи от <a href="%s">активирани модули</a>.
|
OnlyActiveElementsAreShown=Показани са само елементи от <a href="%s">активирани модули</a>.
|
||||||
ModulesDesc=Модулите на Dolibarr определят, кои функции са активирани в софтуера. Някои модули изискват да бъдат зададени права на потребителите, след активирането им. Кликнете върху бутона за включване/изключване в колона "Състояние" за да се включи модула/функцията.
|
ModulesDesc=Dolibarr modules define which functionality is enabled in software. Some modules require permissions you must grant to users, after enabling module. Click on button on/off to enable a module/feature.
|
||||||
ModulesMarketPlaceDesc=You can find more modules to download on external websites on the Internet...
|
ModulesMarketPlaceDesc=You can find more modules to download on external websites on the Internet...
|
||||||
ModulesMarketPlaces=Повече модули ...
|
ModulesMarketPlaces=Повече модули ...
|
||||||
DoliStoreDesc=DoliStore, официалният пазар за външни модули за Dolibarr ERP/CRM
|
DoliStoreDesc=DoliStore, официалният пазар за външни модули за Dolibarr ERP/CRM
|
||||||
@ -273,9 +279,10 @@ YouCanSubmitFile=For this step, you can send package using this tool: Select mod
|
|||||||
CurrentVersion=Текуща версия на Dolibarr
|
CurrentVersion=Текуща версия на Dolibarr
|
||||||
CallUpdatePage=Go to the page that updates the database structure and data: %s.
|
CallUpdatePage=Go to the page that updates the database structure and data: %s.
|
||||||
LastStableVersion=Latest stable version
|
LastStableVersion=Latest stable version
|
||||||
|
LastActivationDate=Last activation date
|
||||||
UpdateServerOffline=Update server offline
|
UpdateServerOffline=Update server offline
|
||||||
GenericMaskCodes=Можете да въведете всяка маска за номериране. В тази маска, могат да се използват следните тагове: <br> <b>{000000}</b> съответства на номер, който се увеличава на всеки %s. Влез като много нули като желаната дължина на брояча. Броячът ще бъде завършен с нули от ляво, за да има колкото се може повече нули като маска. <br> <b>{000000 000}</b> същата като предишната, но компенсира, съответстваща на броя на правото на знака + се прилага започва на първи %s. <br> <b>{000000 @}</b> същата като предишната, но броячът се нулира, когато месеца Х е достигнал (Х между 1 и 12, или 0, за да използвате началото на месеца на фискалната година, определени в вашата конфигурация). Ако тази опция се използва и х е 2 или по-висока, тогава последователност {гг} {mm} или {гггг} {mm} също е задължително. <br> <b>{DD}</b> ден (01 до 31). <br> <b>{Mm}</b> месец (01 до 12). <br> <b>{Гг} {гггг}</b> или <b>{Y}</b> година над 2, 4 или 1 брой. <br>
|
GenericMaskCodes=Можете да въведете всяка маска за номериране. В тази маска, могат да се използват следните тагове: <br> <b>{000000}</b> съответства на номер, който се увеличава на всеки %s. Влез като много нули като желаната дължина на брояча. Броячът ще бъде завършен с нули от ляво, за да има колкото се може повече нули като маска. <br> <b>{000000 000}</b> същата като предишната, но компенсира, съответстваща на броя на правото на знака + се прилага започва на първи %s. <br> <b>{000000 @}</b> същата като предишната, но броячът се нулира, когато месеца Х е достигнал (Х между 1 и 12, или 0, за да използвате началото на месеца на фискалната година, определени в вашата конфигурация). Ако тази опция се използва и х е 2 или по-висока, тогава последователност {гг} {mm} или {гггг} {mm} също е задължително. <br> <b>{DD}</b> ден (01 до 31). <br> <b>{Mm}</b> месец (01 до 12). <br> <b>{Гг} {гггг}</b> или <b>{Y}</b> година над 2, 4 или 1 брой. <br>
|
||||||
GenericMaskCodes2=<b>{cccc}</b> клиентския код в знака n <br><b>{cccc000}</b>клиентския код в знак n се следва от брояч предназначен за клиента. Този брояч предназначен за клиента се нулира в същото време в което и глобалния брояч.<br><b>{tttt}</b> Кодът на типа контрагенти в знака n (погледнете речник-типове контрагенти).<br>
|
GenericMaskCodes2=<b>{cccc}</b> the client code on n characters<br><b>{cccc000}</b> the client code on n characters is followed by a counter dedicated for customer. This counter dedicated to customer is reset at same time than global counter.<br><b>{tttt}</b> The code of third party type on n characters (see dictionary-thirdparty types).<br>
|
||||||
GenericMaskCodes3=Всички други символи на маската ще останат непокътнати. <br> Интервалите не са разрешени. <br>
|
GenericMaskCodes3=Всички други символи на маската ще останат непокътнати. <br> Интервалите не са разрешени. <br>
|
||||||
GenericMaskCodes4a=<u>Пример за използване на 99 %s на третата страна КОМПАНИЯТА извършва 2007-01-31:</u> <br>
|
GenericMaskCodes4a=<u>Пример за използване на 99 %s на третата страна КОМПАНИЯТА извършва 2007-01-31:</u> <br>
|
||||||
GenericMaskCodes4b=<u>Пример за контрагент е създаден на 2007-03-01:</u> <br>
|
GenericMaskCodes4b=<u>Пример за контрагент е създаден на 2007-03-01:</u> <br>
|
||||||
@ -331,7 +338,7 @@ UrlGenerationParameters=Параметри за осигуряване на URL
|
|||||||
SecurityTokenIsUnique=Използвайте уникална параметър securekey за всеки URL
|
SecurityTokenIsUnique=Използвайте уникална параметър securekey за всеки URL
|
||||||
EnterRefToBuildUrl=Въведете справка за обект %s
|
EnterRefToBuildUrl=Въведете справка за обект %s
|
||||||
GetSecuredUrl=Изчислява URL
|
GetSecuredUrl=Изчислява URL
|
||||||
ButtonHideUnauthorized=Скриване на бутоните за неправомерни действия, вместо да се показва с увреждания бутони
|
ButtonHideUnauthorized=Hide buttons to non admin users for unauthorized actions instead of showing greyed disabled buttons
|
||||||
OldVATRates=Old ставка на ДДС
|
OldVATRates=Old ставка на ДДС
|
||||||
NewVATRates=Нов ставка на ДДС
|
NewVATRates=Нов ставка на ДДС
|
||||||
PriceBaseTypeToChange=Промяна на цените с база референтна стойност, определена на
|
PriceBaseTypeToChange=Промяна на цените с база референтна стойност, определена на
|
||||||
@ -349,6 +356,7 @@ ExtrafieldMail = Имейл
|
|||||||
ExtrafieldSelect = Избор лист
|
ExtrafieldSelect = Избор лист
|
||||||
ExtrafieldSelectList = Избор от таблица
|
ExtrafieldSelectList = Избор от таблица
|
||||||
ExtrafieldSeparator=Разделител
|
ExtrafieldSeparator=Разделител
|
||||||
|
ExtrafieldPassword=Password
|
||||||
ExtrafieldCheckBox=Отметка
|
ExtrafieldCheckBox=Отметка
|
||||||
ExtrafieldRadio=Радио бутон
|
ExtrafieldRadio=Радио бутон
|
||||||
ExtrafieldCheckBoxFromList= Checkbox from table
|
ExtrafieldCheckBoxFromList= Checkbox from table
|
||||||
@ -383,11 +391,14 @@ EnableFileCache=Пусни кеширането на файла
|
|||||||
ShowDetailsInPDFPageFoot=Add more details into footer of PDF files, like your company address, or manager names (to complete professional ids, company capital and VAT number).
|
ShowDetailsInPDFPageFoot=Add more details into footer of PDF files, like your company address, or manager names (to complete professional ids, company capital and VAT number).
|
||||||
NoDetails=No more details in footer
|
NoDetails=No more details in footer
|
||||||
DisplayCompanyInfo=Display company address
|
DisplayCompanyInfo=Display company address
|
||||||
DisplayCompanyInfoAndManagers=Display company and manager names
|
DisplayCompanyManagers=Display manager names
|
||||||
|
DisplayCompanyInfoAndManagers=Display company address and manager names
|
||||||
EnableAndSetupModuleCron=If you want to have this recurring invoice beeing generated automatically, module *%s* must be enabled and correctly setup. Otherwise, generation of invoices must be done manually from this template with button *Create*. Note that even if you enabled automatic generation, you can still safely launch manual generation. Duplicates generation for same period are not possible.
|
EnableAndSetupModuleCron=If you want to have this recurring invoice beeing generated automatically, module *%s* must be enabled and correctly setup. Otherwise, generation of invoices must be done manually from this template with button *Create*. Note that even if you enabled automatic generation, you can still safely launch manual generation. Duplicates generation for same period are not possible.
|
||||||
ModuleCompanyCodeAquarium=Return an accountancy code built by:<br>%s followed by third party supplier code for a supplier accountancy code,<br>%s followed by third party customer code for a customer accountancy code.
|
ModuleCompanyCodeAquarium=Return an accountancy code built by:<br>%s followed by third party supplier code for a supplier accountancy code,<br>%s followed by third party customer code for a customer accountancy code.
|
||||||
ModuleCompanyCodePanicum=Return an empty accountancy code.
|
ModuleCompanyCodePanicum=Return an empty accountancy code.
|
||||||
ModuleCompanyCodeDigitaria=Accountancy code depends on third party code. The code is composed of the character "C" in the first position followed by the first 5 characters of the third party code.
|
ModuleCompanyCodeDigitaria=Accountancy code depends on third party code. The code is composed of the character "C" in the first position followed by the first 5 characters of the third party code.
|
||||||
|
Use3StepsApproval=By default, Purchase Orders need to be created and approved by 2 different users (one step/user to create and one step/user to approve. Note that if user has both permission to create and approve, one step/user will be enough). You can ask with this option to introduce an third step/user approval, if amount is higher than a dedicated value (so 3 steps will be necessary: 1 validation, 2=first approval and 3=second approval if amount is enough).<br>Set this to empty if one approval (2 steps) is enough, set it to a very low value (0.1) if a second approval is always required.
|
||||||
|
UseDoubleApproval=Use a 3 steps approval when amount (without tax) is higher than...
|
||||||
|
|
||||||
# Modules
|
# Modules
|
||||||
Module0Name=Потребители и групи
|
Module0Name=Потребители и групи
|
||||||
@ -428,8 +439,8 @@ Module55Name=Баркодове
|
|||||||
Module55Desc=Управление на баркод
|
Module55Desc=Управление на баркод
|
||||||
Module56Name=Телефония
|
Module56Name=Телефония
|
||||||
Module56Desc=Телефония интеграция
|
Module56Desc=Телефония интеграция
|
||||||
Module57Name=Постоянните поръчки
|
Module57Name=Direct bank payment orders
|
||||||
Module57Desc=Standing orders and withdrawal management. Also includes generation of SEPA file for european countries.
|
Module57Desc=Management of Direct Debit payment orders. It includes generation of SEPA file for european countries.
|
||||||
Module58Name=ClickToDial
|
Module58Name=ClickToDial
|
||||||
Module58Desc=Интеграция на ClickToDial система (Asterisk, ...)
|
Module58Desc=Интеграция на ClickToDial система (Asterisk, ...)
|
||||||
Module59Name=Bookmark4u
|
Module59Name=Bookmark4u
|
||||||
@ -466,8 +477,8 @@ Module410Name=Webcalendar
|
|||||||
Module410Desc=Webcalendar интеграция
|
Module410Desc=Webcalendar интеграция
|
||||||
Module500Name=Special expenses
|
Module500Name=Special expenses
|
||||||
Module500Desc=Management of special expenses (taxes, social or fiscal taxes, dividends)
|
Module500Desc=Management of special expenses (taxes, social or fiscal taxes, dividends)
|
||||||
Module510Name=Salaries
|
Module510Name=Employee contracts and salaries
|
||||||
Module510Desc=Management of employees salaries and payments
|
Module510Desc=Management of employees contracts, salaries and payments
|
||||||
Module520Name=Loan
|
Module520Name=Loan
|
||||||
Module520Desc=Management of loans
|
Module520Desc=Management of loans
|
||||||
Module600Name=Известия
|
Module600Name=Известия
|
||||||
@ -606,10 +617,10 @@ Permission142=Create/modify all projects and tasks (also private projects i am n
|
|||||||
Permission144=Delete all projects and tasks (also private projects i am not contact for)
|
Permission144=Delete all projects and tasks (also private projects i am not contact for)
|
||||||
Permission146=Прочети доставчици
|
Permission146=Прочети доставчици
|
||||||
Permission147=Прочети статистиката
|
Permission147=Прочети статистиката
|
||||||
Permission151=Нареждания за периодични преводи
|
Permission151=Read direct debit payment orders
|
||||||
Permission152=Създаване / промяна на постоянни нареждания, искане
|
Permission152=Create/modify a direct debit payment orders
|
||||||
Permission153=Кутия постоянни нареждания разписки
|
Permission153=Send/Transmit direct debit payment orders
|
||||||
Permission154=Кредит / отказват постоянни постъпления поръчки
|
Permission154=Record Credits/Rejects of direct debit payment orders
|
||||||
Permission161=Read contracts/subscriptions
|
Permission161=Read contracts/subscriptions
|
||||||
Permission162=Create/modify contracts/subscriptions
|
Permission162=Create/modify contracts/subscriptions
|
||||||
Permission163=Activate a service/subscription of a contract
|
Permission163=Activate a service/subscription of a contract
|
||||||
@ -747,6 +758,7 @@ Permission1236=Експорт на доставни фактури, атрибу
|
|||||||
Permission1237=Експорт на доставни поръчки и техните детайли
|
Permission1237=Експорт на доставни поръчки и техните детайли
|
||||||
Permission1251=Пусни масов внос на външни данни в базата данни (данни товара)
|
Permission1251=Пусни масов внос на външни данни в базата данни (данни товара)
|
||||||
Permission1321=Износ на клиентите фактури, атрибути и плащания
|
Permission1321=Износ на клиентите фактури, атрибути и плащания
|
||||||
|
Permission1322=Reopen a paid bill
|
||||||
Permission1421=Износ на клиентски поръчки и атрибути
|
Permission1421=Износ на клиентски поръчки и атрибути
|
||||||
Permission20001=Read leave requests (yours and your subordinates)
|
Permission20001=Read leave requests (yours and your subordinates)
|
||||||
Permission20002=Create/modify your leave requests
|
Permission20002=Create/modify your leave requests
|
||||||
@ -780,6 +792,10 @@ Permission55002=Create/modify polls
|
|||||||
Permission59001=Read commercial margins
|
Permission59001=Read commercial margins
|
||||||
Permission59002=Define commercial margins
|
Permission59002=Define commercial margins
|
||||||
Permission59003=Read every user margin
|
Permission59003=Read every user margin
|
||||||
|
Permission63001=Read resources
|
||||||
|
Permission63002=Create/modify resources
|
||||||
|
Permission63003=Delete resources
|
||||||
|
Permission63004=Link resources to agenda events
|
||||||
DictionaryCompanyType=Types of thirdparties
|
DictionaryCompanyType=Types of thirdparties
|
||||||
DictionaryCompanyJuridicalType=Legal forms of thirdparties
|
DictionaryCompanyJuridicalType=Legal forms of thirdparties
|
||||||
DictionaryProspectLevel=Prospect potential level
|
DictionaryProspectLevel=Prospect potential level
|
||||||
@ -853,6 +869,7 @@ LabelUsedByDefault=Label used by default if no translation can be found for code
|
|||||||
LabelOnDocuments=Етикет на документи
|
LabelOnDocuments=Етикет на документи
|
||||||
NbOfDays=Nb дни
|
NbOfDays=Nb дни
|
||||||
AtEndOfMonth=В края на месеца
|
AtEndOfMonth=В края на месеца
|
||||||
|
CurrentNext=Current/Next
|
||||||
Offset=Офсет
|
Offset=Офсет
|
||||||
AlwaysActive=Винаги активна
|
AlwaysActive=Винаги активна
|
||||||
Upgrade=Обновяване
|
Upgrade=Обновяване
|
||||||
@ -950,7 +967,7 @@ LogEventDesc=Можете да разрешите тук сеч за събит
|
|||||||
AreaForAdminOnly=Тези функции могат да се използват само от <b>администратори</b>.
|
AreaForAdminOnly=Тези функции могат да се използват само от <b>администратори</b>.
|
||||||
SystemInfoDesc=Информационна система Разни техническа информация можете да получите в режим само за четене и видими само за администратори.
|
SystemInfoDesc=Информационна система Разни техническа информация можете да получите в режим само за четене и видими само за администратори.
|
||||||
SystemAreaForAdminOnly=Тази област е достъпна само за администратори. Никой не може да промени това ограничение.
|
SystemAreaForAdminOnly=Тази област е достъпна само за администратори. Никой не може да промени това ограничение.
|
||||||
CompanyFundationDesc=От тази страница се редактира цялата информация на фирмата или организацията (За тази цел кликнете на бутона "Промяна" в долната част на страницата).
|
CompanyFundationDesc=Edit on this page all known information of the company or foundation you need to manage (For this, click on "Modify" or "Save" button at bottom of page)
|
||||||
DisplayDesc=От тук можете да изберете параметрите свързани с външния вид на Dolibar
|
DisplayDesc=От тук можете да изберете параметрите свързани с външния вид на Dolibar
|
||||||
AvailableModules=Налични модули
|
AvailableModules=Налични модули
|
||||||
ToActivateModule=За да активирате модули, отидете на настройка пространство (Начало-> Setup-> модули).
|
ToActivateModule=За да активирате модули, отидете на настройка пространство (Начало-> Setup-> модули).
|
||||||
@ -1029,9 +1046,17 @@ SendmailOptionNotComplete=Внимание, на някои системи Linux
|
|||||||
PathToDocuments=Път до документи
|
PathToDocuments=Път до документи
|
||||||
PathDirectory=Директория
|
PathDirectory=Директория
|
||||||
SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
|
SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
|
||||||
TranslationSetup=Конфигурация на превода
|
TranslationSetup=Setup of translation
|
||||||
TranslationDesc=How to set displayed application language<br>* Systemwide: menu <strong>Home - Setup - Display</strong><br>* Per user: <strong>User display setup</strong> tab of user card (click on username at the top of the screen).
|
TranslationKeySearch=Search a translation key or string
|
||||||
TranslationOverwriteDesc=You can also override strings filling the following table. Choose your language from "%s" dropdown, insert the key string found in the lang file (langs/xx_XX/somefile.lang) into "%s" and your new translation into "%s".
|
TranslationOverwriteKey=Overwrite a translation string
|
||||||
|
TranslationDesc=How to set displayed application language :<br>* Systemwide: menu <strong>Home - Setup - Display</strong><br>* Per user: <strong>User display setup</strong> tab of user card (click on username at the top of the screen).
|
||||||
|
TranslationOverwriteDesc=You can also override strings filling the following table. Choose your language from "%s" dropdown, insert the translation key string into "%s" and your new translation into "%s"
|
||||||
|
TranslationOverwriteDesc2=You can use the other tab to help you know translation key to use
|
||||||
|
TranslationString=Translation string
|
||||||
|
CurrentTranslationString=Current translation string
|
||||||
|
WarningAtLeastKeyOrTranslationRequired=A search criteria is required at least for key or translation string
|
||||||
|
NewTranslationStringToShow=New translation string to show
|
||||||
|
OriginalValueWas=The original translation is overwritten. Original value was:<br><br>%s
|
||||||
TotalNumberOfActivatedModules=Общ брой на активираните модули: <b>%s</b> / <b>%s</b>
|
TotalNumberOfActivatedModules=Общ брой на активираните модули: <b>%s</b> / <b>%s</b>
|
||||||
YouMustEnableOneModule=Трябва да даде възможност на най-малко 1 модул
|
YouMustEnableOneModule=Трябва да даде възможност на най-малко 1 модул
|
||||||
ClassNotFoundIntoPathWarning=Class %s not found into PHP path
|
ClassNotFoundIntoPathWarning=Class %s not found into PHP path
|
||||||
@ -1170,7 +1195,7 @@ LDAPServerUseTLS=Използване на TLS
|
|||||||
LDAPServerUseTLSExample=LDAP сървъра използване TLS
|
LDAPServerUseTLSExample=LDAP сървъра използване TLS
|
||||||
LDAPServerDn=Сървър DN
|
LDAPServerDn=Сървър DN
|
||||||
LDAPAdminDn=Administrator DN
|
LDAPAdminDn=Administrator DN
|
||||||
LDAPAdminDnExample=Пълна DN (напр.: CN = adminldap, DC = общество, DC = COM)
|
LDAPAdminDnExample=Complete DN (ex: cn=admin,dc=example,dc=com or cn=Administrator,cn=Users,dc=example,dc=com for active directory)
|
||||||
LDAPPassword=Администраторската парола
|
LDAPPassword=Администраторската парола
|
||||||
LDAPUserDn=Потребителя DN
|
LDAPUserDn=Потребителя DN
|
||||||
LDAPUserDnExample=Пълна DN (EX: OU = потребители, DC = общество, DC = COM)
|
LDAPUserDnExample=Пълна DN (EX: OU = потребители, DC = общество, DC = COM)
|
||||||
@ -1258,7 +1283,7 @@ LDAPFieldCompanyExample=Пример: о
|
|||||||
LDAPFieldSid=SID
|
LDAPFieldSid=SID
|
||||||
LDAPFieldSidExample=Пример: objectsid
|
LDAPFieldSidExample=Пример: objectsid
|
||||||
LDAPFieldEndLastSubscription=Дата на абонамент края
|
LDAPFieldEndLastSubscription=Дата на абонамент края
|
||||||
LDAPFieldTitle=Мнение / Функция
|
LDAPFieldTitle=Job position
|
||||||
LDAPFieldTitleExample=Example: title
|
LDAPFieldTitleExample=Example: title
|
||||||
LDAPSetupNotComplete=LDAP настройка не е пълна (отидете на други раздели)
|
LDAPSetupNotComplete=LDAP настройка не е пълна (отидете на други раздели)
|
||||||
LDAPNoUserOrPasswordProvidedAccessIsReadOnly=Не администратор или парола. LDAP достъп ще бъдат анонимни и в режим само за четене.
|
LDAPNoUserOrPasswordProvidedAccessIsReadOnly=Не администратор или парола. LDAP достъп ще бъдат анонимни и в режим само за четене.
|
||||||
@ -1293,7 +1318,7 @@ ProductServiceSetup=Продукти и услуги модули за наст
|
|||||||
NumberOfProductShowInSelect=Максимален брой продукти в комбинации изберете списъци (0 = без ограничение)
|
NumberOfProductShowInSelect=Максимален брой продукти в комбинации изберете списъци (0 = без ограничение)
|
||||||
ViewProductDescInFormAbility=Визуализация на описания на продукти във формите (в противен случай като изскачащ прозорец подсказка)
|
ViewProductDescInFormAbility=Визуализация на описания на продукти във формите (в противен случай като изскачащ прозорец подсказка)
|
||||||
MergePropalProductCard=Activate in product/service Attached Files tab an option to merge product PDF document to proposal PDF azur if product/service is in the proposal
|
MergePropalProductCard=Activate in product/service Attached Files tab an option to merge product PDF document to proposal PDF azur if product/service is in the proposal
|
||||||
ViewProductDescInThirdpartyLanguageAbility=Визуализация на продукти, описания в thirdparty език
|
ViewProductDescInThirdpartyLanguageAbility=Visualization of products descriptions in the third party language
|
||||||
UseSearchToSelectProductTooltip=Also if you have a large number of product (> 100 000), you can increase speed by setting constant PRODUCT_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string.
|
UseSearchToSelectProductTooltip=Also if you have a large number of product (> 100 000), you can increase speed by setting constant PRODUCT_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string.
|
||||||
UseSearchToSelectProduct=Use a search form to choose a product (rather than a drop-down list).
|
UseSearchToSelectProduct=Use a search form to choose a product (rather than a drop-down list).
|
||||||
SetDefaultBarcodeTypeProducts=Тип баркод по подразбиране за продукти
|
SetDefaultBarcodeTypeProducts=Тип баркод по подразбиране за продукти
|
||||||
@ -1333,7 +1358,7 @@ GenbarcodeLocation=Баркод генериране с инструмент о
|
|||||||
BarcodeInternalEngine=Вътрешен генератор
|
BarcodeInternalEngine=Вътрешен генератор
|
||||||
BarCodeNumberManager=Менажер за автоматично дефиниране на баркод номера
|
BarCodeNumberManager=Менажер за автоматично дефиниране на баркод номера
|
||||||
##### Prelevements #####
|
##### Prelevements #####
|
||||||
WithdrawalsSetup=Настройка Оттегляне модул
|
WithdrawalsSetup=Setup of module Direct debit payment orders
|
||||||
##### ExternalRSS #####
|
##### ExternalRSS #####
|
||||||
ExternalRSSSetup=Настройки на внасянето на външен RSS
|
ExternalRSSSetup=Настройки на внасянето на външен RSS
|
||||||
NewRSS=Нова RSS хранилка
|
NewRSS=Нова RSS хранилка
|
||||||
@ -1506,6 +1531,7 @@ OpenFiscalYear=Open fiscal year
|
|||||||
CloseFiscalYear=Close fiscal year
|
CloseFiscalYear=Close fiscal year
|
||||||
DeleteFiscalYear=Delete fiscal year
|
DeleteFiscalYear=Delete fiscal year
|
||||||
ConfirmDeleteFiscalYear=Are you sure to delete this fiscal year ?
|
ConfirmDeleteFiscalYear=Are you sure to delete this fiscal year ?
|
||||||
|
ShowFiscalYear=Show fiscal year
|
||||||
AlwaysEditable=Can always be edited
|
AlwaysEditable=Can always be edited
|
||||||
MAIN_APPLICATION_TITLE=Force visible name of application (warning: setting your own name here may break autofill login feature when using DoliDroid mobile application)
|
MAIN_APPLICATION_TITLE=Force visible name of application (warning: setting your own name here may break autofill login feature when using DoliDroid mobile application)
|
||||||
NbMajMin=Minimum number of uppercase characters
|
NbMajMin=Minimum number of uppercase characters
|
||||||
@ -1526,7 +1552,7 @@ ListOfNotificationsPerUser=List of notifications per user*
|
|||||||
ListOfNotificationsPerUserOrContact=List of notifications per user* or per contact**
|
ListOfNotificationsPerUserOrContact=List of notifications per user* or per contact**
|
||||||
ListOfFixedNotifications=List of fixed notifications
|
ListOfFixedNotifications=List of fixed notifications
|
||||||
GoOntoUserCardToAddMore=Go on the tab "Notifications" of a user to add or remove notifications for users
|
GoOntoUserCardToAddMore=Go on the tab "Notifications" of a user to add or remove notifications for users
|
||||||
GoOntoContactCardToAddMore=Go on the tab "Notifications" of a thirdparty contact to add or remove notifications for contacts/addresses
|
GoOntoContactCardToAddMore=Go on the tab "Notifications" of a third party to add or remove notifications for contacts/addresses
|
||||||
Threshold=Threshold
|
Threshold=Threshold
|
||||||
BackupDumpWizard=Wizard to build database backup dump file
|
BackupDumpWizard=Wizard to build database backup dump file
|
||||||
SomethingMakeInstallFromWebNotPossible=Installation of external module is not possible from the web interface for the following reason:
|
SomethingMakeInstallFromWebNotPossible=Installation of external module is not possible from the web interface for the following reason:
|
||||||
@ -1538,9 +1564,10 @@ HighlightLinesColor=Цвят за подчертаване на линията,
|
|||||||
TextTitleColor=Цвят на заглавието на страницата
|
TextTitleColor=Цвят на заглавието на страницата
|
||||||
LinkColor=Цвят на връзките
|
LinkColor=Цвят на връзките
|
||||||
PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
|
PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
|
||||||
NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
|
NotSupportedByAllThemes=Will works with core themes, may not be supported by external themes
|
||||||
BackgroundColor=Background color
|
BackgroundColor=Background color
|
||||||
TopMenuBackgroundColor=Background color for Top menu
|
TopMenuBackgroundColor=Background color for Top menu
|
||||||
|
TopMenuDisableImages=Hide images in Top menu
|
||||||
LeftMenuBackgroundColor=Background color for Left menu
|
LeftMenuBackgroundColor=Background color for Left menu
|
||||||
BackgroundTableTitleColor=Background color for Table title line
|
BackgroundTableTitleColor=Background color for Table title line
|
||||||
BackgroundTableLineOddColor=Background color for odd table lines
|
BackgroundTableLineOddColor=Background color for odd table lines
|
||||||
@ -1600,3 +1627,8 @@ UrlToGetKeyToUseAPIs=Url to get token to use API (once token has been received i
|
|||||||
ListOfAvailableAPIs=List of available APIs
|
ListOfAvailableAPIs=List of available APIs
|
||||||
activateModuleDependNotSatisfied=Module "%s" depends on module "%s" that is missing, so module "%1$s" may not work correclty. Please install module "%2$s" or disable module "%1$s" if you want to be safe from any surprise
|
activateModuleDependNotSatisfied=Module "%s" depends on module "%s" that is missing, so module "%1$s" may not work correclty. Please install module "%2$s" or disable module "%1$s" if you want to be safe from any surprise
|
||||||
CommandIsNotInsideAllowedCommands=The command you try to run is not inside list of allowed commands defined into parameter <strong>$dolibarr_main_restrict_os_commands</strong> into <strong>conf.php</strong> file.
|
CommandIsNotInsideAllowedCommands=The command you try to run is not inside list of allowed commands defined into parameter <strong>$dolibarr_main_restrict_os_commands</strong> into <strong>conf.php</strong> file.
|
||||||
|
LandingPage=Landing page
|
||||||
|
SamePriceAlsoForSharedCompanies=If you use a multicompany module, with the choice "Single price", price will be also the same for all companies if products are shared between environments
|
||||||
|
ModuleEnabledAdminMustCheckRights=Module has been activated. Permissions for activated module(s) were given to admin users only. You may need to grant permissions to other users manually if necessary.
|
||||||
|
UserHasNoPermissions=This user has no permission defined
|
||||||
|
TypeCdr=Use "None" if the date of payment term is date of invoice plus a delta in days (delta is field "Nb of days")<br>Use "At end of month", if, after delta, the date must be increased to reach the end of month (+ an optional "Offset" in days)<br>Use "Current/Next" to have payment term date being the first Nth of the month (N is stored into field "Nb of days")
|
||||||
|
|||||||
@ -27,13 +27,9 @@ AllTime=От начало
|
|||||||
Reconciliation=Помирение
|
Reconciliation=Помирение
|
||||||
RIB=Номер на банкова сметка
|
RIB=Номер на банкова сметка
|
||||||
IBAN=IBAN номер
|
IBAN=IBAN номер
|
||||||
IbanValid=IBAN e Валиден
|
|
||||||
IbanNotValid=IBAN е Невалиден
|
|
||||||
BIC=BIC / SWIFT номер
|
BIC=BIC / SWIFT номер
|
||||||
SwiftValid=BIC/SWIFT е Валиден
|
StandingOrders=Direct Debit orders
|
||||||
SwiftNotValid=BIC/SWIFT е Невалиден
|
StandingOrder=Direct debit order
|
||||||
StandingOrders=Постоянни поръчки
|
|
||||||
StandingOrder=Постоянна поръчка
|
|
||||||
AccountStatement=Отчет по сметка
|
AccountStatement=Отчет по сметка
|
||||||
AccountStatementShort=Отчет
|
AccountStatementShort=Отчет
|
||||||
AccountStatements=Извлечения по сметки
|
AccountStatements=Извлечения по сметки
|
||||||
@ -78,6 +74,7 @@ AccountToCredit=Профил на кредитен
|
|||||||
AccountToDebit=Сметка за дебитиране
|
AccountToDebit=Сметка за дебитиране
|
||||||
DisableConciliation=Деактивирате функцията помирение за тази сметка
|
DisableConciliation=Деактивирате функцията помирение за тази сметка
|
||||||
ConciliationDisabled=Помирение функция инвалиди
|
ConciliationDisabled=Помирение функция инвалиди
|
||||||
|
LinkedToAConciliatedTransaction=Linked to a conciliated transaction
|
||||||
StatusAccountOpened=Отворен
|
StatusAccountOpened=Отворен
|
||||||
StatusAccountClosed=Затворен
|
StatusAccountClosed=Затворен
|
||||||
AccountIdShort=Номер
|
AccountIdShort=Номер
|
||||||
@ -87,6 +84,8 @@ AddBankRecordLong=Ръчно добавяне на транзакция
|
|||||||
ConciliatedBy=Съгласуват от
|
ConciliatedBy=Съгласуват от
|
||||||
DateConciliating=Reconcile дата
|
DateConciliating=Reconcile дата
|
||||||
BankLineConciliated=Transaction примири
|
BankLineConciliated=Transaction примири
|
||||||
|
Reconciled=Reconciled
|
||||||
|
NotReconciled=Not reconciled
|
||||||
CustomerInvoicePayment=Клиентско плащане
|
CustomerInvoicePayment=Клиентско плащане
|
||||||
SupplierInvoicePayment=Supplier payment
|
SupplierInvoicePayment=Supplier payment
|
||||||
SubscriptionPayment=Subscription payment
|
SubscriptionPayment=Subscription payment
|
||||||
@ -94,7 +93,8 @@ WithdrawalPayment=Оттегляне плащане
|
|||||||
SocialContributionPayment=Social/fiscal tax payment
|
SocialContributionPayment=Social/fiscal tax payment
|
||||||
BankTransfer=Банков превод
|
BankTransfer=Банков превод
|
||||||
BankTransfers=Банкови преводи
|
BankTransfers=Банкови преводи
|
||||||
TransferDesc=Се прехвърля от една сметка в друга, Dolibarr ще напиша два записа (дебит в източник сметка и кредит в целева сметка, в същия размер. Същия етикет и дата ще бъдат използвани за тази сделка)
|
MenuBankInternalTransfer=Internal transfer
|
||||||
|
TransferDesc=Transfer from one account to another one, Dolibarr will write two records (a debit in source account and a credit in target account. The same amount (except sign), label and date will be used for this transaction)
|
||||||
TransferFrom=От
|
TransferFrom=От
|
||||||
TransferTo=За
|
TransferTo=За
|
||||||
TransferFromToDone=Прехвърлянето от <b>%s</b> на <b>%s</b> на %s <b>%s</b> беше записано.
|
TransferFromToDone=Прехвърлянето от <b>%s</b> на <b>%s</b> на %s <b>%s</b> беше записано.
|
||||||
@ -129,7 +129,7 @@ FutureTransaction=Транзакция в FUTUR. Няма начин за пом
|
|||||||
SelectChequeTransactionAndGenerate=Изберете / филтрирате проверки, за да се включи в проверка за получаването на депозит и кликнете върху "Създаване".
|
SelectChequeTransactionAndGenerate=Изберете / филтрирате проверки, за да се включи в проверка за получаването на депозит и кликнете върху "Създаване".
|
||||||
InputReceiptNumber=Choose the bank statement related with the conciliation. Use a sortable numeric value: YYYYMM or YYYYMMDD
|
InputReceiptNumber=Choose the bank statement related with the conciliation. Use a sortable numeric value: YYYYMM or YYYYMMDD
|
||||||
EventualyAddCategory=В крайна сметка, да посочите категорията, в която да се класифицират записи
|
EventualyAddCategory=В крайна сметка, да посочите категорията, в която да се класифицират записи
|
||||||
ToConciliate=За помирение?
|
ToConciliate=To reconcile ?
|
||||||
ThenCheckLinesAndConciliate=След това проверете линии в отчета на банката и кликнете
|
ThenCheckLinesAndConciliate=След това проверете линии в отчета на банката и кликнете
|
||||||
DefaultRIB=По подразбиране BAN
|
DefaultRIB=По подразбиране BAN
|
||||||
AllRIB=Всички BAN
|
AllRIB=Всички BAN
|
||||||
@ -142,3 +142,6 @@ ConfirmRejectCheck=Are you sure you want to mark this check as rejected ?
|
|||||||
RejectCheckDate=Дата на която чека е върнат
|
RejectCheckDate=Дата на която чека е върнат
|
||||||
CheckRejected=Върнат Чек
|
CheckRejected=Върнат Чек
|
||||||
CheckRejectedAndInvoicesReopened=Върнат Чек и отворена фактура
|
CheckRejectedAndInvoicesReopened=Върнат Чек и отворена фактура
|
||||||
|
BankAccountModelModule=Document templates for bank accounts
|
||||||
|
DocumentModelSepaMandate=Template of SEPA mandate. Usefull for european countries in EEC only.
|
||||||
|
DocumentModelBan=Template to print a page with BAN information.
|
||||||
|
|||||||
@ -142,7 +142,7 @@ ErrorCantCancelIfReplacementInvoiceNotValidated=Грешка, не може да
|
|||||||
BillFrom=От
|
BillFrom=От
|
||||||
BillTo=За
|
BillTo=За
|
||||||
ActionsOnBill=Действия по фактура
|
ActionsOnBill=Действия по фактура
|
||||||
RecurringInvoiceTemplate=Recurring invoice
|
RecurringInvoiceTemplate=Template/Recurring invoice
|
||||||
NoQualifiedRecurringInvoiceTemplateFound=No recurring template invoice qualified for generation.
|
NoQualifiedRecurringInvoiceTemplateFound=No recurring template invoice qualified for generation.
|
||||||
FoundXQualifiedRecurringInvoiceTemplate=Found %s recurring template invoice(s) qualified for generation.
|
FoundXQualifiedRecurringInvoiceTemplate=Found %s recurring template invoice(s) qualified for generation.
|
||||||
NotARecurringInvoiceTemplate=Not a recurring template invoice
|
NotARecurringInvoiceTemplate=Not a recurring template invoice
|
||||||
@ -209,8 +209,8 @@ EscompteOffered=Предложена отстъпка (плащане преди
|
|||||||
EscompteOfferedShort=Discount
|
EscompteOfferedShort=Discount
|
||||||
SendBillRef=Изпращане на фактура %s
|
SendBillRef=Изпращане на фактура %s
|
||||||
SendReminderBillRef=Изпращане на фактура %s (напомняне)
|
SendReminderBillRef=Изпращане на фактура %s (напомняне)
|
||||||
StandingOrders=Стоящи поръчки
|
StandingOrders=Direct debit orders
|
||||||
StandingOrder=Стояща поръчка
|
StandingOrder=Direct debit order
|
||||||
NoDraftBills=Няма чернови фактури
|
NoDraftBills=Няма чернови фактури
|
||||||
NoOtherDraftBills=Няма други чернови фактури
|
NoOtherDraftBills=Няма други чернови фактури
|
||||||
NoDraftInvoices=Няма чернови фактури
|
NoDraftInvoices=Няма чернови фактури
|
||||||
@ -351,8 +351,8 @@ VarAmount=Променлива сума (%% общ.)
|
|||||||
# PaymentType
|
# PaymentType
|
||||||
PaymentTypeVIR=Bank transfer
|
PaymentTypeVIR=Bank transfer
|
||||||
PaymentTypeShortVIR=Bank transfer
|
PaymentTypeShortVIR=Bank transfer
|
||||||
PaymentTypePRE=Банков превод
|
PaymentTypePRE=Direct debit payment order
|
||||||
PaymentTypeShortPRE=Банков превод
|
PaymentTypeShortPRE=Debit payment order
|
||||||
PaymentTypeLIQ=Касово плащане в брой
|
PaymentTypeLIQ=Касово плащане в брой
|
||||||
PaymentTypeShortLIQ=В брой
|
PaymentTypeShortLIQ=В брой
|
||||||
PaymentTypeCB=Плащане с карта
|
PaymentTypeCB=Плащане с карта
|
||||||
@ -381,6 +381,7 @@ ExtraInfos=Допълнителна информация
|
|||||||
RegulatedOn=Регулация на
|
RegulatedOn=Регулация на
|
||||||
ChequeNumber=Чек NВ°
|
ChequeNumber=Чек NВ°
|
||||||
ChequeOrTransferNumber=Чек/трансфер NВ°
|
ChequeOrTransferNumber=Чек/трансфер NВ°
|
||||||
|
ChequeBordereau=Check schedule
|
||||||
ChequeMaker=Check/Transfer transmitter
|
ChequeMaker=Check/Transfer transmitter
|
||||||
ChequeBank=Банка на чека
|
ChequeBank=Банка на чека
|
||||||
CheckBank=Чек
|
CheckBank=Чек
|
||||||
@ -429,6 +430,7 @@ CantRemoveConciliatedPayment=Can't remove conciliated payment
|
|||||||
PayedByThisPayment=Плаща от това плащане
|
PayedByThisPayment=Плаща от това плащане
|
||||||
ClosePaidInvoicesAutomatically=Класифицирай "Платени" всички стандартни, ситуирани или заменящи фактури изцяло платени.
|
ClosePaidInvoicesAutomatically=Класифицирай "Платени" всички стандартни, ситуирани или заменящи фактури изцяло платени.
|
||||||
ClosePaidCreditNotesAutomatically=Класифицирай "Платени" всички кредитни известия изцяло обратно платени.
|
ClosePaidCreditNotesAutomatically=Класифицирай "Платени" всички кредитни известия изцяло обратно платени.
|
||||||
|
ClosePaidContributionsAutomatically=Classify "Paid" all social or fiscal contributions entirely paid.
|
||||||
AllCompletelyPayedInvoiceWillBeClosed=Всички фактура без остатък за плащане, ще бъдат затворени автоматично със статус "Платени".
|
AllCompletelyPayedInvoiceWillBeClosed=Всички фактура без остатък за плащане, ще бъдат затворени автоматично със статус "Платени".
|
||||||
ToMakePayment=Плати
|
ToMakePayment=Плати
|
||||||
ToMakePaymentBack=Плати обратно
|
ToMakePaymentBack=Плати обратно
|
||||||
@ -436,6 +438,7 @@ ListOfYourUnpaidInvoices=Списък с неплатени фактури
|
|||||||
NoteListOfYourUnpaidInvoices=Бележка: Този списък съдържа само фактури за контрагенти, които са свързани като търговски представители.
|
NoteListOfYourUnpaidInvoices=Бележка: Този списък съдържа само фактури за контрагенти, които са свързани като търговски представители.
|
||||||
RevenueStamp=Приходен печат
|
RevenueStamp=Приходен печат
|
||||||
YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of third party
|
YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of third party
|
||||||
|
YouMustCreateInvoiceFromSupplierThird=This option is only available when creating invoice from tab "supplier" of third party
|
||||||
YouMustCreateStandardInvoiceFirstDesc=You have to create a standard invoice first and convert it to "template" to create a new template invoice
|
YouMustCreateStandardInvoiceFirstDesc=You have to create a standard invoice first and convert it to "template" to create a new template invoice
|
||||||
PDFCrabeDescription=Фактурен PDF шаблон. Пълен шаблон за фактура (препоръчителен шаблон)
|
PDFCrabeDescription=Фактурен PDF шаблон. Пълен шаблон за фактура (препоръчителен шаблон)
|
||||||
PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for situation invoices
|
PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for situation invoices
|
||||||
@ -477,4 +480,6 @@ updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
|
|||||||
ToCreateARecurringInvoice=To create a recurring invoice for this contract, first create this draft invoice, then convert it into an invoice template and define the frequency for generation of future invoices.
|
ToCreateARecurringInvoice=To create a recurring invoice for this contract, first create this draft invoice, then convert it into an invoice template and define the frequency for generation of future invoices.
|
||||||
ToCreateARecurringInvoiceGene=To generate future invoices regularly and manually, just go on menu <strong>%s - %s - %s</strong>.
|
ToCreateARecurringInvoiceGene=To generate future invoices regularly and manually, just go on menu <strong>%s - %s - %s</strong>.
|
||||||
ToCreateARecurringInvoiceGeneAuto=If you need to have such invoices generated automatically, ask you administrator to enable and setup module <strong>%s</strong>. Note that both method (manual and automatic) can be used together with no risk of duplication.
|
ToCreateARecurringInvoiceGeneAuto=If you need to have such invoices generated automatically, ask you administrator to enable and setup module <strong>%s</strong>. Note that both method (manual and automatic) can be used together with no risk of duplication.
|
||||||
|
DeleteRepeatableInvoice=Delete template invoice
|
||||||
|
ConfirmDeleteRepeatableInvoice=Are your sure you want to delete the template invoice ?
|
||||||
|
|
||||||
|
|||||||
@ -38,7 +38,7 @@ BoxMyLastBookmarks=My latest %s bookmarks
|
|||||||
BoxOldestExpiredServices=Най-старите действащи изтекли услуги
|
BoxOldestExpiredServices=Най-старите действащи изтекли услуги
|
||||||
BoxLastExpiredServices=Latest %s oldest contacts with active expired services
|
BoxLastExpiredServices=Latest %s oldest contacts with active expired services
|
||||||
BoxTitleLastActionsToDo=Latest %s actions to do
|
BoxTitleLastActionsToDo=Latest %s actions to do
|
||||||
BoxTitleLastContracts=Latest %s contracts
|
BoxTitleLastContracts=Latest %s modified contracts
|
||||||
BoxTitleLastModifiedDonations=Latest %s modified donations
|
BoxTitleLastModifiedDonations=Latest %s modified donations
|
||||||
BoxTitleLastModifiedExpenses=Latest %s modified expense reports
|
BoxTitleLastModifiedExpenses=Latest %s modified expense reports
|
||||||
BoxGlobalActivity=Обща активност (фактури, предложения, поръчки)
|
BoxGlobalActivity=Обща активност (фактури, предложения, поръчки)
|
||||||
@ -72,8 +72,13 @@ BoxProposalsPerMonth=Предложения за месец
|
|||||||
NoTooLowStockProducts=Няма продукт в наличност под минималната
|
NoTooLowStockProducts=Няма продукт в наличност под минималната
|
||||||
BoxProductDistribution=Продукти/Услуги разпределение
|
BoxProductDistribution=Продукти/Услуги разпределение
|
||||||
BoxProductDistributionFor=Разпределение на %s за %s
|
BoxProductDistributionFor=Разпределение на %s за %s
|
||||||
|
BoxTitleLastModifiedSupplierBills=Latest %s modified supplier bills
|
||||||
|
BoxTitleLatestModifiedSupplierOrders=Latest %s modified supplier orders
|
||||||
|
BoxTitleLastModifiedCustomerBills=Latest %s modified customer bills
|
||||||
|
BoxTitleLastModifiedCustomerOrders=Latest %s modified customer orders
|
||||||
|
BoxTitleLastModifiedPropals=Latest %s modified propals
|
||||||
ForCustomersInvoices=Клиента фактури
|
ForCustomersInvoices=Клиента фактури
|
||||||
ForCustomersOrders=Клиентски поръчки
|
ForCustomersOrders=Клиентски поръчки
|
||||||
ForProposals=Предложения
|
ForProposals=Предложения
|
||||||
LastXMonthRolling=The latest %s month rolling
|
LastXMonthRolling=The latest %s month rolling
|
||||||
ChooseBoxToAdd=Add widget to your dashboard...
|
ChooseBoxToAdd=Add widget to your dashboard
|
||||||
|
|||||||
@ -12,10 +12,9 @@ CashDeskOn=на
|
|||||||
CashDeskThirdParty=Контрагент
|
CashDeskThirdParty=Контрагент
|
||||||
ShoppingCart=Кошница
|
ShoppingCart=Кошница
|
||||||
NewSell=Нова продажба
|
NewSell=Нова продажба
|
||||||
BackOffice=Бек офис
|
|
||||||
AddThisArticle=Добави артикула
|
AddThisArticle=Добави артикула
|
||||||
RestartSelling=Обратно към продажбите
|
RestartSelling=Обратно към продажбите
|
||||||
SellFinished=Пазаруването приключи
|
SellFinished=Sale complete
|
||||||
PrintTicket=Отпечатване на билет
|
PrintTicket=Отпечатване на билет
|
||||||
NoProductFound=Няма открит артикул
|
NoProductFound=Няма открит артикул
|
||||||
ProductFound=открит продукт
|
ProductFound=открит продукт
|
||||||
|
|||||||
@ -14,6 +14,7 @@ CustomersCategoriesArea=Зона етикети/категории Клиент
|
|||||||
MembersCategoriesArea=Зона етикети/категории Членове
|
MembersCategoriesArea=Зона етикети/категории Членове
|
||||||
ContactsCategoriesArea=Зона етикети/категории Контакти
|
ContactsCategoriesArea=Зона етикети/категории Контакти
|
||||||
AccountsCategoriesArea=Accounts tags/categories area
|
AccountsCategoriesArea=Accounts tags/categories area
|
||||||
|
ProjectsCategoriesArea=Projects tags/categories area
|
||||||
SubCats=Подкатегории
|
SubCats=Подкатегории
|
||||||
CatList=Списък на етикети/категории
|
CatList=Списък на етикети/категории
|
||||||
NewCategory=Нов етикет/категория
|
NewCategory=Нов етикет/категория
|
||||||
@ -33,9 +34,10 @@ CompanyIsInSuppliersCategories=Това трето лице е свързано
|
|||||||
MemberIsInCategories=Този член е в следните етикети/категории Членове
|
MemberIsInCategories=Този член е в следните етикети/категории Членове
|
||||||
ContactIsInCategories=Този конктакт не в етикети/категории Контакти
|
ContactIsInCategories=Този конктакт не в етикети/категории Контакти
|
||||||
ProductHasNoCategory=Този продукт/услуга не е в нито един етикет/категория
|
ProductHasNoCategory=Този продукт/услуга не е в нито един етикет/категория
|
||||||
CompanyHasNoCategory=Този контрагент не е в нито един етикет/категория
|
CompanyHasNoCategory=This third party is not in any tags/categories
|
||||||
MemberHasNoCategory=Този член не е в нито един етикет/категория
|
MemberHasNoCategory=Този член не е в нито един етикет/категория
|
||||||
ContactHasNoCategory=Този контакт не е в никои етикети/категории
|
ContactHasNoCategory=Този контакт не е в никои етикети/категории
|
||||||
|
ProjectHasNoCategory=This project is not in any tags/categories
|
||||||
ClassifyInCategory=Добавяне в етикет/категория
|
ClassifyInCategory=Добавяне в етикет/категория
|
||||||
NotCategorized=Без етикет/категория
|
NotCategorized=Без етикет/категория
|
||||||
CategoryExistsAtSameLevel=Тази категория вече съществува с този код
|
CategoryExistsAtSameLevel=Тази категория вече съществува с този код
|
||||||
@ -56,12 +58,14 @@ ProductsCategoriesShort=Етикети/категории Продукти
|
|||||||
MembersCategoriesShort=Етикети/категории Членове
|
MembersCategoriesShort=Етикети/категории Членове
|
||||||
ContactCategoriesShort=Етикети/категории Контакти
|
ContactCategoriesShort=Етикети/категории Контакти
|
||||||
AccountsCategoriesShort=Accounts tags/categories
|
AccountsCategoriesShort=Accounts tags/categories
|
||||||
|
ProjectsCategoriesShort=Projects tags/categories
|
||||||
ThisCategoryHasNoProduct=Тази категория не съдържа никакъв продукт.
|
ThisCategoryHasNoProduct=Тази категория не съдържа никакъв продукт.
|
||||||
ThisCategoryHasNoSupplier=Тази категория не съдържа никакъв доставчик.
|
ThisCategoryHasNoSupplier=Тази категория не съдържа никакъв доставчик.
|
||||||
ThisCategoryHasNoCustomer=Тази категория не съдържа никакъв клиент.
|
ThisCategoryHasNoCustomer=Тази категория не съдържа никакъв клиент.
|
||||||
ThisCategoryHasNoMember=Тази категория не съдържа никакъв член.
|
ThisCategoryHasNoMember=Тази категория не съдържа никакъв член.
|
||||||
ThisCategoryHasNoContact=Тази категория не съдържа никакъв контакт
|
ThisCategoryHasNoContact=Тази категория не съдържа никакъв контакт
|
||||||
ThisCategoryHasNoAccount=This category does not contain any account.
|
ThisCategoryHasNoAccount=This category does not contain any account.
|
||||||
|
ThisCategoryHasNoProject=This category does not contain any project.
|
||||||
CategId=Етикет/категория id
|
CategId=Етикет/категория id
|
||||||
CatSupList=Списък на етикети/категории Доставчици
|
CatSupList=Списък на етикети/категории Доставчици
|
||||||
CatCusList=Списък на етикети/категории Клиенти/Потенциални Клиенти
|
CatCusList=Списък на етикети/категории Клиенти/Потенциални Клиенти
|
||||||
@ -71,6 +75,7 @@ CatContactList=Списък на етикети/категории Контак
|
|||||||
CatSupLinks=Връзки между доставчици и етикети/категории
|
CatSupLinks=Връзки между доставчици и етикети/категории
|
||||||
CatCusLinks=Връзки между клиенти/потенциални клиенти и етикети/категории
|
CatCusLinks=Връзки между клиенти/потенциални клиенти и етикети/категории
|
||||||
CatProdLinks=Връзки между продукти/услуги и етикети/категории
|
CatProdLinks=Връзки между продукти/услуги и етикети/категории
|
||||||
|
CatProJectLinks=Links between projects and tags/categories
|
||||||
DeleteFromCat=Изтриване от етикети/категории
|
DeleteFromCat=Изтриване от етикети/категории
|
||||||
ExtraFieldsCategories=Допълнителни атрибути
|
ExtraFieldsCategories=Допълнителни атрибути
|
||||||
CategoriesSetup=Етикети/категории настройка
|
CategoriesSetup=Етикети/категории настройка
|
||||||
|
|||||||
@ -13,6 +13,8 @@ MenuNewPrivateIndividual=Ново физическо лице
|
|||||||
NewCompany=Нова фирма (потенциален, клиент, доставчик)
|
NewCompany=Нова фирма (потенциален, клиент, доставчик)
|
||||||
NewThirdParty=Нов контрагент (потенциален, клиент, доставчик)
|
NewThirdParty=Нов контрагент (потенциален, клиент, доставчик)
|
||||||
CreateDolibarrThirdPartySupplier=Създаване на контрагент (доставчик)
|
CreateDolibarrThirdPartySupplier=Създаване на контрагент (доставчик)
|
||||||
|
CreateThirdPartyOnly=Create thirdpary
|
||||||
|
CreateThirdPartyAndContact=Create a third party + a child contact
|
||||||
ProspectionArea=Област потенциални
|
ProspectionArea=Област потенциални
|
||||||
IdThirdParty=ID на контрагент
|
IdThirdParty=ID на контрагент
|
||||||
IdCompany=ID на фирма
|
IdCompany=ID на фирма
|
||||||
@ -38,7 +40,7 @@ ThirdPartySuppliers=Доставчици
|
|||||||
ThirdPartyType=Вид на контрагент
|
ThirdPartyType=Вид на контрагент
|
||||||
Company/Fundation=Фирма/Организация
|
Company/Fundation=Фирма/Организация
|
||||||
Individual=Частно лице
|
Individual=Частно лице
|
||||||
ToCreateContactWithSameName=Автоматично ще създаде физически контакт със същата информация
|
ToCreateContactWithSameName=Will create automatically a contact/address with same information than third party under the third party. In most cases, even if your third party is a physical people, creating a third party alone is enough.
|
||||||
ParentCompany=Фирма майка
|
ParentCompany=Фирма майка
|
||||||
Subsidiaries=Филиали
|
Subsidiaries=Филиали
|
||||||
ReportByCustomers=Отчет по клиенти
|
ReportByCustomers=Отчет по клиенти
|
||||||
@ -47,7 +49,7 @@ CivilityCode=Граждански код
|
|||||||
RegisteredOffice=Седалище
|
RegisteredOffice=Седалище
|
||||||
Lastname=Фамилия
|
Lastname=Фамилия
|
||||||
Firstname=Собствено име
|
Firstname=Собствено име
|
||||||
PostOrFunction=Пост/длъжност
|
PostOrFunction=Job position
|
||||||
UserTitle=Звание
|
UserTitle=Звание
|
||||||
Address=Адрес
|
Address=Адрес
|
||||||
State=Област
|
State=Област
|
||||||
@ -64,7 +66,7 @@ Chat=Чат
|
|||||||
PhonePro=Сл. телефон
|
PhonePro=Сл. телефон
|
||||||
PhonePerso=Дом. телефон
|
PhonePerso=Дом. телефон
|
||||||
PhoneMobile=Моб. телефон
|
PhoneMobile=Моб. телефон
|
||||||
No_Email=Да не се изпращат масови електронни писма
|
No_Email=Refuse mass e-mailings
|
||||||
Fax=Факс
|
Fax=Факс
|
||||||
Zip=Пощенски код
|
Zip=Пощенски код
|
||||||
Town=Град
|
Town=Град
|
||||||
@ -73,7 +75,7 @@ Poste= Позиция
|
|||||||
DefaultLang=Език по подразбиране
|
DefaultLang=Език по подразбиране
|
||||||
VATIsUsed=ДДС се използва
|
VATIsUsed=ДДС се използва
|
||||||
VATIsNotUsed=ДДС не се използва
|
VATIsNotUsed=ДДС не се използва
|
||||||
CopyAddressFromSoc=Попълнете адреса на контрагента
|
CopyAddressFromSoc=Fill address with third party address
|
||||||
ThirdpartyNotCustomerNotSupplierSoNoRef=Thirdparty neither customer nor supplier, no available refering objects
|
ThirdpartyNotCustomerNotSupplierSoNoRef=Thirdparty neither customer nor supplier, no available refering objects
|
||||||
##### Local Taxes #####
|
##### Local Taxes #####
|
||||||
LocalTax1IsUsed=Използване на втора такса
|
LocalTax1IsUsed=Използване на втора такса
|
||||||
@ -239,7 +241,6 @@ ProfId6RU=-
|
|||||||
VATIntra=Номер по ДДС
|
VATIntra=Номер по ДДС
|
||||||
VATIntraShort=ДДС номер
|
VATIntraShort=ДДС номер
|
||||||
VATIntraSyntaxIsValid=Синтаксиса е валиден
|
VATIntraSyntaxIsValid=Синтаксиса е валиден
|
||||||
VATIntraValueIsValid=Стойността е валидна
|
|
||||||
ProspectCustomer=Потенциален / Клиент
|
ProspectCustomer=Потенциален / Клиент
|
||||||
Prospect=Потенциален
|
Prospect=Потенциален
|
||||||
CustomerCard=Клиентска карта
|
CustomerCard=Клиентска карта
|
||||||
@ -261,7 +262,9 @@ AddContactAddress=Създй контакт/адрес
|
|||||||
EditContact=Редактиране на контакт
|
EditContact=Редактиране на контакт
|
||||||
EditContactAddress=Редактиране на контакт/адрес
|
EditContactAddress=Редактиране на контакт/адрес
|
||||||
Contact=Контакт
|
Contact=Контакт
|
||||||
|
ContactId=Contact id
|
||||||
ContactsAddresses=Контакти/Адреси
|
ContactsAddresses=Контакти/Адреси
|
||||||
|
FromContactName=Name:
|
||||||
NoContactDefinedForThirdParty=Няма зададен контакт за тази контрагент
|
NoContactDefinedForThirdParty=Няма зададен контакт за тази контрагент
|
||||||
NoContactDefined=Няма зададен контакт
|
NoContactDefined=Няма зададен контакт
|
||||||
DefaultContact=Контакт/адрес по подразбиране
|
DefaultContact=Контакт/адрес по подразбиране
|
||||||
@ -284,7 +287,7 @@ CompanyDeleted=Фирма "%s" е изтрита от базата данни.
|
|||||||
ListOfContacts=Списък на контакти/адреси
|
ListOfContacts=Списък на контакти/адреси
|
||||||
ListOfContactsAddresses=Списък на контакти/адреси
|
ListOfContactsAddresses=Списък на контакти/адреси
|
||||||
ListOfThirdParties=Списък на контрагенти
|
ListOfThirdParties=Списък на контрагенти
|
||||||
ShowCompany=Позване на трето лице
|
ShowCompany=Show third party
|
||||||
ShowContact=Покажи контакт
|
ShowContact=Покажи контакт
|
||||||
ContactsAllShort=Всички (без филтър)
|
ContactsAllShort=Всички (без филтър)
|
||||||
ContactType=Тип на контакт
|
ContactType=Тип на контакт
|
||||||
@ -294,6 +297,7 @@ ContactForProposals=Контакт за предложение
|
|||||||
ContactForContracts=Контакт за договор
|
ContactForContracts=Контакт за договор
|
||||||
ContactForInvoices=Контакт за фактура
|
ContactForInvoices=Контакт за фактура
|
||||||
NoContactForAnyOrder=Този контакт не е контакт за поръчка
|
NoContactForAnyOrder=Този контакт не е контакт за поръчка
|
||||||
|
NoContactForAnyOrderOrShipments=This contact is not a contact for any order or shipment
|
||||||
NoContactForAnyProposal=Този контакт не е контакт за търговско предложение
|
NoContactForAnyProposal=Този контакт не е контакт за търговско предложение
|
||||||
NoContactForAnyContract=Този контакт не е контакт за договор
|
NoContactForAnyContract=Този контакт не е контакт за договор
|
||||||
NoContactForAnyInvoice=Този контакт не е контакт за фактура
|
NoContactForAnyInvoice=Този контакт не е контакт за фактура
|
||||||
@ -352,9 +356,9 @@ ExportCardToFormat=Износна карта формат
|
|||||||
ContactNotLinkedToCompany=Контактът не е свързан с никой контрагент
|
ContactNotLinkedToCompany=Контактът не е свързан с никой контрагент
|
||||||
DolibarrLogin=Dolibarr вход
|
DolibarrLogin=Dolibarr вход
|
||||||
NoDolibarrAccess=Няма Dolibarr достъп
|
NoDolibarrAccess=Няма Dolibarr достъп
|
||||||
ExportDataset_company_1=Контрагенти (Компании/организации/физически лица) и имущество
|
ExportDataset_company_1=Third parties (Companies / foundations / physical people) and properties
|
||||||
ExportDataset_company_2=Контакти и свойства
|
ExportDataset_company_2=Контакти и свойства
|
||||||
ImportDataset_company_1=Контрагенти (Компании/организации/физически лица) и имущество
|
ImportDataset_company_1=Third parties (Companies / foundations / physical people) and properties
|
||||||
ImportDataset_company_2=Контакти/адреси (на контрагенти или не) и атрибути
|
ImportDataset_company_2=Контакти/адреси (на контрагенти или не) и атрибути
|
||||||
ImportDataset_company_3=Банкови данни
|
ImportDataset_company_3=Банкови данни
|
||||||
ImportDataset_company_4=Контрагети/Търговски представители (Засяга потребителите, търговски представители на фирми)
|
ImportDataset_company_4=Контрагети/Търговски представители (Засяга потребителите, търговски представители на фирми)
|
||||||
@ -393,3 +397,5 @@ ThirdpartiesMergeSuccess=Контрагентите бяха обединени
|
|||||||
SaleRepresentativeLogin=Login of sales representative
|
SaleRepresentativeLogin=Login of sales representative
|
||||||
SaleRepresentativeFirstname=Firstname of sales representative
|
SaleRepresentativeFirstname=Firstname of sales representative
|
||||||
SaleRepresentativeLastname=Lastname of sales representative
|
SaleRepresentativeLastname=Lastname of sales representative
|
||||||
|
ErrorThirdpartiesMerge=There was an error when deleting the thirdparties. Please check the log. Changes have been reverted.
|
||||||
|
NewCustomerSupplierCodeProposed=New customer or supplier code suggested on duplicate code
|
||||||
|
|||||||
@ -49,6 +49,8 @@ SocialContribution=Социални или фискални данъци
|
|||||||
SocialContributions=Социални или фискални данъци
|
SocialContributions=Социални или фискални данъци
|
||||||
SocialContributionsDeductibles=Deductible social or fiscal taxes
|
SocialContributionsDeductibles=Deductible social or fiscal taxes
|
||||||
SocialContributionsNondeductibles=Nondeductible social or fiscal taxes
|
SocialContributionsNondeductibles=Nondeductible social or fiscal taxes
|
||||||
|
LabelContrib=Label contribution
|
||||||
|
TypeContrib=Type contribution
|
||||||
MenuSpecialExpenses=Специални разходи
|
MenuSpecialExpenses=Специални разходи
|
||||||
MenuTaxAndDividends=Данъци и дивиденти
|
MenuTaxAndDividends=Данъци и дивиденти
|
||||||
MenuSocialContributions=Social/fiscal taxes
|
MenuSocialContributions=Social/fiscal taxes
|
||||||
|
|||||||
@ -7,7 +7,7 @@ Permission23103 = Изтриване на Планирана задача
|
|||||||
Permission23104 = Изпълнение на Планирана задача
|
Permission23104 = Изпълнение на Планирана задача
|
||||||
# Admin
|
# Admin
|
||||||
CronSetup= Настройки за управление на Планирани задачи
|
CronSetup= Настройки за управление на Планирани задачи
|
||||||
URLToLaunchCronJobs=URL за проверка и зареждане на cron задачи ако е нужно
|
URLToLaunchCronJobs=URL to check and launch qualified cron jobs
|
||||||
OrToLaunchASpecificJob=Или за проверка и зареждане на специфична задача
|
OrToLaunchASpecificJob=Или за проверка и зареждане на специфична задача
|
||||||
KeyForCronAccess=Защитен ключ на URL за зареждане на cron задачи
|
KeyForCronAccess=Защитен ключ на URL за зареждане на cron задачи
|
||||||
FileToLaunchCronJobs=Команден ред за изпъление на cron задача
|
FileToLaunchCronJobs=Команден ред за изпъление на cron задача
|
||||||
@ -23,7 +23,7 @@ CronCommand=Команда
|
|||||||
CronList=Планирани задачи
|
CronList=Планирани задачи
|
||||||
CronDelete=Изтриване на планирани задачи
|
CronDelete=Изтриване на планирани задачи
|
||||||
CronConfirmDelete=Сигурни ли сте, че искате да изтриете тези планирани задачи ?
|
CronConfirmDelete=Сигурни ли сте, че искате да изтриете тези планирани задачи ?
|
||||||
CronExecute=Зареждане на планирани задачи
|
CronExecute=Launch scheduled job
|
||||||
CronConfirmExecute=Сигурни ли сте, че искате да се изпълнят тези планирани задачи сега ?
|
CronConfirmExecute=Сигурни ли сте, че искате да се изпълнят тези планирани задачи сега ?
|
||||||
CronInfo=Модул Планирана задача позволява да се изпълни задача, която е била планирана
|
CronInfo=Модул Планирана задача позволява да се изпълни задача, която е била планирана
|
||||||
CronTask=Задача
|
CronTask=Задача
|
||||||
@ -39,7 +39,7 @@ CronMethod=Метод
|
|||||||
CronModule=Модул
|
CronModule=Модул
|
||||||
CronNoJobs=Няма регистрирани задачи
|
CronNoJobs=Няма регистрирани задачи
|
||||||
CronPriority=Приоритет
|
CronPriority=Приоритет
|
||||||
CronLabel=Описание
|
CronLabel=Label
|
||||||
CronNbRun=Nb. зареждане
|
CronNbRun=Nb. зареждане
|
||||||
CronMaxRun=Max nb. launch
|
CronMaxRun=Max nb. launch
|
||||||
CronEach=Всеки
|
CronEach=Всеки
|
||||||
@ -76,3 +76,4 @@ UseMenuModuleToolsToAddCronJobs=Go into menu "Home - Admin tools - Scheduled job
|
|||||||
JobDisabled=Job disabled
|
JobDisabled=Job disabled
|
||||||
MakeLocalDatabaseDumpShort=Local database backup
|
MakeLocalDatabaseDumpShort=Local database backup
|
||||||
MakeLocalDatabaseDump=Create a local database dump
|
MakeLocalDatabaseDump=Create a local database dump
|
||||||
|
WarningCronDelayed=Attention, for performance purpose, whatever is next date of execution of active jobs, your jobs may be delayed to a maximum of %s hours before being run.
|
||||||
|
|||||||
@ -174,6 +174,8 @@ ErrorStockIsNotEnoughToAddProductOnOrder=Stock is not enougth for product %s to
|
|||||||
ErrorStockIsNotEnoughToAddProductOnInvoice=Stock is not enougth for product %s to add it into a new invoice.
|
ErrorStockIsNotEnoughToAddProductOnInvoice=Stock is not enougth for product %s to add it into a new invoice.
|
||||||
ErrorStockIsNotEnoughToAddProductOnShipment=Stock is not enougth for product %s to add it into a new shipment.
|
ErrorStockIsNotEnoughToAddProductOnShipment=Stock is not enougth for product %s to add it into a new shipment.
|
||||||
ErrorStockIsNotEnoughToAddProductOnProposal=Stock is not enougth for product %s to add it into a new proposal.
|
ErrorStockIsNotEnoughToAddProductOnProposal=Stock is not enougth for product %s to add it into a new proposal.
|
||||||
|
ErrorFailedToLoadLoginFileForMode=Failed to get the login file for mode '%s'.
|
||||||
|
ErrorModuleNotFound=File of module was not found.
|
||||||
|
|
||||||
# Warnings
|
# Warnings
|
||||||
WarningPasswordSetWithNoAccount=Парола е зададено за този член. Обаче, няма създаден потребителски акаунт. Следователно тази парола е записана, но не може да бъде използвана за влизане в Dolibarr. Може да бъде използвана от външен модул/интерфейс, но ако нямате нужда да определите нито потребителско име нито парола за член, можете да деактивирате тази опция. Ако имате нужда да управлявате потребителско име, но нямата нужда от парола, можете да оставите това поле празно, за да избегнете това предупреждение. Забележка: Имейл също може да бъде използван като потребителско име ако члена с свързан към потребител.
|
WarningPasswordSetWithNoAccount=Парола е зададено за този член. Обаче, няма създаден потребителски акаунт. Следователно тази парола е записана, но не може да бъде използвана за влизане в Dolibarr. Може да бъде използвана от външен модул/интерфейс, но ако нямате нужда да определите нито потребителско име нито парола за член, можете да деактивирате тази опция. Ако имате нужда да управлявате потребителско име, но нямата нужда от парола, можете да оставите това поле празно, за да избегнете това предупреждение. Забележка: Имейл също може да бъде използван като потребителско име ако члена с свързан към потребител.
|
||||||
|
|||||||
@ -11,12 +11,14 @@ PHPSupportSessions=PHP поддържа сесии.
|
|||||||
PHPSupportPOSTGETOk=PHP поддържа променливи POST и GET.
|
PHPSupportPOSTGETOk=PHP поддържа променливи POST и GET.
|
||||||
PHPSupportPOSTGETKo=Възможно е PHP настройките Ви да не поддържат променливи POST и / или GET. Проверете параметър <b>variables_order</b> в php.ini.
|
PHPSupportPOSTGETKo=Възможно е PHP настройките Ви да не поддържат променливи POST и / или GET. Проверете параметър <b>variables_order</b> в php.ini.
|
||||||
PHPSupportGD=PHP поддържа GD графични функции.
|
PHPSupportGD=PHP поддържа GD графични функции.
|
||||||
|
PHPSupportCurl=This PHP support Curl.
|
||||||
PHPSupportUTF8=PHP поддържа UTF8 функции.
|
PHPSupportUTF8=PHP поддържа UTF8 функции.
|
||||||
PHPMemoryOK=PHP макс сесия памет е <b>%s.</b> Това трябва да бъде достатъчно.
|
PHPMemoryOK=PHP макс сесия памет е <b>%s.</b> Това трябва да бъде достатъчно.
|
||||||
PHPMemoryTooLow=PHP макс сесия памет е настроен на <b>%s</b> байта. Това може да бъде прекалено ниско. Променете <b>php.ini</b> като настроите параметър <b>memory_limit</b> най-малко <b>%s</b> байта.
|
PHPMemoryTooLow=PHP макс сесия памет е настроен на <b>%s</b> байта. Това може да бъде прекалено ниско. Променете <b>php.ini</b> като настроите параметър <b>memory_limit</b> най-малко <b>%s</b> байта.
|
||||||
Recheck=Кликнете тук за по-значим тест
|
Recheck=Кликнете тук за по-значим тест
|
||||||
ErrorPHPDoesNotSupportSessions=Вашата PHP инсталация не поддържа сесии. Тази функция е нужна за правилата работа на Dolibarr. Проверете PHP настройките.
|
ErrorPHPDoesNotSupportSessions=Вашата PHP инсталация не поддържа сесии. Тази функция е нужна за правилата работа на Dolibarr. Проверете PHP настройките.
|
||||||
ErrorPHPDoesNotSupportGD=Вашата PHP инсталация не поддържа графична функция GD. Графиките няма да бъдат достъпни.
|
ErrorPHPDoesNotSupportGD=Вашата PHP инсталация не поддържа графична функция GD. Графиките няма да бъдат достъпни.
|
||||||
|
ErrorPHPDoesNotSupportCurl=Your PHP installation does not support Curl.
|
||||||
ErrorPHPDoesNotSupportUTF8=Вашата PHP инсталация не поддържа UTF8 функции. Dolibarr не може да работи правилно. Преконфигурирайте преди да инсталирате Dolibarr.
|
ErrorPHPDoesNotSupportUTF8=Вашата PHP инсталация не поддържа UTF8 функции. Dolibarr не може да работи правилно. Преконфигурирайте преди да инсталирате Dolibarr.
|
||||||
ErrorDirDoesNotExists=Директорията %s не съществува.
|
ErrorDirDoesNotExists=Директорията %s не съществува.
|
||||||
ErrorGoBackAndCorrectParameters=Върни се назад и коригирайте грешните параметри.
|
ErrorGoBackAndCorrectParameters=Върни се назад и коригирайте грешните параметри.
|
||||||
@ -133,6 +135,10 @@ ActivateModule=Активиране на модул %s
|
|||||||
ShowEditTechnicalParameters=Натиснете тук за да покажете/редактирате параметрите за напреднали (експертен режим)
|
ShowEditTechnicalParameters=Натиснете тук за да покажете/редактирате параметрите за напреднали (експертен режим)
|
||||||
WarningUpgrade=Внимание:\nНаправихте ли резервно копие на базата данни първо?\nТова е силно препоръчително: например, поради някой бъгове в системите на базата данни (например mysql версия 5.5.40/41/42/43), част от информацията или таблиците може да бъдат изгубени по-време на този процес, за това е много препоръчително да имате пълен dump на вашата база данни преди започването на миграцията.\n\nКликнете OK за започване на миграционния процес...
|
WarningUpgrade=Внимание:\nНаправихте ли резервно копие на базата данни първо?\nТова е силно препоръчително: например, поради някой бъгове в системите на базата данни (например mysql версия 5.5.40/41/42/43), част от информацията или таблиците може да бъдат изгубени по-време на този процес, за това е много препоръчително да имате пълен dump на вашата база данни преди започването на миграцията.\n\nКликнете OK за започване на миграционния процес...
|
||||||
ErrorDatabaseVersionForbiddenForMigration=Вашата база данни е с версия %s. Тя има критичен бъг, причинявайки загуба на информация ако направите структурна промяна на вашата база данни, а подобна е задължителна при миграционния процес. Поради тази причина, миграцията не е позволена, докато не обновите вашата база данни до по-нова коригирана версия (списък на познати версии с бъгове: %s)
|
ErrorDatabaseVersionForbiddenForMigration=Вашата база данни е с версия %s. Тя има критичен бъг, причинявайки загуба на информация ако направите структурна промяна на вашата база данни, а подобна е задължителна при миграционния процес. Поради тази причина, миграцията не е позволена, докато не обновите вашата база данни до по-нова коригирана версия (списък на познати версии с бъгове: %s)
|
||||||
|
KeepDefaultValuesWamp=You use the Dolibarr setup wizard from DoliWamp, so values proposed here are already optimized. Change them only if you know what you do.
|
||||||
|
KeepDefaultValuesDeb=You use the Dolibarr setup wizard from a Linux package (Ubuntu, Debian, Fedora...), so values proposed here are already optimized. Only the password of the database owner to create must be completed. Change other parameters only if you know what you do.
|
||||||
|
KeepDefaultValuesMamp=You use the Dolibarr setup wizard from DoliMamp, so values proposed here are already optimized. Change them only if you know what you do.
|
||||||
|
KeepDefaultValuesProxmox=You use the Dolibarr setup wizard from a Proxmox virtual appliance, so values proposed here are already optimized. Change them only if you know what you do.
|
||||||
|
|
||||||
#########
|
#########
|
||||||
# upgrade
|
# upgrade
|
||||||
@ -185,6 +191,8 @@ MigrationActioncommElement=Актуализиране на данните за
|
|||||||
MigrationPaymentMode=Миграция на данни за начин на плащане
|
MigrationPaymentMode=Миграция на данни за начин на плащане
|
||||||
MigrationCategorieAssociation=Миграция на категории
|
MigrationCategorieAssociation=Миграция на категории
|
||||||
MigrationEvents=Миграция на събития за добавяне на собственик на събитие в таблицата за възлагане
|
MigrationEvents=Миграция на събития за добавяне на собственик на събитие в таблицата за възлагане
|
||||||
|
MigrationRemiseEntity=Update entity field value of llx_societe_remise
|
||||||
|
MigrationRemiseExceptEntity=Update entity field value of llx_societe_remise_except
|
||||||
MigrationReloadModule=Презареждане на модула %s
|
MigrationReloadModule=Презареждане на модула %s
|
||||||
ShowNotAvailableOptions=Показване на недостъпните опции
|
ShowNotAvailableOptions=Показване на недостъпните опции
|
||||||
HideNotAvailableOptions=Скриване на недостъпните опции
|
HideNotAvailableOptions=Скриване на недостъпните опции
|
||||||
|
|||||||
@ -45,6 +45,7 @@ TypeContact_fichinter_external_CUSTOMER=Проследяване на конта
|
|||||||
# Modele numérotation
|
# Modele numérotation
|
||||||
PrintProductsOnFichinter=Print also lines of type "product" (not only services) on intervention card
|
PrintProductsOnFichinter=Print also lines of type "product" (not only services) on intervention card
|
||||||
PrintProductsOnFichinterDetails=намеси генерирани от поръчки
|
PrintProductsOnFichinterDetails=намеси генерирани от поръчки
|
||||||
|
UseServicesDurationOnFichinter=Use services duration for interventions generated from orders
|
||||||
InterventionStatistics=Statistics of interventions
|
InterventionStatistics=Statistics of interventions
|
||||||
NbOfinterventions=Nb of intervention cards
|
NbOfinterventions=Nb of intervention cards
|
||||||
NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
|
NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
|
||||||
|
|||||||
@ -15,6 +15,8 @@ LDAPFieldFirstSubscriptionDate=Първа абонамент дата
|
|||||||
LDAPFieldFirstSubscriptionAmount=Първа размера
|
LDAPFieldFirstSubscriptionAmount=Първа размера
|
||||||
LDAPFieldLastSubscriptionDate=Последно абонамент дата
|
LDAPFieldLastSubscriptionDate=Последно абонамент дата
|
||||||
LDAPFieldLastSubscriptionAmount=Последно размера
|
LDAPFieldLastSubscriptionAmount=Последно размера
|
||||||
|
LDAPFieldSkype=Skype id
|
||||||
|
LDAPFieldSkypeExample=Example : skypeName
|
||||||
UserSynchronized=Потребителят синхронизирани
|
UserSynchronized=Потребителят синхронизирани
|
||||||
GroupSynchronized=Група синхронизирани
|
GroupSynchronized=Група синхронизирани
|
||||||
MemberSynchronized=Държавите-синхронизирани
|
MemberSynchronized=Държавите-синхронизирани
|
||||||
|
|||||||
@ -67,8 +67,9 @@ MailingStatusRead=Чета
|
|||||||
YourMailUnsubcribeOK=От пощенския списък на <b>%s</b> имейл е правилно unsubcribe
|
YourMailUnsubcribeOK=От пощенския списък на <b>%s</b> имейл е правилно unsubcribe
|
||||||
ActivateCheckReadKey=Ключ използван за криптиране на URL използван за опция "Прочитане на Обратна разписка" и "Отписване"
|
ActivateCheckReadKey=Ключ използван за криптиране на URL използван за опция "Прочитане на Обратна разписка" и "Отписване"
|
||||||
EMailSentToNRecipients=Имейл изпратен до %s получатели.
|
EMailSentToNRecipients=Имейл изпратен до %s получатели.
|
||||||
|
EMailSentForNElements=EMail sent for %s elements.
|
||||||
XTargetsAdded=<b>%s</b> recipients added into target list
|
XTargetsAdded=<b>%s</b> recipients added into target list
|
||||||
OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
|
OnlyPDFattachmentSupported=If the PDF document was already generated for the object to send, it will be attached to email. If not, no email will be sent (also, note that only pdf documents are supported as attachment in mass sending in this version).
|
||||||
AllRecipientSelected=Всички трети лица и ако имейл е зададен.
|
AllRecipientSelected=Всички трети лица и ако имейл е зададен.
|
||||||
ResultOfMailSending=Резултат от масово изпращане на Имейл
|
ResultOfMailSending=Резултат от масово изпращане на Имейл
|
||||||
NbSelected=Nb selected
|
NbSelected=Nb selected
|
||||||
@ -127,7 +128,7 @@ AdvTgtMaxVal=Maximum value
|
|||||||
AdvTgtSearchDtHelp=Use interval to select date value
|
AdvTgtSearchDtHelp=Use interval to select date value
|
||||||
AdvTgtStartDt=Start dt.
|
AdvTgtStartDt=Start dt.
|
||||||
AdvTgtEndDt=End dt.
|
AdvTgtEndDt=End dt.
|
||||||
AdvTgtTypeOfIncudeHelp=Target Email of thirdparty and email of contact of the thridparty, or just thridparty email or just contact email
|
AdvTgtTypeOfIncudeHelp=Target Email of third party and email of contact of the third party, or just third party email or just contact email
|
||||||
AdvTgtTypeOfIncude=Type of targeted email
|
AdvTgtTypeOfIncude=Type of targeted email
|
||||||
AdvTgtContactHelp=Use only if you target contact into "Type of targeted email"
|
AdvTgtContactHelp=Use only if you target contact into "Type of targeted email"
|
||||||
AddAll=Add all
|
AddAll=Add all
|
||||||
|
|||||||
@ -67,6 +67,7 @@ SelectDate=Изберете дата
|
|||||||
SeeAlso=Вижте също %s
|
SeeAlso=Вижте също %s
|
||||||
SeeHere=Вижте тук
|
SeeHere=Вижте тук
|
||||||
BackgroundColorByDefault=Стандартен цвят на фона
|
BackgroundColorByDefault=Стандартен цвят на фона
|
||||||
|
FileRenamed=The file was successfully renamed
|
||||||
FileUploaded=Файлът е качен успешно
|
FileUploaded=Файлът е качен успешно
|
||||||
FileWasNotUploaded=Файлът е избран за прикачване, но все още не е качен. Кликнете върху "Прикачи файл".
|
FileWasNotUploaded=Файлът е избран за прикачване, но все още не е качен. Кликнете върху "Прикачи файл".
|
||||||
NbOfEntries=Брой записи
|
NbOfEntries=Брой записи
|
||||||
@ -245,6 +246,10 @@ DateBuild=Дата на създаване на справката
|
|||||||
DatePayment=Дата на плащане
|
DatePayment=Дата на плащане
|
||||||
DateApprove=Дата на одобрение
|
DateApprove=Дата на одобрение
|
||||||
DateApprove2=Дата на одобрение (повторно одобрение)
|
DateApprove2=Дата на одобрение (повторно одобрение)
|
||||||
|
UserCreation=Creation user
|
||||||
|
UserModification=Modification user
|
||||||
|
UserCreationShort=Creat. user
|
||||||
|
UserModificationShort=Modif. user
|
||||||
DurationYear=година
|
DurationYear=година
|
||||||
DurationMonth=месец
|
DurationMonth=месец
|
||||||
DurationWeek=седмица
|
DurationWeek=седмица
|
||||||
@ -256,6 +261,7 @@ DurationDays=дни
|
|||||||
Year=Година
|
Year=Година
|
||||||
Month=Месец
|
Month=Месец
|
||||||
Week=Седмица
|
Week=Седмица
|
||||||
|
WeekShort=Week
|
||||||
Day=Ден
|
Day=Ден
|
||||||
Hour=Час
|
Hour=Час
|
||||||
Minute=Минута
|
Minute=Минута
|
||||||
@ -278,6 +284,7 @@ MonthOfDay=Месец на деня
|
|||||||
HourShort=ч
|
HourShort=ч
|
||||||
MinuteShort=мин
|
MinuteShort=мин
|
||||||
Rate=Курс
|
Rate=Курс
|
||||||
|
CurrencyRate=Currency conversion rate
|
||||||
UseLocalTax=Включи данъци
|
UseLocalTax=Включи данъци
|
||||||
Bytes=Байта
|
Bytes=Байта
|
||||||
KiloBytes=Килобайта
|
KiloBytes=Килобайта
|
||||||
@ -565,8 +572,11 @@ BackToList=Назад към списъка
|
|||||||
GoBack=Назад
|
GoBack=Назад
|
||||||
CanBeModifiedIfOk=Може да се променя ако е валидно
|
CanBeModifiedIfOk=Може да се променя ако е валидно
|
||||||
CanBeModifiedIfKo=Може да се променя ако е невалидно
|
CanBeModifiedIfKo=Може да се променя ако е невалидно
|
||||||
|
ValueIsValid=Value is valid
|
||||||
|
ValueIsNotValid=Value is not valid
|
||||||
RecordModifiedSuccessfully=Записът е променен успешно
|
RecordModifiedSuccessfully=Записът е променен успешно
|
||||||
RecordsModified=Променени са %s записа
|
RecordsModified=Променени са %s записа
|
||||||
|
RecordsDeleted=%s records deleted
|
||||||
AutomaticCode=Автоматичен код
|
AutomaticCode=Автоматичен код
|
||||||
FeatureDisabled=Функцията е изключена
|
FeatureDisabled=Функцията е изключена
|
||||||
MoveBox=Move widget
|
MoveBox=Move widget
|
||||||
@ -575,6 +585,7 @@ NotEnoughPermissions=Вие нямате разрешение за това де
|
|||||||
SessionName=Име на сесията
|
SessionName=Име на сесията
|
||||||
Method=Метод
|
Method=Метод
|
||||||
Receive=Получавам
|
Receive=Получавам
|
||||||
|
CompleteOrNoMoreReceptionExpected=Complete or nothing more expected
|
||||||
PartialWoman=Частична
|
PartialWoman=Частична
|
||||||
TotalWoman=Обща
|
TotalWoman=Обща
|
||||||
NeverReceived=Никога не получено
|
NeverReceived=Никога не получено
|
||||||
@ -598,6 +609,7 @@ DisabledModules=Деактивирани модули
|
|||||||
For=За
|
For=За
|
||||||
ForCustomer=За клиента
|
ForCustomer=За клиента
|
||||||
Signature=Подпис
|
Signature=Подпис
|
||||||
|
DateOfSignature=Date of signature
|
||||||
HidePassword=Покажи със скрита парола
|
HidePassword=Покажи със скрита парола
|
||||||
UnHidePassword=Покажи с видима парола
|
UnHidePassword=Покажи с видима парола
|
||||||
Root=Корен
|
Root=Корен
|
||||||
@ -641,6 +653,15 @@ NewAttribute=Нов атрибут
|
|||||||
AttributeCode=Код на атрибут
|
AttributeCode=Код на атрибут
|
||||||
URLPhoto=URL на снимка/лого
|
URLPhoto=URL на снимка/лого
|
||||||
SetLinkToAnotherThirdParty=Свързване към друго трето лице
|
SetLinkToAnotherThirdParty=Свързване към друго трето лице
|
||||||
|
LinkTo=Link to
|
||||||
|
LinkToProposal=Link to proposal
|
||||||
|
LinkToOrder=Link to order
|
||||||
|
LinkToInvoice=Link to invoice
|
||||||
|
LinkToSupplierOrder=Link to supplier order
|
||||||
|
LinkToSupplierProposal=Link to supplier proposal
|
||||||
|
LinkToSupplierInvoice=Link to supplier invoice
|
||||||
|
LinkToContract=Link to contract
|
||||||
|
LinkToIntervention=Link to intervention
|
||||||
CreateDraft=Създай чернова
|
CreateDraft=Създай чернова
|
||||||
SetToDraft=Назад към черновата
|
SetToDraft=Назад към черновата
|
||||||
ClickToEdit=Кликнете, за да редактирате
|
ClickToEdit=Кликнете, за да редактирате
|
||||||
@ -701,6 +722,9 @@ RelatedObjects=Related Objects
|
|||||||
ClassifyBilled=Classify billed
|
ClassifyBilled=Classify billed
|
||||||
Progress=Progress
|
Progress=Progress
|
||||||
ClickHere=Click here
|
ClickHere=Click here
|
||||||
|
FrontOffice=Front office
|
||||||
|
BackOffice=Back office
|
||||||
|
View=View
|
||||||
# Week day
|
# Week day
|
||||||
Monday=Понеделник
|
Monday=Понеделник
|
||||||
Tuesday=Вторник
|
Tuesday=Вторник
|
||||||
|
|||||||
@ -41,3 +41,4 @@ rateMustBeNumeric=Rate must be a numeric value
|
|||||||
markRateShouldBeLesserThan100=Mark rate should be lower than 100
|
markRateShouldBeLesserThan100=Mark rate should be lower than 100
|
||||||
ShowMarginInfos=Show margin infos
|
ShowMarginInfos=Show margin infos
|
||||||
CheckMargins=Margins detail
|
CheckMargins=Margins detail
|
||||||
|
MarginPerSaleRepresentativeWarning=The report of margin per user use the link between thirdparties and sale representatives to calculate the margin of each user. Because some thirdparties may not be linked to any sale representative and some thirdparties may be linked to several users, some margins may not appears in these report or may appears in several different lines.
|
||||||
|
|||||||
@ -1,5 +1,7 @@
|
|||||||
# Dolibarr language file - Source file is en_US - oauth
|
# Dolibarr language file - Source file is en_US - oauth
|
||||||
ConfigOAuth=Oauth Configuration
|
ConfigOAuth=Oauth Configuration
|
||||||
|
OAuthServices=OAuth services
|
||||||
|
ManualTokenGeneration=Manual token generation
|
||||||
NoAccessToken=No access token saved into local database
|
NoAccessToken=No access token saved into local database
|
||||||
HasAccessToken=A token was generated and saved into local database
|
HasAccessToken=A token was generated and saved into local database
|
||||||
NewTokenStored=Token received ans saved
|
NewTokenStored=Token received ans saved
|
||||||
@ -9,7 +11,16 @@ RequestAccess=Click here to request/renew access and receive a new token to save
|
|||||||
DeleteAccess=Click here to delete token
|
DeleteAccess=Click here to delete token
|
||||||
UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
|
UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
|
||||||
ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
|
ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
|
||||||
OAUTH_GOOGLE_NAME=Api Google
|
TOKEN_ACCESS=
|
||||||
OAUTH_GOOGLE_ID=Api Google Id
|
TOKEN_REFRESH=Token Refresh Present
|
||||||
OAUTH_GOOGLE_SECRET=Api Google Secret
|
TOKEN_EXPIRED=Token expired
|
||||||
OAUTH_GOOGLE_DESC=Go on <a href="https://console.developers.google.com/" target="_blank">this page</a> then Credentials to create Oauth credentials
|
TOKEN_EXPIRE_AT=Token expire at
|
||||||
|
TOKEN_DELETE=Delete saved token
|
||||||
|
OAUTH_GOOGLE_NAME=Oauth Google service
|
||||||
|
OAUTH_GOOGLE_ID=Oauth Google Id
|
||||||
|
OAUTH_GOOGLE_SECRET=Oauth Google Secret
|
||||||
|
OAUTH_GOOGLE_DESC=Go on <a class="notasortlink" href="https://console.developers.google.com/" target="_blank">this page</a> then "Credentials" to create Oauth credentials
|
||||||
|
OAUTH_GITHUB_NAME=Oauth GitHub service
|
||||||
|
OAUTH_GITHUB_ID=Oauth GitHub Id
|
||||||
|
OAUTH_GITHUB_SECRET=Oauth GitHub Secret
|
||||||
|
OAUTH_GITHUB_DESC=Go on <a class="notasortlink" href="https://github.com/settings/developers" target="_blank">this page</a> then "Register a new application" to create Oauth credentials
|
||||||
|
|||||||
@ -157,3 +157,4 @@ OrderCreated=Поръчките ви бяха създадени
|
|||||||
OrderFail=Възникна грешка при създаването на поръчките ви
|
OrderFail=Възникна грешка при създаването на поръчките ви
|
||||||
CreateOrders=Създай поръчки
|
CreateOrders=Създай поръчки
|
||||||
ToBillSeveralOrderSelectCustomer=За да създадете фактура по няколко поръчки, кликнете първо на клиент, след това изберете "%s".
|
ToBillSeveralOrderSelectCustomer=За да създадете фактура по няколко поръчки, кликнете първо на клиент, след това изберете "%s".
|
||||||
|
CloseReceivedSupplierOrdersAutomatically=Close order to "%s" automatically if all products are received.
|
||||||
|
|||||||
@ -18,10 +18,6 @@ UserConf=Настройка по потребител
|
|||||||
PRINTGCP_INFO=Google OAuth API настройка
|
PRINTGCP_INFO=Google OAuth API настройка
|
||||||
PRINTGCP_AUTHLINK=Удостоверяване
|
PRINTGCP_AUTHLINK=Удостоверяване
|
||||||
PRINTGCP_TOKEN_ACCESS=Google Cloud Print OAuth Token
|
PRINTGCP_TOKEN_ACCESS=Google Cloud Print OAuth Token
|
||||||
PRINTGCP_TOKEN_REFRESH=Token Refresh Present
|
|
||||||
PRINTGCP_TOKEN_EXPIRED=Token Expired
|
|
||||||
PRINTGCP_TOKEN_EXPIRE_AT=Token expire at
|
|
||||||
PRINTGCP_DELETE_TOKEN=Delete saved token
|
|
||||||
PrintGCPDesc=Този драйвер позволява изпращането на документи директно към принтер с Google Cloud Print.
|
PrintGCPDesc=Този драйвер позволява изпращането на документи директно към принтер с Google Cloud Print.
|
||||||
GCP_Name=Име
|
GCP_Name=Име
|
||||||
GCP_displayName=Показвано Име
|
GCP_displayName=Показвано Име
|
||||||
|
|||||||
@ -8,8 +8,8 @@ Batch=Партида/сериен
|
|||||||
atleast1batchfield=Eat-by date or Sell-by date or Lot/Serial number
|
atleast1batchfield=Eat-by date or Sell-by date or Lot/Serial number
|
||||||
batch_number=Партида/сериен номер
|
batch_number=Партида/сериен номер
|
||||||
BatchNumberShort=Партида/сериен
|
BatchNumberShort=Партида/сериен
|
||||||
l_eatby=Eat-by date
|
EatByDate=Eat-by date
|
||||||
l_sellby=Sell-by date
|
SellByDate=Sell-by date
|
||||||
DetailBatchNumber=Lot/Serial details
|
DetailBatchNumber=Lot/Serial details
|
||||||
DetailBatchFormat=Lot/Serial: %s - Eat by: %s - Sell by: %s (Qty : %d)
|
DetailBatchFormat=Lot/Serial: %s - Eat by: %s - Sell by: %s (Qty : %d)
|
||||||
printBatch=Lot/Serial: %s
|
printBatch=Lot/Serial: %s
|
||||||
@ -19,3 +19,6 @@ printQty=Кол: %d
|
|||||||
AddDispatchBatchLine=Add a line for Shelf Life dispatching
|
AddDispatchBatchLine=Add a line for Shelf Life dispatching
|
||||||
WhenProductBatchModuleOnOptionAreForced=When module Lot/Serial is on, increase/decrease stock mode is forced to last choice and can't be edited. Other options can be defined as you want.
|
WhenProductBatchModuleOnOptionAreForced=When module Lot/Serial is on, increase/decrease stock mode is forced to last choice and can't be edited. Other options can be defined as you want.
|
||||||
ProductDoesNotUseBatchSerial=This product does not use lot/serial number
|
ProductDoesNotUseBatchSerial=This product does not use lot/serial number
|
||||||
|
ProductLotSetup=Setup of module lot/serial
|
||||||
|
ShowCurrentStockOfLot=Show current stock for couple product/lot
|
||||||
|
ShowLogOfMovementIfLot=Show log of movements for couple product/lot
|
||||||
|
|||||||
@ -18,8 +18,8 @@ ProductVatMassChange=Масова ДДС промяна
|
|||||||
ProductVatMassChangeDesc=Тази страница може да се използва за промяна на ДДС процент определен на продукти или услуги от една стойност на друга. Предупреждение, тази промяна се извършва на всички база данни.
|
ProductVatMassChangeDesc=Тази страница може да се използва за промяна на ДДС процент определен на продукти или услуги от една стойност на друга. Предупреждение, тази промяна се извършва на всички база данни.
|
||||||
MassBarcodeInit=Масова инициализация на бар кодове
|
MassBarcodeInit=Масова инициализация на бар кодове
|
||||||
MassBarcodeInitDesc=Тази страница може да се използва да се инициализира бар код на обекти, които нямат определен бар код. Проверете преди това дали настройката на модул баркод е завършена.
|
MassBarcodeInitDesc=Тази страница може да се използва да се инициализира бар код на обекти, които нямат определен бар код. Проверете преди това дали настройката на модул баркод е завършена.
|
||||||
ProductAccountancyBuyCode=Счетоводен код (покупка)
|
ProductAccountancyBuyCode=Accountancy code (purchase)
|
||||||
ProductAccountancySellCode=Счетоводен код (продажба)
|
ProductAccountancySellCode=Accountancy code (sale)
|
||||||
ProductOrService=Продукт или Услуга
|
ProductOrService=Продукт или Услуга
|
||||||
ProductsAndServices=Продукти и Услуги
|
ProductsAndServices=Продукти и Услуги
|
||||||
ProductsOrServices=Продукти или Услуги
|
ProductsOrServices=Продукти или Услуги
|
||||||
@ -59,6 +59,8 @@ SellingPriceHT=Продажна цена (без ДДС)
|
|||||||
SellingPriceTTC=Продажна цена (с ДДС)
|
SellingPriceTTC=Продажна цена (с ДДС)
|
||||||
CostPriceDescription=This price (net of tax) can be used to store the average amount this product cost to your company. It may be any price you calculate yourself, for example from the average buying price plus average production and distribution cost.
|
CostPriceDescription=This price (net of tax) can be used to store the average amount this product cost to your company. It may be any price you calculate yourself, for example from the average buying price plus average production and distribution cost.
|
||||||
CostPriceUsage=In a future version, this value could be used for margin calculation.
|
CostPriceUsage=In a future version, this value could be used for margin calculation.
|
||||||
|
SoldAmount=Sold amount
|
||||||
|
PurchasedAmount=Purchased amount
|
||||||
NewPrice=Нова цена
|
NewPrice=Нова цена
|
||||||
MinPrice=Мин. продажна цена
|
MinPrice=Мин. продажна цена
|
||||||
CantBeLessThanMinPrice=Продажната цена не може да бъде по-ниска от максимално допустимата за този продукт (%s без ДДС). Това съобщение може да се появи, ако въведете твърде важна отстъпка.
|
CantBeLessThanMinPrice=Продажната цена не може да бъде по-ниска от максимално допустимата за този продукт (%s без ДДС). Това съобщение може да се появи, ако въведете твърде важна отстъпка.
|
||||||
@ -197,11 +199,11 @@ PrintsheetForOneBarCode=Принтиране на няколко стикери
|
|||||||
BuildPageToPrint=Генериране на страница за принтиране
|
BuildPageToPrint=Генериране на страница за принтиране
|
||||||
FillBarCodeTypeAndValueManually=Попълнете тип на бар код и стойност ръчно.
|
FillBarCodeTypeAndValueManually=Попълнете тип на бар код и стойност ръчно.
|
||||||
FillBarCodeTypeAndValueFromProduct=Попълнете тип на бар код и стойност от бар кода на продукт
|
FillBarCodeTypeAndValueFromProduct=Попълнете тип на бар код и стойност от бар кода на продукт
|
||||||
FillBarCodeTypeAndValueFromThirdParty=Попълнете тип на бар кода или стойност от бар кода на трето лице.
|
FillBarCodeTypeAndValueFromThirdParty=Fill barcode type and value from barcode of a third party.
|
||||||
DefinitionOfBarCodeForProductNotComplete=Определяне на тип или стойност на бар код е завършено за продукт %s.
|
DefinitionOfBarCodeForProductNotComplete=Определяне на тип или стойност на бар код е завършено за продукт %s.
|
||||||
DefinitionOfBarCodeForThirdpartyNotComplete=Определяне на тип или стойност на бар код не е завършено за трето лице %s.
|
DefinitionOfBarCodeForThirdpartyNotComplete=Definition of type or value of bar code non complete for third party %s.
|
||||||
BarCodeDataForProduct=Информация за бар код на продукт %s:
|
BarCodeDataForProduct=Информация за бар код на продукт %s:
|
||||||
BarCodeDataForThirdparty=Информация за бар код на трето лице %s:
|
BarCodeDataForThirdparty=Barcode information of third party %s :
|
||||||
ResetBarcodeForAllRecords=Определяне на стойност на бар код за всички записи (това също така ще ресетира стойността на определен вече бар код с нова стойност)
|
ResetBarcodeForAllRecords=Определяне на стойност на бар код за всички записи (това също така ще ресетира стойността на определен вече бар код с нова стойност)
|
||||||
PriceByCustomer=Different prices for each customer
|
PriceByCustomer=Different prices for each customer
|
||||||
PriceCatalogue=A single sell price per product/service
|
PriceCatalogue=A single sell price per product/service
|
||||||
|
|||||||
@ -70,11 +70,11 @@ ListOfTasks=List of tasks
|
|||||||
GoToListOfTimeConsumed=Go to list of time consumed
|
GoToListOfTimeConsumed=Go to list of time consumed
|
||||||
GoToListOfTasks=Go to list of tasks
|
GoToListOfTasks=Go to list of tasks
|
||||||
ListProposalsAssociatedProject=Списък на търговските предложения, свързани с проекта
|
ListProposalsAssociatedProject=Списък на търговските предложения, свързани с проекта
|
||||||
ListOrdersAssociatedProject=Списък на клиентски поръчки, свързани с проекта
|
ListOrdersAssociatedProject=List of customer orders associated with the project
|
||||||
ListInvoicesAssociatedProject=Списък на фактури на клиентите, свързани с проекта
|
ListInvoicesAssociatedProject=List of customer invoices associated with the project
|
||||||
ListPredefinedInvoicesAssociatedProject=List of customer's template invoices associated with project
|
ListPredefinedInvoicesAssociatedProject=List of customer template invoices associated with project
|
||||||
ListSupplierOrdersAssociatedProject=Списък на поръчките на доставчика, свързана с проекта
|
ListSupplierOrdersAssociatedProject=List of supplier orders associated with the project
|
||||||
ListSupplierInvoicesAssociatedProject=Списък на фактурите на доставчика, свързана с проекта
|
ListSupplierInvoicesAssociatedProject=List of supplier invoices associated with the project
|
||||||
ListContractAssociatedProject=Списък на договори, свързани с проекта
|
ListContractAssociatedProject=Списък на договори, свързани с проекта
|
||||||
ListFichinterAssociatedProject=Списък на интервенциите, свързани с проекта
|
ListFichinterAssociatedProject=Списък на интервенциите, свързани с проекта
|
||||||
ListExpenseReportsAssociatedProject=List of expense reports associated with the project
|
ListExpenseReportsAssociatedProject=List of expense reports associated with the project
|
||||||
@ -123,6 +123,7 @@ ProjectReportDate=Промяна задача дата според началн
|
|||||||
ErrorShiftTaskDate=Невъзможно е да се смени датата на задача в съответствие с нова дата за началото на проекта
|
ErrorShiftTaskDate=Невъзможно е да се смени датата на задача в съответствие с нова дата за началото на проекта
|
||||||
ProjectsAndTasksLines=Проекти и задачи
|
ProjectsAndTasksLines=Проекти и задачи
|
||||||
ProjectCreatedInDolibarr=Проект %s е създаден
|
ProjectCreatedInDolibarr=Проект %s е създаден
|
||||||
|
ProjectModifiedInDolibarr=Project %s modified
|
||||||
TaskCreatedInDolibarr=Задача %s е създадена
|
TaskCreatedInDolibarr=Задача %s е създадена
|
||||||
TaskModifiedInDolibarr=Задача %s е променена
|
TaskModifiedInDolibarr=Задача %s е променена
|
||||||
TaskDeletedInDolibarr=Задача %s е изтрита
|
TaskDeletedInDolibarr=Задача %s е изтрита
|
||||||
@ -153,7 +154,7 @@ PlannedWorkload=Планирана работна натовареност
|
|||||||
PlannedWorkloadShort=Работна натовареност
|
PlannedWorkloadShort=Работна натовареност
|
||||||
ProjectReferers=Related items
|
ProjectReferers=Related items
|
||||||
ProjectMustBeValidatedFirst=Проектът трябва да бъде валидиран първо
|
ProjectMustBeValidatedFirst=Проектът трябва да бъде валидиран първо
|
||||||
FirstAddRessourceToAllocateTime=Associate a resource to allocate time
|
FirstAddRessourceToAllocateTime=Assign a user resource to task to allocate time
|
||||||
InputPerDay=Input per day
|
InputPerDay=Input per day
|
||||||
InputPerWeek=Input per week
|
InputPerWeek=Input per week
|
||||||
InputPerAction=Input per action
|
InputPerAction=Input per action
|
||||||
@ -174,7 +175,7 @@ ProjectOpenedProjectByOppStatus=Open project/lead by opportunity status
|
|||||||
ProjectsStatistics=Статистики за проекти/инициативи
|
ProjectsStatistics=Статистики за проекти/инициативи
|
||||||
TaskAssignedToEnterTime=Задачата е възложена. Въвеждането на време на тази задача би трябвало да е възможно
|
TaskAssignedToEnterTime=Задачата е възложена. Въвеждането на време на тази задача би трябвало да е възможно
|
||||||
IdTaskTime=Ид. време на задача
|
IdTaskTime=Ид. време на задача
|
||||||
YouCanCompleteRef=If you want to complete the ref with some information (to use it as search filters), it is recommanded to add a - character to separate it, so the automatic numbering will still work correctly for next projects. For example %s-ABC. You may also prefer to add search keys into label.
|
YouCanCompleteRef=If you want to complete the ref with some information (to use it as search filters), it is recommanded to add a - character to separate it, so the automatic numbering will still work correctly for next projects. For example %s-ABC. You may also prefer to add search keys into label. But best practice may be to add a dedicated field, also called complementary attributes.
|
||||||
OpenedProjectsByThirdparties=Open projects by thirdparties
|
OpenedProjectsByThirdparties=Open projects by thirdparties
|
||||||
OnlyOpportunitiesShort=Only opportunities
|
OnlyOpportunitiesShort=Only opportunities
|
||||||
OpenedOpportunitiesShort=Open opportunities
|
OpenedOpportunitiesShort=Open opportunities
|
||||||
|
|||||||
@ -7,8 +7,8 @@ NewSalaryPayment=Ново заплащане на заплата
|
|||||||
SalaryPayment=Плащане на заплата
|
SalaryPayment=Плащане на заплата
|
||||||
SalariesPayments=Заплащания заплати
|
SalariesPayments=Заплащания заплати
|
||||||
ShowSalaryPayment=Показване заплащане на заплата
|
ShowSalaryPayment=Показване заплащане на заплата
|
||||||
THM=Средна цена на час
|
THM=Average hourly rate
|
||||||
TJM=Средна цена на ден
|
TJM=Average daily rate
|
||||||
CurrentSalary=Сегашна заплата
|
CurrentSalary=Сегашна заплата
|
||||||
THMDescription=Тази стойност може да използва за изчисляване на отнето време по проект отделено от потребителите ако модул проект се използва
|
THMDescription=Тази стойност може да използва за изчисляване на отнето време по проект отделено от потребителите ако модул проект се използва
|
||||||
TJMDescription=Тази стойност е само сега като информация и не се използва за никакво изчисление
|
TJMDescription=Тази стойност е само сега като информация и не се използва за никакво изчисление
|
||||||
|
|||||||
@ -15,6 +15,8 @@ DeleteSending=Изтриване на изпращане
|
|||||||
Stock=Наличност
|
Stock=Наличност
|
||||||
Stocks=Наличности
|
Stocks=Наличности
|
||||||
StocksByLotSerial=Stocks by lot/serial
|
StocksByLotSerial=Stocks by lot/serial
|
||||||
|
LotSerial=Lots/Serials
|
||||||
|
LotSerialList=List of lot/serials
|
||||||
Movements=Движения
|
Movements=Движения
|
||||||
ErrorWarehouseRefRequired=Изисква се референтно име на склад
|
ErrorWarehouseRefRequired=Изисква се референтно име на склад
|
||||||
ListOfWarehouses=Списък на складовете
|
ListOfWarehouses=Списък на складовете
|
||||||
@ -43,6 +45,7 @@ PMPValue=Средна цена
|
|||||||
PMPValueShort=WAP
|
PMPValueShort=WAP
|
||||||
EnhancedValueOfWarehouses=Warehouses value
|
EnhancedValueOfWarehouses=Warehouses value
|
||||||
UserWarehouseAutoCreate=Създаване на склада автоматично при създаването на потребителя
|
UserWarehouseAutoCreate=Създаване на склада автоматично при създаването на потребителя
|
||||||
|
AllowAddLimitStockByWarehouse=Allow to add limit and desired stock by product and warehouse
|
||||||
IndependantSubProductStock=Product stock and subproduct stock are independant
|
IndependantSubProductStock=Product stock and subproduct stock are independant
|
||||||
QtyDispatched=Брой изпратени
|
QtyDispatched=Брой изпратени
|
||||||
QtyDispatchedShort=Qty dispatched
|
QtyDispatchedShort=Qty dispatched
|
||||||
@ -132,3 +135,9 @@ OpenAll=Open for all actions
|
|||||||
OpenInternal=Open for internal actions
|
OpenInternal=Open for internal actions
|
||||||
OpenShipping=Open for shippings
|
OpenShipping=Open for shippings
|
||||||
OpenDispatch=Open for dispatch
|
OpenDispatch=Open for dispatch
|
||||||
|
UseDispatchStatus=Use dispatch status (aprouve/refuse)
|
||||||
|
OptionMULTIPRICESIsOn=Option "several prices per segment" is on. It means a product has several selling price so value for sell can't be calculated
|
||||||
|
ProductStockWarehouseCreated=Stock limit for alert and desired optimal stock correctly created
|
||||||
|
ProductStockWarehouseUpdated=Stock limit for alert and desired optimal stock correctly updated
|
||||||
|
ProductStockWarehouseDeleted=Stock limit for alert and desired optimal stock correctly deleted
|
||||||
|
AddNewProductStockWarehouse=Set new limit for alert and desired optimal stock
|
||||||
|
|||||||
@ -47,6 +47,7 @@ DefaultModelSupplierProposalCreate=Създаване на модел по по
|
|||||||
DefaultModelSupplierProposalToBill=Шаблон по подразбиране, когато се затваря запитване за цена (прието)
|
DefaultModelSupplierProposalToBill=Шаблон по подразбиране, когато се затваря запитване за цена (прието)
|
||||||
DefaultModelSupplierProposalClosed=Шаблон по подразбиране, когато се затваря запитване за цена (отказано)
|
DefaultModelSupplierProposalClosed=Шаблон по подразбиране, когато се затваря запитване за цена (отказано)
|
||||||
ListOfSupplierProposal=Списък на запитвания за цени към доставчици
|
ListOfSupplierProposal=Списък на запитвания за цени към доставчици
|
||||||
|
ListSupplierProposalsAssociatedProject=List of supplier proposals associated with project
|
||||||
SupplierProposalsToClose=Supplier proposals to close
|
SupplierProposalsToClose=Supplier proposals to close
|
||||||
SupplierProposalsToProcess=Supplier proposals to process
|
SupplierProposalsToProcess=Supplier proposals to process
|
||||||
LastSupplierProposals=Last price requests
|
LastSupplierProposals=Last price requests
|
||||||
|
|||||||
@ -7,13 +7,13 @@ History=Исторически
|
|||||||
ListOfSuppliers=Списък на доставчиците
|
ListOfSuppliers=Списък на доставчиците
|
||||||
ShowSupplier=Вижте доставчик
|
ShowSupplier=Вижте доставчик
|
||||||
OrderDate=Дата на поръчката
|
OrderDate=Дата на поръчката
|
||||||
BuyingPriceMin=Minimum purchase price
|
BuyingPriceMin=Best buying price
|
||||||
BuyingPriceMinShort=Min purchase price
|
BuyingPriceMinShort=Best buying price
|
||||||
TotalBuyingPriceMinShort=Total of subproducts purchase prices
|
TotalBuyingPriceMinShort=Total of subproducts buying prices
|
||||||
TotalSellingPriceMinShort=Total of subproducts sell prices
|
TotalSellingPriceMinShort=Total of subproducts selling prices
|
||||||
SomeSubProductHaveNoPrices=Някои под-продукти нямата определена цена
|
SomeSubProductHaveNoPrices=Някои под-продукти нямата определена цена
|
||||||
AddSupplierPrice=Добави награда доставчик
|
AddSupplierPrice=Add buying price
|
||||||
ChangeSupplierPrice=Промяна доставчик цена
|
ChangeSupplierPrice=Change buying price
|
||||||
ReferenceSupplierIsAlreadyAssociatedWithAProduct=Този референтен доставчик вече е свързана с референтното: %s
|
ReferenceSupplierIsAlreadyAssociatedWithAProduct=Този референтен доставчик вече е свързана с референтното: %s
|
||||||
NoRecordedSuppliers=Не регистриран доставчик
|
NoRecordedSuppliers=Не регистриран доставчик
|
||||||
SupplierPayment=Доставчика на платежни услуги
|
SupplierPayment=Доставчика на платежни услуги
|
||||||
@ -36,8 +36,8 @@ ListOfSupplierOrders=Списък на нарежданията за доста
|
|||||||
MenuOrdersSupplierToBill=Поръчки на доставчика за фактуриране
|
MenuOrdersSupplierToBill=Поръчки на доставчика за фактуриране
|
||||||
NbDaysToDelivery=Закъснение на доставка в дни
|
NbDaysToDelivery=Закъснение на доставка в дни
|
||||||
DescNbDaysToDelivery=Най-голямото закъснение на доставка за продукти от тази поръчка
|
DescNbDaysToDelivery=Най-голямото закъснение на доставка за продукти от тази поръчка
|
||||||
UseDoubleApproval=Използване на двойно одобрение, когато сумата (без такса) е по-висока от (Повторното одобрение може да се извърши от всеки потребител с подходящи права. Задайте 0 за без двойно одобрение)
|
|
||||||
SupplierReputation=Supplier reputation
|
SupplierReputation=Supplier reputation
|
||||||
DoNotOrderThisProductToThisSupplier=Do not order
|
DoNotOrderThisProductToThisSupplier=Do not order
|
||||||
NotTheGoodQualitySupplier=Wrong quality
|
NotTheGoodQualitySupplier=Wrong quality
|
||||||
ReputationForThisProduct=Reputation
|
ReputationForThisProduct=Reputation
|
||||||
|
BuyerName=Buyer name
|
||||||
|
|||||||
@ -100,3 +100,6 @@ WeeklyHours=Часове седмично
|
|||||||
ColorUser=Цвят на потребителя
|
ColorUser=Цвят на потребителя
|
||||||
DisabledInMonoUserMode=Disabled in maintenance mode
|
DisabledInMonoUserMode=Disabled in maintenance mode
|
||||||
UserAccountancyCode=User accountancy code
|
UserAccountancyCode=User accountancy code
|
||||||
|
UserLogoff=User logout
|
||||||
|
UserLogged=User logged
|
||||||
|
DateEmployment=Date of Employment
|
||||||
|
|||||||
@ -12,6 +12,7 @@ EditMenu=Edit menu
|
|||||||
EditPageMeta=Edit Meta
|
EditPageMeta=Edit Meta
|
||||||
EditPageContent=Edit Content
|
EditPageContent=Edit Content
|
||||||
Website=Web site
|
Website=Web site
|
||||||
|
Webpage=Web page
|
||||||
AddPage=Add page
|
AddPage=Add page
|
||||||
PreviewOfSiteNotYetAvailable=Preview of your website <strong>%s</strong> not yet available. You must first add a page.
|
PreviewOfSiteNotYetAvailable=Preview of your website <strong>%s</strong> not yet available. You must first add a page.
|
||||||
RequestedPageHasNoContentYet=Requested page with id %s has not content yet or cache file .tpl.php was removed. Edit content of page to solve this.
|
RequestedPageHasNoContentYet=Requested page with id %s has not content yet or cache file .tpl.php was removed. Edit content of page to solve this.
|
||||||
@ -22,4 +23,6 @@ ViewPageInNewTab=View page in new tab
|
|||||||
SetAsHomePage=Set as Home page
|
SetAsHomePage=Set as Home page
|
||||||
RealURL=Real URL
|
RealURL=Real URL
|
||||||
ViewWebsiteInProduction=View web site using home URLs
|
ViewWebsiteInProduction=View web site using home URLs
|
||||||
SetHereVirtualHost=If you can set, on your web server, a dedicated virtual host with a root directory on <strong>%s</strong>, define here the virtual hostname so the preview will be done using this direct access instead of Dolibarr URLs wrapper.
|
SetHereVirtualHost=If you can set, on your web server, a dedicated virtual host with a root directory on <strong>%s</strong>, define here the virtual hostname so the preview can be done also using this direct web server access and not only using Dolibarr server.
|
||||||
|
PreviewSiteServedByWebServer=Preview %s in a new tab. The %s will be served by an external web server (like Apache, Nginx, IIS). You must instal and setup this server before.<br>URL of %s served by external server:<br><strong>%s</strong>
|
||||||
|
PreviewSiteServedByDolibarr=Preview %s in a new tab. The %s will be served by Dolibarr server so it does not need any extra web server (like Apache, Nginx, IIS) to be installed.<br>The inconvenient is that URL of pages are using path of your Dolibarr.<br>URL of %s served by Dolibarr:<br><strong>%s</strong>
|
||||||
|
|||||||
@ -1,27 +1,28 @@
|
|||||||
# Dolibarr language file - Source file is en_US - withdrawals
|
# Dolibarr language file - Source file is en_US - withdrawals
|
||||||
CustomersStandingOrdersArea=Клиентите постоянни нареждания област
|
CustomersStandingOrdersArea=Direct debit payment orders area
|
||||||
StandingOrders=Постоянните поръчки
|
SuppliersStandingOrdersArea=Direct credit payment orders area
|
||||||
StandingOrder=Постоянните поръчки
|
StandingOrders=Direct debit payment orders
|
||||||
NewStandingOrder=Нов постоянно нареждане
|
StandingOrder=Direct debit payment order
|
||||||
|
NewStandingOrder=New direct debit order
|
||||||
StandingOrderToProcess=За обработка
|
StandingOrderToProcess=За обработка
|
||||||
WithdrawalsReceipts=Отнемане постъпления
|
WithdrawalsReceipts=Direct debit orders
|
||||||
WithdrawalReceipt=Оттегляне получаването
|
WithdrawalReceipt=Direct debit order
|
||||||
LastWithdrawalReceipts=Latest %s withdrawal receipts
|
LastWithdrawalReceipts=Latest %s direct debit files
|
||||||
WithdrawalsLines=Отнемане линии
|
WithdrawalsLines=Direct debit order lines
|
||||||
RequestStandingOrderToTreat=Request for standing orders to process
|
RequestStandingOrderToTreat=Request for direct debit payment order to process
|
||||||
RequestStandingOrderTreated=Request for standing orders processed
|
RequestStandingOrderTreated=Request for direct debit payment order processed
|
||||||
NotPossibleForThisStatusOfWithdrawReceiptORLine=Not yet possible. Withdraw status must be set to 'credited' before declaring reject on specific lines.
|
NotPossibleForThisStatusOfWithdrawReceiptORLine=Not yet possible. Withdraw status must be set to 'credited' before declaring reject on specific lines.
|
||||||
NbOfInvoiceToWithdraw=Nb. of invoice with withdraw request
|
NbOfInvoiceToWithdraw=Nb. of invoice with direct debit order
|
||||||
NbOfInvoiceToWithdrawWithInfo=Nb. of invoice with withdraw request for customers having defined bank account information
|
NbOfInvoiceToWithdrawWithInfo=Nb. of customer invoice with direct debit payment orders having defined bank account information
|
||||||
InvoiceWaitingWithdraw=Фактура чака оттегли
|
InvoiceWaitingWithdraw=Invoice waiting for direct debit
|
||||||
AmountToWithdraw=Сума за оттегляне
|
AmountToWithdraw=Сума за оттегляне
|
||||||
WithdrawsRefused=Отказа Тегления
|
WithdrawsRefused=Direct debit refused
|
||||||
NoInvoiceToWithdraw=Нито един клиент фактура в режим на плащане "се оттегли" чака. Отидете на раздела "Теглене" във фактурата карта, за да отправят искане.
|
NoInvoiceToWithdraw=Нито един клиент фактура в режим на плащане "се оттегли" чака. Отидете на раздела "Теглене" във фактурата карта, за да отправят искане.
|
||||||
ResponsibleUser=Отговорност на потребителя
|
ResponsibleUser=Отговорност на потребителя
|
||||||
WithdrawalsSetup=Оттегляне настройка
|
WithdrawalsSetup=Direct debit payment setup
|
||||||
WithdrawStatistics=Теглене на статистически данни
|
WithdrawStatistics=Direct debit payment statistics
|
||||||
WithdrawRejectStatistics=Изтеглете отхвърлят статистически данни
|
WithdrawRejectStatistics=Direct debit payment reject statistics
|
||||||
LastWithdrawalReceipt=Latest %s withdrawal receipts
|
LastWithdrawalReceipt=Latest %s direct debit receipts
|
||||||
MakeWithdrawRequest=Уверете се оттегли искането
|
MakeWithdrawRequest=Уверете се оттегли искането
|
||||||
ThirdPartyBankCode=Банков код на контрагента
|
ThirdPartyBankCode=Банков код на контрагента
|
||||||
NoInvoiceCouldBeWithdrawed=Не теглене фактура с успех. Уверете се, че фактура са дружества с валиден БАН.
|
NoInvoiceCouldBeWithdrawed=Не теглене фактура с успех. Уверете се, че фактура са дружества с валиден БАН.
|
||||||
@ -46,7 +47,7 @@ StatusRefused=Отказ
|
|||||||
StatusMotif0=Неуточнен
|
StatusMotif0=Неуточнен
|
||||||
StatusMotif1=Предоставяне insuffisante
|
StatusMotif1=Предоставяне insuffisante
|
||||||
StatusMotif2=Тиражен conteste
|
StatusMotif2=Тиражен conteste
|
||||||
StatusMotif3=Не Оттегляне за
|
StatusMotif3=No direct debit payment order
|
||||||
StatusMotif4=Поръчка на клиента
|
StatusMotif4=Поръчка на клиента
|
||||||
StatusMotif5=RIB inexploitable
|
StatusMotif5=RIB inexploitable
|
||||||
StatusMotif6=Сметка без баланс
|
StatusMotif6=Сметка без баланс
|
||||||
@ -61,28 +62,43 @@ NotifyCredit=Оттегляне кредит
|
|||||||
NumeroNationalEmetter=Националната предавател номер
|
NumeroNationalEmetter=Националната предавател номер
|
||||||
WithBankUsingRIB=За банкови сметки с помощта на RIB
|
WithBankUsingRIB=За банкови сметки с помощта на RIB
|
||||||
WithBankUsingBANBIC=За банкови сметки с IBAN / BIC / SWIFT
|
WithBankUsingBANBIC=За банкови сметки с IBAN / BIC / SWIFT
|
||||||
BankToReceiveWithdraw=Банкова сметка за получаване оттегли
|
BankToReceiveWithdraw=Bank account to receive direct debit
|
||||||
CreditDate=Кредит за
|
CreditDate=Кредит за
|
||||||
WithdrawalFileNotCapable=Unable to generate withdrawal receipt file for your country %s (Your country is not supported)
|
WithdrawalFileNotCapable=Unable to generate withdrawal receipt file for your country %s (Your country is not supported)
|
||||||
ShowWithdraw=Покажи Теглене
|
ShowWithdraw=Покажи Теглене
|
||||||
IfInvoiceNeedOnWithdrawPaymentWontBeClosed=Въпреки това, ако фактурата не е все още най-малко една оттегляне плащане обработват, не се определя като плаща, за да се даде възможност да управляват оттеглянето им преди.
|
IfInvoiceNeedOnWithdrawPaymentWontBeClosed=Въпреки това, ако фактурата не е все още най-малко една оттегляне плащане обработват, не се определя като плаща, за да се даде възможност да управляват оттеглянето им преди.
|
||||||
DoStandingOrdersBeforePayments=This tab allows you to request a standing order. Once done, go into menu Bank->Withdrawal to manage the standing order. When standing order is closed, payment on invoice will be automatically recorded, and invoice closed if remainder to pay is null.
|
DoStandingOrdersBeforePayments=This tab allows you to request a direct debit payment order. Once done, go into menu Bank->Withdrawal to manage the direct debit payment order. When payment order is closed, payment on invoice will be automatically recorded, and invoice closed if remainder to pay is null.
|
||||||
WithdrawalFile=Withdrawal file
|
WithdrawalFile=Withdrawal file
|
||||||
SetToStatusSent=Зададен към статус "Файл Изпратен"
|
SetToStatusSent=Зададен към статус "Файл Изпратен"
|
||||||
ThisWillAlsoAddPaymentOnInvoice=Това също ще приложи заплащания към фактури и ще ги класифицира като "Платени"
|
ThisWillAlsoAddPaymentOnInvoice=Това също ще приложи заплащания към фактури и ще ги класифицира като "Платени"
|
||||||
StatisticsByLineStatus=Статистики по статуса на линиите
|
StatisticsByLineStatus=Статистики по статуса на линиите
|
||||||
RUM=RUM
|
RUM=UMR
|
||||||
RUMWillBeGenerated=RUM number will be generated once bank account information are saved
|
RUMLong=Unique Mandate Reference
|
||||||
WithdrawMode=Withdraw mode (FRST or RECUR)
|
RUMWillBeGenerated=UMR number will be generated once bank account information are saved
|
||||||
|
WithdrawMode=Direct debit mode (FRST or RECUR)
|
||||||
WithdrawRequestAmount=Withdraw request amount:
|
WithdrawRequestAmount=Withdraw request amount:
|
||||||
WithdrawRequestErrorNilAmount=Unable to create withdraw request for nil amount.
|
WithdrawRequestErrorNilAmount=Unable to create withdraw request for nil amount.
|
||||||
|
SepaMandate=SEPA Direct Debit Mandate
|
||||||
|
SepaMandateShort=SEPA Mandate
|
||||||
|
PleaseReturnMandate=Please return this mandate form by email to %s or by mail to
|
||||||
|
SEPALegalText=By signing this mandate form, you authorize (A) %s to send instructions to your bank to debit your account and (B) your bank to debit your account in accordance with the instructions from %s. As part of your rights, you are entitled to a refund from your bank under the terms and conditions of your agreement with your bank. A refund must be claimed within 8 weeks starting from the date on which your account was debited. Your rights regarding the above mandate are explained in a statement that you can obtain from your bank.
|
||||||
|
CreditorIdentifier=Creditor Identifier
|
||||||
|
CreditorName=Creditor’s Name
|
||||||
|
SEPAFillForm=(B) Please complete all the fields marked *
|
||||||
|
SEPAFormYourName=Your name
|
||||||
|
SEPAFormYourBAN=Your Bank Account Name (IBAN)
|
||||||
|
SEPAFormYourBIC=Your Bank Identifier Code (BIC)
|
||||||
|
SEPAFrstOrRecur=Type of payment
|
||||||
|
ModeRECUR=Reccurent payment
|
||||||
|
ModeFRST=One-off payment
|
||||||
|
PleaseCheckOne=Please check one only
|
||||||
|
|
||||||
### Notifications
|
### Notifications
|
||||||
InfoCreditSubject=Плащане на постоянно нареждане %s от банката
|
InfoCreditSubject=Payment of direct debit payment order %s by the bank
|
||||||
InfoCreditMessage=Постоянната за %s е била платена от банката <br> Данни на плащане: %s
|
InfoCreditMessage=The direct debit payment order %s has been paid by the bank<br>Data of payment: %s
|
||||||
InfoTransSubject=Предаване на %s постоянно нареждане до банката
|
InfoTransSubject=Transmission of direct debit payment order %s to bank
|
||||||
InfoTransMessage=Постоянната за %s е предавана до банката от %s %s. <br><br>
|
InfoTransMessage=The direct debit payment order %s has been sent to bank by %s %s.<br><br>
|
||||||
InfoTransData=Размер: %s <br> Metode: %s <br> Дата: %s
|
InfoTransData=Размер: %s <br> Metode: %s <br> Дата: %s
|
||||||
InfoRejectSubject=Постоянния за отказа
|
InfoRejectSubject=Direct debit payment order refused
|
||||||
InfoRejectMessage=Hello,<br><br>the standing order of invoice %s related to the company %s, with an amount of %s has been refused by the bank.<br><br>--<br>%s
|
InfoRejectMessage=Hello,<br><br>the direct debit payment order of invoice %s related to the company %s, with an amount of %s has been refused by the bank.<br><br>--<br>%s
|
||||||
ModeWarning=Възможност за реален режим не е създаден, спираме след тази симулация
|
ModeWarning=Възможност за реален режим не е създаден, спираме след тази симулация
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
# Dolibarr language file - Source file is en_US - admin
|
# Dolibarr language file - Source file is en_US - workflow
|
||||||
WorkflowSetup=Настройки на модул Workflow
|
WorkflowSetup=Настройки на модул Workflow
|
||||||
WorkflowDesc=Този модул е проектиран да редактира поведението на автоматичните действия в приложението. По подразбиране, работния процес е отворен (можете да правите неща в реда, в който желаете). Можете да активирате автоматичните действия, които ви интересуват.
|
WorkflowDesc=Този модул е проектиран да редактира поведението на автоматичните действия в приложението. По подразбиране, работния процес е отворен (можете да правите неща в реда, в който желаете). Можете да активирате автоматичните действия, които ви интересуват.
|
||||||
ThereIsNoWorkflowToModify=Няма налични промени на работния процес с активираните модули.
|
ThereIsNoWorkflowToModify=Няма налични промени на работния процес с активираните модули.
|
||||||
@ -9,3 +9,5 @@ descWORKFLOW_ORDER_AUTOCREATE_INVOICE=Автоматично създаване
|
|||||||
descWORKFLOW_ORDER_CLASSIFY_BILLED_PROPAL=Класифицира свързан източник на предложение за Плоскоклюн при поръчка на клиента на платен
|
descWORKFLOW_ORDER_CLASSIFY_BILLED_PROPAL=Класифицира свързан източник на предложение за Плоскоклюн при поръчка на клиента на платен
|
||||||
descWORKFLOW_INVOICE_CLASSIFY_BILLED_ORDER=Classify linked source customer order(s) to billed when customer invoice is set to paid
|
descWORKFLOW_INVOICE_CLASSIFY_BILLED_ORDER=Classify linked source customer order(s) to billed when customer invoice is set to paid
|
||||||
descWORKFLOW_INVOICE_AMOUNT_CLASSIFY_BILLED_ORDER=Classify linked source customer order(s) to billed when customer invoice is validated
|
descWORKFLOW_INVOICE_AMOUNT_CLASSIFY_BILLED_ORDER=Classify linked source customer order(s) to billed when customer invoice is validated
|
||||||
|
descWORKFLOW_INVOICE_CLASSIFY_BILLED_PROPAL=Classify linked source proposal to billed when customer invoice is validated
|
||||||
|
descWORKFLOW_ORDER_CLASSIFY_SHIPPED_SHIPPING=Classify shipped linked source order on shipping validate if quantity shipped is the same as in order
|
||||||
|
|||||||
@ -14,48 +14,69 @@ Journaux=Journals
|
|||||||
JournalFinancial=Financial journals
|
JournalFinancial=Financial journals
|
||||||
BackToChartofaccounts=Return chart of accounts
|
BackToChartofaccounts=Return chart of accounts
|
||||||
|
|
||||||
|
AccountancyArea=Accountancy area
|
||||||
|
AccountancyAreaDescIntro=Usage of the accountancy module is done in several step:
|
||||||
|
AccountancyAreaDescActionOnce=The following actions are usually executed one time only, or once per year...
|
||||||
|
AccountancyAreaDescActionFreq=The following actions are usually executed every month, week or day for very large companies...
|
||||||
|
AccountancyAreaDescChart=STEP %s: Create or check your chart of account from menu %s
|
||||||
|
AccountancyAreaDescProd=STEP %s: Check the binding between products/services and accounting account is done. Complete missing bindings. This will save you time in future for the next steps by suggesting you the correct default accounting account on your invoice lines.<br>For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescBank=STEP %s: Check the binding between bank accounts and accounting account is done. Complete missing bindings. This will save you time in future for the next steps by suggesting you the correct default accounting account on your payment lines.<br>For this, go on the card of each financial account. You can start from page %s.
|
||||||
|
AccountancyAreaDescVat=STEP %s: Check the binding between vat payment and accounting account is done. Complete missing bindings. This will save you time in future for the next steps by suggesting you the correct default accounting account on records related to VAT payments.<br>You can set accounting accounts to use for each VAT from page %s.
|
||||||
|
AccountancyAreaDescSal=STEP %s: Check the binding between salaries payment and accounting account is done. Complete missing bindings. This will save you time in future for the next steps by suggesting you the correct default accounting account on records related to payment of salaries.<br>For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescContrib=STEP %s: Check the binding between special expences (social or fiscal contributions) and accounting account is done. Complete missing bindings. This will save you time in future for the next steps by suggesting you the correct default accounting account on records related to payments of social contributions.<br>For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescDonation=STEP %s: Check the binding between donation and accounting account is done. Complete missing bindings. This will save you time in future for the next steps by suggesting you the correct default accounting account on records related to payments of donation.<br>You can set the account dedicated for that from the menu entry %s.
|
||||||
|
|
||||||
|
AccountancyAreaDescCustomer=STEP %s: Check the binding between existing customer invoice lines and accounting account is done. Complete missing bindings. Once binding is complete, application will be able to record transactions in General Ledger in one click.<br>For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescSupplier=STEP %s: Check the binding between existing supplier invoice lines and accounting account is done. Complete missing bindings. Once binding is complete, application will be able to record transactions in General Ledger in one click.<br>For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescWriteRecords=STEP %s: Write transactions into the General Ledger. Add or edit existing transactions and generate reports
|
||||||
|
|
||||||
Selectchartofaccounts=Select a chart of accounts
|
Selectchartofaccounts=Select a chart of accounts
|
||||||
Addanaccount=Add an accounting account
|
Addanaccount=Add an accounting account
|
||||||
AccountAccounting=Accounting account
|
AccountAccounting=Accounting account
|
||||||
AccountAccountingShort=Account
|
AccountAccountingShort=Account
|
||||||
AccountAccountingSuggest=Accounting account suggest
|
AccountAccountingSuggest=Accounting account suggest
|
||||||
Ventilation=Breakdown
|
Ventilation=Binding to accounts
|
||||||
|
ProductsBinding=Products bindings
|
||||||
|
|
||||||
MenuAccountancy=Accountancy
|
MenuAccountancy=Accountancy
|
||||||
CustomersVentilation=Breakdown customers
|
CustomersVentilation=Customer invoice binding
|
||||||
SuppliersVentilation=Breakdown suppliers
|
SuppliersVentilation=Supplier invoice binding
|
||||||
Reports=Reports
|
Reports=Reports
|
||||||
NewAccount=New accounting account
|
NewAccount=New accounting account
|
||||||
Create=Create
|
Create=Create
|
||||||
CreateMvts=Create movement
|
CreateMvts=Create new transaction
|
||||||
UpdateMvts=Modification of a movement
|
UpdateMvts=Modification of a transaction
|
||||||
WriteBookKeeping=Record accounts in general ledger
|
WriteBookKeeping=Record operations in General Ledger
|
||||||
Bookkeeping=General ledger
|
Bookkeeping=General ledger
|
||||||
AccountBalance=Account balance
|
AccountBalance=Account balance
|
||||||
|
|
||||||
CAHTF=Total purchase supplier before tax
|
CAHTF=Total purchase supplier before tax
|
||||||
InvoiceLines=Lines of invoice to be ventilated
|
InvoiceLines=Lines of invoices to bind
|
||||||
InvoiceLinesDone=Ventilated lines of invoice
|
InvoiceLinesDone=Bound lines of invoices
|
||||||
IntoAccount=Ventilate in the accounting account
|
IntoAccount=Bind line with the accounting account
|
||||||
|
|
||||||
Ventilate=Ventilate
|
Ventilate=Bind
|
||||||
|
|
||||||
Processing=Processing
|
Processing=Processing
|
||||||
EndProcessing=The end of processing
|
EndProcessing=The end of processing
|
||||||
AnyLineVentilate=Any lines to ventilate
|
AnyLineVentilate=Any lines to bind
|
||||||
SelectedLines=Selected lines
|
SelectedLines=Selected lines
|
||||||
Lineofinvoice=Line of invoice
|
Lineofinvoice=Line of invoice
|
||||||
VentilatedinAccount=Ventilated successfully in the accounting account
|
VentilatedinAccount=Binded successfully to the accounting account
|
||||||
NotVentilatedinAccount=Not ventilated in the accounting account
|
NotVentilatedinAccount=Not bound to the accounting account
|
||||||
|
XLineSuccessfullyBinded=%s products/services successfuly bound to an accounting account
|
||||||
|
XLineFailedToBeBinded=%s products/services were not bound to any accounting account
|
||||||
|
|
||||||
ACCOUNTING_LIMIT_LIST_VENTILATION=Number of elements to be breakdown shown by page (maximum recommended : 50)
|
ACCOUNTING_LIMIT_LIST_VENTILATION=Number of elements to bind shown by page (maximum recommended : 50)
|
||||||
ACCOUNTING_LIST_SORT_VENTILATION_TODO=Begin the sorting of the breakdown pages "Has to breakdown" by the most recent elements
|
ACCOUNTING_LIST_SORT_VENTILATION_TODO=Begin the sorting of the page "Binding to do" by the most recent elements
|
||||||
ACCOUNTING_LIST_SORT_VENTILATION_DONE=Begin the sorting of the breakdown pages "Breakdown" by the most recent elements
|
ACCOUNTING_LIST_SORT_VENTILATION_DONE=Begin the sorting of the page "Binding done" by the most recent elements
|
||||||
|
|
||||||
ACCOUNTING_LENGTH_DESCRIPTION=Length for displaying product & services description in listings (Best = 50)
|
ACCOUNTING_LENGTH_DESCRIPTION=Length for displaying product & services description in listings (Best = 50)
|
||||||
ACCOUNTING_LENGTH_DESCRIPTION_ACCOUNT=Length for displaying product & services account description form in listings (Best = 50)
|
ACCOUNTING_LENGTH_DESCRIPTION_ACCOUNT=Length for displaying product & services account description form in listings (Best = 50)
|
||||||
ACCOUNTING_LENGTH_GACCOUNT=Length of the general accounts
|
ACCOUNTING_LENGTH_GACCOUNT=Length of the general accounting accounts
|
||||||
ACCOUNTING_LENGTH_AACCOUNT=Length of the third party accounts
|
ACCOUNTING_LENGTH_AACCOUNT=Length of the third party accounting accounts
|
||||||
|
ACCOUNTING_MANAGE_ZERO=Manage the zero at the end of an accounting account. Needed by some countries. Disable by default. Be careful with the function "length of the accounts".
|
||||||
|
BANK_DISABLE_DIRECT_INPUT=Disable free input of bank transactions (Enabled by default with this module).
|
||||||
|
|
||||||
ACCOUNTING_SELL_JOURNAL=Sell journal
|
ACCOUNTING_SELL_JOURNAL=Sell journal
|
||||||
ACCOUNTING_PURCHASE_JOURNAL=Purchase journal
|
ACCOUNTING_PURCHASE_JOURNAL=Purchase journal
|
||||||
@ -81,32 +102,31 @@ Sens=Sens
|
|||||||
Codejournal=Journal
|
Codejournal=Journal
|
||||||
NumPiece=Piece number
|
NumPiece=Piece number
|
||||||
AccountingCategory=Accounting category
|
AccountingCategory=Accounting category
|
||||||
|
|
||||||
NotMatch=Not Set
|
NotMatch=Not Set
|
||||||
|
|
||||||
DeleteMvt=Delete general ledger lines
|
DeleteMvt=Delete general ledger lines
|
||||||
DelYear=Year to delete
|
DelYear=Year to delete
|
||||||
DelJournal=Journal to delete
|
DelJournal=Journal to delete
|
||||||
ConfirmDeleteMvt=This will delete all line of of the general ledger for year and/or from a specifics journal
|
ConfirmDeleteMvt=This will delete all lines of the general ledger for year and/or from a specifics journal
|
||||||
|
ConfirmDeleteMvtPartial=This will delete the selected line(s) of the general ledger
|
||||||
DelBookKeeping=Delete the records of the general ledger
|
DelBookKeeping=Delete the records of the general ledger
|
||||||
|
|
||||||
DescSellsJournal=Sells journal
|
DescSellsJournal=Sells journal
|
||||||
DescPurchasesJournal=Purchases journal
|
DescPurchasesJournal=Purchases journal
|
||||||
FinanceJournal=Finance journal
|
FinanceJournal=Finance journal
|
||||||
DescFinanceJournal=Finance journal including all the types of payments by bank account
|
DescFinanceJournal=Finance journal including all the types of payments by bank account
|
||||||
|
DescJournalOnlyBindedVisible=This is a view of records that are bound to products/services accountancy account and can be recorded into the General Ledger.
|
||||||
|
VATAccountNotDefined=Account for VAT not defined
|
||||||
|
ThirdpartyAccountNotDefined=Account for third party not defined
|
||||||
|
ProductAccountNotDefined=Account for product not defined
|
||||||
|
BankAccountNotDefined=Account for bank not defined
|
||||||
CustomerInvoicePayment=Payment of invoice customer
|
CustomerInvoicePayment=Payment of invoice customer
|
||||||
|
|
||||||
ThirdPartyAccount=Thirdparty account
|
ThirdPartyAccount=Thirdparty account
|
||||||
|
NewAccountingMvt=New transaction
|
||||||
NewAccountingMvt=New movement
|
NumMvts=Numero of transaction
|
||||||
NumMvts=Number of movement
|
ListeMvts=List of movements
|
||||||
ListeMvts=List of the movement
|
|
||||||
ErrorDebitCredit=Debit and Credit cannot have a value at the same time
|
ErrorDebitCredit=Debit and Credit cannot have a value at the same time
|
||||||
|
|
||||||
ReportThirdParty=List third party account
|
ReportThirdParty=List third party account
|
||||||
DescThirdPartyReport=Consult here the list of the thirdparty customers and the suppliers and their accounting accounts
|
DescThirdPartyReport=Consult here the list of the third party customers and suppliers and their accounting accounts
|
||||||
|
|
||||||
ListAccounts=List of the accounting accounts
|
ListAccounts=List of the accounting accounts
|
||||||
|
|
||||||
@ -114,22 +134,29 @@ Pcgtype=Class of account
|
|||||||
Pcgsubtype=Under class of account
|
Pcgsubtype=Under class of account
|
||||||
Accountparent=Root of the account
|
Accountparent=Root of the account
|
||||||
|
|
||||||
DescVentilCustomer=Consult here the annual breakdown accounting of your invoices customers
|
|
||||||
TotalVente=Total turnover before tax
|
TotalVente=Total turnover before tax
|
||||||
TotalMarge=Total sales margin
|
TotalMarge=Total sales margin
|
||||||
DescVentilDoneCustomer=Consult here the list of the lines of invoices customers and their accounting account
|
|
||||||
DescVentilTodoCustomer=Ventilate your lines of customer invoice with an accounting account
|
DescVentilCustomer=Consult here the list of customer invoice lines bound (or not) to a product accounting account
|
||||||
ChangeAccount=Change the accounting account for lines selected by the account:
|
DescVentilMore=In most cases, if you use predefined products or services and you set the account number on the product/service card, the application will be able to make all the binding between your invoice lines and the accounting account of your chart of accounts, just in one click with the button <strong>"%s"</strong>. If account was not set on product/service cards or if you still has some lines not bound to any account, you will have to make a manual binding from the menu "<strong>%s</strong>".
|
||||||
|
DescVentilDoneCustomer=Consult here the list of the lines of invoices customers and their product accounting account
|
||||||
|
DescVentilTodoCustomer=Bind invoice lines not already bound with a product accounting account
|
||||||
|
ChangeAccount=Change the product/service accounting account for selected lines with the following accounting account:
|
||||||
Vide=-
|
Vide=-
|
||||||
DescVentilSupplier=Consult here the annual breakdown accounting of your invoices suppliers
|
DescVentilSupplier=Consult here the list of supplier invoice lines bound or not yet bound to a product accounting account
|
||||||
DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier and their accounting account
|
DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier and their accounting account
|
||||||
|
|
||||||
ValidateHistory=Validate Automatically
|
ValidateHistory=Bind Automatically
|
||||||
|
AutomaticBindingDone=Automatic binding done
|
||||||
|
|
||||||
ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
|
ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
|
||||||
MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
|
MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
|
||||||
FicheVentilation=Breakdown card
|
FicheVentilation=Binding card
|
||||||
GeneralLedgerIsWritten=Operations are written in the general ledger
|
GeneralLedgerIsWritten=Operations are written in the general ledger
|
||||||
|
GeneralLedgerSomeRecordWasNotRecorded=Some of the transactions could not be recorded.
|
||||||
|
NoNewRecordSaved=No new record saved
|
||||||
|
ListOfProductsWithoutAccountingAccount=List of products not bound to any accounting account
|
||||||
|
ChangeBinding=Change the binding
|
||||||
|
|
||||||
## Admin
|
## Admin
|
||||||
ApplyMassCategories=Apply mass categories
|
ApplyMassCategories=Apply mass categories
|
||||||
@ -151,12 +178,14 @@ Modelcsv_cogilog=Export towards Cogilog
|
|||||||
|
|
||||||
## Tools - Init accounting account on product / service
|
## Tools - Init accounting account on product / service
|
||||||
InitAccountancy=Init accountancy
|
InitAccountancy=Init accountancy
|
||||||
InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
|
InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of chart of accounts is complete.
|
||||||
Options=Options
|
Options=Options
|
||||||
OptionModeProductSell=Mode sales
|
OptionModeProductSell=Mode sales
|
||||||
OptionModeProductBuy=Mode purchases
|
OptionModeProductBuy=Mode purchases
|
||||||
OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
|
OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
|
||||||
OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
|
OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
|
||||||
|
CleanFixHistory=Remove accountancy code from lines that not exists into charts of account
|
||||||
|
CleanHistory=Reset all bindings for selected year
|
||||||
|
|
||||||
## Dictionary
|
## Dictionary
|
||||||
Range=Range of accounting account
|
Range=Range of accounting account
|
||||||
@ -167,3 +196,9 @@ Formula=Formula
|
|||||||
ErrorNoAccountingCategoryForThisCountry=No accounting category are available for this country
|
ErrorNoAccountingCategoryForThisCountry=No accounting category are available for this country
|
||||||
ExportNotSupported=The export format setuped is not supported into this page
|
ExportNotSupported=The export format setuped is not supported into this page
|
||||||
BookeppingLineAlreayExists=Lines already existing into bookeeping
|
BookeppingLineAlreayExists=Lines already existing into bookeeping
|
||||||
|
|
||||||
|
Binded=Lines bound
|
||||||
|
ToBind=Lines to bind
|
||||||
|
|
||||||
|
WarningReportNotReliable=Warning, this report is not based on the General Ledger, so is not reliable yet. It will be replaced by a correct report in a next version.
|
||||||
|
|
||||||
|
|||||||
@ -8,11 +8,16 @@ VersionExperimental=Experimental
|
|||||||
VersionDevelopment=Development
|
VersionDevelopment=Development
|
||||||
VersionUnknown=Unknown
|
VersionUnknown=Unknown
|
||||||
VersionRecommanded=Recommended
|
VersionRecommanded=Recommended
|
||||||
FileCheck=Files Integrity
|
FileCheck=Files integrity checker
|
||||||
|
FileCheckDesc=This tool allows you to check the integrity of files of your application, comparing each files with the official ones. You can use this tool to detect if some files were modified by a hacker for example.
|
||||||
|
MakeIntegrityAnalysisFrom=Make integrity analysis of application files from
|
||||||
|
LocalSignature=Embedded local signature (less reliable)
|
||||||
|
RemoteSignature=Remote distant signature (more reliable)
|
||||||
FilesMissing=Missing Files
|
FilesMissing=Missing Files
|
||||||
FilesUpdated=Updated Files
|
FilesUpdated=Updated Files
|
||||||
FileCheckDolibarr=Check Dolibarr Files Integrity
|
FileCheckDolibarr=Check integrity of application files
|
||||||
XmlNotFound=Xml File of Dolibarr Integrity Not Found
|
AvailableOnlyOnPackagedVersions=The local file for integrity checking is only available when application is installed from a certified package
|
||||||
|
XmlNotFound=Xml Integrity File of application not found
|
||||||
SessionId=Session ID
|
SessionId=Session ID
|
||||||
SessionSaveHandler=Handler to save sessions
|
SessionSaveHandler=Handler to save sessions
|
||||||
SessionSavePath=Storage session localization
|
SessionSavePath=Storage session localization
|
||||||
@ -49,7 +54,7 @@ ErrorDecimalLargerThanAreForbidden=Error, a precision higher than <b>%s</b> is n
|
|||||||
DictionarySetup=Dictionary setup
|
DictionarySetup=Dictionary setup
|
||||||
Dictionary=Dictionaries
|
Dictionary=Dictionaries
|
||||||
Chartofaccounts=Chart of accounts
|
Chartofaccounts=Chart of accounts
|
||||||
Fiscalyear=Fiscal years
|
Fiscalyear=Fiscal year
|
||||||
ErrorReservedTypeSystemSystemAuto=Value 'system' and 'systemauto' for type is reserved. You can use 'user' as value to add your own record
|
ErrorReservedTypeSystemSystemAuto=Value 'system' and 'systemauto' for type is reserved. You can use 'user' as value to add your own record
|
||||||
ErrorCodeCantContainZero=Code can't contain value 0
|
ErrorCodeCantContainZero=Code can't contain value 0
|
||||||
DisableJavascript=Disable JavaScript and Ajax functions (Recommended for blind person or text browsers)
|
DisableJavascript=Disable JavaScript and Ajax functions (Recommended for blind person or text browsers)
|
||||||
@ -176,10 +181,11 @@ EncodeBinariesInHexa=Encode binary data in hexadecimal
|
|||||||
IgnoreDuplicateRecords=Ignore errors of duplicate records (INSERT IGNORE)
|
IgnoreDuplicateRecords=Ignore errors of duplicate records (INSERT IGNORE)
|
||||||
AutoDetectLang=Autodetect (browser language)
|
AutoDetectLang=Autodetect (browser language)
|
||||||
FeatureDisabledInDemo=Feature disabled in demo
|
FeatureDisabledInDemo=Feature disabled in demo
|
||||||
|
FeatureAvailableOnlyOnStable=Feature only available on official stable versions
|
||||||
Rights=Permissions
|
Rights=Permissions
|
||||||
BoxesDesc=Widgets are components showing some information that you can add to personalize some pages. You can choose between showing the widget or not by selecting target page and clicking 'Activate', or by clicking the dustbin to disable it.
|
BoxesDesc=Widgets are components showing some information that you can add to personalize some pages. You can choose between showing the widget or not by selecting target page and clicking 'Activate', or by clicking the dustbin to disable it.
|
||||||
OnlyActiveElementsAreShown=Only elements from <a href="%s">enabled modules</a> are shown.
|
OnlyActiveElementsAreShown=Only elements from <a href="%s">enabled modules</a> are shown.
|
||||||
ModulesDesc=Dolibarr modules define which functionality is enabled in software. Some modules require permissions you must grant to users, after enabling module. Click on button on/off in column "Status" to enable a module/feature.
|
ModulesDesc=Dolibarr modules define which functionality is enabled in software. Some modules require permissions you must grant to users, after enabling module. Click on button on/off to enable a module/feature.
|
||||||
ModulesMarketPlaceDesc=You can find more modules to download on external websites on the Internet...
|
ModulesMarketPlaceDesc=You can find more modules to download on external websites on the Internet...
|
||||||
ModulesMarketPlaces=More modules...
|
ModulesMarketPlaces=More modules...
|
||||||
DoliStoreDesc=DoliStore, the official market place for Dolibarr ERP/CRM external modules
|
DoliStoreDesc=DoliStore, the official market place for Dolibarr ERP/CRM external modules
|
||||||
@ -273,6 +279,7 @@ YouCanSubmitFile=For this step, you can send package using this tool: Select mod
|
|||||||
CurrentVersion=Dolibarr current version
|
CurrentVersion=Dolibarr current version
|
||||||
CallUpdatePage=Go to the page that updates the database structure and data: %s.
|
CallUpdatePage=Go to the page that updates the database structure and data: %s.
|
||||||
LastStableVersion=Latest stable version
|
LastStableVersion=Latest stable version
|
||||||
|
LastActivationDate=Last activation date
|
||||||
UpdateServerOffline=Update server offline
|
UpdateServerOffline=Update server offline
|
||||||
GenericMaskCodes=You may enter any numbering mask. In this mask, the following tags could be used:<br><b>{000000}</b> corresponds to a number which will be incremented on each %s. Enter as many zeros as the desired length of the counter. The counter will be completed by zeros from the left in order to have as many zeros as the mask. <br><b>{000000+000}</b> same as previous but an offset corresponding to the number to the right of the + sign is applied starting on first %s. <br><b>{000000@x}</b> same as previous but the counter is reset to zero when month x is reached (x between 1 and 12, or 0 to use the early months of fiscal year defined in your configuration, or 99 to reset to zero every month). If this option is used and x is 2 or higher, then sequence {yy}{mm} or {yyyy}{mm} is also required. <br><b>{dd}</b> day (01 to 31).<br><b>{mm}</b> month (01 to 12).<br><b>{yy}</b>, <b>{yyyy}</b> or <b>{y}</b> year over 2, 4 or 1 numbers. <br>
|
GenericMaskCodes=You may enter any numbering mask. In this mask, the following tags could be used:<br><b>{000000}</b> corresponds to a number which will be incremented on each %s. Enter as many zeros as the desired length of the counter. The counter will be completed by zeros from the left in order to have as many zeros as the mask. <br><b>{000000+000}</b> same as previous but an offset corresponding to the number to the right of the + sign is applied starting on first %s. <br><b>{000000@x}</b> same as previous but the counter is reset to zero when month x is reached (x between 1 and 12, or 0 to use the early months of fiscal year defined in your configuration, or 99 to reset to zero every month). If this option is used and x is 2 or higher, then sequence {yy}{mm} or {yyyy}{mm} is also required. <br><b>{dd}</b> day (01 to 31).<br><b>{mm}</b> month (01 to 12).<br><b>{yy}</b>, <b>{yyyy}</b> or <b>{y}</b> year over 2, 4 or 1 numbers. <br>
|
||||||
GenericMaskCodes2=<b>{cccc}</b> the client code on n characters<br><b>{cccc000}</b> the client code on n characters is followed by a counter dedicated for customer. This counter dedicated to customer is reset at same time than global counter.<br><b>{tttt}</b> The code of third party type on n characters (see dictionary-thirdparty types).<br>
|
GenericMaskCodes2=<b>{cccc}</b> the client code on n characters<br><b>{cccc000}</b> the client code on n characters is followed by a counter dedicated for customer. This counter dedicated to customer is reset at same time than global counter.<br><b>{tttt}</b> The code of third party type on n characters (see dictionary-thirdparty types).<br>
|
||||||
@ -331,7 +338,7 @@ UrlGenerationParameters=Parameters to secure URLs
|
|||||||
SecurityTokenIsUnique=Use a unique securekey parameter for each URL
|
SecurityTokenIsUnique=Use a unique securekey parameter for each URL
|
||||||
EnterRefToBuildUrl=Enter reference for object %s
|
EnterRefToBuildUrl=Enter reference for object %s
|
||||||
GetSecuredUrl=Get calculated URL
|
GetSecuredUrl=Get calculated URL
|
||||||
ButtonHideUnauthorized=Hide buttons for unauthorized actions instead of showing disabled buttons
|
ButtonHideUnauthorized=Hide buttons to non admin users for unauthorized actions instead of showing greyed disabled buttons
|
||||||
OldVATRates=Old VAT rate
|
OldVATRates=Old VAT rate
|
||||||
NewVATRates=New VAT rate
|
NewVATRates=New VAT rate
|
||||||
PriceBaseTypeToChange=Modify on prices with base reference value defined on
|
PriceBaseTypeToChange=Modify on prices with base reference value defined on
|
||||||
@ -349,6 +356,7 @@ ExtrafieldMail = Email
|
|||||||
ExtrafieldSelect = Select list
|
ExtrafieldSelect = Select list
|
||||||
ExtrafieldSelectList = Select from table
|
ExtrafieldSelectList = Select from table
|
||||||
ExtrafieldSeparator=Separator
|
ExtrafieldSeparator=Separator
|
||||||
|
ExtrafieldPassword=Password
|
||||||
ExtrafieldCheckBox=Checkbox
|
ExtrafieldCheckBox=Checkbox
|
||||||
ExtrafieldRadio=Radio button
|
ExtrafieldRadio=Radio button
|
||||||
ExtrafieldCheckBoxFromList= Checkbox from table
|
ExtrafieldCheckBoxFromList= Checkbox from table
|
||||||
@ -383,11 +391,14 @@ EnableFileCache=Enable file cache
|
|||||||
ShowDetailsInPDFPageFoot=Add more details into footer of PDF files, like your company address, or manager names (to complete professional ids, company capital and VAT number).
|
ShowDetailsInPDFPageFoot=Add more details into footer of PDF files, like your company address, or manager names (to complete professional ids, company capital and VAT number).
|
||||||
NoDetails=No more details in footer
|
NoDetails=No more details in footer
|
||||||
DisplayCompanyInfo=Display company address
|
DisplayCompanyInfo=Display company address
|
||||||
DisplayCompanyInfoAndManagers=Display company and manager names
|
DisplayCompanyManagers=Display manager names
|
||||||
|
DisplayCompanyInfoAndManagers=Display company address and manager names
|
||||||
EnableAndSetupModuleCron=If you want to have this recurring invoice beeing generated automatically, module *%s* must be enabled and correctly setup. Otherwise, generation of invoices must be done manually from this template with button *Create*. Note that even if you enabled automatic generation, you can still safely launch manual generation. Duplicates generation for same period are not possible.
|
EnableAndSetupModuleCron=If you want to have this recurring invoice beeing generated automatically, module *%s* must be enabled and correctly setup. Otherwise, generation of invoices must be done manually from this template with button *Create*. Note that even if you enabled automatic generation, you can still safely launch manual generation. Duplicates generation for same period are not possible.
|
||||||
ModuleCompanyCodeAquarium=Return an accountancy code built by:<br>%s followed by third party supplier code for a supplier accountancy code,<br>%s followed by third party customer code for a customer accountancy code.
|
ModuleCompanyCodeAquarium=Return an accountancy code built by:<br>%s followed by third party supplier code for a supplier accountancy code,<br>%s followed by third party customer code for a customer accountancy code.
|
||||||
ModuleCompanyCodePanicum=Return an empty accountancy code.
|
ModuleCompanyCodePanicum=Return an empty accountancy code.
|
||||||
ModuleCompanyCodeDigitaria=Accountancy code depends on third party code. The code is composed of the character "C" in the first position followed by the first 5 characters of the third party code.
|
ModuleCompanyCodeDigitaria=Accountancy code depends on third party code. The code is composed of the character "C" in the first position followed by the first 5 characters of the third party code.
|
||||||
|
Use3StepsApproval=By default, Purchase Orders need to be created and approved by 2 different users (one step/user to create and one step/user to approve. Note that if user has both permission to create and approve, one step/user will be enough). You can ask with this option to introduce an third step/user approval, if amount is higher than a dedicated value (so 3 steps will be necessary: 1 validation, 2=first approval and 3=second approval if amount is enough).<br>Set this to empty if one approval (2 steps) is enough, set it to a very low value (0.1) if a second approval is always required.
|
||||||
|
UseDoubleApproval=Use a 3 steps approval when amount (without tax) is higher than...
|
||||||
|
|
||||||
# Modules
|
# Modules
|
||||||
Module0Name=Users & groups
|
Module0Name=Users & groups
|
||||||
@ -428,8 +439,8 @@ Module55Name=Barcodes
|
|||||||
Module55Desc=Barcode management
|
Module55Desc=Barcode management
|
||||||
Module56Name=Telephony
|
Module56Name=Telephony
|
||||||
Module56Desc=Telephony integration
|
Module56Desc=Telephony integration
|
||||||
Module57Name=Standing orders
|
Module57Name=Direct bank payment orders
|
||||||
Module57Desc=Standing orders and withdrawal management. Also includes generation of SEPA file for european countries.
|
Module57Desc=Management of Direct Debit payment orders. It includes generation of SEPA file for european countries.
|
||||||
Module58Name=ClickToDial
|
Module58Name=ClickToDial
|
||||||
Module58Desc=Integration of a ClickToDial system (Asterisk, ...)
|
Module58Desc=Integration of a ClickToDial system (Asterisk, ...)
|
||||||
Module59Name=Bookmark4u
|
Module59Name=Bookmark4u
|
||||||
@ -466,8 +477,8 @@ Module410Name=Webcalendar
|
|||||||
Module410Desc=Webcalendar integration
|
Module410Desc=Webcalendar integration
|
||||||
Module500Name=Special expenses
|
Module500Name=Special expenses
|
||||||
Module500Desc=Management of special expenses (taxes, social or fiscal taxes, dividends)
|
Module500Desc=Management of special expenses (taxes, social or fiscal taxes, dividends)
|
||||||
Module510Name=Salaries
|
Module510Name=Employee contracts and salaries
|
||||||
Module510Desc=Management of employees salaries and payments
|
Module510Desc=Management of employees contracts, salaries and payments
|
||||||
Module520Name=Loan
|
Module520Name=Loan
|
||||||
Module520Desc=Management of loans
|
Module520Desc=Management of loans
|
||||||
Module600Name=Notifications
|
Module600Name=Notifications
|
||||||
@ -606,10 +617,10 @@ Permission142=Create/modify all projects and tasks (also private projects i am n
|
|||||||
Permission144=Delete all projects and tasks (also private projects i am not contact for)
|
Permission144=Delete all projects and tasks (also private projects i am not contact for)
|
||||||
Permission146=Read providers
|
Permission146=Read providers
|
||||||
Permission147=Read stats
|
Permission147=Read stats
|
||||||
Permission151=Read standing orders
|
Permission151=Read direct debit payment orders
|
||||||
Permission152=Create/modify a standing orders request
|
Permission152=Create/modify a direct debit payment orders
|
||||||
Permission153=Transmission standing orders receipts
|
Permission153=Send/Transmit direct debit payment orders
|
||||||
Permission154=Credit/refuse standing orders receipts
|
Permission154=Record Credits/Rejects of direct debit payment orders
|
||||||
Permission161=Read contracts/subscriptions
|
Permission161=Read contracts/subscriptions
|
||||||
Permission162=Create/modify contracts/subscriptions
|
Permission162=Create/modify contracts/subscriptions
|
||||||
Permission163=Activate a service/subscription of a contract
|
Permission163=Activate a service/subscription of a contract
|
||||||
@ -747,6 +758,7 @@ Permission1236=Export supplier invoices, attributes and payments
|
|||||||
Permission1237=Export supplier orders and their details
|
Permission1237=Export supplier orders and their details
|
||||||
Permission1251=Run mass imports of external data into database (data load)
|
Permission1251=Run mass imports of external data into database (data load)
|
||||||
Permission1321=Export customer invoices, attributes and payments
|
Permission1321=Export customer invoices, attributes and payments
|
||||||
|
Permission1322=Reopen a paid bill
|
||||||
Permission1421=Export customer orders and attributes
|
Permission1421=Export customer orders and attributes
|
||||||
Permission20001=Read leave requests (yours and your subordinates)
|
Permission20001=Read leave requests (yours and your subordinates)
|
||||||
Permission20002=Create/modify your leave requests
|
Permission20002=Create/modify your leave requests
|
||||||
@ -780,6 +792,10 @@ Permission55002=Create/modify polls
|
|||||||
Permission59001=Read commercial margins
|
Permission59001=Read commercial margins
|
||||||
Permission59002=Define commercial margins
|
Permission59002=Define commercial margins
|
||||||
Permission59003=Read every user margin
|
Permission59003=Read every user margin
|
||||||
|
Permission63001=Read resources
|
||||||
|
Permission63002=Create/modify resources
|
||||||
|
Permission63003=Delete resources
|
||||||
|
Permission63004=Link resources to agenda events
|
||||||
DictionaryCompanyType=Types of thirdparties
|
DictionaryCompanyType=Types of thirdparties
|
||||||
DictionaryCompanyJuridicalType=Legal forms of thirdparties
|
DictionaryCompanyJuridicalType=Legal forms of thirdparties
|
||||||
DictionaryProspectLevel=Prospect potential level
|
DictionaryProspectLevel=Prospect potential level
|
||||||
@ -853,6 +869,7 @@ LabelUsedByDefault=Label used by default if no translation can be found for code
|
|||||||
LabelOnDocuments=Label on documents
|
LabelOnDocuments=Label on documents
|
||||||
NbOfDays=Nb of days
|
NbOfDays=Nb of days
|
||||||
AtEndOfMonth=At end of month
|
AtEndOfMonth=At end of month
|
||||||
|
CurrentNext=Current/Next
|
||||||
Offset=Offset
|
Offset=Offset
|
||||||
AlwaysActive=Always active
|
AlwaysActive=Always active
|
||||||
Upgrade=Upgrade
|
Upgrade=Upgrade
|
||||||
@ -950,7 +967,7 @@ LogEventDesc=You can enable here the logging for Dolibarr security events. Admin
|
|||||||
AreaForAdminOnly=Those features can be used by <b>administrator users</b> only.
|
AreaForAdminOnly=Those features can be used by <b>administrator users</b> only.
|
||||||
SystemInfoDesc=System information is miscellaneous technical information you get in read only mode and visible for administrators only.
|
SystemInfoDesc=System information is miscellaneous technical information you get in read only mode and visible for administrators only.
|
||||||
SystemAreaForAdminOnly=This area is available for administrator users only. None of the Dolibarr permissions can reduce this limit.
|
SystemAreaForAdminOnly=This area is available for administrator users only. None of the Dolibarr permissions can reduce this limit.
|
||||||
CompanyFundationDesc=Edit on this page all known information of the company or foundation you need to manage (For this, click on "Modify" button at bottom of page)
|
CompanyFundationDesc=Edit on this page all known information of the company or foundation you need to manage (For this, click on "Modify" or "Save" button at bottom of page)
|
||||||
DisplayDesc=You can choose each parameter related to the Dolibarr look and feel here
|
DisplayDesc=You can choose each parameter related to the Dolibarr look and feel here
|
||||||
AvailableModules=Available modules
|
AvailableModules=Available modules
|
||||||
ToActivateModule=To activate modules, go on setup Area (Home->Setup->Modules).
|
ToActivateModule=To activate modules, go on setup Area (Home->Setup->Modules).
|
||||||
@ -1029,9 +1046,17 @@ SendmailOptionNotComplete=Warning, on some Linux systems, to send email from you
|
|||||||
PathToDocuments=Path to documents
|
PathToDocuments=Path to documents
|
||||||
PathDirectory=Directory
|
PathDirectory=Directory
|
||||||
SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
|
SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
|
||||||
TranslationSetup=Configuration de la traduction
|
TranslationSetup=Setup of translation
|
||||||
TranslationDesc=How to set displayed application language<br>* Systemwide: menu <strong>Home - Setup - Display</strong><br>* Per user: <strong>User display setup</strong> tab of user card (click on username at the top of the screen).
|
TranslationKeySearch=Search a translation key or string
|
||||||
TranslationOverwriteDesc=You can also override strings filling the following table. Choose your language from "%s" dropdown, insert the key string found in the lang file (langs/xx_XX/somefile.lang) into "%s" and your new translation into "%s".
|
TranslationOverwriteKey=Overwrite a translation string
|
||||||
|
TranslationDesc=How to set displayed application language :<br>* Systemwide: menu <strong>Home - Setup - Display</strong><br>* Per user: <strong>User display setup</strong> tab of user card (click on username at the top of the screen).
|
||||||
|
TranslationOverwriteDesc=You can also override strings filling the following table. Choose your language from "%s" dropdown, insert the translation key string into "%s" and your new translation into "%s"
|
||||||
|
TranslationOverwriteDesc2=You can use the other tab to help you know translation key to use
|
||||||
|
TranslationString=Translation string
|
||||||
|
CurrentTranslationString=Current translation string
|
||||||
|
WarningAtLeastKeyOrTranslationRequired=A search criteria is required at least for key or translation string
|
||||||
|
NewTranslationStringToShow=New translation string to show
|
||||||
|
OriginalValueWas=The original translation is overwritten. Original value was:<br><br>%s
|
||||||
TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b> / <b>%s</b>
|
TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b> / <b>%s</b>
|
||||||
YouMustEnableOneModule=You must at least enable 1 module
|
YouMustEnableOneModule=You must at least enable 1 module
|
||||||
ClassNotFoundIntoPathWarning=Class %s not found into PHP path
|
ClassNotFoundIntoPathWarning=Class %s not found into PHP path
|
||||||
@ -1170,7 +1195,7 @@ LDAPServerUseTLS=Use TLS
|
|||||||
LDAPServerUseTLSExample=Your LDAP server use TLS
|
LDAPServerUseTLSExample=Your LDAP server use TLS
|
||||||
LDAPServerDn=Server DN
|
LDAPServerDn=Server DN
|
||||||
LDAPAdminDn=Administrator DN
|
LDAPAdminDn=Administrator DN
|
||||||
LDAPAdminDnExample=Complete DN (ex: cn=admin,dc=example,dc=com)
|
LDAPAdminDnExample=Complete DN (ex: cn=admin,dc=example,dc=com or cn=Administrator,cn=Users,dc=example,dc=com for active directory)
|
||||||
LDAPPassword=Administrator password
|
LDAPPassword=Administrator password
|
||||||
LDAPUserDn=Users' DN
|
LDAPUserDn=Users' DN
|
||||||
LDAPUserDnExample=Complete DN (ex: ou=users,dc=example,dc=com)
|
LDAPUserDnExample=Complete DN (ex: ou=users,dc=example,dc=com)
|
||||||
@ -1258,7 +1283,7 @@ LDAPFieldCompanyExample=Example : o
|
|||||||
LDAPFieldSid=SID
|
LDAPFieldSid=SID
|
||||||
LDAPFieldSidExample=Example : objectsid
|
LDAPFieldSidExample=Example : objectsid
|
||||||
LDAPFieldEndLastSubscription=Date of subscription end
|
LDAPFieldEndLastSubscription=Date of subscription end
|
||||||
LDAPFieldTitle=Post/Function
|
LDAPFieldTitle=Job position
|
||||||
LDAPFieldTitleExample=Example: title
|
LDAPFieldTitleExample=Example: title
|
||||||
LDAPSetupNotComplete=LDAP setup not complete (go on others tabs)
|
LDAPSetupNotComplete=LDAP setup not complete (go on others tabs)
|
||||||
LDAPNoUserOrPasswordProvidedAccessIsReadOnly=No administrator or password provided. LDAP access will be anonymous and in read only mode.
|
LDAPNoUserOrPasswordProvidedAccessIsReadOnly=No administrator or password provided. LDAP access will be anonymous and in read only mode.
|
||||||
@ -1333,7 +1358,7 @@ GenbarcodeLocation=Bar code generation command line tool (used by internal engin
|
|||||||
BarcodeInternalEngine=Internal engine
|
BarcodeInternalEngine=Internal engine
|
||||||
BarCodeNumberManager=Manager to auto define barcode numbers
|
BarCodeNumberManager=Manager to auto define barcode numbers
|
||||||
##### Prelevements #####
|
##### Prelevements #####
|
||||||
WithdrawalsSetup=Withdrawal module setup
|
WithdrawalsSetup=Setup of module Direct debit payment orders
|
||||||
##### ExternalRSS #####
|
##### ExternalRSS #####
|
||||||
ExternalRSSSetup=External RSS imports setup
|
ExternalRSSSetup=External RSS imports setup
|
||||||
NewRSS=New RSS Feed
|
NewRSS=New RSS Feed
|
||||||
@ -1506,6 +1531,7 @@ OpenFiscalYear=Open fiscal year
|
|||||||
CloseFiscalYear=Close fiscal year
|
CloseFiscalYear=Close fiscal year
|
||||||
DeleteFiscalYear=Delete fiscal year
|
DeleteFiscalYear=Delete fiscal year
|
||||||
ConfirmDeleteFiscalYear=Are you sure to delete this fiscal year ?
|
ConfirmDeleteFiscalYear=Are you sure to delete this fiscal year ?
|
||||||
|
ShowFiscalYear=Show fiscal year
|
||||||
AlwaysEditable=Can always be edited
|
AlwaysEditable=Can always be edited
|
||||||
MAIN_APPLICATION_TITLE=Force visible name of application (warning: setting your own name here may break autofill login feature when using DoliDroid mobile application)
|
MAIN_APPLICATION_TITLE=Force visible name of application (warning: setting your own name here may break autofill login feature when using DoliDroid mobile application)
|
||||||
NbMajMin=Minimum number of uppercase characters
|
NbMajMin=Minimum number of uppercase characters
|
||||||
@ -1526,7 +1552,7 @@ ListOfNotificationsPerUser=List of notifications per user*
|
|||||||
ListOfNotificationsPerUserOrContact=List of notifications per user* or per contact**
|
ListOfNotificationsPerUserOrContact=List of notifications per user* or per contact**
|
||||||
ListOfFixedNotifications=List of fixed notifications
|
ListOfFixedNotifications=List of fixed notifications
|
||||||
GoOntoUserCardToAddMore=Go on the tab "Notifications" of a user to add or remove notifications for users
|
GoOntoUserCardToAddMore=Go on the tab "Notifications" of a user to add or remove notifications for users
|
||||||
GoOntoContactCardToAddMore=Go on the tab "Notifications" of a thirdparty contact to add or remove notifications for contacts/addresses
|
GoOntoContactCardToAddMore=Go on the tab "Notifications" of a third party to add or remove notifications for contacts/addresses
|
||||||
Threshold=Threshold
|
Threshold=Threshold
|
||||||
BackupDumpWizard=Wizard to build database backup dump file
|
BackupDumpWizard=Wizard to build database backup dump file
|
||||||
SomethingMakeInstallFromWebNotPossible=Installation of external module is not possible from the web interface for the following reason:
|
SomethingMakeInstallFromWebNotPossible=Installation of external module is not possible from the web interface for the following reason:
|
||||||
@ -1538,9 +1564,10 @@ HighlightLinesColor=Highlight color of the line when the mouse passes over (keep
|
|||||||
TextTitleColor=Color of page title
|
TextTitleColor=Color of page title
|
||||||
LinkColor=Color of links
|
LinkColor=Color of links
|
||||||
PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
|
PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
|
||||||
NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
|
NotSupportedByAllThemes=Will works with core themes, may not be supported by external themes
|
||||||
BackgroundColor=Background color
|
BackgroundColor=Background color
|
||||||
TopMenuBackgroundColor=Background color for Top menu
|
TopMenuBackgroundColor=Background color for Top menu
|
||||||
|
TopMenuDisableImages=Hide images in Top menu
|
||||||
LeftMenuBackgroundColor=Background color for Left menu
|
LeftMenuBackgroundColor=Background color for Left menu
|
||||||
BackgroundTableTitleColor=Background color for Table title line
|
BackgroundTableTitleColor=Background color for Table title line
|
||||||
BackgroundTableLineOddColor=Background color for odd table lines
|
BackgroundTableLineOddColor=Background color for odd table lines
|
||||||
@ -1600,3 +1627,8 @@ UrlToGetKeyToUseAPIs=Url to get token to use API (once token has been received i
|
|||||||
ListOfAvailableAPIs=List of available APIs
|
ListOfAvailableAPIs=List of available APIs
|
||||||
activateModuleDependNotSatisfied=Module "%s" depends on module "%s" that is missing, so module "%1$s" may not work correclty. Please install module "%2$s" or disable module "%1$s" if you want to be safe from any surprise
|
activateModuleDependNotSatisfied=Module "%s" depends on module "%s" that is missing, so module "%1$s" may not work correclty. Please install module "%2$s" or disable module "%1$s" if you want to be safe from any surprise
|
||||||
CommandIsNotInsideAllowedCommands=The command you try to run is not inside list of allowed commands defined into parameter <strong>$dolibarr_main_restrict_os_commands</strong> into <strong>conf.php</strong> file.
|
CommandIsNotInsideAllowedCommands=The command you try to run is not inside list of allowed commands defined into parameter <strong>$dolibarr_main_restrict_os_commands</strong> into <strong>conf.php</strong> file.
|
||||||
|
LandingPage=Landing page
|
||||||
|
SamePriceAlsoForSharedCompanies=If you use a multicompany module, with the choice "Single price", price will be also the same for all companies if products are shared between environments
|
||||||
|
ModuleEnabledAdminMustCheckRights=Module has been activated. Permissions for activated module(s) were given to admin users only. You may need to grant permissions to other users manually if necessary.
|
||||||
|
UserHasNoPermissions=This user has no permission defined
|
||||||
|
TypeCdr=Use "None" if the date of payment term is date of invoice plus a delta in days (delta is field "Nb of days")<br>Use "At end of month", if, after delta, the date must be increased to reach the end of month (+ an optional "Offset" in days)<br>Use "Current/Next" to have payment term date being the first Nth of the month (N is stored into field "Nb of days")
|
||||||
|
|||||||
@ -27,13 +27,9 @@ AllTime=From start
|
|||||||
Reconciliation=Reconciliation
|
Reconciliation=Reconciliation
|
||||||
RIB=Bank Account Number
|
RIB=Bank Account Number
|
||||||
IBAN=IBAN number
|
IBAN=IBAN number
|
||||||
IbanValid=IBAN is Valid
|
|
||||||
IbanNotValid=IBAN is Not Valid
|
|
||||||
BIC=BIC/SWIFT number
|
BIC=BIC/SWIFT number
|
||||||
SwiftValid=BIC/SWIFT is Valid
|
StandingOrders=Direct Debit orders
|
||||||
SwiftNotValid=BIC/SWIFT is Not Valid
|
StandingOrder=Direct debit order
|
||||||
StandingOrders=Standing orders
|
|
||||||
StandingOrder=Standing order
|
|
||||||
AccountStatement=Account statement
|
AccountStatement=Account statement
|
||||||
AccountStatementShort=Statement
|
AccountStatementShort=Statement
|
||||||
AccountStatements=Account statements
|
AccountStatements=Account statements
|
||||||
@ -78,6 +74,7 @@ AccountToCredit=Account to credit
|
|||||||
AccountToDebit=Account to debit
|
AccountToDebit=Account to debit
|
||||||
DisableConciliation=Disable reconciliation feature for this account
|
DisableConciliation=Disable reconciliation feature for this account
|
||||||
ConciliationDisabled=Reconciliation feature disabled
|
ConciliationDisabled=Reconciliation feature disabled
|
||||||
|
LinkedToAConciliatedTransaction=Linked to a conciliated transaction
|
||||||
StatusAccountOpened=Open
|
StatusAccountOpened=Open
|
||||||
StatusAccountClosed=Closed
|
StatusAccountClosed=Closed
|
||||||
AccountIdShort=Number
|
AccountIdShort=Number
|
||||||
@ -87,6 +84,8 @@ AddBankRecordLong=Add transaction manually
|
|||||||
ConciliatedBy=Reconciled by
|
ConciliatedBy=Reconciled by
|
||||||
DateConciliating=Reconcile date
|
DateConciliating=Reconcile date
|
||||||
BankLineConciliated=Transaction reconciled
|
BankLineConciliated=Transaction reconciled
|
||||||
|
Reconciled=Reconciled
|
||||||
|
NotReconciled=Not reconciled
|
||||||
CustomerInvoicePayment=Customer payment
|
CustomerInvoicePayment=Customer payment
|
||||||
SupplierInvoicePayment=Supplier payment
|
SupplierInvoicePayment=Supplier payment
|
||||||
SubscriptionPayment=Subscription payment
|
SubscriptionPayment=Subscription payment
|
||||||
@ -94,7 +93,8 @@ WithdrawalPayment=Withdrawal payment
|
|||||||
SocialContributionPayment=Social/fiscal tax payment
|
SocialContributionPayment=Social/fiscal tax payment
|
||||||
BankTransfer=Bank transfer
|
BankTransfer=Bank transfer
|
||||||
BankTransfers=Bank transfers
|
BankTransfers=Bank transfers
|
||||||
TransferDesc=Transfer from one account to another one, Dolibarr will write two records (a debit in source account and a credit in target account, of the same amount. The same label and date will be used for this transaction)
|
MenuBankInternalTransfer=Internal transfer
|
||||||
|
TransferDesc=Transfer from one account to another one, Dolibarr will write two records (a debit in source account and a credit in target account. The same amount (except sign), label and date will be used for this transaction)
|
||||||
TransferFrom=From
|
TransferFrom=From
|
||||||
TransferTo=To
|
TransferTo=To
|
||||||
TransferFromToDone=A transfer from <b>%s</b> to <b>%s</b> of <b>%s</b> %s has been recorded.
|
TransferFromToDone=A transfer from <b>%s</b> to <b>%s</b> of <b>%s</b> %s has been recorded.
|
||||||
@ -129,7 +129,7 @@ FutureTransaction=Transaction in futur. No way to conciliate.
|
|||||||
SelectChequeTransactionAndGenerate=Select/filter checks to include into the check deposit receipt and click on "Create".
|
SelectChequeTransactionAndGenerate=Select/filter checks to include into the check deposit receipt and click on "Create".
|
||||||
InputReceiptNumber=Choose the bank statement related with the conciliation. Use a sortable numeric value: YYYYMM or YYYYMMDD
|
InputReceiptNumber=Choose the bank statement related with the conciliation. Use a sortable numeric value: YYYYMM or YYYYMMDD
|
||||||
EventualyAddCategory=Eventually, specify a category in which to classify the records
|
EventualyAddCategory=Eventually, specify a category in which to classify the records
|
||||||
ToConciliate=To conciliate?
|
ToConciliate=To reconcile ?
|
||||||
ThenCheckLinesAndConciliate=Then, check the lines present in the bank statement and click
|
ThenCheckLinesAndConciliate=Then, check the lines present in the bank statement and click
|
||||||
DefaultRIB=Default BAN
|
DefaultRIB=Default BAN
|
||||||
AllRIB=All BAN
|
AllRIB=All BAN
|
||||||
@ -142,3 +142,6 @@ ConfirmRejectCheck=Are you sure you want to mark this check as rejected ?
|
|||||||
RejectCheckDate=Date the check was returned
|
RejectCheckDate=Date the check was returned
|
||||||
CheckRejected=Check returned
|
CheckRejected=Check returned
|
||||||
CheckRejectedAndInvoicesReopened=Check returned and invoices reopened
|
CheckRejectedAndInvoicesReopened=Check returned and invoices reopened
|
||||||
|
BankAccountModelModule=Document templates for bank accounts
|
||||||
|
DocumentModelSepaMandate=Template of SEPA mandate. Usefull for european countries in EEC only.
|
||||||
|
DocumentModelBan=Template to print a page with BAN information.
|
||||||
|
|||||||
@ -142,7 +142,7 @@ ErrorCantCancelIfReplacementInvoiceNotValidated=Error, can't cancel an invoice t
|
|||||||
BillFrom=From
|
BillFrom=From
|
||||||
BillTo=To
|
BillTo=To
|
||||||
ActionsOnBill=Actions on invoice
|
ActionsOnBill=Actions on invoice
|
||||||
RecurringInvoiceTemplate=Recurring invoice
|
RecurringInvoiceTemplate=Template/Recurring invoice
|
||||||
NoQualifiedRecurringInvoiceTemplateFound=No recurring template invoice qualified for generation.
|
NoQualifiedRecurringInvoiceTemplateFound=No recurring template invoice qualified for generation.
|
||||||
FoundXQualifiedRecurringInvoiceTemplate=Found %s recurring template invoice(s) qualified for generation.
|
FoundXQualifiedRecurringInvoiceTemplate=Found %s recurring template invoice(s) qualified for generation.
|
||||||
NotARecurringInvoiceTemplate=Not a recurring template invoice
|
NotARecurringInvoiceTemplate=Not a recurring template invoice
|
||||||
@ -209,8 +209,8 @@ EscompteOffered=Discount offered (payment before term)
|
|||||||
EscompteOfferedShort=Discount
|
EscompteOfferedShort=Discount
|
||||||
SendBillRef=Submission of invoice %s
|
SendBillRef=Submission of invoice %s
|
||||||
SendReminderBillRef=Submission of invoice %s (reminder)
|
SendReminderBillRef=Submission of invoice %s (reminder)
|
||||||
StandingOrders=Standing orders
|
StandingOrders=Direct debit orders
|
||||||
StandingOrder=Standing order
|
StandingOrder=Direct debit order
|
||||||
NoDraftBills=No draft invoices
|
NoDraftBills=No draft invoices
|
||||||
NoOtherDraftBills=No other draft invoices
|
NoOtherDraftBills=No other draft invoices
|
||||||
NoDraftInvoices=No draft invoices
|
NoDraftInvoices=No draft invoices
|
||||||
@ -351,8 +351,8 @@ VarAmount=Variable amount (%% tot.)
|
|||||||
# PaymentType
|
# PaymentType
|
||||||
PaymentTypeVIR=Bank transfer
|
PaymentTypeVIR=Bank transfer
|
||||||
PaymentTypeShortVIR=Bank transfer
|
PaymentTypeShortVIR=Bank transfer
|
||||||
PaymentTypePRE=Bank's order
|
PaymentTypePRE=Direct debit payment order
|
||||||
PaymentTypeShortPRE=Bank's order
|
PaymentTypeShortPRE=Debit payment order
|
||||||
PaymentTypeLIQ=Cash
|
PaymentTypeLIQ=Cash
|
||||||
PaymentTypeShortLIQ=Cash
|
PaymentTypeShortLIQ=Cash
|
||||||
PaymentTypeCB=Credit card
|
PaymentTypeCB=Credit card
|
||||||
@ -381,6 +381,7 @@ ExtraInfos=Extra infos
|
|||||||
RegulatedOn=Regulated on
|
RegulatedOn=Regulated on
|
||||||
ChequeNumber=Check N°
|
ChequeNumber=Check N°
|
||||||
ChequeOrTransferNumber=Check/Transfer N°
|
ChequeOrTransferNumber=Check/Transfer N°
|
||||||
|
ChequeBordereau=Check schedule
|
||||||
ChequeMaker=Check/Transfer transmitter
|
ChequeMaker=Check/Transfer transmitter
|
||||||
ChequeBank=Bank of Check
|
ChequeBank=Bank of Check
|
||||||
CheckBank=Check
|
CheckBank=Check
|
||||||
@ -429,6 +430,7 @@ CantRemoveConciliatedPayment=Can't remove conciliated payment
|
|||||||
PayedByThisPayment=Paid by this payment
|
PayedByThisPayment=Paid by this payment
|
||||||
ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
|
ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
|
||||||
ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
|
ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
|
||||||
|
ClosePaidContributionsAutomatically=Classify "Paid" all social or fiscal contributions entirely paid.
|
||||||
AllCompletelyPayedInvoiceWillBeClosed=All invoice with no remain to pay will be automatically closed to status "Paid".
|
AllCompletelyPayedInvoiceWillBeClosed=All invoice with no remain to pay will be automatically closed to status "Paid".
|
||||||
ToMakePayment=Pay
|
ToMakePayment=Pay
|
||||||
ToMakePaymentBack=Pay back
|
ToMakePaymentBack=Pay back
|
||||||
@ -436,6 +438,7 @@ ListOfYourUnpaidInvoices=List of unpaid invoices
|
|||||||
NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third parties you are linked to as a sale representative.
|
NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third parties you are linked to as a sale representative.
|
||||||
RevenueStamp=Revenue stamp
|
RevenueStamp=Revenue stamp
|
||||||
YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of third party
|
YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of third party
|
||||||
|
YouMustCreateInvoiceFromSupplierThird=This option is only available when creating invoice from tab "supplier" of third party
|
||||||
YouMustCreateStandardInvoiceFirstDesc=You have to create a standard invoice first and convert it to "template" to create a new template invoice
|
YouMustCreateStandardInvoiceFirstDesc=You have to create a standard invoice first and convert it to "template" to create a new template invoice
|
||||||
PDFCrabeDescription=Invoice PDF template Crabe. A complete invoice template (recommended Template)
|
PDFCrabeDescription=Invoice PDF template Crabe. A complete invoice template (recommended Template)
|
||||||
PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for situation invoices
|
PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for situation invoices
|
||||||
@ -477,4 +480,6 @@ updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
|
|||||||
ToCreateARecurringInvoice=To create a recurring invoice for this contract, first create this draft invoice, then convert it into an invoice template and define the frequency for generation of future invoices.
|
ToCreateARecurringInvoice=To create a recurring invoice for this contract, first create this draft invoice, then convert it into an invoice template and define the frequency for generation of future invoices.
|
||||||
ToCreateARecurringInvoiceGene=To generate future invoices regularly and manually, just go on menu <strong>%s - %s - %s</strong>.
|
ToCreateARecurringInvoiceGene=To generate future invoices regularly and manually, just go on menu <strong>%s - %s - %s</strong>.
|
||||||
ToCreateARecurringInvoiceGeneAuto=If you need to have such invoices generated automatically, ask you administrator to enable and setup module <strong>%s</strong>. Note that both method (manual and automatic) can be used together with no risk of duplication.
|
ToCreateARecurringInvoiceGeneAuto=If you need to have such invoices generated automatically, ask you administrator to enable and setup module <strong>%s</strong>. Note that both method (manual and automatic) can be used together with no risk of duplication.
|
||||||
|
DeleteRepeatableInvoice=Delete template invoice
|
||||||
|
ConfirmDeleteRepeatableInvoice=Are your sure you want to delete the template invoice ?
|
||||||
|
|
||||||
|
|||||||
@ -38,7 +38,7 @@ BoxMyLastBookmarks=My latest %s bookmarks
|
|||||||
BoxOldestExpiredServices=Oldest active expired services
|
BoxOldestExpiredServices=Oldest active expired services
|
||||||
BoxLastExpiredServices=Latest %s oldest contacts with active expired services
|
BoxLastExpiredServices=Latest %s oldest contacts with active expired services
|
||||||
BoxTitleLastActionsToDo=Latest %s actions to do
|
BoxTitleLastActionsToDo=Latest %s actions to do
|
||||||
BoxTitleLastContracts=Latest %s contracts
|
BoxTitleLastContracts=Latest %s modified contracts
|
||||||
BoxTitleLastModifiedDonations=Latest %s modified donations
|
BoxTitleLastModifiedDonations=Latest %s modified donations
|
||||||
BoxTitleLastModifiedExpenses=Latest %s modified expense reports
|
BoxTitleLastModifiedExpenses=Latest %s modified expense reports
|
||||||
BoxGlobalActivity=Global activity (invoices, proposals, orders)
|
BoxGlobalActivity=Global activity (invoices, proposals, orders)
|
||||||
@ -72,8 +72,13 @@ BoxProposalsPerMonth=Proposals per month
|
|||||||
NoTooLowStockProducts=No product under the low stock limit
|
NoTooLowStockProducts=No product under the low stock limit
|
||||||
BoxProductDistribution=Products/Services distribution
|
BoxProductDistribution=Products/Services distribution
|
||||||
BoxProductDistributionFor=Distribution of %s for %s
|
BoxProductDistributionFor=Distribution of %s for %s
|
||||||
|
BoxTitleLastModifiedSupplierBills=Latest %s modified supplier bills
|
||||||
|
BoxTitleLatestModifiedSupplierOrders=Latest %s modified supplier orders
|
||||||
|
BoxTitleLastModifiedCustomerBills=Latest %s modified customer bills
|
||||||
|
BoxTitleLastModifiedCustomerOrders=Latest %s modified customer orders
|
||||||
|
BoxTitleLastModifiedPropals=Latest %s modified propals
|
||||||
ForCustomersInvoices=Customers invoices
|
ForCustomersInvoices=Customers invoices
|
||||||
ForCustomersOrders=Customers orders
|
ForCustomersOrders=Customers orders
|
||||||
ForProposals=Proposals
|
ForProposals=Proposals
|
||||||
LastXMonthRolling=The latest %s month rolling
|
LastXMonthRolling=The latest %s month rolling
|
||||||
ChooseBoxToAdd=Add widget to your dashboard...
|
ChooseBoxToAdd=Add widget to your dashboard
|
||||||
|
|||||||
@ -12,10 +12,9 @@ CashDeskOn=on
|
|||||||
CashDeskThirdParty=Third party
|
CashDeskThirdParty=Third party
|
||||||
ShoppingCart=Shopping cart
|
ShoppingCart=Shopping cart
|
||||||
NewSell=New sell
|
NewSell=New sell
|
||||||
BackOffice=Back office
|
|
||||||
AddThisArticle=Add this article
|
AddThisArticle=Add this article
|
||||||
RestartSelling=Go back on sell
|
RestartSelling=Go back on sell
|
||||||
SellFinished=Sell finished
|
SellFinished=Sale complete
|
||||||
PrintTicket=Print ticket
|
PrintTicket=Print ticket
|
||||||
NoProductFound=No article found
|
NoProductFound=No article found
|
||||||
ProductFound=product found
|
ProductFound=product found
|
||||||
|
|||||||
@ -14,6 +14,7 @@ CustomersCategoriesArea=Customers tags/categories area
|
|||||||
MembersCategoriesArea=Members tags/categories area
|
MembersCategoriesArea=Members tags/categories area
|
||||||
ContactsCategoriesArea=Contacts tags/categories area
|
ContactsCategoriesArea=Contacts tags/categories area
|
||||||
AccountsCategoriesArea=Accounts tags/categories area
|
AccountsCategoriesArea=Accounts tags/categories area
|
||||||
|
ProjectsCategoriesArea=Projects tags/categories area
|
||||||
SubCats=Subcategories
|
SubCats=Subcategories
|
||||||
CatList=List of tags/categories
|
CatList=List of tags/categories
|
||||||
NewCategory=New tag/category
|
NewCategory=New tag/category
|
||||||
@ -36,6 +37,7 @@ ProductHasNoCategory=This product/service is not in any tags/categories
|
|||||||
CompanyHasNoCategory=This third party is not in any tags/categories
|
CompanyHasNoCategory=This third party is not in any tags/categories
|
||||||
MemberHasNoCategory=This member is not in any tags/categories
|
MemberHasNoCategory=This member is not in any tags/categories
|
||||||
ContactHasNoCategory=This contact is not in any tags/categories
|
ContactHasNoCategory=This contact is not in any tags/categories
|
||||||
|
ProjectHasNoCategory=This project is not in any tags/categories
|
||||||
ClassifyInCategory=Add to tag/category
|
ClassifyInCategory=Add to tag/category
|
||||||
NotCategorized=Without tag/category
|
NotCategorized=Without tag/category
|
||||||
CategoryExistsAtSameLevel=This category already exists with this ref
|
CategoryExistsAtSameLevel=This category already exists with this ref
|
||||||
@ -56,12 +58,14 @@ ProductsCategoriesShort=Products tags/categories
|
|||||||
MembersCategoriesShort=Members tags/categories
|
MembersCategoriesShort=Members tags/categories
|
||||||
ContactCategoriesShort=Contacts tags/categories
|
ContactCategoriesShort=Contacts tags/categories
|
||||||
AccountsCategoriesShort=Accounts tags/categories
|
AccountsCategoriesShort=Accounts tags/categories
|
||||||
|
ProjectsCategoriesShort=Projects tags/categories
|
||||||
ThisCategoryHasNoProduct=This category does not contain any product.
|
ThisCategoryHasNoProduct=This category does not contain any product.
|
||||||
ThisCategoryHasNoSupplier=This category does not contain any supplier.
|
ThisCategoryHasNoSupplier=This category does not contain any supplier.
|
||||||
ThisCategoryHasNoCustomer=This category does not contain any customer.
|
ThisCategoryHasNoCustomer=This category does not contain any customer.
|
||||||
ThisCategoryHasNoMember=This category does not contain any member.
|
ThisCategoryHasNoMember=This category does not contain any member.
|
||||||
ThisCategoryHasNoContact=This category does not contain any contact.
|
ThisCategoryHasNoContact=This category does not contain any contact.
|
||||||
ThisCategoryHasNoAccount=This category does not contain any account.
|
ThisCategoryHasNoAccount=This category does not contain any account.
|
||||||
|
ThisCategoryHasNoProject=This category does not contain any project.
|
||||||
CategId=Tag/category id
|
CategId=Tag/category id
|
||||||
CatSupList=List of supplier tags/categories
|
CatSupList=List of supplier tags/categories
|
||||||
CatCusList=List of customer/prospect tags/categories
|
CatCusList=List of customer/prospect tags/categories
|
||||||
@ -71,6 +75,7 @@ CatContactList=List of contact tags/categories
|
|||||||
CatSupLinks=Links between suppliers and tags/categories
|
CatSupLinks=Links between suppliers and tags/categories
|
||||||
CatCusLinks=Links between customers/prospects and tags/categories
|
CatCusLinks=Links between customers/prospects and tags/categories
|
||||||
CatProdLinks=Links between products/services and tags/categories
|
CatProdLinks=Links between products/services and tags/categories
|
||||||
|
CatProJectLinks=Links between projects and tags/categories
|
||||||
DeleteFromCat=Remove from tags/category
|
DeleteFromCat=Remove from tags/category
|
||||||
ExtraFieldsCategories=Complementary attributes
|
ExtraFieldsCategories=Complementary attributes
|
||||||
CategoriesSetup=Tags/categories setup
|
CategoriesSetup=Tags/categories setup
|
||||||
|
|||||||
@ -13,6 +13,8 @@ MenuNewPrivateIndividual=New private individual
|
|||||||
NewCompany=New company (prospect, customer, supplier)
|
NewCompany=New company (prospect, customer, supplier)
|
||||||
NewThirdParty=New third party (prospect, customer, supplier)
|
NewThirdParty=New third party (prospect, customer, supplier)
|
||||||
CreateDolibarrThirdPartySupplier=Create a third party (supplier)
|
CreateDolibarrThirdPartySupplier=Create a third party (supplier)
|
||||||
|
CreateThirdPartyOnly=Create thirdpary
|
||||||
|
CreateThirdPartyAndContact=Create a third party + a child contact
|
||||||
ProspectionArea=Prospection area
|
ProspectionArea=Prospection area
|
||||||
IdThirdParty=Id third party
|
IdThirdParty=Id third party
|
||||||
IdCompany=Company Id
|
IdCompany=Company Id
|
||||||
@ -38,7 +40,7 @@ ThirdPartySuppliers=Suppliers
|
|||||||
ThirdPartyType=Third party type
|
ThirdPartyType=Third party type
|
||||||
Company/Fundation=Company/Foundation
|
Company/Fundation=Company/Foundation
|
||||||
Individual=Private individual
|
Individual=Private individual
|
||||||
ToCreateContactWithSameName=Will create automatically a physical contact with same informations
|
ToCreateContactWithSameName=Will create automatically a contact/address with same information than third party under the third party. In most cases, even if your third party is a physical people, creating a third party alone is enough.
|
||||||
ParentCompany=Parent company
|
ParentCompany=Parent company
|
||||||
Subsidiaries=Subsidiaries
|
Subsidiaries=Subsidiaries
|
||||||
ReportByCustomers=Report by customers
|
ReportByCustomers=Report by customers
|
||||||
@ -47,7 +49,7 @@ CivilityCode=Civility code
|
|||||||
RegisteredOffice=Registered office
|
RegisteredOffice=Registered office
|
||||||
Lastname=Last name
|
Lastname=Last name
|
||||||
Firstname=First name
|
Firstname=First name
|
||||||
PostOrFunction=Post/Function
|
PostOrFunction=Job position
|
||||||
UserTitle=Title
|
UserTitle=Title
|
||||||
Address=Address
|
Address=Address
|
||||||
State=State/Province
|
State=State/Province
|
||||||
@ -64,7 +66,7 @@ Chat=Chat
|
|||||||
PhonePro=Prof. phone
|
PhonePro=Prof. phone
|
||||||
PhonePerso=Pers. phone
|
PhonePerso=Pers. phone
|
||||||
PhoneMobile=Mobile
|
PhoneMobile=Mobile
|
||||||
No_Email=Don't send mass e-mailings
|
No_Email=Refuse mass e-mailings
|
||||||
Fax=Fax
|
Fax=Fax
|
||||||
Zip=Zip Code
|
Zip=Zip Code
|
||||||
Town=City
|
Town=City
|
||||||
@ -239,7 +241,6 @@ ProfId6RU=-
|
|||||||
VATIntra=VAT number
|
VATIntra=VAT number
|
||||||
VATIntraShort=VAT number
|
VATIntraShort=VAT number
|
||||||
VATIntraSyntaxIsValid=Syntax is valid
|
VATIntraSyntaxIsValid=Syntax is valid
|
||||||
VATIntraValueIsValid=Value is valid
|
|
||||||
ProspectCustomer=Prospect / Customer
|
ProspectCustomer=Prospect / Customer
|
||||||
Prospect=Prospect
|
Prospect=Prospect
|
||||||
CustomerCard=Customer Card
|
CustomerCard=Customer Card
|
||||||
@ -261,7 +262,9 @@ AddContactAddress=Create contact/address
|
|||||||
EditContact=Edit contact
|
EditContact=Edit contact
|
||||||
EditContactAddress=Edit contact/address
|
EditContactAddress=Edit contact/address
|
||||||
Contact=Contact
|
Contact=Contact
|
||||||
|
ContactId=Contact id
|
||||||
ContactsAddresses=Contacts/Addresses
|
ContactsAddresses=Contacts/Addresses
|
||||||
|
FromContactName=Name:
|
||||||
NoContactDefinedForThirdParty=No contact defined for this third party
|
NoContactDefinedForThirdParty=No contact defined for this third party
|
||||||
NoContactDefined=No contact defined
|
NoContactDefined=No contact defined
|
||||||
DefaultContact=Default contact/address
|
DefaultContact=Default contact/address
|
||||||
@ -294,6 +297,7 @@ ContactForProposals=Proposal's contact
|
|||||||
ContactForContracts=Contract's contact
|
ContactForContracts=Contract's contact
|
||||||
ContactForInvoices=Invoice's contact
|
ContactForInvoices=Invoice's contact
|
||||||
NoContactForAnyOrder=This contact is not a contact for any order
|
NoContactForAnyOrder=This contact is not a contact for any order
|
||||||
|
NoContactForAnyOrderOrShipments=This contact is not a contact for any order or shipment
|
||||||
NoContactForAnyProposal=This contact is not a contact for any commercial proposal
|
NoContactForAnyProposal=This contact is not a contact for any commercial proposal
|
||||||
NoContactForAnyContract=This contact is not a contact for any contract
|
NoContactForAnyContract=This contact is not a contact for any contract
|
||||||
NoContactForAnyInvoice=This contact is not a contact for any invoice
|
NoContactForAnyInvoice=This contact is not a contact for any invoice
|
||||||
@ -393,3 +397,5 @@ ThirdpartiesMergeSuccess=Thirdparties have been merged
|
|||||||
SaleRepresentativeLogin=Login of sales representative
|
SaleRepresentativeLogin=Login of sales representative
|
||||||
SaleRepresentativeFirstname=Firstname of sales representative
|
SaleRepresentativeFirstname=Firstname of sales representative
|
||||||
SaleRepresentativeLastname=Lastname of sales representative
|
SaleRepresentativeLastname=Lastname of sales representative
|
||||||
|
ErrorThirdpartiesMerge=There was an error when deleting the thirdparties. Please check the log. Changes have been reverted.
|
||||||
|
NewCustomerSupplierCodeProposed=New customer or supplier code suggested on duplicate code
|
||||||
|
|||||||
@ -49,6 +49,8 @@ SocialContribution=Social or fiscal tax
|
|||||||
SocialContributions=Social or fiscal taxes
|
SocialContributions=Social or fiscal taxes
|
||||||
SocialContributionsDeductibles=Deductible social or fiscal taxes
|
SocialContributionsDeductibles=Deductible social or fiscal taxes
|
||||||
SocialContributionsNondeductibles=Nondeductible social or fiscal taxes
|
SocialContributionsNondeductibles=Nondeductible social or fiscal taxes
|
||||||
|
LabelContrib=Label contribution
|
||||||
|
TypeContrib=Type contribution
|
||||||
MenuSpecialExpenses=Special expenses
|
MenuSpecialExpenses=Special expenses
|
||||||
MenuTaxAndDividends=Taxes and dividends
|
MenuTaxAndDividends=Taxes and dividends
|
||||||
MenuSocialContributions=Social/fiscal taxes
|
MenuSocialContributions=Social/fiscal taxes
|
||||||
|
|||||||
@ -7,7 +7,7 @@ Permission23103 = Delete Scheduled job
|
|||||||
Permission23104 = Execute Scheduled job
|
Permission23104 = Execute Scheduled job
|
||||||
# Admin
|
# Admin
|
||||||
CronSetup= Scheduled job management setup
|
CronSetup= Scheduled job management setup
|
||||||
URLToLaunchCronJobs=URL to check and launch cron jobs if required
|
URLToLaunchCronJobs=URL to check and launch qualified cron jobs
|
||||||
OrToLaunchASpecificJob=Or to check and launch a specific job
|
OrToLaunchASpecificJob=Or to check and launch a specific job
|
||||||
KeyForCronAccess=Security key for URL to launch cron jobs
|
KeyForCronAccess=Security key for URL to launch cron jobs
|
||||||
FileToLaunchCronJobs=Command line to launch cron jobs
|
FileToLaunchCronJobs=Command line to launch cron jobs
|
||||||
@ -23,7 +23,7 @@ CronCommand=Command
|
|||||||
CronList=Scheduled jobs
|
CronList=Scheduled jobs
|
||||||
CronDelete=Delete scheduled jobs
|
CronDelete=Delete scheduled jobs
|
||||||
CronConfirmDelete=Are you sure you want to delete these scheduled jobs ?
|
CronConfirmDelete=Are you sure you want to delete these scheduled jobs ?
|
||||||
CronExecute=Launch scheduled jobs
|
CronExecute=Launch scheduled job
|
||||||
CronConfirmExecute=Are you sure you want to execute these scheduled jobs now ?
|
CronConfirmExecute=Are you sure you want to execute these scheduled jobs now ?
|
||||||
CronInfo=Scheduled job module allow to execute job that have been planned
|
CronInfo=Scheduled job module allow to execute job that have been planned
|
||||||
CronTask=Job
|
CronTask=Job
|
||||||
@ -39,7 +39,7 @@ CronMethod=Method
|
|||||||
CronModule=Module
|
CronModule=Module
|
||||||
CronNoJobs=No jobs registered
|
CronNoJobs=No jobs registered
|
||||||
CronPriority=Priority
|
CronPriority=Priority
|
||||||
CronLabel=Description
|
CronLabel=Label
|
||||||
CronNbRun=Nb. launch
|
CronNbRun=Nb. launch
|
||||||
CronMaxRun=Max nb. launch
|
CronMaxRun=Max nb. launch
|
||||||
CronEach=Every
|
CronEach=Every
|
||||||
@ -76,3 +76,4 @@ UseMenuModuleToolsToAddCronJobs=Go into menu "Home - Admin tools - Scheduled job
|
|||||||
JobDisabled=Job disabled
|
JobDisabled=Job disabled
|
||||||
MakeLocalDatabaseDumpShort=Local database backup
|
MakeLocalDatabaseDumpShort=Local database backup
|
||||||
MakeLocalDatabaseDump=Create a local database dump
|
MakeLocalDatabaseDump=Create a local database dump
|
||||||
|
WarningCronDelayed=Attention, for performance purpose, whatever is next date of execution of active jobs, your jobs may be delayed to a maximum of %s hours before being run.
|
||||||
|
|||||||
@ -174,6 +174,8 @@ ErrorStockIsNotEnoughToAddProductOnOrder=Stock is not enougth for product %s to
|
|||||||
ErrorStockIsNotEnoughToAddProductOnInvoice=Stock is not enougth for product %s to add it into a new invoice.
|
ErrorStockIsNotEnoughToAddProductOnInvoice=Stock is not enougth for product %s to add it into a new invoice.
|
||||||
ErrorStockIsNotEnoughToAddProductOnShipment=Stock is not enougth for product %s to add it into a new shipment.
|
ErrorStockIsNotEnoughToAddProductOnShipment=Stock is not enougth for product %s to add it into a new shipment.
|
||||||
ErrorStockIsNotEnoughToAddProductOnProposal=Stock is not enougth for product %s to add it into a new proposal.
|
ErrorStockIsNotEnoughToAddProductOnProposal=Stock is not enougth for product %s to add it into a new proposal.
|
||||||
|
ErrorFailedToLoadLoginFileForMode=Failed to get the login file for mode '%s'.
|
||||||
|
ErrorModuleNotFound=File of module was not found.
|
||||||
|
|
||||||
# Warnings
|
# Warnings
|
||||||
WarningPasswordSetWithNoAccount=A password was set for this member. However, no user account was created. So this password is stored but can't be used to login to Dolibarr. It may be used by an external module/interface but if you don't need to define any login nor password for a member, you can disable option "Manage a login for each member" from Member module setup. If you need to manage a login but don't need any password, you can keep this field empty to avoid this warning. Note: Email can also be used as a login if the member is linked to a user.
|
WarningPasswordSetWithNoAccount=A password was set for this member. However, no user account was created. So this password is stored but can't be used to login to Dolibarr. It may be used by an external module/interface but if you don't need to define any login nor password for a member, you can disable option "Manage a login for each member" from Member module setup. If you need to manage a login but don't need any password, you can keep this field empty to avoid this warning. Note: Email can also be used as a login if the member is linked to a user.
|
||||||
|
|||||||
@ -11,12 +11,14 @@ PHPSupportSessions=This PHP supports sessions.
|
|||||||
PHPSupportPOSTGETOk=This PHP supports variables POST and GET.
|
PHPSupportPOSTGETOk=This PHP supports variables POST and GET.
|
||||||
PHPSupportPOSTGETKo=It's possible your PHP setup does not support variables POST and/or GET. Check your parameter <b>variables_order</b> in php.ini.
|
PHPSupportPOSTGETKo=It's possible your PHP setup does not support variables POST and/or GET. Check your parameter <b>variables_order</b> in php.ini.
|
||||||
PHPSupportGD=This PHP support GD graphical functions.
|
PHPSupportGD=This PHP support GD graphical functions.
|
||||||
|
PHPSupportCurl=This PHP support Curl.
|
||||||
PHPSupportUTF8=This PHP support UTF8 functions.
|
PHPSupportUTF8=This PHP support UTF8 functions.
|
||||||
PHPMemoryOK=Your PHP max session memory is set to <b>%s</b>. This should be enough.
|
PHPMemoryOK=Your PHP max session memory is set to <b>%s</b>. This should be enough.
|
||||||
PHPMemoryTooLow=Your PHP max session memory is set to <b>%s</b> bytes. This should be too low. Change your <b>php.ini</b> to set <b>memory_limit</b> parameter to at least <b>%s</b> bytes.
|
PHPMemoryTooLow=Your PHP max session memory is set to <b>%s</b> bytes. This should be too low. Change your <b>php.ini</b> to set <b>memory_limit</b> parameter to at least <b>%s</b> bytes.
|
||||||
Recheck=Click here for a more significative test
|
Recheck=Click here for a more significative test
|
||||||
ErrorPHPDoesNotSupportSessions=Your PHP installation does not support sessions. This feature is required to make Dolibarr working. Check your PHP setup.
|
ErrorPHPDoesNotSupportSessions=Your PHP installation does not support sessions. This feature is required to make Dolibarr working. Check your PHP setup.
|
||||||
ErrorPHPDoesNotSupportGD=Your PHP installation does not support graphical function GD. No graph will be available.
|
ErrorPHPDoesNotSupportGD=Your PHP installation does not support graphical function GD. No graph will be available.
|
||||||
|
ErrorPHPDoesNotSupportCurl=Your PHP installation does not support Curl.
|
||||||
ErrorPHPDoesNotSupportUTF8=Your PHP installation does not support UTF8 functions. Dolibarr can't work correctly. Solve this before installing Dolibarr.
|
ErrorPHPDoesNotSupportUTF8=Your PHP installation does not support UTF8 functions. Dolibarr can't work correctly. Solve this before installing Dolibarr.
|
||||||
ErrorDirDoesNotExists=Directory %s does not exist.
|
ErrorDirDoesNotExists=Directory %s does not exist.
|
||||||
ErrorGoBackAndCorrectParameters=Go backward and correct wrong parameters.
|
ErrorGoBackAndCorrectParameters=Go backward and correct wrong parameters.
|
||||||
@ -133,6 +135,10 @@ ActivateModule=Activate module %s
|
|||||||
ShowEditTechnicalParameters=Click here to show/edit advanced parameters (expert mode)
|
ShowEditTechnicalParameters=Click here to show/edit advanced parameters (expert mode)
|
||||||
WarningUpgrade=Warning:\nDid your run a database backup first ?\nThis is highly recommanded: for example, due to some bugs into databases systems (for example mysql version 5.5.40/41/42/43), some data or tables may be lost during this process, so it is highly recommanded to have a complete dump of your database before starting migration.\n\nClick OK to start migration process...
|
WarningUpgrade=Warning:\nDid your run a database backup first ?\nThis is highly recommanded: for example, due to some bugs into databases systems (for example mysql version 5.5.40/41/42/43), some data or tables may be lost during this process, so it is highly recommanded to have a complete dump of your database before starting migration.\n\nClick OK to start migration process...
|
||||||
ErrorDatabaseVersionForbiddenForMigration=Your database version is %s. It has a critical bug making data loss if you make structure change on your database, like it is required by the migration process. For his reason, migration will not be allowed until you upgrade your database to a higher fixed version (list of known bugged version: %s)
|
ErrorDatabaseVersionForbiddenForMigration=Your database version is %s. It has a critical bug making data loss if you make structure change on your database, like it is required by the migration process. For his reason, migration will not be allowed until you upgrade your database to a higher fixed version (list of known bugged version: %s)
|
||||||
|
KeepDefaultValuesWamp=You use the Dolibarr setup wizard from DoliWamp, so values proposed here are already optimized. Change them only if you know what you do.
|
||||||
|
KeepDefaultValuesDeb=You use the Dolibarr setup wizard from a Linux package (Ubuntu, Debian, Fedora...), so values proposed here are already optimized. Only the password of the database owner to create must be completed. Change other parameters only if you know what you do.
|
||||||
|
KeepDefaultValuesMamp=You use the Dolibarr setup wizard from DoliMamp, so values proposed here are already optimized. Change them only if you know what you do.
|
||||||
|
KeepDefaultValuesProxmox=You use the Dolibarr setup wizard from a Proxmox virtual appliance, so values proposed here are already optimized. Change them only if you know what you do.
|
||||||
|
|
||||||
#########
|
#########
|
||||||
# upgrade
|
# upgrade
|
||||||
@ -185,6 +191,8 @@ MigrationActioncommElement=Update data on actions
|
|||||||
MigrationPaymentMode=Data migration for payment mode
|
MigrationPaymentMode=Data migration for payment mode
|
||||||
MigrationCategorieAssociation=Migration of categories
|
MigrationCategorieAssociation=Migration of categories
|
||||||
MigrationEvents=Migration of events to add event owner into assignement table
|
MigrationEvents=Migration of events to add event owner into assignement table
|
||||||
|
MigrationRemiseEntity=Update entity field value of llx_societe_remise
|
||||||
|
MigrationRemiseExceptEntity=Update entity field value of llx_societe_remise_except
|
||||||
MigrationReloadModule=Reload module %s
|
MigrationReloadModule=Reload module %s
|
||||||
ShowNotAvailableOptions=Show not available options
|
ShowNotAvailableOptions=Show not available options
|
||||||
HideNotAvailableOptions=Hide not available options
|
HideNotAvailableOptions=Hide not available options
|
||||||
|
|||||||
@ -45,6 +45,7 @@ TypeContact_fichinter_external_CUSTOMER=Following-up customer contact
|
|||||||
# Modele numérotation
|
# Modele numérotation
|
||||||
PrintProductsOnFichinter=Print also lines of type "product" (not only services) on intervention card
|
PrintProductsOnFichinter=Print also lines of type "product" (not only services) on intervention card
|
||||||
PrintProductsOnFichinterDetails=interventions generated from orders
|
PrintProductsOnFichinterDetails=interventions generated from orders
|
||||||
|
UseServicesDurationOnFichinter=Use services duration for interventions generated from orders
|
||||||
InterventionStatistics=Statistics of interventions
|
InterventionStatistics=Statistics of interventions
|
||||||
NbOfinterventions=Nb of intervention cards
|
NbOfinterventions=Nb of intervention cards
|
||||||
NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
|
NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
|
||||||
|
|||||||
@ -15,6 +15,8 @@ LDAPFieldFirstSubscriptionDate=First subscription date
|
|||||||
LDAPFieldFirstSubscriptionAmount=First subscription amount
|
LDAPFieldFirstSubscriptionAmount=First subscription amount
|
||||||
LDAPFieldLastSubscriptionDate=Last subscription date
|
LDAPFieldLastSubscriptionDate=Last subscription date
|
||||||
LDAPFieldLastSubscriptionAmount=Last subscription amount
|
LDAPFieldLastSubscriptionAmount=Last subscription amount
|
||||||
|
LDAPFieldSkype=Skype id
|
||||||
|
LDAPFieldSkypeExample=Example : skypeName
|
||||||
UserSynchronized=User synchronized
|
UserSynchronized=User synchronized
|
||||||
GroupSynchronized=Group synchronized
|
GroupSynchronized=Group synchronized
|
||||||
MemberSynchronized=Member synchronized
|
MemberSynchronized=Member synchronized
|
||||||
|
|||||||
@ -67,8 +67,9 @@ MailingStatusRead=Read
|
|||||||
YourMailUnsubcribeOK=The email <b>%s</b> is correctly unsubcribe from mailing list
|
YourMailUnsubcribeOK=The email <b>%s</b> is correctly unsubcribe from mailing list
|
||||||
ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubcribe" feature
|
ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubcribe" feature
|
||||||
EMailSentToNRecipients=EMail sent to %s recipients.
|
EMailSentToNRecipients=EMail sent to %s recipients.
|
||||||
|
EMailSentForNElements=EMail sent for %s elements.
|
||||||
XTargetsAdded=<b>%s</b> recipients added into target list
|
XTargetsAdded=<b>%s</b> recipients added into target list
|
||||||
OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
|
OnlyPDFattachmentSupported=If the PDF document was already generated for the object to send, it will be attached to email. If not, no email will be sent (also, note that only pdf documents are supported as attachment in mass sending in this version).
|
||||||
AllRecipientSelected=All thirdparties selected and if an email is set.
|
AllRecipientSelected=All thirdparties selected and if an email is set.
|
||||||
ResultOfMailSending=Result of mass EMail sending
|
ResultOfMailSending=Result of mass EMail sending
|
||||||
NbSelected=Nb selected
|
NbSelected=Nb selected
|
||||||
@ -127,7 +128,7 @@ AdvTgtMaxVal=Maximum value
|
|||||||
AdvTgtSearchDtHelp=Use interval to select date value
|
AdvTgtSearchDtHelp=Use interval to select date value
|
||||||
AdvTgtStartDt=Start dt.
|
AdvTgtStartDt=Start dt.
|
||||||
AdvTgtEndDt=End dt.
|
AdvTgtEndDt=End dt.
|
||||||
AdvTgtTypeOfIncudeHelp=Target Email of thirdparty and email of contact of the thridparty, or just thridparty email or just contact email
|
AdvTgtTypeOfIncudeHelp=Target Email of third party and email of contact of the third party, or just third party email or just contact email
|
||||||
AdvTgtTypeOfIncude=Type of targeted email
|
AdvTgtTypeOfIncude=Type of targeted email
|
||||||
AdvTgtContactHelp=Use only if you target contact into "Type of targeted email"
|
AdvTgtContactHelp=Use only if you target contact into "Type of targeted email"
|
||||||
AddAll=Add all
|
AddAll=Add all
|
||||||
|
|||||||
@ -67,6 +67,7 @@ SelectDate=Select a date
|
|||||||
SeeAlso=See also %s
|
SeeAlso=See also %s
|
||||||
SeeHere=See here
|
SeeHere=See here
|
||||||
BackgroundColorByDefault=Default background color
|
BackgroundColorByDefault=Default background color
|
||||||
|
FileRenamed=The file was successfully renamed
|
||||||
FileUploaded=The file was successfully uploaded
|
FileUploaded=The file was successfully uploaded
|
||||||
FileWasNotUploaded=A file is selected for attachment but was not yet uploaded. Click on "Attach file" for this.
|
FileWasNotUploaded=A file is selected for attachment but was not yet uploaded. Click on "Attach file" for this.
|
||||||
NbOfEntries=Nb of entries
|
NbOfEntries=Nb of entries
|
||||||
@ -245,6 +246,10 @@ DateBuild=Report build date
|
|||||||
DatePayment=Date of payment
|
DatePayment=Date of payment
|
||||||
DateApprove=Approving date
|
DateApprove=Approving date
|
||||||
DateApprove2=Approving date (second approval)
|
DateApprove2=Approving date (second approval)
|
||||||
|
UserCreation=Creation user
|
||||||
|
UserModification=Modification user
|
||||||
|
UserCreationShort=Creat. user
|
||||||
|
UserModificationShort=Modif. user
|
||||||
DurationYear=year
|
DurationYear=year
|
||||||
DurationMonth=month
|
DurationMonth=month
|
||||||
DurationWeek=week
|
DurationWeek=week
|
||||||
@ -256,6 +261,7 @@ DurationDays=days
|
|||||||
Year=Year
|
Year=Year
|
||||||
Month=Month
|
Month=Month
|
||||||
Week=Week
|
Week=Week
|
||||||
|
WeekShort=Week
|
||||||
Day=Day
|
Day=Day
|
||||||
Hour=Hour
|
Hour=Hour
|
||||||
Minute=Minute
|
Minute=Minute
|
||||||
@ -278,6 +284,7 @@ MonthOfDay=Month of the day
|
|||||||
HourShort=H
|
HourShort=H
|
||||||
MinuteShort=mn
|
MinuteShort=mn
|
||||||
Rate=Rate
|
Rate=Rate
|
||||||
|
CurrencyRate=Currency conversion rate
|
||||||
UseLocalTax=Include tax
|
UseLocalTax=Include tax
|
||||||
Bytes=Bytes
|
Bytes=Bytes
|
||||||
KiloBytes=Kilobytes
|
KiloBytes=Kilobytes
|
||||||
@ -565,8 +572,11 @@ BackToList=Back to list
|
|||||||
GoBack=Go back
|
GoBack=Go back
|
||||||
CanBeModifiedIfOk=Can be modified if valid
|
CanBeModifiedIfOk=Can be modified if valid
|
||||||
CanBeModifiedIfKo=Can be modified if not valid
|
CanBeModifiedIfKo=Can be modified if not valid
|
||||||
|
ValueIsValid=Value is valid
|
||||||
|
ValueIsNotValid=Value is not valid
|
||||||
RecordModifiedSuccessfully=Record modified successfully
|
RecordModifiedSuccessfully=Record modified successfully
|
||||||
RecordsModified=%s records modified
|
RecordsModified=%s records modified
|
||||||
|
RecordsDeleted=%s records deleted
|
||||||
AutomaticCode=Automatic code
|
AutomaticCode=Automatic code
|
||||||
FeatureDisabled=Feature disabled
|
FeatureDisabled=Feature disabled
|
||||||
MoveBox=Move widget
|
MoveBox=Move widget
|
||||||
@ -575,6 +585,7 @@ NotEnoughPermissions=You don't have permission for this action
|
|||||||
SessionName=Session name
|
SessionName=Session name
|
||||||
Method=Method
|
Method=Method
|
||||||
Receive=Receive
|
Receive=Receive
|
||||||
|
CompleteOrNoMoreReceptionExpected=Complete or nothing more expected
|
||||||
PartialWoman=Partial
|
PartialWoman=Partial
|
||||||
TotalWoman=Total
|
TotalWoman=Total
|
||||||
NeverReceived=Never received
|
NeverReceived=Never received
|
||||||
@ -598,6 +609,7 @@ DisabledModules=Disabled modules
|
|||||||
For=For
|
For=For
|
||||||
ForCustomer=For customer
|
ForCustomer=For customer
|
||||||
Signature=Signature
|
Signature=Signature
|
||||||
|
DateOfSignature=Date of signature
|
||||||
HidePassword=Show command with password hidden
|
HidePassword=Show command with password hidden
|
||||||
UnHidePassword=Show real command with clear password
|
UnHidePassword=Show real command with clear password
|
||||||
Root=Root
|
Root=Root
|
||||||
@ -641,6 +653,15 @@ NewAttribute=New attribute
|
|||||||
AttributeCode=Attribute code
|
AttributeCode=Attribute code
|
||||||
URLPhoto=URL of photo/logo
|
URLPhoto=URL of photo/logo
|
||||||
SetLinkToAnotherThirdParty=Link to another third party
|
SetLinkToAnotherThirdParty=Link to another third party
|
||||||
|
LinkTo=Link to
|
||||||
|
LinkToProposal=Link to proposal
|
||||||
|
LinkToOrder=Link to order
|
||||||
|
LinkToInvoice=Link to invoice
|
||||||
|
LinkToSupplierOrder=Link to supplier order
|
||||||
|
LinkToSupplierProposal=Link to supplier proposal
|
||||||
|
LinkToSupplierInvoice=Link to supplier invoice
|
||||||
|
LinkToContract=Link to contract
|
||||||
|
LinkToIntervention=Link to intervention
|
||||||
CreateDraft=Create draft
|
CreateDraft=Create draft
|
||||||
SetToDraft=Back to draft
|
SetToDraft=Back to draft
|
||||||
ClickToEdit=Click to edit
|
ClickToEdit=Click to edit
|
||||||
@ -701,6 +722,9 @@ RelatedObjects=Related Objects
|
|||||||
ClassifyBilled=Classify billed
|
ClassifyBilled=Classify billed
|
||||||
Progress=Progress
|
Progress=Progress
|
||||||
ClickHere=Click here
|
ClickHere=Click here
|
||||||
|
FrontOffice=Front office
|
||||||
|
BackOffice=Back office
|
||||||
|
View=View
|
||||||
# Week day
|
# Week day
|
||||||
Monday=Monday
|
Monday=Monday
|
||||||
Tuesday=Tuesday
|
Tuesday=Tuesday
|
||||||
|
|||||||
@ -41,3 +41,4 @@ rateMustBeNumeric=Rate must be a numeric value
|
|||||||
markRateShouldBeLesserThan100=Mark rate should be lower than 100
|
markRateShouldBeLesserThan100=Mark rate should be lower than 100
|
||||||
ShowMarginInfos=Show margin infos
|
ShowMarginInfos=Show margin infos
|
||||||
CheckMargins=Margins detail
|
CheckMargins=Margins detail
|
||||||
|
MarginPerSaleRepresentativeWarning=The report of margin per user use the link between thirdparties and sale representatives to calculate the margin of each user. Because some thirdparties may not be linked to any sale representative and some thirdparties may be linked to several users, some margins may not appears in these report or may appears in several different lines.
|
||||||
|
|||||||
@ -1,5 +1,7 @@
|
|||||||
# Dolibarr language file - Source file is en_US - oauth
|
# Dolibarr language file - Source file is en_US - oauth
|
||||||
ConfigOAuth=Oauth Configuration
|
ConfigOAuth=Oauth Configuration
|
||||||
|
OAuthServices=OAuth services
|
||||||
|
ManualTokenGeneration=Manual token generation
|
||||||
NoAccessToken=No access token saved into local database
|
NoAccessToken=No access token saved into local database
|
||||||
HasAccessToken=A token was generated and saved into local database
|
HasAccessToken=A token was generated and saved into local database
|
||||||
NewTokenStored=Token received ans saved
|
NewTokenStored=Token received ans saved
|
||||||
@ -9,7 +11,16 @@ RequestAccess=Click here to request/renew access and receive a new token to save
|
|||||||
DeleteAccess=Click here to delete token
|
DeleteAccess=Click here to delete token
|
||||||
UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
|
UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
|
||||||
ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
|
ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
|
||||||
OAUTH_GOOGLE_NAME=Api Google
|
TOKEN_ACCESS=
|
||||||
OAUTH_GOOGLE_ID=Api Google Id
|
TOKEN_REFRESH=Token Refresh Present
|
||||||
OAUTH_GOOGLE_SECRET=Api Google Secret
|
TOKEN_EXPIRED=Token expired
|
||||||
OAUTH_GOOGLE_DESC=Go on <a href="https://console.developers.google.com/" target="_blank">this page</a> then Credentials to create Oauth credentials
|
TOKEN_EXPIRE_AT=Token expire at
|
||||||
|
TOKEN_DELETE=Delete saved token
|
||||||
|
OAUTH_GOOGLE_NAME=Oauth Google service
|
||||||
|
OAUTH_GOOGLE_ID=Oauth Google Id
|
||||||
|
OAUTH_GOOGLE_SECRET=Oauth Google Secret
|
||||||
|
OAUTH_GOOGLE_DESC=Go on <a class="notasortlink" href="https://console.developers.google.com/" target="_blank">this page</a> then "Credentials" to create Oauth credentials
|
||||||
|
OAUTH_GITHUB_NAME=Oauth GitHub service
|
||||||
|
OAUTH_GITHUB_ID=Oauth GitHub Id
|
||||||
|
OAUTH_GITHUB_SECRET=Oauth GitHub Secret
|
||||||
|
OAUTH_GITHUB_DESC=Go on <a class="notasortlink" href="https://github.com/settings/developers" target="_blank">this page</a> then "Register a new application" to create Oauth credentials
|
||||||
|
|||||||
@ -157,3 +157,4 @@ OrderCreated=Your orders have been created
|
|||||||
OrderFail=An error happened during your orders creation
|
OrderFail=An error happened during your orders creation
|
||||||
CreateOrders=Create orders
|
CreateOrders=Create orders
|
||||||
ToBillSeveralOrderSelectCustomer=To create an invoice for several orders, click first onto customer, then choose "%s".
|
ToBillSeveralOrderSelectCustomer=To create an invoice for several orders, click first onto customer, then choose "%s".
|
||||||
|
CloseReceivedSupplierOrdersAutomatically=Close order to "%s" automatically if all products are received.
|
||||||
|
|||||||
@ -18,10 +18,6 @@ UserConf=Setup per user
|
|||||||
PRINTGCP_INFO=Google OAuth API setup
|
PRINTGCP_INFO=Google OAuth API setup
|
||||||
PRINTGCP_AUTHLINK=Authentication
|
PRINTGCP_AUTHLINK=Authentication
|
||||||
PRINTGCP_TOKEN_ACCESS=Google Cloud Print OAuth Token
|
PRINTGCP_TOKEN_ACCESS=Google Cloud Print OAuth Token
|
||||||
PRINTGCP_TOKEN_REFRESH=Token Refresh Present
|
|
||||||
PRINTGCP_TOKEN_EXPIRED=Token Expired
|
|
||||||
PRINTGCP_TOKEN_EXPIRE_AT=Token expire at
|
|
||||||
PRINTGCP_DELETE_TOKEN=Delete saved token
|
|
||||||
PrintGCPDesc=This driver allow to send documents directly to a printer with Google Cloud Print.
|
PrintGCPDesc=This driver allow to send documents directly to a printer with Google Cloud Print.
|
||||||
GCP_Name=Name
|
GCP_Name=Name
|
||||||
GCP_displayName=Display Name
|
GCP_displayName=Display Name
|
||||||
|
|||||||
@ -8,8 +8,8 @@ Batch=Lot/Serial
|
|||||||
atleast1batchfield=Eat-by date or Sell-by date or Lot/Serial number
|
atleast1batchfield=Eat-by date or Sell-by date or Lot/Serial number
|
||||||
batch_number=Lot/Serial number
|
batch_number=Lot/Serial number
|
||||||
BatchNumberShort=Lot/Serial
|
BatchNumberShort=Lot/Serial
|
||||||
l_eatby=Eat-by date
|
EatByDate=Eat-by date
|
||||||
l_sellby=Sell-by date
|
SellByDate=Sell-by date
|
||||||
DetailBatchNumber=Lot/Serial details
|
DetailBatchNumber=Lot/Serial details
|
||||||
DetailBatchFormat=Lot/Serial: %s - Eat by: %s - Sell by: %s (Qty : %d)
|
DetailBatchFormat=Lot/Serial: %s - Eat by: %s - Sell by: %s (Qty : %d)
|
||||||
printBatch=Lot/Serial: %s
|
printBatch=Lot/Serial: %s
|
||||||
@ -19,3 +19,6 @@ printQty=Qty: %d
|
|||||||
AddDispatchBatchLine=Add a line for Shelf Life dispatching
|
AddDispatchBatchLine=Add a line for Shelf Life dispatching
|
||||||
WhenProductBatchModuleOnOptionAreForced=When module Lot/Serial is on, increase/decrease stock mode is forced to last choice and can't be edited. Other options can be defined as you want.
|
WhenProductBatchModuleOnOptionAreForced=When module Lot/Serial is on, increase/decrease stock mode is forced to last choice and can't be edited. Other options can be defined as you want.
|
||||||
ProductDoesNotUseBatchSerial=This product does not use lot/serial number
|
ProductDoesNotUseBatchSerial=This product does not use lot/serial number
|
||||||
|
ProductLotSetup=Setup of module lot/serial
|
||||||
|
ShowCurrentStockOfLot=Show current stock for couple product/lot
|
||||||
|
ShowLogOfMovementIfLot=Show log of movements for couple product/lot
|
||||||
|
|||||||
@ -18,8 +18,8 @@ ProductVatMassChange=Mass VAT change
|
|||||||
ProductVatMassChangeDesc=This page can be used to modify a VAT rate defined on products or services from a value to another. Warning, this change is done on all database.
|
ProductVatMassChangeDesc=This page can be used to modify a VAT rate defined on products or services from a value to another. Warning, this change is done on all database.
|
||||||
MassBarcodeInit=Mass barcode init
|
MassBarcodeInit=Mass barcode init
|
||||||
MassBarcodeInitDesc=This page can be used to initialize a barcode on objects that does not have barcode defined. Check before that setup of module barcode is complete.
|
MassBarcodeInitDesc=This page can be used to initialize a barcode on objects that does not have barcode defined. Check before that setup of module barcode is complete.
|
||||||
ProductAccountancyBuyCode=Accountancy code (buy)
|
ProductAccountancyBuyCode=Accountancy code (purchase)
|
||||||
ProductAccountancySellCode=Accountancy code (sell)
|
ProductAccountancySellCode=Accountancy code (sale)
|
||||||
ProductOrService=Product or Service
|
ProductOrService=Product or Service
|
||||||
ProductsAndServices=Products and Services
|
ProductsAndServices=Products and Services
|
||||||
ProductsOrServices=Products or Services
|
ProductsOrServices=Products or Services
|
||||||
@ -59,6 +59,8 @@ SellingPriceHT=Selling price (net of tax)
|
|||||||
SellingPriceTTC=Selling price (inc. tax)
|
SellingPriceTTC=Selling price (inc. tax)
|
||||||
CostPriceDescription=This price (net of tax) can be used to store the average amount this product cost to your company. It may be any price you calculate yourself, for example from the average buying price plus average production and distribution cost.
|
CostPriceDescription=This price (net of tax) can be used to store the average amount this product cost to your company. It may be any price you calculate yourself, for example from the average buying price plus average production and distribution cost.
|
||||||
CostPriceUsage=In a future version, this value could be used for margin calculation.
|
CostPriceUsage=In a future version, this value could be used for margin calculation.
|
||||||
|
SoldAmount=Sold amount
|
||||||
|
PurchasedAmount=Purchased amount
|
||||||
NewPrice=New price
|
NewPrice=New price
|
||||||
MinPrice=Min. selling price
|
MinPrice=Min. selling price
|
||||||
CantBeLessThanMinPrice=The selling price can't be lower than minimum allowed for this product (%s without tax). This message can also appears if you type a too important discount.
|
CantBeLessThanMinPrice=The selling price can't be lower than minimum allowed for this product (%s without tax). This message can also appears if you type a too important discount.
|
||||||
|
|||||||
@ -70,11 +70,11 @@ ListOfTasks=List of tasks
|
|||||||
GoToListOfTimeConsumed=Go to list of time consumed
|
GoToListOfTimeConsumed=Go to list of time consumed
|
||||||
GoToListOfTasks=Go to list of tasks
|
GoToListOfTasks=Go to list of tasks
|
||||||
ListProposalsAssociatedProject=List of the commercial proposals associated with the project
|
ListProposalsAssociatedProject=List of the commercial proposals associated with the project
|
||||||
ListOrdersAssociatedProject=List of customer's orders associated with the project
|
ListOrdersAssociatedProject=List of customer orders associated with the project
|
||||||
ListInvoicesAssociatedProject=List of customer's invoices associated with the project
|
ListInvoicesAssociatedProject=List of customer invoices associated with the project
|
||||||
ListPredefinedInvoicesAssociatedProject=List of customer's template invoices associated with project
|
ListPredefinedInvoicesAssociatedProject=List of customer template invoices associated with project
|
||||||
ListSupplierOrdersAssociatedProject=List of supplier's orders associated with the project
|
ListSupplierOrdersAssociatedProject=List of supplier orders associated with the project
|
||||||
ListSupplierInvoicesAssociatedProject=List of supplier's invoices associated with the project
|
ListSupplierInvoicesAssociatedProject=List of supplier invoices associated with the project
|
||||||
ListContractAssociatedProject=List of contracts associated with the project
|
ListContractAssociatedProject=List of contracts associated with the project
|
||||||
ListFichinterAssociatedProject=List of interventions associated with the project
|
ListFichinterAssociatedProject=List of interventions associated with the project
|
||||||
ListExpenseReportsAssociatedProject=List of expense reports associated with the project
|
ListExpenseReportsAssociatedProject=List of expense reports associated with the project
|
||||||
@ -123,6 +123,7 @@ ProjectReportDate=Change task date according project start date
|
|||||||
ErrorShiftTaskDate=Impossible to shift task date according to new project start date
|
ErrorShiftTaskDate=Impossible to shift task date according to new project start date
|
||||||
ProjectsAndTasksLines=Projects and tasks
|
ProjectsAndTasksLines=Projects and tasks
|
||||||
ProjectCreatedInDolibarr=Project %s created
|
ProjectCreatedInDolibarr=Project %s created
|
||||||
|
ProjectModifiedInDolibarr=Project %s modified
|
||||||
TaskCreatedInDolibarr=Task %s created
|
TaskCreatedInDolibarr=Task %s created
|
||||||
TaskModifiedInDolibarr=Task %s modified
|
TaskModifiedInDolibarr=Task %s modified
|
||||||
TaskDeletedInDolibarr=Task %s deleted
|
TaskDeletedInDolibarr=Task %s deleted
|
||||||
@ -153,7 +154,7 @@ PlannedWorkload=Planned workload
|
|||||||
PlannedWorkloadShort=Workload
|
PlannedWorkloadShort=Workload
|
||||||
ProjectReferers=Related items
|
ProjectReferers=Related items
|
||||||
ProjectMustBeValidatedFirst=Project must be validated first
|
ProjectMustBeValidatedFirst=Project must be validated first
|
||||||
FirstAddRessourceToAllocateTime=Associate a resource to allocate time
|
FirstAddRessourceToAllocateTime=Assign a user resource to task to allocate time
|
||||||
InputPerDay=Input per day
|
InputPerDay=Input per day
|
||||||
InputPerWeek=Input per week
|
InputPerWeek=Input per week
|
||||||
InputPerAction=Input per action
|
InputPerAction=Input per action
|
||||||
@ -174,7 +175,7 @@ ProjectOpenedProjectByOppStatus=Open project/lead by opportunity status
|
|||||||
ProjectsStatistics=Statistics on projects/leads
|
ProjectsStatistics=Statistics on projects/leads
|
||||||
TaskAssignedToEnterTime=Task assigned. Entering time on this task should be possible.
|
TaskAssignedToEnterTime=Task assigned. Entering time on this task should be possible.
|
||||||
IdTaskTime=Id task time
|
IdTaskTime=Id task time
|
||||||
YouCanCompleteRef=If you want to complete the ref with some information (to use it as search filters), it is recommanded to add a - character to separate it, so the automatic numbering will still work correctly for next projects. For example %s-ABC. You may also prefer to add search keys into label.
|
YouCanCompleteRef=If you want to complete the ref with some information (to use it as search filters), it is recommanded to add a - character to separate it, so the automatic numbering will still work correctly for next projects. For example %s-ABC. You may also prefer to add search keys into label. But best practice may be to add a dedicated field, also called complementary attributes.
|
||||||
OpenedProjectsByThirdparties=Open projects by thirdparties
|
OpenedProjectsByThirdparties=Open projects by thirdparties
|
||||||
OnlyOpportunitiesShort=Only opportunities
|
OnlyOpportunitiesShort=Only opportunities
|
||||||
OpenedOpportunitiesShort=Open opportunities
|
OpenedOpportunitiesShort=Open opportunities
|
||||||
|
|||||||
@ -7,8 +7,8 @@ NewSalaryPayment=New salary payment
|
|||||||
SalaryPayment=Salary payment
|
SalaryPayment=Salary payment
|
||||||
SalariesPayments=Salaries payments
|
SalariesPayments=Salaries payments
|
||||||
ShowSalaryPayment=Show salary payment
|
ShowSalaryPayment=Show salary payment
|
||||||
THM=Average hourly price
|
THM=Average hourly rate
|
||||||
TJM=Average daily price
|
TJM=Average daily rate
|
||||||
CurrentSalary=Current salary
|
CurrentSalary=Current salary
|
||||||
THMDescription=This value may be used to calculate cost of time consumed on a project entered by users if module project is used
|
THMDescription=This value may be used to calculate cost of time consumed on a project entered by users if module project is used
|
||||||
TJMDescription=This value is currently as information only and is not used for any calculation
|
TJMDescription=This value is currently as information only and is not used for any calculation
|
||||||
|
|||||||
@ -15,6 +15,8 @@ DeleteSending=Delete sending
|
|||||||
Stock=Stock
|
Stock=Stock
|
||||||
Stocks=Stocks
|
Stocks=Stocks
|
||||||
StocksByLotSerial=Stocks by lot/serial
|
StocksByLotSerial=Stocks by lot/serial
|
||||||
|
LotSerial=Lots/Serials
|
||||||
|
LotSerialList=List of lot/serials
|
||||||
Movements=Movements
|
Movements=Movements
|
||||||
ErrorWarehouseRefRequired=Warehouse reference name is required
|
ErrorWarehouseRefRequired=Warehouse reference name is required
|
||||||
ListOfWarehouses=List of warehouses
|
ListOfWarehouses=List of warehouses
|
||||||
@ -43,6 +45,7 @@ PMPValue=Weighted average price
|
|||||||
PMPValueShort=WAP
|
PMPValueShort=WAP
|
||||||
EnhancedValueOfWarehouses=Warehouses value
|
EnhancedValueOfWarehouses=Warehouses value
|
||||||
UserWarehouseAutoCreate=Create a warehouse automatically when creating a user
|
UserWarehouseAutoCreate=Create a warehouse automatically when creating a user
|
||||||
|
AllowAddLimitStockByWarehouse=Allow to add limit and desired stock by product and warehouse
|
||||||
IndependantSubProductStock=Product stock and subproduct stock are independant
|
IndependantSubProductStock=Product stock and subproduct stock are independant
|
||||||
QtyDispatched=Quantity dispatched
|
QtyDispatched=Quantity dispatched
|
||||||
QtyDispatchedShort=Qty dispatched
|
QtyDispatchedShort=Qty dispatched
|
||||||
@ -132,3 +135,9 @@ OpenAll=Open for all actions
|
|||||||
OpenInternal=Open for internal actions
|
OpenInternal=Open for internal actions
|
||||||
OpenShipping=Open for shippings
|
OpenShipping=Open for shippings
|
||||||
OpenDispatch=Open for dispatch
|
OpenDispatch=Open for dispatch
|
||||||
|
UseDispatchStatus=Use dispatch status (aprouve/refuse)
|
||||||
|
OptionMULTIPRICESIsOn=Option "several prices per segment" is on. It means a product has several selling price so value for sell can't be calculated
|
||||||
|
ProductStockWarehouseCreated=Stock limit for alert and desired optimal stock correctly created
|
||||||
|
ProductStockWarehouseUpdated=Stock limit for alert and desired optimal stock correctly updated
|
||||||
|
ProductStockWarehouseDeleted=Stock limit for alert and desired optimal stock correctly deleted
|
||||||
|
AddNewProductStockWarehouse=Set new limit for alert and desired optimal stock
|
||||||
|
|||||||
@ -47,6 +47,7 @@ DefaultModelSupplierProposalCreate=Default model creation
|
|||||||
DefaultModelSupplierProposalToBill=Default template when closing a price request (accepted)
|
DefaultModelSupplierProposalToBill=Default template when closing a price request (accepted)
|
||||||
DefaultModelSupplierProposalClosed=Default template when closing a price request (refused)
|
DefaultModelSupplierProposalClosed=Default template when closing a price request (refused)
|
||||||
ListOfSupplierProposal=List of supplier proposal requests
|
ListOfSupplierProposal=List of supplier proposal requests
|
||||||
|
ListSupplierProposalsAssociatedProject=List of supplier proposals associated with project
|
||||||
SupplierProposalsToClose=Supplier proposals to close
|
SupplierProposalsToClose=Supplier proposals to close
|
||||||
SupplierProposalsToProcess=Supplier proposals to process
|
SupplierProposalsToProcess=Supplier proposals to process
|
||||||
LastSupplierProposals=Last price requests
|
LastSupplierProposals=Last price requests
|
||||||
|
|||||||
@ -7,13 +7,13 @@ History=History
|
|||||||
ListOfSuppliers=List of suppliers
|
ListOfSuppliers=List of suppliers
|
||||||
ShowSupplier=Show supplier
|
ShowSupplier=Show supplier
|
||||||
OrderDate=Order date
|
OrderDate=Order date
|
||||||
BuyingPriceMin=Minimum purchase price
|
BuyingPriceMin=Best buying price
|
||||||
BuyingPriceMinShort=Min purchase price
|
BuyingPriceMinShort=Best buying price
|
||||||
TotalBuyingPriceMinShort=Total of subproducts purchase prices
|
TotalBuyingPriceMinShort=Total of subproducts buying prices
|
||||||
TotalSellingPriceMinShort=Total of subproducts sell prices
|
TotalSellingPriceMinShort=Total of subproducts selling prices
|
||||||
SomeSubProductHaveNoPrices=Some sub-products have no price defined
|
SomeSubProductHaveNoPrices=Some sub-products have no price defined
|
||||||
AddSupplierPrice=Add supplier price
|
AddSupplierPrice=Add buying price
|
||||||
ChangeSupplierPrice=Change supplier price
|
ChangeSupplierPrice=Change buying price
|
||||||
ReferenceSupplierIsAlreadyAssociatedWithAProduct=This reference supplier is already associated with a reference: %s
|
ReferenceSupplierIsAlreadyAssociatedWithAProduct=This reference supplier is already associated with a reference: %s
|
||||||
NoRecordedSuppliers=No suppliers recorded
|
NoRecordedSuppliers=No suppliers recorded
|
||||||
SupplierPayment=Supplier payment
|
SupplierPayment=Supplier payment
|
||||||
@ -36,8 +36,8 @@ ListOfSupplierOrders=List of supplier orders
|
|||||||
MenuOrdersSupplierToBill=Supplier orders to invoice
|
MenuOrdersSupplierToBill=Supplier orders to invoice
|
||||||
NbDaysToDelivery=Delivery delay in days
|
NbDaysToDelivery=Delivery delay in days
|
||||||
DescNbDaysToDelivery=The biggest deliver delay of the products from this order
|
DescNbDaysToDelivery=The biggest deliver delay of the products from this order
|
||||||
UseDoubleApproval=Use double approval when amount (without tax) is higher than (The second approval can be done by any user with the dedicated permission. Set to 0 for no double approval)
|
|
||||||
SupplierReputation=Supplier reputation
|
SupplierReputation=Supplier reputation
|
||||||
DoNotOrderThisProductToThisSupplier=Do not order
|
DoNotOrderThisProductToThisSupplier=Do not order
|
||||||
NotTheGoodQualitySupplier=Wrong quality
|
NotTheGoodQualitySupplier=Wrong quality
|
||||||
ReputationForThisProduct=Reputation
|
ReputationForThisProduct=Reputation
|
||||||
|
BuyerName=Buyer name
|
||||||
|
|||||||
@ -100,3 +100,6 @@ WeeklyHours=Weekly hours
|
|||||||
ColorUser=Color of the user
|
ColorUser=Color of the user
|
||||||
DisabledInMonoUserMode=Disabled in maintenance mode
|
DisabledInMonoUserMode=Disabled in maintenance mode
|
||||||
UserAccountancyCode=User accountancy code
|
UserAccountancyCode=User accountancy code
|
||||||
|
UserLogoff=User logout
|
||||||
|
UserLogged=User logged
|
||||||
|
DateEmployment=Date of Employment
|
||||||
|
|||||||
@ -12,6 +12,7 @@ EditMenu=Edit menu
|
|||||||
EditPageMeta=Edit Meta
|
EditPageMeta=Edit Meta
|
||||||
EditPageContent=Edit Content
|
EditPageContent=Edit Content
|
||||||
Website=Web site
|
Website=Web site
|
||||||
|
Webpage=Web page
|
||||||
AddPage=Add page
|
AddPage=Add page
|
||||||
PreviewOfSiteNotYetAvailable=Preview of your website <strong>%s</strong> not yet available. You must first add a page.
|
PreviewOfSiteNotYetAvailable=Preview of your website <strong>%s</strong> not yet available. You must first add a page.
|
||||||
RequestedPageHasNoContentYet=Requested page with id %s has not content yet or cache file .tpl.php was removed. Edit content of page to solve this.
|
RequestedPageHasNoContentYet=Requested page with id %s has not content yet or cache file .tpl.php was removed. Edit content of page to solve this.
|
||||||
@ -22,4 +23,6 @@ ViewPageInNewTab=View page in new tab
|
|||||||
SetAsHomePage=Set as Home page
|
SetAsHomePage=Set as Home page
|
||||||
RealURL=Real URL
|
RealURL=Real URL
|
||||||
ViewWebsiteInProduction=View web site using home URLs
|
ViewWebsiteInProduction=View web site using home URLs
|
||||||
SetHereVirtualHost=If you can set, on your web server, a dedicated virtual host with a root directory on <strong>%s</strong>, define here the virtual hostname so the preview will be done using this direct access instead of Dolibarr URLs wrapper.
|
SetHereVirtualHost=If you can set, on your web server, a dedicated virtual host with a root directory on <strong>%s</strong>, define here the virtual hostname so the preview can be done also using this direct web server access and not only using Dolibarr server.
|
||||||
|
PreviewSiteServedByWebServer=Preview %s in a new tab. The %s will be served by an external web server (like Apache, Nginx, IIS). You must instal and setup this server before.<br>URL of %s served by external server:<br><strong>%s</strong>
|
||||||
|
PreviewSiteServedByDolibarr=Preview %s in a new tab. The %s will be served by Dolibarr server so it does not need any extra web server (like Apache, Nginx, IIS) to be installed.<br>The inconvenient is that URL of pages are using path of your Dolibarr.<br>URL of %s served by Dolibarr:<br><strong>%s</strong>
|
||||||
|
|||||||
@ -1,27 +1,28 @@
|
|||||||
# Dolibarr language file - Source file is en_US - withdrawals
|
# Dolibarr language file - Source file is en_US - withdrawals
|
||||||
CustomersStandingOrdersArea=Customers standing orders area
|
CustomersStandingOrdersArea=Direct debit payment orders area
|
||||||
StandingOrders=Standing orders
|
SuppliersStandingOrdersArea=Direct credit payment orders area
|
||||||
StandingOrder=Standing orders
|
StandingOrders=Direct debit payment orders
|
||||||
NewStandingOrder=New standing order
|
StandingOrder=Direct debit payment order
|
||||||
|
NewStandingOrder=New direct debit order
|
||||||
StandingOrderToProcess=To process
|
StandingOrderToProcess=To process
|
||||||
WithdrawalsReceipts=Withdrawal receipts
|
WithdrawalsReceipts=Direct debit orders
|
||||||
WithdrawalReceipt=Withdrawal receipt
|
WithdrawalReceipt=Direct debit order
|
||||||
LastWithdrawalReceipts=Latest %s withdrawal receipts
|
LastWithdrawalReceipts=Latest %s direct debit files
|
||||||
WithdrawalsLines=Withdrawal lines
|
WithdrawalsLines=Direct debit order lines
|
||||||
RequestStandingOrderToTreat=Request for standing orders to process
|
RequestStandingOrderToTreat=Request for direct debit payment order to process
|
||||||
RequestStandingOrderTreated=Request for standing orders processed
|
RequestStandingOrderTreated=Request for direct debit payment order processed
|
||||||
NotPossibleForThisStatusOfWithdrawReceiptORLine=Not yet possible. Withdraw status must be set to 'credited' before declaring reject on specific lines.
|
NotPossibleForThisStatusOfWithdrawReceiptORLine=Not yet possible. Withdraw status must be set to 'credited' before declaring reject on specific lines.
|
||||||
NbOfInvoiceToWithdraw=Nb. of invoice with withdraw request
|
NbOfInvoiceToWithdraw=Nb. of invoice with direct debit order
|
||||||
NbOfInvoiceToWithdrawWithInfo=Nb. of invoice with withdraw request for customers having defined bank account information
|
NbOfInvoiceToWithdrawWithInfo=Nb. of customer invoice with direct debit payment orders having defined bank account information
|
||||||
InvoiceWaitingWithdraw=Invoice waiting for withdraw
|
InvoiceWaitingWithdraw=Invoice waiting for direct debit
|
||||||
AmountToWithdraw=Amount to withdraw
|
AmountToWithdraw=Amount to withdraw
|
||||||
WithdrawsRefused=Withdraws refused
|
WithdrawsRefused=Direct debit refused
|
||||||
NoInvoiceToWithdraw=No customer invoice in payment mode "withdraw" is waiting. Go on 'Withdraw' tab on invoice card to make a request.
|
NoInvoiceToWithdraw=No customer invoice in payment mode "withdraw" is waiting. Go on 'Withdraw' tab on invoice card to make a request.
|
||||||
ResponsibleUser=Responsible user
|
ResponsibleUser=Responsible user
|
||||||
WithdrawalsSetup=Withdrawal setup
|
WithdrawalsSetup=Direct debit payment setup
|
||||||
WithdrawStatistics=Withdraw's statistics
|
WithdrawStatistics=Direct debit payment statistics
|
||||||
WithdrawRejectStatistics=Withdraw reject's statistics
|
WithdrawRejectStatistics=Direct debit payment reject statistics
|
||||||
LastWithdrawalReceipt=Latest %s withdrawal receipts
|
LastWithdrawalReceipt=Latest %s direct debit receipts
|
||||||
MakeWithdrawRequest=Make a withdraw request
|
MakeWithdrawRequest=Make a withdraw request
|
||||||
ThirdPartyBankCode=Third party bank code
|
ThirdPartyBankCode=Third party bank code
|
||||||
NoInvoiceCouldBeWithdrawed=No invoice withdrawed with success. Check that invoice are on companies with a valid BAN.
|
NoInvoiceCouldBeWithdrawed=No invoice withdrawed with success. Check that invoice are on companies with a valid BAN.
|
||||||
@ -46,7 +47,7 @@ StatusRefused=Refused
|
|||||||
StatusMotif0=Unspecified
|
StatusMotif0=Unspecified
|
||||||
StatusMotif1=Insufficient funds
|
StatusMotif1=Insufficient funds
|
||||||
StatusMotif2=Request contested
|
StatusMotif2=Request contested
|
||||||
StatusMotif3=No Withdrawal order
|
StatusMotif3=No direct debit payment order
|
||||||
StatusMotif4=Customer Order
|
StatusMotif4=Customer Order
|
||||||
StatusMotif5=RIB unusable
|
StatusMotif5=RIB unusable
|
||||||
StatusMotif6=Account without balance
|
StatusMotif6=Account without balance
|
||||||
@ -61,28 +62,43 @@ NotifyCredit=Withdrawal Credit
|
|||||||
NumeroNationalEmetter=National Transmitter Number
|
NumeroNationalEmetter=National Transmitter Number
|
||||||
WithBankUsingRIB=For bank accounts using RIB
|
WithBankUsingRIB=For bank accounts using RIB
|
||||||
WithBankUsingBANBIC=For bank accounts using IBAN/BIC/SWIFT
|
WithBankUsingBANBIC=For bank accounts using IBAN/BIC/SWIFT
|
||||||
BankToReceiveWithdraw=Bank account to receive withdraws
|
BankToReceiveWithdraw=Bank account to receive direct debit
|
||||||
CreditDate=Credit on
|
CreditDate=Credit on
|
||||||
WithdrawalFileNotCapable=Unable to generate withdrawal receipt file for your country %s (Your country is not supported)
|
WithdrawalFileNotCapable=Unable to generate withdrawal receipt file for your country %s (Your country is not supported)
|
||||||
ShowWithdraw=Show Withdraw
|
ShowWithdraw=Show Withdraw
|
||||||
IfInvoiceNeedOnWithdrawPaymentWontBeClosed=However, if invoice has at least one withdrawal payment not yet processed, it won't be set as paid to allow prior withdrawal management.
|
IfInvoiceNeedOnWithdrawPaymentWontBeClosed=However, if invoice has at least one withdrawal payment not yet processed, it won't be set as paid to allow prior withdrawal management.
|
||||||
DoStandingOrdersBeforePayments=This tab allows you to request a standing order. Once done, go into menu Bank->Withdrawal to manage the standing order. When standing order is closed, payment on invoice will be automatically recorded, and invoice closed if remainder to pay is null.
|
DoStandingOrdersBeforePayments=This tab allows you to request a direct debit payment order. Once done, go into menu Bank->Withdrawal to manage the direct debit payment order. When payment order is closed, payment on invoice will be automatically recorded, and invoice closed if remainder to pay is null.
|
||||||
WithdrawalFile=Withdrawal file
|
WithdrawalFile=Withdrawal file
|
||||||
SetToStatusSent=Set to status "File Sent"
|
SetToStatusSent=Set to status "File Sent"
|
||||||
ThisWillAlsoAddPaymentOnInvoice=This will also apply payments to invoices and will classify them as "Paid"
|
ThisWillAlsoAddPaymentOnInvoice=This will also apply payments to invoices and will classify them as "Paid"
|
||||||
StatisticsByLineStatus=Statistics by status of lines
|
StatisticsByLineStatus=Statistics by status of lines
|
||||||
RUM=RUM
|
RUM=UMR
|
||||||
RUMWillBeGenerated=RUM number will be generated once bank account information are saved
|
RUMLong=Unique Mandate Reference
|
||||||
WithdrawMode=Withdraw mode (FRST or RECUR)
|
RUMWillBeGenerated=UMR number will be generated once bank account information are saved
|
||||||
|
WithdrawMode=Direct debit mode (FRST or RECUR)
|
||||||
WithdrawRequestAmount=Withdraw request amount:
|
WithdrawRequestAmount=Withdraw request amount:
|
||||||
WithdrawRequestErrorNilAmount=Unable to create withdraw request for nil amount.
|
WithdrawRequestErrorNilAmount=Unable to create withdraw request for nil amount.
|
||||||
|
SepaMandate=SEPA Direct Debit Mandate
|
||||||
|
SepaMandateShort=SEPA Mandate
|
||||||
|
PleaseReturnMandate=Please return this mandate form by email to %s or by mail to
|
||||||
|
SEPALegalText=By signing this mandate form, you authorize (A) %s to send instructions to your bank to debit your account and (B) your bank to debit your account in accordance with the instructions from %s. As part of your rights, you are entitled to a refund from your bank under the terms and conditions of your agreement with your bank. A refund must be claimed within 8 weeks starting from the date on which your account was debited. Your rights regarding the above mandate are explained in a statement that you can obtain from your bank.
|
||||||
|
CreditorIdentifier=Creditor Identifier
|
||||||
|
CreditorName=Creditor’s Name
|
||||||
|
SEPAFillForm=(B) Please complete all the fields marked *
|
||||||
|
SEPAFormYourName=Your name
|
||||||
|
SEPAFormYourBAN=Your Bank Account Name (IBAN)
|
||||||
|
SEPAFormYourBIC=Your Bank Identifier Code (BIC)
|
||||||
|
SEPAFrstOrRecur=Type of payment
|
||||||
|
ModeRECUR=Reccurent payment
|
||||||
|
ModeFRST=One-off payment
|
||||||
|
PleaseCheckOne=Please check one only
|
||||||
|
|
||||||
### Notifications
|
### Notifications
|
||||||
InfoCreditSubject=Payment of standing order %s by the bank
|
InfoCreditSubject=Payment of direct debit payment order %s by the bank
|
||||||
InfoCreditMessage=The standing order %s has been paid by the bank<br>Data of payment: %s
|
InfoCreditMessage=The direct debit payment order %s has been paid by the bank<br>Data of payment: %s
|
||||||
InfoTransSubject=Transmission of standing order %s to bank
|
InfoTransSubject=Transmission of direct debit payment order %s to bank
|
||||||
InfoTransMessage=The standing order %s has been sent to bank by %s %s.<br><br>
|
InfoTransMessage=The direct debit payment order %s has been sent to bank by %s %s.<br><br>
|
||||||
InfoTransData=Amount: %s<br>Method: %s<br>Date: %s
|
InfoTransData=Amount: %s<br>Method: %s<br>Date: %s
|
||||||
InfoRejectSubject=Standing order refused
|
InfoRejectSubject=Direct debit payment order refused
|
||||||
InfoRejectMessage=Hello,<br><br>the standing order of invoice %s related to the company %s, with an amount of %s has been refused by the bank.<br><br>--<br>%s
|
InfoRejectMessage=Hello,<br><br>the direct debit payment order of invoice %s related to the company %s, with an amount of %s has been refused by the bank.<br><br>--<br>%s
|
||||||
ModeWarning=Option for real mode was not set, we stop after this simulation
|
ModeWarning=Option for real mode was not set, we stop after this simulation
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
# Dolibarr language file - Source file is en_US - admin
|
# Dolibarr language file - Source file is en_US - workflow
|
||||||
WorkflowSetup=Workflow module setup
|
WorkflowSetup=Workflow module setup
|
||||||
WorkflowDesc=This module is designed to modify the behaviour of automatic actions into application. By default, workflow is open (you can do things in the order you want). You can activate the automatic actions you are interested in.
|
WorkflowDesc=This module is designed to modify the behaviour of automatic actions into application. By default, workflow is open (you can do things in the order you want). You can activate the automatic actions you are interested in.
|
||||||
ThereIsNoWorkflowToModify=There is no workflow modifications available with the activated modules.
|
ThereIsNoWorkflowToModify=There is no workflow modifications available with the activated modules.
|
||||||
@ -9,3 +9,5 @@ descWORKFLOW_ORDER_AUTOCREATE_INVOICE=Automatically create a customer invoice af
|
|||||||
descWORKFLOW_ORDER_CLASSIFY_BILLED_PROPAL=Classify linked source proposal to billed when customer order is set to paid
|
descWORKFLOW_ORDER_CLASSIFY_BILLED_PROPAL=Classify linked source proposal to billed when customer order is set to paid
|
||||||
descWORKFLOW_INVOICE_CLASSIFY_BILLED_ORDER=Classify linked source customer order(s) to billed when customer invoice is set to paid
|
descWORKFLOW_INVOICE_CLASSIFY_BILLED_ORDER=Classify linked source customer order(s) to billed when customer invoice is set to paid
|
||||||
descWORKFLOW_INVOICE_AMOUNT_CLASSIFY_BILLED_ORDER=Classify linked source customer order(s) to billed when customer invoice is validated
|
descWORKFLOW_INVOICE_AMOUNT_CLASSIFY_BILLED_ORDER=Classify linked source customer order(s) to billed when customer invoice is validated
|
||||||
|
descWORKFLOW_INVOICE_CLASSIFY_BILLED_PROPAL=Classify linked source proposal to billed when customer invoice is validated
|
||||||
|
descWORKFLOW_ORDER_CLASSIFY_SHIPPED_SHIPPING=Classify shipped linked source order on shipping validate if quantity shipped is the same as in order
|
||||||
|
|||||||
@ -14,48 +14,69 @@ Journaux=Journals
|
|||||||
JournalFinancial=Financial journals
|
JournalFinancial=Financial journals
|
||||||
BackToChartofaccounts=Return chart of accounts
|
BackToChartofaccounts=Return chart of accounts
|
||||||
|
|
||||||
|
AccountancyArea=Accountancy area
|
||||||
|
AccountancyAreaDescIntro=Usage of the accountancy module is done in several step:
|
||||||
|
AccountancyAreaDescActionOnce=The following actions are usually executed one time only, or once per year...
|
||||||
|
AccountancyAreaDescActionFreq=The following actions are usually executed every month, week or day for very large companies...
|
||||||
|
AccountancyAreaDescChart=STEP %s: Create or check your chart of account from menu %s
|
||||||
|
AccountancyAreaDescProd=STEP %s: Check the binding between products/services and accounting account is done. Complete missing bindings. This will save you time in future for the next steps by suggesting you the correct default accounting account on your invoice lines.<br>For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescBank=STEP %s: Check the binding between bank accounts and accounting account is done. Complete missing bindings. This will save you time in future for the next steps by suggesting you the correct default accounting account on your payment lines.<br>For this, go on the card of each financial account. You can start from page %s.
|
||||||
|
AccountancyAreaDescVat=STEP %s: Check the binding between vat payment and accounting account is done. Complete missing bindings. This will save you time in future for the next steps by suggesting you the correct default accounting account on records related to VAT payments.<br>You can set accounting accounts to use for each VAT from page %s.
|
||||||
|
AccountancyAreaDescSal=STEP %s: Check the binding between salaries payment and accounting account is done. Complete missing bindings. This will save you time in future for the next steps by suggesting you the correct default accounting account on records related to payment of salaries.<br>For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescContrib=STEP %s: Check the binding between special expences (social or fiscal contributions) and accounting account is done. Complete missing bindings. This will save you time in future for the next steps by suggesting you the correct default accounting account on records related to payments of social contributions.<br>For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescDonation=STEP %s: Check the binding between donation and accounting account is done. Complete missing bindings. This will save you time in future for the next steps by suggesting you the correct default accounting account on records related to payments of donation.<br>You can set the account dedicated for that from the menu entry %s.
|
||||||
|
|
||||||
|
AccountancyAreaDescCustomer=STEP %s: Check the binding between existing customer invoice lines and accounting account is done. Complete missing bindings. Once binding is complete, application will be able to record transactions in General Ledger in one click.<br>For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescSupplier=STEP %s: Check the binding between existing supplier invoice lines and accounting account is done. Complete missing bindings. Once binding is complete, application will be able to record transactions in General Ledger in one click.<br>For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescWriteRecords=STEP %s: Write transactions into the General Ledger. Add or edit existing transactions and generate reports
|
||||||
|
|
||||||
Selectchartofaccounts=Select a chart of accounts
|
Selectchartofaccounts=Select a chart of accounts
|
||||||
Addanaccount=Add an accounting account
|
Addanaccount=Add an accounting account
|
||||||
AccountAccounting=Accounting account
|
AccountAccounting=Accounting account
|
||||||
AccountAccountingShort=Account
|
AccountAccountingShort=Account
|
||||||
AccountAccountingSuggest=Accounting account suggest
|
AccountAccountingSuggest=Accounting account suggest
|
||||||
Ventilation=Breakdown
|
Ventilation=Binding to accounts
|
||||||
|
ProductsBinding=Products bindings
|
||||||
|
|
||||||
MenuAccountancy=Accountancy
|
MenuAccountancy=Accountancy
|
||||||
CustomersVentilation=Breakdown customers
|
CustomersVentilation=Customer invoice binding
|
||||||
SuppliersVentilation=Breakdown suppliers
|
SuppliersVentilation=Supplier invoice binding
|
||||||
Reports=Reports
|
Reports=Reports
|
||||||
NewAccount=New accounting account
|
NewAccount=New accounting account
|
||||||
Create=Create
|
Create=Create
|
||||||
CreateMvts=Create movement
|
CreateMvts=Create new transaction
|
||||||
UpdateMvts=Modification of a movement
|
UpdateMvts=Modification of a transaction
|
||||||
WriteBookKeeping=Record accounts in general ledger
|
WriteBookKeeping=Record operations in General Ledger
|
||||||
Bookkeeping=General ledger
|
Bookkeeping=General ledger
|
||||||
AccountBalance=Account balance
|
AccountBalance=Account balance
|
||||||
|
|
||||||
CAHTF=Total purchase supplier before tax
|
CAHTF=Total purchase supplier before tax
|
||||||
InvoiceLines=Lines of invoice to be ventilated
|
InvoiceLines=Lines of invoices to bind
|
||||||
InvoiceLinesDone=Ventilated lines of invoice
|
InvoiceLinesDone=Bound lines of invoices
|
||||||
IntoAccount=Ventilate in the accounting account
|
IntoAccount=Bind line with the accounting account
|
||||||
|
|
||||||
Ventilate=Ventilate
|
Ventilate=Bind
|
||||||
|
|
||||||
Processing=Processing
|
Processing=Processing
|
||||||
EndProcessing=The end of processing
|
EndProcessing=The end of processing
|
||||||
AnyLineVentilate=Any lines to ventilate
|
AnyLineVentilate=Any lines to bind
|
||||||
SelectedLines=Selected lines
|
SelectedLines=Selected lines
|
||||||
Lineofinvoice=Line of invoice
|
Lineofinvoice=Line of invoice
|
||||||
VentilatedinAccount=Ventilated successfully in the accounting account
|
VentilatedinAccount=Binded successfully to the accounting account
|
||||||
NotVentilatedinAccount=Not ventilated in the accounting account
|
NotVentilatedinAccount=Not bound to the accounting account
|
||||||
|
XLineSuccessfullyBinded=%s products/services successfuly bound to an accounting account
|
||||||
|
XLineFailedToBeBinded=%s products/services were not bound to any accounting account
|
||||||
|
|
||||||
ACCOUNTING_LIMIT_LIST_VENTILATION=Number of elements to be breakdown shown by page (maximum recommended : 50)
|
ACCOUNTING_LIMIT_LIST_VENTILATION=Number of elements to bind shown by page (maximum recommended : 50)
|
||||||
ACCOUNTING_LIST_SORT_VENTILATION_TODO=Begin the sorting of the breakdown pages "Has to breakdown" by the most recent elements
|
ACCOUNTING_LIST_SORT_VENTILATION_TODO=Begin the sorting of the page "Binding to do" by the most recent elements
|
||||||
ACCOUNTING_LIST_SORT_VENTILATION_DONE=Begin the sorting of the breakdown pages "Breakdown" by the most recent elements
|
ACCOUNTING_LIST_SORT_VENTILATION_DONE=Begin the sorting of the page "Binding done" by the most recent elements
|
||||||
|
|
||||||
ACCOUNTING_LENGTH_DESCRIPTION=Length for displaying product & services description in listings (Best = 50)
|
ACCOUNTING_LENGTH_DESCRIPTION=Length for displaying product & services description in listings (Best = 50)
|
||||||
ACCOUNTING_LENGTH_DESCRIPTION_ACCOUNT=Length for displaying product & services account description form in listings (Best = 50)
|
ACCOUNTING_LENGTH_DESCRIPTION_ACCOUNT=Length for displaying product & services account description form in listings (Best = 50)
|
||||||
ACCOUNTING_LENGTH_GACCOUNT=Length of the general accounts
|
ACCOUNTING_LENGTH_GACCOUNT=Length of the general accounting accounts
|
||||||
ACCOUNTING_LENGTH_AACCOUNT=Length of the third party accounts
|
ACCOUNTING_LENGTH_AACCOUNT=Length of the third party accounting accounts
|
||||||
|
ACCOUNTING_MANAGE_ZERO=Manage the zero at the end of an accounting account. Needed by some countries. Disable by default. Be careful with the function "length of the accounts".
|
||||||
|
BANK_DISABLE_DIRECT_INPUT=Disable free input of bank transactions (Enabled by default with this module).
|
||||||
|
|
||||||
ACCOUNTING_SELL_JOURNAL=Sell journal
|
ACCOUNTING_SELL_JOURNAL=Sell journal
|
||||||
ACCOUNTING_PURCHASE_JOURNAL=Purchase journal
|
ACCOUNTING_PURCHASE_JOURNAL=Purchase journal
|
||||||
@ -81,32 +102,31 @@ Sens=Sens
|
|||||||
Codejournal=Journal
|
Codejournal=Journal
|
||||||
NumPiece=Piece number
|
NumPiece=Piece number
|
||||||
AccountingCategory=Accounting category
|
AccountingCategory=Accounting category
|
||||||
|
|
||||||
NotMatch=Not Set
|
NotMatch=Not Set
|
||||||
|
|
||||||
DeleteMvt=Delete general ledger lines
|
DeleteMvt=Delete general ledger lines
|
||||||
DelYear=Year to delete
|
DelYear=Year to delete
|
||||||
DelJournal=Journal to delete
|
DelJournal=Journal to delete
|
||||||
ConfirmDeleteMvt=This will delete all line of of the general ledger for year and/or from a specifics journal
|
ConfirmDeleteMvt=This will delete all lines of the general ledger for year and/or from a specifics journal
|
||||||
|
ConfirmDeleteMvtPartial=This will delete the selected line(s) of the general ledger
|
||||||
DelBookKeeping=Delete the records of the general ledger
|
DelBookKeeping=Delete the records of the general ledger
|
||||||
|
|
||||||
DescSellsJournal=Sells journal
|
DescSellsJournal=Sells journal
|
||||||
DescPurchasesJournal=Purchases journal
|
DescPurchasesJournal=Purchases journal
|
||||||
FinanceJournal=Finance journal
|
FinanceJournal=Finance journal
|
||||||
DescFinanceJournal=Finance journal including all the types of payments by bank account
|
DescFinanceJournal=Finance journal including all the types of payments by bank account
|
||||||
|
DescJournalOnlyBindedVisible=This is a view of records that are bound to products/services accountancy account and can be recorded into the General Ledger.
|
||||||
|
VATAccountNotDefined=Account for VAT not defined
|
||||||
|
ThirdpartyAccountNotDefined=Account for third party not defined
|
||||||
|
ProductAccountNotDefined=Account for product not defined
|
||||||
|
BankAccountNotDefined=Account for bank not defined
|
||||||
CustomerInvoicePayment=Payment of invoice customer
|
CustomerInvoicePayment=Payment of invoice customer
|
||||||
|
|
||||||
ThirdPartyAccount=Thirdparty account
|
ThirdPartyAccount=Thirdparty account
|
||||||
|
NewAccountingMvt=New transaction
|
||||||
NewAccountingMvt=New movement
|
NumMvts=Numero of transaction
|
||||||
NumMvts=Number of movement
|
ListeMvts=List of movements
|
||||||
ListeMvts=List of the movement
|
|
||||||
ErrorDebitCredit=Debit and Credit cannot have a value at the same time
|
ErrorDebitCredit=Debit and Credit cannot have a value at the same time
|
||||||
|
|
||||||
ReportThirdParty=List third party account
|
ReportThirdParty=List third party account
|
||||||
DescThirdPartyReport=Consult here the list of the thirdparty customers and the suppliers and their accounting accounts
|
DescThirdPartyReport=Consult here the list of the third party customers and suppliers and their accounting accounts
|
||||||
|
|
||||||
ListAccounts=List of the accounting accounts
|
ListAccounts=List of the accounting accounts
|
||||||
|
|
||||||
@ -114,22 +134,29 @@ Pcgtype=Class of account
|
|||||||
Pcgsubtype=Under class of account
|
Pcgsubtype=Under class of account
|
||||||
Accountparent=Root of the account
|
Accountparent=Root of the account
|
||||||
|
|
||||||
DescVentilCustomer=Consult here the annual breakdown accounting of your invoices customers
|
|
||||||
TotalVente=Total turnover before tax
|
TotalVente=Total turnover before tax
|
||||||
TotalMarge=Total sales margin
|
TotalMarge=Total sales margin
|
||||||
DescVentilDoneCustomer=Consult here the list of the lines of invoices customers and their accounting account
|
|
||||||
DescVentilTodoCustomer=Ventilate your lines of customer invoice with an accounting account
|
DescVentilCustomer=Consult here the list of customer invoice lines bound (or not) to a product accounting account
|
||||||
ChangeAccount=Change the accounting account for lines selected by the account:
|
DescVentilMore=In most cases, if you use predefined products or services and you set the account number on the product/service card, the application will be able to make all the binding between your invoice lines and the accounting account of your chart of accounts, just in one click with the button <strong>"%s"</strong>. If account was not set on product/service cards or if you still has some lines not bound to any account, you will have to make a manual binding from the menu "<strong>%s</strong>".
|
||||||
|
DescVentilDoneCustomer=Consult here the list of the lines of invoices customers and their product accounting account
|
||||||
|
DescVentilTodoCustomer=Bind invoice lines not already bound with a product accounting account
|
||||||
|
ChangeAccount=Change the product/service accounting account for selected lines with the following accounting account:
|
||||||
Vide=-
|
Vide=-
|
||||||
DescVentilSupplier=Consult here the annual breakdown accounting of your invoices suppliers
|
DescVentilSupplier=Consult here the list of supplier invoice lines bound or not yet bound to a product accounting account
|
||||||
DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier and their accounting account
|
DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier and their accounting account
|
||||||
|
|
||||||
ValidateHistory=Validate Automatically
|
ValidateHistory=Bind Automatically
|
||||||
|
AutomaticBindingDone=Automatic binding done
|
||||||
|
|
||||||
ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
|
ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
|
||||||
MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
|
MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
|
||||||
FicheVentilation=Breakdown card
|
FicheVentilation=Binding card
|
||||||
GeneralLedgerIsWritten=Operations are written in the general ledger
|
GeneralLedgerIsWritten=Operations are written in the general ledger
|
||||||
|
GeneralLedgerSomeRecordWasNotRecorded=Some of the transactions could not be recorded.
|
||||||
|
NoNewRecordSaved=No new record saved
|
||||||
|
ListOfProductsWithoutAccountingAccount=List of products not bound to any accounting account
|
||||||
|
ChangeBinding=Change the binding
|
||||||
|
|
||||||
## Admin
|
## Admin
|
||||||
ApplyMassCategories=Apply mass categories
|
ApplyMassCategories=Apply mass categories
|
||||||
@ -151,12 +178,14 @@ Modelcsv_cogilog=Export towards Cogilog
|
|||||||
|
|
||||||
## Tools - Init accounting account on product / service
|
## Tools - Init accounting account on product / service
|
||||||
InitAccountancy=Init accountancy
|
InitAccountancy=Init accountancy
|
||||||
InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
|
InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of chart of accounts is complete.
|
||||||
Options=Options
|
Options=Options
|
||||||
OptionModeProductSell=Mode sales
|
OptionModeProductSell=Mode sales
|
||||||
OptionModeProductBuy=Mode purchases
|
OptionModeProductBuy=Mode purchases
|
||||||
OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
|
OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
|
||||||
OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
|
OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
|
||||||
|
CleanFixHistory=Remove accountancy code from lines that not exists into charts of account
|
||||||
|
CleanHistory=Reset all bindings for selected year
|
||||||
|
|
||||||
## Dictionary
|
## Dictionary
|
||||||
Range=Range of accounting account
|
Range=Range of accounting account
|
||||||
@ -167,3 +196,9 @@ Formula=Formula
|
|||||||
ErrorNoAccountingCategoryForThisCountry=No accounting category are available for this country
|
ErrorNoAccountingCategoryForThisCountry=No accounting category are available for this country
|
||||||
ExportNotSupported=The export format setuped is not supported into this page
|
ExportNotSupported=The export format setuped is not supported into this page
|
||||||
BookeppingLineAlreayExists=Lines already existing into bookeeping
|
BookeppingLineAlreayExists=Lines already existing into bookeeping
|
||||||
|
|
||||||
|
Binded=Lines bound
|
||||||
|
ToBind=Lines to bind
|
||||||
|
|
||||||
|
WarningReportNotReliable=Warning, this report is not based on the General Ledger, so is not reliable yet. It will be replaced by a correct report in a next version.
|
||||||
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user