Merge branch 'develop' of https://github.com/Dolibarr/dolibarr.git into develop
This commit is contained in:
commit
0e72e8492e
@ -189,6 +189,10 @@ if ($action == 'add') {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($array_query['type_of_target'] == 2 || $array_query['type_of_target'] == 4) {
|
||||||
|
$user_contact_query = true;
|
||||||
|
}
|
||||||
|
|
||||||
if (preg_match("/^type_of_target/", $key)) {
|
if (preg_match("/^type_of_target/", $key)) {
|
||||||
$array_query[$key] = GETPOST($key);
|
$array_query[$key] = GETPOST($key);
|
||||||
}
|
}
|
||||||
@ -203,8 +207,8 @@ if ($action == 'add') {
|
|||||||
$advTarget->thirdparty_lines = array ();
|
$advTarget->thirdparty_lines = array ();
|
||||||
}*/
|
}*/
|
||||||
|
|
||||||
if ($user_contact_query && ($array_query['type_of_target'] == 1 || $array_query['type_of_target'] == 2)) {
|
if ($user_contact_query && ($array_query['type_of_target'] == 1 || $array_query['type_of_target'] == 2 || $array_query['type_of_target'] == 4)) {
|
||||||
$result = $advTarget->query_contact($array_query);
|
$result = $advTarget->query_contact($array_query, 1);
|
||||||
if ($result < 0) {
|
if ($result < 0) {
|
||||||
setEventMessage($advTarget->error, 'errors');
|
setEventMessage($advTarget->error, 'errors');
|
||||||
}
|
}
|
||||||
@ -889,6 +893,11 @@ if ($object->fetch($id) >= 0) {
|
|||||||
dol_include_once('/core/class/extrafields.class.php');
|
dol_include_once('/core/class/extrafields.class.php');
|
||||||
$extrafields = new ExtraFields($db);
|
$extrafields = new ExtraFields($db);
|
||||||
$extralabels = $extrafields->fetch_name_optionals_label('socpeople');
|
$extralabels = $extrafields->fetch_name_optionals_label('socpeople');
|
||||||
|
foreach($extrafields->attribute_type as $key=>&$value) {
|
||||||
|
if($value == 'radio')$value = 'select';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
foreach ( $extralabels as $key => $val ) {
|
foreach ( $extralabels as $key => $val ) {
|
||||||
|
|
||||||
print '<tr><td>' . $extrafields->attribute_label[$key];
|
print '<tr><td>' . $extrafields->attribute_label[$key];
|
||||||
@ -900,8 +909,8 @@ if ($object->fetch($id) >= 0) {
|
|||||||
print '<input type="text" name="options_' . $key . '_cnct"/></td><td>' . "\n";
|
print '<input type="text" name="options_' . $key . '_cnct"/></td><td>' . "\n";
|
||||||
print $form->textwithpicto('', $langs->trans("AdvTgtSearchTextHelp"), 1, 'help');
|
print $form->textwithpicto('', $langs->trans("AdvTgtSearchTextHelp"), 1, 'help');
|
||||||
} elseif (($extrafields->attribute_type[$key] == 'int') || ($extrafields->attribute_type[$key] == 'double')) {
|
} elseif (($extrafields->attribute_type[$key] == 'int') || ($extrafields->attribute_type[$key] == 'double')) {
|
||||||
print $langs->trans("AdvTgtMinVal") . '<input type="text" name="options' . $key . '_min_cnct"/>';
|
print $langs->trans("AdvTgtMinVal") . '<input type="text" name="options_' . $key . '_min_cnct"/>';
|
||||||
print $langs->trans("AdvTgtMaxVal") . '<input type="text" name="options' . $key . '_max_cnct"/>';
|
print $langs->trans("AdvTgtMaxVal") . '<input type="text" name="options_' . $key . '_max_cnct"/>';
|
||||||
print '</td><td>' . "\n";
|
print '</td><td>' . "\n";
|
||||||
print $form->textwithpicto('', $langs->trans("AdvTgtSearchIntHelp"), 1, 'help');
|
print $form->textwithpicto('', $langs->trans("AdvTgtSearchIntHelp"), 1, 'help');
|
||||||
} elseif (($extrafields->attribute_type[$key] == 'date') || ($extrafields->attribute_type[$key] == 'datetime')) {
|
} elseif (($extrafields->attribute_type[$key] == 'date') || ($extrafields->attribute_type[$key] == 'datetime')) {
|
||||||
@ -967,12 +976,6 @@ if ($object->fetch($id) >= 0) {
|
|||||||
print '</form>';
|
print '</form>';
|
||||||
print '<br>';
|
print '<br>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (empty($conf->mailchimp->enabled) || (! empty($conf->mailchimp->enabled) && $object->statut != 3))
|
|
||||||
{
|
|
||||||
// List of recipients (TODO Move code of page cibles.php into a .tpl.php file and make an include here to avoid duplicate content)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
llxFooter();
|
llxFooter();
|
||||||
|
|||||||
@ -64,16 +64,19 @@ class AdvanceTargetingMailing extends CommonObject
|
|||||||
|
|
||||||
$this->db = $db;
|
$this->db = $db;
|
||||||
|
|
||||||
$this->select_target_type = array('2'=>$langs->trans('Contacts'),'1'=>$langs->trans('Contacts').'+'.$langs->trans('ThirdParty'),
|
$this->select_target_type = array(
|
||||||
'3'=>$langs->trans('ThirdParty'),
|
'2' => $langs->trans('Contacts'),
|
||||||
);
|
'1' => $langs->trans('Contacts') . '+' . $langs->trans('ThirdParty'),
|
||||||
$this->type_statuscommprospect=array(
|
'3' => $langs->trans('ThirdParty'),
|
||||||
-1=>$langs->trans("StatusProspect-1"),
|
'4' => $langs->trans('ContactsWithThirdpartyFilter')
|
||||||
0=>$langs->trans("StatusProspect0"),
|
);
|
||||||
1=>$langs->trans("StatusProspect1"),
|
$this->type_statuscommprospect = array(
|
||||||
2=>$langs->trans("StatusProspect2"),
|
- 1 => $langs->trans("StatusProspect-1"),
|
||||||
3=>$langs->trans("StatusProspect3"));
|
0 => $langs->trans("StatusProspect0"),
|
||||||
|
1 => $langs->trans("StatusProspect1"),
|
||||||
|
2 => $langs->trans("StatusProspect2"),
|
||||||
|
3 => $langs->trans("StatusProspect3")
|
||||||
|
);
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -492,7 +495,7 @@ class AdvanceTargetingMailing extends CommonObject
|
|||||||
}
|
}
|
||||||
if (!empty($arrayquery['cust_mothercompany'])) {
|
if (!empty($arrayquery['cust_mothercompany'])) {
|
||||||
$str=$this->transformToSQL('nom',$arrayquery['cust_mothercompany']);
|
$str=$this->transformToSQL('nom',$arrayquery['cust_mothercompany']);
|
||||||
$sqlwhere[]= " (t.parent IN (SELECT rowid FROM " . MAIN_DB_PREFIX . "societe WHERE ('.$str.')))";
|
$sqlwhere[]= " (t.parent IN (SELECT rowid FROM " . MAIN_DB_PREFIX . "societe WHERE (".$str.")))";
|
||||||
}
|
}
|
||||||
if (!empty($arrayquery['cust_status']) && count($arrayquery['cust_status'])>0) {
|
if (!empty($arrayquery['cust_status']) && count($arrayquery['cust_status'])>0) {
|
||||||
$sqlwhere[]= " (t.status IN (".implode(',',$arrayquery['cust_status'])."))";
|
$sqlwhere[]= " (t.status IN (".implode(',',$arrayquery['cust_status'])."))";
|
||||||
@ -603,9 +606,10 @@ class AdvanceTargetingMailing extends CommonObject
|
|||||||
* Load object in memory from database
|
* Load object in memory from database
|
||||||
*
|
*
|
||||||
* @param array $arrayquery All element to Query
|
* @param array $arrayquery All element to Query
|
||||||
|
* @param int $withThirdpartyFilter add contact with tridparty filter
|
||||||
* @return int <0 if KO, >0 if OK
|
* @return int <0 if KO, >0 if OK
|
||||||
*/
|
*/
|
||||||
function query_contact($arrayquery)
|
function query_contact($arrayquery, $withThirdpartyFilter = 0)
|
||||||
{
|
{
|
||||||
global $langs,$conf;
|
global $langs,$conf;
|
||||||
|
|
||||||
@ -614,6 +618,11 @@ class AdvanceTargetingMailing extends CommonObject
|
|||||||
$sql.= " FROM " . MAIN_DB_PREFIX . "socpeople as t";
|
$sql.= " FROM " . MAIN_DB_PREFIX . "socpeople as t";
|
||||||
$sql.= " LEFT OUTER JOIN " . MAIN_DB_PREFIX . "socpeople_extrafields as te ON te.fk_object=t.rowid ";
|
$sql.= " LEFT OUTER JOIN " . MAIN_DB_PREFIX . "socpeople_extrafields as te ON te.fk_object=t.rowid ";
|
||||||
|
|
||||||
|
if (! empty($withThirdpartyFilter)) {
|
||||||
|
$sql .= " LEFT OUTER JOIN " . MAIN_DB_PREFIX . "societe as ts ON ts.rowid=t.fk_soc";
|
||||||
|
$sql .= " LEFT OUTER JOIN " . MAIN_DB_PREFIX . "societe_extrafields as tse ON tse.fk_object=ts.rowid ";
|
||||||
|
}
|
||||||
|
|
||||||
$sqlwhere=array();
|
$sqlwhere=array();
|
||||||
|
|
||||||
$sqlwhere[]= 't.entity IN ('.getEntity('socpeople',1).')';
|
$sqlwhere[]= 't.entity IN ('.getEntity('socpeople',1).')';
|
||||||
@ -694,14 +703,107 @@ class AdvanceTargetingMailing extends CommonObject
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (! empty($withThirdpartyFilter)) {
|
||||||
|
if (array_key_exists('cust_saleman', $arrayquery)) {
|
||||||
|
$sql.= " LEFT OUTER JOIN " . MAIN_DB_PREFIX . "societe_commerciaux as saleman ON saleman.fk_soc=ts.rowid ";
|
||||||
|
}
|
||||||
|
if (array_key_exists('cust_categ', $arrayquery)) {
|
||||||
|
$sql.= " LEFT OUTER JOIN " . MAIN_DB_PREFIX . "categorie_societe as custcateg ON custcateg.fk_soc=ts.rowid ";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!empty($arrayquery['cust_name'])) {
|
||||||
|
|
||||||
|
$sqlwhere[]= $this->transformToSQL('ts.nom',$arrayquery['cust_name']);
|
||||||
|
}
|
||||||
|
if (!empty($arrayquery['cust_code'])) {
|
||||||
|
$sqlwhere[]= $this->transformToSQL('ts.code_client',$arrayquery['cust_code']);
|
||||||
|
}
|
||||||
|
if (!empty($arrayquery['cust_adress'])) {
|
||||||
|
$sqlwhere[]= $this->transformToSQL('ts.address',$arrayquery['cust_adress']);
|
||||||
|
}
|
||||||
|
if (!empty($arrayquery['cust_zip'])) {
|
||||||
|
$sqlwhere[]= $this->transformToSQL('ts.zip',$arrayquery['cust_zip']);
|
||||||
|
}
|
||||||
|
if (!empty($arrayquery['cust_city'])) {
|
||||||
|
$sqlwhere[]= $this->transformToSQL('ts.town',$arrayquery['cust_city']);
|
||||||
|
}
|
||||||
|
if (!empty($arrayquery['cust_mothercompany'])) {
|
||||||
|
$str=$this->transformToSQL('nom',$arrayquery['cust_mothercompany']);
|
||||||
|
$sqlwhere[]= " (ts.parent IN (SELECT rowid FROM " . MAIN_DB_PREFIX . "societe WHERE (".$str.")))";
|
||||||
|
}
|
||||||
|
if (!empty($arrayquery['cust_status']) && count($arrayquery['cust_status'])>0) {
|
||||||
|
$sqlwhere[]= " (ts.status IN (".implode(',',$arrayquery['cust_status'])."))";
|
||||||
|
}
|
||||||
|
if (!empty($arrayquery['cust_typecust']) && count($arrayquery['cust_typecust'])>0) {
|
||||||
|
$sqlwhere[]= " (ts.client IN (".implode(',',$arrayquery['cust_typecust'])."))";
|
||||||
|
}
|
||||||
|
if (!empty($arrayquery['cust_comm_status']) && count($arrayquery['cust_comm_status']>0)) {
|
||||||
|
$sqlwhere[]= " (ts.fk_stcomm IN (".implode(',',$arrayquery['cust_comm_status'])."))";
|
||||||
|
}
|
||||||
|
if (!empty($arrayquery['cust_prospect_status']) && count($arrayquery['cust_prospect_status'])>0) {
|
||||||
|
$sqlwhere[]= " (ts.fk_prospectlevel IN ('".implode("','",$arrayquery['cust_prospect_status'])."'))";
|
||||||
|
}
|
||||||
|
if (!empty($arrayquery['cust_typeent']) && count($arrayquery['cust_typeent'])>0) {
|
||||||
|
$sqlwhere[]= " (ts.fk_typent IN (".implode(',',$arrayquery['cust_typeent'])."))";
|
||||||
|
}
|
||||||
|
if (!empty($arrayquery['cust_saleman']) && count($arrayquery['cust_saleman'])>0) {
|
||||||
|
$sqlwhere[]= " (saleman.fk_user IN (".implode(',',$arrayquery['cust_saleman'])."))";
|
||||||
|
}
|
||||||
|
if (!empty($arrayquery['cust_country']) && count($arrayquery['cust_country'])>0) {
|
||||||
|
$sqlwhere[]= " (ts.fk_pays IN (".implode(',',$arrayquery['cust_country'])."))";
|
||||||
|
}
|
||||||
|
if (!empty($arrayquery['cust_effectif_id']) && count($arrayquery['cust_effectif_id'])>0) {
|
||||||
|
$sqlwhere[]= " (ts.fk_effectif IN (".implode(',',$arrayquery['cust_effectif_id'])."))";
|
||||||
|
}
|
||||||
|
if (!empty($arrayquery['cust_categ']) && count($arrayquery['cust_categ'])>0) {
|
||||||
|
$sqlwhere[]= " (custcateg.fk_categorie IN (".implode(',',$arrayquery['cust_categ'])."))";
|
||||||
|
}
|
||||||
|
if (!empty($arrayquery['cust_language']) && count($arrayquery['cust_language'])>0) {
|
||||||
|
$sqlwhere[]= " (ts.default_lang IN ('".implode("','",$arrayquery['cust_language'])."'))";
|
||||||
|
}
|
||||||
|
|
||||||
|
//Standard Extrafield feature
|
||||||
|
if (empty($conf->global->MAIN_EXTRAFIELDS_DISABLED)) {
|
||||||
|
// fetch optionals attributes and labels
|
||||||
|
dol_include_once('/core/class/extrafields.class.php');
|
||||||
|
$extrafields = new ExtraFields($this->db);
|
||||||
|
$extralabels=$extrafields->fetch_name_optionals_label('societe');
|
||||||
|
|
||||||
|
foreach($extralabels as $key=>$val) {
|
||||||
|
|
||||||
|
if (($extrafields->attribute_type[$key] == 'varchar') ||
|
||||||
|
($extrafields->attribute_type[$key] == 'text')) {
|
||||||
|
if (!empty($arrayquery['options_'.$key])) {
|
||||||
|
$sqlwhere[]= " (tse.".$key." LIKE '".$arrayquery['options_'.$key]."')";
|
||||||
|
}
|
||||||
|
} elseif (($extrafields->attribute_type[$key] == 'int') ||
|
||||||
|
($extrafields->attribute_type[$key] == 'double')) {
|
||||||
|
if (!empty($arrayquery['options_'.$key.'_max'])) {
|
||||||
|
$sqlwhere[]= " (tse.".$key." >= ".$arrayquery['options_'.$key.'_max']." AND tse.".$key." <= ".$arrayquery['options_'.$key.'_min'].")";
|
||||||
|
}
|
||||||
|
} else if (($extrafields->attribute_type[$key] == 'date') ||
|
||||||
|
($extrafields->attribute_type[$key] == 'datetime')) {
|
||||||
|
if (!empty($arrayquery['options_'.$key.'_end_dt'])){
|
||||||
|
$sqlwhere[]= " (tse.".$key." >= '".$this->db->idate($arrayquery['options_'.$key.'_st_dt'])."' AND tse.".$key." <= '".$this->db->idate($arrayquery['options_'.$key.'_end_dt'])."')";
|
||||||
|
}
|
||||||
|
}else if ($extrafields->attribute_type[$key] == 'boolean') {
|
||||||
|
if ($arrayquery['options_'.$key]!=''){
|
||||||
|
$sqlwhere[]= " (tse.".$key." = ".$arrayquery['options_'.$key].")";
|
||||||
|
}
|
||||||
|
}else{
|
||||||
|
if (is_array($arrayquery['options_'.$key])) {
|
||||||
|
$sqlwhere[]= " (tse.".$key." IN ('".implode("','",$arrayquery['options_'.$key])."'))";
|
||||||
|
} elseif (!empty($arrayquery['options_'.$key])) {
|
||||||
|
$sqlwhere[]= " (tse.".$key." LIKE '".$arrayquery['options_'.$key]."')";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (count($sqlwhere)>0) $sql.= " WHERE ".implode(" AND ",$sqlwhere);
|
if (count($sqlwhere)>0) $sql.= " WHERE ".implode(" AND ",$sqlwhere);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
dol_syslog(get_class($this) . "::query_contact sql=" . $sql, LOG_DEBUG);
|
dol_syslog(get_class($this) . "::query_contact sql=" . $sql, LOG_DEBUG);
|
||||||
$resql = $this->db->query($sql);
|
$resql = $this->db->query($sql);
|
||||||
if ($resql) {
|
if ($resql) {
|
||||||
|
|||||||
@ -45,16 +45,16 @@ function emailing_prepare_head(Mailing $object)
|
|||||||
$head[$h][1] = $langs->trans("MailRecipients");
|
$head[$h][1] = $langs->trans("MailRecipients");
|
||||||
if ($object->nbemail > 0) $head[$h][1].= ' <span class="badge">'.$object->nbemail.'</span>';
|
if ($object->nbemail > 0) $head[$h][1].= ' <span class="badge">'.$object->nbemail.'</span>';
|
||||||
$head[$h][2] = 'targets';
|
$head[$h][2] = 'targets';
|
||||||
|
|
||||||
$h++;
|
$h++;
|
||||||
|
|
||||||
if (! empty($conf->global->EMAILING_USE_ADVANCED_SELECTOR))
|
}
|
||||||
{
|
|
||||||
$head[$h][0] = DOL_URL_ROOT."/comm/mailing/advtargetemailing.php?id=".$object->id;
|
if (! empty($conf->global->EMAILING_USE_ADVANCED_SELECTOR))
|
||||||
$head[$h][1] = $langs->trans("MailAdvTargetRecipients");
|
{
|
||||||
$head[$h][2] = 'advtargets';
|
$head[$h][0] = DOL_URL_ROOT."/comm/mailing/advtargetemailing.php?id=".$object->id;
|
||||||
$h++;
|
$head[$h][1] = $langs->trans("MailAdvTargetRecipients");
|
||||||
}
|
$head[$h][2] = 'advtargets';
|
||||||
|
$h++;
|
||||||
}
|
}
|
||||||
|
|
||||||
$head[$h][0] = DOL_URL_ROOT."/comm/mailing/info.php?id=".$object->id;
|
$head[$h][0] = DOL_URL_ROOT."/comm/mailing/info.php?id=".$object->id;
|
||||||
|
|||||||
@ -507,9 +507,8 @@ function detect_dolibarr_main_document_root()
|
|||||||
{
|
{
|
||||||
// If PHP is in CGI mode, SCRIPT_FILENAME is PHP's path.
|
// If PHP is in CGI mode, SCRIPT_FILENAME is PHP's path.
|
||||||
// Since that's not what we want, we suggest $_SERVER["DOCUMENT_ROOT"]
|
// Since that's not what we want, we suggest $_SERVER["DOCUMENT_ROOT"]
|
||||||
if (preg_match('/php$/i', $_SERVER["SCRIPT_FILENAME"]) || preg_match('/[\\/]php$/i',
|
if ($_SERVER["SCRIPT_FILENAME"] == 'php' || preg_match('/[\\/]php$/i', $_SERVER["SCRIPT_FILENAME"]) || preg_match('/php\.exe$/i', $_SERVER["SCRIPT_FILENAME"]))
|
||||||
$_SERVER["SCRIPT_FILENAME"]) || preg_match('/php\.exe$/i', $_SERVER["SCRIPT_FILENAME"])
|
{
|
||||||
) {
|
|
||||||
$dolibarr_main_document_root = $_SERVER["DOCUMENT_ROOT"];
|
$dolibarr_main_document_root = $_SERVER["DOCUMENT_ROOT"];
|
||||||
|
|
||||||
if (!preg_match('/[\\/]dolibarr[\\/]htdocs$/i', $dolibarr_main_document_root)) {
|
if (!preg_match('/[\\/]dolibarr[\\/]htdocs$/i', $dolibarr_main_document_root)) {
|
||||||
|
|||||||
@ -8,60 +8,90 @@ ACCOUNTING_EXPORT_AMOUNT=Export amount
|
|||||||
ACCOUNTING_EXPORT_DEVISE=Export currency
|
ACCOUNTING_EXPORT_DEVISE=Export currency
|
||||||
Selectformat=حدد تنسيق للملف
|
Selectformat=حدد تنسيق للملف
|
||||||
ACCOUNTING_EXPORT_PREFIX_SPEC=تحديد بادئة لاسم الملف
|
ACCOUNTING_EXPORT_PREFIX_SPEC=تحديد بادئة لاسم الملف
|
||||||
|
ThisService=This service
|
||||||
|
ThisProduct=This product
|
||||||
|
DefaultForService=Default for service
|
||||||
|
DefaultForProduct=Default for product
|
||||||
|
CantSuggest=Can't suggest
|
||||||
|
AccountancySetupDoneFromAccountancyMenu=Most setup of the accountancy is done from the menu %s
|
||||||
ConfigAccountingExpert=إعدادات وحدة الخبير المحاسبي
|
ConfigAccountingExpert=إعدادات وحدة الخبير المحاسبي
|
||||||
|
Journalization=Journalization
|
||||||
Journaux=دفاتر اليومية
|
Journaux=دفاتر اليومية
|
||||||
JournalFinancial=دفاتر اليومية المالية
|
JournalFinancial=دفاتر اليومية المالية
|
||||||
BackToChartofaccounts=العودة لشجرة الحسابات
|
BackToChartofaccounts=العودة لشجرة الحسابات
|
||||||
|
Chartofaccounts=جدول الحسابات
|
||||||
|
CurrentDedicatedAccountingAccount=Current dedicated account
|
||||||
|
AssignDedicatedAccountingAccount=New account to assign
|
||||||
|
InvoiceLabel=Invoice label
|
||||||
|
OverviewOfAmountOfLinesNotBound=Overview of amount of lines not bound to accounting account
|
||||||
|
OverviewOfAmountOfLinesBound=Overview of amount of lines already bound to accounting account
|
||||||
|
OtherInfo=Other information
|
||||||
|
|
||||||
AccountancyArea=Accountancy area
|
AccountancyArea=Accountancy area
|
||||||
AccountancyAreaDescIntro=Usage of the accountancy module is done in several step:
|
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...
|
AccountancyAreaDescActionOnce=The following actions are usually executed one time only, or once per year...
|
||||||
|
AccountancyAreaDescActionOnceBis=Next steps should be done to save you time in future by suggesting you the correct default accounting account when making thee journalization (writing record in Journals and General ledger)
|
||||||
AccountancyAreaDescActionFreq=The following actions are usually executed every month, week or day for very large companies...
|
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
|
AccountancyAreaDescChartModel=STEP %s: Create a model of 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.
|
AccountancyAreaDescChart=STEP %s: Create or check content of your chart of account from menu %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.
|
AccountancyAreaDescBank=STEP %s: Check the binding between bank accounts and accounting account is done. Complete missing bindings. 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.
|
AccountancyAreaDescVat=STEP %s: Check the binding between vat rates and accounting account is done. Complete missing bindings. 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.
|
AccountancyAreaDescExpenseReport=STEP %s: Check the binding between type of expense report and accounting account is done. Complete missing bindings. You can set accounting accounts to use for each VAT from page %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.
|
AccountancyAreaDescSal=STEP %s: Check the binding between salaries payment and accounting account is done. Complete missing bindings. 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.
|
AccountancyAreaDescContrib=STEP %s: Check the binding between special expences (miscellaneous taxes) and accounting account is done. Complete missing bindings. 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. You can set the account dedicated for that from the menu entry %s.
|
||||||
|
AccountancyAreaDescMisc=STEP %s: Check the default binding between miscellaneous transaction lines and accounting account is done. Complete missing bindings. For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescProd=STEP %s: Check the binding between products/services and accounting account is done. Complete missing bindings. For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescLoan=STEP %s: Check the binding between loans payment and accounting account is done. Complete missing bindings. For this you can use 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.
|
AccountancyAreaDescCustomer=STEP %s: Check the binding between existing customer invoice lines and accounting account is done, so application will be able to journalize transactions in General Ledger in one click. Complete missing bindings. 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.
|
AccountancyAreaDescSupplier=STEP %s: Check the binding between existing supplier invoice lines and accounting account is done, so application will be able to journalize transactions in General Ledger in one click. Complete missing bindings. 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
|
AccountancyAreaDescWriteRecords=STEP %s: Write transactions into the General Ledger. For this, go into each Journal, and click into button "Journalize transactions in General Ledger".
|
||||||
|
AccountancyAreaDescAnalyze=STEP %s: Add or edit existing transactions and generate reports and exports.
|
||||||
|
|
||||||
Selectchartofaccounts=اختر شجرة الحسابات
|
AccountancyAreaDescClosePeriod=STEP %s: Close period so we can't make modification in a future.
|
||||||
|
|
||||||
|
MenuAccountancy=المحاسبة
|
||||||
|
Selectchartofaccounts=Select active chart of accounts
|
||||||
|
ChangeAndLoad=Change and load
|
||||||
Addanaccount=إضافة حساب محاسبي
|
Addanaccount=إضافة حساب محاسبي
|
||||||
AccountAccounting=حساب محاسبي
|
AccountAccounting=حساب محاسبي
|
||||||
AccountAccountingShort=Account
|
AccountAccountingShort=حساب
|
||||||
AccountAccountingSuggest=اقتراح حساب محاسبي
|
AccountAccountingSuggest=Accounting account suggested
|
||||||
|
MenuDefaultAccounts=Default accounts
|
||||||
|
MenuVatAccounts=Vat accounts
|
||||||
|
MenuTaxAccounts=Tax accounts
|
||||||
|
MenuExpenseReportAccounts=Expense report accounts
|
||||||
|
MenuLoanAccounts=Loan accounts
|
||||||
|
MenuProductsAccounts=Product accounts
|
||||||
|
ProductsBinding=Products accounts
|
||||||
Ventilation=Binding to accounts
|
Ventilation=Binding to accounts
|
||||||
ProductsBinding=Products bindings
|
|
||||||
|
|
||||||
MenuAccountancy=Accountancy
|
|
||||||
CustomersVentilation=Customer invoice binding
|
CustomersVentilation=Customer invoice binding
|
||||||
SuppliersVentilation=Supplier invoice binding
|
SuppliersVentilation=Supplier invoice binding
|
||||||
Reports=تقارير
|
ExpenseReportsVentilation=Expense report binding
|
||||||
NewAccount=حساب محاسبي جديد
|
|
||||||
Create=إنشاء
|
|
||||||
CreateMvts=Create new transaction
|
CreateMvts=Create new transaction
|
||||||
UpdateMvts=Modification of a transaction
|
UpdateMvts=Modification of a transaction
|
||||||
WriteBookKeeping=Record operations in General Ledger
|
WriteBookKeeping=Journalize transactions in General Ledger
|
||||||
Bookkeeping=دفتر الأستاذ العام
|
Bookkeeping=دفتر الأستاذ العام
|
||||||
AccountBalance=Account balance
|
AccountBalance=Account balance
|
||||||
|
|
||||||
CAHTF=إجمالي شراء المورد قبل الضريبة
|
CAHTF=إجمالي شراء المورد قبل الضريبة
|
||||||
|
TotalExpenseReport=Total expense report
|
||||||
InvoiceLines=Lines of invoices to bind
|
InvoiceLines=Lines of invoices to bind
|
||||||
InvoiceLinesDone=Bound lines of invoices
|
InvoiceLinesDone=Bound lines of invoices
|
||||||
|
ExpenseReportLines=Lines of expense reports to bind
|
||||||
|
ExpenseReportLinesDone=Bound lines of expense reports
|
||||||
IntoAccount=Bind line with the accounting account
|
IntoAccount=Bind line with the accounting account
|
||||||
|
|
||||||
Ventilate=Bind
|
|
||||||
|
|
||||||
|
Ventilate=Bind
|
||||||
|
LineId=Id line
|
||||||
Processing=معالجة
|
Processing=معالجة
|
||||||
EndProcessing=نهاية المعالجة
|
EndProcessing=Process terminated.
|
||||||
AnyLineVentilate=Any lines to bind
|
|
||||||
SelectedLines=الخطوط المحددة
|
SelectedLines=الخطوط المحددة
|
||||||
Lineofinvoice=خط الفاتورة
|
Lineofinvoice=خط الفاتورة
|
||||||
|
LineOfExpenseReport=Line of expense report
|
||||||
|
NoAccountSelected=No accounting account selected
|
||||||
VentilatedinAccount=Binded successfully to the accounting account
|
VentilatedinAccount=Binded successfully to the accounting account
|
||||||
NotVentilatedinAccount=Not bound to the accounting account
|
NotVentilatedinAccount=Not bound to the accounting account
|
||||||
XLineSuccessfullyBinded=%s products/services successfuly bound to an accounting account
|
XLineSuccessfullyBinded=%s products/services successfuly bound to an accounting account
|
||||||
@ -71,12 +101,12 @@ ACCOUNTING_LIMIT_LIST_VENTILATION=Number of elements to bind shown by page (maxi
|
|||||||
ACCOUNTING_LIST_SORT_VENTILATION_TODO=Begin the sorting of the page "Binding to do" 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 page "Binding done" 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=الطول المستخدم لعرض وصف المنتجات والخدمات في القوائم. (المفضل = 50)
|
ACCOUNTING_LENGTH_DESCRIPTION=Truncate product & services description in listings after x chars (Best = 50)
|
||||||
ACCOUNTING_LENGTH_DESCRIPTION_ACCOUNT=الطول المستخدم لعرض وصف نماذج المنتجات والخدمات في القوائم. (المفضل = 50)
|
ACCOUNTING_LENGTH_DESCRIPTION_ACCOUNT=Truncate product & services account description form in listings after x chars (Best = 50)
|
||||||
ACCOUNTING_LENGTH_GACCOUNT=Length of the general accounting accounts
|
ACCOUNTING_LENGTH_GACCOUNT=Length of the general accounting accounts
|
||||||
ACCOUNTING_LENGTH_AACCOUNT=Length of the third party accounting 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".
|
ACCOUNTING_MANAGE_ZERO=Manage the zero at the end of an accounting account. Needed by some countries. Disabled by default. If set to on, you must also set the 2 following parameters (or it is ignored)
|
||||||
BANK_DISABLE_DIRECT_INPUT=Disable free input of bank transactions (Enabled by default with this module).
|
BANK_DISABLE_DIRECT_INPUT=Disable direct recording of transaction in bank account
|
||||||
|
|
||||||
ACCOUNTING_SELL_JOURNAL=دفتر البيع اليومي
|
ACCOUNTING_SELL_JOURNAL=دفتر البيع اليومي
|
||||||
ACCOUNTING_PURCHASE_JOURNAL=دفتر الشراء اليومي
|
ACCOUNTING_PURCHASE_JOURNAL=دفتر الشراء اليومي
|
||||||
@ -84,39 +114,41 @@ ACCOUNTING_MISCELLANEOUS_JOURNAL=دفتر المتفرقات اليومي
|
|||||||
ACCOUNTING_EXPENSEREPORT_JOURNAL=دفتر تقرير المصروف اليومي
|
ACCOUNTING_EXPENSEREPORT_JOURNAL=دفتر تقرير المصروف اليومي
|
||||||
ACCOUNTING_SOCIAL_JOURNAL=دفتر اليومية الاجتماعي
|
ACCOUNTING_SOCIAL_JOURNAL=دفتر اليومية الاجتماعي
|
||||||
|
|
||||||
ACCOUNTING_ACCOUNT_TRANSFER_CASH=حساب التحويلات
|
ACCOUNTING_ACCOUNT_TRANSFER_CASH=Accounting account of transfer
|
||||||
ACCOUNTING_ACCOUNT_SUSPENSE=حساب الإنتظار
|
ACCOUNTING_ACCOUNT_SUSPENSE=Accounting account of wait
|
||||||
DONATION_ACCOUNTINGACCOUNT=Account to register donations
|
DONATION_ACCOUNTINGACCOUNT=Accounting account to register donations
|
||||||
|
|
||||||
ACCOUNTING_PRODUCT_BUY_ACCOUNT=الحساب المحاسبي الافتراضي للمنتجات المشتراة (اذا لم يكن معرف في ورقة المنتج)
|
ACCOUNTING_PRODUCT_BUY_ACCOUNT=Accounting account by default for bought products (used if not defined in the product sheet)
|
||||||
ACCOUNTING_PRODUCT_SOLD_ACCOUNT=الحساب المحاسبي الافتراضي للمنتجات المباعة(اذا لم يكن معرف في ورقة المنتج)
|
ACCOUNTING_PRODUCT_SOLD_ACCOUNT=Accounting account by default for the sold products (used if not defined in the product sheet)
|
||||||
ACCOUNTING_SERVICE_BUY_ACCOUNT=الحساب المحاسبي الافتراضي للخدمات المشتراة (اذا لم يكن معرف في ورقة الخدمة)
|
ACCOUNTING_SERVICE_BUY_ACCOUNT=Accounting account by default for the bought services (used if not defined in the service sheet)
|
||||||
ACCOUNTING_SERVICE_SOLD_ACCOUNT=الحساب المحاسبي الافتراضي للخدمات المباعة(اذا لم يكن معرف في ورقة الخدمة)
|
ACCOUNTING_SERVICE_SOLD_ACCOUNT=Accounting account by default for the sold services (used if not defined in the service sheet)
|
||||||
|
|
||||||
Doctype=نوع الوثيقة
|
Doctype=نوع الوثيقة
|
||||||
Docdate=التاريخ
|
Docdate=التاريخ
|
||||||
Docref=مرجع
|
Docref=مرجع
|
||||||
Code_tiers=الطرف الثالث
|
Code_tiers=الطرف الثالث
|
||||||
Labelcompte=حساب التسمية
|
Labelcompte=حساب التسمية
|
||||||
Sens=Sens
|
Sens=السيناتور
|
||||||
Codejournal=دفتر اليومية
|
Codejournal=دفتر اليومية
|
||||||
NumPiece=Piece number
|
NumPiece=Piece number
|
||||||
|
TransactionNumShort=Num. transaction
|
||||||
AccountingCategory=Accounting category
|
AccountingCategory=Accounting category
|
||||||
|
GroupByAccountAccounting=Group by accounting account
|
||||||
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 lines 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 specific journal. At least one criteria is required.
|
||||||
ConfirmDeleteMvtPartial=This will delete the selected line(s) of the general ledger
|
ConfirmDeleteMvtPartial=This will delete the selected line(s) of the general ledger
|
||||||
DelBookKeeping=حذف السجلات من دفتر الأستاذ العام
|
DelBookKeeping=Delete record of the general ledger
|
||||||
DescSellsJournal=دفتر المبيعات اليومية
|
|
||||||
DescPurchasesJournal=دفتر المشتريات اليومية
|
|
||||||
FinanceJournal=دفتر المالية اليومي
|
FinanceJournal=دفتر المالية اليومي
|
||||||
|
ExpenseReportsJournal=Expense reports journal
|
||||||
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.
|
DescJournalOnlyBindedVisible=This is a view of record that are bound to products/services accountancy account and can be recorded into the General Ledger.
|
||||||
VATAccountNotDefined=Account for VAT not defined
|
VATAccountNotDefined=Account for VAT not defined
|
||||||
ThirdpartyAccountNotDefined=Account for third party not defined
|
ThirdpartyAccountNotDefined=Account for third party not defined
|
||||||
ProductAccountNotDefined=Account for product not defined
|
ProductAccountNotDefined=Account for product not defined
|
||||||
|
FeeAccountNotDefined=Account for fee not defined
|
||||||
BankAccountNotDefined=Account for bank not defined
|
BankAccountNotDefined=Account for bank not defined
|
||||||
CustomerInvoicePayment=دفعة فاتورة العميل
|
CustomerInvoicePayment=دفعة فاتورة العميل
|
||||||
ThirdPartyAccount=حساب طرف ثالث
|
ThirdPartyAccount=حساب طرف ثالث
|
||||||
@ -127,12 +159,10 @@ ErrorDebitCredit=الدائن والمدين لا يمكن أن يكون لهم
|
|||||||
|
|
||||||
ReportThirdParty=List third party account
|
ReportThirdParty=List third party account
|
||||||
DescThirdPartyReport=Consult here the list of the third party customers and suppliers and their accounting accounts
|
DescThirdPartyReport=Consult here the list of the third party customers and suppliers and their accounting accounts
|
||||||
|
|
||||||
ListAccounts=قائمة الحسابات المحاسبية
|
ListAccounts=قائمة الحسابات المحاسبية
|
||||||
|
|
||||||
Pcgtype=فئة الحساب
|
Pcgtype=فئة الحساب
|
||||||
Pcgsubtype=تحت فئة الحساب
|
Pcgsubtype=تحت فئة الحساب
|
||||||
Accountparent=أصل الحساب
|
|
||||||
|
|
||||||
TotalVente=المبيعات الإجمالية قبل الضريبة
|
TotalVente=المبيعات الإجمالية قبل الضريبة
|
||||||
TotalMarge=إجمالي هامش المبيعات
|
TotalMarge=إجمالي هامش المبيعات
|
||||||
@ -144,7 +174,11 @@ DescVentilTodoCustomer=Bind invoice lines not already bound with a product accou
|
|||||||
ChangeAccount=Change the product/service accounting account for selected lines with the following accounting account:
|
ChangeAccount=Change the product/service accounting account for selected lines with the following accounting account:
|
||||||
Vide=-
|
Vide=-
|
||||||
DescVentilSupplier=Consult here the list of supplier invoice lines bound or not yet bound to a product accounting account
|
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=استشر هنا لائحة خطوط فواتير الموردين وحساب المحاسبية
|
||||||
|
DescVentilTodoExpenseReport=Bind expense report lines not already bound with a fee accounting account
|
||||||
|
DescVentilExpenseReport=Consult here the list of expense report lines bound (or not) to a fee accounting account
|
||||||
|
DescVentilExpenseReportMore=If you setup accounting account on type of expense report lines, the application will be able to make all the binding between your expense report 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 fees dictionary 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>".
|
||||||
|
DescVentilDoneExpenseReport=Consult here the list of the lines of expenses reports and their fees accounting account
|
||||||
|
|
||||||
ValidateHistory=Bind Automatically
|
ValidateHistory=Bind Automatically
|
||||||
AutomaticBindingDone=Automatic binding done
|
AutomaticBindingDone=Automatic binding done
|
||||||
@ -152,7 +186,7 @@ AutomaticBindingDone=Automatic binding done
|
|||||||
ErrorAccountancyCodeIsAlreadyUse=خطأ، لا يمكنك حذف هذا الحساب المحاسبي لأنه مستخدم
|
ErrorAccountancyCodeIsAlreadyUse=خطأ، لا يمكنك حذف هذا الحساب المحاسبي لأنه مستخدم
|
||||||
MvtNotCorrectlyBalanced=الحركة غير متوازنة\nالدائن =%s\nالمدين =%s
|
MvtNotCorrectlyBalanced=الحركة غير متوازنة\nالدائن =%s\nالمدين =%s
|
||||||
FicheVentilation=Binding card
|
FicheVentilation=Binding card
|
||||||
GeneralLedgerIsWritten=العمليات مسجلة في دفتر الاستاذ العام
|
GeneralLedgerIsWritten=Transactions are written in the general ledger
|
||||||
GeneralLedgerSomeRecordWasNotRecorded=Some of the transactions could not be recorded.
|
GeneralLedgerSomeRecordWasNotRecorded=Some of the transactions could not be recorded.
|
||||||
NoNewRecordSaved=No new record saved
|
NoNewRecordSaved=No new record saved
|
||||||
ListOfProductsWithoutAccountingAccount=List of products not bound to any accounting account
|
ListOfProductsWithoutAccountingAccount=List of products not bound to any accounting account
|
||||||
@ -178,22 +212,27 @@ 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 chart of accounts 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.
|
||||||
|
DefaultBindingDesc=This page can be used to set a default account to use to link transactions record about payment salaries, donation, taxes and vat when no specific accounting account were already set.
|
||||||
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 accounting account for sales.
|
||||||
OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
|
OptionModeProductBuyDesc=Show all products with accounting account for purchases.
|
||||||
CleanFixHistory=Remove accountancy code from lines that not exists into charts of account
|
CleanFixHistory=Remove accountancy code from lines that not exists into charts of account
|
||||||
CleanHistory=Reset all bindings for selected year
|
CleanHistory=Reset all bindings for selected year
|
||||||
|
|
||||||
|
WithoutValidAccount=Without valid dedicated account
|
||||||
|
WithValidAccount=With valid dedicated account
|
||||||
|
ValueNotIntoChartOfAccount=This value of accounting account does not exist into chart of account
|
||||||
|
|
||||||
## Dictionary
|
## Dictionary
|
||||||
Range=Range of accounting account
|
Range=Range of accounting account
|
||||||
Calculated=Calculated
|
Calculated=Calculated
|
||||||
Formula=Formula
|
Formula=Formula
|
||||||
|
|
||||||
## Error
|
## Error
|
||||||
ErrorNoAccountingCategoryForThisCountry=No accounting category are available for this country
|
ErrorNoAccountingCategoryForThisCountry=No accounting category available for country %s (See Home - Setup - Dictionaries)
|
||||||
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
|
||||||
|
|
||||||
@ -201,4 +240,3 @@ Binded=Lines bound
|
|||||||
ToBind=Lines to bind
|
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.
|
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.
|
||||||
|
|
||||||
|
|||||||
@ -22,7 +22,7 @@ SessionId=Session ID
|
|||||||
SessionSaveHandler=معالج لحفظ الجلسات
|
SessionSaveHandler=معالج لحفظ الجلسات
|
||||||
SessionSavePath=جلسة التخزين المحلية
|
SessionSavePath=جلسة التخزين المحلية
|
||||||
PurgeSessions=إزالة الجلسات
|
PurgeSessions=إزالة الجلسات
|
||||||
ConfirmPurgeSessions=هل تريد حقا إنهاء جميع الجلسات؟ ستقوم بايقاف كل المستخدمين (باستثناء نفسك).
|
ConfirmPurgeSessions=Do you really want to purge all sessions? This will disconnect every user (except yourself).
|
||||||
NoSessionListWithThisHandler=معالج حفظ الجلسة المهيأ في لغة البي إتش بي لا يسمح بسرد كل الجلسات التي تعمل
|
NoSessionListWithThisHandler=معالج حفظ الجلسة المهيأ في لغة البي إتش بي لا يسمح بسرد كل الجلسات التي تعمل
|
||||||
LockNewSessions=إقفال الإتصالات الجديدة
|
LockNewSessions=إقفال الإتصالات الجديدة
|
||||||
ConfirmLockNewSessions=هل أنت متأكد من أنك تريد تقييد أي اتصال جديد من دوليبار لنفسك. <b>%s</b> المستخدم الوحيد الذي سيتمكن من الإتصال بعد هذه العملية.
|
ConfirmLockNewSessions=هل أنت متأكد من أنك تريد تقييد أي اتصال جديد من دوليبار لنفسك. <b>%s</b> المستخدم الوحيد الذي سيتمكن من الإتصال بعد هذه العملية.
|
||||||
@ -53,15 +53,13 @@ ErrorModuleRequireDolibarrVersion=خطأ ، هذا النموذج يتطلب ن
|
|||||||
ErrorDecimalLargerThanAreForbidden=خطأ, برنامج دوليبار <b>%s</b> الحالي لا يدعم دقة أعلى من الحالية
|
ErrorDecimalLargerThanAreForbidden=خطأ, برنامج دوليبار <b>%s</b> الحالي لا يدعم دقة أعلى من الحالية
|
||||||
DictionarySetup=إعداد القاموس
|
DictionarySetup=إعداد القاموس
|
||||||
Dictionary=قواميس
|
Dictionary=قواميس
|
||||||
Chartofaccounts=جدول الحسابات
|
|
||||||
Fiscalyear=Fiscal year
|
|
||||||
ErrorReservedTypeSystemSystemAuto=القيمة 'system' و 'systemauto' لهذا النوع محفوظ. يمكنك إستخدام 'user' كقيمة لإضافة السجل الخاص بك
|
ErrorReservedTypeSystemSystemAuto=القيمة 'system' و 'systemauto' لهذا النوع محفوظ. يمكنك إستخدام 'user' كقيمة لإضافة السجل الخاص بك
|
||||||
ErrorCodeCantContainZero=الكود لا يمكن أن يحتوي على القيمة 0
|
ErrorCodeCantContainZero=الكود لا يمكن أن يحتوي على القيمة 0
|
||||||
DisableJavascript=تعطيل جافا سكريبت واياكس وظائف (مستحسن للأعمى شخص أو النص المتصفحات)
|
DisableJavascript=تعطيل جافا سكريبت واياكس وظائف (مستحسن للأعمى شخص أو النص المتصفحات)
|
||||||
UseSearchToSelectCompanyTooltip=أيضا إذا كان لديك عدد كبير من الأحزاب الثالثة (> 100 000)، يمكنك زيادة السرعة عن طريق وضع COMPANY_DONOTSEARCH_ANYWHERE ثابت إلى 1 في الإعداد، <أخرى. وبعد ذلك البحث أن يقتصر على بداية السلسلة.
|
UseSearchToSelectCompanyTooltip=أيضا إذا كان لديك عدد كبير من الأحزاب الثالثة (> 100 000)، يمكنك زيادة السرعة عن طريق وضع COMPANY_DONOTSEARCH_ANYWHERE ثابت إلى 1 في الإعداد، <أخرى. وبعد ذلك البحث أن يقتصر على بداية السلسلة.
|
||||||
UseSearchToSelectContactTooltip=أيضا إذا كان لديك عدد كبير من الأحزاب الثالثة (> 100 000)، يمكنك زيادة السرعة عن طريق وضع CONTACT_DONOTSEARCH_ANYWHERE ثابت إلى 1 في الإعداد، <أخرى. وبعد ذلك البحث أن يقتصر على بداية السلسلة.
|
UseSearchToSelectContactTooltip=أيضا إذا كان لديك عدد كبير من الأحزاب الثالثة (> 100 000)، يمكنك زيادة السرعة عن طريق وضع CONTACT_DONOTSEARCH_ANYWHERE ثابت إلى 1 في الإعداد، <أخرى. وبعد ذلك البحث أن يقتصر على بداية السلسلة.
|
||||||
DelaiedFullListToSelectCompany=الانتظار تضغط على مفتاح قبل تحميل المحتوى من قائمة التحرير والسرد thirdparties (وهذا قد يزيد من الأداء إذا كان لديك عدد كبير من thirdparties)
|
DelaiedFullListToSelectCompany=Wait you press a key before loading content of thirdparties combo list (This may increase performance if you have a large number of thirdparties, but it is less convenient)
|
||||||
DelaiedFullListToSelectContact=الانتظار تضغط على مفتاح قبل تحميل المحتوى من قائمة التحرير والسرد الاتصال (وهذا قد يزيد من الأداء إذا كان لديك عدد كبير من الاتصال)
|
DelaiedFullListToSelectContact=Wait you press a key before loading content of contact combo list (This may increase performance if you have a large number of contact, but it is less convenient)
|
||||||
NumberOfKeyToSearch=عدد الحروف لبدء البحث: %s
|
NumberOfKeyToSearch=عدد الحروف لبدء البحث: %s
|
||||||
NotAvailableWhenAjaxDisabled=غير متوفر عندما يكون أجاكس معطلاً
|
NotAvailableWhenAjaxDisabled=غير متوفر عندما يكون أجاكس معطلاً
|
||||||
AllowToSelectProjectFromOtherCompany=On document of a third party, can choose a project linked to another third party
|
AllowToSelectProjectFromOtherCompany=On document of a third party, can choose a project linked to another third party
|
||||||
@ -143,7 +141,7 @@ PurgeRunNow=إحذف الآن
|
|||||||
PurgeNothingToDelete=No directory or files to delete.
|
PurgeNothingToDelete=No directory or files to delete.
|
||||||
PurgeNDirectoriesDeleted=<b>%s</b> ملفات او مجلدات حذفت
|
PurgeNDirectoriesDeleted=<b>%s</b> ملفات او مجلدات حذفت
|
||||||
PurgeAuditEvents=احذف جميع الأحداث المتعلقة بالأمان
|
PurgeAuditEvents=احذف جميع الأحداث المتعلقة بالأمان
|
||||||
ConfirmPurgeAuditEvents=هل أنت متأكد من حذف جميع الأحداث الأمنية؟ جميع سجلات الأمن سيتم حذفها ولن يتم حذف أي بيانات أخرى.
|
ConfirmPurgeAuditEvents=Are you sure you want to purge all security events? All security logs will be deleted, no other data will be removed.
|
||||||
GenerateBackup=قم بإنشاء نسخة احتياطية
|
GenerateBackup=قم بإنشاء نسخة احتياطية
|
||||||
Backup=نسخة احتياطية
|
Backup=نسخة احتياطية
|
||||||
Restore=استعادة
|
Restore=استعادة
|
||||||
@ -178,7 +176,7 @@ ExtendedInsert=الإضافة الممددة
|
|||||||
NoLockBeforeInsert=لا يوجد أوامر قفل حول الإضافة
|
NoLockBeforeInsert=لا يوجد أوامر قفل حول الإضافة
|
||||||
DelayedInsert=إضافة متأخرة
|
DelayedInsert=إضافة متأخرة
|
||||||
EncodeBinariesInHexa=ترميز البيانات الأحادية لستة عشرية
|
EncodeBinariesInHexa=ترميز البيانات الأحادية لستة عشرية
|
||||||
IgnoreDuplicateRecords=تجاهل الأخطاء في السجلات المكررة (تجاهل الإدراج)
|
IgnoreDuplicateRecords=Ignore errors of duplicate record (INSERT IGNORE)
|
||||||
AutoDetectLang=اكتشاف تلقائي (لغة المتصفح)
|
AutoDetectLang=اكتشاف تلقائي (لغة المتصفح)
|
||||||
FeatureDisabledInDemo=الميزة معلطة في العرض التجريبي
|
FeatureDisabledInDemo=الميزة معلطة في العرض التجريبي
|
||||||
FeatureAvailableOnlyOnStable=Feature only available on official stable versions
|
FeatureAvailableOnlyOnStable=Feature only available on official stable versions
|
||||||
@ -225,6 +223,16 @@ HelpCenterDesc1=هذا المجال يمكن أن تساعدك في الحصول
|
|||||||
HelpCenterDesc2=جزء من هذه الخدمة متوفرة باللغة <b>الانكليزية فقط.</b>
|
HelpCenterDesc2=جزء من هذه الخدمة متوفرة باللغة <b>الانكليزية فقط.</b>
|
||||||
CurrentMenuHandler=الحالية القائمة معالج
|
CurrentMenuHandler=الحالية القائمة معالج
|
||||||
MeasuringUnit=وحدة قياس
|
MeasuringUnit=وحدة قياس
|
||||||
|
LeftMargin=Left margin
|
||||||
|
TopMargin=Top margin
|
||||||
|
PaperSize=Paper type
|
||||||
|
Orientation=Orientation
|
||||||
|
SpaceX=Space X
|
||||||
|
SpaceY=Space Y
|
||||||
|
FontSize=Font size
|
||||||
|
Content=Content
|
||||||
|
NoticePeriod=فترة إشعار
|
||||||
|
NewByMonth=New by month
|
||||||
Emails=البريد الإلكتروني
|
Emails=البريد الإلكتروني
|
||||||
EMailsSetup=إعداد رسائل البريد الإلكتروني
|
EMailsSetup=إعداد رسائل البريد الإلكتروني
|
||||||
EMailsDesc=تسمح لك هذه الصفحة الخاصة بك فوق PHP معايير لإرسال رسائل البريد الإلكتروني. في معظم الحالات على يونيكس / نظام لينكس ، PHP الخاصة بك الإعداد صحيح وهذه الثوابت هي عديمة الفائدة.
|
EMailsDesc=تسمح لك هذه الصفحة الخاصة بك فوق PHP معايير لإرسال رسائل البريد الإلكتروني. في معظم الحالات على يونيكس / نظام لينكس ، PHP الخاصة بك الإعداد صحيح وهذه الثوابت هي عديمة الفائدة.
|
||||||
@ -244,9 +252,12 @@ MAIN_MAIL_EMAIL_STARTTLS= Use TLS (STARTTLS) encrypt
|
|||||||
MAIN_DISABLE_ALL_SMS=تعطيل كافة sendings SMS (لأغراض الاختبار أو تجريبية)
|
MAIN_DISABLE_ALL_SMS=تعطيل كافة sendings SMS (لأغراض الاختبار أو تجريبية)
|
||||||
MAIN_SMS_SENDMODE=طريقة استخدامه لإرسال الرسائل القصيرة SMS
|
MAIN_SMS_SENDMODE=طريقة استخدامه لإرسال الرسائل القصيرة SMS
|
||||||
MAIN_MAIL_SMS_FROM=رقم الهاتف المرسل الافتراضي لإرسال الرسائل القصيرة
|
MAIN_MAIL_SMS_FROM=رقم الهاتف المرسل الافتراضي لإرسال الرسائل القصيرة
|
||||||
|
MAIN_MAIL_DEFAULT_FROMTYPE=Sender e-mail by default for manual sendings (User email or Company email)
|
||||||
|
UserEmail=User email
|
||||||
|
CompanyEmail=Company email
|
||||||
FeatureNotAvailableOnLinux=ميزة لا تتوفر على مثل أنظمة يونكس. sendmail برنامج الاختبار الخاص بك محليا.
|
FeatureNotAvailableOnLinux=ميزة لا تتوفر على مثل أنظمة يونكس. sendmail برنامج الاختبار الخاص بك محليا.
|
||||||
SubmitTranslation=إذا ترجمة لهذه اللغة ليست كاملة أو تجد الأخطاء، يمكنك تصحيح هذا عن طريق تحرير الملفات إلى دليل <b>LANGS /%s</b> وتقديم التغيير إلى www.transifex.com/dolibarr-association/dolibarr/~~V
|
SubmitTranslation=إذا ترجمة لهذه اللغة ليست كاملة أو تجد الأخطاء، يمكنك تصحيح هذا عن طريق تحرير الملفات إلى دليل <b>LANGS /%s</b> وتقديم التغيير إلى www.transifex.com/dolibarr-association/dolibarr/~~V
|
||||||
SubmitTranslationENUS=If translation for this language is not complete or you find errors, you can correct this by editing files into directory <b>langs/%s</b> and submit modified files on dolibarr.org/forum or for developers on github.com/Dolibarr/dolibarr.
|
SubmitTranslationENUS=إذا ترجمة لهذه اللغة ليست كاملة أو تجد الأخطاء، يمكنك تصحيح هذا عن طريق تحرير الملفات إلى دليل <b>LANGS /%s</b> وتقديم الملفات التي تم تعديلها على dolibarr.org/forum أو للمطورين على github.com/Dolibarr/dolibarr.
|
||||||
ModuleSetup=إعداد وحدة
|
ModuleSetup=إعداد وحدة
|
||||||
ModulesSetup=نمائط الإعداد
|
ModulesSetup=نمائط الإعداد
|
||||||
ModuleFamilyBase=نظام
|
ModuleFamilyBase=نظام
|
||||||
@ -303,7 +314,7 @@ UseACacheDelay= التخزين المؤقت للتأخير في الرد على
|
|||||||
DisableLinkToHelpCenter=الاختباء وصلة <b>"هل تحتاج إلى مساعدة أو دعم"</b> على صفحة تسجيل الدخول
|
DisableLinkToHelpCenter=الاختباء وصلة <b>"هل تحتاج إلى مساعدة أو دعم"</b> على صفحة تسجيل الدخول
|
||||||
DisableLinkToHelp=إخفاء تصل إلى التعليمات الفورية <b>"٪ ق"</b>
|
DisableLinkToHelp=إخفاء تصل إلى التعليمات الفورية <b>"٪ ق"</b>
|
||||||
AddCRIfTooLong=ليس هناك التفاف تلقائي ، حتى إذا خرج من خط صفحة على وثائق لفترة طويلة جدا ، يجب إضافة حرف إرجاع نفسك في ناحية النص.
|
AddCRIfTooLong=ليس هناك التفاف تلقائي ، حتى إذا خرج من خط صفحة على وثائق لفترة طويلة جدا ، يجب إضافة حرف إرجاع نفسك في ناحية النص.
|
||||||
ConfirmPurge=هل أنت متأكد من ذلك لتنفيذ تطهير؟ <br> وهذا من شأنه بالتأكيد حذف جميع بيانات ملفك بأي حال من الأحوال لترميمها (صورة إدارة المحتوى في المؤسسة ، والملفات المرفقة...).
|
ConfirmPurge=Are you sure you want to execute this purge?<br>This will delete definitely all your data files with no way to restore them (ECM files, attached files...).
|
||||||
MinLength=الحد الأدني لمدة
|
MinLength=الحد الأدني لمدة
|
||||||
LanguageFilesCachedIntoShmopSharedMemory=لانغ لتحميل الملفات. في الذاكرة المشتركة
|
LanguageFilesCachedIntoShmopSharedMemory=لانغ لتحميل الملفات. في الذاكرة المشتركة
|
||||||
ExamplesWithCurrentSetup=أمثلة مع تشغيل الإعداد الحالي
|
ExamplesWithCurrentSetup=أمثلة مع تشغيل الإعداد الحالي
|
||||||
@ -353,10 +364,11 @@ Boolean=Boolean (Checkbox)
|
|||||||
ExtrafieldPhone = هاتف
|
ExtrafieldPhone = هاتف
|
||||||
ExtrafieldPrice = الأسعار
|
ExtrafieldPrice = الأسعار
|
||||||
ExtrafieldMail = Email
|
ExtrafieldMail = Email
|
||||||
|
ExtrafieldUrl = Url
|
||||||
ExtrafieldSelect = Select list
|
ExtrafieldSelect = Select list
|
||||||
ExtrafieldSelectList = Select from table
|
ExtrafieldSelectList = Select from table
|
||||||
ExtrafieldSeparator=Separator
|
ExtrafieldSeparator=Separator
|
||||||
ExtrafieldPassword=Password
|
ExtrafieldPassword=الرمز السري
|
||||||
ExtrafieldCheckBox=Checkbox
|
ExtrafieldCheckBox=Checkbox
|
||||||
ExtrafieldRadio=Radio button
|
ExtrafieldRadio=Radio button
|
||||||
ExtrafieldCheckBoxFromList= مربع من الجدول
|
ExtrafieldCheckBoxFromList= مربع من الجدول
|
||||||
@ -364,8 +376,8 @@ ExtrafieldLink=رابط إلى كائن
|
|||||||
ExtrafieldParamHelpselect=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...<br><br>In order to have the list depending on another :<br>1,value1|parent_list_code:parent_key<br>2,value2|parent_list_code:parent_key
|
ExtrafieldParamHelpselect=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...<br><br>In order to have the list depending on another :<br>1,value1|parent_list_code:parent_key<br>2,value2|parent_list_code:parent_key
|
||||||
ExtrafieldParamHelpcheckbox=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
|
ExtrafieldParamHelpcheckbox=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
|
||||||
ExtrafieldParamHelpradio=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
|
ExtrafieldParamHelpradio=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
|
||||||
ExtrafieldParamHelpsellist=قائمة المعلمات يأتي من الجدول <br> بناء الجملة: TABLE_NAME: label_field: id_field :: مرشح <br> مثال: c_typent: libelle: معرف :: مرشح <br><br> مرشح يمكن أن يكون اختبار بسيط (على سبيل المثال النشطة = 1) لعرض قيمة النشطة فقط <br> يمكنك أيضا استخدام $ $ ID في تصفية ساحرة هي هوية الحالي الكائن الحالي <br> للقيام SELECT في استخدام فلتر $ SEL $ <br> إذا كنت ترغب في تصفية على extrafields استخدام syntaxt extra.fieldcode = ... (حيث رمز الحقل هو رمز من extrafield) <br><br> من أجل الحصول على لائحة تبعا آخر: <br> c_typent: libelle: الرقم: parent_list_code | parent_column: فلتر
|
ExtrafieldParamHelpsellist=Parameters list comes from a table<br>Syntax : table_name:label_field:id_field::filter<br>Example : c_typent:libelle:id::filter<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
|
||||||
ExtrafieldParamHelpchkbxlst=قائمة المعلمات يأتي من الجدول <br> بناء الجملة: TABLE_NAME: label_field: id_field :: مرشح <br> مثال: c_typent: libelle: معرف :: مرشح <br><br> مرشح يمكن أن يكون اختبار بسيط (على سبيل المثال النشطة = 1) لعرض قيمة النشطة فقط <br> يمكنك أيضا استخدام $ $ ID في تصفية ساحرة هي هوية الحالي الكائن الحالي <br> للقيام SELECT في استخدام فلتر $ SEL $ <br> إذا كنت ترغب في تصفية على extrafields استخدام syntaxt extra.fieldcode = ... (حيث رمز الحقل هو رمز من extrafield) <br><br> من أجل الحصول على لائحة تبعا آخر: <br> c_typent: libelle: الرقم: parent_list_code | parent_column: فلتر
|
ExtrafieldParamHelpchkbxlst=Parameters list comes from a table<br>Syntax : table_name:label_field:id_field::filter<br>Example : c_typent:libelle:id::filter<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
|
||||||
ExtrafieldParamHelplink=يجب أن يكون المعلمات ObjectName: CLASSPATH <br> بناء الجملة: ObjectName: CLASSPATH <br> مثال: سوسيتيه: سوسيتيه / فئة / societe.class.php
|
ExtrafieldParamHelplink=يجب أن يكون المعلمات ObjectName: CLASSPATH <br> بناء الجملة: ObjectName: CLASSPATH <br> مثال: سوسيتيه: سوسيتيه / فئة / societe.class.php
|
||||||
LibraryToBuildPDF=Library used for PDF generation
|
LibraryToBuildPDF=Library used for PDF generation
|
||||||
WarningUsingFPDF=Warning: Your <b>conf.php</b> contains directive <b>dolibarr_pdf_force_fpdf=1</b>. This means you use the FPDF library to generate PDF files. This library is old and does not support a lot of features (Unicode, image transparency, cyrillic, arab and asiatic languages, ...), so you may experience errors during PDF generation.<br>To solve this and have a full support of PDF generation, please download <a href="http://www.tcpdf.org/" target="_blank">TCPDF library</a>, then comment or remove the line <b>$dolibarr_pdf_force_fpdf=1</b>, and add instead <b>$dolibarr_lib_TCPDF_PATH='path_to_TCPDF_dir'</b>
|
WarningUsingFPDF=Warning: Your <b>conf.php</b> contains directive <b>dolibarr_pdf_force_fpdf=1</b>. This means you use the FPDF library to generate PDF files. This library is old and does not support a lot of features (Unicode, image transparency, cyrillic, arab and asiatic languages, ...), so you may experience errors during PDF generation.<br>To solve this and have a full support of PDF generation, please download <a href="http://www.tcpdf.org/" target="_blank">TCPDF library</a>, then comment or remove the line <b>$dolibarr_pdf_force_fpdf=1</b>, and add instead <b>$dolibarr_lib_TCPDF_PATH='path_to_TCPDF_dir'</b>
|
||||||
@ -381,10 +393,10 @@ ValueOverwrittenByUserSetup=Warning, this value may be overwritten by user speci
|
|||||||
ExternalModule=الوحدة الخارجية - المثبتة في الدليل %s
|
ExternalModule=الوحدة الخارجية - المثبتة في الدليل %s
|
||||||
BarcodeInitForThirdparties=الحرف الأول الباركود الشامل لthirdparties
|
BarcodeInitForThirdparties=الحرف الأول الباركود الشامل لthirdparties
|
||||||
BarcodeInitForProductsOrServices=الحرف الأول الباركود الشامل أو إعادة للمنتجات أو الخدمات
|
BarcodeInitForProductsOrServices=الحرف الأول الباركود الشامل أو إعادة للمنتجات أو الخدمات
|
||||||
CurrentlyNWithoutBarCode=حاليا، لديك <strong>السجلات٪ s <strong>على٪</strong></strong> <strong>ق٪</strong> الصورة دون الباركود محددة.
|
CurrentlyNWithoutBarCode=Currently, you have <strong>%s</strong> record on <strong>%s</strong> %s without barcode defined.
|
||||||
InitEmptyBarCode=قيمة الحرف الأول للسجلات فارغة الصورة٪ المقبلة
|
InitEmptyBarCode=قيمة الحرف الأول للسجلات فارغة الصورة٪ المقبلة
|
||||||
EraseAllCurrentBarCode=محو كل القيم الباركود الحالية
|
EraseAllCurrentBarCode=محو كل القيم الباركود الحالية
|
||||||
ConfirmEraseAllCurrentBarCode=هل أنت متأكد أنك تريد محو كل القيم الباركود الحالية؟
|
ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode values?
|
||||||
AllBarcodeReset=وقد أزيلت كل القيم الباركود
|
AllBarcodeReset=وقد أزيلت كل القيم الباركود
|
||||||
NoBarcodeNumberingTemplateDefined=تمكين أي قالب الترقيم الباركود في الإعداد وحدة الباركود.
|
NoBarcodeNumberingTemplateDefined=تمكين أي قالب الترقيم الباركود في الإعداد وحدة الباركود.
|
||||||
EnableFileCache=Enable file cache
|
EnableFileCache=Enable file cache
|
||||||
@ -394,10 +406,10 @@ DisplayCompanyInfo=Display company address
|
|||||||
DisplayCompanyManagers=Display manager names
|
DisplayCompanyManagers=Display manager names
|
||||||
DisplayCompanyInfoAndManagers=Display company address and 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=عودة رمز المحاسبة التي بناها: <br> يتبع %s بواسطة طرف ثالث رمز المورد عن مورد قانون المحاسبة، <br> يتبع %s بواسطة طرف ثالث رمز العملاء لعميل قانون المحاسبة.
|
||||||
ModuleCompanyCodePanicum=Return an empty accountancy code.
|
ModuleCompanyCodePanicum=العودة فارغة مدونة المحاسبة.
|
||||||
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=قانون المحاسبة طرف ثالث يعتمد على الرمز. الشفرة تتكون من طابع "جيم" في المركز الأول يليه 5 الحروف الأولى من طرف ثالث المدونة.
|
||||||
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.
|
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 a 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 (3 steps) is always required.
|
||||||
UseDoubleApproval=Use a 3 steps approval when amount (without tax) is higher than...
|
UseDoubleApproval=Use a 3 steps approval when amount (without tax) is higher than...
|
||||||
|
|
||||||
# Modules
|
# Modules
|
||||||
@ -470,7 +482,7 @@ Module310Desc=أعضاء إدارة المؤسسة
|
|||||||
Module320Name=تغذية RSS
|
Module320Name=تغذية RSS
|
||||||
Module320Desc=إضافة تغذية RSS داخل الشاشة صفحة Dolibarr
|
Module320Desc=إضافة تغذية RSS داخل الشاشة صفحة Dolibarr
|
||||||
Module330Name=العناوين
|
Module330Name=العناوين
|
||||||
Module330Desc=Bookmarks management
|
Module330Desc=إدارة العناوين
|
||||||
Module400Name=المشاريع / الفرص / يؤدي
|
Module400Name=المشاريع / الفرص / يؤدي
|
||||||
Module400Desc=إدارة المشاريع والفرص أو الخيوط. ثم يمكنك تعيين أي عنصر (الفاتورة، النظام، اقتراح، والتدخل، ...) لمشروع والحصول على عرض مستعرضة من وجهة نظر المشروع.
|
Module400Desc=إدارة المشاريع والفرص أو الخيوط. ثم يمكنك تعيين أي عنصر (الفاتورة، النظام، اقتراح، والتدخل، ...) لمشروع والحصول على عرض مستعرضة من وجهة نظر المشروع.
|
||||||
Module410Name=Webcalendar
|
Module410Name=Webcalendar
|
||||||
@ -548,7 +560,7 @@ Module59000Name=هوامش
|
|||||||
Module59000Desc=وحدة لإدارة الهوامش
|
Module59000Desc=وحدة لإدارة الهوامش
|
||||||
Module60000Name=العمولات
|
Module60000Name=العمولات
|
||||||
Module60000Desc=وحدة لإدارة اللجان
|
Module60000Desc=وحدة لإدارة اللجان
|
||||||
Module63000Name=Resources
|
Module63000Name=مصادر
|
||||||
Module63000Desc=Manage resources (printers, cars, room, ...) you can then share into events
|
Module63000Desc=Manage resources (printers, cars, room, ...) you can then share into events
|
||||||
Permission11=قراءة الفواتير
|
Permission11=قراءة الفواتير
|
||||||
Permission12=إنشاء / تعديل فواتير العملاء
|
Permission12=إنشاء / تعديل فواتير العملاء
|
||||||
@ -813,6 +825,7 @@ DictionaryPaymentModes=وسائل الدفع
|
|||||||
DictionaryTypeContact=الاتصال / أنواع العناوين
|
DictionaryTypeContact=الاتصال / أنواع العناوين
|
||||||
DictionaryEcotaxe=ضرائب بيئية (WEEE)
|
DictionaryEcotaxe=ضرائب بيئية (WEEE)
|
||||||
DictionaryPaperFormat=تنسيقات ورقة
|
DictionaryPaperFormat=تنسيقات ورقة
|
||||||
|
DictionaryFormatCards=Cards formats
|
||||||
DictionaryFees=Types of fees
|
DictionaryFees=Types of fees
|
||||||
DictionarySendingMethods=وسائل النقل البحري
|
DictionarySendingMethods=وسائل النقل البحري
|
||||||
DictionaryStaff=العاملين
|
DictionaryStaff=العاملين
|
||||||
@ -1016,7 +1029,6 @@ SimpleNumRefModelDesc=إرجاع الرقم المرجعي مع شكل %s yymm-
|
|||||||
ShowProfIdInAddress=إظهار رقم حرفي مع عناوين على وثائق
|
ShowProfIdInAddress=إظهار رقم حرفي مع عناوين على وثائق
|
||||||
ShowVATIntaInAddress=إخفاء ضريبة القيمة المضافة داخل الأسطوانات مع العناوين على الوثائق
|
ShowVATIntaInAddress=إخفاء ضريبة القيمة المضافة داخل الأسطوانات مع العناوين على الوثائق
|
||||||
TranslationUncomplete=ترجمة جزئية
|
TranslationUncomplete=ترجمة جزئية
|
||||||
SomeTranslationAreUncomplete=بعض اللغات يمكن ترجمتها جزء منه أو تحتوي على أخطاء. إذا كنت الكشف عن بعض، يمكنك إصلاح ملفات اللغة التسجيل <a href="http://transifex.com/projects/p/dolibarr/" target="_blank">للhttp://transifex.com/projects/p/dolibarr/.</a>
|
|
||||||
MAIN_DISABLE_METEO=تعطيل عرض ميتيو
|
MAIN_DISABLE_METEO=تعطيل عرض ميتيو
|
||||||
TestLoginToAPI=اختبار الدخول إلى API
|
TestLoginToAPI=اختبار الدخول إلى API
|
||||||
ProxyDesc=بعض ملامح Dolibarr في حاجة الى وصول الإنترنت إلى العمل. هنا تعريف المعلمات من أجل هذا. إذا كان الملقم Dolibarr خلف ملقم وكيل، هذه المعايير يقول Dolibarr كيفية الوصول إلى الإنترنت من خلال ذلك.
|
ProxyDesc=بعض ملامح Dolibarr في حاجة الى وصول الإنترنت إلى العمل. هنا تعريف المعلمات من أجل هذا. إذا كان الملقم Dolibarr خلف ملقم وكيل، هذه المعايير يقول Dolibarr كيفية الوصول إلى الإنترنت من خلال ذلك.
|
||||||
@ -1061,7 +1073,7 @@ TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</
|
|||||||
YouMustEnableOneModule=يجب على الأقل تمكين 1 وحدة
|
YouMustEnableOneModule=يجب على الأقل تمكين 1 وحدة
|
||||||
ClassNotFoundIntoPathWarning=لم يتم العثور على %s في مسار PHP
|
ClassNotFoundIntoPathWarning=لم يتم العثور على %s في مسار PHP
|
||||||
YesInSummer=نعم في الصيف
|
YesInSummer=نعم في الصيف
|
||||||
OnlyFollowingModulesAreOpenedToExternalUsers=ملاحظة، وحدات فقط التالية مفتوحة للمستخدمين الخارجيين (أيا كان هي إذن من هؤلاء المستخدمين):
|
OnlyFollowingModulesAreOpenedToExternalUsers=Note, only following modules are open to external users (whatever are permission of such users) and only if permissions were granted:
|
||||||
SuhosinSessionEncrypt=تخزين جلسة المشفرة بواسطة Suhosin
|
SuhosinSessionEncrypt=تخزين جلسة المشفرة بواسطة Suhosin
|
||||||
ConditionIsCurrently=الشرط هو حاليا %s
|
ConditionIsCurrently=الشرط هو حاليا %s
|
||||||
YouUseBestDriver=استخدام سائق %s التي هو أفضل سائق المتاحة حاليا.
|
YouUseBestDriver=استخدام سائق %s التي هو أفضل سائق المتاحة حاليا.
|
||||||
@ -1104,10 +1116,9 @@ DocumentModelOdt=توليد وثائق من OpenDocuments القوالب (.ODT
|
|||||||
WatermarkOnDraft=علامة مائية على مشروع الوثيقة
|
WatermarkOnDraft=علامة مائية على مشروع الوثيقة
|
||||||
JSOnPaimentBill=ميزة تفعيل لتدوين كلمات خطوط المبلغ على شكل دفع
|
JSOnPaimentBill=ميزة تفعيل لتدوين كلمات خطوط المبلغ على شكل دفع
|
||||||
CompanyIdProfChecker=المهنية معرف فريد
|
CompanyIdProfChecker=المهنية معرف فريد
|
||||||
MustBeUnique=يجب أن تكون فريدة من نوعها؟
|
MustBeUnique=Must be unique?
|
||||||
MustBeMandatory=إلزامية لإنشاء أطراف ثالثة؟
|
MustBeMandatory=Mandatory to create third parties?
|
||||||
MustBeInvoiceMandatory=إلزاميا للتحقق من صحة الفواتير؟
|
MustBeInvoiceMandatory=Mandatory to validate invoices?
|
||||||
Miscellaneous=متفرقات
|
|
||||||
##### Webcal setup #####
|
##### Webcal setup #####
|
||||||
WebCalUrlForVCalExport=تصدير صلة <b>%s </b> شكل متاح على الوصلة التالية : %s
|
WebCalUrlForVCalExport=تصدير صلة <b>%s </b> شكل متاح على الوصلة التالية : %s
|
||||||
##### Invoices #####
|
##### Invoices #####
|
||||||
@ -1123,7 +1134,7 @@ SuggestPaymentByChequeToAddress=وتشير إلى دفع الشيكات
|
|||||||
FreeLegalTextOnInvoices=نص حر على الفواتير
|
FreeLegalTextOnInvoices=نص حر على الفواتير
|
||||||
WatermarkOnDraftInvoices=العلامة المائية على مشروع الفواتير (أي إذا فارغ)
|
WatermarkOnDraftInvoices=العلامة المائية على مشروع الفواتير (أي إذا فارغ)
|
||||||
PaymentsNumberingModule=المدفوعات نموذج الترقيم
|
PaymentsNumberingModule=المدفوعات نموذج الترقيم
|
||||||
SuppliersPayment=Suppliers payments
|
SuppliersPayment=الموردين والمدفوعات
|
||||||
SupplierPaymentSetup=Suppliers payments setup
|
SupplierPaymentSetup=Suppliers payments setup
|
||||||
##### Proposals #####
|
##### Proposals #####
|
||||||
PropalSetup=وحدة إعداد مقترحات تجارية
|
PropalSetup=وحدة إعداد مقترحات تجارية
|
||||||
@ -1140,6 +1151,8 @@ FreeLegalTextOnSupplierProposal=النص الحر على طلبات سعر ال
|
|||||||
WatermarkOnDraftSupplierProposal=العلامة المائية على مشروع سعر تطلب الموردين (أي إذا فارغ)
|
WatermarkOnDraftSupplierProposal=العلامة المائية على مشروع سعر تطلب الموردين (أي إذا فارغ)
|
||||||
BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_PROPOSAL=اسأل عن وجهة الحساب المصرفي للطلب السعر
|
BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_PROPOSAL=اسأل عن وجهة الحساب المصرفي للطلب السعر
|
||||||
WAREHOUSE_ASK_WAREHOUSE_DURING_ORDER=طلب مستودع المصدر لأمر
|
WAREHOUSE_ASK_WAREHOUSE_DURING_ORDER=طلب مستودع المصدر لأمر
|
||||||
|
##### Suppliers Orders #####
|
||||||
|
BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_ORDER=Ask for bank account destination of supplier order
|
||||||
##### Orders #####
|
##### Orders #####
|
||||||
OrdersSetup=أوامر إدارة الإعداد
|
OrdersSetup=أوامر إدارة الإعداد
|
||||||
OrdersNumberingModules=أوامر الترقيم نمائط
|
OrdersNumberingModules=أوامر الترقيم نمائط
|
||||||
@ -1320,7 +1333,7 @@ ViewProductDescInFormAbility=تصور وصف المنتج في أشكال (ما
|
|||||||
MergePropalProductCard=في تنشيط المنتج / الخدمة المرفقة التبويب ملفات خيار دمج المستند المنتج PDF إلى اقتراح PDF دازور إذا كان المنتج / الخدمة في الاقتراح
|
MergePropalProductCard=في تنشيط المنتج / الخدمة المرفقة التبويب ملفات خيار دمج المستند المنتج PDF إلى اقتراح PDF دازور إذا كان المنتج / الخدمة في الاقتراح
|
||||||
ViewProductDescInThirdpartyLanguageAbility=Visualization of products descriptions in the third party language
|
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=Wait you press a key before loading content of product combo list (This may increase performance if you have a large number of products, but it is less convenient)
|
||||||
SetDefaultBarcodeTypeProducts=النوع الافتراضي لاستخدام الباركود للمنتجات
|
SetDefaultBarcodeTypeProducts=النوع الافتراضي لاستخدام الباركود للمنتجات
|
||||||
SetDefaultBarcodeTypeThirdParties=النوع الافتراضي لاستخدام الباركود لأطراف ثالثة
|
SetDefaultBarcodeTypeThirdParties=النوع الافتراضي لاستخدام الباركود لأطراف ثالثة
|
||||||
UseUnits=تحديد وحدة قياس لكمية خلال النظام، الطبعة اقتراح أو فاتورة خطوط
|
UseUnits=تحديد وحدة قياس لكمية خلال النظام، الطبعة اقتراح أو فاتورة خطوط
|
||||||
@ -1427,7 +1440,7 @@ DetailTarget=هدف وصلات (_blank كبار فتح نافذة جديدة)
|
|||||||
DetailLevel=المستوى (-1 : الأعلى ، 0 : رأس القائمة ،> 0 القائمة والقائمة الفرعية)
|
DetailLevel=المستوى (-1 : الأعلى ، 0 : رأس القائمة ،> 0 القائمة والقائمة الفرعية)
|
||||||
ModifMenu=قائمة التغيير
|
ModifMenu=قائمة التغيير
|
||||||
DeleteMenu=حذف من القائمة الدخول
|
DeleteMenu=حذف من القائمة الدخول
|
||||||
ConfirmDeleteMenu=هل أنت متأكد من أنك تريد حذف القائمة دخول <b>٪ ق؟</b>
|
ConfirmDeleteMenu=Are you sure you want to delete menu entry <b>%s</b>?
|
||||||
FailedToInitializeMenu=فشل في تهيئة القائمة
|
FailedToInitializeMenu=فشل في تهيئة القائمة
|
||||||
##### Tax #####
|
##### Tax #####
|
||||||
TaxSetup=الضرائب، الضرائب الاجتماعية أو المالية وتوزيعات الأرباح الإعداد حدة
|
TaxSetup=الضرائب، الضرائب الاجتماعية أو المالية وتوزيعات الأرباح الإعداد حدة
|
||||||
@ -1482,7 +1495,7 @@ NbOfBoomarkToShow=أكبر عدد ممكن من العناوين تظهر في
|
|||||||
WebServicesSetup=إعداد وحدة خدمات الويب
|
WebServicesSetup=إعداد وحدة خدمات الويب
|
||||||
WebServicesDesc=من خلال تمكين هذه الوحدة ، Dolibarr تصبح خدمة الإنترنت لتوفير خدمات الإنترنت وخدمات متنوعة.
|
WebServicesDesc=من خلال تمكين هذه الوحدة ، Dolibarr تصبح خدمة الإنترنت لتوفير خدمات الإنترنت وخدمات متنوعة.
|
||||||
WSDLCanBeDownloadedHere=اختصار الواصفة ملف قدمت serviceses هنا يمكن التحميل
|
WSDLCanBeDownloadedHere=اختصار الواصفة ملف قدمت serviceses هنا يمكن التحميل
|
||||||
EndPointIs=الصابون العملاء يجب إرسال الطلبات إلى نقطة النهاية Dolibarr متاحة في الموقع
|
EndPointIs=SOAP clients must send their requests to the Dolibarr endpoint available at URL
|
||||||
##### API ####
|
##### API ####
|
||||||
ApiSetup=API وحدة الإعداد
|
ApiSetup=API وحدة الإعداد
|
||||||
ApiDesc=من خلال تمكين هذه الوحدة، Dolibarr يصبح الخادم REST لتوفير خدمات الإنترنت المتنوعة.
|
ApiDesc=من خلال تمكين هذه الوحدة، Dolibarr يصبح الخادم REST لتوفير خدمات الإنترنت المتنوعة.
|
||||||
@ -1524,14 +1537,14 @@ TaskModelModule=تقارير المهام ثيقة نموذجية
|
|||||||
UseSearchToSelectProject=استخدام حقول تكملة لاختيار المشروع (بدلا من استخدام مربع القائمة)
|
UseSearchToSelectProject=استخدام حقول تكملة لاختيار المشروع (بدلا من استخدام مربع القائمة)
|
||||||
##### ECM (GED) #####
|
##### ECM (GED) #####
|
||||||
##### Fiscal Year #####
|
##### Fiscal Year #####
|
||||||
FiscalYears=السنوات المالية
|
AccountingPeriods=Accounting periods
|
||||||
FiscalYearCard=بطاقة السنة المالية
|
AccountingPeriodCard=Accounting period
|
||||||
NewFiscalYear=السنة المالية الجديدة
|
NewFiscalYear=New accounting period
|
||||||
OpenFiscalYear=السنة المالية المفتوحة
|
OpenFiscalYear=Open accounting period
|
||||||
CloseFiscalYear=السنة المالية وثيق
|
CloseFiscalYear=Close accounting period
|
||||||
DeleteFiscalYear=حذف السنة المالية
|
DeleteFiscalYear=Delete accounting period
|
||||||
ConfirmDeleteFiscalYear=هل أنت متأكد من حذف هذه السنة المالية؟
|
ConfirmDeleteFiscalYear=Are you sure to delete this accounting period?
|
||||||
ShowFiscalYear=Show fiscal year
|
ShowFiscalYear=Show accounting period
|
||||||
AlwaysEditable=يمكن دائما أن تعدل
|
AlwaysEditable=يمكن دائما أن تعدل
|
||||||
MAIN_APPLICATION_TITLE=إجبار اسم المرئي من التطبيق (تحذير: وضع اسمك هنا قد كسر ميزة تسجيل الدخول التدوين الآلي عند استخدام تطبيقات الهاتف المتحرك DoliDroid)
|
MAIN_APPLICATION_TITLE=إجبار اسم المرئي من التطبيق (تحذير: وضع اسمك هنا قد كسر ميزة تسجيل الدخول التدوين الآلي عند استخدام تطبيقات الهاتف المتحرك DoliDroid)
|
||||||
NbMajMin=الحد الأدنى لعدد الأحرف الكبيرة
|
NbMajMin=الحد الأدنى لعدد الأحرف الكبيرة
|
||||||
@ -1563,7 +1576,7 @@ HighlightLinesOnMouseHover=تسليط الضوء على خطوط الجدول ع
|
|||||||
HighlightLinesColor=تسليط الضوء على لون الخط عند تمرير الماوس فوق (الحفاظ فارغة دون تمييز)
|
HighlightLinesColor=تسليط الضوء على لون الخط عند تمرير الماوس فوق (الحفاظ فارغة دون تمييز)
|
||||||
TextTitleColor=Color of page title
|
TextTitleColor=Color of page title
|
||||||
LinkColor=لون الروابط
|
LinkColor=لون الروابط
|
||||||
PressF5AfterChangingThis=اضغط F5 على لوحة المفاتيح بعد تغيير هذه القيمة أن يكون ذلك فعالا
|
PressF5AfterChangingThis=Press F5 on keyboard or clear your browser cache after changing this value to have it effective
|
||||||
NotSupportedByAllThemes=Will works with core themes, may not be supported by external themes
|
NotSupportedByAllThemes=Will works with core themes, may not be supported by external themes
|
||||||
BackgroundColor=لون الخلفية
|
BackgroundColor=لون الخلفية
|
||||||
TopMenuBackgroundColor=لون الخلفية لقائمة الأعلى
|
TopMenuBackgroundColor=لون الخلفية لقائمة الأعلى
|
||||||
@ -1623,12 +1636,17 @@ AddOtherPagesOrServices=Add other pages or services
|
|||||||
AddModels=Add document or numbering templates
|
AddModels=Add document or numbering templates
|
||||||
AddSubstitutions=Add keys substitutions
|
AddSubstitutions=Add keys substitutions
|
||||||
DetectionNotPossible=Detection not possible
|
DetectionNotPossible=Detection not possible
|
||||||
UrlToGetKeyToUseAPIs=Url to get token to use API (once token has been received it is saved on database user table and will be checked on each future access)
|
UrlToGetKeyToUseAPIs=Url to get token to use API (once token has been received it is saved on database user table and must be provided on each API call)
|
||||||
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
|
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
|
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.
|
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 or groups manually if necessary.
|
||||||
UserHasNoPermissions=This user has no permission defined
|
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")
|
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")
|
||||||
|
##### Resource ####
|
||||||
|
ResourceSetup=Configuration du module Resource
|
||||||
|
UseSearchToSelectResource=Use a search form to choose a resource (rather than a drop-down list).
|
||||||
|
DisabledResourceLinkUser=Disabled resource link to user
|
||||||
|
DisabledResourceLinkContact=Disabled resource link to contact
|
||||||
|
|||||||
@ -3,10 +3,9 @@ IdAgenda=رمز الحدث
|
|||||||
Actions=الأحداث
|
Actions=الأحداث
|
||||||
Agenda=جدول الأعمال
|
Agenda=جدول الأعمال
|
||||||
Agendas=جداول الأعمال
|
Agendas=جداول الأعمال
|
||||||
Calendar=التقويم
|
|
||||||
LocalAgenda=تقويم الداخلي
|
LocalAgenda=تقويم الداخلي
|
||||||
ActionsOwnedBy=الحدث يملكها
|
ActionsOwnedBy=الحدث يملكها
|
||||||
ActionsOwnedByShort=Owner
|
ActionsOwnedByShort=مالك
|
||||||
AffectedTo=مناط لـ
|
AffectedTo=مناط لـ
|
||||||
Event=حدث
|
Event=حدث
|
||||||
Events=الأحداث
|
Events=الأحداث
|
||||||
@ -34,11 +33,28 @@ AgendaAutoActionDesc= Define here events for which you want Dolibarr to create a
|
|||||||
AgendaSetupOtherDesc= تسمح لك هذه الصفحة بنقل الأحداث إلى تقويم خارجي مثل جوجل, تندربيرد وغيرها, وذلك بإستخدام الخيارات في هذه الصفحة
|
AgendaSetupOtherDesc= تسمح لك هذه الصفحة بنقل الأحداث إلى تقويم خارجي مثل جوجل, تندربيرد وغيرها, وذلك بإستخدام الخيارات في هذه الصفحة
|
||||||
AgendaExtSitesDesc=تسمح لك هذه الصفحة بتعريف مصادر خارجية للتقويم وذلك لرؤية الأحداث الخاصة بالتقويم الخاص بهم في تقويم دوليبار
|
AgendaExtSitesDesc=تسمح لك هذه الصفحة بتعريف مصادر خارجية للتقويم وذلك لرؤية الأحداث الخاصة بالتقويم الخاص بهم في تقويم دوليبار
|
||||||
ActionsEvents=الأحداث التي ستمكن دوليبار من إنشاء أعمال تلقائية في جدول الأعمال
|
ActionsEvents=الأحداث التي ستمكن دوليبار من إنشاء أعمال تلقائية في جدول الأعمال
|
||||||
|
##### Agenda event labels #####
|
||||||
|
NewCompanyToDolibarr=Third party %s created
|
||||||
|
ContractValidatedInDolibarr=عقد%s التأكد من صلاحيتها
|
||||||
|
PropalClosedSignedInDolibarr=اقتراح٪ الصورة قعت
|
||||||
|
PropalClosedRefusedInDolibarr=اقتراح%s رفض
|
||||||
PropalValidatedInDolibarr=تم تفعيل %s من الإقتراح
|
PropalValidatedInDolibarr=تم تفعيل %s من الإقتراح
|
||||||
|
PropalClassifiedBilledInDolibarr=اقتراح%s تصنف المنقار
|
||||||
InvoiceValidatedInDolibarr=تم توثيق %s من الفاتورة
|
InvoiceValidatedInDolibarr=تم توثيق %s من الفاتورة
|
||||||
InvoiceValidatedInDolibarrFromPos=فاتورة%s التأكد من صلاحيتها من نقاط البيع
|
InvoiceValidatedInDolibarrFromPos=فاتورة%s التأكد من صلاحيتها من نقاط البيع
|
||||||
InvoiceBackToDraftInDolibarr=الفاتورة %s للذهاب بها إلى حالة المسودة
|
InvoiceBackToDraftInDolibarr=الفاتورة %s للذهاب بها إلى حالة المسودة
|
||||||
InvoiceDeleteDolibarr=تم حذف %s من الفاتورة
|
InvoiceDeleteDolibarr=تم حذف %s من الفاتورة
|
||||||
|
InvoicePaidInDolibarr=تغيير فاتورة%s لدفع
|
||||||
|
InvoiceCanceledInDolibarr=فاتورة%s إلغاء
|
||||||
|
MemberValidatedInDolibarr=عضو%s التأكد من صلاحيتها
|
||||||
|
MemberResiliatedInDolibarr=Member %s terminated
|
||||||
|
MemberDeletedInDolibarr=عضو٪ الصورة حذفها
|
||||||
|
MemberSubscriptionAddedInDolibarr=وأضاف الاشتراك لعضو٪ الصورة
|
||||||
|
ShipmentValidatedInDolibarr=شحنة%s التأكد من صلاحيتها
|
||||||
|
ShipmentClassifyClosedInDolibarr=Shipment %s classify billed
|
||||||
|
ShipmentUnClassifyCloseddInDolibarr=Shipment %s classify reopened
|
||||||
|
ShipmentDeletedInDolibarr=شحنة٪ الصورة حذفها
|
||||||
|
OrderCreatedInDolibarr=Order %s created
|
||||||
OrderValidatedInDolibarr=تم توثيق %s من الطلب
|
OrderValidatedInDolibarr=تم توثيق %s من الطلب
|
||||||
OrderDeliveredInDolibarr=ترتيب %s حسب التسليم
|
OrderDeliveredInDolibarr=ترتيب %s حسب التسليم
|
||||||
OrderCanceledInDolibarr=تم إلغاء %s من الطلب
|
OrderCanceledInDolibarr=تم إلغاء %s من الطلب
|
||||||
@ -57,9 +73,9 @@ InterventionSentByEMail=التدخل%s إرسالها عن طريق البريد
|
|||||||
ProposalDeleted=Proposal deleted
|
ProposalDeleted=Proposal deleted
|
||||||
OrderDeleted=Order deleted
|
OrderDeleted=Order deleted
|
||||||
InvoiceDeleted=Invoice deleted
|
InvoiceDeleted=Invoice deleted
|
||||||
NewCompanyToDolibarr= تم إنشاء طرف ثالث أو خارجي
|
##### End agenda events #####
|
||||||
DateActionStart= تاريخ البدء
|
DateActionStart=تاريخ البدء
|
||||||
DateActionEnd= تاريخ النهاية
|
DateActionEnd=تاريخ النهاية
|
||||||
AgendaUrlOptions1=يمكنك أيضا إضافة المعايير التالية لترشيح النتائج:
|
AgendaUrlOptions1=يمكنك أيضا إضافة المعايير التالية لترشيح النتائج:
|
||||||
AgendaUrlOptions2=<b>تسجيل الدخول =٪ s إلى</b> تقييد الإخراج إلى الإجراءات التي أنشأتها أو المخصصة <b>للمستخدم%s.</b>
|
AgendaUrlOptions2=<b>تسجيل الدخول =٪ s إلى</b> تقييد الإخراج إلى الإجراءات التي أنشأتها أو المخصصة <b>للمستخدم%s.</b>
|
||||||
AgendaUrlOptions3=<b>وجينا =٪ s إلى</b> تقييد الإخراج إلى الإجراءات التي <b>يملكها%s</b> المستخدم.
|
AgendaUrlOptions3=<b>وجينا =٪ s إلى</b> تقييد الإخراج إلى الإجراءات التي <b>يملكها%s</b> المستخدم.
|
||||||
@ -86,7 +102,7 @@ MyAvailability=تواجدي
|
|||||||
ActionType=نوع الحدث
|
ActionType=نوع الحدث
|
||||||
DateActionBegin=تاريخ البدء الحدث
|
DateActionBegin=تاريخ البدء الحدث
|
||||||
CloneAction=الحدث استنساخ
|
CloneAction=الحدث استنساخ
|
||||||
ConfirmCloneEvent=هل أنت متأكد أنك تريد استنساخ <b>الحدث %s ؟</b>
|
ConfirmCloneEvent=Are you sure you want to clone the event <b>%s</b>?
|
||||||
RepeatEvent=تكرار الحدث
|
RepeatEvent=تكرار الحدث
|
||||||
EveryWeek=كل اسبوع
|
EveryWeek=كل اسبوع
|
||||||
EveryMonth=كل شهر
|
EveryMonth=كل شهر
|
||||||
|
|||||||
@ -28,6 +28,10 @@ Reconciliation=المصالحة
|
|||||||
RIB=رقم الحساب المصرفي
|
RIB=رقم الحساب المصرفي
|
||||||
IBAN=عدد إيبان
|
IBAN=عدد إيبان
|
||||||
BIC=بيك / سويفت عدد
|
BIC=بيك / سويفت عدد
|
||||||
|
SwiftValid=BIC/SWIFT valid
|
||||||
|
SwiftVNotalid=BIC/SWIFT not valid
|
||||||
|
IbanValid=BAN valid
|
||||||
|
IbanNotValid=BAN not valid
|
||||||
StandingOrders=Direct Debit orders
|
StandingOrders=Direct Debit orders
|
||||||
StandingOrder=Direct debit order
|
StandingOrder=Direct debit order
|
||||||
AccountStatement=كشف حساب
|
AccountStatement=كشف حساب
|
||||||
@ -41,7 +45,7 @@ BankAccountOwner=اسم صاحب الحساب
|
|||||||
BankAccountOwnerAddress=معالجة حساب المالك
|
BankAccountOwnerAddress=معالجة حساب المالك
|
||||||
RIBControlError=التحقق من تكامل القيم يفشل. وهذا يعني حصول على معلومات عن هذا رقم الحساب ليست كاملة أو خاطئة (ارجع البلد والأرقام وIBAN).
|
RIBControlError=التحقق من تكامل القيم يفشل. وهذا يعني حصول على معلومات عن هذا رقم الحساب ليست كاملة أو خاطئة (ارجع البلد والأرقام وIBAN).
|
||||||
CreateAccount=إنشاء حساب
|
CreateAccount=إنشاء حساب
|
||||||
NewAccount=حساب جديد
|
NewBankAccount=حساب جديد
|
||||||
NewFinancialAccount=الحساب المالي الجديد
|
NewFinancialAccount=الحساب المالي الجديد
|
||||||
MenuNewFinancialAccount=الحساب المالي الجديد
|
MenuNewFinancialAccount=الحساب المالي الجديد
|
||||||
EditFinancialAccount=تحرير الحساب
|
EditFinancialAccount=تحرير الحساب
|
||||||
@ -53,67 +57,68 @@ BankType2=الحساب النقدي
|
|||||||
AccountsArea=حسابات المنطقة
|
AccountsArea=حسابات المنطقة
|
||||||
AccountCard=حساب بطاقة
|
AccountCard=حساب بطاقة
|
||||||
DeleteAccount=حذف حساب
|
DeleteAccount=حذف حساب
|
||||||
ConfirmDeleteAccount=هل أنت متأكد من أنك تريد حذف هذا الحساب؟
|
ConfirmDeleteAccount=Are you sure you want to delete this account?
|
||||||
Account=حساب
|
Account=حساب
|
||||||
BankTransactionByCategories=المعاملات المصرفية وفقا للفئات
|
BankTransactionByCategories=Bank entries by categories
|
||||||
BankTransactionForCategory=المعاملات المصرفية لفئة <b>%s</b>
|
BankTransactionForCategory=Bank entries for category <b>%s</b>
|
||||||
RemoveFromRubrique=إزالة الارتباط مع هذه الفئة
|
RemoveFromRubrique=إزالة الارتباط مع هذه الفئة
|
||||||
RemoveFromRubriqueConfirm=هل أنت متأكد من أنك تريد إزالة الربط بين الصفقة والفئة؟
|
RemoveFromRubriqueConfirm=Are you sure you want to remove link between the entry and the category?
|
||||||
ListBankTransactions=قائمة المعاملات المصرفية
|
ListBankTransactions=List of bank entries
|
||||||
IdTransaction=رقم المعاملات
|
IdTransaction=رقم المعاملات
|
||||||
BankTransactions=المعاملات المصرفية
|
BankTransactions=Bank entries
|
||||||
ListTransactions=قائمة المعاملات
|
ListTransactions=List entries
|
||||||
ListTransactionsByCategory=قائمة المعاملات / الفئة
|
ListTransactionsByCategory=List entries/category
|
||||||
TransactionsToConciliate=المعاملات التوفيق
|
TransactionsToConciliate=Entries to reconcile
|
||||||
Conciliable=Conciliable
|
Conciliable=Conciliable
|
||||||
Conciliate=التوفيق
|
Conciliate=التوفيق
|
||||||
Conciliation=توفيق
|
Conciliation=توفيق
|
||||||
|
ReconciliationLate=Reconciliation late
|
||||||
IncludeClosedAccount=وتشمل حسابات مغلقة
|
IncludeClosedAccount=وتشمل حسابات مغلقة
|
||||||
OnlyOpenedAccount=حسابات مفتوحة فقط
|
OnlyOpenedAccount=حسابات مفتوحة فقط
|
||||||
AccountToCredit=الحساب على الائتمان
|
AccountToCredit=الحساب على الائتمان
|
||||||
AccountToDebit=لحساب الخصم
|
AccountToDebit=لحساب الخصم
|
||||||
DisableConciliation=تعطيل ميزة التوفيق لهذا الحساب
|
DisableConciliation=تعطيل ميزة التوفيق لهذا الحساب
|
||||||
ConciliationDisabled=توفيق سمة المعوقين
|
ConciliationDisabled=توفيق سمة المعوقين
|
||||||
LinkedToAConciliatedTransaction=Linked to a conciliated transaction
|
LinkedToAConciliatedTransaction=Linked to a conciliated entry
|
||||||
StatusAccountOpened=فتح
|
StatusAccountOpened=فتح
|
||||||
StatusAccountClosed=مغلقة
|
StatusAccountClosed=مغلقة
|
||||||
AccountIdShort=عدد
|
AccountIdShort=عدد
|
||||||
LineRecord=المعاملات
|
LineRecord=المعاملات
|
||||||
AddBankRecord=إضافة المعاملات
|
AddBankRecord=Add entry
|
||||||
AddBankRecordLong=إضافة المعاملات يدويا
|
AddBankRecordLong=Add entry manually
|
||||||
ConciliatedBy=طريق التصالح
|
ConciliatedBy=طريق التصالح
|
||||||
DateConciliating=التوفيق التاريخ
|
DateConciliating=التوفيق التاريخ
|
||||||
BankLineConciliated=صفقة التصالح
|
BankLineConciliated=Entry reconciled
|
||||||
Reconciled=Reconciled
|
Reconciled=Reconciled
|
||||||
NotReconciled=Not reconciled
|
NotReconciled=Not reconciled
|
||||||
CustomerInvoicePayment=عملاء الدفع
|
CustomerInvoicePayment=عملاء الدفع
|
||||||
SupplierInvoicePayment=Supplier payment
|
SupplierInvoicePayment=المورد الدفع
|
||||||
SubscriptionPayment=Subscription payment
|
SubscriptionPayment=دفع الاشتراك
|
||||||
WithdrawalPayment=انسحاب الدفع
|
WithdrawalPayment=انسحاب الدفع
|
||||||
SocialContributionPayment=اجتماعي / دفع الضرائب المالية
|
SocialContributionPayment=اجتماعي / دفع الضرائب المالية
|
||||||
BankTransfer=حوالة مصرفية
|
BankTransfer=حوالة مصرفية
|
||||||
BankTransfers=التحويلات المصرفية
|
BankTransfers=التحويلات المصرفية
|
||||||
MenuBankInternalTransfer=Internal transfer
|
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)
|
TransferDesc=Transfer from one account to another one, Dolibarr will write two record (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> ٪ وقد سجلت ق.
|
||||||
CheckTransmitter=الإرسال
|
CheckTransmitter=الإرسال
|
||||||
ValidateCheckReceipt=التحقق من صحة هذا الاستلام؟
|
ValidateCheckReceipt=Validate this check receipt?
|
||||||
ConfirmValidateCheckReceipt=هل أنت متأكد من ذلك فحص للتحقق من تلقي أي تغيير سيكون ممكنا بمجرد أن يتم ذلك؟
|
ConfirmValidateCheckReceipt=Are you sure you want to validate this check receipt, no change will be possible once this is done?
|
||||||
DeleteCheckReceipt=تأكد من ورود حذف هذا؟
|
DeleteCheckReceipt=Delete this check receipt?
|
||||||
ConfirmDeleteCheckReceipt=هل أنت متأكد من أنك تريد حذف هذا التحقق من ورود؟
|
ConfirmDeleteCheckReceipt=Are you sure you want to delete this check receipt?
|
||||||
BankChecks=الشيكات المصرفية
|
BankChecks=الشيكات المصرفية
|
||||||
BankChecksToReceipt=Checks awaiting deposit
|
BankChecksToReceipt=Checks awaiting deposit
|
||||||
ShowCheckReceipt=الاختيار إظهار تلقي الودائع
|
ShowCheckReceipt=الاختيار إظهار تلقي الودائع
|
||||||
NumberOfCheques=ملاحظة : للشيكات
|
NumberOfCheques=ملاحظة : للشيكات
|
||||||
DeleteTransaction=حذف المعاملات
|
DeleteTransaction=Delete entry
|
||||||
ConfirmDeleteTransaction=هل أنت متأكد من أنك تريد حذف هذه الصفقة؟
|
ConfirmDeleteTransaction=Are you sure you want to delete this entry?
|
||||||
ThisWillAlsoDeleteBankRecord=وهذا من شأنه أيضا حذف المتولدة المعاملات المصرفية
|
ThisWillAlsoDeleteBankRecord=This will also delete generated bank entry
|
||||||
BankMovements=حركات
|
BankMovements=حركات
|
||||||
PlannedTransactions=المخطط المعاملات
|
PlannedTransactions=Planned entries
|
||||||
Graph=الرسومات
|
Graph=الرسومات
|
||||||
ExportDataset_banque_1=المعاملات المصرفية وحساب
|
ExportDataset_banque_1=Bank entries and account statement
|
||||||
ExportDataset_banque_2=إيداع زلة
|
ExportDataset_banque_2=إيداع زلة
|
||||||
TransactionOnTheOtherAccount=صفقة على حساب الآخرين
|
TransactionOnTheOtherAccount=صفقة على حساب الآخرين
|
||||||
PaymentNumberUpdateSucceeded=Payment number updated successfully
|
PaymentNumberUpdateSucceeded=Payment number updated successfully
|
||||||
@ -121,7 +126,7 @@ PaymentNumberUpdateFailed=دفع عددا لا يمكن تحديث
|
|||||||
PaymentDateUpdateSucceeded=Payment date updated successfully
|
PaymentDateUpdateSucceeded=Payment date updated successfully
|
||||||
PaymentDateUpdateFailed=دفع حتى الآن لا يمكن تحديث
|
PaymentDateUpdateFailed=دفع حتى الآن لا يمكن تحديث
|
||||||
Transactions=المعاملات
|
Transactions=المعاملات
|
||||||
BankTransactionLine=المعاملات المصرفية
|
BankTransactionLine=Bank entry
|
||||||
AllAccounts=جميع المصرفية / حسابات نقدية
|
AllAccounts=جميع المصرفية / حسابات نقدية
|
||||||
BackToAccount=إلى حساب
|
BackToAccount=إلى حساب
|
||||||
ShowAllAccounts=وتبين للجميع الحسابات
|
ShowAllAccounts=وتبين للجميع الحسابات
|
||||||
@ -129,16 +134,16 @@ FutureTransaction=الصفقة في أجل المستقبل. أي وسيلة ل
|
|||||||
SelectChequeTransactionAndGenerate=حدد / تصفية الشيكات لتشمل في الاختيار استلام الودائع وانقر على "إنشاء".
|
SelectChequeTransactionAndGenerate=حدد / تصفية الشيكات لتشمل في الاختيار استلام الودائع وانقر على "إنشاء".
|
||||||
InputReceiptNumber=اختيار كشف حساب مصرفي ذات الصلة مع التوفيق. استخدام قيمة رقمية للفرز: YYYYMM أو YYYYMMDD
|
InputReceiptNumber=اختيار كشف حساب مصرفي ذات الصلة مع التوفيق. استخدام قيمة رقمية للفرز: YYYYMM أو YYYYMMDD
|
||||||
EventualyAddCategory=في نهاية المطاف، حدد الفئة التي لتصنيف السجلات
|
EventualyAddCategory=في نهاية المطاف، حدد الفئة التي لتصنيف السجلات
|
||||||
ToConciliate=To reconcile ?
|
ToConciliate=To reconcile?
|
||||||
ThenCheckLinesAndConciliate=ثم، والتحقق من خطوط الحالية في بيان البنك وانقر
|
ThenCheckLinesAndConciliate=ثم، والتحقق من خطوط الحالية في بيان البنك وانقر
|
||||||
DefaultRIB=BAN الافتراضي
|
DefaultRIB=BAN الافتراضي
|
||||||
AllRIB=جميع BAN
|
AllRIB=جميع BAN
|
||||||
LabelRIB=BAN تسمية
|
LabelRIB=BAN تسمية
|
||||||
NoBANRecord=لا يوجد سجل BAN
|
NoBANRecord=لا يوجد سجل BAN
|
||||||
DeleteARib=حذف سجل BAN
|
DeleteARib=حذف سجل BAN
|
||||||
ConfirmDeleteRib=هل أنت متأكد أنك تريد حذف هذا السجل BAN؟
|
ConfirmDeleteRib=Are you sure you want to delete this BAN record?
|
||||||
RejectCheck=تحقق عاد
|
RejectCheck=تحقق عاد
|
||||||
ConfirmRejectCheck=هل أنت متأكد أنك تريد وضع علامة هذا الاختيار مرفوضا؟
|
ConfirmRejectCheck=Are you sure you want to mark this check as rejected?
|
||||||
RejectCheckDate=تاريخ أعيد الاختيار
|
RejectCheckDate=تاريخ أعيد الاختيار
|
||||||
CheckRejected=تحقق عاد
|
CheckRejected=تحقق عاد
|
||||||
CheckRejectedAndInvoicesReopened=تحقق عاد والفواتير فتح
|
CheckRejectedAndInvoicesReopened=تحقق عاد والفواتير فتح
|
||||||
|
|||||||
@ -41,7 +41,7 @@ ConsumedBy=يستهلكها
|
|||||||
NotConsumed=لا يستهلك
|
NotConsumed=لا يستهلك
|
||||||
NoReplacableInvoice=لا الفواتير replacable
|
NoReplacableInvoice=لا الفواتير replacable
|
||||||
NoInvoiceToCorrect=أي فاتورة لتصحيح
|
NoInvoiceToCorrect=أي فاتورة لتصحيح
|
||||||
InvoiceHasAvoir=تصحيح واحدة أو عدة الفواتير
|
InvoiceHasAvoir=Was source of one or several credit notes
|
||||||
CardBill=فاتورة بطاقة
|
CardBill=فاتورة بطاقة
|
||||||
PredefinedInvoices=الفواتير مسبقا
|
PredefinedInvoices=الفواتير مسبقا
|
||||||
Invoice=فاتورة
|
Invoice=فاتورة
|
||||||
@ -56,14 +56,14 @@ SupplierBill=فاتورة المورد
|
|||||||
SupplierBills=فاتورة الاتصالات
|
SupplierBills=فاتورة الاتصالات
|
||||||
Payment=الدفع
|
Payment=الدفع
|
||||||
PaymentBack=دفع العودة
|
PaymentBack=دفع العودة
|
||||||
CustomerInvoicePaymentBack=Payment back
|
CustomerInvoicePaymentBack=دفع العودة
|
||||||
Payments=المدفوعات
|
Payments=المدفوعات
|
||||||
PaymentsBack=عودة المدفوعات
|
PaymentsBack=عودة المدفوعات
|
||||||
paymentInInvoiceCurrency=in invoices currency
|
paymentInInvoiceCurrency=in invoices currency
|
||||||
PaidBack=تسديدها
|
PaidBack=تسديدها
|
||||||
DeletePayment=حذف الدفع
|
DeletePayment=حذف الدفع
|
||||||
ConfirmDeletePayment=هل أنت متأكد من أنك تريد حذف هذا المبلغ؟
|
ConfirmDeletePayment=Are you sure you want to delete this payment?
|
||||||
ConfirmConvertToReduc=هل تريد تحويل هذه القروض إلى الودائع أو علما مطلقة الخصم؟ <br> المبلغ حتى يتم حفظ جميع الخصومات ويمكن استخدام خصم لحالي أو مستقبلي الفاتورة لهذا العميل.
|
ConfirmConvertToReduc=Do you want to convert this credit note or deposit into an absolute discount?<br>The amount will so be saved among all discounts and could be used as a discount for a current or a future invoice for this customer.
|
||||||
SupplierPayments=الموردين والمدفوعات
|
SupplierPayments=الموردين والمدفوعات
|
||||||
ReceivedPayments=تلقت مدفوعات
|
ReceivedPayments=تلقت مدفوعات
|
||||||
ReceivedCustomersPayments=المدفوعات المقبوضة من الزبائن
|
ReceivedCustomersPayments=المدفوعات المقبوضة من الزبائن
|
||||||
@ -75,6 +75,8 @@ PaymentsAlreadyDone=المدفوعات قد فعلت
|
|||||||
PaymentsBackAlreadyDone=المدفوعات يعود بالفعل القيام به
|
PaymentsBackAlreadyDone=المدفوعات يعود بالفعل القيام به
|
||||||
PaymentRule=دفع الحكم
|
PaymentRule=دفع الحكم
|
||||||
PaymentMode=نوع الدفع
|
PaymentMode=نوع الدفع
|
||||||
|
PaymentTypeDC=Debit/Credit Card
|
||||||
|
PaymentTypePP=PayPal
|
||||||
IdPaymentMode=Payment type (id)
|
IdPaymentMode=Payment type (id)
|
||||||
LabelPaymentMode=Payment type (label)
|
LabelPaymentMode=Payment type (label)
|
||||||
PaymentModeShort=نوع الدفع
|
PaymentModeShort=نوع الدفع
|
||||||
@ -156,14 +158,14 @@ DraftBills=مشروع الفواتير
|
|||||||
CustomersDraftInvoices=مشروع فواتير العملاء
|
CustomersDraftInvoices=مشروع فواتير العملاء
|
||||||
SuppliersDraftInvoices=مشروع فواتير الموردين
|
SuppliersDraftInvoices=مشروع فواتير الموردين
|
||||||
Unpaid=غير المدفوعة
|
Unpaid=غير المدفوعة
|
||||||
ConfirmDeleteBill=هل أنت متأكد من أنك تريد حذف هذه الفاتورة؟
|
ConfirmDeleteBill=Are you sure you want to delete this invoice?
|
||||||
ConfirmValidateBill=هل أنت متأكد أنك تريد التحقق من صحة هذه الفاتورة مع الإشارة <b>%s؟</b>
|
ConfirmValidateBill=Are you sure you want to validate this invoice with reference <b>%s</b>?
|
||||||
ConfirmUnvalidateBill=هل أنت متأكد أنك تريد تغيير <b>%s</b> فاتورة إلى وضع مشروع؟
|
ConfirmUnvalidateBill=Are you sure you want to change invoice <b>%s</b> to draft status?
|
||||||
ConfirmClassifyPaidBill=هل أنت متأكد من أنك تريد تغيير فاتورة <b>%s</b> لمركز paid؟
|
ConfirmClassifyPaidBill=Are you sure you want to change invoice <b>%s</b> to status paid?
|
||||||
ConfirmCancelBill=هل أنت متأكد من أنك تريد إلغاء الفاتورة <b>%s؟</b>
|
ConfirmCancelBill=Are you sure you want to cancel invoice <b>%s</b>?
|
||||||
ConfirmCancelBillQuestion=لماذا تريدها لتصنيف هذه الفاتورة 'المهجورة؟
|
ConfirmCancelBillQuestion=Why do you want to classify this invoice 'abandoned'?
|
||||||
ConfirmClassifyPaidPartially=هل أنت متأكد من أنك تريد تغيير فاتورة <b>%s</b> لمركز paid؟
|
ConfirmClassifyPaidPartially=Are you sure you want to change invoice <b>%s</b> to status paid?
|
||||||
ConfirmClassifyPaidPartiallyQuestion=هذه الفاتورة لم تدفع بالكامل. ما هي أسباب قريبة لك هذه الفاتورة؟
|
ConfirmClassifyPaidPartiallyQuestion=This invoice has not been paid completely. What are reasons for you to close this invoice?
|
||||||
ConfirmClassifyPaidPartiallyReasonAvoir=تبقى بدون أجر <b>(%s%s) هو</b> الخصم الممنوح لأنه تم السداد قبل الأجل. I تسوية الضريبة على القيمة المضافة مع ملاحظة الائتمان.
|
ConfirmClassifyPaidPartiallyReasonAvoir=تبقى بدون أجر <b>(%s%s) هو</b> الخصم الممنوح لأنه تم السداد قبل الأجل. I تسوية الضريبة على القيمة المضافة مع ملاحظة الائتمان.
|
||||||
ConfirmClassifyPaidPartiallyReasonDiscountNoVat=تبقى بدون أجر <b>(%s%s) هو</b> الخصم الممنوح لأنه تم السداد قبل الأجل. أنا أقبل أن تفقد ضريبة القيمة المضافة على هذا الخصم.
|
ConfirmClassifyPaidPartiallyReasonDiscountNoVat=تبقى بدون أجر <b>(%s%s) هو</b> الخصم الممنوح لأنه تم السداد قبل الأجل. أنا أقبل أن تفقد ضريبة القيمة المضافة على هذا الخصم.
|
||||||
ConfirmClassifyPaidPartiallyReasonDiscountVat=تبقى بدون أجر <b>(%s%s) هو</b> الخصم الممنوح لأنه تم السداد قبل الأجل. I استرداد ضريبة القيمة المضافة على هذا الخصم دون مذكرة الائتمان.
|
ConfirmClassifyPaidPartiallyReasonDiscountVat=تبقى بدون أجر <b>(%s%s) هو</b> الخصم الممنوح لأنه تم السداد قبل الأجل. I استرداد ضريبة القيمة المضافة على هذا الخصم دون مذكرة الائتمان.
|
||||||
@ -178,9 +180,9 @@ ConfirmClassifyPaidPartiallyReasonProductReturnedDesc=ويستخدم هذا ال
|
|||||||
ConfirmClassifyPaidPartiallyReasonOtherDesc=استخدام هذا الخيار إذا كان كل ما لا يتناسب مع غيرها ، على سبيل المثال في الحالة التالية : <br> -- دفع ليست كاملة لأن بعض المنتجات شحنت العودة <br> -- أهم من المبلغ المطالب به لأن الخصم هو نسيان <br> في جميع الحالات ، والمبالغة في المبلغ المطالب به لا بد من تصحيحه في نظام المحاسبة عن طريق إنشاء الائتمان المذكرة.
|
ConfirmClassifyPaidPartiallyReasonOtherDesc=استخدام هذا الخيار إذا كان كل ما لا يتناسب مع غيرها ، على سبيل المثال في الحالة التالية : <br> -- دفع ليست كاملة لأن بعض المنتجات شحنت العودة <br> -- أهم من المبلغ المطالب به لأن الخصم هو نسيان <br> في جميع الحالات ، والمبالغة في المبلغ المطالب به لا بد من تصحيحه في نظام المحاسبة عن طريق إنشاء الائتمان المذكرة.
|
||||||
ConfirmClassifyAbandonReasonOther=أخرى
|
ConfirmClassifyAbandonReasonOther=أخرى
|
||||||
ConfirmClassifyAbandonReasonOtherDesc=هذا الخيار وسوف يستخدم في جميع الحالات الأخرى. على سبيل المثال لأنك من خطة لإقامة استبدال الفاتورة.
|
ConfirmClassifyAbandonReasonOtherDesc=هذا الخيار وسوف يستخدم في جميع الحالات الأخرى. على سبيل المثال لأنك من خطة لإقامة استبدال الفاتورة.
|
||||||
ConfirmCustomerPayment=هل تؤكد هذه الدفعة المدخلات ل <b>%s</b> %s ؟
|
ConfirmCustomerPayment=Do you confirm this payment input for <b>%s</b> %s?
|
||||||
ConfirmSupplierPayment=هل تؤكد هذه الدفعة المدخلات ل <b>%s</b> %s؟
|
ConfirmSupplierPayment=Do you confirm this payment input for <b>%s</b> %s?
|
||||||
ConfirmValidatePayment=هل أنت متأكد أنك تريد التحقق من صحة هذا الدفع؟ لم يطرأ أي تغيير يمكن الدفع مرة واحدة على صحتها.
|
ConfirmValidatePayment=Are you sure you want to validate this payment? No change can be made once payment is validated.
|
||||||
ValidateBill=التحقق من صحة الفواتير
|
ValidateBill=التحقق من صحة الفواتير
|
||||||
UnvalidateBill=Unvalidate فاتورة
|
UnvalidateBill=Unvalidate فاتورة
|
||||||
NumberOfBills=ملاحظة : من الفواتير
|
NumberOfBills=ملاحظة : من الفواتير
|
||||||
@ -206,7 +208,7 @@ Rest=بانتظار
|
|||||||
AmountExpected=المبلغ المطالب به
|
AmountExpected=المبلغ المطالب به
|
||||||
ExcessReceived=تلقى الزائدة
|
ExcessReceived=تلقى الزائدة
|
||||||
EscompteOffered=عرض الخصم (الدفع قبل الأجل)
|
EscompteOffered=عرض الخصم (الدفع قبل الأجل)
|
||||||
EscompteOfferedShort=Discount
|
EscompteOfferedShort=تخفيض السعر
|
||||||
SendBillRef=تقديم فاتورة%s
|
SendBillRef=تقديم فاتورة%s
|
||||||
SendReminderBillRef=تقديم فاتورة%s (تذكير)
|
SendReminderBillRef=تقديم فاتورة%s (تذكير)
|
||||||
StandingOrders=Direct debit orders
|
StandingOrders=Direct debit orders
|
||||||
@ -269,7 +271,7 @@ Deposits=الودائع
|
|||||||
DiscountFromCreditNote=خصم من دائن %s
|
DiscountFromCreditNote=خصم من دائن %s
|
||||||
DiscountFromDeposit=المدفوعات من فاتورة %s
|
DiscountFromDeposit=المدفوعات من فاتورة %s
|
||||||
AbsoluteDiscountUse=هذا النوع من الائتمان يمكن استخدامها على الفاتورة قبل المصادقة
|
AbsoluteDiscountUse=هذا النوع من الائتمان يمكن استخدامها على الفاتورة قبل المصادقة
|
||||||
CreditNoteDepositUse=الفاتورة يجب أن يصادق على استخدام هذه الأرصدة ملك
|
CreditNoteDepositUse=Invoice must be validated to use this kind of credits
|
||||||
NewGlobalDiscount=تحديد خصم جديد
|
NewGlobalDiscount=تحديد خصم جديد
|
||||||
NewRelativeDiscount=خصم جديد النسبية
|
NewRelativeDiscount=خصم جديد النسبية
|
||||||
NoteReason=ملاحظة / السبب
|
NoteReason=ملاحظة / السبب
|
||||||
@ -295,15 +297,15 @@ RemoveDiscount=إزالة الخصم
|
|||||||
WatermarkOnDraftBill=مشاريع مائية على فواتير (إذا كانت فارغة لا شيء)
|
WatermarkOnDraftBill=مشاريع مائية على فواتير (إذا كانت فارغة لا شيء)
|
||||||
InvoiceNotChecked=لا فاتورة مختارة
|
InvoiceNotChecked=لا فاتورة مختارة
|
||||||
CloneInvoice=استنساخ الفاتورة
|
CloneInvoice=استنساخ الفاتورة
|
||||||
ConfirmCloneInvoice=هل أنت متأكد من استنساخ هذه الفاتورة <b>%s؟</b>
|
ConfirmCloneInvoice=Are you sure you want to clone this invoice <b>%s</b>?
|
||||||
DisabledBecauseReplacedInvoice=العمل والمعوقين بسبب الفاتورة قد استبدل
|
DisabledBecauseReplacedInvoice=العمل والمعوقين بسبب الفاتورة قد استبدل
|
||||||
DescTaxAndDividendsArea=تقدم هذا المجال ملخص لجميع المبالغ المدفوعة للنفقات الخاصة. يتم تضمين السجلات فقط مع دفع خلال السنة الثابتة هنا.
|
DescTaxAndDividendsArea=This area presents a summary of all payments made for special expenses. Only record with payment during the fixed year are included here.
|
||||||
NbOfPayments=ملاحظة : للمدفوعات
|
NbOfPayments=ملاحظة : للمدفوعات
|
||||||
SplitDiscount=انقسام في الخصم
|
SplitDiscount=انقسام في الخصم
|
||||||
ConfirmSplitDiscount=هل أنت متأكد من أن هذا الانقسام خصم <b>%s</b> %s الى 2 خصومات أقل؟
|
ConfirmSplitDiscount=Are you sure you want to split this discount of <b>%s</b> %s into 2 lower discounts?
|
||||||
TypeAmountOfEachNewDiscount=مقدار مساهمة كل من جزأين :
|
TypeAmountOfEachNewDiscount=مقدار مساهمة كل من جزأين :
|
||||||
TotalOfTwoDiscountMustEqualsOriginal=مجموعه جديدتين الخصم يجب أن تكون مساوية للخصم المبلغ الأصلي.
|
TotalOfTwoDiscountMustEqualsOriginal=مجموعه جديدتين الخصم يجب أن تكون مساوية للخصم المبلغ الأصلي.
|
||||||
ConfirmRemoveDiscount=هل أنت متأكد من أنك تريد إزالة هذا الخصم؟
|
ConfirmRemoveDiscount=Are you sure you want to remove this discount?
|
||||||
RelatedBill=الفاتورة ذات الصلة
|
RelatedBill=الفاتورة ذات الصلة
|
||||||
RelatedBills=الفواتير ذات الصلة
|
RelatedBills=الفواتير ذات الصلة
|
||||||
RelatedCustomerInvoices=فواتير العملاء ذات صلة
|
RelatedCustomerInvoices=فواتير العملاء ذات صلة
|
||||||
@ -319,7 +321,7 @@ ListOfNextSituationInvoices=List of next situation invoices
|
|||||||
FrequencyPer_d=Every %s days
|
FrequencyPer_d=Every %s days
|
||||||
FrequencyPer_m=Every %s months
|
FrequencyPer_m=Every %s months
|
||||||
FrequencyPer_y=Every %s years
|
FrequencyPer_y=Every %s years
|
||||||
toolTipFrequency=Examples:<br /><b>Set 7 / day</b>: give a new invoice every 7 days<br /><b>Set 3 / month</b>: give a new invoice every 3 month
|
toolTipFrequency=Examples:<br /><b>Set 7, Day</b>: give a new invoice every 7 days<br /><b>Set 3, Month</b>: give a new invoice every 3 month
|
||||||
NextDateToExecution=Date for next invoice generation
|
NextDateToExecution=Date for next invoice generation
|
||||||
DateLastGeneration=Date of latest generation
|
DateLastGeneration=Date of latest generation
|
||||||
MaxPeriodNumber=Max nb of invoice generation
|
MaxPeriodNumber=Max nb of invoice generation
|
||||||
@ -330,6 +332,7 @@ GeneratedFromRecurringInvoice=Generated from template recurring invoice %s
|
|||||||
DateIsNotEnough=Date not reached yet
|
DateIsNotEnough=Date not reached yet
|
||||||
InvoiceGeneratedFromTemplate=Invoice %s generated from recurring template invoice %s
|
InvoiceGeneratedFromTemplate=Invoice %s generated from recurring template invoice %s
|
||||||
# PaymentConditions
|
# PaymentConditions
|
||||||
|
Statut=الحالة
|
||||||
PaymentConditionShortRECEP=فورا
|
PaymentConditionShortRECEP=فورا
|
||||||
PaymentConditionRECEP=فورا
|
PaymentConditionRECEP=فورا
|
||||||
PaymentConditionShort30D=30 يوما
|
PaymentConditionShort30D=30 يوما
|
||||||
@ -342,15 +345,15 @@ PaymentConditionShort60DENDMONTH=60 days of month-end
|
|||||||
PaymentCondition60DENDMONTH=Within 60 days following the end of the month
|
PaymentCondition60DENDMONTH=Within 60 days following the end of the month
|
||||||
PaymentConditionShortPT_DELIVERY=تسليم
|
PaymentConditionShortPT_DELIVERY=تسليم
|
||||||
PaymentConditionPT_DELIVERY=التسليم
|
PaymentConditionPT_DELIVERY=التسليم
|
||||||
PaymentConditionShortPT_ORDER=Order
|
PaymentConditionShortPT_ORDER=الطلبية
|
||||||
PaymentConditionPT_ORDER=على الطلب
|
PaymentConditionPT_ORDER=على الطلب
|
||||||
PaymentConditionShortPT_5050=50-50
|
PaymentConditionShortPT_5050=50-50
|
||||||
PaymentConditionPT_5050=50 ٪٪ مقدما، 50 ٪٪ عند التسليم
|
PaymentConditionPT_5050=50 ٪٪ مقدما، 50 ٪٪ عند التسليم
|
||||||
FixAmount=كمية الإصلاح
|
FixAmount=كمية الإصلاح
|
||||||
VarAmount=مقدار متغير (٪٪ TOT).
|
VarAmount=مقدار متغير (٪٪ TOT).
|
||||||
# PaymentType
|
# PaymentType
|
||||||
PaymentTypeVIR=Bank transfer
|
PaymentTypeVIR=حوالة مصرفية
|
||||||
PaymentTypeShortVIR=Bank transfer
|
PaymentTypeShortVIR=حوالة مصرفية
|
||||||
PaymentTypePRE=Direct debit payment order
|
PaymentTypePRE=Direct debit payment order
|
||||||
PaymentTypeShortPRE=Debit payment order
|
PaymentTypeShortPRE=Debit payment order
|
||||||
PaymentTypeLIQ=نقدا
|
PaymentTypeLIQ=نقدا
|
||||||
@ -364,7 +367,7 @@ PaymentTypeShortTIP=TIP Payment
|
|||||||
PaymentTypeVAD=على خط التسديد
|
PaymentTypeVAD=على خط التسديد
|
||||||
PaymentTypeShortVAD=على خط التسديد
|
PaymentTypeShortVAD=على خط التسديد
|
||||||
PaymentTypeTRA=Bank draft
|
PaymentTypeTRA=Bank draft
|
||||||
PaymentTypeShortTRA=Draft
|
PaymentTypeShortTRA=مسودة
|
||||||
PaymentTypeFAC=عامل
|
PaymentTypeFAC=عامل
|
||||||
PaymentTypeShortFAC=عامل
|
PaymentTypeShortFAC=عامل
|
||||||
BankDetails=التفاصيل المصرفية
|
BankDetails=التفاصيل المصرفية
|
||||||
@ -421,6 +424,7 @@ ShowUnpaidAll=وتظهر جميع الفواتير غير المسددة
|
|||||||
ShowUnpaidLateOnly=وتبين في وقت متأخر من الفواتير غير المدفوعة فقط
|
ShowUnpaidLateOnly=وتبين في وقت متأخر من الفواتير غير المدفوعة فقط
|
||||||
PaymentInvoiceRef=دفع فاتورة %s
|
PaymentInvoiceRef=دفع فاتورة %s
|
||||||
ValidateInvoice=تحقق من صحة الفواتير
|
ValidateInvoice=تحقق من صحة الفواتير
|
||||||
|
ValidateInvoices=Validate invoices
|
||||||
Cash=نقد
|
Cash=نقد
|
||||||
Reported=تأخر
|
Reported=تأخر
|
||||||
DisabledBecausePayments=غير ممكن لأن هناك بعض المدفوعات
|
DisabledBecausePayments=غير ممكن لأن هناك بعض المدفوعات
|
||||||
@ -445,6 +449,7 @@ PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice templat
|
|||||||
TerreNumRefModelDesc1=عودة عدد مع الشكل syymm NNNN عن الفواتير القياسية و٪ syymm-NNNN لتلاحظ الائتمان حيث هو YY العام٪، مم هو الشهر وnnnn هو تسلسل مع أي انقطاع وعدم العودة إلى 0
|
TerreNumRefModelDesc1=عودة عدد مع الشكل syymm NNNN عن الفواتير القياسية و٪ syymm-NNNN لتلاحظ الائتمان حيث هو YY العام٪، مم هو الشهر وnnnn هو تسلسل مع أي انقطاع وعدم العودة إلى 0
|
||||||
MarsNumRefModelDesc1=عودة عدد مع الشكل syymm NNNN عن الفواتير القياسية٪،٪ syymm-NNNN عن الفواتير استبدال،٪ syymm-NNNN لفواتير الودائع و٪ syymm-NNNN لتلاحظ الائتمان حيث هو YY العام، مم هو الشهر وnnnn هو تسلسل مع عدم وجود كسر وعدم العودة إلى 0
|
MarsNumRefModelDesc1=عودة عدد مع الشكل syymm NNNN عن الفواتير القياسية٪،٪ syymm-NNNN عن الفواتير استبدال،٪ syymm-NNNN لفواتير الودائع و٪ syymm-NNNN لتلاحظ الائتمان حيث هو YY العام، مم هو الشهر وnnnn هو تسلسل مع عدم وجود كسر وعدم العودة إلى 0
|
||||||
TerreNumRefModelError=وهناك مشروع قانون بدءا من دولار ويوجد بالفعل syymm لا تتفق مع هذا النموذج من التسلسل. إزالة أو تغيير تسميتها لتصبح لتفعيل هذه الوحدة.
|
TerreNumRefModelError=وهناك مشروع قانون بدءا من دولار ويوجد بالفعل syymm لا تتفق مع هذا النموذج من التسلسل. إزالة أو تغيير تسميتها لتصبح لتفعيل هذه الوحدة.
|
||||||
|
CactusNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for credit notes and %syymm-nnnn for deposit invoices where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
|
||||||
##### Types de contacts #####
|
##### Types de contacts #####
|
||||||
TypeContact_facture_internal_SALESREPFOLL=ممثل العميل متابعة فاتورة
|
TypeContact_facture_internal_SALESREPFOLL=ممثل العميل متابعة فاتورة
|
||||||
TypeContact_facture_external_BILLING=الزبون فاتورة الاتصال
|
TypeContact_facture_external_BILLING=الزبون فاتورة الاتصال
|
||||||
@ -472,7 +477,7 @@ NoSituations=لا حالات مفتوحة
|
|||||||
InvoiceSituationLast=الفاتورة النهائية والعامة
|
InvoiceSituationLast=الفاتورة النهائية والعامة
|
||||||
PDFCrevetteSituationNumber=Situation N°%s
|
PDFCrevetteSituationNumber=Situation N°%s
|
||||||
PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
|
PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
|
||||||
PDFCrevetteSituationInvoiceTitle=Situation invoice
|
PDFCrevetteSituationInvoiceTitle=فاتورة الوضع
|
||||||
PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
|
PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
|
||||||
TotalSituationInvoice=Total situation
|
TotalSituationInvoice=Total situation
|
||||||
invoiceLineProgressError=Invoice line progress can't be greater than or equal to the next invoice line
|
invoiceLineProgressError=Invoice line progress can't be greater than or equal to the next invoice line
|
||||||
@ -481,5 +486,6 @@ ToCreateARecurringInvoice=To create a recurring invoice for this contract, first
|
|||||||
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
|
DeleteRepeatableInvoice=Delete template invoice
|
||||||
ConfirmDeleteRepeatableInvoice=Are your sure you want to delete the template invoice ?
|
ConfirmDeleteRepeatableInvoice=Are your sure you want to delete the template invoice?
|
||||||
|
CreateOneBillByThird=Create one invoice per third party (otherwise, one invoice per order)
|
||||||
|
BillCreated=%s bill(s) created
|
||||||
|
|||||||
@ -10,7 +10,7 @@ NewAction=حدث جديد
|
|||||||
AddAction=إنشاء الحدث
|
AddAction=إنشاء الحدث
|
||||||
AddAnAction=إنشاء حدث
|
AddAnAction=إنشاء حدث
|
||||||
AddActionRendezVous=إنشاء الحدث RENDEZ المفكرة
|
AddActionRendezVous=إنشاء الحدث RENDEZ المفكرة
|
||||||
ConfirmDeleteAction=هل أنت متأكد أنك تريد حذف هذا الحدث؟
|
ConfirmDeleteAction=Are you sure you want to delete this event?
|
||||||
CardAction=بطاقة العمل
|
CardAction=بطاقة العمل
|
||||||
ActionOnCompany=Related company
|
ActionOnCompany=Related company
|
||||||
ActionOnContact=Related contact
|
ActionOnContact=Related contact
|
||||||
@ -28,7 +28,7 @@ ShowCustomer=وتبين للعملاء
|
|||||||
ShowProspect=وتظهر احتمال
|
ShowProspect=وتظهر احتمال
|
||||||
ListOfProspects=قائمة التوقعات
|
ListOfProspects=قائمة التوقعات
|
||||||
ListOfCustomers=قائمة العملاء
|
ListOfCustomers=قائمة العملاء
|
||||||
LastDoneTasks=Latest %s completed tasks
|
LastDoneTasks=Latest %s completed actions
|
||||||
LastActionsToDo=Oldest %s not completed actions
|
LastActionsToDo=Oldest %s not completed actions
|
||||||
DoneAndToDoActions=ويتم القيام بمهام
|
DoneAndToDoActions=ويتم القيام بمهام
|
||||||
DoneActions=إجراءات عمله
|
DoneActions=إجراءات عمله
|
||||||
@ -62,7 +62,7 @@ ActionAC_SHIP=إرسال الشحن عن طريق البريد
|
|||||||
ActionAC_SUP_ORD=أرسل النظام المورد عن طريق البريد
|
ActionAC_SUP_ORD=أرسل النظام المورد عن طريق البريد
|
||||||
ActionAC_SUP_INV=إرسال فاتورة المورد عن طريق البريد
|
ActionAC_SUP_INV=إرسال فاتورة المورد عن طريق البريد
|
||||||
ActionAC_OTH=آخر
|
ActionAC_OTH=آخر
|
||||||
ActionAC_OTH_AUTO=أخرى (أحداث إدراجها تلقائيا)
|
ActionAC_OTH_AUTO=أحداث إدراجها تلقائيا
|
||||||
ActionAC_MANUAL=أحداث إدراجها يدويا
|
ActionAC_MANUAL=أحداث إدراجها يدويا
|
||||||
ActionAC_AUTO=أحداث إدراجها تلقائيا
|
ActionAC_AUTO=أحداث إدراجها تلقائيا
|
||||||
Stats=إحصاءات المبيعات
|
Stats=إحصاءات المبيعات
|
||||||
|
|||||||
@ -2,9 +2,9 @@
|
|||||||
ErrorCompanyNameAlreadyExists=اسم الشركة ل ٪ موجود بالفعل. اختيار آخر.
|
ErrorCompanyNameAlreadyExists=اسم الشركة ل ٪ موجود بالفعل. اختيار آخر.
|
||||||
ErrorSetACountryFirst=المجموعة الأولى في البلد
|
ErrorSetACountryFirst=المجموعة الأولى في البلد
|
||||||
SelectThirdParty=تحديد طرف ثالث
|
SelectThirdParty=تحديد طرف ثالث
|
||||||
ConfirmDeleteCompany=هل أنت متأكد من أنك تريد حذف هذه الشركة وجميع المعلومات الموروث؟
|
ConfirmDeleteCompany=Are you sure you want to delete this company and all inherited information?
|
||||||
DeleteContact=حذف اتصال
|
DeleteContact=حذف اتصال
|
||||||
ConfirmDeleteContact=هل أنت متأكد من أنك تريد حذف هذا الاتصال ، وجميع الموروث من المعلومات؟
|
ConfirmDeleteContact=Are you sure you want to delete this contact and all inherited information?
|
||||||
MenuNewThirdParty=طرف ثالث جديد
|
MenuNewThirdParty=طرف ثالث جديد
|
||||||
MenuNewCustomer=عميل جديد
|
MenuNewCustomer=عميل جديد
|
||||||
MenuNewProspect=آفاق جديدة
|
MenuNewProspect=آفاق جديدة
|
||||||
@ -77,6 +77,7 @@ VATIsUsed=وتستخدم ضريبة القيمة المضافة
|
|||||||
VATIsNotUsed=ضريبة القيمة المضافة لا يستخدم
|
VATIsNotUsed=ضريبة القيمة المضافة لا يستخدم
|
||||||
CopyAddressFromSoc=Fill address with third party address
|
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
|
||||||
|
PaymentBankAccount=Payment bank account
|
||||||
##### Local Taxes #####
|
##### Local Taxes #####
|
||||||
LocalTax1IsUsed=استخدام الضرائب الثانية
|
LocalTax1IsUsed=استخدام الضرائب الثانية
|
||||||
LocalTax1IsUsedES= يتم استخدام الطاقة المتجددة
|
LocalTax1IsUsedES= يتم استخدام الطاقة المتجددة
|
||||||
@ -200,7 +201,7 @@ ProfId1MA=الرقم أ. 1 (RC)
|
|||||||
ProfId2MA=الرقم أ. 2 (Patente)
|
ProfId2MA=الرقم أ. 2 (Patente)
|
||||||
ProfId3MA=الرقم أ. 3 (إذا)
|
ProfId3MA=الرقم أ. 3 (إذا)
|
||||||
ProfId4MA=الرقم أ. 4 (CNSS)
|
ProfId4MA=الرقم أ. 4 (CNSS)
|
||||||
ProfId5MA=الرقم أ. 5 (I.C.E.)
|
ProfId5MA=Id. prof. 5 (I.C.E.)
|
||||||
ProfId6MA=-
|
ProfId6MA=-
|
||||||
ProfId1MX=الأستاذ رقم 1 (RFC).
|
ProfId1MX=الأستاذ رقم 1 (RFC).
|
||||||
ProfId2MX=الأستاذ رقم 2 (ر. P. IMSS)
|
ProfId2MX=الأستاذ رقم 2 (ر. P. IMSS)
|
||||||
@ -271,7 +272,7 @@ DefaultContact=الاتصال الافتراضية
|
|||||||
AddThirdParty=إنشاء طرف ثالث
|
AddThirdParty=إنشاء طرف ثالث
|
||||||
DeleteACompany=حذف شركة
|
DeleteACompany=حذف شركة
|
||||||
PersonalInformations=البيانات الشخصية
|
PersonalInformations=البيانات الشخصية
|
||||||
AccountancyCode=قانون المحاسبة
|
AccountancyCode=حساب محاسبي
|
||||||
CustomerCode=رمز العميل
|
CustomerCode=رمز العميل
|
||||||
SupplierCode=رمز المورد
|
SupplierCode=رمز المورد
|
||||||
CustomerCodeShort=كود العميل
|
CustomerCodeShort=كود العميل
|
||||||
@ -364,7 +365,7 @@ ImportDataset_company_3=التفاصيل المصرفية
|
|||||||
ImportDataset_company_4=الأطراف الثالث / مندوبي المبيعات (على مستخدمي مندوبي المبيعات للشركات)
|
ImportDataset_company_4=الأطراف الثالث / مندوبي المبيعات (على مستخدمي مندوبي المبيعات للشركات)
|
||||||
PriceLevel=مستوى الأسعار
|
PriceLevel=مستوى الأسعار
|
||||||
DeliveryAddress=عنوان التسليم
|
DeliveryAddress=عنوان التسليم
|
||||||
AddAddress=Add address
|
AddAddress=أضف معالجة
|
||||||
SupplierCategory=المورد الفئة
|
SupplierCategory=المورد الفئة
|
||||||
JuridicalStatus200=Independent
|
JuridicalStatus200=Independent
|
||||||
DeleteFile=حذف الملفات
|
DeleteFile=حذف الملفات
|
||||||
@ -392,10 +393,10 @@ LeopardNumRefModelDesc=العميل / المورد مدونة مجانية. هذ
|
|||||||
ManagingDirectors=مدير (ق) اسم (CEO، مدير، رئيس ...)
|
ManagingDirectors=مدير (ق) اسم (CEO، مدير، رئيس ...)
|
||||||
MergeOriginThirdparty=تكرار طرف ثالث (طرف ثالث كنت ترغب في حذف)
|
MergeOriginThirdparty=تكرار طرف ثالث (طرف ثالث كنت ترغب في حذف)
|
||||||
MergeThirdparties=دمج أطراف ثالثة
|
MergeThirdparties=دمج أطراف ثالثة
|
||||||
ConfirmMergeThirdparties=هل أنت متأكد أنك تريد دمج هذا الطرف الثالث في واحدة الحالي؟ كل الكائنات المرتبطة (الفواتير وأوامر، ...) سيتم نقلها إلى طرف ثالث الحالي لذلك سوف تكون قادرة على حذف واحد مكرر.
|
ConfirmMergeThirdparties=Are you sure you want to merge this third party into the current one? All linked objects (invoices, orders, ...) will be moved to current third party so you will be able to delete the duplicate one.
|
||||||
ThirdpartiesMergeSuccess=تم دمج Thirdparties
|
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.
|
ErrorThirdpartiesMerge=كان هناك خطأ عند حذف thirdparties. يرجى التحقق من السجل. وقد عادت التغييرات.
|
||||||
NewCustomerSupplierCodeProposed=New customer or supplier code suggested on duplicate code
|
NewCustomerSupplierCodeProposed=New customer or supplier code suggested on duplicate code
|
||||||
|
|||||||
@ -86,12 +86,13 @@ Refund=رد
|
|||||||
SocialContributionsPayments=الاجتماعية المدفوعات / الضرائب المالية
|
SocialContributionsPayments=الاجتماعية المدفوعات / الضرائب المالية
|
||||||
ShowVatPayment=وتظهر دفع ضريبة القيمة المضافة
|
ShowVatPayment=وتظهر دفع ضريبة القيمة المضافة
|
||||||
TotalToPay=على دفع ما مجموعه
|
TotalToPay=على دفع ما مجموعه
|
||||||
|
BalanceVisibilityDependsOnSortAndFilters=Balance is visible in this list only if table is sorted ascending on %s and filtered for 1 bank account
|
||||||
CustomerAccountancyCode=قانون محاسبة العملاء
|
CustomerAccountancyCode=قانون محاسبة العملاء
|
||||||
SupplierAccountancyCode=مورد قانون المحاسبة
|
SupplierAccountancyCode=مورد قانون المحاسبة
|
||||||
CustomerAccountancyCodeShort=الزبون. حساب. رمز
|
CustomerAccountancyCodeShort=الزبون. حساب. رمز
|
||||||
SupplierAccountancyCodeShort=سوب. حساب. رمز
|
SupplierAccountancyCodeShort=سوب. حساب. رمز
|
||||||
AccountNumber=رقم الحساب
|
AccountNumber=رقم الحساب
|
||||||
NewAccount=حساب جديد
|
NewAccountingAccount=حساب جديد
|
||||||
SalesTurnover=مبيعات
|
SalesTurnover=مبيعات
|
||||||
SalesTurnoverMinimum=الحد الأدنى حجم مبيعات
|
SalesTurnoverMinimum=الحد الأدنى حجم مبيعات
|
||||||
ByExpenseIncome=By expenses & incomes
|
ByExpenseIncome=By expenses & incomes
|
||||||
@ -169,7 +170,7 @@ InvoiceRef=فاتورة المرجع.
|
|||||||
CodeNotDef=لم يتم تعريف
|
CodeNotDef=لم يتم تعريف
|
||||||
WarningDepositsNotIncluded=لا يتم تضمين فواتير الودائع في هذا الإصدار مع هذه الوحدة المحاسبة.
|
WarningDepositsNotIncluded=لا يتم تضمين فواتير الودائع في هذا الإصدار مع هذه الوحدة المحاسبة.
|
||||||
DatePaymentTermCantBeLowerThanObjectDate=تاريخ الدفع الأجل لا يمكن أن يكون أقل من تاريخ الكائن.
|
DatePaymentTermCantBeLowerThanObjectDate=تاريخ الدفع الأجل لا يمكن أن يكون أقل من تاريخ الكائن.
|
||||||
Pcg_version=نسخة PCG
|
Pcg_version=Chart of accounts models
|
||||||
Pcg_type=نوع PCG
|
Pcg_type=نوع PCG
|
||||||
Pcg_subtype=PCG النوع الفرعي
|
Pcg_subtype=PCG النوع الفرعي
|
||||||
InvoiceLinesToDispatch=خطوط الفاتورة لارسال
|
InvoiceLinesToDispatch=خطوط الفاتورة لارسال
|
||||||
@ -184,11 +185,11 @@ CalculationRuleDescSupplier=وفقا لالمورد، واختيار الطري
|
|||||||
TurnoverPerProductInCommitmentAccountingNotRelevant=تقرير دوران لكل منتج، وعند استخدام طريقة <b>المحاسبة النقدية</b> غير ذي صلة. متاح فقط هذا التقرير عند استخدام طريقة <b>المشاركة المحاسبة</b> (انظر إعداد وحدة المحاسبة).
|
TurnoverPerProductInCommitmentAccountingNotRelevant=تقرير دوران لكل منتج، وعند استخدام طريقة <b>المحاسبة النقدية</b> غير ذي صلة. متاح فقط هذا التقرير عند استخدام طريقة <b>المشاركة المحاسبة</b> (انظر إعداد وحدة المحاسبة).
|
||||||
CalculationMode=وضع الحساب
|
CalculationMode=وضع الحساب
|
||||||
AccountancyJournal=كود المحاسبة مجلة
|
AccountancyJournal=كود المحاسبة مجلة
|
||||||
ACCOUNTING_VAT_SOLD_ACCOUNT=افتراضي كود المحاسبة لجمع ضريبة القيمة المضافة (ضريبة القيمة المضافة على المبيعات)
|
ACCOUNTING_VAT_SOLD_ACCOUNT=Accounting account by default for collecting VAT - VAT on sales (used if not defined on VAT dictionary setup)
|
||||||
ACCOUNTING_VAT_BUY_ACCOUNT=كود المحاسبة الافتراضية لضريبة القيمة المضافة المستردة (ضريبة القيمة المضافة على المشتريات)
|
ACCOUNTING_VAT_BUY_ACCOUNT=Accounting account by default for recovered VAT - VAT on purchases (used if not defined on VAT dictionary setup)
|
||||||
ACCOUNTING_VAT_PAY_ACCOUNT=كود المحاسبة الافتراضي للدفع ضريبة القيمة المضافة
|
ACCOUNTING_VAT_PAY_ACCOUNT=Accounting account by default for paying VAT
|
||||||
ACCOUNTING_ACCOUNT_CUSTOMER=كود المحاسبة افتراضيا لthirdparties العملاء
|
ACCOUNTING_ACCOUNT_CUSTOMER=Accounting account by default for customer third parties (used if not defined on third party card)
|
||||||
ACCOUNTING_ACCOUNT_SUPPLIER=كود المحاسبة افتراضيا لthirdparties المورد
|
ACCOUNTING_ACCOUNT_SUPPLIER=Accounting account by default for supplier third parties (used if not defined on third party card)
|
||||||
CloneTax=استنساخ ضريبة اجتماعية / مالية
|
CloneTax=استنساخ ضريبة اجتماعية / مالية
|
||||||
ConfirmCloneTax=تأكيد استنساخ ل/ دفع الضرائب المالية الاجتماعي
|
ConfirmCloneTax=تأكيد استنساخ ل/ دفع الضرائب المالية الاجتماعي
|
||||||
CloneTaxForNextMonth=استنساخ لشهر المقبل
|
CloneTaxForNextMonth=استنساخ لشهر المقبل
|
||||||
@ -199,6 +200,7 @@ BasedOnTwoFirstLettersOfVATNumberBeingDifferentFromYourCompanyCountry=استنا
|
|||||||
SameCountryCustomersWithVAT=تقرير عملاء الوطني
|
SameCountryCustomersWithVAT=تقرير عملاء الوطني
|
||||||
BasedOnTwoFirstLettersOfVATNumberBeingTheSameAsYourCompanyCountry=استنادا الى اثنين من الأحرف الأولى من رقم ضريبة القيمة المضافة هي نفس رمز البلد شركتك الخاصة لل
|
BasedOnTwoFirstLettersOfVATNumberBeingTheSameAsYourCompanyCountry=استنادا الى اثنين من الأحرف الأولى من رقم ضريبة القيمة المضافة هي نفس رمز البلد شركتك الخاصة لل
|
||||||
LinkedFichinter=Link to an intervention
|
LinkedFichinter=Link to an intervention
|
||||||
ImportDataset_tax_contrib=Import social/fiscal taxes
|
ImportDataset_tax_contrib=الضرائب الاجتماعية / المالية
|
||||||
ImportDataset_tax_vat=Import vat payments
|
ImportDataset_tax_vat=Vat payments
|
||||||
ErrorBankAccountNotFound=Error: Bank account not found
|
ErrorBankAccountNotFound=Error: Bank account not found
|
||||||
|
FiscalPeriod=Accounting period
|
||||||
|
|||||||
@ -32,13 +32,13 @@ NewContractSubscription=العقد الجديد / الاشتراك
|
|||||||
AddContract=إنشاء العقد
|
AddContract=إنشاء العقد
|
||||||
DeleteAContract=الغاء العقد
|
DeleteAContract=الغاء العقد
|
||||||
CloseAContract=وثيقة العقد
|
CloseAContract=وثيقة العقد
|
||||||
ConfirmDeleteAContract=هل أنت متأكد من أنك تريد حذف هذا العقد ، وجميع الخدمات التي تقدمها؟
|
ConfirmDeleteAContract=Are you sure you want to delete this contract and all its services?
|
||||||
ConfirmValidateContract=هل أنت متأكد أنك تريد التحقق من صحة هذا العقد؟
|
ConfirmValidateContract=Are you sure you want to validate this contract under name <b>%s</b>?
|
||||||
ConfirmCloseContract=هذا ستغلق جميع الخدمات (أو لا). هل أنت متأكد أنك تريد إغلاق هذا العقد؟
|
ConfirmCloseContract=This will close all services (active or not). Are you sure you want to close this contract?
|
||||||
ConfirmCloseService=هل أنت متأكد من أن وثيقة مع هذه الخدمة حتى الآن <b>٪ ق؟</b>
|
ConfirmCloseService=Are you sure you want to close this service with date <b>%s</b>?
|
||||||
ValidateAContract=مصادقة على العقود
|
ValidateAContract=مصادقة على العقود
|
||||||
ActivateService=تفعيل الخدمة
|
ActivateService=تفعيل الخدمة
|
||||||
ConfirmActivateService=هل أنت متأكد من تفعيل هذه الخدمة في تاريخ <b>٪ ق؟</b>
|
ConfirmActivateService=Are you sure you want to activate this service with date <b>%s</b>?
|
||||||
RefContract=إشارة العقد
|
RefContract=إشارة العقد
|
||||||
DateContract=تاريخ العقد
|
DateContract=تاريخ العقد
|
||||||
DateServiceActivate=تاريخ تفعيل الخدمة
|
DateServiceActivate=تاريخ تفعيل الخدمة
|
||||||
@ -69,10 +69,10 @@ DraftContracts=عقود مشاريع
|
|||||||
CloseRefusedBecauseOneServiceActive=العقد لا يمكن أن تكون مغلقة حيث يوجد واحد على الأقل من الخدمة على فتح
|
CloseRefusedBecauseOneServiceActive=العقد لا يمكن أن تكون مغلقة حيث يوجد واحد على الأقل من الخدمة على فتح
|
||||||
CloseAllContracts=إغلاق جميع العقود
|
CloseAllContracts=إغلاق جميع العقود
|
||||||
DeleteContractLine=عقد حذف السطر
|
DeleteContractLine=عقد حذف السطر
|
||||||
ConfirmDeleteContractLine=هل أنت متأكد من أنك تريد حذف هذا العقد الخط؟
|
ConfirmDeleteContractLine=Are you sure you want to delete this contract line?
|
||||||
MoveToAnotherContract=الانتقال إلى خدمة أخرى.
|
MoveToAnotherContract=الانتقال إلى خدمة أخرى.
|
||||||
ConfirmMoveToAnotherContract=الهدف الأول choosed جديدة العقد وأريد التأكد من هذه الخدمة للتحرك في هذا العقد.
|
ConfirmMoveToAnotherContract=الهدف الأول choosed جديدة العقد وأريد التأكد من هذه الخدمة للتحرك في هذا العقد.
|
||||||
ConfirmMoveToAnotherContractQuestion=اختيار القائمة التي العقد (من نفس الطرف الثالث) ، وترغب في نقل هذه الخدمة؟
|
ConfirmMoveToAnotherContractQuestion=Choose in which existing contract (of same third party), you want to move this service to?
|
||||||
PaymentRenewContractId=تجديد العقد الخط (رقم ٪)
|
PaymentRenewContractId=تجديد العقد الخط (رقم ٪)
|
||||||
ExpiredSince=تاريخ الانتهاء
|
ExpiredSince=تاريخ الانتهاء
|
||||||
NoExpiredServices=أي نوع من الخدمات انتهت نشط
|
NoExpiredServices=أي نوع من الخدمات انتهت نشط
|
||||||
|
|||||||
@ -1,22 +1,22 @@
|
|||||||
# Dolibarr language file - Source file is en_US - deliveries
|
# Dolibarr language file - Source file is en_US - deliveries
|
||||||
Delivery=تسليم
|
Delivery=تسليم
|
||||||
DeliveryRef=Ref Delivery
|
DeliveryRef=Ref Delivery
|
||||||
DeliveryCard=تسليم البطاقة
|
DeliveryCard=Receipt card
|
||||||
DeliveryOrder=من أجل تقديم
|
DeliveryOrder=من أجل تقديم
|
||||||
DeliveryDate=تاريخ التسليم
|
DeliveryDate=تاريخ التسليم
|
||||||
CreateDeliveryOrder=ومن أجل توليد التسليم
|
CreateDeliveryOrder=Generate delivery receipt
|
||||||
DeliveryStateSaved=الدولة تسليم أنقذت
|
DeliveryStateSaved=الدولة تسليم أنقذت
|
||||||
SetDeliveryDate=حدد تاريخ الشحن
|
SetDeliveryDate=حدد تاريخ الشحن
|
||||||
ValidateDeliveryReceipt=تحقق من إنجاز ورود
|
ValidateDeliveryReceipt=تحقق من إنجاز ورود
|
||||||
ValidateDeliveryReceiptConfirm=هل أنت متأكد من أن هذا الإنجاز تحقق من ورود؟
|
ValidateDeliveryReceiptConfirm=Are you sure you want to validate this delivery receipt?
|
||||||
DeleteDeliveryReceipt=حذف إيصال
|
DeleteDeliveryReceipt=حذف إيصال
|
||||||
DeleteDeliveryReceiptConfirm=هل أنت متأكد أنك تريد حذف <b>%s</b> إيصال؟
|
DeleteDeliveryReceiptConfirm=Are you sure you want to delete delivery receipt <b>%s</b>?
|
||||||
DeliveryMethod=طريقة التسليم
|
DeliveryMethod=طريقة التسليم
|
||||||
TrackingNumber=تتبع عدد
|
TrackingNumber=تتبع عدد
|
||||||
DeliveryNotValidated=التسليم يتم التحقق من صحة
|
DeliveryNotValidated=التسليم يتم التحقق من صحة
|
||||||
StatusDeliveryCanceled=Canceled
|
StatusDeliveryCanceled=ألغيت
|
||||||
StatusDeliveryDraft=Draft
|
StatusDeliveryDraft=مسودة
|
||||||
StatusDeliveryValidated=Received
|
StatusDeliveryValidated=تم الاستلام
|
||||||
# merou PDF model
|
# merou PDF model
|
||||||
NameAndSignature=الاسم والتوقيع :
|
NameAndSignature=الاسم والتوقيع :
|
||||||
ToAndDate=To___________________________________ على ____ / _____ / __________
|
ToAndDate=To___________________________________ على ____ / _____ / __________
|
||||||
|
|||||||
@ -6,7 +6,7 @@ Donor=الجهات المانحة
|
|||||||
AddDonation=إنشاء التبرع
|
AddDonation=إنشاء التبرع
|
||||||
NewDonation=منحة جديدة
|
NewDonation=منحة جديدة
|
||||||
DeleteADonation=حذف التبرع
|
DeleteADonation=حذف التبرع
|
||||||
ConfirmDeleteADonation=هل أنت متأكد أنك تريد حذف هذه الهبة؟
|
ConfirmDeleteADonation=Are you sure you want to delete this donation?
|
||||||
ShowDonation=مشاهدة التبرع
|
ShowDonation=مشاهدة التبرع
|
||||||
PublicDonation=تبرع العامة
|
PublicDonation=تبرع العامة
|
||||||
DonationsArea=التبرعات المنطقة
|
DonationsArea=التبرعات المنطقة
|
||||||
|
|||||||
@ -32,13 +32,13 @@ ECMDocsByProducts=الوثائق المرتبطة بالمنتجات
|
|||||||
ECMDocsByProjects=المستندات المرتبطة بالمشاريع
|
ECMDocsByProjects=المستندات المرتبطة بالمشاريع
|
||||||
ECMDocsByUsers=وثائق مرتبطة المستخدمين
|
ECMDocsByUsers=وثائق مرتبطة المستخدمين
|
||||||
ECMDocsByInterventions=وثائق مرتبطة بالتدخلات
|
ECMDocsByInterventions=وثائق مرتبطة بالتدخلات
|
||||||
|
ECMDocsByExpenseReports=Documents linked to expense reports
|
||||||
ECMNoDirectoryYet=لا الدليل
|
ECMNoDirectoryYet=لا الدليل
|
||||||
ShowECMSection=وتظهر الدليل
|
ShowECMSection=وتظهر الدليل
|
||||||
DeleteSection=إزالة الدليل
|
DeleteSection=إزالة الدليل
|
||||||
ConfirmDeleteSection=يمكنك التأكد من أنك تريد حذف الدليل <b>٪ ق؟</b>
|
ConfirmDeleteSection=Can you confirm you want to delete the directory <b>%s</b>?
|
||||||
ECMDirectoryForFiles=دليل النسبي للملفات
|
ECMDirectoryForFiles=دليل النسبي للملفات
|
||||||
CannotRemoveDirectoryContainsFiles=لا يمكن إزالتها لأنه يحتوي على بعض الملفات
|
CannotRemoveDirectoryContainsFiles=لا يمكن إزالتها لأنه يحتوي على بعض الملفات
|
||||||
ECMFileManager=مدير الملفات
|
ECMFileManager=مدير الملفات
|
||||||
ECMSelectASection=اختر دليل على ترك شجرة...
|
ECMSelectASection=اختر دليل على ترك شجرة...
|
||||||
DirNotSynchronizedSyncFirst=ويبدو أن هذا الدليل ليتم إنشاؤها أو تعديلها خارج وحدة ECM. يجب عليك النقر على زر "تحديث" لأول مرة لمزامنة القرص وقاعدة بيانات للحصول على محتويات هذا الدليل.
|
DirNotSynchronizedSyncFirst=ويبدو أن هذا الدليل ليتم إنشاؤها أو تعديلها خارج وحدة ECM. يجب عليك النقر على زر "تحديث" لأول مرة لمزامنة القرص وقاعدة بيانات للحصول على محتويات هذا الدليل.
|
||||||
|
|
||||||
|
|||||||
@ -69,8 +69,8 @@ ErrorLDAPSetupNotComplete=Dolibarr - LDAP المطابقة وليس كاملا.
|
|||||||
ErrorLDAPMakeManualTest=ألف. ldif الملف قد ولدت في الدليل ٪ s. انها محاولة لتحميل يدويا من سطر في الحصول على مزيد من المعلومات عن الأخطاء.
|
ErrorLDAPMakeManualTest=ألف. ldif الملف قد ولدت في الدليل ٪ s. انها محاولة لتحميل يدويا من سطر في الحصول على مزيد من المعلومات عن الأخطاء.
|
||||||
ErrorCantSaveADoneUserWithZeroPercentage=لا يمكن انقاذ عمل مع "المركز الخاص لم تبدأ" اذا الحقل "الذي قام به" كما شغلها.
|
ErrorCantSaveADoneUserWithZeroPercentage=لا يمكن انقاذ عمل مع "المركز الخاص لم تبدأ" اذا الحقل "الذي قام به" كما شغلها.
|
||||||
ErrorRefAlreadyExists=المرجع المستخدمة لإنشاء موجود بالفعل.
|
ErrorRefAlreadyExists=المرجع المستخدمة لإنشاء موجود بالفعل.
|
||||||
ErrorPleaseTypeBankTransactionReportName=الرجاء كتابة اسم البنك استلام المعاملات ويقال فيها (شكل YYYYMM أو YYYYMMDD)
|
ErrorPleaseTypeBankTransactionReportName=Please type bank statement name where entry is reported (Format YYYYMM or YYYYMMDD)
|
||||||
ErrorRecordHasChildren=فشل حذف السجلات منذ نحو الطفل.
|
ErrorRecordHasChildren=Failed to delete record since it has some childs.
|
||||||
ErrorRecordIsUsedCantDelete=لا يمكن حذف السجلات. وبالفعل استخدامه أو نشره على كائن آخر.
|
ErrorRecordIsUsedCantDelete=لا يمكن حذف السجلات. وبالفعل استخدامه أو نشره على كائن آخر.
|
||||||
ErrorModuleRequireJavascript=يجب عدم تعطيل جافا سكريبت لجعل هذا العمل الميزة. لتمكين / تعطيل جافا سكريبت ، انتقل إلى القائمة الرئيسية -> الإعداد -> العرض.
|
ErrorModuleRequireJavascript=يجب عدم تعطيل جافا سكريبت لجعل هذا العمل الميزة. لتمكين / تعطيل جافا سكريبت ، انتقل إلى القائمة الرئيسية -> الإعداد -> العرض.
|
||||||
ErrorPasswordsMustMatch=ويجب على كلا كلمات المرور المكتوبة تطابق بعضها البعض
|
ErrorPasswordsMustMatch=ويجب على كلا كلمات المرور المكتوبة تطابق بعضها البعض
|
||||||
@ -131,7 +131,7 @@ ErrorWarehouseMustDiffers=يجب المصدر والهدف يختلف المست
|
|||||||
ErrorBadFormat=شكل سيئة!
|
ErrorBadFormat=شكل سيئة!
|
||||||
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.
|
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=Can't delete a payment that had generated a bank entry that was reconciled
|
||||||
ErrorCantDeletePaymentSharedWithPayedInvoice=لا يمكنك حذف دفع تتقاسمها فاتورة واحدة على الأقل مع وضع سيولي
|
ErrorCantDeletePaymentSharedWithPayedInvoice=لا يمكنك حذف دفع تتقاسمها فاتورة واحدة على الأقل مع وضع سيولي
|
||||||
ErrorPriceExpression1=لا يمكن تعيين إلى ثابت '٪ ق'
|
ErrorPriceExpression1=لا يمكن تعيين إلى ثابت '٪ ق'
|
||||||
ErrorPriceExpression2=لا يمكن إعادة تعريف المدمج في وظيفة '٪ ق'
|
ErrorPriceExpression2=لا يمكن إعادة تعريف المدمج في وظيفة '٪ ق'
|
||||||
@ -168,7 +168,7 @@ ErrorBadDefinitionOfMenuArrayInModuleDescriptor=سيئة تعريف القائم
|
|||||||
ErrorSavingChanges=وقد ocurred لخطأ عند حفظ التغييرات
|
ErrorSavingChanges=وقد ocurred لخطأ عند حفظ التغييرات
|
||||||
ErrorWarehouseRequiredIntoShipmentLine=Warehouse is required on the line to ship
|
ErrorWarehouseRequiredIntoShipmentLine=Warehouse is required on the line to ship
|
||||||
ErrorFileMustHaveFormat=File must have format %s
|
ErrorFileMustHaveFormat=File must have format %s
|
||||||
ErrorSupplierCountryIsNotDefined=Country for this supplier is not defined. Correct this first.
|
ErrorSupplierCountryIsNotDefined=لهذا البلد المورد غير محدد. تصحيح هذا أولا.
|
||||||
ErrorsThirdpartyMerge=Failed to merge the two records. Request canceled.
|
ErrorsThirdpartyMerge=Failed to merge the two records. Request canceled.
|
||||||
ErrorStockIsNotEnoughToAddProductOnOrder=Stock is not enougth for product %s to add it into a new order.
|
ErrorStockIsNotEnoughToAddProductOnOrder=Stock is not enougth for product %s to add it into a new order.
|
||||||
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.
|
||||||
@ -176,6 +176,8 @@ ErrorStockIsNotEnoughToAddProductOnShipment=Stock is not enougth for product %s
|
|||||||
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'.
|
ErrorFailedToLoadLoginFileForMode=Failed to get the login file for mode '%s'.
|
||||||
ErrorModuleNotFound=File of module was not found.
|
ErrorModuleNotFound=File of module was not found.
|
||||||
|
ErrorFieldAccountNotDefinedForBankLine=Value for Accounting account not defined for source bank line %s
|
||||||
|
ErrorBankStatementNameMustFollowRegex=Error, bank statement name must follow the following syntax rule %s
|
||||||
|
|
||||||
# Warnings
|
# Warnings
|
||||||
WarningPasswordSetWithNoAccount=تم تعيين كلمة مرور لهذا العضو. ومع ذلك، تم إنشاء أي حساب المستخدم. لذلك يتم تخزين كلمة المرور هذه ولكن لا يمكن استخدامها للدخول إلى Dolibarr. ويمكن استخدامه من قبل وحدة / واجهة خارجية ولكن إذا كنت لا تحتاج إلى تعريف أي تسجيل دخول أو كلمة المرور لأحد أفراد، يمكنك تعطيل خيار "إدارة تسجيل دخول لكل عضو" من إعداد وحدة الأعضاء. إذا كنت بحاجة إلى إدارة تسجيل الدخول ولكن لا تحتاج إلى أي كلمة المرور، يمكنك الحفاظ على هذا الحقل فارغا لتجنب هذا التحذير. ملاحظة: يمكن أيضا أن تستخدم البريد الإلكتروني لتسجيل الدخول إذا تم ربط عضو إلى المستخدم.
|
WarningPasswordSetWithNoAccount=تم تعيين كلمة مرور لهذا العضو. ومع ذلك، تم إنشاء أي حساب المستخدم. لذلك يتم تخزين كلمة المرور هذه ولكن لا يمكن استخدامها للدخول إلى Dolibarr. ويمكن استخدامه من قبل وحدة / واجهة خارجية ولكن إذا كنت لا تحتاج إلى تعريف أي تسجيل دخول أو كلمة المرور لأحد أفراد، يمكنك تعطيل خيار "إدارة تسجيل دخول لكل عضو" من إعداد وحدة الأعضاء. إذا كنت بحاجة إلى إدارة تسجيل الدخول ولكن لا تحتاج إلى أي كلمة المرور، يمكنك الحفاظ على هذا الحقل فارغا لتجنب هذا التحذير. ملاحظة: يمكن أيضا أن تستخدم البريد الإلكتروني لتسجيل الدخول إذا تم ربط عضو إلى المستخدم.
|
||||||
|
|||||||
@ -26,8 +26,6 @@ FieldTitle=حقل العنوان
|
|||||||
NowClickToGenerateToBuildExportFile=الآن ، انقر على "توليد" لبناء ملف التصدير...
|
NowClickToGenerateToBuildExportFile=الآن ، انقر على "توليد" لبناء ملف التصدير...
|
||||||
AvailableFormats=الصيغ المتاحة و
|
AvailableFormats=الصيغ المتاحة و
|
||||||
LibraryShort=المكتبة
|
LibraryShort=المكتبة
|
||||||
LibraryUsed=وتستخدم المكتبة
|
|
||||||
LibraryVersion=النسخة
|
|
||||||
Step=خطوة
|
Step=خطوة
|
||||||
FormatedImport=مساعد والاستيراد
|
FormatedImport=مساعد والاستيراد
|
||||||
FormatedImportDesc1=ويسمح هذا المجال لاستيراد البيانات الشخصية ، وذلك باستخدام مساعد لمساعدتكم في هذه العملية من دون المعرفة التقنية.
|
FormatedImportDesc1=ويسمح هذا المجال لاستيراد البيانات الشخصية ، وذلك باستخدام مساعد لمساعدتكم في هذه العملية من دون المعرفة التقنية.
|
||||||
@ -87,7 +85,7 @@ TooMuchWarnings=لا يزال هناك <b>%s</b> خطوط مصدر آخر مع
|
|||||||
EmptyLine=سيتم تجاهل سطر فارغ ()
|
EmptyLine=سيتم تجاهل سطر فارغ ()
|
||||||
CorrectErrorBeforeRunningImport=أولا يجب أن تقوم بتصحيح كافة الأخطاء قبل تشغيل استيراد نهائي.
|
CorrectErrorBeforeRunningImport=أولا يجب أن تقوم بتصحيح كافة الأخطاء قبل تشغيل استيراد نهائي.
|
||||||
FileWasImported=تم استيراد ملف مع <b>%s</b> عدد.
|
FileWasImported=تم استيراد ملف مع <b>%s</b> عدد.
|
||||||
YouCanUseImportIdToFindRecord=يمكنك العثور على كافة السجلات المستوردة في قاعدة البيانات الخاصة بك عن طريق تصفية على <b>import_key</b> الحقل <b>= '%s'.</b>
|
YouCanUseImportIdToFindRecord=You can find all imported record in your database by filtering on field <b>import_key='%s'</b>.
|
||||||
NbOfLinesOK=عدد الأسطر مع عدم وجود أخطاء وتحذيرات لا : <b>%s.</b>
|
NbOfLinesOK=عدد الأسطر مع عدم وجود أخطاء وتحذيرات لا : <b>%s.</b>
|
||||||
NbOfLinesImported=عدد خطوط المستوردة بنجاح : <b>%s.</b>
|
NbOfLinesImported=عدد خطوط المستوردة بنجاح : <b>%s.</b>
|
||||||
DataComeFromNoWhere=قيمة لادخال تأتي من أي مكان في الملف المصدر.
|
DataComeFromNoWhere=قيمة لادخال تأتي من أي مكان في الملف المصدر.
|
||||||
@ -105,7 +103,7 @@ CSVFormatDesc=<b>فاصلة فصل</b> ملف <b>القيمة</b> تنسيق (cs
|
|||||||
Excel95FormatDesc=شكل <b>ملف</b> اكسل (. XLS) <br> هذا هو الأصلي تنسيق Excel 95 (BIFF5).
|
Excel95FormatDesc=شكل <b>ملف</b> اكسل (. XLS) <br> هذا هو الأصلي تنسيق Excel 95 (BIFF5).
|
||||||
Excel2007FormatDesc=شكل <b>ملف</b> اكسل (. XLSX) <br> هذا هو الأصلي تنسيق Excel 2007 (SpreadsheetML).
|
Excel2007FormatDesc=شكل <b>ملف</b> اكسل (. XLSX) <br> هذا هو الأصلي تنسيق Excel 2007 (SpreadsheetML).
|
||||||
TsvFormatDesc=<b>علامة التبويب</b> تنسيق ملف <b>منفصل القيمة</b> (و .tsv) <br> هذا هو شكل ملف نصي حيث يتم فصل الحقول من قبل الجدوال [التبويب].
|
TsvFormatDesc=<b>علامة التبويب</b> تنسيق ملف <b>منفصل القيمة</b> (و .tsv) <br> هذا هو شكل ملف نصي حيث يتم فصل الحقول من قبل الجدوال [التبويب].
|
||||||
ExportFieldAutomaticallyAdded=وأضافت <b>الحقل٪ الصورة</b> تلقائيا. ذلك تجنب أن يكون لديك خطوط مماثلة إلى أن تعامل على أنها سجلات مكررة (مع هذا المجال وأضاف، أن جميع خطوط امتلاك الهوية الخاصة بهم وسوف تختلف).
|
ExportFieldAutomaticallyAdded=Field <b>%s</b> was automatically added. It will avoid you to have similar lines to be treated as duplicate record (with this field added, all lines will own their own id and will differ).
|
||||||
CsvOptions=خيارات CSV
|
CsvOptions=خيارات CSV
|
||||||
Separator=الفاصل
|
Separator=الفاصل
|
||||||
Enclosure=سياج
|
Enclosure=سياج
|
||||||
|
|||||||
@ -11,7 +11,7 @@ TypeOfSupport=مصدر الدعم
|
|||||||
TypeSupportCommunauty=المجتمع (مجاني)
|
TypeSupportCommunauty=المجتمع (مجاني)
|
||||||
TypeSupportCommercial=التجارية
|
TypeSupportCommercial=التجارية
|
||||||
TypeOfHelp=نوع
|
TypeOfHelp=نوع
|
||||||
NeedHelpCenter=بحاجة إلى مساعدة أو دعم؟
|
NeedHelpCenter=Need help or support?
|
||||||
Efficiency=الكفاءة
|
Efficiency=الكفاءة
|
||||||
TypeHelpOnly=يساعد فقط
|
TypeHelpOnly=يساعد فقط
|
||||||
TypeHelpDev=+ المساعدة على التنمية
|
TypeHelpDev=+ المساعدة على التنمية
|
||||||
|
|||||||
@ -5,7 +5,7 @@ Establishments=وثائق
|
|||||||
Establishment=وثيقة
|
Establishment=وثيقة
|
||||||
NewEstablishment=وثيقة جديدة
|
NewEstablishment=وثيقة جديدة
|
||||||
DeleteEstablishment=حذف وثيقة
|
DeleteEstablishment=حذف وثيقة
|
||||||
ConfirmDeleteEstablishment=هل أنت متأكد من حذف هذه الوثيقة
|
ConfirmDeleteEstablishment=Are-you sure to delete this establishment?
|
||||||
OpenEtablishment=فتح وثيقة
|
OpenEtablishment=فتح وثيقة
|
||||||
CloseEtablishment=إنشاء وثيقة
|
CloseEtablishment=إنشاء وثيقة
|
||||||
# Dictionary
|
# Dictionary
|
||||||
|
|||||||
@ -62,7 +62,6 @@ KeepEmptyIfNoPassword=ترك فارغا إذا لم المستخدم كلمة ا
|
|||||||
SaveConfigurationFile=إنقاذ القيم
|
SaveConfigurationFile=إنقاذ القيم
|
||||||
ServerConnection=اتصال الخادم
|
ServerConnection=اتصال الخادم
|
||||||
DatabaseCreation=إنشاء قاعدة بيانات
|
DatabaseCreation=إنشاء قاعدة بيانات
|
||||||
UserCreation=إنشاء مستخدم
|
|
||||||
CreateDatabaseObjects=إنشاء قاعدة بيانات الأجسام
|
CreateDatabaseObjects=إنشاء قاعدة بيانات الأجسام
|
||||||
ReferenceDataLoading=تحميل البيانات المرجعية
|
ReferenceDataLoading=تحميل البيانات المرجعية
|
||||||
TablesAndPrimaryKeysCreation=الجداول وإنشاء المفاتيح الأساسية
|
TablesAndPrimaryKeysCreation=الجداول وإنشاء المفاتيح الأساسية
|
||||||
@ -133,12 +132,12 @@ MigrationFinished=الانتهاء من الهجرة
|
|||||||
LastStepDesc=<strong>الخطوة الأخيرة</strong> : تعريف المستخدم وكلمة السر هنا كنت تخطط لاستخدامها للاتصال البرمجيات. لا تفقد هذا كما هو حساب لإدارة جميع الآخرين.
|
LastStepDesc=<strong>الخطوة الأخيرة</strong> : تعريف المستخدم وكلمة السر هنا كنت تخطط لاستخدامها للاتصال البرمجيات. لا تفقد هذا كما هو حساب لإدارة جميع الآخرين.
|
||||||
ActivateModule=تفعيل وحدة %s
|
ActivateModule=تفعيل وحدة %s
|
||||||
ShowEditTechnicalParameters=انقر هنا لعرض/تحرير المعلمات المتقدمة (وضع الخبراء)
|
ShowEditTechnicalParameters=انقر هنا لعرض/تحرير المعلمات المتقدمة (وضع الخبراء)
|
||||||
WarningUpgrade=تحذير: \n\nهل قمت بأخذ النسخة الاحتياطية لقاعدة البيانات أولا؟ \n\nينصح به بشدة: على سبيل المثال، بسبب بعض الخلل في نظام قاعدة البيانات (على سبيل المثال MySQL النسخة 5.5.40 / 41/42/43)، وبعض البيانات أو الجداول قد تفقد خلال هذه العملية، لذلك الأفضل لك أن يكون هنالك نسخ احتياطي كامل لقاعدة البيانات الخاصة بك قبل البدء الترحيل.\n\n\nانقر فوق موافق لبدء عملية الترحيل...
|
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=إصدار قاعدة البيانات الخاصة بك هي%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.
|
KeepDefaultValuesWamp=استخدام معالج الإعداد DoliWamp ، حتى القيم المقترحة هنا بالفعل الأمثل. تغييرها إلا إذا كنت تعرف ما تفعله.
|
||||||
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.
|
KeepDefaultValuesDeb=يمكنك استخدام معالج الإعداد Dolibarr من أوبونتو أو حزمة ديبيان ، لذلك القيم المقترحة هنا هي الأمثل بالفعل. يجب أن تكتمل إلا كلمة السر للمالك قاعدة البيانات لإنشاء. تغيير معلمات أخرى إلا إذا كنت تعرف ما تفعله.
|
||||||
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.
|
KeepDefaultValuesMamp=استخدام معالج الإعداد DoliMamp ، حتى القيم المقترحة هنا بالفعل الأمثل. تغييرها إلا إذا كنت تعرف ما تفعله.
|
||||||
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.
|
KeepDefaultValuesProxmox=يمكنك استخدام معالج إعداد Dolibarr من الأجهزة الظاهرية Proxmox، بحيث يتم تحسين بالفعل القيم المقترحة هنا. تغييرها إلا إذا كنت تعرف ما تفعله.
|
||||||
|
|
||||||
#########
|
#########
|
||||||
# upgrade
|
# upgrade
|
||||||
@ -176,7 +175,7 @@ MigrationReopeningContracts=أغلقت العقود المفتوحة خطأ
|
|||||||
MigrationReopenThisContract=اعادة فتح العقد ق ٪
|
MigrationReopenThisContract=اعادة فتح العقد ق ٪
|
||||||
MigrationReopenedContractsNumber=ق ٪ العقود المعدلة
|
MigrationReopenedContractsNumber=ق ٪ العقود المعدلة
|
||||||
MigrationReopeningContractsNothingToUpdate=لا أغلقت العقود فتح
|
MigrationReopeningContractsNothingToUpdate=لا أغلقت العقود فتح
|
||||||
MigrationBankTransfertsUpdate=تحديث الروابط بين المعاملات المصرفية وتحويل مصرفي
|
MigrationBankTransfertsUpdate=Update links between bank entry and a bank transfer
|
||||||
MigrationBankTransfertsNothingToUpdate=كل الروابط حتى الآن
|
MigrationBankTransfertsNothingToUpdate=كل الروابط حتى الآن
|
||||||
MigrationShipmentOrderMatching=الإرسال استلام آخر التطورات
|
MigrationShipmentOrderMatching=الإرسال استلام آخر التطورات
|
||||||
MigrationDeliveryOrderMatching=إيصال استلام آخر التطورات
|
MigrationDeliveryOrderMatching=إيصال استلام آخر التطورات
|
||||||
|
|||||||
@ -15,17 +15,18 @@ ValidateIntervention=تحقق من التدخل
|
|||||||
ModifyIntervention=تعديل التدخل
|
ModifyIntervention=تعديل التدخل
|
||||||
DeleteInterventionLine=حذف السطر التدخل
|
DeleteInterventionLine=حذف السطر التدخل
|
||||||
CloneIntervention=Clone intervention
|
CloneIntervention=Clone intervention
|
||||||
ConfirmDeleteIntervention=هل أنت متأكد من أنك تريد حذف هذا التدخل؟
|
ConfirmDeleteIntervention=Are you sure you want to delete this intervention?
|
||||||
ConfirmValidateIntervention=هل أنت متأكد أنك تريد التحقق من صحة هذا التدخل؟
|
ConfirmValidateIntervention=Are you sure you want to validate this intervention under name <b>%s</b>?
|
||||||
ConfirmModifyIntervention=هل أنت متأكد من تعديل هذا التدخل؟
|
ConfirmModifyIntervention=Are you sure you want to modify this intervention?
|
||||||
ConfirmDeleteInterventionLine=هل أنت متأكد من أنك تريد حذف هذا السطر التدخل؟
|
ConfirmDeleteInterventionLine=Are you sure you want to delete this intervention line?
|
||||||
ConfirmCloneIntervention=Are you sure you want to clone this intervention ?
|
ConfirmCloneIntervention=Are you sure you want to clone this intervention?
|
||||||
NameAndSignatureOfInternalContact=الاسم والتوقيع على التدخل :
|
NameAndSignatureOfInternalContact=الاسم والتوقيع على التدخل :
|
||||||
NameAndSignatureOfExternalContact=اسم وتوقيع العميل :
|
NameAndSignatureOfExternalContact=اسم وتوقيع العميل :
|
||||||
DocumentModelStandard=نموذج وثيقة موحدة للتدخلات
|
DocumentModelStandard=نموذج وثيقة موحدة للتدخلات
|
||||||
InterventionCardsAndInterventionLines=التدخلات وخطوط التدخلات
|
InterventionCardsAndInterventionLines=التدخلات وخطوط التدخلات
|
||||||
InterventionClassifyBilled=تصنيف "المفوتر"
|
InterventionClassifyBilled=تصنيف "المفوتر"
|
||||||
InterventionClassifyUnBilled=تصنيف "فواتير"
|
InterventionClassifyUnBilled=تصنيف "فواتير"
|
||||||
|
InterventionClassifyDone=Classify "Done"
|
||||||
StatusInterInvoiced=فواتير
|
StatusInterInvoiced=فواتير
|
||||||
ShowIntervention=عرض التدخل
|
ShowIntervention=عرض التدخل
|
||||||
SendInterventionRef=تقديم التدخل٪ الصورة
|
SendInterventionRef=تقديم التدخل٪ الصورة
|
||||||
|
|||||||
@ -1,3 +1,4 @@
|
|||||||
|
# Dolibarr language file - Source file is en_US - languages
|
||||||
LinkANewFile=ربط ملف جديد/ وثيقة
|
LinkANewFile=ربط ملف جديد/ وثيقة
|
||||||
LinkedFiles=الملفات والمستندات المرتبطة
|
LinkedFiles=الملفات والمستندات المرتبطة
|
||||||
NoLinkFound=لا روابط مسجلة
|
NoLinkFound=لا روابط مسجلة
|
||||||
|
|||||||
@ -4,14 +4,15 @@ Loans=القروض
|
|||||||
NewLoan=قرض جديد
|
NewLoan=قرض جديد
|
||||||
ShowLoan=عرض القرض
|
ShowLoan=عرض القرض
|
||||||
PaymentLoan=سداد القرض
|
PaymentLoan=سداد القرض
|
||||||
|
LoanPayment=سداد القرض
|
||||||
ShowLoanPayment=مشاهدة قرض الدفع
|
ShowLoanPayment=مشاهدة قرض الدفع
|
||||||
LoanCapital=Capital
|
LoanCapital=عاصمة
|
||||||
Insurance=تأمين
|
Insurance=تأمين
|
||||||
Interest=اهتمام
|
Interest=اهتمام
|
||||||
Nbterms=عدد من المصطلحات
|
Nbterms=عدد من المصطلحات
|
||||||
LoanAccountancyCapitalCode=العاصمة كود المحاسبة
|
LoanAccountancyCapitalCode=Accounting account capital
|
||||||
LoanAccountancyInsuranceCode=المحاسبة التأمين كود
|
LoanAccountancyInsuranceCode=Accounting account insurance
|
||||||
LoanAccountancyInterestCode=مصلحة كود المحاسبة
|
LoanAccountancyInterestCode=Accounting account interest
|
||||||
ConfirmDeleteLoan=تأكيد حذف هذا القرض
|
ConfirmDeleteLoan=تأكيد حذف هذا القرض
|
||||||
LoanDeleted=بنجاح قرض محذوفة
|
LoanDeleted=بنجاح قرض محذوفة
|
||||||
ConfirmPayLoan=تأكيد صنف دفع هذا القرض
|
ConfirmPayLoan=تأكيد صنف دفع هذا القرض
|
||||||
@ -44,6 +45,6 @@ GoToPrincipal=٪ S سوف تذهب نحو PRINCIPAL
|
|||||||
YouWillSpend=You will spend %s in year %s
|
YouWillSpend=You will spend %s in year %s
|
||||||
# Admin
|
# Admin
|
||||||
ConfigLoan=التكوين للقرض وحدة
|
ConfigLoan=التكوين للقرض وحدة
|
||||||
LOAN_ACCOUNTING_ACCOUNT_CAPITAL=العاصمة كود المحاسبة افتراضيا
|
LOAN_ACCOUNTING_ACCOUNT_CAPITAL=Accounting account capital by default
|
||||||
LOAN_ACCOUNTING_ACCOUNT_INTEREST=مصلحة كود المحاسبة افتراضيا
|
LOAN_ACCOUNTING_ACCOUNT_INTEREST=Accounting account interest by default
|
||||||
LOAN_ACCOUNTING_ACCOUNT_INSURANCE=التأمين كود المحاسبة افتراضيا
|
LOAN_ACCOUNTING_ACCOUNT_INSURANCE=Accounting account insurance by default
|
||||||
|
|||||||
@ -42,22 +42,21 @@ MailingStatusNotContact=عدم الاتصال بعد الآن
|
|||||||
MailingStatusReadAndUnsubscribe=Read and unsubscribe
|
MailingStatusReadAndUnsubscribe=Read and unsubscribe
|
||||||
ErrorMailRecipientIsEmpty=البريد الإلكتروني المتلقي فارغة
|
ErrorMailRecipientIsEmpty=البريد الإلكتروني المتلقي فارغة
|
||||||
WarningNoEMailsAdded=بريد الكتروني جديدة تضاف الى قائمة المتلقي.
|
WarningNoEMailsAdded=بريد الكتروني جديدة تضاف الى قائمة المتلقي.
|
||||||
ConfirmValidMailing=هل أنت متأكد أنك تريد إرساله عبر البريد الإلكتروني للتحقق من هذا؟
|
ConfirmValidMailing=Are you sure you want to validate this emailing?
|
||||||
ConfirmResetMailing=تحذير ، وإعادة تشغيل البريد الإلكتروني <b>ل ٪</b> ، يسمح لك أن الدمار إرسال هذه الرسالة مرة اخرى. هل أنت متأكد من أنك هذا هو ما تريد أن تفعل؟
|
ConfirmResetMailing=Warning, by reinitializing emailing <b>%s</b>, you allow to make a mass sending of this email another time. Are you sure you this is what you want to do?
|
||||||
ConfirmDeleteMailing=هل أنت متأكد من أنك تريد حذف هذا emailling؟
|
ConfirmDeleteMailing=Are you sure you want to delete this emailling?
|
||||||
NbOfUniqueEMails=ملاحظة : فريد من رسائل البريد الإلكتروني
|
NbOfUniqueEMails=ملاحظة : فريد من رسائل البريد الإلكتروني
|
||||||
NbOfEMails=ملاحظة : رسائل البريد الإلكتروني
|
NbOfEMails=ملاحظة : رسائل البريد الإلكتروني
|
||||||
TotalNbOfDistinctRecipients=عدد المستفيدين متميزة
|
TotalNbOfDistinctRecipients=عدد المستفيدين متميزة
|
||||||
NoTargetYet=ولم يعرف بعد المستفيدين (الذهاب على تبويبة 'المتلقين)
|
NoTargetYet=ولم يعرف بعد المستفيدين (الذهاب على تبويبة 'المتلقين)
|
||||||
RemoveRecipient=إزالة المتلقية
|
RemoveRecipient=إزالة المتلقية
|
||||||
CommonSubstitutions=عام بدائل
|
|
||||||
YouCanAddYourOwnPredefindedListHere=البريد الإلكتروني الخاص بك لإنشاء وحدة منتق ، انظر htdocs / تضم / وحدات / الرسائل / إقرأني.
|
YouCanAddYourOwnPredefindedListHere=البريد الإلكتروني الخاص بك لإنشاء وحدة منتق ، انظر htdocs / تضم / وحدات / الرسائل / إقرأني.
|
||||||
EMailTestSubstitutionReplacedByGenericValues=عند استخدام طريقة الاختبار ، واستبدال المتغيرات العامة الاستعاضة عن القيم
|
EMailTestSubstitutionReplacedByGenericValues=عند استخدام طريقة الاختبار ، واستبدال المتغيرات العامة الاستعاضة عن القيم
|
||||||
MailingAddFile=يرفق هذا الملف
|
MailingAddFile=يرفق هذا الملف
|
||||||
NoAttachedFiles=ولا الملفات المرفقة
|
NoAttachedFiles=ولا الملفات المرفقة
|
||||||
BadEMail=قيمة سيئة للبريد الإلكتروني
|
BadEMail=قيمة سيئة للبريد الإلكتروني
|
||||||
CloneEMailing=استنساخ الارسال بالبريد الالكتروني
|
CloneEMailing=استنساخ الارسال بالبريد الالكتروني
|
||||||
ConfirmCloneEMailing=هل أنت متأكد من استنساخ هذا البريد الإلكتروني؟
|
ConfirmCloneEMailing=Are you sure you want to clone this emailing?
|
||||||
CloneContent=استنساخ الرسالة
|
CloneContent=استنساخ الرسالة
|
||||||
CloneReceivers=شبيه المستفيدين
|
CloneReceivers=شبيه المستفيدين
|
||||||
DateLastSend=Date of latest sending
|
DateLastSend=Date of latest sending
|
||||||
@ -90,7 +89,7 @@ SendMailing=إرسال البريد الإلكتروني
|
|||||||
SendMail=إرسال بريد إلكتروني
|
SendMail=إرسال بريد إلكتروني
|
||||||
MailingNeedCommand=لأسباب أمنية، إرسال البريد الإلكتروني هو أفضل عندما يؤديها من سطر الأوامر. إذا كان لديك واحدة، اطلب من مسؤول الخادم الخاص بك لإطلاق الأمر التالي لإرسال إرساله عبر البريد الإلكتروني لجميع المستفيدين:
|
MailingNeedCommand=لأسباب أمنية، إرسال البريد الإلكتروني هو أفضل عندما يؤديها من سطر الأوامر. إذا كان لديك واحدة، اطلب من مسؤول الخادم الخاص بك لإطلاق الأمر التالي لإرسال إرساله عبر البريد الإلكتروني لجميع المستفيدين:
|
||||||
MailingNeedCommand2=ولكن يمكنك إرسالها عبر الإنترنت عن طريق إضافة معلمة MAILING_LIMIT_SENDBYWEB مع قيمة الحد الأقصى لعدد من رسائل البريد الإلكتروني التي تريد إرسالها من خلال هذه الدورة.
|
MailingNeedCommand2=ولكن يمكنك إرسالها عبر الإنترنت عن طريق إضافة معلمة MAILING_LIMIT_SENDBYWEB مع قيمة الحد الأقصى لعدد من رسائل البريد الإلكتروني التي تريد إرسالها من خلال هذه الدورة.
|
||||||
ConfirmSendingEmailing=إذا كنت لا تستطيع أو تفضل إرسالها مع متصفح الشبكة العالمية الخاصة بك، يرجى تأكيد كنت متأكدا من أنك تريد إرسال البريد الإلكتروني الآن من المتصفح؟
|
ConfirmSendingEmailing=If you can't or prefer sending them with your www browser, please confirm you are sure you want to send emailing now from your browser?
|
||||||
LimitSendingEmailing=يتم إرسال من emailings من واجهة الويب في عدة مرات لأسباب أمنية ومهلة <b>والمستفيدين٪ الصورة</b> في وقت لكل دورة ارسال: ملاحظة.
|
LimitSendingEmailing=يتم إرسال من emailings من واجهة الويب في عدة مرات لأسباب أمنية ومهلة <b>والمستفيدين٪ الصورة</b> في وقت لكل دورة ارسال: ملاحظة.
|
||||||
TargetsReset=لائحة واضحة
|
TargetsReset=لائحة واضحة
|
||||||
ToClearAllRecipientsClickHere=من الواضح أن المستفيدين قائمة لهذا البريد الإلكتروني ، انقر على زر
|
ToClearAllRecipientsClickHere=من الواضح أن المستفيدين قائمة لهذا البريد الإلكتروني ، انقر على زر
|
||||||
@ -98,12 +97,12 @@ ToAddRecipientsChooseHere=إضافة إلى المتلقين ، وتختار ف
|
|||||||
NbOfEMailingsReceived=وتلقى كتلة emailings
|
NbOfEMailingsReceived=وتلقى كتلة emailings
|
||||||
NbOfEMailingsSend=emailings الجماعية أرسلت
|
NbOfEMailingsSend=emailings الجماعية أرسلت
|
||||||
IdRecord=رقم قياسي
|
IdRecord=رقم قياسي
|
||||||
DeliveryReceipt=إيصال استلام
|
DeliveryReceipt=Delivery Ack.
|
||||||
YouCanUseCommaSeparatorForSeveralRecipients=يمكنك استخدام <b>الفاصلة</b> فاصل لتحديد عدد من المتلقين.
|
YouCanUseCommaSeparatorForSeveralRecipients=يمكنك استخدام <b>الفاصلة</b> فاصل لتحديد عدد من المتلقين.
|
||||||
TagCheckMail=افتتاح البريد المسار
|
TagCheckMail=افتتاح البريد المسار
|
||||||
TagUnsubscribe=رابط إلغاء الاشتراك
|
TagUnsubscribe=رابط إلغاء الاشتراك
|
||||||
TagSignature=التوقيع إرسال المستعمل
|
TagSignature=التوقيع إرسال المستعمل
|
||||||
EMailRecipient=Recipient EMail
|
EMailRecipient=البريد الإلكتروني المستلم
|
||||||
TagMailtoEmail=Recipient EMail (including html "mailto:" link)
|
TagMailtoEmail=Recipient EMail (including html "mailto:" link)
|
||||||
NoEmailSentBadSenderOrRecipientEmail=لا ترسل البريد الإلكتروني. مرسل سيئة أو البريد الإلكتروني المستلم. تحقق ملف تعريف المستخدم.
|
NoEmailSentBadSenderOrRecipientEmail=لا ترسل البريد الإلكتروني. مرسل سيئة أو البريد الإلكتروني المستلم. تحقق ملف تعريف المستخدم.
|
||||||
# Module Notifications
|
# Module Notifications
|
||||||
@ -119,6 +118,8 @@ MailSendSetupIs2=يجب عليك أولا الذهاب، مع حساب مشرف
|
|||||||
MailSendSetupIs3=إذا كان لديك أي أسئلة حول كيفية إعداد ملقم SMTP الخاص بك، يمكنك أن تطلب إلى٪ s.
|
MailSendSetupIs3=إذا كان لديك أي أسئلة حول كيفية إعداد ملقم SMTP الخاص بك، يمكنك أن تطلب إلى٪ s.
|
||||||
YouCanAlsoUseSupervisorKeyword=يمكنك أيضا إضافة <strong>__SUPERVISOREMAIL__</strong> الكلمة أن يكون البريد الإلكتروني إرسالها إلى المشرف على المستخدم (يعمل فقط إذا تم تعريف بريد الكتروني لهذا المشرف)
|
YouCanAlsoUseSupervisorKeyword=يمكنك أيضا إضافة <strong>__SUPERVISOREMAIL__</strong> الكلمة أن يكون البريد الإلكتروني إرسالها إلى المشرف على المستخدم (يعمل فقط إذا تم تعريف بريد الكتروني لهذا المشرف)
|
||||||
NbOfTargetedContacts=العدد الحالي من رسائل البريد الإلكتروني اتصال المستهدفة
|
NbOfTargetedContacts=العدد الحالي من رسائل البريد الإلكتروني اتصال المستهدفة
|
||||||
|
UseFormatFileEmailToTarget=Imported file must have format <strong>email;name;firstname;other</strong>
|
||||||
|
UseFormatInputEmailToTarget=Enter a string with format <strong>email;name;firstname;other</strong>
|
||||||
MailAdvTargetRecipients=Recipients (advanced selection)
|
MailAdvTargetRecipients=Recipients (advanced selection)
|
||||||
AdvTgtTitle=Fill input fields to preselect the thirdparties or contacts/addresses to target
|
AdvTgtTitle=Fill input fields to preselect the thirdparties or contacts/addresses to target
|
||||||
AdvTgtSearchTextHelp=Use %% as magic caracters. For exemple to find all item like <b>jean, joe, jim</b>, you can input <b>j%%</b>, you can also use ; as separator for value, and use ! for except this value. For exemple <b>jean;joe;jim%%;!jimo;!jima%</b> will target all jean, joe, start with jim but not jimo and not everythnig taht start by jima
|
AdvTgtSearchTextHelp=Use %% as magic caracters. For exemple to find all item like <b>jean, joe, jim</b>, you can input <b>j%%</b>, you can also use ; as separator for value, and use ! for except this value. For exemple <b>jean;joe;jim%%;!jimo;!jima%</b> will target all jean, joe, start with jim but not jimo and not everythnig taht start by jima
|
||||||
|
|||||||
@ -28,47 +28,50 @@ NoTemplateDefined=No template defined for this email type
|
|||||||
AvailableVariables=Available substitution variables
|
AvailableVariables=Available substitution variables
|
||||||
NoTranslation=لا يوجد ترجمة
|
NoTranslation=لا يوجد ترجمة
|
||||||
NoRecordFound=لا يوجد سجلات
|
NoRecordFound=لا يوجد سجلات
|
||||||
|
NoRecordDeleted=No record deleted
|
||||||
NotEnoughDataYet=Not enough data
|
NotEnoughDataYet=Not enough data
|
||||||
NoError=لا خطأ
|
NoError=لا خطأ
|
||||||
Error=خطأ
|
Error=خطأ
|
||||||
Errors=أخطاء
|
Errors=أخطاء
|
||||||
ErrorFieldRequired=Field '%s' is required
|
ErrorFieldRequired=مطلوب حقل '%s' ق
|
||||||
ErrorFieldFormat=Field '%s' has a bad value
|
ErrorFieldFormat=حقل '٪ ق' له قيمة سيئة
|
||||||
ErrorFileDoesNotExists=File %s does not exist
|
ErrorFileDoesNotExists=الملف غير موجود٪ الصورة
|
||||||
ErrorFailedToOpenFile=Failed to open file %s
|
ErrorFailedToOpenFile=فشل في فتح الملف٪ الصورة
|
||||||
ErrorCanNotCreateDir=Cannot create dir %s
|
ErrorCanNotCreateDir=Cannot create dir %s
|
||||||
ErrorCanNotReadDir=Cannot read dir %s
|
ErrorCanNotReadDir=Cannot read dir %s
|
||||||
ErrorConstantNotDefined=Parameter %s not defined
|
ErrorConstantNotDefined=المعلمة٪ S غير معرف
|
||||||
ErrorUnknown=خطأ غير معروف
|
ErrorUnknown=خطأ غير معروف
|
||||||
ErrorSQL=خطأ SQL
|
ErrorSQL=خطأ SQL
|
||||||
ErrorLogoFileNotFound=Logo file '%s' was not found
|
ErrorLogoFileNotFound=لم يتم العثور على ملف شعار '٪ ق'
|
||||||
ErrorGoToGlobalSetup=اذهب إلى 'شركة / مؤسسة' الإعداد لإصلاح هذه
|
ErrorGoToGlobalSetup=اذهب إلى 'شركة / مؤسسة' الإعداد لإصلاح هذه
|
||||||
ErrorGoToModuleSetup=الذهاب إلى الوحدة الإعداد لإصلاح هذه
|
ErrorGoToModuleSetup=الذهاب إلى الوحدة الإعداد لإصلاح هذه
|
||||||
ErrorFailedToSendMail=Failed to send mail (sender=%s, receiver=%s)
|
ErrorFailedToSendMail=فشل في إرسال البريد (المرسل =٪ ق، استقبال =٪ ق)
|
||||||
ErrorFileNotUploaded=ويتم تحميل الملف. تحقق لا يتجاوز هذا الحجم الأقصى المسموح به، أن المساحة الحرة المتوفرة على القرص والتي لا يوجد بالفعل ملف بنفس الاسم في هذا الدليل.
|
ErrorFileNotUploaded=ويتم تحميل الملف. تحقق لا يتجاوز هذا الحجم الأقصى المسموح به، أن المساحة الحرة المتوفرة على القرص والتي لا يوجد بالفعل ملف بنفس الاسم في هذا الدليل.
|
||||||
ErrorInternalErrorDetected=خطأ الكشف عن
|
ErrorInternalErrorDetected=خطأ الكشف عن
|
||||||
ErrorWrongHostParameter=المعلمة المضيف خاطئة
|
ErrorWrongHostParameter=المعلمة المضيف خاطئة
|
||||||
ErrorYourCountryIsNotDefined=لم يتم تعريف بلدك. الذهاب إلى الصفحة الرئيسية الإعداد-تحرير ومشاركة مرة أخرى في النموذج.
|
ErrorYourCountryIsNotDefined=لم يتم تعريف بلدك. الذهاب إلى الصفحة الرئيسية الإعداد-تحرير ومشاركة مرة أخرى في النموذج.
|
||||||
ErrorRecordIsUsedByChild=فشل في حذف هذا السجل. ويستخدم هذا السجل من قبل واحد على الأقل السجلات التابعة.
|
ErrorRecordIsUsedByChild=فشل في حذف هذا السجل. ويستخدم هذا السجل من قبل واحد على الأقل السجلات التابعة.
|
||||||
ErrorWrongValue=قيمة خاطئة
|
ErrorWrongValue=قيمة خاطئة
|
||||||
ErrorWrongValueForParameterX=Wrong value for parameter %s
|
ErrorWrongValueForParameterX=قيمة خاطئة للمعلمة٪ الصورة
|
||||||
ErrorNoRequestInError=أي طلب في الخطأ
|
ErrorNoRequestInError=أي طلب في الخطأ
|
||||||
ErrorServiceUnavailableTryLater=الخدمة غير متوفرة في الوقت الراهن. حاول مجددا لاحقا.
|
ErrorServiceUnavailableTryLater=الخدمة غير متوفرة في الوقت الراهن. حاول مجددا لاحقا.
|
||||||
ErrorDuplicateField=قيمة مكررة في حقل فريد
|
ErrorDuplicateField=قيمة مكررة في حقل فريد
|
||||||
ErrorSomeErrorWereFoundRollbackIsDone=تم العثور على بعض الأخطاء. نحن التراجع التغييرات.
|
ErrorSomeErrorWereFoundRollbackIsDone=تم العثور على بعض الأخطاء. نحن التراجع التغييرات.
|
||||||
ErrorConfigParameterNotDefined=Parameter <b>%s</b> is not defined inside Dolibarr config file <b>conf.php</b>.
|
ErrorConfigParameterNotDefined=لم يتم تعريف <b>المعلمة٪ الصورة</b> داخل ملف التكوين Dolibarr <b>conf.php.</b>
|
||||||
ErrorCantLoadUserFromDolibarrDatabase=Failed to find user <b>%s</b> in Dolibarr database.
|
ErrorCantLoadUserFromDolibarrDatabase=فشل في العثور على <b>المستخدم٪ الصورة</b> في قاعدة بيانات Dolibarr.
|
||||||
ErrorNoVATRateDefinedForSellerCountry=Error, no vat rates defined for country '%s'.
|
ErrorNoVATRateDefinedForSellerCountry=خطأ، لا معدلات ضريبة القيمة المضافة المحددة للبلد '٪ ق'.
|
||||||
ErrorNoSocialContributionForSellerCountry=Error, no social/fiscal taxes type defined for country '%s'.
|
ErrorNoSocialContributionForSellerCountry=خطأ، لا الاجتماعي / المالي نوع الضرائب المحددة للبلد '٪ ق'.
|
||||||
ErrorFailedToSaveFile=خطأ، فشل في حفظ الملف.
|
ErrorFailedToSaveFile=خطأ، فشل في حفظ الملف.
|
||||||
|
ErrorCannotAddThisParentWarehouse=You are trying to add a parent warehouse which is already a child of current one
|
||||||
NotAuthorized=غير مصرح لك ان تفعل ذلك.
|
NotAuthorized=غير مصرح لك ان تفعل ذلك.
|
||||||
SetDate=التاريخ المحدد
|
SetDate=التاريخ المحدد
|
||||||
SelectDate=تحديد تاريخ
|
SelectDate=تحديد تاريخ
|
||||||
SeeAlso=See also %s
|
SeeAlso=انظر أيضا الصورة٪
|
||||||
SeeHere=انظر هنا
|
SeeHere=انظر هنا
|
||||||
BackgroundColorByDefault=لون الخلفية الافتراضية
|
BackgroundColorByDefault=لون الخلفية الافتراضية
|
||||||
FileRenamed=The file was successfully renamed
|
FileRenamed=The file was successfully renamed
|
||||||
FileUploaded=تم تحميل الملف بنجاح
|
FileUploaded=تم تحميل الملف بنجاح
|
||||||
|
FileGenerated=The file was successfully generated
|
||||||
FileWasNotUploaded=يتم اختيار ملف لمرفق ولكن لم تحميلها بعد. انقر على "إرفاق ملف" لهذا الغرض.
|
FileWasNotUploaded=يتم اختيار ملف لمرفق ولكن لم تحميلها بعد. انقر على "إرفاق ملف" لهذا الغرض.
|
||||||
NbOfEntries=ملحوظة من إدخالات
|
NbOfEntries=ملحوظة من إدخالات
|
||||||
GoToWikiHelpPage=Read online help (Internet access needed)
|
GoToWikiHelpPage=Read online help (Internet access needed)
|
||||||
@ -77,10 +80,10 @@ RecordSaved=سجل حفظ
|
|||||||
RecordDeleted=سجل محذوف
|
RecordDeleted=سجل محذوف
|
||||||
LevelOfFeature=مستوى ميزات
|
LevelOfFeature=مستوى ميزات
|
||||||
NotDefined=غير معرف
|
NotDefined=غير معرف
|
||||||
DolibarrInHttpAuthenticationSoPasswordUseless=Dolibarr authentication mode is setup to <b>%s</b> in configuration file <b>conf.php</b>.<br>This means that password database is extern to Dolibarr, so changing this field may have no effects.
|
DolibarrInHttpAuthenticationSoPasswordUseless=Dolibarr authentication mode is set to <b>%s</b> in configuration file <b>conf.php</b>.<br>This means that the password database is external to Dolibarr, so changing this field may have no effect.
|
||||||
Administrator=مدير
|
Administrator=مدير
|
||||||
Undefined=غير محدد
|
Undefined=غير محدد
|
||||||
PasswordForgotten=نسيت كلمة المرور؟
|
PasswordForgotten=Password forgotten?
|
||||||
SeeAbove=أنظر فوق
|
SeeAbove=أنظر فوق
|
||||||
HomeArea=المنطقة الرئيسية
|
HomeArea=المنطقة الرئيسية
|
||||||
LastConnexion=آخر إتصال
|
LastConnexion=آخر إتصال
|
||||||
@ -88,20 +91,20 @@ PreviousConnexion=الاتصال السابق
|
|||||||
PreviousValue=Previous value
|
PreviousValue=Previous value
|
||||||
ConnectedOnMultiCompany=إتصال على البيئة
|
ConnectedOnMultiCompany=إتصال على البيئة
|
||||||
ConnectedSince=إتصال منذ
|
ConnectedSince=إتصال منذ
|
||||||
AuthenticationMode=وضع صحة المستندات
|
AuthenticationMode=Authentication mode
|
||||||
RequestedUrl=URL المطلوب
|
RequestedUrl=Requested URL
|
||||||
DatabaseTypeManager=نوع قاعدة البيانات مدير
|
DatabaseTypeManager=نوع قاعدة البيانات مدير
|
||||||
RequestLastAccessInError=Latest database access request error
|
RequestLastAccessInError=Latest database access request error
|
||||||
ReturnCodeLastAccessInError=Return code for latest database access request error
|
ReturnCodeLastAccessInError=Return code for latest database access request error
|
||||||
InformationLastAccessInError=Information for latest database access request error
|
InformationLastAccessInError=Information for latest database access request error
|
||||||
DolibarrHasDetectedError=كشف Dolibarr خطأ فني
|
DolibarrHasDetectedError=كشف Dolibarr خطأ فني
|
||||||
InformationToHelpDiagnose=This information can be useful for diagnostic
|
InformationToHelpDiagnose=This information can be useful for diagnostic purposes
|
||||||
MoreInformation=المزيد من المعلومات
|
MoreInformation=المزيد من المعلومات
|
||||||
TechnicalInformation=المعلومات التقنية
|
TechnicalInformation=المعلومات التقنية
|
||||||
TechnicalID=ID الفني
|
TechnicalID=ID الفني
|
||||||
NotePublic=ملاحظة (الجمهور)
|
NotePublic=ملاحظة (الجمهور)
|
||||||
NotePrivate=ملاحظة (خاص)
|
NotePrivate=ملاحظة (خاص)
|
||||||
PrecisionUnitIsLimitedToXDecimals=Dolibarr was setup to limit precision of unit prices to <b>%s</b> decimals.
|
PrecisionUnitIsLimitedToXDecimals=كان Dolibarr الإعداد للحد من دقة أسعار الوحدات إلى <b>العشرية٪ الصورة.</b>
|
||||||
DoTest=اختبار
|
DoTest=اختبار
|
||||||
ToFilter=فلتر
|
ToFilter=فلتر
|
||||||
NoFilter=No filter
|
NoFilter=No filter
|
||||||
@ -125,6 +128,7 @@ Activate=فعل
|
|||||||
Activated=تنشيط
|
Activated=تنشيط
|
||||||
Closed=مغلق
|
Closed=مغلق
|
||||||
Closed2=مغلق
|
Closed2=مغلق
|
||||||
|
NotClosed=Not closed
|
||||||
Enabled=تمكين
|
Enabled=تمكين
|
||||||
Deprecated=انتقدت
|
Deprecated=انتقدت
|
||||||
Disable=تعطيل
|
Disable=تعطيل
|
||||||
@ -137,10 +141,10 @@ Update=تحديث
|
|||||||
Close=إغلاق
|
Close=إغلاق
|
||||||
CloseBox=Remove widget from your dashboard
|
CloseBox=Remove widget from your dashboard
|
||||||
Confirm=تأكيد
|
Confirm=تأكيد
|
||||||
ConfirmSendCardByMail=Do you really want to send content of this card by mail to <b>%s</b> ?
|
ConfirmSendCardByMail=Do you really want to send content of this card by mail to <b>%s</b>?
|
||||||
Delete=حذف
|
Delete=حذف
|
||||||
Remove=إزالة
|
Remove=إزالة
|
||||||
Resiliate=Resiliate
|
Resiliate=Terminate
|
||||||
Cancel=إلغاء
|
Cancel=إلغاء
|
||||||
Modify=تعديل
|
Modify=تعديل
|
||||||
Edit=تحرير
|
Edit=تحرير
|
||||||
@ -158,6 +162,7 @@ Go=اذهب
|
|||||||
Run=اركض
|
Run=اركض
|
||||||
CopyOf=نسخة من
|
CopyOf=نسخة من
|
||||||
Show=تبين
|
Show=تبين
|
||||||
|
Hide=Hide
|
||||||
ShowCardHere=مشاهدة بطاقة
|
ShowCardHere=مشاهدة بطاقة
|
||||||
Search=البحث عن
|
Search=البحث عن
|
||||||
SearchOf=البحث عن
|
SearchOf=البحث عن
|
||||||
@ -179,7 +184,7 @@ Groups=المجموعات
|
|||||||
NoUserGroupDefined=لا توجد مجموعة يحددها المستخدم
|
NoUserGroupDefined=لا توجد مجموعة يحددها المستخدم
|
||||||
Password=الرمز السري
|
Password=الرمز السري
|
||||||
PasswordRetype=أعد كتابة كلمة السر
|
PasswordRetype=أعد كتابة كلمة السر
|
||||||
NoteSomeFeaturesAreDisabled=Note that a lot of features/modules are disabled in this demonstration.
|
NoteSomeFeaturesAreDisabled=لاحظ أن الكثير من الميزات / معطلة في هذه المظاهرة وحدات.
|
||||||
Name=اسم
|
Name=اسم
|
||||||
Person=شخص
|
Person=شخص
|
||||||
Parameter=معلمة
|
Parameter=معلمة
|
||||||
@ -200,8 +205,8 @@ Info=سجل
|
|||||||
Family=عائلة
|
Family=عائلة
|
||||||
Description=الوصف
|
Description=الوصف
|
||||||
Designation=الوصف
|
Designation=الوصف
|
||||||
Model=نموذج
|
Model=Doc template
|
||||||
DefaultModel=نموذج افتراضي
|
DefaultModel=Default doc template
|
||||||
Action=حدث
|
Action=حدث
|
||||||
About=حول
|
About=حول
|
||||||
Number=عدد
|
Number=عدد
|
||||||
@ -211,7 +216,7 @@ Numero=عدد
|
|||||||
Limit=حد
|
Limit=حد
|
||||||
Limits=حدود
|
Limits=حدود
|
||||||
Logout=تسجيل خروج
|
Logout=تسجيل خروج
|
||||||
NoLogoutProcessWithAuthMode=No applicative disconnect feature with authentication mode <b>%s</b>
|
NoLogoutProcessWithAuthMode=أي ميزة قطع تطبيقية مع وضع <b>المصادقة٪ الصورة</b>
|
||||||
Connection=الاتصال
|
Connection=الاتصال
|
||||||
Setup=التثبيت
|
Setup=التثبيت
|
||||||
Alert=إنذار
|
Alert=إنذار
|
||||||
@ -225,8 +230,8 @@ Date=التاريخ
|
|||||||
DateAndHour=التاريخ و الساعة
|
DateAndHour=التاريخ و الساعة
|
||||||
DateToday=Today's date
|
DateToday=Today's date
|
||||||
DateReference=Reference date
|
DateReference=Reference date
|
||||||
DateStart=Start date
|
DateStart=تاريخ البدء
|
||||||
DateEnd=End date
|
DateEnd=تاريخ الانتهاء
|
||||||
DateCreation=تاريخ الإنشاء
|
DateCreation=تاريخ الإنشاء
|
||||||
DateCreationShort=يخلق. التاريخ
|
DateCreationShort=يخلق. التاريخ
|
||||||
DateModification=تاريخ التعديل
|
DateModification=تاريخ التعديل
|
||||||
@ -261,7 +266,7 @@ DurationDays=أيام
|
|||||||
Year=سنة
|
Year=سنة
|
||||||
Month=شهر
|
Month=شهر
|
||||||
Week=أسبوع
|
Week=أسبوع
|
||||||
WeekShort=Week
|
WeekShort=أسبوع
|
||||||
Day=يوم
|
Day=يوم
|
||||||
Hour=ساعة
|
Hour=ساعة
|
||||||
Minute=دقيقة
|
Minute=دقيقة
|
||||||
@ -317,6 +322,9 @@ AmountTTCShort=المبلغ (المؤتمر الوطني العراقي. الض
|
|||||||
AmountHT=المبلغ (صافية من الضرائب)
|
AmountHT=المبلغ (صافية من الضرائب)
|
||||||
AmountTTC=المبلغ (المؤتمر الوطني العراقي. الضريبية)
|
AmountTTC=المبلغ (المؤتمر الوطني العراقي. الضريبية)
|
||||||
AmountVAT=مبلغ الضريبة
|
AmountVAT=مبلغ الضريبة
|
||||||
|
MulticurrencyAlreadyPaid=Already payed, original currency
|
||||||
|
MulticurrencyRemainderToPay=Remain to pay, original currency
|
||||||
|
MulticurrencyPaymentAmount=Payment amount, original currency
|
||||||
MulticurrencyAmountHT=Amount (net of tax), original currency
|
MulticurrencyAmountHT=Amount (net of tax), original currency
|
||||||
MulticurrencyAmountTTC=Amount (inc. of tax), original currency
|
MulticurrencyAmountTTC=Amount (inc. of tax), original currency
|
||||||
MulticurrencyAmountVAT=Amount tax, original currency
|
MulticurrencyAmountVAT=Amount tax, original currency
|
||||||
@ -374,7 +382,7 @@ ActionsToDoShort=لكى يفعل
|
|||||||
ActionsDoneShort=انتهيت
|
ActionsDoneShort=انتهيت
|
||||||
ActionNotApplicable=غير قابل للتطبيق
|
ActionNotApplicable=غير قابل للتطبيق
|
||||||
ActionRunningNotStarted=لبدء
|
ActionRunningNotStarted=لبدء
|
||||||
ActionRunningShort=بدأ
|
ActionRunningShort=In progress
|
||||||
ActionDoneShort=تم الانتهاء من
|
ActionDoneShort=تم الانتهاء من
|
||||||
ActionUncomplete=Uncomplete
|
ActionUncomplete=Uncomplete
|
||||||
CompanyFoundation=شركة / مؤسسة
|
CompanyFoundation=شركة / مؤسسة
|
||||||
@ -383,14 +391,14 @@ ContactsAddressesForCompany=اتصالات / عناوين لهذا الطرف ا
|
|||||||
AddressesForCompany=عناوين لهذا الطرف الثالث
|
AddressesForCompany=عناوين لهذا الطرف الثالث
|
||||||
ActionsOnCompany=الأحداث حول هذا الطرف الثالث
|
ActionsOnCompany=الأحداث حول هذا الطرف الثالث
|
||||||
ActionsOnMember=الأحداث عن هذا العضو
|
ActionsOnMember=الأحداث عن هذا العضو
|
||||||
NActionsLate=%s late
|
NActionsLate=٪ في وقت متأخر الصورة
|
||||||
RequestAlreadyDone=طلب المسجل بالفعل
|
RequestAlreadyDone=طلب المسجل بالفعل
|
||||||
Filter=فلتر
|
Filter=فلتر
|
||||||
FilterOnInto=Search criteria '<strong>%s</strong>' into fields %s
|
FilterOnInto=معايير البحث <strong>'٪ ق'</strong> إلى حقول٪ الصورة
|
||||||
RemoveFilter=إزالة فلتر
|
RemoveFilter=إزالة فلتر
|
||||||
ChartGenerated=الرسم البياني المتولدة
|
ChartGenerated=الرسم البياني المتولدة
|
||||||
ChartNotGenerated=الرسم البياني لم تولد
|
ChartNotGenerated=الرسم البياني لم تولد
|
||||||
GeneratedOn=Build on %s
|
GeneratedOn=بناء على٪ الصورة
|
||||||
Generate=توليد
|
Generate=توليد
|
||||||
Duration=المدة الزمنية
|
Duration=المدة الزمنية
|
||||||
TotalDuration=المدة الإجمالية
|
TotalDuration=المدة الإجمالية
|
||||||
@ -448,8 +456,8 @@ LateDesc=Delay to define if a record is late or not depends on your setup. Ask y
|
|||||||
Photo=صورة
|
Photo=صورة
|
||||||
Photos=الصور
|
Photos=الصور
|
||||||
AddPhoto=إضافة الصورة
|
AddPhoto=إضافة الصورة
|
||||||
DeletePicture=Picture delete
|
DeletePicture=حذف صورة
|
||||||
ConfirmDeletePicture=Confirm picture deletion?
|
ConfirmDeletePicture=تأكيد الصورة الحذف؟
|
||||||
Login=تسجيل الدخول
|
Login=تسجيل الدخول
|
||||||
CurrentLogin=تسجيل الدخول الحالي
|
CurrentLogin=تسجيل الدخول الحالي
|
||||||
January=كانون الثاني
|
January=كانون الثاني
|
||||||
@ -510,6 +518,7 @@ ReportPeriod=فترة التقرير
|
|||||||
ReportDescription=وصف
|
ReportDescription=وصف
|
||||||
Report=تقرير
|
Report=تقرير
|
||||||
Keyword=Keyword
|
Keyword=Keyword
|
||||||
|
Origin=Origin
|
||||||
Legend=أسطورة
|
Legend=أسطورة
|
||||||
Fill=تعبئة
|
Fill=تعبئة
|
||||||
Reset=إعادة تعيين
|
Reset=إعادة تعيين
|
||||||
@ -517,7 +526,7 @@ File=ملف
|
|||||||
Files=ملفات
|
Files=ملفات
|
||||||
NotAllowed=غير مسموح
|
NotAllowed=غير مسموح
|
||||||
ReadPermissionNotAllowed=إذن لا يسمح للقراءة
|
ReadPermissionNotAllowed=إذن لا يسمح للقراءة
|
||||||
AmountInCurrency=Amount in %s currency
|
AmountInCurrency=المبلغ بالعملة ق ٪
|
||||||
Example=مثال
|
Example=مثال
|
||||||
Examples=أمثلة
|
Examples=أمثلة
|
||||||
NoExample=على سبيل المثال لا
|
NoExample=على سبيل المثال لا
|
||||||
@ -528,9 +537,9 @@ NbOfObjects=عدد الأجسام
|
|||||||
NbOfObjectReferers=Number of related items
|
NbOfObjectReferers=Number of related items
|
||||||
Referers=Related items
|
Referers=Related items
|
||||||
TotalQuantity=الكمية الإجمالية
|
TotalQuantity=الكمية الإجمالية
|
||||||
DateFromTo=From %s to %s
|
DateFromTo=ل٪ من ق ق ٪
|
||||||
DateFrom=From %s
|
DateFrom=من ق ٪
|
||||||
DateUntil=Until %s
|
DateUntil=حتى ق ٪
|
||||||
Check=فحص
|
Check=فحص
|
||||||
Uncheck=قم بإلغاء التحديد
|
Uncheck=قم بإلغاء التحديد
|
||||||
Internal=الداخلية
|
Internal=الداخلية
|
||||||
@ -564,6 +573,7 @@ TextUsedInTheMessageBody=هيئة البريد الإلكتروني
|
|||||||
SendAcknowledgementByMail=Send confirmation email
|
SendAcknowledgementByMail=Send confirmation email
|
||||||
EMail=البريد الإلكتروني
|
EMail=البريد الإلكتروني
|
||||||
NoEMail=أي بريد إلكتروني
|
NoEMail=أي بريد إلكتروني
|
||||||
|
Email=Email
|
||||||
NoMobilePhone=لا هاتف المحمول
|
NoMobilePhone=لا هاتف المحمول
|
||||||
Owner=مالك
|
Owner=مالك
|
||||||
FollowingConstantsWillBeSubstituted=الثوابت التالية ستكون بديلا المقابلة القيمة.
|
FollowingConstantsWillBeSubstituted=الثوابت التالية ستكون بديلا المقابلة القيمة.
|
||||||
@ -572,11 +582,12 @@ BackToList=العودة إلى قائمة
|
|||||||
GoBack=العودة
|
GoBack=العودة
|
||||||
CanBeModifiedIfOk=يمكن تعديلها إذا كان صحيحا
|
CanBeModifiedIfOk=يمكن تعديلها إذا كان صحيحا
|
||||||
CanBeModifiedIfKo=يمكن تعديلها إذا لم يكن صحيحا
|
CanBeModifiedIfKo=يمكن تعديلها إذا لم يكن صحيحا
|
||||||
ValueIsValid=Value is valid
|
ValueIsValid=قيمة صالحة
|
||||||
ValueIsNotValid=Value is not valid
|
ValueIsNotValid=Value is not valid
|
||||||
|
RecordCreatedSuccessfully=Record created successfully
|
||||||
RecordModifiedSuccessfully=سجل تعديل بنجاح
|
RecordModifiedSuccessfully=سجل تعديل بنجاح
|
||||||
RecordsModified=%s records modified
|
RecordsModified=%s record modified
|
||||||
RecordsDeleted=%s records deleted
|
RecordsDeleted=%s record deleted
|
||||||
AutomaticCode=مدونة الآلي
|
AutomaticCode=مدونة الآلي
|
||||||
FeatureDisabled=سمة المعوقين
|
FeatureDisabled=سمة المعوقين
|
||||||
MoveBox=Move widget
|
MoveBox=Move widget
|
||||||
@ -605,6 +616,9 @@ NoFileFound=لا الوثائق المحفوظة في هذا المجلد
|
|||||||
CurrentUserLanguage=الصيغة الحالية
|
CurrentUserLanguage=الصيغة الحالية
|
||||||
CurrentTheme=الموضوع الحالي
|
CurrentTheme=الموضوع الحالي
|
||||||
CurrentMenuManager=مدير القائمة الحالي
|
CurrentMenuManager=مدير القائمة الحالي
|
||||||
|
Browser=المتصفح
|
||||||
|
Layout=Layout
|
||||||
|
Screen=Screen
|
||||||
DisabledModules=والمعوقين وحدات
|
DisabledModules=والمعوقين وحدات
|
||||||
For=لأجل
|
For=لأجل
|
||||||
ForCustomer=الزبون
|
ForCustomer=الزبون
|
||||||
@ -627,7 +641,7 @@ PrintContentArea=وتظهر الصفحة الرئيسية لطباعة ناحي
|
|||||||
MenuManager=مدير القائمة
|
MenuManager=مدير القائمة
|
||||||
WarningYouAreInMaintenanceMode=انذار ، كنت في وضع الصيانة ، <b>%s</b> الدخول فقط بحيث يتم السماح لاستخدام التطبيق في الوقت الراهن.
|
WarningYouAreInMaintenanceMode=انذار ، كنت في وضع الصيانة ، <b>%s</b> الدخول فقط بحيث يتم السماح لاستخدام التطبيق في الوقت الراهن.
|
||||||
CoreErrorTitle=نظام خطأ
|
CoreErrorTitle=نظام خطأ
|
||||||
CoreErrorMessage=عذرا، حدث خطأ. تحقق من سجلات أو اتصل بمسؤول النظام.
|
CoreErrorMessage=Sorry, an error occurred. Contact your system administrator to check the logs or disable $dolibarr_main_prod=1 to get more information.
|
||||||
CreditCard=بطاقة الائتمان
|
CreditCard=بطاقة الائتمان
|
||||||
FieldsWithAreMandatory=حقول إلزامية مع <b>%s</b>
|
FieldsWithAreMandatory=حقول إلزامية مع <b>%s</b>
|
||||||
FieldsWithIsForPublic=<b>%s</b> تظهر الحقول التي تحتوي على قائمة العامة للأعضاء. إذا كنت لا تريد هذا ، والتحقق من "العامة" مربع.
|
FieldsWithIsForPublic=<b>%s</b> تظهر الحقول التي تحتوي على قائمة العامة للأعضاء. إذا كنت لا تريد هذا ، والتحقق من "العامة" مربع.
|
||||||
@ -655,7 +669,7 @@ URLPhoto=للتسجيل من الصورة / الشعار
|
|||||||
SetLinkToAnotherThirdParty=تصل إلى طرف ثالث آخر
|
SetLinkToAnotherThirdParty=تصل إلى طرف ثالث آخر
|
||||||
LinkTo=Link to
|
LinkTo=Link to
|
||||||
LinkToProposal=Link to proposal
|
LinkToProposal=Link to proposal
|
||||||
LinkToOrder=Link to order
|
LinkToOrder=تصل إلى النظام
|
||||||
LinkToInvoice=Link to invoice
|
LinkToInvoice=Link to invoice
|
||||||
LinkToSupplierOrder=Link to supplier order
|
LinkToSupplierOrder=Link to supplier order
|
||||||
LinkToSupplierProposal=Link to supplier proposal
|
LinkToSupplierProposal=Link to supplier proposal
|
||||||
@ -683,6 +697,7 @@ Test=اختبار
|
|||||||
Element=العنصر
|
Element=العنصر
|
||||||
NoPhotoYet=أي صور متوفرة حتى الآن
|
NoPhotoYet=أي صور متوفرة حتى الآن
|
||||||
Dashboard=Dashboard
|
Dashboard=Dashboard
|
||||||
|
MyDashboard=My dashboard
|
||||||
Deductible=خصم
|
Deductible=خصم
|
||||||
from=من عند
|
from=من عند
|
||||||
toward=نحو
|
toward=نحو
|
||||||
@ -695,12 +710,12 @@ SetDemandReason=مجموعة مصدر
|
|||||||
SetBankAccount=تحديد الحساب المصرفي
|
SetBankAccount=تحديد الحساب المصرفي
|
||||||
AccountCurrency=عملة الحساب
|
AccountCurrency=عملة الحساب
|
||||||
ViewPrivateNote=عرض الملاحظات
|
ViewPrivateNote=عرض الملاحظات
|
||||||
XMoreLines=%s line(s) hidden
|
XMoreLines=٪ ق خط (ق) مخبأة
|
||||||
PublicUrl=URL العام
|
PublicUrl=URL العام
|
||||||
AddBox=إضافة مربع
|
AddBox=إضافة مربع
|
||||||
SelectElementAndClickRefresh=حدد عنصر وانقر فوق تحديث
|
SelectElementAndClickRefresh=حدد عنصر وانقر فوق تحديث
|
||||||
PrintFile=Print File %s
|
PrintFile=طباعة ملف٪ الصورة
|
||||||
ShowTransaction=عرض الصفقة على حساب مصرفي
|
ShowTransaction=Show entry on bank account
|
||||||
GoIntoSetupToChangeLogo=اذهب إلى الصفحة الرئيسية - إعداد - شركة لتغيير شعار أو الذهاب إلى الصفحة الرئيسية - إعداد - عرض للاختباء.
|
GoIntoSetupToChangeLogo=اذهب إلى الصفحة الرئيسية - إعداد - شركة لتغيير شعار أو الذهاب إلى الصفحة الرئيسية - إعداد - عرض للاختباء.
|
||||||
Deny=رفض
|
Deny=رفض
|
||||||
Denied=رفض
|
Denied=رفض
|
||||||
@ -713,18 +728,31 @@ Mandatory=إلزامي
|
|||||||
Hello=أهلا
|
Hello=أهلا
|
||||||
Sincerely=بإخلاص
|
Sincerely=بإخلاص
|
||||||
DeleteLine=حذف الخط
|
DeleteLine=حذف الخط
|
||||||
ConfirmDeleteLine=هل أنت متأكد أنك تريد حذف هذا الخط؟
|
ConfirmDeleteLine=Are you sure you want to delete this line?
|
||||||
NoPDFAvailableForDocGenAmongChecked=No PDF were available for the document generation among checked records
|
NoPDFAvailableForDocGenAmongChecked=No PDF were available for the document generation among checked records
|
||||||
TooManyRecordForMassAction=Too many records selected for mass action. The action is restricted to a list of %s records.
|
TooManyRecordForMassAction=Too many record selected for mass action. The action is restricted to a list of %s records.
|
||||||
|
NoRecordSelected=No record selected
|
||||||
MassFilesArea=Area for files built by mass actions
|
MassFilesArea=Area for files built by mass actions
|
||||||
ShowTempMassFilesArea=Show area of files built by mass actions
|
ShowTempMassFilesArea=Show area of files built by mass actions
|
||||||
RelatedObjects=Related Objects
|
RelatedObjects=Related Objects
|
||||||
ClassifyBilled=Classify billed
|
ClassifyBilled=تصنيف الفواتير
|
||||||
Progress=Progress
|
Progress=تقدم
|
||||||
ClickHere=Click here
|
ClickHere=اضغط هنا
|
||||||
FrontOffice=Front office
|
FrontOffice=Front office
|
||||||
BackOffice=Back office
|
BackOffice=المكتب الخلفي
|
||||||
View=View
|
View=View
|
||||||
|
Export=تصدير
|
||||||
|
Exports=صادرات
|
||||||
|
ExportFilteredList=Export filtered list
|
||||||
|
ExportList=Export list
|
||||||
|
Miscellaneous=متفرقات
|
||||||
|
Calendar=التقويم
|
||||||
|
GroupBy=Group by...
|
||||||
|
ViewFlatList=View flat list
|
||||||
|
RemoveString=Remove string '%s'
|
||||||
|
SomeTranslationAreUncomplete=Some languages may be partially translated or may contains errors. If you detect some, you can fix language files registering to <a href="https://transifex.com/projects/p/dolibarr/" target="_blank">http://transifex.com/projects/p/dolibarr/</a>.
|
||||||
|
DirectDownloadLink=Direct download link
|
||||||
|
Download=Download
|
||||||
# Week day
|
# Week day
|
||||||
Monday=يوم الاثنين
|
Monday=يوم الاثنين
|
||||||
Tuesday=الثلاثاء
|
Tuesday=الثلاثاء
|
||||||
@ -756,7 +784,7 @@ ShortSaturday=دإ
|
|||||||
ShortSunday=دإ
|
ShortSunday=دإ
|
||||||
SelectMailModel=قالب البريد الإلكتروني حدد
|
SelectMailModel=قالب البريد الإلكتروني حدد
|
||||||
SetRef=تعيين المرجع
|
SetRef=تعيين المرجع
|
||||||
Select2ResultFoundUseArrows=
|
Select2ResultFoundUseArrows=Some results found. Use arrows to select.
|
||||||
Select2NotFound=لا نتائج لبحثك
|
Select2NotFound=لا نتائج لبحثك
|
||||||
Select2Enter=أدخل
|
Select2Enter=أدخل
|
||||||
Select2MoreCharacter=or more character
|
Select2MoreCharacter=or more character
|
||||||
@ -769,7 +797,7 @@ SearchIntoMembers=أعضاء
|
|||||||
SearchIntoUsers=المستخدمين
|
SearchIntoUsers=المستخدمين
|
||||||
SearchIntoProductsOrServices=المنتجات أو الخدمات
|
SearchIntoProductsOrServices=المنتجات أو الخدمات
|
||||||
SearchIntoProjects=مشاريع
|
SearchIntoProjects=مشاريع
|
||||||
SearchIntoTasks=Tasks
|
SearchIntoTasks=المهام
|
||||||
SearchIntoCustomerInvoices=فواتير العملاء
|
SearchIntoCustomerInvoices=فواتير العملاء
|
||||||
SearchIntoSupplierInvoices=فواتير الموردين
|
SearchIntoSupplierInvoices=فواتير الموردين
|
||||||
SearchIntoCustomerOrders=طلبات العملاء
|
SearchIntoCustomerOrders=طلبات العملاء
|
||||||
@ -780,4 +808,4 @@ SearchIntoInterventions=التدخلات
|
|||||||
SearchIntoContracts=عقود
|
SearchIntoContracts=عقود
|
||||||
SearchIntoCustomerShipments=Customer shipments
|
SearchIntoCustomerShipments=Customer shipments
|
||||||
SearchIntoExpenseReports=تقارير المصاريف
|
SearchIntoExpenseReports=تقارير المصاريف
|
||||||
SearchIntoLeaves=Leaves
|
SearchIntoLeaves=أوراق
|
||||||
|
|||||||
@ -13,7 +13,7 @@ ListOfValidatedPublicMembers=قائمة الأعضاء العامة المصاد
|
|||||||
ErrorThisMemberIsNotPublic=ليست عضوا في هذا العام
|
ErrorThisMemberIsNotPublic=ليست عضوا في هذا العام
|
||||||
ErrorMemberIsAlreadyLinkedToThisThirdParty=عضو آخر (الاسم : <b>٪ ق</b> ، ادخل : <b>٪)</b> مرتبطة بالفعل الى طرف ثالث <b>٪ ق.</b> إزالة هذه الوصلة الاولى بسبب طرف ثالث لا يمكن أن يرتبط فقط عضو (والعكس بالعكس).
|
ErrorMemberIsAlreadyLinkedToThisThirdParty=عضو آخر (الاسم : <b>٪ ق</b> ، ادخل : <b>٪)</b> مرتبطة بالفعل الى طرف ثالث <b>٪ ق.</b> إزالة هذه الوصلة الاولى بسبب طرف ثالث لا يمكن أن يرتبط فقط عضو (والعكس بالعكس).
|
||||||
ErrorUserPermissionAllowsToLinksToItselfOnly=لأسباب أمنية ، يجب أن تمنح أذونات لتحرير جميع المستخدمين لتكون قادرة على ربط عضو لمستخدم هذا ليس لك.
|
ErrorUserPermissionAllowsToLinksToItselfOnly=لأسباب أمنية ، يجب أن تمنح أذونات لتحرير جميع المستخدمين لتكون قادرة على ربط عضو لمستخدم هذا ليس لك.
|
||||||
ThisIsContentOfYourCard=هذه هي تفاصيل بطاقتك
|
ThisIsContentOfYourCard=Hi.<br><br>This is a remind of the information we get about you. Feel free to contact us if something looks wrong.<br><br>
|
||||||
CardContent=مضمون البطاقة الخاصة بك عضوا
|
CardContent=مضمون البطاقة الخاصة بك عضوا
|
||||||
SetLinkToUser=وصلة إلى مستخدم Dolibarr
|
SetLinkToUser=وصلة إلى مستخدم Dolibarr
|
||||||
SetLinkToThirdParty=وصلة إلى طرف ثالث Dolibarr
|
SetLinkToThirdParty=وصلة إلى طرف ثالث Dolibarr
|
||||||
@ -23,13 +23,13 @@ MembersListToValid=قائمة مشاريع أعضاء (ينبغي التأكد
|
|||||||
MembersListValid=قائمة أعضاء صالحة
|
MembersListValid=قائمة أعضاء صالحة
|
||||||
MembersListUpToDate=قائمة الأعضاء صالحة لغاية تاريخ الاكتتاب
|
MembersListUpToDate=قائمة الأعضاء صالحة لغاية تاريخ الاكتتاب
|
||||||
MembersListNotUpToDate=قائمة صحيحة مع أعضاء من تاريخ الاكتتاب
|
MembersListNotUpToDate=قائمة صحيحة مع أعضاء من تاريخ الاكتتاب
|
||||||
MembersListResiliated=قائمة الأعضاء resiliated
|
MembersListResiliated=List of terminated members
|
||||||
MembersListQualified=قائمة الأعضاء المؤهلين
|
MembersListQualified=قائمة الأعضاء المؤهلين
|
||||||
MenuMembersToValidate=أعضاء مشروع
|
MenuMembersToValidate=أعضاء مشروع
|
||||||
MenuMembersValidated=صادق أعضاء
|
MenuMembersValidated=صادق أعضاء
|
||||||
MenuMembersUpToDate=حتى الآن من أعضاء
|
MenuMembersUpToDate=حتى الآن من أعضاء
|
||||||
MenuMembersNotUpToDate=وحتى الآن من أصل أعضاء
|
MenuMembersNotUpToDate=وحتى الآن من أصل أعضاء
|
||||||
MenuMembersResiliated=أعضاء Resiliated
|
MenuMembersResiliated=Terminated members
|
||||||
MembersWithSubscriptionToReceive=أعضاء مع اشتراك لتلقي
|
MembersWithSubscriptionToReceive=أعضاء مع اشتراك لتلقي
|
||||||
DateSubscription=تاريخ الاكتتاب
|
DateSubscription=تاريخ الاكتتاب
|
||||||
DateEndSubscription=تاريخ انتهاء الاكتتاب
|
DateEndSubscription=تاريخ انتهاء الاكتتاب
|
||||||
@ -49,10 +49,10 @@ MemberStatusActiveLate=انتهاء الاكتتاب
|
|||||||
MemberStatusActiveLateShort=انتهى
|
MemberStatusActiveLateShort=انتهى
|
||||||
MemberStatusPaid=الاكتتاب حتى الآن
|
MemberStatusPaid=الاكتتاب حتى الآن
|
||||||
MemberStatusPaidShort=حتى الآن
|
MemberStatusPaidShort=حتى الآن
|
||||||
MemberStatusResiliated=عضو Resiliated
|
MemberStatusResiliated=Terminated member
|
||||||
MemberStatusResiliatedShort=Resiliated
|
MemberStatusResiliatedShort=Terminated
|
||||||
MembersStatusToValid=أعضاء مشروع
|
MembersStatusToValid=أعضاء مشروع
|
||||||
MembersStatusResiliated=أعضاء Resiliated
|
MembersStatusResiliated=Terminated members
|
||||||
NewCotisation=مساهمة جديدة
|
NewCotisation=مساهمة جديدة
|
||||||
PaymentSubscription=دفع مساهمة جديدة
|
PaymentSubscription=دفع مساهمة جديدة
|
||||||
SubscriptionEndDate=تاريخ انتهاء الاكتتاب
|
SubscriptionEndDate=تاريخ انتهاء الاكتتاب
|
||||||
@ -76,15 +76,15 @@ Physical=المادية
|
|||||||
Moral=الأخلاقية
|
Moral=الأخلاقية
|
||||||
MorPhy=المعنوية / المادية
|
MorPhy=المعنوية / المادية
|
||||||
Reenable=Reenable
|
Reenable=Reenable
|
||||||
ResiliateMember=عضو Resiliate
|
ResiliateMember=Terminate a member
|
||||||
ConfirmResiliateMember=هل أنت متأكد من أن هذا resiliate؟
|
ConfirmResiliateMember=Are you sure you want to terminate this member?
|
||||||
DeleteMember=حذف عضو
|
DeleteMember=حذف عضو
|
||||||
ConfirmDeleteMember=هل أنت متأكد من أنك تريد حذف هذا العضو (عضو حذف حذف كل ما له الاشتراك؟
|
ConfirmDeleteMember=Are you sure you want to delete this member (Deleting a member will delete all his subscriptions)?
|
||||||
DeleteSubscription=الغاء الاشتراك
|
DeleteSubscription=الغاء الاشتراك
|
||||||
ConfirmDeleteSubscription=هل أنت متأكد من أنك تريد حذف هذا الاشتراك؟
|
ConfirmDeleteSubscription=Are you sure you want to delete this subscription?
|
||||||
Filehtpasswd=htpasswd الملف
|
Filehtpasswd=htpasswd الملف
|
||||||
ValidateMember=صحة عضوا
|
ValidateMember=صحة عضوا
|
||||||
ConfirmValidateMember=هل أنت متأكد أنك تريد التحقق من صحة هذا؟
|
ConfirmValidateMember=Are you sure you want to validate this member?
|
||||||
FollowingLinksArePublic=الارتباطات التالية تفتح صفحة لا يحمي أي Dolibarr تصريح. فهي ليست formated صفحة ، تقدم مثالا على الكيفية التي تظهر في قائمة الأعضاء في قاعدة البيانات.
|
FollowingLinksArePublic=الارتباطات التالية تفتح صفحة لا يحمي أي Dolibarr تصريح. فهي ليست formated صفحة ، تقدم مثالا على الكيفية التي تظهر في قائمة الأعضاء في قاعدة البيانات.
|
||||||
PublicMemberList=عضو في لائحة عامة
|
PublicMemberList=عضو في لائحة عامة
|
||||||
BlankSubscriptionForm=استمارة الاشتراك
|
BlankSubscriptionForm=استمارة الاشتراك
|
||||||
@ -127,8 +127,8 @@ NoThirdPartyAssociatedToMember=لم يرتبط بها من طرف ثالث له
|
|||||||
MembersAndSubscriptions= وأعضاء Subscriptions
|
MembersAndSubscriptions= وأعضاء Subscriptions
|
||||||
MoreActions=تكميلية العمل على تسجيل
|
MoreActions=تكميلية العمل على تسجيل
|
||||||
MoreActionsOnSubscription=الإجراءات التكميلية، اقترح افتراضيا عند تسجيل الاشتراك
|
MoreActionsOnSubscription=الإجراءات التكميلية، اقترح افتراضيا عند تسجيل الاشتراك
|
||||||
MoreActionBankDirect=إنشاء سجل المعاملات مباشرة على حساب
|
MoreActionBankDirect=Create a direct entry on bank account
|
||||||
MoreActionBankViaInvoice=إنشاء الفاتورة والدفع على حساب
|
MoreActionBankViaInvoice=Create an invoice, and a payment on bank account
|
||||||
MoreActionInvoiceOnly=إنشاء فاتورة مع دفع أي مبلغ
|
MoreActionInvoiceOnly=إنشاء فاتورة مع دفع أي مبلغ
|
||||||
LinkToGeneratedPages=بطاقات زيارة انتج
|
LinkToGeneratedPages=بطاقات زيارة انتج
|
||||||
LinkToGeneratedPagesDesc=هذه الشاشة تسمح لك لإنشاء ملفات الشعبي مع بطاقات العمل لجميع أعضاء أو عضو معين.
|
LinkToGeneratedPagesDesc=هذه الشاشة تسمح لك لإنشاء ملفات الشعبي مع بطاقات العمل لجميع أعضاء أو عضو معين.
|
||||||
@ -152,7 +152,6 @@ MenuMembersStats=إحصائيات
|
|||||||
LastMemberDate=آخر عضو تاريخ
|
LastMemberDate=آخر عضو تاريخ
|
||||||
Nature=طبيعة
|
Nature=طبيعة
|
||||||
Public=معلومات علنية
|
Public=معلومات علنية
|
||||||
Exports=صادرات
|
|
||||||
NewMemberbyWeb=وأضاف عضو جديد. تنتظر الموافقة
|
NewMemberbyWeb=وأضاف عضو جديد. تنتظر الموافقة
|
||||||
NewMemberForm=الأعضاء الجدد في شكل
|
NewMemberForm=الأعضاء الجدد في شكل
|
||||||
SubscriptionsStatistics=إحصاءات عن الاشتراكات
|
SubscriptionsStatistics=إحصاءات عن الاشتراكات
|
||||||
|
|||||||
@ -7,7 +7,7 @@ Order=ترتيب
|
|||||||
Orders=أوامر
|
Orders=أوامر
|
||||||
OrderLine=من أجل خط
|
OrderLine=من أجل خط
|
||||||
OrderDate=من أجل التاريخ
|
OrderDate=من أجل التاريخ
|
||||||
OrderDateShort=Order date
|
OrderDateShort=من أجل التاريخ
|
||||||
OrderToProcess=من أجل عملية
|
OrderToProcess=من أجل عملية
|
||||||
NewOrder=النظام الجديد
|
NewOrder=النظام الجديد
|
||||||
ToOrder=ومن أجل جعل
|
ToOrder=ومن أجل جعل
|
||||||
@ -19,6 +19,7 @@ CustomerOrder=عملاء النظام
|
|||||||
CustomersOrders=طلبات العملاء
|
CustomersOrders=طلبات العملاء
|
||||||
CustomersOrdersRunning=أوامر العملاء الحالية
|
CustomersOrdersRunning=أوامر العملاء الحالية
|
||||||
CustomersOrdersAndOrdersLines=طلبات العملاء وخطوط أجل
|
CustomersOrdersAndOrdersLines=طلبات العملاء وخطوط أجل
|
||||||
|
OrdersDeliveredToBill=Customer orders delivered to bill
|
||||||
OrdersToBill=تسليم أوامر العملاء
|
OrdersToBill=تسليم أوامر العملاء
|
||||||
OrdersInProcess=طلبات العملاء في عملية
|
OrdersInProcess=طلبات العملاء في عملية
|
||||||
OrdersToProcess=طلبات العملاء لمعالجة
|
OrdersToProcess=طلبات العملاء لمعالجة
|
||||||
@ -31,7 +32,7 @@ StatusOrderSent=شحنة في عملية
|
|||||||
StatusOrderOnProcessShort=أمر
|
StatusOrderOnProcessShort=أمر
|
||||||
StatusOrderProcessedShort=تجهيز
|
StatusOrderProcessedShort=تجهيز
|
||||||
StatusOrderDelivered=تم التوصيل
|
StatusOrderDelivered=تم التوصيل
|
||||||
StatusOrderDeliveredShort=Delivered
|
StatusOrderDeliveredShort=تم التوصيل
|
||||||
StatusOrderToBillShort=على مشروع قانون
|
StatusOrderToBillShort=على مشروع قانون
|
||||||
StatusOrderApprovedShort=وافق
|
StatusOrderApprovedShort=وافق
|
||||||
StatusOrderRefusedShort=رفض
|
StatusOrderRefusedShort=رفض
|
||||||
@ -52,6 +53,7 @@ StatusOrderBilled=المنقار
|
|||||||
StatusOrderReceivedPartially=تلقى جزئيا
|
StatusOrderReceivedPartially=تلقى جزئيا
|
||||||
StatusOrderReceivedAll=وتلقى كل شيء
|
StatusOrderReceivedAll=وتلقى كل شيء
|
||||||
ShippingExist=شحنة موجود
|
ShippingExist=شحنة موجود
|
||||||
|
QtyOrdered=الكمية أمرت
|
||||||
ProductQtyInDraft=كمية المنتج في مشاريع المراسيم
|
ProductQtyInDraft=كمية المنتج في مشاريع المراسيم
|
||||||
ProductQtyInDraftOrWaitingApproved=كمية المنتج إلى مشروع أو الأوامر المعتمدة، لا يأمر بعد
|
ProductQtyInDraftOrWaitingApproved=كمية المنتج إلى مشروع أو الأوامر المعتمدة، لا يأمر بعد
|
||||||
MenuOrdersToBill=أوامر لمشروع قانون
|
MenuOrdersToBill=أوامر لمشروع قانون
|
||||||
@ -85,12 +87,12 @@ NumberOfOrdersByMonth=عدد أوامر الشهر
|
|||||||
AmountOfOrdersByMonthHT=كمية أوامر من شهر (صافية من الضرائب)
|
AmountOfOrdersByMonthHT=كمية أوامر من شهر (صافية من الضرائب)
|
||||||
ListOfOrders=قائمة الأوامر
|
ListOfOrders=قائمة الأوامر
|
||||||
CloseOrder=وثيق من أجل
|
CloseOrder=وثيق من أجل
|
||||||
ConfirmCloseOrder=هل أنت متأكد من أجل اقفال هذا؟ مرة واحدة أمر قد انتهى ، فإنه لا يمكن إلا أن يكون فواتير.
|
ConfirmCloseOrder=Are you sure you want to set this order to deliverd? Once an order is delivered, it can be set to billed.
|
||||||
ConfirmDeleteOrder=هل أنت متأكد من أنك تريد حذف هذا النظام؟
|
ConfirmDeleteOrder=Are you sure you want to delete this order?
|
||||||
ConfirmValidateOrder=هل أنت متأكد أنك تريد التحقق من صحة هذا الأمر تحت اسم <b>٪ ق؟</b>
|
ConfirmValidateOrder=Are you sure you want to validate this order under name <b>%s</b>?
|
||||||
ConfirmUnvalidateOrder=هل أنت متأكد أنك تريد استعادة <b>%s</b> أجل وضع مشروع؟
|
ConfirmUnvalidateOrder=Are you sure you want to restore order <b>%s</b> to draft status?
|
||||||
ConfirmCancelOrder=هل أنت متأكد من أنك تريد إلغاء هذا النظام؟
|
ConfirmCancelOrder=Are you sure you want to cancel this order?
|
||||||
ConfirmMakeOrder=هل أنت متأكد من أن يؤكد لك هذا النظام على <b>٪ ق؟</b>
|
ConfirmMakeOrder=Are you sure you want to confirm you made this order on <b>%s</b>?
|
||||||
GenerateBill=توليد الفاتورة
|
GenerateBill=توليد الفاتورة
|
||||||
ClassifyShipped=تصنيف تسليمها
|
ClassifyShipped=تصنيف تسليمها
|
||||||
DraftOrders=مشروع أوامر
|
DraftOrders=مشروع أوامر
|
||||||
@ -99,6 +101,7 @@ OnProcessOrders=على عملية أوامر
|
|||||||
RefOrder=المرجع. ترتيب
|
RefOrder=المرجع. ترتيب
|
||||||
RefCustomerOrder=Ref. order for customer
|
RefCustomerOrder=Ref. order for customer
|
||||||
RefOrderSupplier=Ref. order for supplier
|
RefOrderSupplier=Ref. order for supplier
|
||||||
|
RefOrderSupplierShort=Ref. order supplier
|
||||||
SendOrderByMail=لكي ترسل عن طريق البريد
|
SendOrderByMail=لكي ترسل عن طريق البريد
|
||||||
ActionsOnOrder=إجراءات من أجل
|
ActionsOnOrder=إجراءات من أجل
|
||||||
NoArticleOfTypeProduct=أي مادة من نوع 'منتج' حتى لا مادة للشحن لهذا النظام
|
NoArticleOfTypeProduct=أي مادة من نوع 'منتج' حتى لا مادة للشحن لهذا النظام
|
||||||
@ -107,7 +110,7 @@ AuthorRequest=طلب مقدم البلاغ
|
|||||||
UserWithApproveOrderGrant=مع منح المستخدمين "الموافقة على أوامر" إذن.
|
UserWithApproveOrderGrant=مع منح المستخدمين "الموافقة على أوامر" إذن.
|
||||||
PaymentOrderRef=من أجل دفع ق ٪
|
PaymentOrderRef=من أجل دفع ق ٪
|
||||||
CloneOrder=استنساخ النظام
|
CloneOrder=استنساخ النظام
|
||||||
ConfirmCloneOrder=هل أنت متأكد من أن هذا الأمر استنساخ <b>٪ ق؟</b>
|
ConfirmCloneOrder=Are you sure you want to clone this order <b>%s</b>?
|
||||||
DispatchSupplierOrder=%s استقبال النظام مورد
|
DispatchSupplierOrder=%s استقبال النظام مورد
|
||||||
FirstApprovalAlreadyDone=الموافقة الأولى فعلت
|
FirstApprovalAlreadyDone=الموافقة الأولى فعلت
|
||||||
SecondApprovalAlreadyDone=الموافقة الثانية فعلت
|
SecondApprovalAlreadyDone=الموافقة الثانية فعلت
|
||||||
@ -125,29 +128,19 @@ TypeContact_order_supplier_internal_SHIPPING=ممثل الشحن متابعة
|
|||||||
TypeContact_order_supplier_external_BILLING=المورد فاتورة الاتصال
|
TypeContact_order_supplier_external_BILLING=المورد فاتورة الاتصال
|
||||||
TypeContact_order_supplier_external_SHIPPING=المورد الشحن الاتصال
|
TypeContact_order_supplier_external_SHIPPING=المورد الشحن الاتصال
|
||||||
TypeContact_order_supplier_external_CUSTOMER=المورد الاتصال أجل متابعة
|
TypeContact_order_supplier_external_CUSTOMER=المورد الاتصال أجل متابعة
|
||||||
|
|
||||||
Error_COMMANDE_SUPPLIER_ADDON_NotDefined=لم تعرف COMMANDE_SUPPLIER_ADDON مستمر
|
Error_COMMANDE_SUPPLIER_ADDON_NotDefined=لم تعرف COMMANDE_SUPPLIER_ADDON مستمر
|
||||||
Error_COMMANDE_ADDON_NotDefined=لم تعرف COMMANDE_ADDON مستمر
|
Error_COMMANDE_ADDON_NotDefined=لم تعرف COMMANDE_ADDON مستمر
|
||||||
Error_OrderNotChecked=لا أوامر إلى فاتورة مختارة
|
Error_OrderNotChecked=لا أوامر إلى فاتورة مختارة
|
||||||
# Sources
|
# Order modes (how we receive order). Not the "why" are keys stored into dict.lang
|
||||||
OrderSource0=اقتراح التجارية
|
|
||||||
OrderSource1=الإنترنت
|
|
||||||
OrderSource2=حملة بريدية
|
|
||||||
OrderSource3=الهاتف compain
|
|
||||||
OrderSource4=حملة الفاكس
|
|
||||||
OrderSource5=التجارية
|
|
||||||
OrderSource6=مخزن
|
|
||||||
QtyOrdered=الكمية أمرت
|
|
||||||
# Documents models
|
|
||||||
PDFEinsteinDescription=من أجل نموذج كامل (logo...)
|
|
||||||
PDFEdisonDescription=نموذج النظام بسيطة
|
|
||||||
PDFProformaDescription=فاتورة أولية كاملة (شعار ...)
|
|
||||||
# Orders modes
|
|
||||||
OrderByMail=بريد
|
OrderByMail=بريد
|
||||||
OrderByFax=الفاكس
|
OrderByFax=الفاكس
|
||||||
OrderByEMail=بريد إلكتروني
|
OrderByEMail=بريد إلكتروني
|
||||||
OrderByWWW=على الانترنت
|
OrderByWWW=على الانترنت
|
||||||
OrderByPhone=هاتف
|
OrderByPhone=هاتف
|
||||||
|
# Documents models
|
||||||
|
PDFEinsteinDescription=من أجل نموذج كامل (logo...)
|
||||||
|
PDFEdisonDescription=نموذج النظام بسيطة
|
||||||
|
PDFProformaDescription=فاتورة أولية كاملة (شعار ...)
|
||||||
CreateInvoiceForThisCustomer=أوامر بيل
|
CreateInvoiceForThisCustomer=أوامر بيل
|
||||||
NoOrdersToInvoice=لا أوامر فوترة
|
NoOrdersToInvoice=لا أوامر فوترة
|
||||||
CloseProcessedOrdersAutomatically=تصنيف "المصنعة" جميع أوامر المحدد.
|
CloseProcessedOrdersAutomatically=تصنيف "المصنعة" جميع أوامر المحدد.
|
||||||
@ -158,3 +151,4 @@ OrderFail=حدث خطأ أثناء إنشاء طلباتكم
|
|||||||
CreateOrders=إنشاء أوامر
|
CreateOrders=إنشاء أوامر
|
||||||
ToBillSeveralOrderSelectCustomer=لإنشاء فاتورة لعدة أوامر، انقر أولا على العملاء، ثم اختر "٪ الصورة".
|
ToBillSeveralOrderSelectCustomer=لإنشاء فاتورة لعدة أوامر، انقر أولا على العملاء، ثم اختر "٪ الصورة".
|
||||||
CloseReceivedSupplierOrdersAutomatically=Close order to "%s" automatically if all products are received.
|
CloseReceivedSupplierOrdersAutomatically=Close order to "%s" automatically if all products are received.
|
||||||
|
SetShippingMode=Set shipping mode
|
||||||
|
|||||||
@ -1,6 +1,5 @@
|
|||||||
# Dolibarr language file - Source file is en_US - other
|
# Dolibarr language file - Source file is en_US - other
|
||||||
SecurityCode=رمز الحماية
|
SecurityCode=رمز الحماية
|
||||||
Calendar=التقويم
|
|
||||||
NumberingShort=N°
|
NumberingShort=N°
|
||||||
Tools=أدوات
|
Tools=أدوات
|
||||||
ToolsDesc=All miscellaneous tools not included in other menu entries are collected here.<br /><br />All the tools can be reached in the left menu.
|
ToolsDesc=All miscellaneous tools not included in other menu entries are collected here.<br /><br />All the tools can be reached in the left menu.
|
||||||
@ -43,7 +42,7 @@ Notify_SHIPPING_SENTBYMAIL=الشحن ترسل عن طريق البريد
|
|||||||
Notify_MEMBER_VALIDATE=عضو مصدق
|
Notify_MEMBER_VALIDATE=عضو مصدق
|
||||||
Notify_MEMBER_MODIFY=تعديل الأعضاء
|
Notify_MEMBER_MODIFY=تعديل الأعضاء
|
||||||
Notify_MEMBER_SUBSCRIPTION=عضو المكتتب
|
Notify_MEMBER_SUBSCRIPTION=عضو المكتتب
|
||||||
Notify_MEMBER_RESILIATE=عضو resiliated
|
Notify_MEMBER_RESILIATE=Member terminated
|
||||||
Notify_MEMBER_DELETE=عضو حذف
|
Notify_MEMBER_DELETE=عضو حذف
|
||||||
Notify_PROJECT_CREATE=إنشاء مشروع
|
Notify_PROJECT_CREATE=إنشاء مشروع
|
||||||
Notify_TASK_CREATE=مهمة إنشاء
|
Notify_TASK_CREATE=مهمة إنشاء
|
||||||
@ -55,7 +54,6 @@ TotalSizeOfAttachedFiles=اجمالى حجم الملفات المرفقة / و
|
|||||||
MaxSize=الحجم الأقصى
|
MaxSize=الحجم الأقصى
|
||||||
AttachANewFile=إرفاق ملف جديد / وثيقة
|
AttachANewFile=إرفاق ملف جديد / وثيقة
|
||||||
LinkedObject=ربط وجوه
|
LinkedObject=ربط وجوه
|
||||||
Miscellaneous=متفرقات
|
|
||||||
NbOfActiveNotifications=عدد الإخطارات (ملحوظة من رسائل البريد الإلكتروني المستلم)
|
NbOfActiveNotifications=عدد الإخطارات (ملحوظة من رسائل البريد الإلكتروني المستلم)
|
||||||
PredefinedMailTest=هذا هو الاختبار الإلكتروني. تكون مفصولة \\ nThe سطرين من قبل حرف إرجاع.
|
PredefinedMailTest=هذا هو الاختبار الإلكتروني. تكون مفصولة \\ nThe سطرين من قبل حرف إرجاع.
|
||||||
PredefinedMailTestHtml=هذا هو البريد <b>الاختبار</b> (الاختبار يجب أن تكون في كلمة جريئة). <br> وتفصل بين الخطين من قبل حرف إرجاع.
|
PredefinedMailTestHtml=هذا هو البريد <b>الاختبار</b> (الاختبار يجب أن تكون في كلمة جريئة). <br> وتفصل بين الخطين من قبل حرف إرجاع.
|
||||||
@ -201,36 +199,16 @@ IfAmountHigherThan=إذا قدر أعلى <strong>من٪ الصورة</strong>
|
|||||||
SourcesRepository=مستودع للمصادر
|
SourcesRepository=مستودع للمصادر
|
||||||
Chart=Chart
|
Chart=Chart
|
||||||
|
|
||||||
##### Calendar common #####
|
|
||||||
NewCompanyToDolibarr=شركة٪ الصورة بإضافة
|
|
||||||
ContractValidatedInDolibarr=عقد%s التأكد من صلاحيتها
|
|
||||||
PropalClosedSignedInDolibarr=اقتراح٪ الصورة قعت
|
|
||||||
PropalClosedRefusedInDolibarr=اقتراح%s رفض
|
|
||||||
PropalValidatedInDolibarr=اقتراح%s التأكد من صلاحيتها
|
|
||||||
PropalClassifiedBilledInDolibarr=اقتراح%s تصنف المنقار
|
|
||||||
InvoiceValidatedInDolibarr=فاتورة%s التحقق من صحة
|
|
||||||
InvoicePaidInDolibarr=تغيير فاتورة%s لدفع
|
|
||||||
InvoiceCanceledInDolibarr=فاتورة%s إلغاء
|
|
||||||
MemberValidatedInDolibarr=عضو%s التأكد من صلاحيتها
|
|
||||||
MemberResiliatedInDolibarr=عضو٪ الصورة resiliated
|
|
||||||
MemberDeletedInDolibarr=عضو٪ الصورة حذفها
|
|
||||||
MemberSubscriptionAddedInDolibarr=وأضاف الاشتراك لعضو٪ الصورة
|
|
||||||
ShipmentValidatedInDolibarr=شحنة%s التأكد من صلاحيتها
|
|
||||||
ShipmentClassifyClosedInDolibarr=Shipment %s classify billed
|
|
||||||
ShipmentUnClassifyCloseddInDolibarr=Shipment %s classify reopened
|
|
||||||
ShipmentDeletedInDolibarr=شحنة٪ الصورة حذفها
|
|
||||||
##### Export #####
|
##### Export #####
|
||||||
Export=تصدير
|
|
||||||
ExportsArea=صادرات المنطقة
|
ExportsArea=صادرات المنطقة
|
||||||
AvailableFormats=الأشكال المتاحة
|
AvailableFormats=الأشكال المتاحة
|
||||||
LibraryUsed=وتستخدم Librairy
|
LibraryUsed=وتستخدم المكتبة
|
||||||
LibraryVersion=النسخة
|
LibraryVersion=Library version
|
||||||
ExportableDatas=تصدير datas
|
ExportableDatas=تصدير datas
|
||||||
NoExportableData=ليس للتصدير البيانات (أي وحدات للتصدير مع تحميل البيانات ، ومفقود أذونات)
|
NoExportableData=ليس للتصدير البيانات (أي وحدات للتصدير مع تحميل البيانات ، ومفقود أذونات)
|
||||||
NewExport=تصديرية جديدة
|
|
||||||
##### External sites #####
|
##### External sites #####
|
||||||
WebsiteSetup=Setup of module website
|
WebsiteSetup=Setup of module website
|
||||||
WEBSITE_PAGEURL=URL of page
|
WEBSITE_PAGEURL=URL of page
|
||||||
WEBSITE_TITLE=Title
|
WEBSITE_TITLE=العنوان
|
||||||
WEBSITE_DESCRIPTION=Description
|
WEBSITE_DESCRIPTION=الوصف
|
||||||
WEBSITE_KEYWORDS=Keywords
|
WEBSITE_KEYWORDS=Keywords
|
||||||
|
|||||||
@ -11,7 +11,7 @@ PAYPAL_SSLVERSION=Curl SSL Version
|
|||||||
PAYPAL_API_INTEGRAL_OR_PAYPALONLY=تقدم الدفع "لا يتجزأ" (بطاقة الائتمان + باي بال) أو "باي بال" فقط
|
PAYPAL_API_INTEGRAL_OR_PAYPALONLY=تقدم الدفع "لا يتجزأ" (بطاقة الائتمان + باي بال) أو "باي بال" فقط
|
||||||
PaypalModeIntegral=التكامل
|
PaypalModeIntegral=التكامل
|
||||||
PaypalModeOnlyPaypal=باي بال فقط
|
PaypalModeOnlyPaypal=باي بال فقط
|
||||||
PAYPAL_CSS_URL=Optionnal عنوان الموقع من ورقة أنماط CSS في صفحة الدفع
|
PAYPAL_CSS_URL=Optionnal URL of CSS style sheet on payment page
|
||||||
ThisIsTransactionId=هذا هو معرف من الصفقة: <b>%s</b>
|
ThisIsTransactionId=هذا هو معرف من الصفقة: <b>%s</b>
|
||||||
PAYPAL_ADD_PAYMENT_URL=إضافة رابط الدفع باي بال عند إرسال مستند عبر البريد
|
PAYPAL_ADD_PAYMENT_URL=إضافة رابط الدفع باي بال عند إرسال مستند عبر البريد
|
||||||
PredefinedMailContentLink=يمكنك النقر على الرابط أدناه آمن لجعل الدفع (باي بال) إذا لم تكن قد فعلت ذلك. ٪ الصورة
|
PredefinedMailContentLink=يمكنك النقر على الرابط أدناه آمن لجعل الدفع (باي بال) إذا لم تكن قد فعلت ذلك. ٪ الصورة
|
||||||
|
|||||||
@ -8,8 +8,8 @@ Batch=الكثير / المسلسل
|
|||||||
atleast1batchfield=أكل حسب التاريخ أو بيع حسب التاريخ أو لوط / الرقم التسلسلي
|
atleast1batchfield=أكل حسب التاريخ أو بيع حسب التاريخ أو لوط / الرقم التسلسلي
|
||||||
batch_number=الكثير / الرقم التسلسلي
|
batch_number=الكثير / الرقم التسلسلي
|
||||||
BatchNumberShort=الكثير / المسلسل
|
BatchNumberShort=الكثير / المسلسل
|
||||||
EatByDate=Eat-by date
|
EatByDate=أكل حسب التاريخ
|
||||||
SellByDate=Sell-by date
|
SellByDate=بيع من قبل التاريخ
|
||||||
DetailBatchNumber=الكثير / تفاصيل المسلسل
|
DetailBatchNumber=الكثير / تفاصيل المسلسل
|
||||||
DetailBatchFormat=الكثير / المسلسل:٪ ق - تناول بواسطة:٪ ق - للبيع عن طريق:٪ ق (الكمية:٪ د)
|
DetailBatchFormat=الكثير / المسلسل:٪ ق - تناول بواسطة:٪ ق - للبيع عن طريق:٪ ق (الكمية:٪ د)
|
||||||
printBatch=الكثير / التسلسلي:٪ الصورة
|
printBatch=الكثير / التسلسلي:٪ الصورة
|
||||||
@ -17,7 +17,7 @@ printEatby=تناول الطعام عن طريق:٪ الصورة
|
|||||||
printSellby=بيع عن طريق:٪ الصورة
|
printSellby=بيع عن طريق:٪ الصورة
|
||||||
printQty=الكمية:٪ د
|
printQty=الكمية:٪ د
|
||||||
AddDispatchBatchLine=إضافة سطر لالصلاحية إيفاد
|
AddDispatchBatchLine=إضافة سطر لالصلاحية إيفاد
|
||||||
WhenProductBatchModuleOnOptionAreForced=عندما وحدة لوط / المسلسل على، وزيادة / نقصان تضطر وضع الأسهم إلى الخيار الاخير ولا يمكن تحريرها. خيارات أخرى يمكن تعريفها على النحو الذي تريد.
|
WhenProductBatchModuleOnOptionAreForced=When module Lot/Serial is on, automatic increase/decrease stock mode is forced to shipping validate and manual dispatching for reception and can't be edited. Other options can be defined as you want.
|
||||||
ProductDoesNotUseBatchSerial=هذا المنتج لا يستخدم الكثير / الرقم التسلسلي
|
ProductDoesNotUseBatchSerial=هذا المنتج لا يستخدم الكثير / الرقم التسلسلي
|
||||||
ProductLotSetup=Setup of module lot/serial
|
ProductLotSetup=Setup of module lot/serial
|
||||||
ShowCurrentStockOfLot=Show current stock for couple product/lot
|
ShowCurrentStockOfLot=Show current stock for couple product/lot
|
||||||
|
|||||||
@ -32,8 +32,8 @@ ServicesOnSellAndOnBuy=خدمات للبيع والشراء
|
|||||||
LastModifiedProductsAndServices=Latest %s modified products/services
|
LastModifiedProductsAndServices=Latest %s modified products/services
|
||||||
LastRecordedProducts=Latest %s recorded products
|
LastRecordedProducts=Latest %s recorded products
|
||||||
LastRecordedServices=Latest %s recorded services
|
LastRecordedServices=Latest %s recorded services
|
||||||
CardProduct0=Product card
|
CardProduct0=منتجات البطاقات
|
||||||
CardProduct1=Service card
|
CardProduct1=بطاقة الخدمة
|
||||||
Stock=الأسهم
|
Stock=الأسهم
|
||||||
Stocks=الاسهم
|
Stocks=الاسهم
|
||||||
Movements=حركات
|
Movements=حركات
|
||||||
@ -89,20 +89,21 @@ NoteNotVisibleOnBill=علما) على الفواتير غير مرئي ، واق
|
|||||||
ServiceLimitedDuration=إذا كان المنتج هو خدمة لفترة محدودة :
|
ServiceLimitedDuration=إذا كان المنتج هو خدمة لفترة محدودة :
|
||||||
MultiPricesAbility=Several segment of prices per product/service (each customer is in one segment)
|
MultiPricesAbility=Several segment of prices per product/service (each customer is in one segment)
|
||||||
MultiPricesNumPrices=عدد من السعر
|
MultiPricesNumPrices=عدد من السعر
|
||||||
AssociatedProductsAbility=تفعيل ميزة حزمة
|
AssociatedProductsAbility=Activate the feature to manage virtual products
|
||||||
AssociatedProducts=المنتج حزمة
|
AssociatedProducts=المنتجات
|
||||||
AssociatedProductsNumber=عدد من المنتجات التي يتألف منها هذا المنتج حزمة
|
AssociatedProductsNumber=عدد المنتجات
|
||||||
ParentProductsNumber=عدد الوالد منتجات التعبئة والتغليف
|
ParentProductsNumber=عدد الوالد منتجات التعبئة والتغليف
|
||||||
ParentProducts=Parent products
|
ParentProducts=Parent products
|
||||||
IfZeroItIsNotAVirtualProduct=إذا 0، هذا المنتج غير منتج حزمة
|
IfZeroItIsNotAVirtualProduct=If 0, this product is not a virtual product
|
||||||
IfZeroItIsNotUsedByVirtualProduct=إذا 0، لا يستخدم هذا المنتج من قبل أي منتج حزمة
|
IfZeroItIsNotUsedByVirtualProduct=If 0, this product is not used by any virtual product
|
||||||
Translation=الترجمة
|
Translation=الترجمة
|
||||||
KeywordFilter=الكلمة الرئيسية فلتر
|
KeywordFilter=الكلمة الرئيسية فلتر
|
||||||
CategoryFilter=فئة فلتر
|
CategoryFilter=فئة فلتر
|
||||||
ProductToAddSearch=إضافة إلى البحث عن المنتج
|
ProductToAddSearch=إضافة إلى البحث عن المنتج
|
||||||
NoMatchFound=العثور على أي مباراة
|
NoMatchFound=العثور على أي مباراة
|
||||||
|
ListOfProductsServices=List of products/services
|
||||||
ProductAssociationList=قائمة المنتجات / الخدمات التي هي مكون من مكونات هذا المنتج الظاهري / حزمة
|
ProductAssociationList=قائمة المنتجات / الخدمات التي هي مكون من مكونات هذا المنتج الظاهري / حزمة
|
||||||
ProductParentList=قائمة منتجات / خدمات الحزمة مع هذا المنتج كمكون
|
ProductParentList=قائمة من المنتجات / الخدمات مع هذا المنتج كعنصر
|
||||||
ErrorAssociationIsFatherOfThis=واحد من اختيار المنتج الأم الحالية المنتج
|
ErrorAssociationIsFatherOfThis=واحد من اختيار المنتج الأم الحالية المنتج
|
||||||
DeleteProduct=حذف المنتجات / الخدمات
|
DeleteProduct=حذف المنتجات / الخدمات
|
||||||
ConfirmDeleteProduct=هل أنت متأكد من حذف هذه المنتجات / الخدمات؟
|
ConfirmDeleteProduct=هل أنت متأكد من حذف هذه المنتجات / الخدمات؟
|
||||||
@ -135,7 +136,7 @@ ListServiceByPopularity=قائمة الخدمات حسب الشهرة
|
|||||||
Finished=المنتجات المصنعة
|
Finished=المنتجات المصنعة
|
||||||
RowMaterial=المادة الأولى
|
RowMaterial=المادة الأولى
|
||||||
CloneProduct=استنساخ المنتجات أو الخدمات
|
CloneProduct=استنساخ المنتجات أو الخدمات
|
||||||
ConfirmCloneProduct=هل أنت متأكد من أن المنتج أو الخدمة استنساخ <b>٪ ق؟</b>
|
ConfirmCloneProduct=Are you sure you want to clone product or service <b>%s</b>?
|
||||||
CloneContentProduct=استنساخ جميع المعلومات الرئيسية من المنتجات / الخدمات
|
CloneContentProduct=استنساخ جميع المعلومات الرئيسية من المنتجات / الخدمات
|
||||||
ClonePricesProduct=استنساخ الرئيسية معلومات والأسعار
|
ClonePricesProduct=استنساخ الرئيسية معلومات والأسعار
|
||||||
CloneCompositionProduct=استنساخ حزم المنتج / الخدمة
|
CloneCompositionProduct=استنساخ حزم المنتج / الخدمة
|
||||||
@ -204,7 +205,7 @@ DefinitionOfBarCodeForProductNotComplete=تعريف نوع أو قيمة الر
|
|||||||
DefinitionOfBarCodeForThirdpartyNotComplete=Definition of type or value of bar code non complete for third party %s.
|
DefinitionOfBarCodeForThirdpartyNotComplete=Definition of type or value of bar code non complete for third party %s.
|
||||||
BarCodeDataForProduct=معلومات الباركود من الناتج٪ الصورة:
|
BarCodeDataForProduct=معلومات الباركود من الناتج٪ الصورة:
|
||||||
BarCodeDataForThirdparty=Barcode information of third party %s :
|
BarCodeDataForThirdparty=Barcode information of third party %s :
|
||||||
ResetBarcodeForAllRecords=تحديد قيمة الباركود لكافة السجلات (هذه القيمة الباركود سيتم إعادة تعيين أيضا يعرف بالفعل مع القيم الجديدة)
|
ResetBarcodeForAllRecords=Define barcode value for all record (this will also reset barcode value already defined with new values)
|
||||||
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
|
||||||
PricingRule=Rules for sell prices
|
PricingRule=Rules for sell prices
|
||||||
@ -242,7 +243,7 @@ PropalMergePdfProductChooseFile=اختر ملفات PDF
|
|||||||
IncludingProductWithTag=بما في ذلك المنتجات / الخدمات مع العلامة
|
IncludingProductWithTag=بما في ذلك المنتجات / الخدمات مع العلامة
|
||||||
DefaultPriceRealPriceMayDependOnCustomer=سعر افتراضي، السعر الحقيقي قد تعتمد على العملاء
|
DefaultPriceRealPriceMayDependOnCustomer=سعر افتراضي، السعر الحقيقي قد تعتمد على العملاء
|
||||||
WarningSelectOneDocument=يرجى تحديد وثيقة واحدة على الأقل
|
WarningSelectOneDocument=يرجى تحديد وثيقة واحدة على الأقل
|
||||||
DefaultUnitToShow=Unit
|
DefaultUnitToShow=وحدة
|
||||||
NbOfQtyInProposals=Qty in proposals
|
NbOfQtyInProposals=Qty in proposals
|
||||||
ClinkOnALinkOfColumn=Click on a link of column %s to get a detailed view...
|
ClinkOnALinkOfColumn=Click on a link of column %s to get a detailed view...
|
||||||
TranslatedLabel=Translated label
|
TranslatedLabel=Translated label
|
||||||
|
|||||||
@ -8,7 +8,7 @@ Projects=المشاريع
|
|||||||
ProjectsArea=Projects Area
|
ProjectsArea=Projects Area
|
||||||
ProjectStatus=حالة المشروع
|
ProjectStatus=حالة المشروع
|
||||||
SharedProject=مشاريع مشتركة
|
SharedProject=مشاريع مشتركة
|
||||||
PrivateProject=Project contacts
|
PrivateProject=مشروع اتصالات
|
||||||
MyProjectsDesc=ويقتصر هذا الرأي على المشاريع التي تقوم على الاتصال (كل ما هو نوع).
|
MyProjectsDesc=ويقتصر هذا الرأي على المشاريع التي تقوم على الاتصال (كل ما هو نوع).
|
||||||
ProjectsPublicDesc=هذا الرأي يعرض جميع المشاريع ويسمح لك قراءة.
|
ProjectsPublicDesc=هذا الرأي يعرض جميع المشاريع ويسمح لك قراءة.
|
||||||
TasksOnProjectsPublicDesc=This view presents all tasks on projects you are allowed to read.
|
TasksOnProjectsPublicDesc=This view presents all tasks on projects you are allowed to read.
|
||||||
@ -20,14 +20,15 @@ OnlyOpenedProject=المشاريع المفتوحة فقط مرئية (المش
|
|||||||
ClosedProjectsAreHidden=Closed projects are not visible.
|
ClosedProjectsAreHidden=Closed projects are not visible.
|
||||||
TasksPublicDesc=هذا الرأي يعرض جميع المشاريع والمهام ويسمح لك قراءة.
|
TasksPublicDesc=هذا الرأي يعرض جميع المشاريع والمهام ويسمح لك قراءة.
|
||||||
TasksDesc=هذا الرأي يعرض جميع المشاريع والمهام (أذونات المستخدم الخاص أعطى الصلاحية لعرض كل شيء).
|
TasksDesc=هذا الرأي يعرض جميع المشاريع والمهام (أذونات المستخدم الخاص أعطى الصلاحية لعرض كل شيء).
|
||||||
AllTaskVisibleButEditIfYouAreAssigned=جميع المهام لهذا المشروع واضحة، ولكن يمكنك إدخال الوقت فقط لمهمة تم تعيينك على. تعيين مهمة لك إذا كنت تريد أن تدخل من الوقت على ذلك.
|
AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task assigned to you. Assign task to yourself if you need to enter time on it.
|
||||||
OnlyYourTaskAreVisible=فقط المهام الموكلة لك على مرئية. تعيين مهمة لك إذا كنت تريد أن تدخل من الوقت على ذلك.
|
OnlyYourTaskAreVisible=Only tasks assigned to you are visible. Assign task to yourself if it is not visible and you need to enter time on it.
|
||||||
|
ImportDatasetTasks=Tasks of projects
|
||||||
NewProject=مشروع جديد
|
NewProject=مشروع جديد
|
||||||
AddProject=إنشاء مشروع
|
AddProject=إنشاء مشروع
|
||||||
DeleteAProject=حذف مشروع
|
DeleteAProject=حذف مشروع
|
||||||
DeleteATask=حذف مهمة
|
DeleteATask=حذف مهمة
|
||||||
ConfirmDeleteAProject=هل أنت متأكد من أنك تريد حذف هذا المشروع؟
|
ConfirmDeleteAProject=Are you sure you want to delete this project?
|
||||||
ConfirmDeleteATask=هل أنت متأكد من أنك تريد حذف هذه المهمة؟
|
ConfirmDeleteATask=Are you sure you want to delete this task?
|
||||||
OpenedProjects=Open projects
|
OpenedProjects=Open projects
|
||||||
OpenedTasks=Open tasks
|
OpenedTasks=Open tasks
|
||||||
OpportunitiesStatusForOpenedProjects=Opportunities amount of open projects by status
|
OpportunitiesStatusForOpenedProjects=Opportunities amount of open projects by status
|
||||||
@ -91,16 +92,16 @@ NotOwnerOfProject=لا صاحب هذا المشروع من القطاع الخا
|
|||||||
AffectedTo=إلى المتضررين
|
AffectedTo=إلى المتضررين
|
||||||
CantRemoveProject=هذا المشروع لا يمكن إزالتها كما هي المرجعية بعض أشياء أخرى (الفاتورة ، أو غيرها من الأوامر). انظر referers تبويبة.
|
CantRemoveProject=هذا المشروع لا يمكن إزالتها كما هي المرجعية بعض أشياء أخرى (الفاتورة ، أو غيرها من الأوامر). انظر referers تبويبة.
|
||||||
ValidateProject=تحقق من مشروع غابة
|
ValidateProject=تحقق من مشروع غابة
|
||||||
ConfirmValidateProject=هل أنت متأكد أنك تريد التحقق من صحة هذا المشروع؟
|
ConfirmValidateProject=Are you sure you want to validate this project?
|
||||||
CloseAProject=وثيقة المشروع
|
CloseAProject=وثيقة المشروع
|
||||||
ConfirmCloseAProject=هل أنت متأكد أنك تريد إغلاق هذا المشروع؟
|
ConfirmCloseAProject=Are you sure you want to close this project?
|
||||||
ReOpenAProject=فتح مشروع
|
ReOpenAProject=فتح مشروع
|
||||||
ConfirmReOpenAProject=هل أنت متأكد أنك تريد إعادة فتح هذا المشروع؟
|
ConfirmReOpenAProject=Are you sure you want to re-open this project?
|
||||||
ProjectContact=مشروع اتصالات
|
ProjectContact=مشروع اتصالات
|
||||||
ActionsOnProject=الإجراءات على المشروع
|
ActionsOnProject=الإجراءات على المشروع
|
||||||
YouAreNotContactOfProject=كنت لا اتصال لهذا المشروع الخاص
|
YouAreNotContactOfProject=كنت لا اتصال لهذا المشروع الخاص
|
||||||
DeleteATimeSpent=قضى الوقت حذف
|
DeleteATimeSpent=قضى الوقت حذف
|
||||||
ConfirmDeleteATimeSpent=هل أنت متأكد أنك تريد حذف هذا الوقت الذي يقضيه؟
|
ConfirmDeleteATimeSpent=Are you sure you want to delete this time spent?
|
||||||
DoNotShowMyTasksOnly=انظر أيضا المهام الغير موكلة الي
|
DoNotShowMyTasksOnly=انظر أيضا المهام الغير موكلة الي
|
||||||
ShowMyTasksOnly=عرض فقط المهام الموكلة الي
|
ShowMyTasksOnly=عرض فقط المهام الموكلة الي
|
||||||
TaskRessourceLinks=مصادر
|
TaskRessourceLinks=مصادر
|
||||||
@ -117,8 +118,8 @@ CloneContacts=الاتصالات استنساخ
|
|||||||
CloneNotes=ملاحظات استنساخ
|
CloneNotes=ملاحظات استنساخ
|
||||||
CloneProjectFiles=انضم مشروع استنساخ ملفات
|
CloneProjectFiles=انضم مشروع استنساخ ملفات
|
||||||
CloneTaskFiles=مهمة استنساخ (ق) انضم الملفات (إن مهمة (ق) المستنسخة)
|
CloneTaskFiles=مهمة استنساخ (ق) انضم الملفات (إن مهمة (ق) المستنسخة)
|
||||||
CloneMoveDate=يعود تاريخ تحديث مشروع / المهام من الآن؟
|
CloneMoveDate=Update project/tasks dates from now?
|
||||||
ConfirmCloneProject=هل أنت متأكد من استنساخ هذا المشروع؟
|
ConfirmCloneProject=Are you sure to clone this project?
|
||||||
ProjectReportDate=تغيير موعد المهمة وفقا المشروع تاريخ بداية
|
ProjectReportDate=تغيير موعد المهمة وفقا المشروع تاريخ بداية
|
||||||
ErrorShiftTaskDate=من المستحيل تحويل التاريخ المهمة وفقا لتاريخ بدء المشروع الجديد
|
ErrorShiftTaskDate=من المستحيل تحويل التاريخ المهمة وفقا لتاريخ بدء المشروع الجديد
|
||||||
ProjectsAndTasksLines=المشاريع والمهام
|
ProjectsAndTasksLines=المشاريع والمهام
|
||||||
@ -188,6 +189,6 @@ OppStatusQUAL=المؤهل العلمى
|
|||||||
OppStatusPROPO=مقترح
|
OppStatusPROPO=مقترح
|
||||||
OppStatusNEGO=Negociation
|
OppStatusNEGO=Negociation
|
||||||
OppStatusPENDING=بانتظار
|
OppStatusPENDING=بانتظار
|
||||||
OppStatusWON=Won
|
OppStatusWON=فاز
|
||||||
OppStatusLOST=ضائع
|
OppStatusLOST=ضائع
|
||||||
Budget=Budget
|
Budget=Budget
|
||||||
|
|||||||
@ -13,8 +13,8 @@ Prospect=احتمال
|
|||||||
DeleteProp=اقتراح حذف التجارية
|
DeleteProp=اقتراح حذف التجارية
|
||||||
ValidateProp=مصادقة على اقتراح التجارية
|
ValidateProp=مصادقة على اقتراح التجارية
|
||||||
AddProp=إنشاء اقتراح
|
AddProp=إنشاء اقتراح
|
||||||
ConfirmDeleteProp=هل أنت متأكد من أنك تريد حذف هذا التجارية الاقتراح؟
|
ConfirmDeleteProp=Are you sure you want to delete this commercial proposal?
|
||||||
ConfirmValidateProp=هل أنت متأكد من هذا التجارية للمصادقة على الاقتراح؟
|
ConfirmValidateProp=Are you sure you want to validate this commercial proposal under name <b>%s</b>?
|
||||||
LastPropals=Latest %s proposals
|
LastPropals=Latest %s proposals
|
||||||
LastModifiedProposals=Latest %s modified proposals
|
LastModifiedProposals=Latest %s modified proposals
|
||||||
AllPropals=جميع المقترحات
|
AllPropals=جميع المقترحات
|
||||||
@ -56,8 +56,8 @@ CreateEmptyPropal=إنشاء خاليا التجارية vierge مقترحات
|
|||||||
DefaultProposalDurationValidity=تقصير مدة صلاحية اقتراح التجارية (أيام)
|
DefaultProposalDurationValidity=تقصير مدة صلاحية اقتراح التجارية (أيام)
|
||||||
UseCustomerContactAsPropalRecipientIfExist=استخدام العميل عنوان الاتصال إذا حددت بدلا من التصدي لطرف ثالث حسب الاقتراح المستفيدة معالجة
|
UseCustomerContactAsPropalRecipientIfExist=استخدام العميل عنوان الاتصال إذا حددت بدلا من التصدي لطرف ثالث حسب الاقتراح المستفيدة معالجة
|
||||||
ClonePropal=اقتراح استنساخ التجارية
|
ClonePropal=اقتراح استنساخ التجارية
|
||||||
ConfirmClonePropal=هل أنت متأكد من استنساخ هذا الاقتراح <b>٪ ق</b> التجارية؟
|
ConfirmClonePropal=Are you sure you want to clone the commercial proposal <b>%s</b>?
|
||||||
ConfirmReOpenProp=هل أنت متأكد أنك تريد فتح ظهر <b>%s</b> اقتراح التجارية؟
|
ConfirmReOpenProp=Are you sure you want to open back the commercial proposal <b>%s</b>?
|
||||||
ProposalsAndProposalsLines=واقتراح الخطوط التجارية
|
ProposalsAndProposalsLines=واقتراح الخطوط التجارية
|
||||||
ProposalLine=اقتراح خط
|
ProposalLine=اقتراح خط
|
||||||
AvailabilityPeriod=توفر تأخير
|
AvailabilityPeriod=توفر تأخير
|
||||||
|
|||||||
@ -16,13 +16,15 @@ NbOfSendings=عدد الإرسال
|
|||||||
NumberOfShipmentsByMonth=عدد الشحنات خلال الشهر
|
NumberOfShipmentsByMonth=عدد الشحنات خلال الشهر
|
||||||
SendingCard=بطاقة شحن
|
SendingCard=بطاقة شحن
|
||||||
NewSending=ارسال جديدة
|
NewSending=ارسال جديدة
|
||||||
CreateASending=إنشاء إرسال
|
CreateShipment=إنشاء إرسال
|
||||||
QtyShipped=الكمية المشحونة
|
QtyShipped=الكمية المشحونة
|
||||||
|
QtyPreparedOrShipped=Qty prepared or shipped
|
||||||
QtyToShip=لشحن الكمية
|
QtyToShip=لشحن الكمية
|
||||||
QtyReceived=الكمية الواردة
|
QtyReceived=الكمية الواردة
|
||||||
|
QtyInOtherShipments=Qty in other shipments
|
||||||
KeepToShip=تبقى على السفينة
|
KeepToShip=تبقى على السفينة
|
||||||
OtherSendingsForSameOrder=الإرسال الأخرى لهذا النظام
|
OtherSendingsForSameOrder=الإرسال الأخرى لهذا النظام
|
||||||
SendingsAndReceivingForSameOrder=الإرسال وreceivings لهذا النظام
|
SendingsAndReceivingForSameOrder=Shipments and receipts for this order
|
||||||
SendingsToValidate=للمصادقة على إرسال
|
SendingsToValidate=للمصادقة على إرسال
|
||||||
StatusSendingCanceled=ألغيت
|
StatusSendingCanceled=ألغيت
|
||||||
StatusSendingDraft=مسودة
|
StatusSendingDraft=مسودة
|
||||||
@ -32,14 +34,16 @@ StatusSendingDraftShort=مسودة
|
|||||||
StatusSendingValidatedShort=صادق
|
StatusSendingValidatedShort=صادق
|
||||||
StatusSendingProcessedShort=معالجة
|
StatusSendingProcessedShort=معالجة
|
||||||
SendingSheet=ورقة الشحن
|
SendingSheet=ورقة الشحن
|
||||||
ConfirmDeleteSending=هل أنت متأكد من أنك تريد حذف هذا المرسلة؟
|
ConfirmDeleteSending=Are you sure you want to delete this shipment?
|
||||||
ConfirmValidateSending=هل أنت متأكد من أنك تريد إرسال valdate هذا؟
|
ConfirmValidateSending=Are you sure you want to validate this shipment with reference <b>%s</b>?
|
||||||
ConfirmCancelSending=هل أنت متأكد من أنك تريد إلغاء إرسال هذا؟
|
ConfirmCancelSending=Are you sure you want to cancel this shipment?
|
||||||
DocumentModelSimple=وثيقة نموذج بسيط
|
DocumentModelSimple=وثيقة نموذج بسيط
|
||||||
DocumentModelMerou=Mérou A5 نموذج
|
DocumentModelMerou=Mérou A5 نموذج
|
||||||
WarningNoQtyLeftToSend=تحذير ، لا تنتظر أن المنتجات المشحونة.
|
WarningNoQtyLeftToSend=تحذير ، لا تنتظر أن المنتجات المشحونة.
|
||||||
StatsOnShipmentsOnlyValidated=الإحصاءات التي أجريت على شحنات التحقق من صحة فقط. التاريخ الذي يستخدم هو تاريخ المصادقة على شحنة (تاريخ التسليم مسوى لا يعرف دائما).
|
StatsOnShipmentsOnlyValidated=الإحصاءات التي أجريت على شحنات التحقق من صحة فقط. التاريخ الذي يستخدم هو تاريخ المصادقة على شحنة (تاريخ التسليم مسوى لا يعرف دائما).
|
||||||
DateDeliveryPlanned=التاريخ المحدد للتسليم
|
DateDeliveryPlanned=التاريخ المحدد للتسليم
|
||||||
|
RefDeliveryReceipt=Ref delivery receipt
|
||||||
|
StatusReceipt=Status delivery receipt
|
||||||
DateReceived=تلقى تاريخ التسليم
|
DateReceived=تلقى تاريخ التسليم
|
||||||
SendShippingByEMail=ارسال شحنة عن طريق البريد الالكتروني
|
SendShippingByEMail=ارسال شحنة عن طريق البريد الالكتروني
|
||||||
SendShippingRef=تقديم شحنة٪ الصورة
|
SendShippingRef=تقديم شحنة٪ الصورة
|
||||||
|
|||||||
@ -38,7 +38,7 @@ SmsStatusNotSent=لم يرسل
|
|||||||
SmsSuccessfulySent=الرسائل القصيرة المرسلة بشكل صحيح (من %s إلى %s)
|
SmsSuccessfulySent=الرسائل القصيرة المرسلة بشكل صحيح (من %s إلى %s)
|
||||||
ErrorSmsRecipientIsEmpty=عدد من الهدف فارغة
|
ErrorSmsRecipientIsEmpty=عدد من الهدف فارغة
|
||||||
WarningNoSmsAdded=لا رقم هاتف جديدا يضاف إلى قائمة المستهدفين
|
WarningNoSmsAdded=لا رقم هاتف جديدا يضاف إلى قائمة المستهدفين
|
||||||
ConfirmValidSms=هل لك أن تتأكد من التحقق من صحة هذه campain؟
|
ConfirmValidSms=Do you confirm validation of this campain?
|
||||||
NbOfUniqueSms=ملحوظة: أرقام شعبة الشؤون المالية هاتف فريد من نوعه
|
NbOfUniqueSms=ملحوظة: أرقام شعبة الشؤون المالية هاتف فريد من نوعه
|
||||||
NbOfSms=Nbre من أرقام فون
|
NbOfSms=Nbre من أرقام فون
|
||||||
ThisIsATestMessage=هذه هي رسالة اختبار
|
ThisIsATestMessage=هذه هي رسالة اختبار
|
||||||
|
|||||||
@ -2,6 +2,7 @@
|
|||||||
WarehouseCard=بطاقة مخزن
|
WarehouseCard=بطاقة مخزن
|
||||||
Warehouse=مخزن
|
Warehouse=مخزن
|
||||||
Warehouses=المستودعات
|
Warehouses=المستودعات
|
||||||
|
ParentWarehouse=Parent warehouse
|
||||||
NewWarehouse=المستودع الجديد / بورصة المنطقة
|
NewWarehouse=المستودع الجديد / بورصة المنطقة
|
||||||
WarehouseEdit=تعديل مستودع
|
WarehouseEdit=تعديل مستودع
|
||||||
MenuNewWarehouse=مستودع جديد
|
MenuNewWarehouse=مستودع جديد
|
||||||
@ -45,7 +46,7 @@ PMPValue=المتوسط المرجح لسعر
|
|||||||
PMPValueShort=الواب
|
PMPValueShort=الواب
|
||||||
EnhancedValueOfWarehouses=قيمة المستودعات
|
EnhancedValueOfWarehouses=قيمة المستودعات
|
||||||
UserWarehouseAutoCreate=إنشاء مخزون تلقائيا عند إنشاء مستخدم
|
UserWarehouseAutoCreate=إنشاء مخزون تلقائيا عند إنشاء مستخدم
|
||||||
AllowAddLimitStockByWarehouse=Allow to add limit and desired stock by product and warehouse
|
AllowAddLimitStockByWarehouse=Allow to add limit and desired stock per couple (product, warehouse) instead of per product
|
||||||
IndependantSubProductStock=الأسهم المنتجات والأوراق المالية subproduct ومستقل
|
IndependantSubProductStock=الأسهم المنتجات والأوراق المالية subproduct ومستقل
|
||||||
QtyDispatched=ارسال كمية
|
QtyDispatched=ارسال كمية
|
||||||
QtyDispatchedShort=أرسل الكمية
|
QtyDispatchedShort=أرسل الكمية
|
||||||
@ -82,7 +83,7 @@ EstimatedStockValueSell=قيمة للبيع
|
|||||||
EstimatedStockValueShort=وتقدر قيمة المخزون
|
EstimatedStockValueShort=وتقدر قيمة المخزون
|
||||||
EstimatedStockValue=وتقدر قيمة المخزون
|
EstimatedStockValue=وتقدر قيمة المخزون
|
||||||
DeleteAWarehouse=حذف مستودع
|
DeleteAWarehouse=حذف مستودع
|
||||||
ConfirmDeleteWarehouse=هل أنت متأكد أنك تريد حذف <b>%s</b> مستودع؟
|
ConfirmDeleteWarehouse=Are you sure you want to delete the warehouse <b>%s</b>?
|
||||||
PersonalStock=%s طبيعة الشخصية
|
PersonalStock=%s طبيعة الشخصية
|
||||||
ThisWarehouseIsPersonalStock=هذا يمثل مستودع للطبيعة الشخصية لل%s %s
|
ThisWarehouseIsPersonalStock=هذا يمثل مستودع للطبيعة الشخصية لل%s %s
|
||||||
SelectWarehouseForStockDecrease=اختيار مستودع لاستخدامها لانخفاض الأسهم
|
SelectWarehouseForStockDecrease=اختيار مستودع لاستخدامها لانخفاض الأسهم
|
||||||
@ -132,10 +133,8 @@ InventoryCodeShort=الجرد. / وسائل التحقق. رمز
|
|||||||
NoPendingReceptionOnSupplierOrder=لا استقبال في انتظار المقرر أن يفتتح المورد أجل
|
NoPendingReceptionOnSupplierOrder=لا استقبال في انتظار المقرر أن يفتتح المورد أجل
|
||||||
ThisSerialAlreadyExistWithDifferentDate=هذا الكثير / الرقم التسلسلي <strong>(٪ ق)</strong> موجودة بالفعل ولكن مع eatby مختلفة أو تاريخ sellby <strong>(وجدت٪ الصورة</strong> ولكن قمت <strong>بإدخال%s).</strong>
|
ThisSerialAlreadyExistWithDifferentDate=هذا الكثير / الرقم التسلسلي <strong>(٪ ق)</strong> موجودة بالفعل ولكن مع eatby مختلفة أو تاريخ sellby <strong>(وجدت٪ الصورة</strong> ولكن قمت <strong>بإدخال%s).</strong>
|
||||||
OpenAll=Open for all actions
|
OpenAll=Open for all actions
|
||||||
OpenInternal=Open for internal actions
|
OpenInternal=Open only for internal actions
|
||||||
OpenShipping=Open for shippings
|
UseDispatchStatus=Use a dispatch status (approve/refuse) for product lines on supplier order reception
|
||||||
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
|
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
|
ProductStockWarehouseCreated=Stock limit for alert and desired optimal stock correctly created
|
||||||
ProductStockWarehouseUpdated=Stock limit for alert and desired optimal stock correctly updated
|
ProductStockWarehouseUpdated=Stock limit for alert and desired optimal stock correctly updated
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
# Dolibarr language file - Source file is en_US - supplier_proposal
|
# Dolibarr language file - Source file is en_US - supplier_proposal
|
||||||
SupplierProposal=مقترحات التجارية المورد
|
SupplierProposal=مقترحات التجارية المورد
|
||||||
supplier_proposalDESC=إدارة طلبات السعر للموردين
|
supplier_proposalDESC=إدارة طلبات السعر للموردين
|
||||||
SupplierProposalNew=New request
|
SupplierProposalNew=طلب جديد
|
||||||
CommRequest=طلب السعر
|
CommRequest=طلب السعر
|
||||||
CommRequests=طلبات الأسعار
|
CommRequests=طلبات الأسعار
|
||||||
SearchRequest=العثور على الطلب
|
SearchRequest=العثور على الطلب
|
||||||
@ -10,16 +10,16 @@ SupplierProposalsDraft=Draft supplier proposals
|
|||||||
LastModifiedRequests=Latest %s modified price requests
|
LastModifiedRequests=Latest %s modified price requests
|
||||||
RequestsOpened=طلبات السعر المفتوحة
|
RequestsOpened=طلبات السعر المفتوحة
|
||||||
SupplierProposalArea=منطقة مقترحات المورد
|
SupplierProposalArea=منطقة مقترحات المورد
|
||||||
SupplierProposalShort=Supplier proposal
|
SupplierProposalShort=اقتراح المورد
|
||||||
SupplierProposals=مقترحات المورد
|
SupplierProposals=مقترحات المورد
|
||||||
SupplierProposalsShort=Supplier proposals
|
SupplierProposalsShort=مقترحات المورد
|
||||||
NewAskPrice=طلب السعر الجديد
|
NewAskPrice=طلب السعر الجديد
|
||||||
ShowSupplierProposal=طلب عرض أسعار
|
ShowSupplierProposal=طلب عرض أسعار
|
||||||
AddSupplierProposal=إنشاء طلب السعر
|
AddSupplierProposal=إنشاء طلب السعر
|
||||||
SupplierProposalRefFourn=المورد المرجع
|
SupplierProposalRefFourn=المورد المرجع
|
||||||
SupplierProposalDate=تاريخ التسليم او الوصول
|
SupplierProposalDate=تاريخ التسليم او الوصول
|
||||||
SupplierProposalRefFournNotice=قبل أن يغلق على "مقبول"، والتفكير لفهم الموردين المراجع.
|
SupplierProposalRefFournNotice=قبل أن يغلق على "مقبول"، والتفكير لفهم الموردين المراجع.
|
||||||
ConfirmValidateAsk=هل أنت متأكد أنك تريد التحقق من صحة الطلب سعر هذا تحت <b>اسم%s؟</b>
|
ConfirmValidateAsk=Are you sure you want to validate this price request under name <b>%s</b>?
|
||||||
DeleteAsk=حذف الطلب
|
DeleteAsk=حذف الطلب
|
||||||
ValidateAsk=التحقق من صحة الطلب
|
ValidateAsk=التحقق من صحة الطلب
|
||||||
SupplierProposalStatusDraft=مشروع (يجب التحقق من صحة)
|
SupplierProposalStatusDraft=مشروع (يجب التحقق من صحة)
|
||||||
@ -28,18 +28,19 @@ SupplierProposalStatusClosed=مغلق
|
|||||||
SupplierProposalStatusSigned=قبلت
|
SupplierProposalStatusSigned=قبلت
|
||||||
SupplierProposalStatusNotSigned=رفض
|
SupplierProposalStatusNotSigned=رفض
|
||||||
SupplierProposalStatusDraftShort=مسودة
|
SupplierProposalStatusDraftShort=مسودة
|
||||||
|
SupplierProposalStatusValidatedShort=التحقق من صحة
|
||||||
SupplierProposalStatusClosedShort=مغلق
|
SupplierProposalStatusClosedShort=مغلق
|
||||||
SupplierProposalStatusSignedShort=قبلت
|
SupplierProposalStatusSignedShort=قبلت
|
||||||
SupplierProposalStatusNotSignedShort=رفض
|
SupplierProposalStatusNotSignedShort=رفض
|
||||||
CopyAskFrom=إنشاء طلب السعر عن طريق نسخ طلب القائمة
|
CopyAskFrom=إنشاء طلب السعر عن طريق نسخ طلب القائمة
|
||||||
CreateEmptyAsk=إنشاء طلب فارغة
|
CreateEmptyAsk=إنشاء طلب فارغة
|
||||||
CloneAsk=طلب السعر استنساخ
|
CloneAsk=طلب السعر استنساخ
|
||||||
ConfirmCloneAsk=هل أنت متأكد أنك تريد استنساخ طلب <b>السعر%s؟</b>
|
ConfirmCloneAsk=Are you sure you want to clone the price request <b>%s</b>?
|
||||||
ConfirmReOpenAsk=هل أنت متأكد أنك تريد فتح إعادة طلب <b>السعر%s؟</b>
|
ConfirmReOpenAsk=Are you sure you want to open back the price request <b>%s</b>?
|
||||||
SendAskByMail=إرسال طلب السعر عن طريق البريد
|
SendAskByMail=إرسال طلب السعر عن طريق البريد
|
||||||
SendAskRef=إرسال سعر الطلب٪ الصورة
|
SendAskRef=إرسال سعر الطلب٪ الصورة
|
||||||
SupplierProposalCard=طلب بطاقة
|
SupplierProposalCard=طلب بطاقة
|
||||||
ConfirmDeleteAsk=هل أنت متأكد أنك تريد حذف طلب السعر هذا؟
|
ConfirmDeleteAsk=Are you sure you want to delete this price request <b>%s</b>?
|
||||||
ActionsOnSupplierProposal=الأحداث على طلب السعر
|
ActionsOnSupplierProposal=الأحداث على طلب السعر
|
||||||
DocModelAuroreDescription=نموذج طلب كامل (شعار ...)
|
DocModelAuroreDescription=نموذج طلب كامل (شعار ...)
|
||||||
CommercialAsk=طلب السعر
|
CommercialAsk=طلب السعر
|
||||||
@ -50,5 +51,5 @@ ListOfSupplierProposal=قائمة الطلبات اقتراح المورد
|
|||||||
ListSupplierProposalsAssociatedProject=List of supplier proposals associated with project
|
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=Latest %s price requests
|
||||||
AllPriceRequests=All requests
|
AllPriceRequests=All requests
|
||||||
|
|||||||
@ -1,6 +1,7 @@
|
|||||||
# Dolibarr language file - Source file is en_US - trips
|
# Dolibarr language file - Source file is en_US - trips
|
||||||
ExpenseReport=تقرير حساب
|
ExpenseReport=تقرير حساب
|
||||||
ExpenseReports=تقارير المصاريف
|
ExpenseReports=تقارير المصاريف
|
||||||
|
ShowExpenseReport=عرض تقرير حساب
|
||||||
Trips=تقارير المصاريف
|
Trips=تقارير المصاريف
|
||||||
TripsAndExpenses=تقارير النفقات
|
TripsAndExpenses=تقارير النفقات
|
||||||
TripsAndExpensesStatistics=إحصاءات تقارير المصاريف
|
TripsAndExpensesStatistics=إحصاءات تقارير المصاريف
|
||||||
@ -8,12 +9,13 @@ TripCard=حساب بطاقة تقرير
|
|||||||
AddTrip=إنشاء تقرير حساب
|
AddTrip=إنشاء تقرير حساب
|
||||||
ListOfTrips=قائمة التقارير حساب
|
ListOfTrips=قائمة التقارير حساب
|
||||||
ListOfFees=قائمة الرسوم
|
ListOfFees=قائمة الرسوم
|
||||||
|
TypeFees=Types of fees
|
||||||
ShowTrip=عرض تقرير حساب
|
ShowTrip=عرض تقرير حساب
|
||||||
NewTrip=تقرير حساب جديد
|
NewTrip=تقرير حساب جديد
|
||||||
CompanyVisited=الشركة / المؤسسة زارت
|
CompanyVisited=الشركة / المؤسسة زارت
|
||||||
FeesKilometersOrAmout=كم المبلغ أو
|
FeesKilometersOrAmout=كم المبلغ أو
|
||||||
DeleteTrip=حذف تقرير حساب
|
DeleteTrip=حذف تقرير حساب
|
||||||
ConfirmDeleteTrip=هل أنت متأكد أنك تريد حذف هذا التقرير حساب؟
|
ConfirmDeleteTrip=Are you sure you want to delete this expense report?
|
||||||
ListTripsAndExpenses=قائمة التقارير حساب
|
ListTripsAndExpenses=قائمة التقارير حساب
|
||||||
ListToApprove=تنتظر الموافقة
|
ListToApprove=تنتظر الموافقة
|
||||||
ExpensesArea=منطقة تقارير المصاريف
|
ExpensesArea=منطقة تقارير المصاريف
|
||||||
@ -27,7 +29,7 @@ TripNDF=المعلومات تقرير حساب
|
|||||||
PDFStandardExpenseReports=قالب قياسي لتوليد وثيقة PDF لتقرير حساب
|
PDFStandardExpenseReports=قالب قياسي لتوليد وثيقة PDF لتقرير حساب
|
||||||
ExpenseReportLine=خط تقرير حساب
|
ExpenseReportLine=خط تقرير حساب
|
||||||
TF_OTHER=أخرى
|
TF_OTHER=أخرى
|
||||||
TF_TRIP=Transportation
|
TF_TRIP=وسائل النقل
|
||||||
TF_LUNCH=غداء
|
TF_LUNCH=غداء
|
||||||
TF_METRO=مترو
|
TF_METRO=مترو
|
||||||
TF_TRAIN=قطار
|
TF_TRAIN=قطار
|
||||||
@ -64,21 +66,21 @@ ValidatedWaitingApproval=التحقق من صحة (في انتظار الموا
|
|||||||
|
|
||||||
NOT_AUTHOR=أنت لست صاحب هذا التقرير حساب. إلغاء العملية.
|
NOT_AUTHOR=أنت لست صاحب هذا التقرير حساب. إلغاء العملية.
|
||||||
|
|
||||||
ConfirmRefuseTrip=هل أنت متأكد أنك تريد أن تنكر هذا التقرير حساب؟
|
ConfirmRefuseTrip=Are you sure you want to deny this expense report?
|
||||||
|
|
||||||
ValideTrip=الموافقة على تقرير النفقات
|
ValideTrip=الموافقة على تقرير النفقات
|
||||||
ConfirmValideTrip=هل أنت متأكد أنك تريد قبول هذا التقرير حساب؟
|
ConfirmValideTrip=Are you sure you want to approve this expense report?
|
||||||
|
|
||||||
PaidTrip=دفع تقرير مصروفات
|
PaidTrip=دفع تقرير مصروفات
|
||||||
ConfirmPaidTrip=هل أنت متأكد أنك تريد تغيير وضع هذا التقرير لحساب "مدفوع"؟
|
ConfirmPaidTrip=Are you sure you want to change status of this expense report to "Paid"?
|
||||||
|
|
||||||
ConfirmCancelTrip=هل أنت متأكد أنك تريد إلغاء هذا التقرير حساب؟
|
ConfirmCancelTrip=Are you sure you want to cancel this expense report?
|
||||||
|
|
||||||
BrouillonnerTrip=الرجوع تقرير نفقة لوضع "مسودة"
|
BrouillonnerTrip=الرجوع تقرير نفقة لوضع "مسودة"
|
||||||
ConfirmBrouillonnerTrip=هل أنت متأكد أنك تريد نقل هذا التقرير حساب لوضع "مسودة"؟
|
ConfirmBrouillonnerTrip=Are you sure you want to move this expense report to status "Draft"?
|
||||||
|
|
||||||
SaveTrip=التحقق من صحة التقرير حساب
|
SaveTrip=التحقق من صحة التقرير حساب
|
||||||
ConfirmSaveTrip=هل أنت متأكد أنك تريد التحقق من صحة هذا التقرير حساب؟
|
ConfirmSaveTrip=Are you sure you want to validate this expense report?
|
||||||
|
|
||||||
NoTripsToExportCSV=أي تقرير نفقة لتصدير لهذه الفترة.
|
NoTripsToExportCSV=أي تقرير نفقة لتصدير لهذه الفترة.
|
||||||
ExpenseReportPayment=دفع تقرير حساب
|
ExpenseReportPayment=دفع تقرير حساب
|
||||||
|
|||||||
@ -8,7 +8,7 @@ EditPassword=تعديل كلمة السر
|
|||||||
SendNewPassword=تجديد وإرسال كلمة السر
|
SendNewPassword=تجديد وإرسال كلمة السر
|
||||||
ReinitPassword=تجديد كلمة المرور
|
ReinitPassword=تجديد كلمة المرور
|
||||||
PasswordChangedTo=تغيير كلمة السر : ٪ ق
|
PasswordChangedTo=تغيير كلمة السر : ٪ ق
|
||||||
SubjectNewPassword=كلمة المرور الجديدة لDolibarr
|
SubjectNewPassword=Your new password for %s
|
||||||
GroupRights=مجموعة الاذونات
|
GroupRights=مجموعة الاذونات
|
||||||
UserRights=أذونات المستخدم
|
UserRights=أذونات المستخدم
|
||||||
UserGUISetup=مستخدم عرض الإعداد
|
UserGUISetup=مستخدم عرض الإعداد
|
||||||
@ -19,12 +19,12 @@ DeleteAUser=حذف المستخدم
|
|||||||
EnableAUser=وتمكن المستخدم
|
EnableAUser=وتمكن المستخدم
|
||||||
DeleteGroup=حذف
|
DeleteGroup=حذف
|
||||||
DeleteAGroup=حذف مجموعة
|
DeleteAGroup=حذف مجموعة
|
||||||
ConfirmDisableUser=هل أنت متأكد من أنك تريد تعطيل مستخدم <b>٪ ق؟</b>
|
ConfirmDisableUser=Are you sure you want to disable user <b>%s</b>?
|
||||||
ConfirmDeleteUser=هل أنت متأكد من أنك تريد حذف مستخدم <b>٪ ق؟</b>
|
ConfirmDeleteUser=Are you sure you want to delete user <b>%s</b>?
|
||||||
ConfirmDeleteGroup=هل أنت متأكد من أنك تريد حذف مجموعة <b>٪ ق؟</b>
|
ConfirmDeleteGroup=Are you sure you want to delete group <b>%s</b>?
|
||||||
ConfirmEnableUser=هل تريد بالتأكيد لتمكين المستخدم <b>٪ ق؟</b>
|
ConfirmEnableUser=Are you sure you want to enable user <b>%s</b>?
|
||||||
ConfirmReinitPassword=هل أنت متأكد من أن تولد كلمة سر جديدة للمستخدم <b>٪ ق؟</b>
|
ConfirmReinitPassword=Are you sure you want to generate a new password for user <b>%s</b>?
|
||||||
ConfirmSendNewPassword=هل تريد بالتأكيد لتوليد وإرسال كلمة مرور جديدة للمستخدم <b>٪ ق؟</b>
|
ConfirmSendNewPassword=Are you sure you want to generate and send new password for user <b>%s</b>?
|
||||||
NewUser=مستخدم جديد
|
NewUser=مستخدم جديد
|
||||||
CreateUser=إنشاء مستخدم
|
CreateUser=إنشاء مستخدم
|
||||||
LoginNotDefined=ادخل ليست محددة.
|
LoginNotDefined=ادخل ليست محددة.
|
||||||
@ -82,9 +82,9 @@ UserDeleted=ق إزالة المستخدم ٪
|
|||||||
NewGroupCreated=أنشأت مجموعة ق ٪
|
NewGroupCreated=أنشأت مجموعة ق ٪
|
||||||
GroupModified=المجموعة٪ الصورة المعدلة
|
GroupModified=المجموعة٪ الصورة المعدلة
|
||||||
GroupDeleted=فريق ازالة ق ٪
|
GroupDeleted=فريق ازالة ق ٪
|
||||||
ConfirmCreateContact=هل أنت متأكد من إنشاء Dolibarr حساب هذا الاتصال؟
|
ConfirmCreateContact=Are you sure you want to create a Dolibarr account for this contact?
|
||||||
ConfirmCreateLogin=هل أنت متأكد من إنشاء Dolibarr حساب هذا؟
|
ConfirmCreateLogin=Are you sure you want to create a Dolibarr account for this member?
|
||||||
ConfirmCreateThirdParty=هل أنت متأكد من إنشاء لهذا الطرف الثالث؟
|
ConfirmCreateThirdParty=Are you sure you want to create a third party for this member?
|
||||||
LoginToCreate=ادخل لخلق
|
LoginToCreate=ادخل لخلق
|
||||||
NameToCreate=اسم طرف ثالث لخلق
|
NameToCreate=اسم طرف ثالث لخلق
|
||||||
YourRole=الأدوار الخاص
|
YourRole=الأدوار الخاص
|
||||||
|
|||||||
@ -23,7 +23,7 @@ WithdrawalsSetup=Direct debit payment setup
|
|||||||
WithdrawStatistics=Direct debit payment statistics
|
WithdrawStatistics=Direct debit payment statistics
|
||||||
WithdrawRejectStatistics=Direct debit payment reject statistics
|
WithdrawRejectStatistics=Direct debit payment reject statistics
|
||||||
LastWithdrawalReceipt=Latest %s direct debit receipts
|
LastWithdrawalReceipt=Latest %s direct debit receipts
|
||||||
MakeWithdrawRequest=تقديم طلب سحب
|
MakeWithdrawRequest=Make a direct debit payment request
|
||||||
ThirdPartyBankCode=طرف ثالث بنك مدونة
|
ThirdPartyBankCode=طرف ثالث بنك مدونة
|
||||||
NoInvoiceCouldBeWithdrawed=أي فاتورة withdrawed بالنجاح. تأكد من أن الفاتورة على الشركات الحظر ساري المفعول.
|
NoInvoiceCouldBeWithdrawed=أي فاتورة withdrawed بالنجاح. تأكد من أن الفاتورة على الشركات الحظر ساري المفعول.
|
||||||
ClassCredited=تصنيف حساب
|
ClassCredited=تصنيف حساب
|
||||||
@ -67,7 +67,7 @@ CreditDate=الائتمان على
|
|||||||
WithdrawalFileNotCapable=غير قادر على توليد ملف استلام الانسحاب لبلدكم٪ الصورة (لا يتم اعتماد البلد)
|
WithdrawalFileNotCapable=غير قادر على توليد ملف استلام الانسحاب لبلدكم٪ الصورة (لا يتم اعتماد البلد)
|
||||||
ShowWithdraw=وتظهر سحب
|
ShowWithdraw=وتظهر سحب
|
||||||
IfInvoiceNeedOnWithdrawPaymentWontBeClosed=ومع ذلك، إذا فاتورة واحدة على الأقل دفع انسحاب لا تتم معالجتها حتى الآن، فإنه لن يكون كما سيولي للسماح لإدارة الانسحاب قبل.
|
IfInvoiceNeedOnWithdrawPaymentWontBeClosed=ومع ذلك، إذا فاتورة واحدة على الأقل دفع انسحاب لا تتم معالجتها حتى الآن، فإنه لن يكون كما سيولي للسماح لإدارة الانسحاب قبل.
|
||||||
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.
|
DoStandingOrdersBeforePayments=This tab allows you to request a direct debit payment order. Once done, go into menu Bank->Direct Debit orders 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=وهذا أيضا ينطبق على الفواتير والمدفوعات وتصنيفها على أنها "تدفع"
|
||||||
|
|||||||
@ -10,4 +10,6 @@ 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_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
|
descWORKFLOW_ORDER_CLASSIFY_SHIPPED_SHIPPING=Classify linked source order to shipped when a shipment is validated and quantity shipped is the same as in order
|
||||||
|
AutomaticCreation=Automatic creation
|
||||||
|
AutomaticClassification=Automatic classification
|
||||||
|
|||||||
@ -8,60 +8,90 @@ ACCOUNTING_EXPORT_AMOUNT=Export amount
|
|||||||
ACCOUNTING_EXPORT_DEVISE=Export currency
|
ACCOUNTING_EXPORT_DEVISE=Export currency
|
||||||
Selectformat=Избери формата за файла
|
Selectformat=Избери формата за файла
|
||||||
ACCOUNTING_EXPORT_PREFIX_SPEC=Уточнете префикса за името на файла
|
ACCOUNTING_EXPORT_PREFIX_SPEC=Уточнете префикса за името на файла
|
||||||
|
ThisService=This service
|
||||||
|
ThisProduct=This product
|
||||||
|
DefaultForService=Default for service
|
||||||
|
DefaultForProduct=Default for product
|
||||||
|
CantSuggest=Can't suggest
|
||||||
|
AccountancySetupDoneFromAccountancyMenu=Most setup of the accountancy is done from the menu %s
|
||||||
ConfigAccountingExpert=Configuration of the module accounting expert
|
ConfigAccountingExpert=Configuration of the module accounting expert
|
||||||
|
Journalization=Journalization
|
||||||
Journaux=Журнали
|
Journaux=Журнали
|
||||||
JournalFinancial=Financial journals
|
JournalFinancial=Financial journals
|
||||||
BackToChartofaccounts=Return chart of accounts
|
BackToChartofaccounts=Return chart of accounts
|
||||||
|
Chartofaccounts=Chart of accounts
|
||||||
|
CurrentDedicatedAccountingAccount=Current dedicated account
|
||||||
|
AssignDedicatedAccountingAccount=New account to assign
|
||||||
|
InvoiceLabel=Invoice label
|
||||||
|
OverviewOfAmountOfLinesNotBound=Overview of amount of lines not bound to accounting account
|
||||||
|
OverviewOfAmountOfLinesBound=Overview of amount of lines already bound to accounting account
|
||||||
|
OtherInfo=Other information
|
||||||
|
|
||||||
AccountancyArea=Accountancy area
|
AccountancyArea=Accountancy area
|
||||||
AccountancyAreaDescIntro=Usage of the accountancy module is done in several step:
|
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...
|
AccountancyAreaDescActionOnce=The following actions are usually executed one time only, or once per year...
|
||||||
|
AccountancyAreaDescActionOnceBis=Next steps should be done to save you time in future by suggesting you the correct default accounting account when making thee journalization (writing record in Journals and General ledger)
|
||||||
AccountancyAreaDescActionFreq=The following actions are usually executed every month, week or day for very large companies...
|
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
|
AccountancyAreaDescChartModel=STEP %s: Create a model of 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.
|
AccountancyAreaDescChart=STEP %s: Create or check content of your chart of account from menu %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.
|
AccountancyAreaDescBank=STEP %s: Check the binding between bank accounts and accounting account is done. Complete missing bindings. 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.
|
AccountancyAreaDescVat=STEP %s: Check the binding between vat rates and accounting account is done. Complete missing bindings. 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.
|
AccountancyAreaDescExpenseReport=STEP %s: Check the binding between type of expense report and accounting account is done. Complete missing bindings. You can set accounting accounts to use for each VAT from page %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.
|
AccountancyAreaDescSal=STEP %s: Check the binding between salaries payment and accounting account is done. Complete missing bindings. 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.
|
AccountancyAreaDescContrib=STEP %s: Check the binding between special expences (miscellaneous taxes) and accounting account is done. Complete missing bindings. 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. You can set the account dedicated for that from the menu entry %s.
|
||||||
|
AccountancyAreaDescMisc=STEP %s: Check the default binding between miscellaneous transaction lines and accounting account is done. Complete missing bindings. For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescProd=STEP %s: Check the binding between products/services and accounting account is done. Complete missing bindings. For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescLoan=STEP %s: Check the binding between loans payment and accounting account is done. Complete missing bindings. For this you can use 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.
|
AccountancyAreaDescCustomer=STEP %s: Check the binding between existing customer invoice lines and accounting account is done, so application will be able to journalize transactions in General Ledger in one click. Complete missing bindings. 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.
|
AccountancyAreaDescSupplier=STEP %s: Check the binding between existing supplier invoice lines and accounting account is done, so application will be able to journalize transactions in General Ledger in one click. Complete missing bindings. 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
|
AccountancyAreaDescWriteRecords=STEP %s: Write transactions into the General Ledger. For this, go into each Journal, and click into button "Journalize transactions in General Ledger".
|
||||||
|
AccountancyAreaDescAnalyze=STEP %s: Add or edit existing transactions and generate reports and exports.
|
||||||
|
|
||||||
Selectchartofaccounts=Select a chart of accounts
|
AccountancyAreaDescClosePeriod=STEP %s: Close period so we can't make modification in a future.
|
||||||
|
|
||||||
|
MenuAccountancy=Счетоводство
|
||||||
|
Selectchartofaccounts=Select active chart of accounts
|
||||||
|
ChangeAndLoad=Change and load
|
||||||
Addanaccount=Add an accounting account
|
Addanaccount=Add an accounting account
|
||||||
AccountAccounting=Accounting account
|
AccountAccounting=Accounting account
|
||||||
AccountAccountingShort=Account
|
AccountAccountingShort=Сметка
|
||||||
AccountAccountingSuggest=Accounting account suggest
|
AccountAccountingSuggest=Accounting account suggested
|
||||||
|
MenuDefaultAccounts=Default accounts
|
||||||
|
MenuVatAccounts=Vat accounts
|
||||||
|
MenuTaxAccounts=Tax accounts
|
||||||
|
MenuExpenseReportAccounts=Expense report accounts
|
||||||
|
MenuLoanAccounts=Loan accounts
|
||||||
|
MenuProductsAccounts=Product accounts
|
||||||
|
ProductsBinding=Products accounts
|
||||||
Ventilation=Binding to accounts
|
Ventilation=Binding to accounts
|
||||||
ProductsBinding=Products bindings
|
|
||||||
|
|
||||||
MenuAccountancy=Accountancy
|
|
||||||
CustomersVentilation=Customer invoice binding
|
CustomersVentilation=Customer invoice binding
|
||||||
SuppliersVentilation=Supplier invoice binding
|
SuppliersVentilation=Supplier invoice binding
|
||||||
Reports=Отчети
|
ExpenseReportsVentilation=Expense report binding
|
||||||
NewAccount=New accounting account
|
|
||||||
Create=Create
|
|
||||||
CreateMvts=Create new transaction
|
CreateMvts=Create new transaction
|
||||||
UpdateMvts=Modification of a transaction
|
UpdateMvts=Modification of a transaction
|
||||||
WriteBookKeeping=Record operations in General Ledger
|
WriteBookKeeping=Journalize transactions 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
|
||||||
|
TotalExpenseReport=Total expense report
|
||||||
InvoiceLines=Lines of invoices to bind
|
InvoiceLines=Lines of invoices to bind
|
||||||
InvoiceLinesDone=Bound lines of invoices
|
InvoiceLinesDone=Bound lines of invoices
|
||||||
|
ExpenseReportLines=Lines of expense reports to bind
|
||||||
|
ExpenseReportLinesDone=Bound lines of expense reports
|
||||||
IntoAccount=Bind line with the accounting account
|
IntoAccount=Bind line with the accounting account
|
||||||
|
|
||||||
Ventilate=Bind
|
|
||||||
|
|
||||||
|
Ventilate=Bind
|
||||||
|
LineId=Id line
|
||||||
Processing=Processing
|
Processing=Processing
|
||||||
EndProcessing=The end of processing
|
EndProcessing=Process terminated.
|
||||||
AnyLineVentilate=Any lines to bind
|
|
||||||
SelectedLines=Selected lines
|
SelectedLines=Selected lines
|
||||||
Lineofinvoice=Line of invoice
|
Lineofinvoice=Line of invoice
|
||||||
|
LineOfExpenseReport=Line of expense report
|
||||||
|
NoAccountSelected=No accounting account selected
|
||||||
VentilatedinAccount=Binded successfully to the accounting account
|
VentilatedinAccount=Binded successfully to the accounting account
|
||||||
NotVentilatedinAccount=Not bound to the accounting account
|
NotVentilatedinAccount=Not bound to the accounting account
|
||||||
XLineSuccessfullyBinded=%s products/services successfuly bound to an accounting account
|
XLineSuccessfullyBinded=%s products/services successfuly bound to an accounting account
|
||||||
@ -71,12 +101,12 @@ ACCOUNTING_LIMIT_LIST_VENTILATION=Number of elements to bind shown by page (maxi
|
|||||||
ACCOUNTING_LIST_SORT_VENTILATION_TODO=Begin the sorting of the page "Binding to do" 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 page "Binding done" 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=Truncate product & services description in listings after x chars (Best = 50)
|
||||||
ACCOUNTING_LENGTH_DESCRIPTION_ACCOUNT=Length for displaying product & services account description form in listings (Best = 50)
|
ACCOUNTING_LENGTH_DESCRIPTION_ACCOUNT=Truncate product & services account description form in listings after x chars (Best = 50)
|
||||||
ACCOUNTING_LENGTH_GACCOUNT=Length of the general accounting accounts
|
ACCOUNTING_LENGTH_GACCOUNT=Length of the general accounting accounts
|
||||||
ACCOUNTING_LENGTH_AACCOUNT=Length of the third party accounting 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".
|
ACCOUNTING_MANAGE_ZERO=Manage the zero at the end of an accounting account. Needed by some countries. Disabled by default. If set to on, you must also set the 2 following parameters (or it is ignored)
|
||||||
BANK_DISABLE_DIRECT_INPUT=Disable free input of bank transactions (Enabled by default with this module).
|
BANK_DISABLE_DIRECT_INPUT=Disable direct recording of transaction in bank account
|
||||||
|
|
||||||
ACCOUNTING_SELL_JOURNAL=Sell journal
|
ACCOUNTING_SELL_JOURNAL=Sell journal
|
||||||
ACCOUNTING_PURCHASE_JOURNAL=Purchase journal
|
ACCOUNTING_PURCHASE_JOURNAL=Purchase journal
|
||||||
@ -84,14 +114,14 @@ ACCOUNTING_MISCELLANEOUS_JOURNAL=Miscellaneous journal
|
|||||||
ACCOUNTING_EXPENSEREPORT_JOURNAL=Expense report journal
|
ACCOUNTING_EXPENSEREPORT_JOURNAL=Expense report journal
|
||||||
ACCOUNTING_SOCIAL_JOURNAL=Social journal
|
ACCOUNTING_SOCIAL_JOURNAL=Social journal
|
||||||
|
|
||||||
ACCOUNTING_ACCOUNT_TRANSFER_CASH=Account of transfer
|
ACCOUNTING_ACCOUNT_TRANSFER_CASH=Accounting account of transfer
|
||||||
ACCOUNTING_ACCOUNT_SUSPENSE=Account of wait
|
ACCOUNTING_ACCOUNT_SUSPENSE=Accounting account of wait
|
||||||
DONATION_ACCOUNTINGACCOUNT=Account to register donations
|
DONATION_ACCOUNTINGACCOUNT=Accounting account to register donations
|
||||||
|
|
||||||
ACCOUNTING_PRODUCT_BUY_ACCOUNT=Accounting account by default for bought products (if not defined in the product sheet)
|
ACCOUNTING_PRODUCT_BUY_ACCOUNT=Accounting account by default for bought products (used if not defined in the product sheet)
|
||||||
ACCOUNTING_PRODUCT_SOLD_ACCOUNT=Accounting account by default for the sold products (if not defined in the product sheet)
|
ACCOUNTING_PRODUCT_SOLD_ACCOUNT=Accounting account by default for the sold products (used if not defined in the product sheet)
|
||||||
ACCOUNTING_SERVICE_BUY_ACCOUNT=Accounting account by default for the bought services (if not defined in the service sheet)
|
ACCOUNTING_SERVICE_BUY_ACCOUNT=Accounting account by default for the bought services (used if not defined in the service sheet)
|
||||||
ACCOUNTING_SERVICE_SOLD_ACCOUNT=Accounting account by default for the sold services (if not defined in the service sheet)
|
ACCOUNTING_SERVICE_SOLD_ACCOUNT=Accounting account by default for the sold services (used if not defined in the service sheet)
|
||||||
|
|
||||||
Doctype=Тип на документа
|
Doctype=Тип на документа
|
||||||
Docdate=Дата
|
Docdate=Дата
|
||||||
@ -101,22 +131,24 @@ Labelcompte=Етикет на сметка
|
|||||||
Sens=Sens
|
Sens=Sens
|
||||||
Codejournal=Дневник
|
Codejournal=Дневник
|
||||||
NumPiece=Номер на част
|
NumPiece=Номер на част
|
||||||
|
TransactionNumShort=Num. transaction
|
||||||
AccountingCategory=Accounting category
|
AccountingCategory=Accounting category
|
||||||
|
GroupByAccountAccounting=Group by accounting account
|
||||||
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 lines 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 specific journal. At least one criteria is required.
|
||||||
ConfirmDeleteMvtPartial=This will delete the selected line(s) of the general ledger
|
ConfirmDeleteMvtPartial=This will delete the selected line(s) of the general ledger
|
||||||
DelBookKeeping=Delete the records of the general ledger
|
DelBookKeeping=Delete record of the general ledger
|
||||||
DescSellsJournal=Sells journal
|
|
||||||
DescPurchasesJournal=Purchases journal
|
|
||||||
FinanceJournal=Finance journal
|
FinanceJournal=Finance journal
|
||||||
|
ExpenseReportsJournal=Expense reports 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.
|
DescJournalOnlyBindedVisible=This is a view of record that are bound to products/services accountancy account and can be recorded into the General Ledger.
|
||||||
VATAccountNotDefined=Account for VAT not defined
|
VATAccountNotDefined=Account for VAT not defined
|
||||||
ThirdpartyAccountNotDefined=Account for third party not defined
|
ThirdpartyAccountNotDefined=Account for third party not defined
|
||||||
ProductAccountNotDefined=Account for product not defined
|
ProductAccountNotDefined=Account for product not defined
|
||||||
|
FeeAccountNotDefined=Account for fee not defined
|
||||||
BankAccountNotDefined=Account for bank not defined
|
BankAccountNotDefined=Account for bank not defined
|
||||||
CustomerInvoicePayment=Payment of invoice customer
|
CustomerInvoicePayment=Payment of invoice customer
|
||||||
ThirdPartyAccount=Thirdparty account
|
ThirdPartyAccount=Thirdparty account
|
||||||
@ -127,12 +159,10 @@ 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 third party customers and 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
|
||||||
|
|
||||||
Pcgtype=Class of account
|
Pcgtype=Class of account
|
||||||
Pcgsubtype=Under class of account
|
Pcgsubtype=Under class of account
|
||||||
Accountparent=Root of the account
|
|
||||||
|
|
||||||
TotalVente=Total turnover before tax
|
TotalVente=Total turnover before tax
|
||||||
TotalMarge=Total sales margin
|
TotalMarge=Total sales margin
|
||||||
@ -145,6 +175,10 @@ ChangeAccount=Change the product/service accounting account for selected lines w
|
|||||||
Vide=-
|
Vide=-
|
||||||
DescVentilSupplier=Consult here the list of supplier invoice lines bound or not yet bound to a product accounting account
|
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
|
||||||
|
DescVentilTodoExpenseReport=Bind expense report lines not already bound with a fee accounting account
|
||||||
|
DescVentilExpenseReport=Consult here the list of expense report lines bound (or not) to a fee accounting account
|
||||||
|
DescVentilExpenseReportMore=If you setup accounting account on type of expense report lines, the application will be able to make all the binding between your expense report 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 fees dictionary 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>".
|
||||||
|
DescVentilDoneExpenseReport=Consult here the list of the lines of expenses reports and their fees accounting account
|
||||||
|
|
||||||
ValidateHistory=Bind Automatically
|
ValidateHistory=Bind Automatically
|
||||||
AutomaticBindingDone=Automatic binding done
|
AutomaticBindingDone=Automatic binding done
|
||||||
@ -152,7 +186,7 @@ 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=Binding card
|
FicheVentilation=Binding card
|
||||||
GeneralLedgerIsWritten=Operations are written in the general ledger
|
GeneralLedgerIsWritten=Transactions are written in the general ledger
|
||||||
GeneralLedgerSomeRecordWasNotRecorded=Some of the transactions could not be recorded.
|
GeneralLedgerSomeRecordWasNotRecorded=Some of the transactions could not be recorded.
|
||||||
NoNewRecordSaved=No new record saved
|
NoNewRecordSaved=No new record saved
|
||||||
ListOfProductsWithoutAccountingAccount=List of products not bound to any accounting account
|
ListOfProductsWithoutAccountingAccount=List of products not bound to any accounting account
|
||||||
@ -178,22 +212,27 @@ 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 chart of accounts 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.
|
||||||
|
DefaultBindingDesc=This page can be used to set a default account to use to link transactions record about payment salaries, donation, taxes and vat when no specific accounting account were already set.
|
||||||
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 accounting account for sales.
|
||||||
OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
|
OptionModeProductBuyDesc=Show all products with accounting account for purchases.
|
||||||
CleanFixHistory=Remove accountancy code from lines that not exists into charts of account
|
CleanFixHistory=Remove accountancy code from lines that not exists into charts of account
|
||||||
CleanHistory=Reset all bindings for selected year
|
CleanHistory=Reset all bindings for selected year
|
||||||
|
|
||||||
|
WithoutValidAccount=Without valid dedicated account
|
||||||
|
WithValidAccount=With valid dedicated account
|
||||||
|
ValueNotIntoChartOfAccount=This value of accounting account does not exist into chart of account
|
||||||
|
|
||||||
## Dictionary
|
## Dictionary
|
||||||
Range=Range of accounting account
|
Range=Range of accounting account
|
||||||
Calculated=Calculated
|
Calculated=Calculated
|
||||||
Formula=Formula
|
Formula=Formula
|
||||||
|
|
||||||
## Error
|
## Error
|
||||||
ErrorNoAccountingCategoryForThisCountry=No accounting category are available for this country
|
ErrorNoAccountingCategoryForThisCountry=No accounting category available for country %s (See Home - Setup - Dictionaries)
|
||||||
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
|
||||||
|
|
||||||
@ -201,4 +240,3 @@ Binded=Lines bound
|
|||||||
ToBind=Lines to bind
|
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.
|
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.
|
||||||
|
|
||||||
|
|||||||
@ -22,7 +22,7 @@ SessionId=ID на сесията
|
|||||||
SessionSaveHandler=Handler за да запазите сесията
|
SessionSaveHandler=Handler за да запазите сесията
|
||||||
SessionSavePath=Място за съхранение на сесията
|
SessionSavePath=Място за съхранение на сесията
|
||||||
PurgeSessions=Изчистване на сесиите
|
PurgeSessions=Изчистване на сесиите
|
||||||
ConfirmPurgeSessions=Сигурни ли сте, че желаете да изчистите всички сесии? Това ще прекъсне всички потребители (освен Вас).
|
ConfirmPurgeSessions=Do you really want to purge all sessions? This will disconnect every user (except yourself).
|
||||||
NoSessionListWithThisHandler=Запиши сесиен манипулатор конфигурирани във вашата PHP, не позволява да се изброят всички текущи сесии.
|
NoSessionListWithThisHandler=Запиши сесиен манипулатор конфигурирани във вашата PHP, не позволява да се изброят всички текущи сесии.
|
||||||
LockNewSessions=Заключване за нови свързвания
|
LockNewSessions=Заключване за нови свързвания
|
||||||
ConfirmLockNewSessions=Сигурни ли сте, че желаете да ограничите всяка нова връзка Dolibarr за себе си. Само <b>%s</b> потребителят ще бъде в състояние да се свърже след това.
|
ConfirmLockNewSessions=Сигурни ли сте, че желаете да ограничите всяка нова връзка Dolibarr за себе си. Само <b>%s</b> потребителят ще бъде в състояние да се свърже след това.
|
||||||
@ -53,15 +53,13 @@ ErrorModuleRequireDolibarrVersion=Грешка, този модул изискв
|
|||||||
ErrorDecimalLargerThanAreForbidden=Грешка, точност по-висока от <b>%s</b> не се поддържа.
|
ErrorDecimalLargerThanAreForbidden=Грешка, точност по-висока от <b>%s</b> не се поддържа.
|
||||||
DictionarySetup=Dictionary setup
|
DictionarySetup=Dictionary setup
|
||||||
Dictionary=Dictionaries
|
Dictionary=Dictionaries
|
||||||
Chartofaccounts=Chart of accounts
|
|
||||||
Fiscalyear=Fiscal year
|
|
||||||
ErrorReservedTypeSystemSystemAuto=Стойност 'система' и 'автосистема' за типа са запазени. Може да използвате за стойност 'потребител' при добавяне на ваш личен запис.
|
ErrorReservedTypeSystemSystemAuto=Стойност 'система' и 'автосистема' за типа са запазени. Може да използвате за стойност 'потребител' при добавяне на ваш личен запис.
|
||||||
ErrorCodeCantContainZero=Кода не може да съдържа стойност 0
|
ErrorCodeCantContainZero=Кода не може да съдържа стойност 0
|
||||||
DisableJavascript=Изключете функциите JavaScript и Ajax (Препоръчва се за незрящи и при текстови браузъри)
|
DisableJavascript=Изключете функциите JavaScript и Ajax (Препоръчва се за незрящи и при текстови браузъри)
|
||||||
UseSearchToSelectCompanyTooltip=Also if you have a large number of third parties (> 100 000), you can increase speed by setting constant COMPANY_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string.
|
UseSearchToSelectCompanyTooltip=Also if you have a large number of third parties (> 100 000), you can increase speed by setting constant COMPANY_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string.
|
||||||
UseSearchToSelectContactTooltip=Also if you have a large number of third parties (> 100 000), you can increase speed by setting constant CONTACT_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string.
|
UseSearchToSelectContactTooltip=Also if you have a large number of third parties (> 100 000), you can increase speed by setting constant CONTACT_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string.
|
||||||
DelaiedFullListToSelectCompany=Wait you press a key before loading content of thirdparties combo list (This may increase performance if you have a large number of thirdparties)
|
DelaiedFullListToSelectCompany=Wait you press a key before loading content of thirdparties combo list (This may increase performance if you have a large number of thirdparties, but it is less convenient)
|
||||||
DelaiedFullListToSelectContact=Wait you press a key before loading content of contact combo list (This may increase performance if you have a large number of contact)
|
DelaiedFullListToSelectContact=Wait you press a key before loading content of contact combo list (This may increase performance if you have a large number of contact, but it is less convenient)
|
||||||
NumberOfKeyToSearch=NBR от знаци, за да предизвика търсене: %s
|
NumberOfKeyToSearch=NBR от знаци, за да предизвика търсене: %s
|
||||||
NotAvailableWhenAjaxDisabled=Не е налично, когато Аякс инвалиди
|
NotAvailableWhenAjaxDisabled=Не е налично, когато Аякс инвалиди
|
||||||
AllowToSelectProjectFromOtherCompany=On document of a third party, can choose a project linked to another third party
|
AllowToSelectProjectFromOtherCompany=On document of a third party, can choose a project linked to another third party
|
||||||
@ -143,7 +141,7 @@ PurgeRunNow=Изчистване сега
|
|||||||
PurgeNothingToDelete=No directory or files to delete.
|
PurgeNothingToDelete=No directory or files to delete.
|
||||||
PurgeNDirectoriesDeleted=<b>%s</b> изтрити файлове или директории.
|
PurgeNDirectoriesDeleted=<b>%s</b> изтрити файлове или директории.
|
||||||
PurgeAuditEvents=Поръси всички събития по сигурността
|
PurgeAuditEvents=Поръси всички събития по сигурността
|
||||||
ConfirmPurgeAuditEvents=Сигурен ли сте, че искате да очисти всички събития по сигурността? Всички охранителни трупи ще бъдат изтрити, няма други данни ще бъдат премахнати.
|
ConfirmPurgeAuditEvents=Are you sure you want to purge all security events? All security logs will be deleted, no other data will be removed.
|
||||||
GenerateBackup=Генериране на бекъп
|
GenerateBackup=Генериране на бекъп
|
||||||
Backup=Бекъп
|
Backup=Бекъп
|
||||||
Restore=Възстановяване
|
Restore=Възстановяване
|
||||||
@ -178,7 +176,7 @@ ExtendedInsert=Extended INSERT
|
|||||||
NoLockBeforeInsert=No lock commands around INSERT
|
NoLockBeforeInsert=No lock commands around INSERT
|
||||||
DelayedInsert=Delayed insert
|
DelayedInsert=Delayed insert
|
||||||
EncodeBinariesInHexa=Encode binary data in hexadecimal
|
EncodeBinariesInHexa=Encode binary data in hexadecimal
|
||||||
IgnoreDuplicateRecords=Ignore errors of duplicate records (INSERT IGNORE)
|
IgnoreDuplicateRecords=Ignore errors of duplicate record (INSERT IGNORE)
|
||||||
AutoDetectLang=Автоматично (език на браузъра)
|
AutoDetectLang=Автоматично (език на браузъра)
|
||||||
FeatureDisabledInDemo=Feature инвалиди в демо
|
FeatureDisabledInDemo=Feature инвалиди в демо
|
||||||
FeatureAvailableOnlyOnStable=Feature only available on official stable versions
|
FeatureAvailableOnlyOnStable=Feature only available on official stable versions
|
||||||
@ -225,6 +223,16 @@ HelpCenterDesc1=Тази област може да ви помогне да п
|
|||||||
HelpCenterDesc2=Част от тази услуга е достъпна <b>само</b> на <b>английски език.</b>
|
HelpCenterDesc2=Част от тази услуга е достъпна <b>само</b> на <b>английски език.</b>
|
||||||
CurrentMenuHandler=Текущото меню манипулатор
|
CurrentMenuHandler=Текущото меню манипулатор
|
||||||
MeasuringUnit=Мерна единица
|
MeasuringUnit=Мерна единица
|
||||||
|
LeftMargin=Left margin
|
||||||
|
TopMargin=Top margin
|
||||||
|
PaperSize=Paper type
|
||||||
|
Orientation=Orientation
|
||||||
|
SpaceX=Space X
|
||||||
|
SpaceY=Space Y
|
||||||
|
FontSize=Font size
|
||||||
|
Content=Content
|
||||||
|
NoticePeriod=Период на известяване
|
||||||
|
NewByMonth=New by month
|
||||||
Emails=Е-поща
|
Emails=Е-поща
|
||||||
EMailsSetup=Настройки на E-поща
|
EMailsSetup=Настройки на E-поща
|
||||||
EMailsDesc=Тази страница ви позволява да презапишете PHP параметри за изпращане на електронна поща. В повечето случаи за Unix / Linux OS, PHP настройка е вярна и тези параметри са безполезни.
|
EMailsDesc=Тази страница ви позволява да презапишете PHP параметри за изпращане на електронна поща. В повечето случаи за Unix / Linux OS, PHP настройка е вярна и тези параметри са безполезни.
|
||||||
@ -244,6 +252,9 @@ MAIN_MAIL_EMAIL_STARTTLS= Use TLS (STARTTLS) encrypt
|
|||||||
MAIN_DISABLE_ALL_SMS=Изключване на всички SMS sendings (за тестови цели или демонстрации)
|
MAIN_DISABLE_ALL_SMS=Изключване на всички SMS sendings (за тестови цели или демонстрации)
|
||||||
MAIN_SMS_SENDMODE=Метод за изпращане на SMS
|
MAIN_SMS_SENDMODE=Метод за изпращане на SMS
|
||||||
MAIN_MAIL_SMS_FROM=Номер по подразбиране на телефона за изпращане на SMS
|
MAIN_MAIL_SMS_FROM=Номер по подразбиране на телефона за изпращане на SMS
|
||||||
|
MAIN_MAIL_DEFAULT_FROMTYPE=Sender e-mail by default for manual sendings (User email or Company email)
|
||||||
|
UserEmail=User email
|
||||||
|
CompanyEmail=Company email
|
||||||
FeatureNotAvailableOnLinux=Функцията не е на разположение на Unix подобни системи. Тествайте вашата програма Sendmail на местно ниво.
|
FeatureNotAvailableOnLinux=Функцията не е на разположение на Unix подобни системи. Тествайте вашата програма Sendmail на местно ниво.
|
||||||
SubmitTranslation=If translation for this language is not complete or you find errors, you can correct this by editing files into directory <b>langs/%s</b> and submit your change to www.transifex.com/dolibarr-association/dolibarr/
|
SubmitTranslation=If translation for this language is not complete or you find errors, you can correct this by editing files into directory <b>langs/%s</b> and submit your change to www.transifex.com/dolibarr-association/dolibarr/
|
||||||
SubmitTranslationENUS=If translation for this language is not complete or you find errors, you can correct this by editing files into directory <b>langs/%s</b> and submit modified files on dolibarr.org/forum or for developers on github.com/Dolibarr/dolibarr.
|
SubmitTranslationENUS=If translation for this language is not complete or you find errors, you can correct this by editing files into directory <b>langs/%s</b> and submit modified files on dolibarr.org/forum or for developers on github.com/Dolibarr/dolibarr.
|
||||||
@ -303,7 +314,7 @@ UseACacheDelay= Забавяне за кеширане износ отговор
|
|||||||
DisableLinkToHelpCenter=Скриване на връзката <b>Нуждаете се от помощ или поддръжка</b> от страницата за вход
|
DisableLinkToHelpCenter=Скриване на връзката <b>Нуждаете се от помощ или поддръжка</b> от страницата за вход
|
||||||
DisableLinkToHelp=Скриване на линка към онлайн помощ "<b>%s</b>"
|
DisableLinkToHelp=Скриване на линка към онлайн помощ "<b>%s</b>"
|
||||||
AddCRIfTooLong=, Не съществува автоматична опаковане, така че ако линията е на страницата на документи, защото твърде дълго, трябва да се добави знаци за връщане в текстовото поле.
|
AddCRIfTooLong=, Не съществува автоматична опаковане, така че ако линията е на страницата на документи, защото твърде дълго, трябва да се добави знаци за връщане в текстовото поле.
|
||||||
ConfirmPurge=Сигурен ли сте, че искате да изпълните тази чистка? <br> Това определено ще изтрие всички файлове с данни няма начин да ги възстановите (ECM файлове, прикачени файлове и т.н.).
|
ConfirmPurge=Are you sure you want to execute this purge?<br>This will delete definitely all your data files with no way to restore them (ECM files, attached files...).
|
||||||
MinLength=Минимална дължина
|
MinLength=Минимална дължина
|
||||||
LanguageFilesCachedIntoShmopSharedMemory=Файлове. Lang заредени в споделена памет
|
LanguageFilesCachedIntoShmopSharedMemory=Файлове. Lang заредени в споделена памет
|
||||||
ExamplesWithCurrentSetup=Примери с текущата настройка
|
ExamplesWithCurrentSetup=Примери с текущата настройка
|
||||||
@ -353,10 +364,11 @@ Boolean=Логическо (Отметка)
|
|||||||
ExtrafieldPhone = Телефон
|
ExtrafieldPhone = Телефон
|
||||||
ExtrafieldPrice = Цена
|
ExtrafieldPrice = Цена
|
||||||
ExtrafieldMail = Имейл
|
ExtrafieldMail = Имейл
|
||||||
|
ExtrafieldUrl = Url
|
||||||
ExtrafieldSelect = Избор лист
|
ExtrafieldSelect = Избор лист
|
||||||
ExtrafieldSelectList = Избор от таблица
|
ExtrafieldSelectList = Избор от таблица
|
||||||
ExtrafieldSeparator=Разделител
|
ExtrafieldSeparator=Разделител
|
||||||
ExtrafieldPassword=Password
|
ExtrafieldPassword=Парола
|
||||||
ExtrafieldCheckBox=Отметка
|
ExtrafieldCheckBox=Отметка
|
||||||
ExtrafieldRadio=Радио бутон
|
ExtrafieldRadio=Радио бутон
|
||||||
ExtrafieldCheckBoxFromList= Checkbox from table
|
ExtrafieldCheckBoxFromList= Checkbox from table
|
||||||
@ -364,8 +376,8 @@ ExtrafieldLink=Link to an object
|
|||||||
ExtrafieldParamHelpselect=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...<br><br>In order to have the list depending on another :<br>1,value1|parent_list_code:parent_key<br>2,value2|parent_list_code:parent_key
|
ExtrafieldParamHelpselect=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...<br><br>In order to have the list depending on another :<br>1,value1|parent_list_code:parent_key<br>2,value2|parent_list_code:parent_key
|
||||||
ExtrafieldParamHelpcheckbox=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
|
ExtrafieldParamHelpcheckbox=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
|
||||||
ExtrafieldParamHelpradio=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
|
ExtrafieldParamHelpradio=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
|
||||||
ExtrafieldParamHelpsellist=Листа с параметри е от таблицата<br>Синтаксис: table_name:label_field:id_field::filter<br>Пример : c_typent:libelle:id::filter<br><br>филтъра може да бъде просто тест (напр. активен=1) за да покаже само активната стойност<br>Вие също може да използвате $ID$ във филтър, който е в настоящото id от текущия обект<br>За да направите ИЗБОР в филтъра $SEL$<br>ако желаете да филтрирате допълнителните полета използвайте синтаксиса extra.fieldcode=... (където полето код е кодана допълнителното поле)<br><br>Реда на подреждането зависи от другите :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
|
ExtrafieldParamHelpsellist=Parameters list comes from a table<br>Syntax : table_name:label_field:id_field::filter<br>Example : c_typent:libelle:id::filter<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
|
||||||
ExtrafieldParamHelpchkbxlst=Листа с параметри е от таблицата<br>Синтаксис: table_name:label_field:id_field::filter<br>Пример : c_typent:libelle:id::filter<br><br>филтъра може да бъде просто тест (напр. активен=1) за да покаже само активната стойност<br>Вие също може да използвате $ID$ във филтър, който е в настоящото id от текущия обект<br>За да направите ИЗБОР в филтъра $SEL$<br>if you want to filter on extrafields use syntaxt extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
|
ExtrafieldParamHelpchkbxlst=Parameters list comes from a table<br>Syntax : table_name:label_field:id_field::filter<br>Example : c_typent:libelle:id::filter<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
|
||||||
ExtrafieldParamHelplink=Parameters must be ObjectName:Classpath<br>Syntax : ObjectName:Classpath<br>Example : Societe:societe/class/societe.class.php
|
ExtrafieldParamHelplink=Parameters must be ObjectName:Classpath<br>Syntax : ObjectName:Classpath<br>Example : Societe:societe/class/societe.class.php
|
||||||
LibraryToBuildPDF=Library used for PDF generation
|
LibraryToBuildPDF=Library used for PDF generation
|
||||||
WarningUsingFPDF=Warning: Your <b>conf.php</b> contains directive <b>dolibarr_pdf_force_fpdf=1</b>. This means you use the FPDF library to generate PDF files. This library is old and does not support a lot of features (Unicode, image transparency, cyrillic, arab and asiatic languages, ...), so you may experience errors during PDF generation.<br>To solve this and have a full support of PDF generation, please download <a href="http://www.tcpdf.org/" target="_blank">TCPDF library</a>, then comment or remove the line <b>$dolibarr_pdf_force_fpdf=1</b>, and add instead <b>$dolibarr_lib_TCPDF_PATH='path_to_TCPDF_dir'</b>
|
WarningUsingFPDF=Warning: Your <b>conf.php</b> contains directive <b>dolibarr_pdf_force_fpdf=1</b>. This means you use the FPDF library to generate PDF files. This library is old and does not support a lot of features (Unicode, image transparency, cyrillic, arab and asiatic languages, ...), so you may experience errors during PDF generation.<br>To solve this and have a full support of PDF generation, please download <a href="http://www.tcpdf.org/" target="_blank">TCPDF library</a>, then comment or remove the line <b>$dolibarr_pdf_force_fpdf=1</b>, and add instead <b>$dolibarr_lib_TCPDF_PATH='path_to_TCPDF_dir'</b>
|
||||||
@ -381,10 +393,10 @@ ValueOverwrittenByUserSetup=Внимание, тази стойност може
|
|||||||
ExternalModule=Външен модул - инсталиран в директория %s
|
ExternalModule=Външен модул - инсталиран в директория %s
|
||||||
BarcodeInitForThirdparties=Mass barcode init for thirdparties
|
BarcodeInitForThirdparties=Mass barcode init for thirdparties
|
||||||
BarcodeInitForProductsOrServices=Mass barcode init or reset for products or services
|
BarcodeInitForProductsOrServices=Mass barcode init or reset for products or services
|
||||||
CurrentlyNWithoutBarCode=Currently, you have <strong>%s</strong> records on <strong>%s</strong> %s without barcode defined.
|
CurrentlyNWithoutBarCode=Currently, you have <strong>%s</strong> record on <strong>%s</strong> %s without barcode defined.
|
||||||
InitEmptyBarCode=Init value for next %s empty records
|
InitEmptyBarCode=Init value for next %s empty records
|
||||||
EraseAllCurrentBarCode=Erase all current barcode values
|
EraseAllCurrentBarCode=Erase all current barcode values
|
||||||
ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode values ?
|
ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode values?
|
||||||
AllBarcodeReset=All barcode values have been removed
|
AllBarcodeReset=All barcode values have been removed
|
||||||
NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
|
NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
|
||||||
EnableFileCache=Пусни кеширането на файла
|
EnableFileCache=Пусни кеширането на файла
|
||||||
@ -394,10 +406,10 @@ DisplayCompanyInfo=Display company address
|
|||||||
DisplayCompanyManagers=Display manager names
|
DisplayCompanyManagers=Display manager names
|
||||||
DisplayCompanyInfoAndManagers=Display company address and 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=Връщане счетоводна код, построен от: <br> %s последван от код на контрагент доставчик за кодекс за счетоводството на доставчика, <br> %s последван от код на контрагент на клиента за счетоводство код на клиента.
|
||||||
ModuleCompanyCodePanicum=Return an empty accountancy code.
|
ModuleCompanyCodePanicum=Връща празна код счетоводство.
|
||||||
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=Счетоводството код зависи от код на трето лице. Код се състои от буквата "C" на първа позиция, следван от първите 5 символа на код на контрагент.
|
||||||
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.
|
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 a 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 (3 steps) is always required.
|
||||||
UseDoubleApproval=Use a 3 steps approval when amount (without tax) is higher than...
|
UseDoubleApproval=Use a 3 steps approval when amount (without tax) is higher than...
|
||||||
|
|
||||||
# Modules
|
# Modules
|
||||||
@ -470,7 +482,7 @@ Module310Desc=Управление на членовете на организа
|
|||||||
Module320Name=RSS емисия
|
Module320Name=RSS емисия
|
||||||
Module320Desc=Добавяне на RSS емисия в страниците на Dolibarr
|
Module320Desc=Добавяне на RSS емисия в страниците на Dolibarr
|
||||||
Module330Name=Отметки
|
Module330Name=Отметки
|
||||||
Module330Desc=Bookmarks management
|
Module330Desc=Управление на отметките
|
||||||
Module400Name=Проекти/Възможности
|
Module400Name=Проекти/Възможности
|
||||||
Module400Desc=Management of projects, opportunities or leads. You can then assign any element (invoice, order, proposal, intervention, ...) to a project and get a transversal view from the project view.
|
Module400Desc=Management of projects, opportunities or leads. You can then assign any element (invoice, order, proposal, intervention, ...) to a project and get a transversal view from the project view.
|
||||||
Module410Name=Webcalendar
|
Module410Name=Webcalendar
|
||||||
@ -520,7 +532,7 @@ Module2900Name=GeoIPMaxmind
|
|||||||
Module2900Desc=GeoIP MaxMind реализации възможности
|
Module2900Desc=GeoIP MaxMind реализации възможности
|
||||||
Module3100Name=Skype
|
Module3100Name=Skype
|
||||||
Module3100Desc=Add a Skype button into users / third parties / contacts / members cards
|
Module3100Desc=Add a Skype button into users / third parties / contacts / members cards
|
||||||
Module4000Name=HRM
|
Module4000Name=ЧР
|
||||||
Module4000Desc=Управление на човешки ресурси
|
Module4000Desc=Управление на човешки ресурси
|
||||||
Module5000Name=Няколко фирми
|
Module5000Name=Няколко фирми
|
||||||
Module5000Desc=Позволява ви да управлявате няколко фирми
|
Module5000Desc=Позволява ви да управлявате няколко фирми
|
||||||
@ -548,7 +560,7 @@ Module59000Name=Полета
|
|||||||
Module59000Desc=Модул за управление на маржовете
|
Module59000Desc=Модул за управление на маржовете
|
||||||
Module60000Name=Комисии
|
Module60000Name=Комисии
|
||||||
Module60000Desc=Модул за управление на комисии
|
Module60000Desc=Модул за управление на комисии
|
||||||
Module63000Name=Resources
|
Module63000Name=Ресурси
|
||||||
Module63000Desc=Manage resources (printers, cars, room, ...) you can then share into events
|
Module63000Desc=Manage resources (printers, cars, room, ...) you can then share into events
|
||||||
Permission11=Клиентите фактури
|
Permission11=Клиентите фактури
|
||||||
Permission12=Създаване / промяна на фактури на клиентите
|
Permission12=Създаване / промяна на фактури на клиентите
|
||||||
@ -813,6 +825,7 @@ DictionaryPaymentModes=Payment modes
|
|||||||
DictionaryTypeContact=Contact/Address types
|
DictionaryTypeContact=Contact/Address types
|
||||||
DictionaryEcotaxe=Ecotax (WEEE)
|
DictionaryEcotaxe=Ecotax (WEEE)
|
||||||
DictionaryPaperFormat=Paper formats
|
DictionaryPaperFormat=Paper formats
|
||||||
|
DictionaryFormatCards=Cards formats
|
||||||
DictionaryFees=Types of fees
|
DictionaryFees=Types of fees
|
||||||
DictionarySendingMethods=Shipping methods
|
DictionarySendingMethods=Shipping methods
|
||||||
DictionaryStaff=Staff
|
DictionaryStaff=Staff
|
||||||
@ -1016,7 +1029,6 @@ SimpleNumRefModelDesc=Върнете референтен номер с форм
|
|||||||
ShowProfIdInAddress=Покажи professionnal номер с адреси на документи
|
ShowProfIdInAddress=Покажи professionnal номер с адреси на документи
|
||||||
ShowVATIntaInAddress=Hide VAT Intra num with addresses on documents
|
ShowVATIntaInAddress=Hide VAT Intra num with addresses on documents
|
||||||
TranslationUncomplete=Частичен превод
|
TranslationUncomplete=Частичен превод
|
||||||
SomeTranslationAreUncomplete=Some languages may be partially translated or may contains errors. If you detect some, you can fix language files registering to <a href="http://transifex.com/projects/p/dolibarr/" target="_blank">http://transifex.com/projects/p/dolibarr/</a>.
|
|
||||||
MAIN_DISABLE_METEO=Изключване метео изглед
|
MAIN_DISABLE_METEO=Изключване метео изглед
|
||||||
TestLoginToAPI=Тествайте влезете в API
|
TestLoginToAPI=Тествайте влезете в API
|
||||||
ProxyDesc=Някои функции на Dolibarr трябва да имат достъп до Интернет, за да работят. Определете тук параметри за това. Ако сървърът Dolibarr е зад прокси сървър, тези параметри казва Dolibarr как за достъп до интернет през него.
|
ProxyDesc=Някои функции на Dolibarr трябва да имат достъп до Интернет, за да работят. Определете тук параметри за това. Ако сървърът Dolibarr е зад прокси сървър, тези параметри казва Dolibarr как за достъп до интернет през него.
|
||||||
@ -1061,7 +1073,7 @@ TotalNumberOfActivatedModules=Общ брой на активираните мо
|
|||||||
YouMustEnableOneModule=Трябва да даде възможност на най-малко 1 модул
|
YouMustEnableOneModule=Трябва да даде възможност на най-малко 1 модул
|
||||||
ClassNotFoundIntoPathWarning=Class %s not found into PHP path
|
ClassNotFoundIntoPathWarning=Class %s not found into PHP path
|
||||||
YesInSummer=Yes in summer
|
YesInSummer=Yes in summer
|
||||||
OnlyFollowingModulesAreOpenedToExternalUsers=Note, only following modules are open to external users (whatever are permission of such users):
|
OnlyFollowingModulesAreOpenedToExternalUsers=Note, only following modules are open to external users (whatever are permission of such users) and only if permissions were granted:
|
||||||
SuhosinSessionEncrypt=Session storage encrypted by Suhosin
|
SuhosinSessionEncrypt=Session storage encrypted by Suhosin
|
||||||
ConditionIsCurrently=Condition is currently %s
|
ConditionIsCurrently=Condition is currently %s
|
||||||
YouUseBestDriver=You use driver %s that is best driver available currently.
|
YouUseBestDriver=You use driver %s that is best driver available currently.
|
||||||
@ -1104,10 +1116,9 @@ DocumentModelOdt=Generate documents from OpenDocuments templates (.ODT or .ODS f
|
|||||||
WatermarkOnDraft=Воден знак върху проект на документ
|
WatermarkOnDraft=Воден знак върху проект на документ
|
||||||
JSOnPaimentBill=Activate feature to autofill payment lines on payment form
|
JSOnPaimentBill=Activate feature to autofill payment lines on payment form
|
||||||
CompanyIdProfChecker=Професионална Id уникален
|
CompanyIdProfChecker=Професионална Id уникален
|
||||||
MustBeUnique=Трябва да е уникален?
|
MustBeUnique=Must be unique?
|
||||||
MustBeMandatory=Mandatory to create third parties ?
|
MustBeMandatory=Mandatory to create third parties?
|
||||||
MustBeInvoiceMandatory=Mandatory to validate invoices ?
|
MustBeInvoiceMandatory=Mandatory to validate invoices?
|
||||||
Miscellaneous=Разни
|
|
||||||
##### Webcal setup #####
|
##### Webcal setup #####
|
||||||
WebCalUrlForVCalExport=За износ на линк към <b>%s</b> формат е на разположение на следния линк: %s
|
WebCalUrlForVCalExport=За износ на линк към <b>%s</b> формат е на разположение на следния линк: %s
|
||||||
##### Invoices #####
|
##### Invoices #####
|
||||||
@ -1123,7 +1134,7 @@ SuggestPaymentByChequeToAddress=Предложи плащане с чек до
|
|||||||
FreeLegalTextOnInvoices=Свободен текст на фактури
|
FreeLegalTextOnInvoices=Свободен текст на фактури
|
||||||
WatermarkOnDraftInvoices=Watermark on draft invoices (none if empty)
|
WatermarkOnDraftInvoices=Watermark on draft invoices (none if empty)
|
||||||
PaymentsNumberingModule=Модел на номериране на плащания
|
PaymentsNumberingModule=Модел на номериране на плащания
|
||||||
SuppliersPayment=Suppliers payments
|
SuppliersPayment=Плащания към доставчици
|
||||||
SupplierPaymentSetup=Suppliers payments setup
|
SupplierPaymentSetup=Suppliers payments setup
|
||||||
##### Proposals #####
|
##### Proposals #####
|
||||||
PropalSetup=Модул за настройка на търговски предложения
|
PropalSetup=Модул за настройка на търговски предложения
|
||||||
@ -1140,6 +1151,8 @@ FreeLegalTextOnSupplierProposal=Free text on price requests suppliers
|
|||||||
WatermarkOnDraftSupplierProposal=Watermark on draft price requests suppliers (none if empty)
|
WatermarkOnDraftSupplierProposal=Watermark on draft price requests suppliers (none if empty)
|
||||||
BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_PROPOSAL=Ask for bank account destination of price request
|
BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_PROPOSAL=Ask for bank account destination of price request
|
||||||
WAREHOUSE_ASK_WAREHOUSE_DURING_ORDER=Питане за Складов източник за поръчка
|
WAREHOUSE_ASK_WAREHOUSE_DURING_ORDER=Питане за Складов източник за поръчка
|
||||||
|
##### Suppliers Orders #####
|
||||||
|
BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_ORDER=Ask for bank account destination of supplier order
|
||||||
##### Orders #####
|
##### Orders #####
|
||||||
OrdersSetup=Настройки за управление на поръчки
|
OrdersSetup=Настройки за управление на поръчки
|
||||||
OrdersNumberingModules=Поръчки номериране модули
|
OrdersNumberingModules=Поръчки номериране модули
|
||||||
@ -1320,7 +1333,7 @@ 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=Visualization of products descriptions in the third party language
|
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=Wait you press a key before loading content of product combo list (This may increase performance if you have a large number of products, but it is less convenient)
|
||||||
SetDefaultBarcodeTypeProducts=Тип баркод по подразбиране за продукти
|
SetDefaultBarcodeTypeProducts=Тип баркод по подразбиране за продукти
|
||||||
SetDefaultBarcodeTypeThirdParties=Тип баркод по подразбиране за контрагенти
|
SetDefaultBarcodeTypeThirdParties=Тип баркод по подразбиране за контрагенти
|
||||||
UseUnits=Define a unit of measure for Quantity during order, proposal or invoice lines edition
|
UseUnits=Define a unit of measure for Quantity during order, proposal or invoice lines edition
|
||||||
@ -1427,7 +1440,7 @@ DetailTarget=Цел за връзки (_blank върха отвори в нов
|
|||||||
DetailLevel=Level (-1: горното меню, 0: хедър, меню> 0 меню и подменю)
|
DetailLevel=Level (-1: горното меню, 0: хедър, меню> 0 меню и подменю)
|
||||||
ModifMenu=Меню промяна
|
ModifMenu=Меню промяна
|
||||||
DeleteMenu=Изтриване на елемент от менюто
|
DeleteMenu=Изтриване на елемент от менюто
|
||||||
ConfirmDeleteMenu=Сигурен ли сте, че искате да изтриете <b>%s</b> елемент от менюто?
|
ConfirmDeleteMenu=Are you sure you want to delete menu entry <b>%s</b>?
|
||||||
FailedToInitializeMenu=Неуспешно инициализиране на меню
|
FailedToInitializeMenu=Неуспешно инициализиране на меню
|
||||||
##### Tax #####
|
##### Tax #####
|
||||||
TaxSetup=Taxes, social or fiscal taxes and dividends module setup
|
TaxSetup=Taxes, social or fiscal taxes and dividends module setup
|
||||||
@ -1482,7 +1495,7 @@ NbOfBoomarkToShow=Максимален брой отметки, които да
|
|||||||
WebServicesSetup=WebServices модул за настройка
|
WebServicesSetup=WebServices модул за настройка
|
||||||
WebServicesDesc=С активирането на този модул, Dolibarr се превърне в уеб сървъра на услугата за предоставяне на различни уеб услуги.
|
WebServicesDesc=С активирането на този модул, Dolibarr се превърне в уеб сървъра на услугата за предоставяне на различни уеб услуги.
|
||||||
WSDLCanBeDownloadedHere=WSDL ЕВРОВОК файлове на предоставяните услуги може да изтеглите от тук
|
WSDLCanBeDownloadedHere=WSDL ЕВРОВОК файлове на предоставяните услуги може да изтеглите от тук
|
||||||
EndPointIs=SOAP клиентите трябва да изпратят своите заявки на разположение на Адреса на крайна точка Dolibarr
|
EndPointIs=SOAP clients must send their requests to the Dolibarr endpoint available at URL
|
||||||
##### API ####
|
##### API ####
|
||||||
ApiSetup=API module setup
|
ApiSetup=API module setup
|
||||||
ApiDesc=By enabling this module, Dolibarr become a REST server to provide miscellaneous web services.
|
ApiDesc=By enabling this module, Dolibarr become a REST server to provide miscellaneous web services.
|
||||||
@ -1524,14 +1537,14 @@ TaskModelModule=Tasks reports document model
|
|||||||
UseSearchToSelectProject=Use autocompletion fields to choose project (instead of using a list box)
|
UseSearchToSelectProject=Use autocompletion fields to choose project (instead of using a list box)
|
||||||
##### ECM (GED) #####
|
##### ECM (GED) #####
|
||||||
##### Fiscal Year #####
|
##### Fiscal Year #####
|
||||||
FiscalYears=Fiscal years
|
AccountingPeriods=Accounting periods
|
||||||
FiscalYearCard=Fiscal year card
|
AccountingPeriodCard=Accounting period
|
||||||
NewFiscalYear=New fiscal year
|
NewFiscalYear=New accounting period
|
||||||
OpenFiscalYear=Open fiscal year
|
OpenFiscalYear=Open accounting period
|
||||||
CloseFiscalYear=Close fiscal year
|
CloseFiscalYear=Close accounting period
|
||||||
DeleteFiscalYear=Delete fiscal year
|
DeleteFiscalYear=Delete accounting period
|
||||||
ConfirmDeleteFiscalYear=Are you sure to delete this fiscal year ?
|
ConfirmDeleteFiscalYear=Are you sure to delete this accounting period?
|
||||||
ShowFiscalYear=Show fiscal year
|
ShowFiscalYear=Show accounting period
|
||||||
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
|
||||||
@ -1563,7 +1576,7 @@ HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
|
|||||||
HighlightLinesColor=Цвят за подчертаване на линията, когато мишката мине отгоре (оставете празно за без подчертаване)
|
HighlightLinesColor=Цвят за подчертаване на линията, когато мишката мине отгоре (оставете празно за без подчертаване)
|
||||||
TextTitleColor=Цвят на заглавието на страницата
|
TextTitleColor=Цвят на заглавието на страницата
|
||||||
LinkColor=Цвят на връзките
|
LinkColor=Цвят на връзките
|
||||||
PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
|
PressF5AfterChangingThis=Press F5 on keyboard or clear your browser cache after changing this value to have it effective
|
||||||
NotSupportedByAllThemes=Will works with core themes, may not be supported by external 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
|
||||||
@ -1623,12 +1636,17 @@ AddOtherPagesOrServices=Add other pages or services
|
|||||||
AddModels=Add document or numbering templates
|
AddModels=Add document or numbering templates
|
||||||
AddSubstitutions=Add keys substitutions
|
AddSubstitutions=Add keys substitutions
|
||||||
DetectionNotPossible=Detection not possible
|
DetectionNotPossible=Detection not possible
|
||||||
UrlToGetKeyToUseAPIs=Url to get token to use API (once token has been received it is saved on database user table and will be checked on each future access)
|
UrlToGetKeyToUseAPIs=Url to get token to use API (once token has been received it is saved on database user table and must be provided on each API call)
|
||||||
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
|
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
|
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.
|
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 or groups manually if necessary.
|
||||||
UserHasNoPermissions=This user has no permission defined
|
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")
|
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")
|
||||||
|
##### Resource ####
|
||||||
|
ResourceSetup=Configuration du module Resource
|
||||||
|
UseSearchToSelectResource=Use a search form to choose a resource (rather than a drop-down list).
|
||||||
|
DisabledResourceLinkUser=Disabled resource link to user
|
||||||
|
DisabledResourceLinkContact=Disabled resource link to contact
|
||||||
|
|||||||
@ -3,10 +3,9 @@ IdAgenda=ID на събитие
|
|||||||
Actions=Събития
|
Actions=Събития
|
||||||
Agenda=Дневен ред
|
Agenda=Дневен ред
|
||||||
Agendas=Дневен ред
|
Agendas=Дневен ред
|
||||||
Calendar=Календар
|
|
||||||
LocalAgenda=Вътрешен календар
|
LocalAgenda=Вътрешен календар
|
||||||
ActionsOwnedBy=Събитие принадлежащо на
|
ActionsOwnedBy=Събитие принадлежащо на
|
||||||
ActionsOwnedByShort=Owner
|
ActionsOwnedByShort=Собственик
|
||||||
AffectedTo=Възложено на
|
AffectedTo=Възложено на
|
||||||
Event=Събитие
|
Event=Събитие
|
||||||
Events=Събития
|
Events=Събития
|
||||||
@ -34,11 +33,28 @@ AgendaAutoActionDesc= Define here events for which you want Dolibarr to create a
|
|||||||
AgendaSetupOtherDesc= Тази страница предоставя възможности да се допусне износ на вашите събития Dolibarr в външен календар (Thunderbird, Google Calendar, ...)
|
AgendaSetupOtherDesc= Тази страница предоставя възможности да се допусне износ на вашите събития Dolibarr в външен календар (Thunderbird, Google Calendar, ...)
|
||||||
AgendaExtSitesDesc=Тази страница позволява да се обяви външните източници на календари, за да видят своите събития в дневния ред Dolibarr.
|
AgendaExtSitesDesc=Тази страница позволява да се обяви външните източници на календари, за да видят своите събития в дневния ред Dolibarr.
|
||||||
ActionsEvents=Събития, за които Dolibarr ще създаде действие в дневния ред автоматично
|
ActionsEvents=Събития, за които Dolibarr ще създаде действие в дневния ред автоматично
|
||||||
|
##### Agenda event labels #####
|
||||||
|
NewCompanyToDolibarr=Third party %s created
|
||||||
|
ContractValidatedInDolibarr=Контакт %s е валидиран
|
||||||
|
PropalClosedSignedInDolibarr=Предложение %s е подписано
|
||||||
|
PropalClosedRefusedInDolibarr=Предложение %s е отказано
|
||||||
PropalValidatedInDolibarr=Предложение %s валидирано
|
PropalValidatedInDolibarr=Предложение %s валидирано
|
||||||
|
PropalClassifiedBilledInDolibarr=Предложение %s е класифицирано фактурирано
|
||||||
InvoiceValidatedInDolibarr=Фактура %s валидирани
|
InvoiceValidatedInDolibarr=Фактура %s валидирани
|
||||||
InvoiceValidatedInDolibarrFromPos=Фактура %s валидирана от POS
|
InvoiceValidatedInDolibarrFromPos=Фактура %s валидирана от POS
|
||||||
InvoiceBackToDraftInDolibarr=Фактура %s се върнете в състояние на чернова
|
InvoiceBackToDraftInDolibarr=Фактура %s се върнете в състояние на чернова
|
||||||
InvoiceDeleteDolibarr=Фактура %s изтрита
|
InvoiceDeleteDolibarr=Фактура %s изтрита
|
||||||
|
InvoicePaidInDolibarr=Фактура %s е променена на платена
|
||||||
|
InvoiceCanceledInDolibarr=Фактура %s е отказана
|
||||||
|
MemberValidatedInDolibarr=Член %s е валидиран
|
||||||
|
MemberResiliatedInDolibarr=Member %s terminated
|
||||||
|
MemberDeletedInDolibarr=Член %s е изтрит
|
||||||
|
MemberSubscriptionAddedInDolibarr=Абонамет за член %s е добавен
|
||||||
|
ShipmentValidatedInDolibarr=Доставка %s е валидирана
|
||||||
|
ShipmentClassifyClosedInDolibarr=Shipment %s classify billed
|
||||||
|
ShipmentUnClassifyCloseddInDolibarr=Shipment %s classify reopened
|
||||||
|
ShipmentDeletedInDolibarr=Доставка %s е изтрита
|
||||||
|
OrderCreatedInDolibarr=Order %s created
|
||||||
OrderValidatedInDolibarr=Поръчка %s валидирани
|
OrderValidatedInDolibarr=Поръчка %s валидирани
|
||||||
OrderDeliveredInDolibarr=Поръчка %s класифицирана доставена
|
OrderDeliveredInDolibarr=Поръчка %s класифицирана доставена
|
||||||
OrderCanceledInDolibarr=Поръчка %s отменен
|
OrderCanceledInDolibarr=Поръчка %s отменен
|
||||||
@ -57,9 +73,9 @@ InterventionSentByEMail=Намеса %s изпратена по електрон
|
|||||||
ProposalDeleted=Proposal deleted
|
ProposalDeleted=Proposal deleted
|
||||||
OrderDeleted=Order deleted
|
OrderDeleted=Order deleted
|
||||||
InvoiceDeleted=Invoice deleted
|
InvoiceDeleted=Invoice deleted
|
||||||
NewCompanyToDolibarr= Контагентът е създаден
|
##### End agenda events #####
|
||||||
DateActionStart= Начална дата
|
DateActionStart=Начална дата
|
||||||
DateActionEnd= Крайна дата
|
DateActionEnd=Крайна дата
|
||||||
AgendaUrlOptions1=Можете да добавите и следните параметри, за да филтрирате изход:
|
AgendaUrlOptions1=Можете да добавите и следните параметри, за да филтрирате изход:
|
||||||
AgendaUrlOptions2=<b>login=%s</b> за да ограничи показването до действия създадени от или определени на потребител <b>%s</b>.
|
AgendaUrlOptions2=<b>login=%s</b> за да ограничи показването до действия създадени от или определени на потребител <b>%s</b>.
|
||||||
AgendaUrlOptions3=<b>logina=%s</b> за да ограничи показването до действия притежавани от потребител <b>%s</b>.
|
AgendaUrlOptions3=<b>logina=%s</b> за да ограничи показването до действия притежавани от потребител <b>%s</b>.
|
||||||
@ -86,7 +102,7 @@ MyAvailability=Моето разположение
|
|||||||
ActionType=Тип събитие
|
ActionType=Тип събитие
|
||||||
DateActionBegin=Начална дата на събитие
|
DateActionBegin=Начална дата на събитие
|
||||||
CloneAction=Клониране на събитие
|
CloneAction=Клониране на събитие
|
||||||
ConfirmCloneEvent=Сигурни ли сте, че искате да клонирате събитието <b>%s</b> ?
|
ConfirmCloneEvent=Are you sure you want to clone the event <b>%s</b>?
|
||||||
RepeatEvent=Повтаряне на събитие
|
RepeatEvent=Повтаряне на събитие
|
||||||
EveryWeek=Всяка седмица
|
EveryWeek=Всяка седмица
|
||||||
EveryMonth=Всеки месец
|
EveryMonth=Всеки месец
|
||||||
|
|||||||
@ -28,6 +28,10 @@ Reconciliation=Помирение
|
|||||||
RIB=Номер на банкова сметка
|
RIB=Номер на банкова сметка
|
||||||
IBAN=IBAN номер
|
IBAN=IBAN номер
|
||||||
BIC=BIC / SWIFT номер
|
BIC=BIC / SWIFT номер
|
||||||
|
SwiftValid=BIC/SWIFT valid
|
||||||
|
SwiftVNotalid=BIC/SWIFT not valid
|
||||||
|
IbanValid=BAN valid
|
||||||
|
IbanNotValid=BAN not valid
|
||||||
StandingOrders=Direct Debit orders
|
StandingOrders=Direct Debit orders
|
||||||
StandingOrder=Direct debit order
|
StandingOrder=Direct debit order
|
||||||
AccountStatement=Отчет по сметка
|
AccountStatement=Отчет по сметка
|
||||||
@ -41,7 +45,7 @@ BankAccountOwner=Името на собственика на сметката
|
|||||||
BankAccountOwnerAddress=Притежател на сметката адрес
|
BankAccountOwnerAddress=Притежател на сметката адрес
|
||||||
RIBControlError=Integrity проверка на ценностите се провали. Това означава, информация за номера на тази сметка не са пълни или грешно (проверете страна, номера и IBAN).
|
RIBControlError=Integrity проверка на ценностите се провали. Това означава, информация за номера на тази сметка не са пълни или грешно (проверете страна, номера и IBAN).
|
||||||
CreateAccount=Създаване на сметка
|
CreateAccount=Създаване на сметка
|
||||||
NewAccount=Нова сметка
|
NewBankAccount=Нова сметка
|
||||||
NewFinancialAccount=Нова финансова сметка
|
NewFinancialAccount=Нова финансова сметка
|
||||||
MenuNewFinancialAccount=Нова финансова сметка
|
MenuNewFinancialAccount=Нова финансова сметка
|
||||||
EditFinancialAccount=Редактиране на сметка
|
EditFinancialAccount=Редактиране на сметка
|
||||||
@ -53,67 +57,68 @@ BankType2=Парична сметка
|
|||||||
AccountsArea=Сметки
|
AccountsArea=Сметки
|
||||||
AccountCard=Картова сметка
|
AccountCard=Картова сметка
|
||||||
DeleteAccount=Изтриване на акаунт
|
DeleteAccount=Изтриване на акаунт
|
||||||
ConfirmDeleteAccount=Сигурни ли сте, че желаете да изтриете тази сметка?
|
ConfirmDeleteAccount=Are you sure you want to delete this account?
|
||||||
Account=Сметка
|
Account=Сметка
|
||||||
BankTransactionByCategories=Банкови транзакции по категории
|
BankTransactionByCategories=Bank entries by categories
|
||||||
BankTransactionForCategory=Банкови сделки за категория <b>%s</b>
|
BankTransactionForCategory=Bank entries for category <b>%s</b>
|
||||||
RemoveFromRubrique=Премахване на връзката с категория
|
RemoveFromRubrique=Премахване на връзката с категория
|
||||||
RemoveFromRubriqueConfirm=Сигурен ли сте, че искате да премахнете връзката между сделката и категория?
|
RemoveFromRubriqueConfirm=Are you sure you want to remove link between the entry and the category?
|
||||||
ListBankTransactions=Списък на банкови сделки
|
ListBankTransactions=List of bank entries
|
||||||
IdTransaction=Transaction ID
|
IdTransaction=Transaction ID
|
||||||
BankTransactions=Банкови сделки
|
BankTransactions=Bank entries
|
||||||
ListTransactions=Списък сделки
|
ListTransactions=List entries
|
||||||
ListTransactionsByCategory=Списък сделка / категория
|
ListTransactionsByCategory=List entries/category
|
||||||
TransactionsToConciliate=Сделки за съгласуване
|
TransactionsToConciliate=Entries to reconcile
|
||||||
Conciliable=Може да се примири
|
Conciliable=Може да се примири
|
||||||
Conciliate=Reconcile
|
Conciliate=Reconcile
|
||||||
Conciliation=Помирение
|
Conciliation=Помирение
|
||||||
|
ReconciliationLate=Reconciliation late
|
||||||
IncludeClosedAccount=Включват затворени сметки
|
IncludeClosedAccount=Включват затворени сметки
|
||||||
OnlyOpenedAccount=Само открити сметки
|
OnlyOpenedAccount=Само открити сметки
|
||||||
AccountToCredit=Профил на кредитен
|
AccountToCredit=Профил на кредитен
|
||||||
AccountToDebit=Сметка за дебитиране
|
AccountToDebit=Сметка за дебитиране
|
||||||
DisableConciliation=Деактивирате функцията помирение за тази сметка
|
DisableConciliation=Деактивирате функцията помирение за тази сметка
|
||||||
ConciliationDisabled=Помирение функция инвалиди
|
ConciliationDisabled=Помирение функция инвалиди
|
||||||
LinkedToAConciliatedTransaction=Linked to a conciliated transaction
|
LinkedToAConciliatedTransaction=Linked to a conciliated entry
|
||||||
StatusAccountOpened=Отворен
|
StatusAccountOpened=Отворен
|
||||||
StatusAccountClosed=Затворен
|
StatusAccountClosed=Затворен
|
||||||
AccountIdShort=Номер
|
AccountIdShort=Номер
|
||||||
LineRecord=Транзакция
|
LineRecord=Транзакция
|
||||||
AddBankRecord=Добавяне на транзакция
|
AddBankRecord=Add entry
|
||||||
AddBankRecordLong=Ръчно добавяне на транзакция
|
AddBankRecordLong=Add entry manually
|
||||||
ConciliatedBy=Съгласуват от
|
ConciliatedBy=Съгласуват от
|
||||||
DateConciliating=Reconcile дата
|
DateConciliating=Reconcile дата
|
||||||
BankLineConciliated=Transaction примири
|
BankLineConciliated=Entry reconciled
|
||||||
Reconciled=Reconciled
|
Reconciled=Reconciled
|
||||||
NotReconciled=Not reconciled
|
NotReconciled=Not reconciled
|
||||||
CustomerInvoicePayment=Клиентско плащане
|
CustomerInvoicePayment=Клиентско плащане
|
||||||
SupplierInvoicePayment=Supplier payment
|
SupplierInvoicePayment=Доставчика на платежни услуги
|
||||||
SubscriptionPayment=Subscription payment
|
SubscriptionPayment=Плащане на членски внос
|
||||||
WithdrawalPayment=Оттегляне плащане
|
WithdrawalPayment=Оттегляне плащане
|
||||||
SocialContributionPayment=Social/fiscal tax payment
|
SocialContributionPayment=Social/fiscal tax payment
|
||||||
BankTransfer=Банков превод
|
BankTransfer=Банков превод
|
||||||
BankTransfers=Банкови преводи
|
BankTransfers=Банкови преводи
|
||||||
MenuBankInternalTransfer=Internal transfer
|
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)
|
TransferDesc=Transfer from one account to another one, Dolibarr will write two record (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> беше записано.
|
||||||
CheckTransmitter=Предавател
|
CheckTransmitter=Предавател
|
||||||
ValidateCheckReceipt=Проверка на проверка тази квитанция?
|
ValidateCheckReceipt=Validate this check receipt?
|
||||||
ConfirmValidateCheckReceipt=Сигурен ли сте, че искате да проверите тази квитанция проверка, без промяна ще бъде възможно, след като това се прави?
|
ConfirmValidateCheckReceipt=Are you sure you want to validate this check receipt, no change will be possible once this is done?
|
||||||
DeleteCheckReceipt=Изтриване на този получаване проверка?
|
DeleteCheckReceipt=Delete this check receipt?
|
||||||
ConfirmDeleteCheckReceipt=Сигурен ли сте, че искате да изтриете тази получаване на проверка?
|
ConfirmDeleteCheckReceipt=Are you sure you want to delete this check receipt?
|
||||||
BankChecks=Банката проверява
|
BankChecks=Банката проверява
|
||||||
BankChecksToReceipt=Checks awaiting deposit
|
BankChecksToReceipt=Checks awaiting deposit
|
||||||
ShowCheckReceipt=Покажи проверете получаване депозит
|
ShowCheckReceipt=Покажи проверете получаване депозит
|
||||||
NumberOfCheques=Nb на чек
|
NumberOfCheques=Nb на чек
|
||||||
DeleteTransaction=Изтриване на сделката
|
DeleteTransaction=Delete entry
|
||||||
ConfirmDeleteTransaction=Сигурен ли сте, че искате да изтриете тази сделка?
|
ConfirmDeleteTransaction=Are you sure you want to delete this entry?
|
||||||
ThisWillAlsoDeleteBankRecord=Това ще изтрие генерирани банкови операции
|
ThisWillAlsoDeleteBankRecord=This will also delete generated bank entry
|
||||||
BankMovements=Движения
|
BankMovements=Движения
|
||||||
PlannedTransactions=Планирани сделки
|
PlannedTransactions=Planned entries
|
||||||
Graph=Графики
|
Graph=Графики
|
||||||
ExportDataset_banque_1=Банкови сделки и отчет по сметка
|
ExportDataset_banque_1=Bank entries and account statement
|
||||||
ExportDataset_banque_2=Deposit slip
|
ExportDataset_banque_2=Deposit slip
|
||||||
TransactionOnTheOtherAccount=Транзакциите по друга сметка
|
TransactionOnTheOtherAccount=Транзакциите по друга сметка
|
||||||
PaymentNumberUpdateSucceeded=Payment number updated successfully
|
PaymentNumberUpdateSucceeded=Payment number updated successfully
|
||||||
@ -121,7 +126,7 @@ PaymentNumberUpdateFailed=Плащане брой не може да бъде а
|
|||||||
PaymentDateUpdateSucceeded=Payment date updated successfully
|
PaymentDateUpdateSucceeded=Payment date updated successfully
|
||||||
PaymentDateUpdateFailed=Дата на плащане не може да бъде актуализиран
|
PaymentDateUpdateFailed=Дата на плащане не може да бъде актуализиран
|
||||||
Transactions=Сделки
|
Transactions=Сделки
|
||||||
BankTransactionLine=Банков превод
|
BankTransactionLine=Bank entry
|
||||||
AllAccounts=Всички банкови / пари в брой
|
AllAccounts=Всички банкови / пари в брой
|
||||||
BackToAccount=Обратно към сметка
|
BackToAccount=Обратно към сметка
|
||||||
ShowAllAccounts=Покажи за всички сметки
|
ShowAllAccounts=Покажи за всички сметки
|
||||||
@ -129,16 +134,16 @@ 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=To reconcile ?
|
ToConciliate=To reconcile?
|
||||||
ThenCheckLinesAndConciliate=След това проверете линии в отчета на банката и кликнете
|
ThenCheckLinesAndConciliate=След това проверете линии в отчета на банката и кликнете
|
||||||
DefaultRIB=По подразбиране BAN
|
DefaultRIB=По подразбиране BAN
|
||||||
AllRIB=Всички BAN
|
AllRIB=Всички BAN
|
||||||
LabelRIB=BAN Label
|
LabelRIB=BAN Label
|
||||||
NoBANRecord=No BAN record
|
NoBANRecord=No BAN record
|
||||||
DeleteARib=Delete BAN record
|
DeleteARib=Delete BAN record
|
||||||
ConfirmDeleteRib=Are you sure you want to delete this BAN record ?
|
ConfirmDeleteRib=Are you sure you want to delete this BAN record?
|
||||||
RejectCheck=Върнат Чек
|
RejectCheck=Върнат Чек
|
||||||
ConfirmRejectCheck=Are you sure you want to mark this check as rejected ?
|
ConfirmRejectCheck=Are you sure you want to mark this check as rejected?
|
||||||
RejectCheckDate=Дата на която чека е върнат
|
RejectCheckDate=Дата на която чека е върнат
|
||||||
CheckRejected=Върнат Чек
|
CheckRejected=Върнат Чек
|
||||||
CheckRejectedAndInvoicesReopened=Върнат Чек и отворена фактура
|
CheckRejectedAndInvoicesReopened=Върнат Чек и отворена фактура
|
||||||
|
|||||||
@ -41,7 +41,7 @@ ConsumedBy=Консумирана от
|
|||||||
NotConsumed=Не е консумирана
|
NotConsumed=Не е консумирана
|
||||||
NoReplacableInvoice=Незаменяеми фактури
|
NoReplacableInvoice=Незаменяеми фактури
|
||||||
NoInvoiceToCorrect=Няма фактура за коригиране
|
NoInvoiceToCorrect=Няма фактура за коригиране
|
||||||
InvoiceHasAvoir=Поправена от еднан или няколко фактури
|
InvoiceHasAvoir=Was source of one or several credit notes
|
||||||
CardBill=Фактурна карта
|
CardBill=Фактурна карта
|
||||||
PredefinedInvoices=Предварително-дефинирани Фактури
|
PredefinedInvoices=Предварително-дефинирани Фактури
|
||||||
Invoice=Фактура
|
Invoice=Фактура
|
||||||
@ -56,14 +56,14 @@ SupplierBill=Доставна фактура
|
|||||||
SupplierBills=Доставни фактури
|
SupplierBills=Доставни фактури
|
||||||
Payment=Плащане
|
Payment=Плащане
|
||||||
PaymentBack=Обратно плащане
|
PaymentBack=Обратно плащане
|
||||||
CustomerInvoicePaymentBack=Payment back
|
CustomerInvoicePaymentBack=Обратно плащане
|
||||||
Payments=Плащания
|
Payments=Плащания
|
||||||
PaymentsBack=Обратни плащания
|
PaymentsBack=Обратни плащания
|
||||||
paymentInInvoiceCurrency=in invoices currency
|
paymentInInvoiceCurrency=in invoices currency
|
||||||
PaidBack=Платено обратно
|
PaidBack=Платено обратно
|
||||||
DeletePayment=Изтрий плащане
|
DeletePayment=Изтрий плащане
|
||||||
ConfirmDeletePayment=Сигурен ли сте, че искате да изтриете това плащане?
|
ConfirmDeletePayment=Are you sure you want to delete this payment?
|
||||||
ConfirmConvertToReduc=Искате ли да конвертирате това кредитно известие или депозит в абсолютна отстъпка?<br>Сумата ще бъде запазена след всички отстъпки и може да се използва като отстъпка за настояща или бъдеща фактура за този клиент.
|
ConfirmConvertToReduc=Do you want to convert this credit note or deposit into an absolute discount?<br>The amount will so be saved among all discounts and could be used as a discount for a current or a future invoice for this customer.
|
||||||
SupplierPayments=Плащания към доставчици
|
SupplierPayments=Плащания към доставчици
|
||||||
ReceivedPayments=Получени плащания
|
ReceivedPayments=Получени плащания
|
||||||
ReceivedCustomersPayments=Плащания получени от клиенти
|
ReceivedCustomersPayments=Плащания получени от клиенти
|
||||||
@ -75,6 +75,8 @@ PaymentsAlreadyDone=Вече направени плащания
|
|||||||
PaymentsBackAlreadyDone=Вече направени обратни плащания
|
PaymentsBackAlreadyDone=Вече направени обратни плащания
|
||||||
PaymentRule=Правило за плащане
|
PaymentRule=Правило за плащане
|
||||||
PaymentMode=Тип на плащане
|
PaymentMode=Тип на плащане
|
||||||
|
PaymentTypeDC=Debit/Credit Card
|
||||||
|
PaymentTypePP=PayPal
|
||||||
IdPaymentMode=Payment type (id)
|
IdPaymentMode=Payment type (id)
|
||||||
LabelPaymentMode=Payment type (label)
|
LabelPaymentMode=Payment type (label)
|
||||||
PaymentModeShort=Начин на плащане
|
PaymentModeShort=Начин на плащане
|
||||||
@ -156,14 +158,14 @@ DraftBills=Чернови фактури
|
|||||||
CustomersDraftInvoices=Чернови за продажни фактури
|
CustomersDraftInvoices=Чернови за продажни фактури
|
||||||
SuppliersDraftInvoices=Чернови за доставни фактури
|
SuppliersDraftInvoices=Чернови за доставни фактури
|
||||||
Unpaid=Неплатен
|
Unpaid=Неплатен
|
||||||
ConfirmDeleteBill=Сигурен ли сте, че искате да изтриете тази фактура?
|
ConfirmDeleteBill=Are you sure you want to delete this invoice?
|
||||||
ConfirmValidateBill=Сигурен ли сте, че искате да валидирате тази фактура с референт <b>%s?</b>
|
ConfirmValidateBill=Are you sure you want to validate this invoice with reference <b>%s</b>?
|
||||||
ConfirmUnvalidateBill=Сигурен ли сте, че искате да промените фактура <b>%s</b> в състояние на чернова?
|
ConfirmUnvalidateBill=Are you sure you want to change invoice <b>%s</b> to draft status?
|
||||||
ConfirmClassifyPaidBill=Сигурен ли сте, че искате да промените фактура <b>%s</b> до статс платен?
|
ConfirmClassifyPaidBill=Are you sure you want to change invoice <b>%s</b> to status paid?
|
||||||
ConfirmCancelBill=Сигурен ли сте, че искате да отмените фактура <b>%s?</b>
|
ConfirmCancelBill=Are you sure you want to cancel invoice <b>%s</b>?
|
||||||
ConfirmCancelBillQuestion=Защо искате да класифицирате тази фактура като "изоставена"?
|
ConfirmCancelBillQuestion=Why do you want to classify this invoice 'abandoned'?
|
||||||
ConfirmClassifyPaidPartially=Сигурен ли сте, че искате да промените фактура <b>%s</b> до статус платен?
|
ConfirmClassifyPaidPartially=Are you sure you want to change invoice <b>%s</b> to status paid?
|
||||||
ConfirmClassifyPaidPartiallyQuestion=Тази фактура не е платена изцяло. Какви са причините за да се затвори тази фактура?
|
ConfirmClassifyPaidPartiallyQuestion=This invoice has not been paid completely. What are reasons for you to close this invoice?
|
||||||
ConfirmClassifyPaidPartiallyReasonAvoir=Неплатеният остатък <b>(%s %s)</b> е дадена отстъпка, защото плащането е направено преди срока за плащане. Урегулирам ДДС с кредитно известие.
|
ConfirmClassifyPaidPartiallyReasonAvoir=Неплатеният остатък <b>(%s %s)</b> е дадена отстъпка, защото плащането е направено преди срока за плащане. Урегулирам ДДС с кредитно известие.
|
||||||
ConfirmClassifyPaidPartiallyReasonDiscountNoVat=Неплатеният остатък <b>(%s %s)</b> е дадена отстъпка, защото плащането е направено преди срока за плащане. Приемам да се загуби ДДС по тази отстъпка.
|
ConfirmClassifyPaidPartiallyReasonDiscountNoVat=Неплатеният остатък <b>(%s %s)</b> е дадена отстъпка, защото плащането е направено преди срока за плащане. Приемам да се загуби ДДС по тази отстъпка.
|
||||||
ConfirmClassifyPaidPartiallyReasonDiscountVat=Неплатеният остатък <b>(%s %s)</b> е дадена отстъпка, защото плащането е направено преди срока за плащане Възстановявам ДДС по тази отстъпка без кредитно известие.
|
ConfirmClassifyPaidPartiallyReasonDiscountVat=Неплатеният остатък <b>(%s %s)</b> е дадена отстъпка, защото плащането е направено преди срока за плащане Възстановявам ДДС по тази отстъпка без кредитно известие.
|
||||||
@ -178,9 +180,9 @@ ConfirmClassifyPaidPartiallyReasonProductReturnedDesc=Този избор се
|
|||||||
ConfirmClassifyPaidPartiallyReasonOtherDesc=Използвайте този избор, ако всички останали не са подходящи, например в следната ситуация:<br>- Непъло плащане, тъй като някои продукти са върнати<br> - Претендираната сума е твърде важна, защото е била забравена отстъпката<br> Във всички случаи, разликата в сумата трябва да бъде коригирана в счетоводната система чрез създаване на кредитно известие.
|
ConfirmClassifyPaidPartiallyReasonOtherDesc=Използвайте този избор, ако всички останали не са подходящи, например в следната ситуация:<br>- Непъло плащане, тъй като някои продукти са върнати<br> - Претендираната сума е твърде важна, защото е била забравена отстъпката<br> Във всички случаи, разликата в сумата трябва да бъде коригирана в счетоводната система чрез създаване на кредитно известие.
|
||||||
ConfirmClassifyAbandonReasonOther=Друг
|
ConfirmClassifyAbandonReasonOther=Друг
|
||||||
ConfirmClassifyAbandonReasonOtherDesc=Този избор ще бъде използван във всички останали случаи. За пример, защото имате намерение да създадете заменяща фактура.
|
ConfirmClassifyAbandonReasonOtherDesc=Този избор ще бъде използван във всички останали случаи. За пример, защото имате намерение да създадете заменяща фактура.
|
||||||
ConfirmCustomerPayment=Потвърждавате ли това въведено плащане за <b>%s</b> %s ?
|
ConfirmCustomerPayment=Do you confirm this payment input for <b>%s</b> %s?
|
||||||
ConfirmSupplierPayment=Потвърждавате ли това въведено плащане за <b>%s</b> %s ?
|
ConfirmSupplierPayment=Do you confirm this payment input for <b>%s</b> %s?
|
||||||
ConfirmValidatePayment=Сигурен ли сте, че искате да валидирате това плащане? Промяна не може да се направи, след като плащането е валидирано.
|
ConfirmValidatePayment=Are you sure you want to validate this payment? No change can be made once payment is validated.
|
||||||
ValidateBill=Валидирай фактура
|
ValidateBill=Валидирай фактура
|
||||||
UnvalidateBill=Отвалидирай фактура
|
UnvalidateBill=Отвалидирай фактура
|
||||||
NumberOfBills=Бр. фактури
|
NumberOfBills=Бр. фактури
|
||||||
@ -206,7 +208,7 @@ Rest=Чакаща
|
|||||||
AmountExpected=Претендирана сума
|
AmountExpected=Претендирана сума
|
||||||
ExcessReceived=Получено превишение
|
ExcessReceived=Получено превишение
|
||||||
EscompteOffered=Предложена отстъпка (плащане преди срока)
|
EscompteOffered=Предложена отстъпка (плащане преди срока)
|
||||||
EscompteOfferedShort=Discount
|
EscompteOfferedShort=Отстъпка
|
||||||
SendBillRef=Изпращане на фактура %s
|
SendBillRef=Изпращане на фактура %s
|
||||||
SendReminderBillRef=Изпращане на фактура %s (напомняне)
|
SendReminderBillRef=Изпращане на фактура %s (напомняне)
|
||||||
StandingOrders=Direct debit orders
|
StandingOrders=Direct debit orders
|
||||||
@ -269,7 +271,7 @@ Deposits=Депозити
|
|||||||
DiscountFromCreditNote=Отстъпка от кредитно известие %s
|
DiscountFromCreditNote=Отстъпка от кредитно известие %s
|
||||||
DiscountFromDeposit=Плащания от депозитна фактура %s
|
DiscountFromDeposit=Плащания от депозитна фактура %s
|
||||||
AbsoluteDiscountUse=Този вид кредит може да се използва по фактура преди нейното валидиране
|
AbsoluteDiscountUse=Този вид кредит може да се използва по фактура преди нейното валидиране
|
||||||
CreditNoteDepositUse=Фактурата трябва да бъде валидирана за да използвате този вид кредити
|
CreditNoteDepositUse=Invoice must be validated to use this kind of credits
|
||||||
NewGlobalDiscount=Нова абсолютна отстъпка
|
NewGlobalDiscount=Нова абсолютна отстъпка
|
||||||
NewRelativeDiscount=Нова относителна отстъпка
|
NewRelativeDiscount=Нова относителна отстъпка
|
||||||
NoteReason=Бележка/Причина
|
NoteReason=Бележка/Причина
|
||||||
@ -295,15 +297,15 @@ RemoveDiscount=Премахни отстъпка
|
|||||||
WatermarkOnDraftBill=Воден знак върху чернови фактури (няма ако е празно)
|
WatermarkOnDraftBill=Воден знак върху чернови фактури (няма ако е празно)
|
||||||
InvoiceNotChecked=Не е избрана фактура
|
InvoiceNotChecked=Не е избрана фактура
|
||||||
CloneInvoice=Клонирай фактура
|
CloneInvoice=Клонирай фактура
|
||||||
ConfirmCloneInvoice=Сигурени ли сте, че искате да клонирате тази фактура <b>%s</b>?
|
ConfirmCloneInvoice=Are you sure you want to clone this invoice <b>%s</b>?
|
||||||
DisabledBecauseReplacedInvoice=Действието е деактивирано, тъй като фактурата е била заменена
|
DisabledBecauseReplacedInvoice=Действието е деактивирано, тъй като фактурата е била заменена
|
||||||
DescTaxAndDividendsArea=Тази секция представлява обобщение на всички плащания, извършени за специални разходи. Включват се само записи с плащане през фиксираната година.
|
DescTaxAndDividendsArea=This area presents a summary of all payments made for special expenses. Only record with payment during the fixed year are included here.
|
||||||
NbOfPayments=Бр. на плащанията
|
NbOfPayments=Бр. на плащанията
|
||||||
SplitDiscount=Раздели отстъпката на две
|
SplitDiscount=Раздели отстъпката на две
|
||||||
ConfirmSplitDiscount=Сигурен ли сте, че искате да разделите тази отстъпка на <b>%s</b> %s в 2 по-ниски отстъпки?
|
ConfirmSplitDiscount=Are you sure you want to split this discount of <b>%s</b> %s into 2 lower discounts?
|
||||||
TypeAmountOfEachNewDiscount=Размер за всяка от двете части:
|
TypeAmountOfEachNewDiscount=Размер за всяка от двете части:
|
||||||
TotalOfTwoDiscountMustEqualsOriginal=Сумата на двете нови отстъпки трябва да е равен на оригиналната сума на отстъпка.
|
TotalOfTwoDiscountMustEqualsOriginal=Сумата на двете нови отстъпки трябва да е равен на оригиналната сума на отстъпка.
|
||||||
ConfirmRemoveDiscount=Сигурен ли сте, че искате да премахнете тази отстъпка?
|
ConfirmRemoveDiscount=Are you sure you want to remove this discount?
|
||||||
RelatedBill=Свързана фактура
|
RelatedBill=Свързана фактура
|
||||||
RelatedBills=Свързани фактури
|
RelatedBills=Свързани фактури
|
||||||
RelatedCustomerInvoices=Свързани продажни фактури
|
RelatedCustomerInvoices=Свързани продажни фактури
|
||||||
@ -319,7 +321,7 @@ ListOfNextSituationInvoices=List of next situation invoices
|
|||||||
FrequencyPer_d=Every %s days
|
FrequencyPer_d=Every %s days
|
||||||
FrequencyPer_m=Every %s months
|
FrequencyPer_m=Every %s months
|
||||||
FrequencyPer_y=Every %s years
|
FrequencyPer_y=Every %s years
|
||||||
toolTipFrequency=Examples:<br /><b>Set 7 / day</b>: give a new invoice every 7 days<br /><b>Set 3 / month</b>: give a new invoice every 3 month
|
toolTipFrequency=Examples:<br /><b>Set 7, Day</b>: give a new invoice every 7 days<br /><b>Set 3, Month</b>: give a new invoice every 3 month
|
||||||
NextDateToExecution=Date for next invoice generation
|
NextDateToExecution=Date for next invoice generation
|
||||||
DateLastGeneration=Date of latest generation
|
DateLastGeneration=Date of latest generation
|
||||||
MaxPeriodNumber=Max nb of invoice generation
|
MaxPeriodNumber=Max nb of invoice generation
|
||||||
@ -330,6 +332,7 @@ GeneratedFromRecurringInvoice=Generated from template recurring invoice %s
|
|||||||
DateIsNotEnough=Date not reached yet
|
DateIsNotEnough=Date not reached yet
|
||||||
InvoiceGeneratedFromTemplate=Invoice %s generated from recurring template invoice %s
|
InvoiceGeneratedFromTemplate=Invoice %s generated from recurring template invoice %s
|
||||||
# PaymentConditions
|
# PaymentConditions
|
||||||
|
Statut=Състояние
|
||||||
PaymentConditionShortRECEP=Веднага
|
PaymentConditionShortRECEP=Веднага
|
||||||
PaymentConditionRECEP=Веднага
|
PaymentConditionRECEP=Веднага
|
||||||
PaymentConditionShort30D=30 дни
|
PaymentConditionShort30D=30 дни
|
||||||
@ -342,15 +345,15 @@ PaymentConditionShort60DENDMONTH=60 days of month-end
|
|||||||
PaymentCondition60DENDMONTH=Within 60 days following the end of the month
|
PaymentCondition60DENDMONTH=Within 60 days following the end of the month
|
||||||
PaymentConditionShortPT_DELIVERY=Доставка
|
PaymentConditionShortPT_DELIVERY=Доставка
|
||||||
PaymentConditionPT_DELIVERY=При доставка
|
PaymentConditionPT_DELIVERY=При доставка
|
||||||
PaymentConditionShortPT_ORDER=Order
|
PaymentConditionShortPT_ORDER=Поръчка
|
||||||
PaymentConditionPT_ORDER=При поръчка
|
PaymentConditionPT_ORDER=При поръчка
|
||||||
PaymentConditionShortPT_5050=50-50
|
PaymentConditionShortPT_5050=50-50
|
||||||
PaymentConditionPT_5050=50% авансово, 50% при доставка
|
PaymentConditionPT_5050=50% авансово, 50% при доставка
|
||||||
FixAmount=Фиксирана сума
|
FixAmount=Фиксирана сума
|
||||||
VarAmount=Променлива сума (%% общ.)
|
VarAmount=Променлива сума (%% общ.)
|
||||||
# PaymentType
|
# PaymentType
|
||||||
PaymentTypeVIR=Bank transfer
|
PaymentTypeVIR=Банков превод
|
||||||
PaymentTypeShortVIR=Bank transfer
|
PaymentTypeShortVIR=Банков превод
|
||||||
PaymentTypePRE=Direct debit payment order
|
PaymentTypePRE=Direct debit payment order
|
||||||
PaymentTypeShortPRE=Debit payment order
|
PaymentTypeShortPRE=Debit payment order
|
||||||
PaymentTypeLIQ=Касово плащане в брой
|
PaymentTypeLIQ=Касово плащане в брой
|
||||||
@ -364,7 +367,7 @@ PaymentTypeShortTIP=TIP Payment
|
|||||||
PaymentTypeVAD=Плащане онлайн
|
PaymentTypeVAD=Плащане онлайн
|
||||||
PaymentTypeShortVAD=Онлайн
|
PaymentTypeShortVAD=Онлайн
|
||||||
PaymentTypeTRA=Bank draft
|
PaymentTypeTRA=Bank draft
|
||||||
PaymentTypeShortTRA=Draft
|
PaymentTypeShortTRA=Чернова
|
||||||
PaymentTypeFAC=Factor
|
PaymentTypeFAC=Factor
|
||||||
PaymentTypeShortFAC=Factor
|
PaymentTypeShortFAC=Factor
|
||||||
BankDetails=Банкови данни
|
BankDetails=Банкови данни
|
||||||
@ -421,6 +424,7 @@ ShowUnpaidAll=Покажи всички неплатени фактури
|
|||||||
ShowUnpaidLateOnly=Покажи само неплатените фактури с просрочено плащане
|
ShowUnpaidLateOnly=Покажи само неплатените фактури с просрочено плащане
|
||||||
PaymentInvoiceRef=Платежна фактуре %s
|
PaymentInvoiceRef=Платежна фактуре %s
|
||||||
ValidateInvoice=Валидирай фактура
|
ValidateInvoice=Валидирай фактура
|
||||||
|
ValidateInvoices=Validate invoices
|
||||||
Cash=Пари в брой
|
Cash=Пари в брой
|
||||||
Reported=Закъснение
|
Reported=Закъснение
|
||||||
DisabledBecausePayments=Не е възможно, тъй като има някои плащания
|
DisabledBecausePayments=Не е възможно, тъй като има някои плащания
|
||||||
@ -445,6 +449,7 @@ PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice templat
|
|||||||
TerreNumRefModelDesc1=Върнете номер с формат %syymm-nnnn за стандартни фактури и %syymm-nnnn за кредитни известия, където уу е година, mm е месец и NNNN е последователност, без прекъсване и без 0
|
TerreNumRefModelDesc1=Върнете номер с формат %syymm-nnnn за стандартни фактури и %syymm-nnnn за кредитни известия, където уу е година, mm е месец и NNNN е последователност, без прекъсване и без 0
|
||||||
MarsNumRefModelDesc1=Върнете номер с формат %syymm-nnnn за стандартни фактури, %syymm-nnnn за заменящи фактури, %syymm-nnnn за кредитни известия и %syymm-nnnn за кредитни известия, където уу е година, mm е месец и NNNN е последователност, без прекъсване и без 0
|
MarsNumRefModelDesc1=Върнете номер с формат %syymm-nnnn за стандартни фактури, %syymm-nnnn за заменящи фактури, %syymm-nnnn за кредитни известия и %syymm-nnnn за кредитни известия, където уу е година, mm е месец и NNNN е последователност, без прекъсване и без 0
|
||||||
TerreNumRefModelError=Документ започващ с $syymm вече съществува и не е съвместим с този модел на последователност. Извадете го или го преименувайте за да се активира този модул.
|
TerreNumRefModelError=Документ започващ с $syymm вече съществува и не е съвместим с този модел на последователност. Извадете го или го преименувайте за да се активира този модул.
|
||||||
|
CactusNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for credit notes and %syymm-nnnn for deposit invoices where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
|
||||||
##### Types de contacts #####
|
##### Types de contacts #####
|
||||||
TypeContact_facture_internal_SALESREPFOLL=Представител свързан с продажна фактура
|
TypeContact_facture_internal_SALESREPFOLL=Представител свързан с продажна фактура
|
||||||
TypeContact_facture_external_BILLING=Контакт по продажна фактура
|
TypeContact_facture_external_BILLING=Контакт по продажна фактура
|
||||||
@ -472,7 +477,7 @@ NoSituations=Няма отворени ситуации
|
|||||||
InvoiceSituationLast=Последна и обща фактура
|
InvoiceSituationLast=Последна и обща фактура
|
||||||
PDFCrevetteSituationNumber=Situation N°%s
|
PDFCrevetteSituationNumber=Situation N°%s
|
||||||
PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
|
PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
|
||||||
PDFCrevetteSituationInvoiceTitle=Situation invoice
|
PDFCrevetteSituationInvoiceTitle=Ситуационна фактура
|
||||||
PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
|
PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
|
||||||
TotalSituationInvoice=Total situation
|
TotalSituationInvoice=Total situation
|
||||||
invoiceLineProgressError=Invoice line progress can't be greater than or equal to the next invoice line
|
invoiceLineProgressError=Invoice line progress can't be greater than or equal to the next invoice line
|
||||||
@ -481,5 +486,6 @@ ToCreateARecurringInvoice=To create a recurring invoice for this contract, first
|
|||||||
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
|
DeleteRepeatableInvoice=Delete template invoice
|
||||||
ConfirmDeleteRepeatableInvoice=Are your sure you want to delete the template invoice ?
|
ConfirmDeleteRepeatableInvoice=Are your sure you want to delete the template invoice?
|
||||||
|
CreateOneBillByThird=Create one invoice per third party (otherwise, one invoice per order)
|
||||||
|
BillCreated=%s bill(s) created
|
||||||
|
|||||||
@ -10,7 +10,7 @@ NewAction=Ново събитие
|
|||||||
AddAction=Създай събитие
|
AddAction=Създай събитие
|
||||||
AddAnAction=Създаване на събитие
|
AddAnAction=Създаване на събитие
|
||||||
AddActionRendezVous=Създаване на Рандеву събитие
|
AddActionRendezVous=Създаване на Рандеву събитие
|
||||||
ConfirmDeleteAction=Сигурни ли сте, че искате да изтриете това събитие ?
|
ConfirmDeleteAction=Are you sure you want to delete this event?
|
||||||
CardAction=Карта на/за събитие
|
CardAction=Карта на/за събитие
|
||||||
ActionOnCompany=Related company
|
ActionOnCompany=Related company
|
||||||
ActionOnContact=Related contact
|
ActionOnContact=Related contact
|
||||||
@ -28,7 +28,7 @@ ShowCustomer=Покажи клиента
|
|||||||
ShowProspect=Покажи перспектива
|
ShowProspect=Покажи перспектива
|
||||||
ListOfProspects=Списък на потенциални
|
ListOfProspects=Списък на потенциални
|
||||||
ListOfCustomers=Списък на клиенти
|
ListOfCustomers=Списък на клиенти
|
||||||
LastDoneTasks=Latest %s completed tasks
|
LastDoneTasks=Latest %s completed actions
|
||||||
LastActionsToDo=Oldest %s not completed actions
|
LastActionsToDo=Oldest %s not completed actions
|
||||||
DoneAndToDoActions=Завършени и предстоящи събития
|
DoneAndToDoActions=Завършени и предстоящи събития
|
||||||
DoneActions=Завършени събития
|
DoneActions=Завършени събития
|
||||||
@ -62,7 +62,7 @@ ActionAC_SHIP=Изпрати доставка по пощата
|
|||||||
ActionAC_SUP_ORD=Изпращане на доставчика за по пощата
|
ActionAC_SUP_ORD=Изпращане на доставчика за по пощата
|
||||||
ActionAC_SUP_INV=Изпращане на доставчика фактура по пощата
|
ActionAC_SUP_INV=Изпращане на доставчика фактура по пощата
|
||||||
ActionAC_OTH=Друг
|
ActionAC_OTH=Друг
|
||||||
ActionAC_OTH_AUTO=Други (Автоматично добавени)
|
ActionAC_OTH_AUTO=Автоматично добавени
|
||||||
ActionAC_MANUAL=Ръчно добавени
|
ActionAC_MANUAL=Ръчно добавени
|
||||||
ActionAC_AUTO=Автоматично добавени
|
ActionAC_AUTO=Автоматично добавени
|
||||||
Stats=Статистика на продажбите
|
Stats=Статистика на продажбите
|
||||||
|
|||||||
@ -2,9 +2,9 @@
|
|||||||
ErrorCompanyNameAlreadyExists=Името на фирмата %s вече съществува. Изберете друго.
|
ErrorCompanyNameAlreadyExists=Името на фирмата %s вече съществува. Изберете друго.
|
||||||
ErrorSetACountryFirst=Първо задайте държава
|
ErrorSetACountryFirst=Първо задайте държава
|
||||||
SelectThirdParty=Изберете контрагент
|
SelectThirdParty=Изберете контрагент
|
||||||
ConfirmDeleteCompany=Сигурни ли сте, че желаете да изтриете тази фирма и цялата свързана информация?
|
ConfirmDeleteCompany=Are you sure you want to delete this company and all inherited information?
|
||||||
DeleteContact=Изтриване на контакт/адрес
|
DeleteContact=Изтриване на контакт/адрес
|
||||||
ConfirmDeleteContact=Сигурни ли сте, че желаете да изтриете този контакт и цялата свързана информация?
|
ConfirmDeleteContact=Are you sure you want to delete this contact and all inherited information?
|
||||||
MenuNewThirdParty=Нов контрагент
|
MenuNewThirdParty=Нов контрагент
|
||||||
MenuNewCustomer=Нов клиент
|
MenuNewCustomer=Нов клиент
|
||||||
MenuNewProspect=Нов потенциален
|
MenuNewProspect=Нов потенциален
|
||||||
@ -77,6 +77,7 @@ VATIsUsed=ДДС се използва
|
|||||||
VATIsNotUsed=ДДС не се използва
|
VATIsNotUsed=ДДС не се използва
|
||||||
CopyAddressFromSoc=Fill address with third party address
|
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
|
||||||
|
PaymentBankAccount=Payment bank account
|
||||||
##### Local Taxes #####
|
##### Local Taxes #####
|
||||||
LocalTax1IsUsed=Използване на втора такса
|
LocalTax1IsUsed=Използване на втора такса
|
||||||
LocalTax1IsUsedES= RE се използва
|
LocalTax1IsUsedES= RE се използва
|
||||||
@ -271,7 +272,7 @@ DefaultContact=Контакт/адрес по подразбиране
|
|||||||
AddThirdParty=Създаване контрагент
|
AddThirdParty=Създаване контрагент
|
||||||
DeleteACompany=Изтриване на фирма
|
DeleteACompany=Изтриване на фирма
|
||||||
PersonalInformations=Лични данни
|
PersonalInformations=Лични данни
|
||||||
AccountancyCode=Счетоводен код
|
AccountancyCode=Accounting account
|
||||||
CustomerCode=Код на клиент
|
CustomerCode=Код на клиент
|
||||||
SupplierCode=Код на доставчик
|
SupplierCode=Код на доставчик
|
||||||
CustomerCodeShort=Код на клиента
|
CustomerCodeShort=Код на клиента
|
||||||
@ -364,7 +365,7 @@ ImportDataset_company_3=Банкови данни
|
|||||||
ImportDataset_company_4=Контрагети/Търговски представители (Засяга потребителите, търговски представители на фирми)
|
ImportDataset_company_4=Контрагети/Търговски представители (Засяга потребителите, търговски представители на фирми)
|
||||||
PriceLevel=Ценово ниво
|
PriceLevel=Ценово ниво
|
||||||
DeliveryAddress=Адрес за доставка
|
DeliveryAddress=Адрес за доставка
|
||||||
AddAddress=Add address
|
AddAddress=Добавяне на адрес
|
||||||
SupplierCategory=Категория на доставчик
|
SupplierCategory=Категория на доставчик
|
||||||
JuridicalStatus200=Independent
|
JuridicalStatus200=Independent
|
||||||
DeleteFile=Изтриване на файл
|
DeleteFile=Изтриване на файл
|
||||||
@ -392,10 +393,10 @@ LeopardNumRefModelDesc=Кодът е безплатен. Този код мож
|
|||||||
ManagingDirectors=Име на управител(и) (гл. изп. директор, директор, президент...)
|
ManagingDirectors=Име на управител(и) (гл. изп. директор, директор, президент...)
|
||||||
MergeOriginThirdparty=Дублиращ контрагент (контрагентът, който искате да изтриете)
|
MergeOriginThirdparty=Дублиращ контрагент (контрагентът, който искате да изтриете)
|
||||||
MergeThirdparties=Сливане на контрагенти
|
MergeThirdparties=Сливане на контрагенти
|
||||||
ConfirmMergeThirdparties=Сигурни ли сте че искате да слеете този контрагент в текущия? Всички свързани обекти (фактури, поръчки, ...) ще бъдат преместени към текущия контрагент.
|
ConfirmMergeThirdparties=Are you sure you want to merge this third party into the current one? All linked objects (invoices, orders, ...) will be moved to current third party so you will be able to delete the duplicate one.
|
||||||
ThirdpartiesMergeSuccess=Контрагентите бяха обединени
|
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.
|
ErrorThirdpartiesMerge=Има грешка при изтриването на контрагентите. Моля проверете системните записи. Промените са възвърнати.
|
||||||
NewCustomerSupplierCodeProposed=New customer or supplier code suggested on duplicate code
|
NewCustomerSupplierCodeProposed=New customer or supplier code suggested on duplicate code
|
||||||
|
|||||||
@ -86,12 +86,13 @@ Refund=Refund
|
|||||||
SocialContributionsPayments=Social/fiscal taxes payments
|
SocialContributionsPayments=Social/fiscal taxes payments
|
||||||
ShowVatPayment=Покажи плащане на ДДС
|
ShowVatPayment=Покажи плащане на ДДС
|
||||||
TotalToPay=Всичко за плащане
|
TotalToPay=Всичко за плащане
|
||||||
|
BalanceVisibilityDependsOnSortAndFilters=Balance is visible in this list only if table is sorted ascending on %s and filtered for 1 bank account
|
||||||
CustomerAccountancyCode=Код на клиенти счетоводство
|
CustomerAccountancyCode=Код на клиенти счетоводство
|
||||||
SupplierAccountancyCode=Код доставчик счетоводство
|
SupplierAccountancyCode=Код доставчик счетоводство
|
||||||
CustomerAccountancyCodeShort=Cust. account. code
|
CustomerAccountancyCodeShort=Cust. account. code
|
||||||
SupplierAccountancyCodeShort=Sup. account. code
|
SupplierAccountancyCodeShort=Sup. account. code
|
||||||
AccountNumber=Номер на сметка
|
AccountNumber=Номер на сметка
|
||||||
NewAccount=Нов акаунт
|
NewAccountingAccount=Нова сметка
|
||||||
SalesTurnover=Продажби оборот
|
SalesTurnover=Продажби оборот
|
||||||
SalesTurnoverMinimum=Minimum sales turnover
|
SalesTurnoverMinimum=Minimum sales turnover
|
||||||
ByExpenseIncome=By expenses & incomes
|
ByExpenseIncome=By expenses & incomes
|
||||||
@ -169,7 +170,7 @@ InvoiceRef=Фактура с реф.
|
|||||||
CodeNotDef=Не е определена
|
CodeNotDef=Не е определена
|
||||||
WarningDepositsNotIncluded=Депозити фактури не са включени в тази версия с този модул за счетоводството.
|
WarningDepositsNotIncluded=Депозити фактури не са включени в тази версия с този модул за счетоводството.
|
||||||
DatePaymentTermCantBeLowerThanObjectDate=Payment term date can't be lower than object date.
|
DatePaymentTermCantBeLowerThanObjectDate=Payment term date can't be lower than object date.
|
||||||
Pcg_version=PCG версия
|
Pcg_version=Chart of accounts models
|
||||||
Pcg_type=PCG тип
|
Pcg_type=PCG тип
|
||||||
Pcg_subtype=PCG подтип
|
Pcg_subtype=PCG подтип
|
||||||
InvoiceLinesToDispatch=Invoice lines to dispatch
|
InvoiceLinesToDispatch=Invoice lines to dispatch
|
||||||
@ -184,11 +185,11 @@ CalculationRuleDescSupplier=According to supplier, choose appropriate method to
|
|||||||
TurnoverPerProductInCommitmentAccountingNotRelevant=Turnover report per product, when using a <b>cash accountancy</b> mode is not relevant. This report is only available when using <b>engagement accountancy</b> mode (see setup of accountancy module).
|
TurnoverPerProductInCommitmentAccountingNotRelevant=Turnover report per product, when using a <b>cash accountancy</b> mode is not relevant. This report is only available when using <b>engagement accountancy</b> mode (see setup of accountancy module).
|
||||||
CalculationMode=Calculation mode
|
CalculationMode=Calculation mode
|
||||||
AccountancyJournal=Accountancy code journal
|
AccountancyJournal=Accountancy code journal
|
||||||
ACCOUNTING_VAT_SOLD_ACCOUNT=Default accountancy code for collecting VAT (VAT on sales)
|
ACCOUNTING_VAT_SOLD_ACCOUNT=Accounting account by default for collecting VAT - VAT on sales (used if not defined on VAT dictionary setup)
|
||||||
ACCOUNTING_VAT_BUY_ACCOUNT=Default accountancy code for recovered VAT (VAT on purchases)
|
ACCOUNTING_VAT_BUY_ACCOUNT=Accounting account by default for recovered VAT - VAT on purchases (used if not defined on VAT dictionary setup)
|
||||||
ACCOUNTING_VAT_PAY_ACCOUNT=Default accountancy code for paying VAT
|
ACCOUNTING_VAT_PAY_ACCOUNT=Accounting account by default for paying VAT
|
||||||
ACCOUNTING_ACCOUNT_CUSTOMER=Accountancy code by default for customer thirdparties
|
ACCOUNTING_ACCOUNT_CUSTOMER=Accounting account by default for customer third parties (used if not defined on third party card)
|
||||||
ACCOUNTING_ACCOUNT_SUPPLIER=Accountancy code by default for supplier thirdparties
|
ACCOUNTING_ACCOUNT_SUPPLIER=Accounting account by default for supplier third parties (used if not defined on third party card)
|
||||||
CloneTax=Clone a social/fiscal tax
|
CloneTax=Clone a social/fiscal tax
|
||||||
ConfirmCloneTax=Confirm the clone of a social/fiscal tax payment
|
ConfirmCloneTax=Confirm the clone of a social/fiscal tax payment
|
||||||
CloneTaxForNextMonth=Клониране за следващ месец
|
CloneTaxForNextMonth=Клониране за следващ месец
|
||||||
@ -199,6 +200,7 @@ BasedOnTwoFirstLettersOfVATNumberBeingDifferentFromYourCompanyCountry=Based on t
|
|||||||
SameCountryCustomersWithVAT=National customers report
|
SameCountryCustomersWithVAT=National customers report
|
||||||
BasedOnTwoFirstLettersOfVATNumberBeingTheSameAsYourCompanyCountry=Based on the two first letters of the VAT number being the same as your own company's country code
|
BasedOnTwoFirstLettersOfVATNumberBeingTheSameAsYourCompanyCountry=Based on the two first letters of the VAT number being the same as your own company's country code
|
||||||
LinkedFichinter=Link to an intervention
|
LinkedFichinter=Link to an intervention
|
||||||
ImportDataset_tax_contrib=Import social/fiscal taxes
|
ImportDataset_tax_contrib=Social/fiscal taxes
|
||||||
ImportDataset_tax_vat=Import vat payments
|
ImportDataset_tax_vat=Vat payments
|
||||||
ErrorBankAccountNotFound=Error: Bank account not found
|
ErrorBankAccountNotFound=Error: Bank account not found
|
||||||
|
FiscalPeriod=Accounting period
|
||||||
|
|||||||
@ -16,7 +16,7 @@ ServiceStatusLateShort=Изтекла
|
|||||||
ServiceStatusClosed=Затворен
|
ServiceStatusClosed=Затворен
|
||||||
ShowContractOfService=Show contract of service
|
ShowContractOfService=Show contract of service
|
||||||
Contracts=Договори
|
Contracts=Договори
|
||||||
ContractsSubscriptions=Contracts/Subscriptions
|
ContractsSubscriptions=Договори/Абонаменти
|
||||||
ContractsAndLine=Договори и договорни линии
|
ContractsAndLine=Договори и договорни линии
|
||||||
Contract=Договор
|
Contract=Договор
|
||||||
ContractLine=Договорна линия
|
ContractLine=Договорна линия
|
||||||
@ -32,13 +32,13 @@ NewContractSubscription=New contract/subscription
|
|||||||
AddContract=Създаване на договор
|
AddContract=Създаване на договор
|
||||||
DeleteAContract=Изтриване на договора
|
DeleteAContract=Изтриване на договора
|
||||||
CloseAContract=Затваряне на договора
|
CloseAContract=Затваряне на договора
|
||||||
ConfirmDeleteAContract=Сигурен ли сте, че искате да изтриете този договор и всички свои услуги?
|
ConfirmDeleteAContract=Are you sure you want to delete this contract and all its services?
|
||||||
ConfirmValidateContract=Сигурен ли сте, че искате да проверите този договор?
|
ConfirmValidateContract=Are you sure you want to validate this contract under name <b>%s</b>?
|
||||||
ConfirmCloseContract=Това ще затвори всички услуги (активна или не). Сигурен ли сте, че искате да затворите този договор?
|
ConfirmCloseContract=This will close all services (active or not). Are you sure you want to close this contract?
|
||||||
ConfirmCloseService=Сигурен ли сте, че искате да затворите тази услуга с дати <b>%s?</b>
|
ConfirmCloseService=Are you sure you want to close this service with date <b>%s</b>?
|
||||||
ValidateAContract=Одобряване на договор
|
ValidateAContract=Одобряване на договор
|
||||||
ActivateService=Активиране на услугата
|
ActivateService=Активиране на услугата
|
||||||
ConfirmActivateService=Сигурен ли сте, че искате да активирате тази услуга с дати <b>%s?</b>
|
ConfirmActivateService=Are you sure you want to activate this service with date <b>%s</b>?
|
||||||
RefContract=Договор препратка
|
RefContract=Договор препратка
|
||||||
DateContract=Дата на договора
|
DateContract=Дата на договора
|
||||||
DateServiceActivate=Датата на активиране на услугата
|
DateServiceActivate=Датата на активиране на услугата
|
||||||
@ -69,10 +69,10 @@ DraftContracts=Чернови договори
|
|||||||
CloseRefusedBecauseOneServiceActive=Договорът не може да бъде затворен, тъй като има най-малко една отворена услуга върху него
|
CloseRefusedBecauseOneServiceActive=Договорът не може да бъде затворен, тъй като има най-малко една отворена услуга върху него
|
||||||
CloseAllContracts=Затворете всички договорни линии
|
CloseAllContracts=Затворете всички договорни линии
|
||||||
DeleteContractLine=Изтриване на линия договор
|
DeleteContractLine=Изтриване на линия договор
|
||||||
ConfirmDeleteContractLine=Сигурен ли сте, че искате да изтриете тази линия договор?
|
ConfirmDeleteContractLine=Are you sure you want to delete this contract line?
|
||||||
MoveToAnotherContract=Преместване на службата в друг договор.
|
MoveToAnotherContract=Преместване на службата в друг договор.
|
||||||
ConfirmMoveToAnotherContract=Избра новата цел на договора и потвърдете, искам да се движат тази услуга в този договор.
|
ConfirmMoveToAnotherContract=Избра новата цел на договора и потвърдете, искам да се движат тази услуга в този договор.
|
||||||
ConfirmMoveToAnotherContractQuestion=Изберете в кой от съществуващите договори (със същия контрагент), искате да преместите тази услуга?
|
ConfirmMoveToAnotherContractQuestion=Choose in which existing contract (of same third party), you want to move this service to?
|
||||||
PaymentRenewContractId=Поднови договора линия (брой %s)
|
PaymentRenewContractId=Поднови договора линия (брой %s)
|
||||||
ExpiredSince=Срок на годност
|
ExpiredSince=Срок на годност
|
||||||
NoExpiredServices=Не изтекъл активни услуги
|
NoExpiredServices=Не изтекъл активни услуги
|
||||||
|
|||||||
@ -1,22 +1,22 @@
|
|||||||
# Dolibarr language file - Source file is en_US - deliveries
|
# Dolibarr language file - Source file is en_US - deliveries
|
||||||
Delivery=Доставка
|
Delivery=Доставка
|
||||||
DeliveryRef=Ref Delivery
|
DeliveryRef=Ref Delivery
|
||||||
DeliveryCard=Доставка карта
|
DeliveryCard=Receipt card
|
||||||
DeliveryOrder=Доставка за
|
DeliveryOrder=Доставка за
|
||||||
DeliveryDate=Дата на доставка
|
DeliveryDate=Дата на доставка
|
||||||
CreateDeliveryOrder=Генериране на ордер за доставка
|
CreateDeliveryOrder=Generate delivery receipt
|
||||||
DeliveryStateSaved=Състояние на доставката е записано
|
DeliveryStateSaved=Състояние на доставката е записано
|
||||||
SetDeliveryDate=Дата на изпращане
|
SetDeliveryDate=Дата на изпращане
|
||||||
ValidateDeliveryReceipt=Одобряване на разписка
|
ValidateDeliveryReceipt=Одобряване на разписка
|
||||||
ValidateDeliveryReceiptConfirm=Сигурен ли сте, че искате да проверите тази разписка?
|
ValidateDeliveryReceiptConfirm=Are you sure you want to validate this delivery receipt?
|
||||||
DeleteDeliveryReceipt=Изтриване на разписка
|
DeleteDeliveryReceipt=Изтриване на разписка
|
||||||
DeleteDeliveryReceiptConfirm=Сигурен ли сте, че искате да изтриете <b>%s</b> разписка?
|
DeleteDeliveryReceiptConfirm=Are you sure you want to delete delivery receipt <b>%s</b>?
|
||||||
DeliveryMethod=Начин
|
DeliveryMethod=Начин
|
||||||
TrackingNumber=Проследяващ номер
|
TrackingNumber=Проследяващ номер
|
||||||
DeliveryNotValidated=Доставката не валидирани
|
DeliveryNotValidated=Доставката не валидирани
|
||||||
StatusDeliveryCanceled=Canceled
|
StatusDeliveryCanceled=Отменен
|
||||||
StatusDeliveryDraft=Draft
|
StatusDeliveryDraft=Чернова
|
||||||
StatusDeliveryValidated=Received
|
StatusDeliveryValidated=Получено
|
||||||
# merou PDF model
|
# merou PDF model
|
||||||
NameAndSignature=Име и подпис:
|
NameAndSignature=Име и подпис:
|
||||||
ToAndDate=To___________________________________ на ____ / _____ / __________
|
ToAndDate=To___________________________________ на ____ / _____ / __________
|
||||||
|
|||||||
@ -6,7 +6,7 @@ Donor=Дарител
|
|||||||
AddDonation=Създаване на дарение
|
AddDonation=Създаване на дарение
|
||||||
NewDonation=Ново дарение
|
NewDonation=Ново дарение
|
||||||
DeleteADonation=Изтриване на дарение
|
DeleteADonation=Изтриване на дарение
|
||||||
ConfirmDeleteADonation=Сигурни ли сте, че желаете да изтриете това дарение
|
ConfirmDeleteADonation=Are you sure you want to delete this donation?
|
||||||
ShowDonation=Показване на дарение
|
ShowDonation=Показване на дарение
|
||||||
PublicDonation=Публично дарение
|
PublicDonation=Публично дарение
|
||||||
DonationsArea=Дарения
|
DonationsArea=Дарения
|
||||||
|
|||||||
@ -32,13 +32,13 @@ ECMDocsByProducts=Документи, свързани с продуктите
|
|||||||
ECMDocsByProjects=Документи свързани към проекти
|
ECMDocsByProjects=Документи свързани към проекти
|
||||||
ECMDocsByUsers=Документи свързани към потребители
|
ECMDocsByUsers=Документи свързани към потребители
|
||||||
ECMDocsByInterventions=Документи свързани към интервенции
|
ECMDocsByInterventions=Документи свързани към интервенции
|
||||||
|
ECMDocsByExpenseReports=Documents linked to expense reports
|
||||||
ECMNoDirectoryYet=Не е създадена директория
|
ECMNoDirectoryYet=Не е създадена директория
|
||||||
ShowECMSection=Покажи директория
|
ShowECMSection=Покажи директория
|
||||||
DeleteSection=Изтриване на директория
|
DeleteSection=Изтриване на директория
|
||||||
ConfirmDeleteSection=Сигурни ли сте, че желаете да изтриете директорията <b>%s</b>?
|
ConfirmDeleteSection=Can you confirm you want to delete the directory <b>%s</b>?
|
||||||
ECMDirectoryForFiles=Относителна директория за файловете
|
ECMDirectoryForFiles=Относителна директория за файловете
|
||||||
CannotRemoveDirectoryContainsFiles=Премахването не е възможно, защото съдържа файлове
|
CannotRemoveDirectoryContainsFiles=Премахването не е възможно, защото съдържа файлове
|
||||||
ECMFileManager=Файлов мениджър
|
ECMFileManager=Файлов мениджър
|
||||||
ECMSelectASection=Изберете директория от лявото дърво ...
|
ECMSelectASection=Изберете директория от лявото дърво ...
|
||||||
DirNotSynchronizedSyncFirst=Тази директория излгежда е създадена или променена извън ECM модула. Трябва да кликнете на бутон "Refresh" първо за обновяване на диска и базата данни да вземе съдържанието на тази директория.
|
DirNotSynchronizedSyncFirst=Тази директория излгежда е създадена или променена извън ECM модула. Трябва да кликнете на бутон "Refresh" първо за обновяване на диска и базата данни да вземе съдържанието на тази директория.
|
||||||
|
|
||||||
|
|||||||
@ -69,8 +69,8 @@ ErrorLDAPSetupNotComplete=Dolibarr LDAP съвпадение не е пълна.
|
|||||||
ErrorLDAPMakeManualTest=. LDIF файл е генериран в директорията %s. Опитайте се да го заредите ръчно от командния ред, за да има повече информация за грешките,.
|
ErrorLDAPMakeManualTest=. LDIF файл е генериран в директорията %s. Опитайте се да го заредите ръчно от командния ред, за да има повече информация за грешките,.
|
||||||
ErrorCantSaveADoneUserWithZeroPercentage=Не може да се запази действието с "статут не е започнал", ако поле ", направено от" е пълен.
|
ErrorCantSaveADoneUserWithZeroPercentage=Не може да се запази действието с "статут не е започнал", ако поле ", направено от" е пълен.
|
||||||
ErrorRefAlreadyExists=Ref използван за създаване вече съществува.
|
ErrorRefAlreadyExists=Ref използван за създаване вече съществува.
|
||||||
ErrorPleaseTypeBankTransactionReportName=Моля, въведете името на банката, получаване, когато се отчита сделката (Format YYYYMM или YYYYMMDD)
|
ErrorPleaseTypeBankTransactionReportName=Please type bank statement name where entry is reported (Format YYYYMM or YYYYMMDD)
|
||||||
ErrorRecordHasChildren=Грешка при изтриване на записи, тъй като тя има някои детински.
|
ErrorRecordHasChildren=Failed to delete record since it has some childs.
|
||||||
ErrorRecordIsUsedCantDelete=Не може да изтрие запис. Той вече е използван или включен в друг обект.
|
ErrorRecordIsUsedCantDelete=Не може да изтрие запис. Той вече е използван или включен в друг обект.
|
||||||
ErrorModuleRequireJavascript=Javascript не трябва да бъдат хората с увреждания да имат тази функция. За да включите / изключите Javascript, отидете в менюто Начало-> Setup-> Display.
|
ErrorModuleRequireJavascript=Javascript не трябва да бъдат хората с увреждания да имат тази функция. За да включите / изключите Javascript, отидете в менюто Начало-> Setup-> Display.
|
||||||
ErrorPasswordsMustMatch=Двете машинописни пароли трябва да съвпадат помежду си
|
ErrorPasswordsMustMatch=Двете машинописни пароли трябва да съвпадат помежду си
|
||||||
@ -131,7 +131,7 @@ ErrorWarehouseMustDiffers=Source and target warehouses must differs
|
|||||||
ErrorBadFormat=Неправилен формат!
|
ErrorBadFormat=Неправилен формат!
|
||||||
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.
|
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=Can't delete a payment that had generated a bank transaction that was conciliated
|
ErrorCantDeletePaymentReconciliated=Can't delete a payment that had generated a bank entry that was reconciled
|
||||||
ErrorCantDeletePaymentSharedWithPayedInvoice=Не може да се изтрие плащане споделено от поне една фактура със статус Платена
|
ErrorCantDeletePaymentSharedWithPayedInvoice=Не може да се изтрие плащане споделено от поне една фактура със статус Платена
|
||||||
ErrorPriceExpression1=Не може да се зададе стойност на константа '%s'
|
ErrorPriceExpression1=Не може да се зададе стойност на константа '%s'
|
||||||
ErrorPriceExpression2=Не може да се предефинира вградена функция '%s'
|
ErrorPriceExpression2=Не може да се предефинира вградена функция '%s'
|
||||||
@ -168,7 +168,7 @@ ErrorBadDefinitionOfMenuArrayInModuleDescriptor=Bad Definition Of Menu Array In
|
|||||||
ErrorSavingChanges=An error has ocurred when saving the changes
|
ErrorSavingChanges=An error has ocurred when saving the changes
|
||||||
ErrorWarehouseRequiredIntoShipmentLine=Warehouse is required on the line to ship
|
ErrorWarehouseRequiredIntoShipmentLine=Warehouse is required on the line to ship
|
||||||
ErrorFileMustHaveFormat=File must have format %s
|
ErrorFileMustHaveFormat=File must have format %s
|
||||||
ErrorSupplierCountryIsNotDefined=Country for this supplier is not defined. Correct this first.
|
ErrorSupplierCountryIsNotDefined=Не е определено на страната на доставчика. Корекция на щепсела.
|
||||||
ErrorsThirdpartyMerge=Failed to merge the two records. Request canceled.
|
ErrorsThirdpartyMerge=Failed to merge the two records. Request canceled.
|
||||||
ErrorStockIsNotEnoughToAddProductOnOrder=Stock is not enougth for product %s to add it into a new order.
|
ErrorStockIsNotEnoughToAddProductOnOrder=Stock is not enougth for product %s to add it into a new order.
|
||||||
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.
|
||||||
@ -176,6 +176,8 @@ ErrorStockIsNotEnoughToAddProductOnShipment=Stock is not enougth for product %s
|
|||||||
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'.
|
ErrorFailedToLoadLoginFileForMode=Failed to get the login file for mode '%s'.
|
||||||
ErrorModuleNotFound=File of module was not found.
|
ErrorModuleNotFound=File of module was not found.
|
||||||
|
ErrorFieldAccountNotDefinedForBankLine=Value for Accounting account not defined for source bank line %s
|
||||||
|
ErrorBankStatementNameMustFollowRegex=Error, bank statement name must follow the following syntax rule %s
|
||||||
|
|
||||||
# Warnings
|
# Warnings
|
||||||
WarningPasswordSetWithNoAccount=Парола е зададено за този член. Обаче, няма създаден потребителски акаунт. Следователно тази парола е записана, но не може да бъде използвана за влизане в Dolibarr. Може да бъде използвана от външен модул/интерфейс, но ако нямате нужда да определите нито потребителско име нито парола за член, можете да деактивирате тази опция. Ако имате нужда да управлявате потребителско име, но нямата нужда от парола, можете да оставите това поле празно, за да избегнете това предупреждение. Забележка: Имейл също може да бъде използван като потребителско име ако члена с свързан към потребител.
|
WarningPasswordSetWithNoAccount=Парола е зададено за този член. Обаче, няма създаден потребителски акаунт. Следователно тази парола е записана, но не може да бъде използвана за влизане в Dolibarr. Може да бъде използвана от външен модул/интерфейс, но ако нямате нужда да определите нито потребителско име нито парола за член, можете да деактивирате тази опция. Ако имате нужда да управлявате потребителско име, но нямата нужда от парола, можете да оставите това поле празно, за да избегнете това предупреждение. Забележка: Имейл също може да бъде използван като потребителско име ако члена с свързан към потребител.
|
||||||
|
|||||||
@ -26,8 +26,6 @@ FieldTitle=Заглавие
|
|||||||
NowClickToGenerateToBuildExportFile=Сега, изберете файловия формат, в комбо кутия и кликнете върху "Генериране" за изграждане на файл за износ ...
|
NowClickToGenerateToBuildExportFile=Сега, изберете файловия формат, в комбо кутия и кликнете върху "Генериране" за изграждане на файл за износ ...
|
||||||
AvailableFormats=Налични формати
|
AvailableFormats=Налични формати
|
||||||
LibraryShort=Библиотека
|
LibraryShort=Библиотека
|
||||||
LibraryUsed=Библиотека използва
|
|
||||||
LibraryVersion=Версия
|
|
||||||
Step=Стъпка
|
Step=Стъпка
|
||||||
FormatedImport=Import assistant
|
FormatedImport=Import assistant
|
||||||
FormatedImportDesc1=This area allows to import personalized data, using an assistant to help you in process without technical knowledge.
|
FormatedImportDesc1=This area allows to import personalized data, using an assistant to help you in process without technical knowledge.
|
||||||
@ -87,7 +85,7 @@ TooMuchWarnings=Все още <b>%s</b> други линии източник
|
|||||||
EmptyLine=Празен ред (ще бъдат отхвърлени)
|
EmptyLine=Празен ред (ще бъдат отхвърлени)
|
||||||
CorrectErrorBeforeRunningImport=Трябва първо да поправи всички грешки, преди да пуснете окончателен внос.
|
CorrectErrorBeforeRunningImport=Трябва първо да поправи всички грешки, преди да пуснете окончателен внос.
|
||||||
FileWasImported=Файла е внесен с цифровите <b>%s.</b>
|
FileWasImported=Файла е внесен с цифровите <b>%s.</b>
|
||||||
YouCanUseImportIdToFindRecord=Можете да намерите всички внесени записи във вашата база данни чрез филтриране на областта <b>import_key = '%s ".</b>
|
YouCanUseImportIdToFindRecord=You can find all imported record in your database by filtering on field <b>import_key='%s'</b>.
|
||||||
NbOfLinesOK=Брой на линии с грешки и без предупреждения: <b>%s.</b>
|
NbOfLinesOK=Брой на линии с грешки и без предупреждения: <b>%s.</b>
|
||||||
NbOfLinesImported=Брой на линиите успешно внесени: <b>%s.</b>
|
NbOfLinesImported=Брой на линиите успешно внесени: <b>%s.</b>
|
||||||
DataComeFromNoWhere=Стойност да вмъкнете идва от нищото в изходния файл.
|
DataComeFromNoWhere=Стойност да вмъкнете идва от нищото в изходния файл.
|
||||||
@ -105,7 +103,7 @@ CSVFormatDesc=<b>Разделени със запетаи</b> формат <b>с
|
|||||||
Excel95FormatDesc=Файлов формат на <b>Excel</b> (XLS) <br> Това е роден Excel 95 формат (BIFF5).
|
Excel95FormatDesc=Файлов формат на <b>Excel</b> (XLS) <br> Това е роден Excel 95 формат (BIFF5).
|
||||||
Excel2007FormatDesc=<b>Excel</b> файлов формат (XLSX) <br> Това е роден формат Excel 2007 (SpreadsheetML).
|
Excel2007FormatDesc=<b>Excel</b> файлов формат (XLSX) <br> Това е роден формат Excel 2007 (SpreadsheetML).
|
||||||
TsvFormatDesc=<b>Tab раздяла</b> формат <b>стойност</b> файл (TSV) <br> Това е формат текстов файл, където полетата са разделени с табулатор [Tab].
|
TsvFormatDesc=<b>Tab раздяла</b> формат <b>стойност</b> файл (TSV) <br> Това е формат текстов файл, където полетата са разделени с табулатор [Tab].
|
||||||
ExportFieldAutomaticallyAdded=Полеви <b>%s</b> добавят автоматично. Тя ще ви избягват да има подобни линии, които да бъдат третирани като дублирани записи (с тази област, добави всички Ligne ще притежава своя номер и ще се различават).
|
ExportFieldAutomaticallyAdded=Field <b>%s</b> was automatically added. It will avoid you to have similar lines to be treated as duplicate record (with this field added, all lines will own their own id and will differ).
|
||||||
CsvOptions=Csv опции
|
CsvOptions=Csv опции
|
||||||
Separator=Разделител
|
Separator=Разделител
|
||||||
Enclosure=Enclosure
|
Enclosure=Enclosure
|
||||||
|
|||||||
@ -11,7 +11,7 @@ TypeOfSupport=Източник на подкрепа
|
|||||||
TypeSupportCommunauty=Общност (безплатно)
|
TypeSupportCommunauty=Общност (безплатно)
|
||||||
TypeSupportCommercial=Търговски
|
TypeSupportCommercial=Търговски
|
||||||
TypeOfHelp=Тип
|
TypeOfHelp=Тип
|
||||||
NeedHelpCenter=Нуждаете се от помощ или поддръжка?
|
NeedHelpCenter=Need help or support?
|
||||||
Efficiency=Ефективност
|
Efficiency=Ефективност
|
||||||
TypeHelpOnly=Само помощ
|
TypeHelpOnly=Само помощ
|
||||||
TypeHelpDev=Помощ + развитие
|
TypeHelpDev=Помощ + развитие
|
||||||
|
|||||||
@ -5,7 +5,7 @@ Establishments=Обекти
|
|||||||
Establishment=Обект
|
Establishment=Обект
|
||||||
NewEstablishment=Нов обект
|
NewEstablishment=Нов обект
|
||||||
DeleteEstablishment=Изтриване на обект
|
DeleteEstablishment=Изтриване на обект
|
||||||
ConfirmDeleteEstablishment=Сигурни ли сте, че искате да изтриете този обект?
|
ConfirmDeleteEstablishment=Are-you sure to delete this establishment?
|
||||||
OpenEtablishment=Отвори обект
|
OpenEtablishment=Отвори обект
|
||||||
CloseEtablishment=Затвори обект
|
CloseEtablishment=Затвори обект
|
||||||
# Dictionary
|
# Dictionary
|
||||||
|
|||||||
@ -62,7 +62,6 @@ KeepEmptyIfNoPassword=Оставете празно, ако потребител
|
|||||||
SaveConfigurationFile=Регистрация на конфигурационния файл
|
SaveConfigurationFile=Регистрация на конфигурационния файл
|
||||||
ServerConnection=Свързване със сървъра
|
ServerConnection=Свързване със сървъра
|
||||||
DatabaseCreation=Създаване на база данни
|
DatabaseCreation=Създаване на база данни
|
||||||
UserCreation=Създаване на потребител
|
|
||||||
CreateDatabaseObjects=Създаване на обекти в базата данни
|
CreateDatabaseObjects=Създаване на обекти в базата данни
|
||||||
ReferenceDataLoading=Зареждане на референтни данни
|
ReferenceDataLoading=Зареждане на референтни данни
|
||||||
TablesAndPrimaryKeysCreation=Създаване на таблици и първични ключове
|
TablesAndPrimaryKeysCreation=Създаване на таблици и първични ключове
|
||||||
@ -133,12 +132,12 @@ MigrationFinished=Миграцията завърши
|
|||||||
LastStepDesc=<strong>Последна стъпка</strong>: Определете тук потребителско име и парола, които планирате да използвате, за да се свързвате със софтуера. Не ги губете, тъй като това е профил за администриране на всички останали.
|
LastStepDesc=<strong>Последна стъпка</strong>: Определете тук потребителско име и парола, които планирате да използвате, за да се свързвате със софтуера. Не ги губете, тъй като това е профил за администриране на всички останали.
|
||||||
ActivateModule=Активиране на модул %s
|
ActivateModule=Активиране на модул %s
|
||||||
ShowEditTechnicalParameters=Натиснете тук за да покажете/редактирате параметрите за напреднали (експертен режим)
|
ShowEditTechnicalParameters=Натиснете тук за да покажете/редактирате параметрите за напреднали (експертен режим)
|
||||||
WarningUpgrade=Внимание:\nНаправихте ли резервно копие на базата данни първо?\nТова е силно препоръчително: например, поради някой бъгове в системите на базата данни (например mysql версия 5.5.40/41/42/43), част от информацията или таблиците може да бъдат изгубени по-време на този процес, за това е много препоръчително да имате пълен dump на вашата база данни преди започването на миграцията.\n\nКликнете OK за започване на миграционния процес...
|
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=Вашата база данни е с версия %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.
|
KeepDefaultValuesWamp=Вие използвате помощника за настройка на Dolibarr от DoliWamp, така че стойностите, предложени тук вече са оптимизирани. Променете ги само ако знаете какво правите.
|
||||||
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.
|
KeepDefaultValuesDeb=Вие използвате помощника за настройка на Dolibarr от пакет за Linux (Ubuntu, Debian, Fedora ...), така че стойностите, предложени тук вече са оптимизирани. Само създаването на парола на собственика на базата данни трябва да бъде завършена. Променяйте други параметри, само ако знаете какво правите.
|
||||||
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.
|
KeepDefaultValuesMamp=Вие използвате помощника за настройка на Dolibarr от DoliMamp, така че стойностите, предложени тук вече са оптимизирани. Променете ги само ако знаете какво правите.
|
||||||
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.
|
KeepDefaultValuesProxmox=Вие използвате помощника за настройка на Dolibarr от Proxmox виртуална машина, така че стойностите, предложени тук вече са оптимизирани. Променете ги само ако знаете какво правите.
|
||||||
|
|
||||||
#########
|
#########
|
||||||
# upgrade
|
# upgrade
|
||||||
@ -176,7 +175,7 @@ MigrationReopeningContracts=Отворен договор затворен по
|
|||||||
MigrationReopenThisContract=Ново отваряне на договор %s
|
MigrationReopenThisContract=Ново отваряне на договор %s
|
||||||
MigrationReopenedContractsNumber=%s договори са променени
|
MigrationReopenedContractsNumber=%s договори са променени
|
||||||
MigrationReopeningContractsNothingToUpdate=Няма затворен договор за отваряне
|
MigrationReopeningContractsNothingToUpdate=Няма затворен договор за отваряне
|
||||||
MigrationBankTransfertsUpdate=Актуализиране на връзките между банкова транзакция и банков превод
|
MigrationBankTransfertsUpdate=Update links between bank entry and a bank transfer
|
||||||
MigrationBankTransfertsNothingToUpdate=Всички връзки са актуални
|
MigrationBankTransfertsNothingToUpdate=Всички връзки са актуални
|
||||||
MigrationShipmentOrderMatching=Актуализация на експедиционни бележки
|
MigrationShipmentOrderMatching=Актуализация на експедиционни бележки
|
||||||
MigrationDeliveryOrderMatching=Актуализация на обратни разписки
|
MigrationDeliveryOrderMatching=Актуализация на обратни разписки
|
||||||
|
|||||||
@ -15,17 +15,18 @@ ValidateIntervention=Проверка на интервенция
|
|||||||
ModifyIntervention=Промяна на интервенция
|
ModifyIntervention=Промяна на интервенция
|
||||||
DeleteInterventionLine=Изтрий ред намеса
|
DeleteInterventionLine=Изтрий ред намеса
|
||||||
CloneIntervention=Clone intervention
|
CloneIntervention=Clone intervention
|
||||||
ConfirmDeleteIntervention=Сигурен ли сте, че искате да изтриете тази интервенция?
|
ConfirmDeleteIntervention=Are you sure you want to delete this intervention?
|
||||||
ConfirmValidateIntervention=Сигурен ли сте, че искате да проверите тази интервенция?
|
ConfirmValidateIntervention=Are you sure you want to validate this intervention under name <b>%s</b>?
|
||||||
ConfirmModifyIntervention=Сигурен ли сте, че искате да промените тази интервенция?
|
ConfirmModifyIntervention=Are you sure you want to modify this intervention?
|
||||||
ConfirmDeleteInterventionLine=Сигурен ли сте, че искате да изтриете тази линия намеса?
|
ConfirmDeleteInterventionLine=Are you sure you want to delete this intervention line?
|
||||||
ConfirmCloneIntervention=Are you sure you want to clone this intervention ?
|
ConfirmCloneIntervention=Are you sure you want to clone this intervention?
|
||||||
NameAndSignatureOfInternalContact=Име и подпис на намеса:
|
NameAndSignatureOfInternalContact=Име и подпис на намеса:
|
||||||
NameAndSignatureOfExternalContact=Име и подпис на клиента:
|
NameAndSignatureOfExternalContact=Име и подпис на клиента:
|
||||||
DocumentModelStandard=Стандартен документ модел за интервенции
|
DocumentModelStandard=Стандартен документ модел за интервенции
|
||||||
InterventionCardsAndInterventionLines=Interventions and lines of interventions
|
InterventionCardsAndInterventionLines=Interventions and lines of interventions
|
||||||
InterventionClassifyBilled=Класифицирай като "Таксувани"
|
InterventionClassifyBilled=Класифицирай като "Таксувани"
|
||||||
InterventionClassifyUnBilled=Класифицирай като "Нетаксувани"
|
InterventionClassifyUnBilled=Класифицирай като "Нетаксувани"
|
||||||
|
InterventionClassifyDone=Classify "Done"
|
||||||
StatusInterInvoiced=Таксува
|
StatusInterInvoiced=Таксува
|
||||||
ShowIntervention=Покажи намеса
|
ShowIntervention=Покажи намеса
|
||||||
SendInterventionRef=Подаване на намеса %s
|
SendInterventionRef=Подаване на намеса %s
|
||||||
|
|||||||
@ -1,9 +1,10 @@
|
|||||||
LinkANewFile=Link a new file/document
|
# Dolibarr language file - Source file is en_US - languages
|
||||||
|
LinkANewFile=Свържи нов файл/документ
|
||||||
LinkedFiles=Свързани файлове и документи
|
LinkedFiles=Свързани файлове и документи
|
||||||
NoLinkFound=No registered links
|
NoLinkFound=Няма регистрирани връзки
|
||||||
LinkComplete=Файлът е свързан успешно
|
LinkComplete=Файлът е свързан успешно
|
||||||
ErrorFileNotLinked=The file could not be linked
|
ErrorFileNotLinked=Файлът не може да бъде свързан
|
||||||
LinkRemoved=The link %s has been removed
|
LinkRemoved=Връзка %s е премахната
|
||||||
ErrorFailedToDeleteLink= Failed to remove link '<b>%s</b>'
|
ErrorFailedToDeleteLink= Неуспех при премахване на връзка '<b>%s</b>'
|
||||||
ErrorFailedToUpdateLink= Failed to update link '<b>%s</b>'
|
ErrorFailedToUpdateLink= Неуспех при промяна на връзка '<b>%s</b>'
|
||||||
URLToLink=URL to link
|
URLToLink=URL за връзка
|
||||||
|
|||||||
@ -4,14 +4,15 @@ Loans=Заеми
|
|||||||
NewLoan=Нов Заем
|
NewLoan=Нов Заем
|
||||||
ShowLoan=Показване на Заем
|
ShowLoan=Показване на Заем
|
||||||
PaymentLoan=Плащане на Заем
|
PaymentLoan=Плащане на Заем
|
||||||
|
LoanPayment=Плащане на Заем
|
||||||
ShowLoanPayment=Показване на плащането на Заем
|
ShowLoanPayment=Показване на плащането на Заем
|
||||||
LoanCapital=Capital
|
LoanCapital=Капитал
|
||||||
Insurance=Застраховка
|
Insurance=Застраховка
|
||||||
Interest=Лихва
|
Interest=Лихва
|
||||||
Nbterms=Number of terms
|
Nbterms=Number of terms
|
||||||
LoanAccountancyCapitalCode=Accountancy code capital
|
LoanAccountancyCapitalCode=Accounting account capital
|
||||||
LoanAccountancyInsuranceCode=Accountancy code insurance
|
LoanAccountancyInsuranceCode=Accounting account insurance
|
||||||
LoanAccountancyInterestCode=Accountancy code interest
|
LoanAccountancyInterestCode=Accounting account interest
|
||||||
ConfirmDeleteLoan=Потвърдете изтриването на този заем
|
ConfirmDeleteLoan=Потвърдете изтриването на този заем
|
||||||
LoanDeleted=Заемът е изтрит успешно
|
LoanDeleted=Заемът е изтрит успешно
|
||||||
ConfirmPayLoan=Confirm classify paid this loan
|
ConfirmPayLoan=Confirm classify paid this loan
|
||||||
@ -44,6 +45,6 @@ GoToPrincipal=%s ще върви към ГЛАВНИЦАТА
|
|||||||
YouWillSpend=You will spend %s in year %s
|
YouWillSpend=You will spend %s in year %s
|
||||||
# Admin
|
# Admin
|
||||||
ConfigLoan=Конфигурация на модула заем
|
ConfigLoan=Конфигурация на модула заем
|
||||||
LOAN_ACCOUNTING_ACCOUNT_CAPITAL=Accountancy code capital by default
|
LOAN_ACCOUNTING_ACCOUNT_CAPITAL=Accounting account capital by default
|
||||||
LOAN_ACCOUNTING_ACCOUNT_INTEREST=Accountancy code interest by default
|
LOAN_ACCOUNTING_ACCOUNT_INTEREST=Accounting account interest by default
|
||||||
LOAN_ACCOUNTING_ACCOUNT_INSURANCE=Accountancy code insurance by default
|
LOAN_ACCOUNTING_ACCOUNT_INSURANCE=Accounting account insurance by default
|
||||||
|
|||||||
@ -42,22 +42,21 @@ MailingStatusNotContact=Не се свържете с повече
|
|||||||
MailingStatusReadAndUnsubscribe=Read and unsubscribe
|
MailingStatusReadAndUnsubscribe=Read and unsubscribe
|
||||||
ErrorMailRecipientIsEmpty=Email получателят е празна
|
ErrorMailRecipientIsEmpty=Email получателят е празна
|
||||||
WarningNoEMailsAdded=Няма нови имейл, за да добавите към списъка на получателя.
|
WarningNoEMailsAdded=Няма нови имейл, за да добавите към списъка на получателя.
|
||||||
ConfirmValidMailing=Сигурен ли сте, че искате да проверите това електронната поща?
|
ConfirmValidMailing=Are you sure you want to validate this emailing?
|
||||||
ConfirmResetMailing=Внимание, reinitializing пращане <b>%s,</b> позволяват да се направи масово изпращане на този имейл друг път. Сигурен ли си, че ти това е, което искате да направите?
|
ConfirmResetMailing=Warning, by reinitializing emailing <b>%s</b>, you allow to make a mass sending of this email another time. Are you sure you this is what you want to do?
|
||||||
ConfirmDeleteMailing=Сигурен ли сте, че искате да изтриете тази emailling?
|
ConfirmDeleteMailing=Are you sure you want to delete this emailling?
|
||||||
NbOfUniqueEMails=Nb уникални имейли
|
NbOfUniqueEMails=Nb уникални имейли
|
||||||
NbOfEMails=Nb имейли
|
NbOfEMails=Nb имейли
|
||||||
TotalNbOfDistinctRecipients=Брой на отделни получатели
|
TotalNbOfDistinctRecipients=Брой на отделни получатели
|
||||||
NoTargetYet=Не са определени получатели (Отидете на "Ползвателят ')
|
NoTargetYet=Не са определени получатели (Отидете на "Ползвателят ')
|
||||||
RemoveRecipient=Махни получателя
|
RemoveRecipient=Махни получателя
|
||||||
CommonSubstitutions=Общи замествания
|
|
||||||
YouCanAddYourOwnPredefindedListHere=За да създадете имейл селектор модул, вижте htdocs / ядро / модули / съобщения / README.
|
YouCanAddYourOwnPredefindedListHere=За да създадете имейл селектор модул, вижте htdocs / ядро / модули / съобщения / README.
|
||||||
EMailTestSubstitutionReplacedByGenericValues=При използване на тестов режим, замествания променливи се заменят с общи ценности
|
EMailTestSubstitutionReplacedByGenericValues=При използване на тестов режим, замествания променливи се заменят с общи ценности
|
||||||
MailingAddFile=Прикачете този файл
|
MailingAddFile=Прикачете този файл
|
||||||
NoAttachedFiles=Няма прикачени файлове
|
NoAttachedFiles=Няма прикачени файлове
|
||||||
BadEMail=Неправилна стойност за електронна поща
|
BadEMail=Неправилна стойност за електронна поща
|
||||||
CloneEMailing=Clone електронната поща
|
CloneEMailing=Clone електронната поща
|
||||||
ConfirmCloneEMailing=Сигурен ли сте, че искате да клонирате този електронната поща?
|
ConfirmCloneEMailing=Are you sure you want to clone this emailing?
|
||||||
CloneContent=Clone съобщение
|
CloneContent=Clone съобщение
|
||||||
CloneReceivers=Cloner получателите
|
CloneReceivers=Cloner получателите
|
||||||
DateLastSend=Date of latest sending
|
DateLastSend=Date of latest sending
|
||||||
@ -90,7 +89,7 @@ SendMailing=Изпращане на имейл
|
|||||||
SendMail=Изпращане на имейл
|
SendMail=Изпращане на имейл
|
||||||
MailingNeedCommand=Поради причини свързани със сигурността, изпращането на електронна поща е по-добро, когато е извършено от командния ред. Ако имате такъв, помолете вашия сървърен администратор да зареди следната команда за изпращане на електронната поща до всички получатели:
|
MailingNeedCommand=Поради причини свързани със сигурността, изпращането на електронна поща е по-добро, когато е извършено от командния ред. Ако имате такъв, помолете вашия сървърен администратор да зареди следната команда за изпращане на електронната поща до всички получатели:
|
||||||
MailingNeedCommand2=Все пак можете да ги изпратите онлайн чрез добавяне на параметър MAILING_LIMIT_SENDBYWEB със стойност на максимален брой на имейлите, които искате да изпратите от сесията. За това, отидете на дома - Setup - Други.
|
MailingNeedCommand2=Все пак можете да ги изпратите онлайн чрез добавяне на параметър MAILING_LIMIT_SENDBYWEB със стойност на максимален брой на имейлите, които искате да изпратите от сесията. За това, отидете на дома - Setup - Други.
|
||||||
ConfirmSendingEmailing=Ако не можете или предпочитате изпращането им с вашия www браузер, моля потвърдете, че със сигурност искате да изпратите електронна поща сега от вашия браузер ?
|
ConfirmSendingEmailing=If you can't or prefer sending them with your www browser, please confirm you are sure you want to send emailing now from your browser?
|
||||||
LimitSendingEmailing=Забележка: Изпращането на електронна поща от уеб интерфейса е извършено на няколко пъти поради таймаутове и причини свързани със сигурността, <b>%s</b> получатели на веднъж за всяка сесия.
|
LimitSendingEmailing=Забележка: Изпращането на електронна поща от уеб интерфейса е извършено на няколко пъти поради таймаутове и причини свързани със сигурността, <b>%s</b> получатели на веднъж за всяка сесия.
|
||||||
TargetsReset=Изчисти списъка
|
TargetsReset=Изчисти списъка
|
||||||
ToClearAllRecipientsClickHere=Щракнете тук, за да изчистите списъка на получателите за този електронната поща
|
ToClearAllRecipientsClickHere=Щракнете тук, за да изчистите списъка на получателите за този електронната поща
|
||||||
@ -98,12 +97,12 @@ ToAddRecipientsChooseHere=Добавяне на получатели, като
|
|||||||
NbOfEMailingsReceived=Масови emailings
|
NbOfEMailingsReceived=Масови emailings
|
||||||
NbOfEMailingsSend=Масовите имейли са изпратени
|
NbOfEMailingsSend=Масовите имейли са изпратени
|
||||||
IdRecord=ID рекорд
|
IdRecord=ID рекорд
|
||||||
DeliveryReceipt=Обратна разписка
|
DeliveryReceipt=Delivery Ack.
|
||||||
YouCanUseCommaSeparatorForSeveralRecipients=Можете да използвате разделител <b>запетая</b> за да зададете няколко получатели.
|
YouCanUseCommaSeparatorForSeveralRecipients=Можете да използвате разделител <b>запетая</b> за да зададете няколко получатели.
|
||||||
TagCheckMail=Tracker поща отвори
|
TagCheckMail=Tracker поща отвори
|
||||||
TagUnsubscribe=Отписване връзка
|
TagUnsubscribe=Отписване връзка
|
||||||
TagSignature=Подпис изпращане на потребителя
|
TagSignature=Подпис изпращане на потребителя
|
||||||
EMailRecipient=Recipient EMail
|
EMailRecipient=E-mail на получателя
|
||||||
TagMailtoEmail=Recipient EMail (including html "mailto:" link)
|
TagMailtoEmail=Recipient EMail (including html "mailto:" link)
|
||||||
NoEmailSentBadSenderOrRecipientEmail=Няма изпратен имейл. Неправилен подател или получател на имейла. Проверете потребителския профил.
|
NoEmailSentBadSenderOrRecipientEmail=Няма изпратен имейл. Неправилен подател или получател на имейла. Проверете потребителския профил.
|
||||||
# Module Notifications
|
# Module Notifications
|
||||||
@ -119,6 +118,8 @@ MailSendSetupIs2=Трябва първо да отидете, с админис
|
|||||||
MailSendSetupIs3=Ако имате някакви въпроси относно настройката на вашия SMTP сървър, можете да ги зададете на %s.
|
MailSendSetupIs3=Ако имате някакви въпроси относно настройката на вашия SMTP сървър, можете да ги зададете на %s.
|
||||||
YouCanAlsoUseSupervisorKeyword=Можете също да добавите ключовата дума <strong>__SUPERVISOREMAIL__</strong>, за да бъде изпратен имейл до надзирателя на потребител (работи само ако имейл е определен за този надзирател)
|
YouCanAlsoUseSupervisorKeyword=Можете също да добавите ключовата дума <strong>__SUPERVISOREMAIL__</strong>, за да бъде изпратен имейл до надзирателя на потребител (работи само ако имейл е определен за този надзирател)
|
||||||
NbOfTargetedContacts=Current number of targeted contact emails
|
NbOfTargetedContacts=Current number of targeted contact emails
|
||||||
|
UseFormatFileEmailToTarget=Imported file must have format <strong>email;name;firstname;other</strong>
|
||||||
|
UseFormatInputEmailToTarget=Enter a string with format <strong>email;name;firstname;other</strong>
|
||||||
MailAdvTargetRecipients=Recipients (advanced selection)
|
MailAdvTargetRecipients=Recipients (advanced selection)
|
||||||
AdvTgtTitle=Fill input fields to preselect the thirdparties or contacts/addresses to target
|
AdvTgtTitle=Fill input fields to preselect the thirdparties or contacts/addresses to target
|
||||||
AdvTgtSearchTextHelp=Use %% as magic caracters. For exemple to find all item like <b>jean, joe, jim</b>, you can input <b>j%%</b>, you can also use ; as separator for value, and use ! for except this value. For exemple <b>jean;joe;jim%%;!jimo;!jima%</b> will target all jean, joe, start with jim but not jimo and not everythnig taht start by jima
|
AdvTgtSearchTextHelp=Use %% as magic caracters. For exemple to find all item like <b>jean, joe, jim</b>, you can input <b>j%%</b>, you can also use ; as separator for value, and use ! for except this value. For exemple <b>jean;joe;jim%%;!jimo;!jima%</b> will target all jean, joe, start with jim but not jimo and not everythnig taht start by jima
|
||||||
|
|||||||
@ -28,6 +28,7 @@ NoTemplateDefined=No template defined for this email type
|
|||||||
AvailableVariables=Available substitution variables
|
AvailableVariables=Available substitution variables
|
||||||
NoTranslation=Няма превод
|
NoTranslation=Няма превод
|
||||||
NoRecordFound=Няма открити записи
|
NoRecordFound=Няма открити записи
|
||||||
|
NoRecordDeleted=No record deleted
|
||||||
NotEnoughDataYet=Not enough data
|
NotEnoughDataYet=Not enough data
|
||||||
NoError=Няма грешка
|
NoError=Няма грешка
|
||||||
Error=Грешка
|
Error=Грешка
|
||||||
@ -61,6 +62,7 @@ ErrorCantLoadUserFromDolibarrDatabase=Не е открит потребител
|
|||||||
ErrorNoVATRateDefinedForSellerCountry=Грешка, за държавата '%s' няма дефинирани ДДС ставки.
|
ErrorNoVATRateDefinedForSellerCountry=Грешка, за държавата '%s' няма дефинирани ДДС ставки.
|
||||||
ErrorNoSocialContributionForSellerCountry=Грешка, за държава '%s' няма дефинирани ставки за социални осигуровки.
|
ErrorNoSocialContributionForSellerCountry=Грешка, за държава '%s' няма дефинирани ставки за социални осигуровки.
|
||||||
ErrorFailedToSaveFile=Грешка, неуспешно записване на файл.
|
ErrorFailedToSaveFile=Грешка, неуспешно записване на файл.
|
||||||
|
ErrorCannotAddThisParentWarehouse=You are trying to add a parent warehouse which is already a child of current one
|
||||||
NotAuthorized=Не сте упълномощен да правите това.
|
NotAuthorized=Не сте упълномощен да правите това.
|
||||||
SetDate=Настройка на дата
|
SetDate=Настройка на дата
|
||||||
SelectDate=Изберете дата
|
SelectDate=Изберете дата
|
||||||
@ -69,6 +71,7 @@ SeeHere=Вижте тук
|
|||||||
BackgroundColorByDefault=Стандартен цвят на фона
|
BackgroundColorByDefault=Стандартен цвят на фона
|
||||||
FileRenamed=The file was successfully renamed
|
FileRenamed=The file was successfully renamed
|
||||||
FileUploaded=Файлът е качен успешно
|
FileUploaded=Файлът е качен успешно
|
||||||
|
FileGenerated=The file was successfully generated
|
||||||
FileWasNotUploaded=Файлът е избран за прикачване, но все още не е качен. Кликнете върху "Прикачи файл".
|
FileWasNotUploaded=Файлът е избран за прикачване, но все още не е качен. Кликнете върху "Прикачи файл".
|
||||||
NbOfEntries=Брой записи
|
NbOfEntries=Брой записи
|
||||||
GoToWikiHelpPage=Read online help (Internet access needed)
|
GoToWikiHelpPage=Read online help (Internet access needed)
|
||||||
@ -77,10 +80,10 @@ RecordSaved=Записът е съхранен
|
|||||||
RecordDeleted=Записът е изтрит
|
RecordDeleted=Записът е изтрит
|
||||||
LevelOfFeature=Ниво на функции
|
LevelOfFeature=Ниво на функции
|
||||||
NotDefined=Не е определено
|
NotDefined=Не е определено
|
||||||
DolibarrInHttpAuthenticationSoPasswordUseless=Режима за удостоверяване dolibarr е настроен на <b>%s</b> в конфигурационния файл <b>conf.php.</b> <br> Това означава, че паролата за базата данни е външна за Dolibarr, така че промяната на тази област може да няма последствия.
|
DolibarrInHttpAuthenticationSoPasswordUseless=Dolibarr authentication mode is set to <b>%s</b> in configuration file <b>conf.php</b>.<br>This means that the password database is external to Dolibarr, so changing this field may have no effect.
|
||||||
Administrator=Администратор
|
Administrator=Администратор
|
||||||
Undefined=Неопределен
|
Undefined=Неопределен
|
||||||
PasswordForgotten=Забравена парола?
|
PasswordForgotten=Password forgotten?
|
||||||
SeeAbove=Виж по-горе
|
SeeAbove=Виж по-горе
|
||||||
HomeArea=Начало
|
HomeArea=Начало
|
||||||
LastConnexion=Последно свързване
|
LastConnexion=Последно свързване
|
||||||
@ -88,14 +91,14 @@ PreviousConnexion=Предишно свързване
|
|||||||
PreviousValue=Previous value
|
PreviousValue=Previous value
|
||||||
ConnectedOnMultiCompany=Свързан към обекта
|
ConnectedOnMultiCompany=Свързан към обекта
|
||||||
ConnectedSince=Свързан от
|
ConnectedSince=Свързан от
|
||||||
AuthenticationMode=Режим на удостоверяване
|
AuthenticationMode=Authentication mode
|
||||||
RequestedUrl=Заявеният Url
|
RequestedUrl=Requested URL
|
||||||
DatabaseTypeManager=Управление на видовете бази данни
|
DatabaseTypeManager=Управление на видовете бази данни
|
||||||
RequestLastAccessInError=Latest database access request error
|
RequestLastAccessInError=Latest database access request error
|
||||||
ReturnCodeLastAccessInError=Return code for latest database access request error
|
ReturnCodeLastAccessInError=Return code for latest database access request error
|
||||||
InformationLastAccessInError=Information for latest database access request error
|
InformationLastAccessInError=Information for latest database access request error
|
||||||
DolibarrHasDetectedError=Dolibarr засече техническа грешка
|
DolibarrHasDetectedError=Dolibarr засече техническа грешка
|
||||||
InformationToHelpDiagnose=This information can be useful for diagnostic
|
InformationToHelpDiagnose=This information can be useful for diagnostic purposes
|
||||||
MoreInformation=Още информация
|
MoreInformation=Още информация
|
||||||
TechnicalInformation=Техническа информация
|
TechnicalInformation=Техническа информация
|
||||||
TechnicalID=Техническо ID
|
TechnicalID=Техническо ID
|
||||||
@ -125,6 +128,7 @@ Activate=Активирай
|
|||||||
Activated=Активирано
|
Activated=Активирано
|
||||||
Closed=Затворен
|
Closed=Затворен
|
||||||
Closed2=Затворен
|
Closed2=Затворен
|
||||||
|
NotClosed=Not closed
|
||||||
Enabled=Включено
|
Enabled=Включено
|
||||||
Deprecated=Остаряло
|
Deprecated=Остаряло
|
||||||
Disable=Изключи
|
Disable=Изключи
|
||||||
@ -137,10 +141,10 @@ Update=Актуализирай
|
|||||||
Close=Затвари
|
Close=Затвари
|
||||||
CloseBox=Remove widget from your dashboard
|
CloseBox=Remove widget from your dashboard
|
||||||
Confirm=Потвърди
|
Confirm=Потвърди
|
||||||
ConfirmSendCardByMail=Наистина ли желаете да изпратите съдържанието на тази карта по имейл до <b>%s?</b>
|
ConfirmSendCardByMail=Do you really want to send content of this card by mail to <b>%s</b>?
|
||||||
Delete=Изтриване
|
Delete=Изтриване
|
||||||
Remove=Премахване
|
Remove=Премахване
|
||||||
Resiliate=Прекрати
|
Resiliate=Terminate
|
||||||
Cancel=Отказ
|
Cancel=Отказ
|
||||||
Modify=Промени
|
Modify=Промени
|
||||||
Edit=Редактиране
|
Edit=Редактиране
|
||||||
@ -158,6 +162,7 @@ Go=Давай
|
|||||||
Run=Изпълни
|
Run=Изпълни
|
||||||
CopyOf=Копие на
|
CopyOf=Копие на
|
||||||
Show=Покажи
|
Show=Покажи
|
||||||
|
Hide=Hide
|
||||||
ShowCardHere=Покажи картата
|
ShowCardHere=Покажи картата
|
||||||
Search=Търсене
|
Search=Търсене
|
||||||
SearchOf=Търсене
|
SearchOf=Търсене
|
||||||
@ -179,7 +184,7 @@ Groups=Групи
|
|||||||
NoUserGroupDefined=Няма дефинирана потребителска група
|
NoUserGroupDefined=Няма дефинирана потребителска група
|
||||||
Password=Парола
|
Password=Парола
|
||||||
PasswordRetype=Повторете паролата
|
PasswordRetype=Повторете паролата
|
||||||
NoteSomeFeaturesAreDisabled=Note that a lot of features/modules are disabled in this demonstration.
|
NoteSomeFeaturesAreDisabled=Обърнете внимание, че много функции/модули са изключени при тази демонстрация.
|
||||||
Name=Име
|
Name=Име
|
||||||
Person=Лице
|
Person=Лице
|
||||||
Parameter=Параметър
|
Parameter=Параметър
|
||||||
@ -200,8 +205,8 @@ Info=История
|
|||||||
Family=Семейство
|
Family=Семейство
|
||||||
Description=Описание
|
Description=Описание
|
||||||
Designation=Описание
|
Designation=Описание
|
||||||
Model=Модел
|
Model=Doc template
|
||||||
DefaultModel=Стандартен модел
|
DefaultModel=Default doc template
|
||||||
Action=Събитие
|
Action=Събитие
|
||||||
About=За системата
|
About=За системата
|
||||||
Number=Брой
|
Number=Брой
|
||||||
@ -225,8 +230,8 @@ Date=Дата
|
|||||||
DateAndHour=Дата и час
|
DateAndHour=Дата и час
|
||||||
DateToday=Today's date
|
DateToday=Today's date
|
||||||
DateReference=Reference date
|
DateReference=Reference date
|
||||||
DateStart=Start date
|
DateStart=Начална дата
|
||||||
DateEnd=End date
|
DateEnd=Крайна дата
|
||||||
DateCreation=Дата на създаване
|
DateCreation=Дата на създаване
|
||||||
DateCreationShort=Дата създ.
|
DateCreationShort=Дата създ.
|
||||||
DateModification=Дата на промяна
|
DateModification=Дата на промяна
|
||||||
@ -261,7 +266,7 @@ DurationDays=дни
|
|||||||
Year=Година
|
Year=Година
|
||||||
Month=Месец
|
Month=Месец
|
||||||
Week=Седмица
|
Week=Седмица
|
||||||
WeekShort=Week
|
WeekShort=Седмица
|
||||||
Day=Ден
|
Day=Ден
|
||||||
Hour=Час
|
Hour=Час
|
||||||
Minute=Минута
|
Minute=Минута
|
||||||
@ -317,6 +322,9 @@ AmountTTCShort=Сума (с данък)
|
|||||||
AmountHT=Сума (без данък)
|
AmountHT=Сума (без данък)
|
||||||
AmountTTC=Сума (с данък)
|
AmountTTC=Сума (с данък)
|
||||||
AmountVAT=Сума на данък
|
AmountVAT=Сума на данък
|
||||||
|
MulticurrencyAlreadyPaid=Already payed, original currency
|
||||||
|
MulticurrencyRemainderToPay=Remain to pay, original currency
|
||||||
|
MulticurrencyPaymentAmount=Payment amount, original currency
|
||||||
MulticurrencyAmountHT=Amount (net of tax), original currency
|
MulticurrencyAmountHT=Amount (net of tax), original currency
|
||||||
MulticurrencyAmountTTC=Amount (inc. of tax), original currency
|
MulticurrencyAmountTTC=Amount (inc. of tax), original currency
|
||||||
MulticurrencyAmountVAT=Amount tax, original currency
|
MulticurrencyAmountVAT=Amount tax, original currency
|
||||||
@ -374,7 +382,7 @@ ActionsToDoShort=Да се направи
|
|||||||
ActionsDoneShort=Завършени
|
ActionsDoneShort=Завършени
|
||||||
ActionNotApplicable=Не се прилага
|
ActionNotApplicable=Не се прилага
|
||||||
ActionRunningNotStarted=За започване
|
ActionRunningNotStarted=За започване
|
||||||
ActionRunningShort=Започнато
|
ActionRunningShort=In progress
|
||||||
ActionDoneShort=Завършено
|
ActionDoneShort=Завършено
|
||||||
ActionUncomplete=Незавършено
|
ActionUncomplete=Незавършено
|
||||||
CompanyFoundation=Фирма/Организация
|
CompanyFoundation=Фирма/Организация
|
||||||
@ -448,8 +456,8 @@ LateDesc=Delay to define if a record is late or not depends on your setup. Ask y
|
|||||||
Photo=Снимка
|
Photo=Снимка
|
||||||
Photos=Снимки
|
Photos=Снимки
|
||||||
AddPhoto=Добавяне на снимка
|
AddPhoto=Добавяне на снимка
|
||||||
DeletePicture=Picture delete
|
DeletePicture=Изтрий снимка
|
||||||
ConfirmDeletePicture=Confirm picture deletion?
|
ConfirmDeletePicture=Потвърди изтриване на снимка?
|
||||||
Login=Потребител
|
Login=Потребител
|
||||||
CurrentLogin=Текущ потребител
|
CurrentLogin=Текущ потребител
|
||||||
January=Януари
|
January=Януари
|
||||||
@ -510,6 +518,7 @@ ReportPeriod=Период на справката
|
|||||||
ReportDescription=Описание
|
ReportDescription=Описание
|
||||||
Report=Справка
|
Report=Справка
|
||||||
Keyword=Keyword
|
Keyword=Keyword
|
||||||
|
Origin=Origin
|
||||||
Legend=Легенда
|
Legend=Легенда
|
||||||
Fill=Попълни
|
Fill=Попълни
|
||||||
Reset=Нулирай
|
Reset=Нулирай
|
||||||
@ -564,6 +573,7 @@ TextUsedInTheMessageBody=Текст на имейла
|
|||||||
SendAcknowledgementByMail=Send confirmation email
|
SendAcknowledgementByMail=Send confirmation email
|
||||||
EMail=Имейл
|
EMail=Имейл
|
||||||
NoEMail=Няма имейл
|
NoEMail=Няма имейл
|
||||||
|
Email=Имейл
|
||||||
NoMobilePhone=Няма мобилен телефон
|
NoMobilePhone=Няма мобилен телефон
|
||||||
Owner=Собственик
|
Owner=Собственик
|
||||||
FollowingConstantsWillBeSubstituted=Следните константи ще бъдат заменени със съответната стойност.
|
FollowingConstantsWillBeSubstituted=Следните константи ще бъдат заменени със съответната стойност.
|
||||||
@ -572,11 +582,12 @@ BackToList=Назад към списъка
|
|||||||
GoBack=Назад
|
GoBack=Назад
|
||||||
CanBeModifiedIfOk=Може да се променя ако е валидно
|
CanBeModifiedIfOk=Може да се променя ако е валидно
|
||||||
CanBeModifiedIfKo=Може да се променя ако е невалидно
|
CanBeModifiedIfKo=Може да се променя ако е невалидно
|
||||||
ValueIsValid=Value is valid
|
ValueIsValid=Стойността е валидна
|
||||||
ValueIsNotValid=Value is not valid
|
ValueIsNotValid=Value is not valid
|
||||||
|
RecordCreatedSuccessfully=Record created successfully
|
||||||
RecordModifiedSuccessfully=Записът е променен успешно
|
RecordModifiedSuccessfully=Записът е променен успешно
|
||||||
RecordsModified=Променени са %s записа
|
RecordsModified=%s record modified
|
||||||
RecordsDeleted=%s records deleted
|
RecordsDeleted=%s record deleted
|
||||||
AutomaticCode=Автоматичен код
|
AutomaticCode=Автоматичен код
|
||||||
FeatureDisabled=Функцията е изключена
|
FeatureDisabled=Функцията е изключена
|
||||||
MoveBox=Move widget
|
MoveBox=Move widget
|
||||||
@ -605,6 +616,9 @@ NoFileFound=Няма записани документи в тази дирек
|
|||||||
CurrentUserLanguage=Текущ език
|
CurrentUserLanguage=Текущ език
|
||||||
CurrentTheme=Текущата тема
|
CurrentTheme=Текущата тема
|
||||||
CurrentMenuManager=Текущ меню менажер
|
CurrentMenuManager=Текущ меню менажер
|
||||||
|
Browser=Browser
|
||||||
|
Layout=Layout
|
||||||
|
Screen=Screen
|
||||||
DisabledModules=Деактивирани модули
|
DisabledModules=Деактивирани модули
|
||||||
For=За
|
For=За
|
||||||
ForCustomer=За клиента
|
ForCustomer=За клиента
|
||||||
@ -627,7 +641,7 @@ PrintContentArea=Показване на страница за печат сам
|
|||||||
MenuManager=Меню менажер
|
MenuManager=Меню менажер
|
||||||
WarningYouAreInMaintenanceMode=Внимание, вие сте в режим на поддръжка, така че само вход <b>%s</b> се разрешава за използване приложение в момента.
|
WarningYouAreInMaintenanceMode=Внимание, вие сте в режим на поддръжка, така че само вход <b>%s</b> се разрешава за използване приложение в момента.
|
||||||
CoreErrorTitle=Системна грешка
|
CoreErrorTitle=Системна грешка
|
||||||
CoreErrorMessage=Съжаляваме, но е станала грешка. Проверте системните записи или се свържете с вашия системен администратор.
|
CoreErrorMessage=Sorry, an error occurred. Contact your system administrator to check the logs or disable $dolibarr_main_prod=1 to get more information.
|
||||||
CreditCard=Кредитна карта
|
CreditCard=Кредитна карта
|
||||||
FieldsWithAreMandatory=Полетата с <b>%s</b> са задължителни
|
FieldsWithAreMandatory=Полетата с <b>%s</b> са задължителни
|
||||||
FieldsWithIsForPublic=Полетата с <b>%s</b> се показват на публичен списък с членовете. Ако не искате това, отмаркирайте поле "публичен".
|
FieldsWithIsForPublic=Полетата с <b>%s</b> се показват на публичен списък с членовете. Ако не искате това, отмаркирайте поле "публичен".
|
||||||
@ -683,6 +697,7 @@ Test=Тест
|
|||||||
Element=Елемент
|
Element=Елемент
|
||||||
NoPhotoYet=Все още няма налични снимки
|
NoPhotoYet=Все още няма налични снимки
|
||||||
Dashboard=Dashboard
|
Dashboard=Dashboard
|
||||||
|
MyDashboard=My dashboard
|
||||||
Deductible=Удържаем
|
Deductible=Удържаем
|
||||||
from=от
|
from=от
|
||||||
toward=към
|
toward=към
|
||||||
@ -700,7 +715,7 @@ PublicUrl=Публичен URL
|
|||||||
AddBox=Добави поле
|
AddBox=Добави поле
|
||||||
SelectElementAndClickRefresh=Изберете елемент и натиснете Обнови
|
SelectElementAndClickRefresh=Изберете елемент и натиснете Обнови
|
||||||
PrintFile=Печат на файл %s
|
PrintFile=Печат на файл %s
|
||||||
ShowTransaction=Покажи транзакция на банкова сметка
|
ShowTransaction=Show entry on bank account
|
||||||
GoIntoSetupToChangeLogo=Отидете на Начало - Настройки - Фирма/Организация, за да промените логото или отидете на Начало - Настройки- Екран, за да го скриете.
|
GoIntoSetupToChangeLogo=Отидете на Начало - Настройки - Фирма/Организация, за да промените логото или отидете на Начало - Настройки- Екран, за да го скриете.
|
||||||
Deny=Забрани
|
Deny=Забрани
|
||||||
Denied=Забранено
|
Denied=Забранено
|
||||||
@ -713,18 +728,31 @@ Mandatory=Задължително
|
|||||||
Hello=Здравейте
|
Hello=Здравейте
|
||||||
Sincerely=Искрено
|
Sincerely=Искрено
|
||||||
DeleteLine=Изтриване на линия
|
DeleteLine=Изтриване на линия
|
||||||
ConfirmDeleteLine=Сигурни ли сте, че искате да изтриете тази линия ?
|
ConfirmDeleteLine=Are you sure you want to delete this line?
|
||||||
NoPDFAvailableForDocGenAmongChecked=No PDF were available for the document generation among checked records
|
NoPDFAvailableForDocGenAmongChecked=No PDF were available for the document generation among checked records
|
||||||
TooManyRecordForMassAction=Too many records selected for mass action. The action is restricted to a list of %s records.
|
TooManyRecordForMassAction=Too many record selected for mass action. The action is restricted to a list of %s records.
|
||||||
|
NoRecordSelected=No record selected
|
||||||
MassFilesArea=Area for files built by mass actions
|
MassFilesArea=Area for files built by mass actions
|
||||||
ShowTempMassFilesArea=Show area of files built by mass actions
|
ShowTempMassFilesArea=Show area of files built by mass actions
|
||||||
RelatedObjects=Related Objects
|
RelatedObjects=Related Objects
|
||||||
ClassifyBilled=Classify billed
|
ClassifyBilled=Класифицирай платени
|
||||||
Progress=Progress
|
Progress=Прогрес
|
||||||
ClickHere=Click here
|
ClickHere=Кликнете тук
|
||||||
FrontOffice=Front office
|
FrontOffice=Front office
|
||||||
BackOffice=Back office
|
BackOffice=Бек офис
|
||||||
View=View
|
View=View
|
||||||
|
Export=Export
|
||||||
|
Exports=Exports
|
||||||
|
ExportFilteredList=Export filtered list
|
||||||
|
ExportList=Export list
|
||||||
|
Miscellaneous=Разни
|
||||||
|
Calendar=Календар
|
||||||
|
GroupBy=Group by...
|
||||||
|
ViewFlatList=View flat list
|
||||||
|
RemoveString=Remove string '%s'
|
||||||
|
SomeTranslationAreUncomplete=Some languages may be partially translated or may contains errors. If you detect some, you can fix language files registering to <a href="https://transifex.com/projects/p/dolibarr/" target="_blank">http://transifex.com/projects/p/dolibarr/</a>.
|
||||||
|
DirectDownloadLink=Direct download link
|
||||||
|
Download=Download
|
||||||
# Week day
|
# Week day
|
||||||
Monday=Понеделник
|
Monday=Понеделник
|
||||||
Tuesday=Вторник
|
Tuesday=Вторник
|
||||||
@ -756,7 +784,7 @@ ShortSaturday=С
|
|||||||
ShortSunday=Н
|
ShortSunday=Н
|
||||||
SelectMailModel=Изберете шаблон за имейл
|
SelectMailModel=Изберете шаблон за имейл
|
||||||
SetRef=Задай код
|
SetRef=Задай код
|
||||||
Select2ResultFoundUseArrows=
|
Select2ResultFoundUseArrows=Some results found. Use arrows to select.
|
||||||
Select2NotFound=Няма намерени резултати
|
Select2NotFound=Няма намерени резултати
|
||||||
Select2Enter=Въвеждане
|
Select2Enter=Въвеждане
|
||||||
Select2MoreCharacter=or more character
|
Select2MoreCharacter=or more character
|
||||||
@ -769,7 +797,7 @@ SearchIntoMembers=Членове
|
|||||||
SearchIntoUsers=Потребители
|
SearchIntoUsers=Потребители
|
||||||
SearchIntoProductsOrServices=Продукти или услуги
|
SearchIntoProductsOrServices=Продукти или услуги
|
||||||
SearchIntoProjects=Проекти
|
SearchIntoProjects=Проекти
|
||||||
SearchIntoTasks=Tasks
|
SearchIntoTasks=Задачи
|
||||||
SearchIntoCustomerInvoices=Клиентски фактури
|
SearchIntoCustomerInvoices=Клиентски фактури
|
||||||
SearchIntoSupplierInvoices=Фактури доставчици
|
SearchIntoSupplierInvoices=Фактури доставчици
|
||||||
SearchIntoCustomerOrders=Клиентски поръчки
|
SearchIntoCustomerOrders=Клиентски поръчки
|
||||||
@ -780,4 +808,4 @@ SearchIntoInterventions=Намеси
|
|||||||
SearchIntoContracts=Договори
|
SearchIntoContracts=Договори
|
||||||
SearchIntoCustomerShipments=Customer shipments
|
SearchIntoCustomerShipments=Customer shipments
|
||||||
SearchIntoExpenseReports=Опис разходи
|
SearchIntoExpenseReports=Опис разходи
|
||||||
SearchIntoLeaves=Leaves
|
SearchIntoLeaves=Отпуски
|
||||||
|
|||||||
@ -13,7 +13,7 @@ ListOfValidatedPublicMembers=Списък на настоящите публич
|
|||||||
ErrorThisMemberIsNotPublic=Този член не е публичен
|
ErrorThisMemberIsNotPublic=Този член не е публичен
|
||||||
ErrorMemberIsAlreadyLinkedToThisThirdParty=Друг член (име: <b>%s,</b>, потребител: <b>%s)</b> вече е свързан с третата страна <b>%s</b>. Remove this link first because a third party can't be linked to only a member (and vice versa).
|
ErrorMemberIsAlreadyLinkedToThisThirdParty=Друг член (име: <b>%s,</b>, потребител: <b>%s)</b> вече е свързан с третата страна <b>%s</b>. Remove this link first because a third party can't be linked to only a member (and vice versa).
|
||||||
ErrorUserPermissionAllowsToLinksToItselfOnly=От съображения за сигурност, трябва да ви бъдат предоставени права за редактиране на всички потребители да могат свързват член към потребител, който не е ваш.
|
ErrorUserPermissionAllowsToLinksToItselfOnly=От съображения за сигурност, трябва да ви бъдат предоставени права за редактиране на всички потребители да могат свързват член към потребител, който не е ваш.
|
||||||
ThisIsContentOfYourCard=Това са подробности от вашата карта
|
ThisIsContentOfYourCard=Hi.<br><br>This is a remind of the information we get about you. Feel free to contact us if something looks wrong.<br><br>
|
||||||
CardContent=Съдържание на вашата карта на член
|
CardContent=Съдържание на вашата карта на член
|
||||||
SetLinkToUser=Връзка към Dolibarr потребител
|
SetLinkToUser=Връзка към Dolibarr потребител
|
||||||
SetLinkToThirdParty=Линк към Dolibarr контрагент
|
SetLinkToThirdParty=Линк към Dolibarr контрагент
|
||||||
@ -23,13 +23,13 @@ MembersListToValid=Списък на кандидатите за членове
|
|||||||
MembersListValid=Списък на настоящите членове
|
MembersListValid=Списък на настоящите членове
|
||||||
MembersListUpToDate=Списък на членовете с платен членски внос
|
MembersListUpToDate=Списък на членовете с платен членски внос
|
||||||
MembersListNotUpToDate=Списък на членовете с неплатен членски внос
|
MembersListNotUpToDate=Списък на членовете с неплатен членски внос
|
||||||
MembersListResiliated=Списък на бившите членове
|
MembersListResiliated=List of terminated members
|
||||||
MembersListQualified=Списък на квалифицираните членове
|
MembersListQualified=Списък на квалифицираните членове
|
||||||
MenuMembersToValidate=Кандидати за членове
|
MenuMembersToValidate=Кандидати за членове
|
||||||
MenuMembersValidated=Настоящи членове
|
MenuMembersValidated=Настоящи членове
|
||||||
MenuMembersUpToDate=С платен чл. внос
|
MenuMembersUpToDate=С платен чл. внос
|
||||||
MenuMembersNotUpToDate=С неплатен чл. внос
|
MenuMembersNotUpToDate=С неплатен чл. внос
|
||||||
MenuMembersResiliated=Бивши членове
|
MenuMembersResiliated=Terminated members
|
||||||
MembersWithSubscriptionToReceive=Събиране на членски внос от членовете
|
MembersWithSubscriptionToReceive=Събиране на членски внос от членовете
|
||||||
DateSubscription=Чл. внос от дата
|
DateSubscription=Чл. внос от дата
|
||||||
DateEndSubscription=Чл. внос до дата
|
DateEndSubscription=Чл. внос до дата
|
||||||
@ -49,10 +49,10 @@ MemberStatusActiveLate=Има неплатени вноски
|
|||||||
MemberStatusActiveLateShort=Неплатен чл. внос
|
MemberStatusActiveLateShort=Неплатен чл. внос
|
||||||
MemberStatusPaid=Платен чл. внос
|
MemberStatusPaid=Платен чл. внос
|
||||||
MemberStatusPaidShort=Платен чл. внос
|
MemberStatusPaidShort=Платен чл. внос
|
||||||
MemberStatusResiliated=Бивш член
|
MemberStatusResiliated=Terminated member
|
||||||
MemberStatusResiliatedShort=Бивш член
|
MemberStatusResiliatedShort=Terminated
|
||||||
MembersStatusToValid=Кандидати за членове
|
MembersStatusToValid=Кандидати за членове
|
||||||
MembersStatusResiliated=Бивши членове
|
MembersStatusResiliated=Terminated members
|
||||||
NewCotisation=Нова вноска
|
NewCotisation=Нова вноска
|
||||||
PaymentSubscription=Плащане на нова вноска
|
PaymentSubscription=Плащане на нова вноска
|
||||||
SubscriptionEndDate=Чл. внос до дата
|
SubscriptionEndDate=Чл. внос до дата
|
||||||
@ -76,19 +76,19 @@ Physical=Реален
|
|||||||
Moral=Морален
|
Moral=Морален
|
||||||
MorPhy=Морален/Реален
|
MorPhy=Морален/Реален
|
||||||
Reenable=Повторно активиране
|
Reenable=Повторно активиране
|
||||||
ResiliateMember=Изключване на член
|
ResiliateMember=Terminate a member
|
||||||
ConfirmResiliateMember=Сигурни ли сте, че желаете да изключите този член?
|
ConfirmResiliateMember=Are you sure you want to terminate this member?
|
||||||
DeleteMember=Изтриване на член
|
DeleteMember=Изтриване на член
|
||||||
ConfirmDeleteMember=Сигурни ли сте, че желаете да изтриете този член (Изтриването на члена ще изтрие и членския му внос)?
|
ConfirmDeleteMember=Are you sure you want to delete this member (Deleting a member will delete all his subscriptions)?
|
||||||
DeleteSubscription=Изтриване на членски внос
|
DeleteSubscription=Изтриване на членски внос
|
||||||
ConfirmDeleteSubscription=Сигурни ли сте, че желаете да изтриете този членски внос?
|
ConfirmDeleteSubscription=Are you sure you want to delete this subscription?
|
||||||
Filehtpasswd=htpasswd файл
|
Filehtpasswd=htpasswd файл
|
||||||
ValidateMember=Потвърждаване на член
|
ValidateMember=Потвърждаване на член
|
||||||
ConfirmValidateMember=Сигурни ли сте, че желаете да потвърдите този член?
|
ConfirmValidateMember=Are you sure you want to validate this member?
|
||||||
FollowingLinksArePublic=Следните линкове са отворени страници незащитени от никакви Dolibarr права. Те не са форматирани страници, предоставен е пример да покаже как изкарате списък на членската база данни.
|
FollowingLinksArePublic=Следните линкове са отворени страници незащитени от никакви Dolibarr права. Те не са форматирани страници, предоставен е пример да покаже как изкарате списък на членската база данни.
|
||||||
PublicMemberList=Публичен списък с членове
|
PublicMemberList=Публичен списък с членове
|
||||||
BlankSubscriptionForm=Публична автоматична форма за абонамент
|
BlankSubscriptionForm=Публична автоматична форма за абонамент
|
||||||
BlankSubscriptionFormDesc=Dolibarr can provide you a public URL to allow external visitors to ask to subscribe to the foundation. If an online payment module is enabled, a payment form will also be automatically provided.
|
BlankSubscriptionFormDesc=Dolibarr може да ви осигури публичен URL адрес, за да се даде възможност за външни посетители, за да поиска да се абонирате за фондацията. Ако е включен модул за онлайн плащане, плащане форма също ще бъдат автоматично.
|
||||||
EnablePublicSubscriptionForm=Разрешаване на публичната автоматична форма за абонамент
|
EnablePublicSubscriptionForm=Разрешаване на публичната автоматична форма за абонамент
|
||||||
ExportDataset_member_1=Членове и членски внос
|
ExportDataset_member_1=Членове и членски внос
|
||||||
ImportDataset_member_1=Членове
|
ImportDataset_member_1=Членове
|
||||||
@ -103,10 +103,10 @@ SubscriptionNotRecorded=Subscription not recorded
|
|||||||
AddSubscription=Create subscription
|
AddSubscription=Create subscription
|
||||||
ShowSubscription=Покажи чл. внос
|
ShowSubscription=Покажи чл. внос
|
||||||
SendAnEMailToMember=Изпращане на информационен имейл до член
|
SendAnEMailToMember=Изпращане на информационен имейл до член
|
||||||
DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Subject of the e-mail received in case of auto-inscription of a guest
|
DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Предмет на електронна поща, получена в случай на авто-надпис на гост
|
||||||
DescADHERENT_AUTOREGISTER_NOTIF_MAIL=E-mail received in case of auto-inscription of a guest
|
DescADHERENT_AUTOREGISTER_NOTIF_MAIL=E-поща, получена в случай на авто-надпис на гост
|
||||||
DescADHERENT_AUTOREGISTER_MAIL_SUBJECT=EMail subject for member autosubscription
|
DescADHERENT_AUTOREGISTER_MAIL_SUBJECT=Имейл предмет за член autosubscription
|
||||||
DescADHERENT_AUTOREGISTER_MAIL=EMail for member autosubscription
|
DescADHERENT_AUTOREGISTER_MAIL=Имейл за член autosubscription
|
||||||
DescADHERENT_MAIL_VALID_SUBJECT=Тема на e-mail за потвърждаване на член
|
DescADHERENT_MAIL_VALID_SUBJECT=Тема на e-mail за потвърждаване на член
|
||||||
DescADHERENT_MAIL_VALID=E-mail за потвърждаване на член
|
DescADHERENT_MAIL_VALID=E-mail за потвърждаване на член
|
||||||
DescADHERENT_MAIL_COTIS_SUBJECT=Тема на e-mail за членски внос
|
DescADHERENT_MAIL_COTIS_SUBJECT=Тема на e-mail за членски внос
|
||||||
@ -127,8 +127,8 @@ NoThirdPartyAssociatedToMember=Няма свързан контрагент с
|
|||||||
MembersAndSubscriptions= Членове и Членски внос
|
MembersAndSubscriptions= Членове и Членски внос
|
||||||
MoreActions=Допълнително действие за записване
|
MoreActions=Допълнително действие за записване
|
||||||
MoreActionsOnSubscription=Complementary action, suggested by default when recording a subscription
|
MoreActionsOnSubscription=Complementary action, suggested by default when recording a subscription
|
||||||
MoreActionBankDirect=Create a direct transaction record on account
|
MoreActionBankDirect=Create a direct entry on bank account
|
||||||
MoreActionBankViaInvoice=Създаване на фактура и плащане по сметка
|
MoreActionBankViaInvoice=Create an invoice, and a payment on bank account
|
||||||
MoreActionInvoiceOnly=Създаване на фактура без заплащане
|
MoreActionInvoiceOnly=Създаване на фактура без заплащане
|
||||||
LinkToGeneratedPages=Генериране на визитни картички
|
LinkToGeneratedPages=Генериране на визитни картички
|
||||||
LinkToGeneratedPagesDesc=Този екран ви позволява да генерирате PDF файлове с визитни картички за всички свои членове или определен член.
|
LinkToGeneratedPagesDesc=Този екран ви позволява да генерирате PDF файлове с визитни картички за всички свои членове или определен член.
|
||||||
@ -152,7 +152,6 @@ MenuMembersStats=Статистика
|
|||||||
LastMemberDate=Последна дата на член
|
LastMemberDate=Последна дата на член
|
||||||
Nature=Естество
|
Nature=Естество
|
||||||
Public=Информацията е публичнна
|
Public=Информацията е публичнна
|
||||||
Exports=Изнасяне
|
|
||||||
NewMemberbyWeb=Новия член е добавен. Очаква се одобрение
|
NewMemberbyWeb=Новия член е добавен. Очаква се одобрение
|
||||||
NewMemberForm=Форма за нов член
|
NewMemberForm=Форма за нов член
|
||||||
SubscriptionsStatistics=Статистика за членския внос
|
SubscriptionsStatistics=Статистика за членския внос
|
||||||
|
|||||||
@ -7,7 +7,7 @@ Order=Поръчка
|
|||||||
Orders=Поръчки
|
Orders=Поръчки
|
||||||
OrderLine=Ред за поръчка
|
OrderLine=Ред за поръчка
|
||||||
OrderDate=Дата на поръчка
|
OrderDate=Дата на поръчка
|
||||||
OrderDateShort=Order date
|
OrderDateShort=Дата на поръчка
|
||||||
OrderToProcess=Поръчка за обработка
|
OrderToProcess=Поръчка за обработка
|
||||||
NewOrder=Нова поръчка
|
NewOrder=Нова поръчка
|
||||||
ToOrder=Направи поръчка
|
ToOrder=Направи поръчка
|
||||||
@ -19,6 +19,7 @@ CustomerOrder=Поръчка от клиент
|
|||||||
CustomersOrders=Поръчки от клиенти
|
CustomersOrders=Поръчки от клиенти
|
||||||
CustomersOrdersRunning=Текущи поръчки от клиенти
|
CustomersOrdersRunning=Текущи поръчки от клиенти
|
||||||
CustomersOrdersAndOrdersLines=Поръчки от клиенти и редове от поръчки
|
CustomersOrdersAndOrdersLines=Поръчки от клиенти и редове от поръчки
|
||||||
|
OrdersDeliveredToBill=Customer orders delivered to bill
|
||||||
OrdersToBill=Поръчки от клиенти доставени
|
OrdersToBill=Поръчки от клиенти доставени
|
||||||
OrdersInProcess=Поръчки от клиенти в изпълнение
|
OrdersInProcess=Поръчки от клиенти в изпълнение
|
||||||
OrdersToProcess=Поръчки от клиенти за изпълнение
|
OrdersToProcess=Поръчки от клиенти за изпълнение
|
||||||
@ -31,7 +32,7 @@ StatusOrderSent=Доставка в процес
|
|||||||
StatusOrderOnProcessShort=Поръчано
|
StatusOrderOnProcessShort=Поръчано
|
||||||
StatusOrderProcessedShort=Обработен
|
StatusOrderProcessedShort=Обработен
|
||||||
StatusOrderDelivered=Доставени
|
StatusOrderDelivered=Доставени
|
||||||
StatusOrderDeliveredShort=Delivered
|
StatusOrderDeliveredShort=Доставени
|
||||||
StatusOrderToBillShort=За плащане
|
StatusOrderToBillShort=За плащане
|
||||||
StatusOrderApprovedShort=Одобрен
|
StatusOrderApprovedShort=Одобрен
|
||||||
StatusOrderRefusedShort=Отказан
|
StatusOrderRefusedShort=Отказан
|
||||||
@ -52,6 +53,7 @@ StatusOrderBilled=Осчетоводено
|
|||||||
StatusOrderReceivedPartially=Частично получено
|
StatusOrderReceivedPartially=Частично получено
|
||||||
StatusOrderReceivedAll=Всичко получено
|
StatusOrderReceivedAll=Всичко получено
|
||||||
ShippingExist=Доставка съществува
|
ShippingExist=Доставка съществува
|
||||||
|
QtyOrdered=Поръчано к-во
|
||||||
ProductQtyInDraft=Количество продукти в поръчки чернови
|
ProductQtyInDraft=Количество продукти в поръчки чернови
|
||||||
ProductQtyInDraftOrWaitingApproved=Product quantity into draft or approved orders, not yet ordered
|
ProductQtyInDraftOrWaitingApproved=Product quantity into draft or approved orders, not yet ordered
|
||||||
MenuOrdersToBill=Доставени поръчки
|
MenuOrdersToBill=Доставени поръчки
|
||||||
@ -85,12 +87,12 @@ NumberOfOrdersByMonth=Брой на поръчки по месец
|
|||||||
AmountOfOrdersByMonthHT=Сума на поръчки по месец (без данък)
|
AmountOfOrdersByMonthHT=Сума на поръчки по месец (без данък)
|
||||||
ListOfOrders=Списък на поръчките
|
ListOfOrders=Списък на поръчките
|
||||||
CloseOrder=Затвори поръчка
|
CloseOrder=Затвори поръчка
|
||||||
ConfirmCloseOrder=Сигурен ли сте, че искате да поставите статус доставена на тази поръчка? След като поръчката е доставена, тя може да бъде платена.
|
ConfirmCloseOrder=Are you sure you want to set this order to deliverd? Once an order is delivered, it can be set to billed.
|
||||||
ConfirmDeleteOrder=Сигурен ли сте, че искате да изтриете тази поръчка?
|
ConfirmDeleteOrder=Are you sure you want to delete this order?
|
||||||
ConfirmValidateOrder=Сигурен ли сте, че искате да валидирате тази поръчка под името <b>%s?</b>
|
ConfirmValidateOrder=Are you sure you want to validate this order under name <b>%s</b>?
|
||||||
ConfirmUnvalidateOrder=Сигурен ли сте, че искате да възстановите поръчка <b>%s</b> към състояние на чернова?
|
ConfirmUnvalidateOrder=Are you sure you want to restore order <b>%s</b> to draft status?
|
||||||
ConfirmCancelOrder=Сигурен ли сте, че искате да отмените тази поръчка?
|
ConfirmCancelOrder=Are you sure you want to cancel this order?
|
||||||
ConfirmMakeOrder=Сигурен ли сте, че искате да потвърдите, че направихте тази поръчка на <b>%s?</b>
|
ConfirmMakeOrder=Are you sure you want to confirm you made this order on <b>%s</b>?
|
||||||
GenerateBill=Генерирай фактура
|
GenerateBill=Генерирай фактура
|
||||||
ClassifyShipped=Класифицирай доставени
|
ClassifyShipped=Класифицирай доставени
|
||||||
DraftOrders=Поръчки чернови
|
DraftOrders=Поръчки чернови
|
||||||
@ -99,6 +101,7 @@ OnProcessOrders=Поръчки в изпълнение
|
|||||||
RefOrder=Реф. поръчка
|
RefOrder=Реф. поръчка
|
||||||
RefCustomerOrder=Ref. order for customer
|
RefCustomerOrder=Ref. order for customer
|
||||||
RefOrderSupplier=Ref. order for supplier
|
RefOrderSupplier=Ref. order for supplier
|
||||||
|
RefOrderSupplierShort=Ref. order supplier
|
||||||
SendOrderByMail=Изпрати поръчката с имейл
|
SendOrderByMail=Изпрати поръчката с имейл
|
||||||
ActionsOnOrder=Събития по поръчката
|
ActionsOnOrder=Събития по поръчката
|
||||||
NoArticleOfTypeProduct=Няма артикул от тип 'продукт', така че няма артикули годни за доставка по тази поръчка
|
NoArticleOfTypeProduct=Няма артикул от тип 'продукт', така че няма артикули годни за доставка по тази поръчка
|
||||||
@ -107,7 +110,7 @@ AuthorRequest=Заявка автор
|
|||||||
UserWithApproveOrderGrant=Потребители, предоставени с "одобри поръчки" разрешение.
|
UserWithApproveOrderGrant=Потребители, предоставени с "одобри поръчки" разрешение.
|
||||||
PaymentOrderRef=Плащане на поръчка %s
|
PaymentOrderRef=Плащане на поръчка %s
|
||||||
CloneOrder=Клонирай поръчката
|
CloneOrder=Клонирай поръчката
|
||||||
ConfirmCloneOrder=Сигурен ли сте, че искате да клонирате за тази поръчка <b>%s?</b>
|
ConfirmCloneOrder=Are you sure you want to clone this order <b>%s</b>?
|
||||||
DispatchSupplierOrder=Получаване поръчка от доставчик %s
|
DispatchSupplierOrder=Получаване поръчка от доставчик %s
|
||||||
FirstApprovalAlreadyDone=Първо одобрение вече е направено
|
FirstApprovalAlreadyDone=Първо одобрение вече е направено
|
||||||
SecondApprovalAlreadyDone=Второ одобрение вече е направено
|
SecondApprovalAlreadyDone=Второ одобрение вече е направено
|
||||||
@ -125,29 +128,19 @@ TypeContact_order_supplier_internal_SHIPPING=Представител просл
|
|||||||
TypeContact_order_supplier_external_BILLING=Контакт на доставчик по фактура
|
TypeContact_order_supplier_external_BILLING=Контакт на доставчик по фактура
|
||||||
TypeContact_order_supplier_external_SHIPPING=Контакт на доставчик по доставка
|
TypeContact_order_supplier_external_SHIPPING=Контакт на доставчик по доставка
|
||||||
TypeContact_order_supplier_external_CUSTOMER=Контакт на доставчик по поръчка
|
TypeContact_order_supplier_external_CUSTOMER=Контакт на доставчик по поръчка
|
||||||
|
|
||||||
Error_COMMANDE_SUPPLIER_ADDON_NotDefined=Constant COMMANDE_SUPPLIER_ADDON not defined
|
Error_COMMANDE_SUPPLIER_ADDON_NotDefined=Constant COMMANDE_SUPPLIER_ADDON not defined
|
||||||
Error_COMMANDE_ADDON_NotDefined=Constant COMMANDE_ADDON not defined
|
Error_COMMANDE_ADDON_NotDefined=Constant COMMANDE_ADDON not defined
|
||||||
Error_OrderNotChecked=No orders to invoice selected
|
Error_OrderNotChecked=No orders to invoice selected
|
||||||
# Sources
|
# Order modes (how we receive order). Not the "why" are keys stored into dict.lang
|
||||||
OrderSource0=Търговско предложение
|
|
||||||
OrderSource1=Интернет
|
|
||||||
OrderSource2=Имейл кампания
|
|
||||||
OrderSource3=Телефонна кампания
|
|
||||||
OrderSource4=Факс кампания
|
|
||||||
OrderSource5=Търговски
|
|
||||||
OrderSource6=Магазин
|
|
||||||
QtyOrdered=Поръчано к-во
|
|
||||||
# Documents models
|
|
||||||
PDFEinsteinDescription=Цялостен модел за поръчка (лого. ..)
|
|
||||||
PDFEdisonDescription=Опростен модел за поръчка
|
|
||||||
PDFProformaDescription=Пълна проформа фактура (лого)
|
|
||||||
# Orders modes
|
|
||||||
OrderByMail=Поща
|
OrderByMail=Поща
|
||||||
OrderByFax=Факс
|
OrderByFax=Факс
|
||||||
OrderByEMail=Имейл
|
OrderByEMail=Имейл
|
||||||
OrderByWWW=Онлайн
|
OrderByWWW=Онлайн
|
||||||
OrderByPhone=Телефон
|
OrderByPhone=Телефон
|
||||||
|
# Documents models
|
||||||
|
PDFEinsteinDescription=Цялостен модел за поръчка (лого. ..)
|
||||||
|
PDFEdisonDescription=Опростен модел за поръчка
|
||||||
|
PDFProformaDescription=Пълна проформа фактура (лого)
|
||||||
CreateInvoiceForThisCustomer=Поръчки за плащане
|
CreateInvoiceForThisCustomer=Поръчки за плащане
|
||||||
NoOrdersToInvoice=Няма поръчки за плащане
|
NoOrdersToInvoice=Няма поръчки за плащане
|
||||||
CloseProcessedOrdersAutomatically=Класифицирай като "Обработен" всички избрани поръчки.
|
CloseProcessedOrdersAutomatically=Класифицирай като "Обработен" всички избрани поръчки.
|
||||||
@ -158,3 +151,4 @@ OrderFail=Възникна грешка при създаването на по
|
|||||||
CreateOrders=Създай поръчки
|
CreateOrders=Създай поръчки
|
||||||
ToBillSeveralOrderSelectCustomer=За да създадете фактура по няколко поръчки, кликнете първо на клиент, след това изберете "%s".
|
ToBillSeveralOrderSelectCustomer=За да създадете фактура по няколко поръчки, кликнете първо на клиент, след това изберете "%s".
|
||||||
CloseReceivedSupplierOrdersAutomatically=Close order to "%s" automatically if all products are received.
|
CloseReceivedSupplierOrdersAutomatically=Close order to "%s" automatically if all products are received.
|
||||||
|
SetShippingMode=Set shipping mode
|
||||||
|
|||||||
@ -1,6 +1,5 @@
|
|||||||
# Dolibarr language file - Source file is en_US - other
|
# Dolibarr language file - Source file is en_US - other
|
||||||
SecurityCode=Код за сигурност
|
SecurityCode=Код за сигурност
|
||||||
Calendar=Календар
|
|
||||||
NumberingShort=N°
|
NumberingShort=N°
|
||||||
Tools=Инструменти
|
Tools=Инструменти
|
||||||
ToolsDesc=All miscellaneous tools not included in other menu entries are collected here.<br /><br />All the tools can be reached in the left menu.
|
ToolsDesc=All miscellaneous tools not included in other menu entries are collected here.<br /><br />All the tools can be reached in the left menu.
|
||||||
@ -43,7 +42,7 @@ Notify_SHIPPING_SENTBYMAIL=Доставка изпращат по пощата
|
|||||||
Notify_MEMBER_VALIDATE=Члена е приет
|
Notify_MEMBER_VALIDATE=Члена е приет
|
||||||
Notify_MEMBER_MODIFY=Членът е променен
|
Notify_MEMBER_MODIFY=Членът е променен
|
||||||
Notify_MEMBER_SUBSCRIPTION=Членът е абониран
|
Notify_MEMBER_SUBSCRIPTION=Членът е абониран
|
||||||
Notify_MEMBER_RESILIATE=Членът е изключен
|
Notify_MEMBER_RESILIATE=Member terminated
|
||||||
Notify_MEMBER_DELETE=Членът е изтрит
|
Notify_MEMBER_DELETE=Членът е изтрит
|
||||||
Notify_PROJECT_CREATE=Създаване на проект
|
Notify_PROJECT_CREATE=Създаване на проект
|
||||||
Notify_TASK_CREATE=Задачата е създадена
|
Notify_TASK_CREATE=Задачата е създадена
|
||||||
@ -55,7 +54,6 @@ TotalSizeOfAttachedFiles=Общ размер на прикачените фай
|
|||||||
MaxSize=Максимален размер
|
MaxSize=Максимален размер
|
||||||
AttachANewFile=Прикачи нов файл/документ
|
AttachANewFile=Прикачи нов файл/документ
|
||||||
LinkedObject=Свързан обект
|
LinkedObject=Свързан обект
|
||||||
Miscellaneous=Разни
|
|
||||||
NbOfActiveNotifications=Брой уведомления (брой имейли на получатели)
|
NbOfActiveNotifications=Брой уведомления (брой имейли на получатели)
|
||||||
PredefinedMailTest=Това е тестов имейл.\nДвата реда са разделени с нов ред.\n\n__SIGNATURE__
|
PredefinedMailTest=Това е тестов имейл.\nДвата реда са разделени с нов ред.\n\n__SIGNATURE__
|
||||||
PredefinedMailTestHtml=Това е <b>тестов</b> имейл (думата тестов трябва да бъде с удебелен шрифт). <br>Двата реда са разделени с нов ред.<br><br> __SIGNATURE__
|
PredefinedMailTestHtml=Това е <b>тестов</b> имейл (думата тестов трябва да бъде с удебелен шрифт). <br>Двата реда са разделени с нов ред.<br><br> __SIGNATURE__
|
||||||
@ -201,36 +199,16 @@ IfAmountHigherThan=Ако сумаta e по-висока от <strong>%s</strong
|
|||||||
SourcesRepository=Хранилище за източници
|
SourcesRepository=Хранилище за източници
|
||||||
Chart=Chart
|
Chart=Chart
|
||||||
|
|
||||||
##### Calendar common #####
|
|
||||||
NewCompanyToDolibarr=Фирма %s е добавена
|
|
||||||
ContractValidatedInDolibarr=Контакт %s е валидиран
|
|
||||||
PropalClosedSignedInDolibarr=Предложение %s е подписано
|
|
||||||
PropalClosedRefusedInDolibarr=Предложение %s е отказано
|
|
||||||
PropalValidatedInDolibarr=Предложение %s е валидирано
|
|
||||||
PropalClassifiedBilledInDolibarr=Предложение %s е класифицирано фактурирано
|
|
||||||
InvoiceValidatedInDolibarr=Фактура %s е валидирана
|
|
||||||
InvoicePaidInDolibarr=Фактура %s е променена на платена
|
|
||||||
InvoiceCanceledInDolibarr=Фактура %s е отказана
|
|
||||||
MemberValidatedInDolibarr=Член %s е валидиран
|
|
||||||
MemberResiliatedInDolibarr=Член %s е завършен
|
|
||||||
MemberDeletedInDolibarr=Член %s е изтрит
|
|
||||||
MemberSubscriptionAddedInDolibarr=Абонамет за член %s е добавен
|
|
||||||
ShipmentValidatedInDolibarr=Доставка %s е валидирана
|
|
||||||
ShipmentClassifyClosedInDolibarr=Shipment %s classify billed
|
|
||||||
ShipmentUnClassifyCloseddInDolibarr=Shipment %s classify reopened
|
|
||||||
ShipmentDeletedInDolibarr=Доставка %s е изтрита
|
|
||||||
##### Export #####
|
##### Export #####
|
||||||
Export=Експорт
|
|
||||||
ExportsArea=Секция за експорт
|
ExportsArea=Секция за експорт
|
||||||
AvailableFormats=Налични формати
|
AvailableFormats=Налични формати
|
||||||
LibraryUsed=Използвана библиотека
|
LibraryUsed=Библиотека използва
|
||||||
LibraryVersion=Версия
|
LibraryVersion=Library version
|
||||||
ExportableDatas=Експортируеми данни
|
ExportableDatas=Експортируеми данни
|
||||||
NoExportableData=Няма експортируеми данни (няма модули със заредени експортируеми данни, или липсва разрешение)
|
NoExportableData=Няма експортируеми данни (няма модули със заредени експортируеми данни, или липсва разрешение)
|
||||||
NewExport=Нов експорт
|
|
||||||
##### External sites #####
|
##### External sites #####
|
||||||
WebsiteSetup=Setup of module website
|
WebsiteSetup=Setup of module website
|
||||||
WEBSITE_PAGEURL=URL of page
|
WEBSITE_PAGEURL=URL of page
|
||||||
WEBSITE_TITLE=Title
|
WEBSITE_TITLE=Заглавие
|
||||||
WEBSITE_DESCRIPTION=Description
|
WEBSITE_DESCRIPTION=Описание
|
||||||
WEBSITE_KEYWORDS=Keywords
|
WEBSITE_KEYWORDS=Keywords
|
||||||
|
|||||||
@ -11,7 +11,7 @@ PAYPAL_SSLVERSION=Curl SSL Version
|
|||||||
PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Оферта плащане "неразделна" (кредитна карта + Paypal) или "Paypal"
|
PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Оферта плащане "неразделна" (кредитна карта + Paypal) или "Paypal"
|
||||||
PaypalModeIntegral=Интеграл
|
PaypalModeIntegral=Интеграл
|
||||||
PaypalModeOnlyPaypal=Paypal само
|
PaypalModeOnlyPaypal=Paypal само
|
||||||
PAYPAL_CSS_URL=Optionnal Адреса на стил CSS лист на страницата за плащане
|
PAYPAL_CSS_URL=Optionnal URL of CSS style sheet on payment page
|
||||||
ThisIsTransactionId=Това е номер на сделката: <b>%s</b>
|
ThisIsTransactionId=Това е номер на сделката: <b>%s</b>
|
||||||
PAYPAL_ADD_PAYMENT_URL=Добавяне на URL адреса на Paypal плащане, когато ви изпрати документа по пощата
|
PAYPAL_ADD_PAYMENT_URL=Добавяне на URL адреса на Paypal плащане, когато ви изпрати документа по пощата
|
||||||
PredefinedMailContentLink=Можете да кликнете върху сигурна връзка по-долу, за да направите плащане чрез PayPal \n\n %s \n\n
|
PredefinedMailContentLink=Можете да кликнете върху сигурна връзка по-долу, за да направите плащане чрез PayPal \n\n %s \n\n
|
||||||
|
|||||||
@ -17,7 +17,7 @@ printEatby=Eat-by: %s
|
|||||||
printSellby=Sell-by: %s
|
printSellby=Sell-by: %s
|
||||||
printQty=Кол: %d
|
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, automatic increase/decrease stock mode is forced to shipping validate and manual dispatching for reception 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
|
ProductLotSetup=Setup of module lot/serial
|
||||||
ShowCurrentStockOfLot=Show current stock for couple product/lot
|
ShowCurrentStockOfLot=Show current stock for couple product/lot
|
||||||
|
|||||||
@ -32,8 +32,8 @@ ServicesOnSellAndOnBuy=Услуги за продажба или покупка
|
|||||||
LastModifiedProductsAndServices=Latest %s modified products/services
|
LastModifiedProductsAndServices=Latest %s modified products/services
|
||||||
LastRecordedProducts=Latest %s recorded products
|
LastRecordedProducts=Latest %s recorded products
|
||||||
LastRecordedServices=Latest %s recorded services
|
LastRecordedServices=Latest %s recorded services
|
||||||
CardProduct0=Product card
|
CardProduct0=Карта на продукт
|
||||||
CardProduct1=Service card
|
CardProduct1=Карта на услуга
|
||||||
Stock=Наличност
|
Stock=Наличност
|
||||||
Stocks=Наличности
|
Stocks=Наличности
|
||||||
Movements=Движения
|
Movements=Движения
|
||||||
@ -89,20 +89,21 @@ NoteNotVisibleOnBill=Бележка (не се вижда на фактури,
|
|||||||
ServiceLimitedDuration=Ако продуктът е услуга с ограничен срок на действие:
|
ServiceLimitedDuration=Ако продуктът е услуга с ограничен срок на действие:
|
||||||
MultiPricesAbility=Several segment of prices per product/service (each customer is in one segment)
|
MultiPricesAbility=Several segment of prices per product/service (each customer is in one segment)
|
||||||
MultiPricesNumPrices=Number of prices
|
MultiPricesNumPrices=Number of prices
|
||||||
AssociatedProductsAbility=Активиране на опцията за пакетиране
|
AssociatedProductsAbility=Activate the feature to manage virtual products
|
||||||
AssociatedProducts=Пакетирай продукт
|
AssociatedProducts=Виртуален продукт
|
||||||
AssociatedProductsNumber=Брой на продуктите образуващи този пакетен продукт
|
AssociatedProductsNumber=Брой на продуктите, съставящи този виртуален продукт
|
||||||
ParentProductsNumber=Number of parent packaging product
|
ParentProductsNumber=Number of parent packaging product
|
||||||
ParentProducts=Parent products
|
ParentProducts=Parent products
|
||||||
IfZeroItIsNotAVirtualProduct=Ако 0, този продукт не е пакетен продукт
|
IfZeroItIsNotAVirtualProduct=Ако е 0, този продукт не е виртуален продукт
|
||||||
IfZeroItIsNotUsedByVirtualProduct=Ако 0, този продукт не е използван от никой пакетен продукт
|
IfZeroItIsNotUsedByVirtualProduct=If 0, this product is not used by any virtual product
|
||||||
Translation=Превод
|
Translation=Превод
|
||||||
KeywordFilter=Филтър по ключова дума
|
KeywordFilter=Филтър по ключова дума
|
||||||
CategoryFilter=Филтър по категория
|
CategoryFilter=Филтър по категория
|
||||||
ProductToAddSearch=Търсене на продукт за добавяне
|
ProductToAddSearch=Търсене на продукт за добавяне
|
||||||
NoMatchFound=Не са намерени съвпадения
|
NoMatchFound=Не са намерени съвпадения
|
||||||
|
ListOfProductsServices=List of products/services
|
||||||
ProductAssociationList=Списък на продукти/услуги, които са компонент на този виртуален продукт/пакет
|
ProductAssociationList=Списък на продукти/услуги, които са компонент на този виртуален продукт/пакет
|
||||||
ProductParentList=Списък на пакетирани продукт/услуги с този продукт като компонент
|
ProductParentList=Списък на продукти / услуги с този продукт като компонент
|
||||||
ErrorAssociationIsFatherOfThis=Един от избрания продукт е родител с настоящия продукт
|
ErrorAssociationIsFatherOfThis=Един от избрания продукт е родител с настоящия продукт
|
||||||
DeleteProduct=Изтриване на продукта/услугата
|
DeleteProduct=Изтриване на продукта/услугата
|
||||||
ConfirmDeleteProduct=Сигурни ли сте, че желаете да изтриете този продукт/услуга?
|
ConfirmDeleteProduct=Сигурни ли сте, че желаете да изтриете този продукт/услуга?
|
||||||
@ -135,7 +136,7 @@ ListServiceByPopularity=Списък на услугите по популярн
|
|||||||
Finished=Произведен продукт
|
Finished=Произведен продукт
|
||||||
RowMaterial=Първа материал
|
RowMaterial=Първа материал
|
||||||
CloneProduct=Клониране на продукт или услуга
|
CloneProduct=Клониране на продукт или услуга
|
||||||
ConfirmCloneProduct=Сигурни ли сте, че желаете да клонирате продукта или услугата <b>%s?</b>?
|
ConfirmCloneProduct=Are you sure you want to clone product or service <b>%s</b>?
|
||||||
CloneContentProduct=Клониране на всички основни данни за продукта/услугата
|
CloneContentProduct=Клониране на всички основни данни за продукта/услугата
|
||||||
ClonePricesProduct=Клониране на основните данни и цени
|
ClonePricesProduct=Клониране на основните данни и цени
|
||||||
CloneCompositionProduct=Клониране на пакетиран продукт/услуга
|
CloneCompositionProduct=Клониране на пакетиран продукт/услуга
|
||||||
@ -204,7 +205,7 @@ DefinitionOfBarCodeForProductNotComplete=Определяне на тип или
|
|||||||
DefinitionOfBarCodeForThirdpartyNotComplete=Definition of type or value of bar code non complete for third party %s.
|
DefinitionOfBarCodeForThirdpartyNotComplete=Definition of type or value of bar code non complete for third party %s.
|
||||||
BarCodeDataForProduct=Информация за бар код на продукт %s:
|
BarCodeDataForProduct=Информация за бар код на продукт %s:
|
||||||
BarCodeDataForThirdparty=Barcode information of third party %s :
|
BarCodeDataForThirdparty=Barcode information of third party %s :
|
||||||
ResetBarcodeForAllRecords=Определяне на стойност на бар код за всички записи (това също така ще ресетира стойността на определен вече бар код с нова стойност)
|
ResetBarcodeForAllRecords=Define barcode value for all record (this will also reset barcode value already defined with new values)
|
||||||
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
|
||||||
PricingRule=Rules for sell prices
|
PricingRule=Rules for sell prices
|
||||||
@ -242,7 +243,7 @@ PropalMergePdfProductChooseFile=Избиране на PDF файлове
|
|||||||
IncludingProductWithTag=Включително продукт/услуга с таг
|
IncludingProductWithTag=Включително продукт/услуга с таг
|
||||||
DefaultPriceRealPriceMayDependOnCustomer=Цена по подразбиране, реалната цена може да зависи от клиента
|
DefaultPriceRealPriceMayDependOnCustomer=Цена по подразбиране, реалната цена може да зависи от клиента
|
||||||
WarningSelectOneDocument=Моля изберете поне един документ
|
WarningSelectOneDocument=Моля изберете поне един документ
|
||||||
DefaultUnitToShow=Unit
|
DefaultUnitToShow=Единица
|
||||||
NbOfQtyInProposals=Qty in proposals
|
NbOfQtyInProposals=Qty in proposals
|
||||||
ClinkOnALinkOfColumn=Click on a link of column %s to get a detailed view...
|
ClinkOnALinkOfColumn=Click on a link of column %s to get a detailed view...
|
||||||
TranslatedLabel=Translated label
|
TranslatedLabel=Translated label
|
||||||
|
|||||||
@ -8,7 +8,7 @@ Projects=Проекти
|
|||||||
ProjectsArea=Projects Area
|
ProjectsArea=Projects Area
|
||||||
ProjectStatus=Статус на проект
|
ProjectStatus=Статус на проект
|
||||||
SharedProject=Всички
|
SharedProject=Всички
|
||||||
PrivateProject=Project contacts
|
PrivateProject=ПРОЕКТА Контакти
|
||||||
MyProjectsDesc=Тази гледна точка е ограничена до проекти, които са за контакт (какъвто и да е тип).
|
MyProjectsDesc=Тази гледна точка е ограничена до проекти, които са за контакт (какъвто и да е тип).
|
||||||
ProjectsPublicDesc=Този възглед представя всички проекти, по които могат да се четат.
|
ProjectsPublicDesc=Този възглед представя всички проекти, по които могат да се четат.
|
||||||
TasksOnProjectsPublicDesc=This view presents all tasks on projects you are allowed to read.
|
TasksOnProjectsPublicDesc=This view presents all tasks on projects you are allowed to read.
|
||||||
@ -20,14 +20,15 @@ OnlyOpenedProject=Само отворени проекти са видими (п
|
|||||||
ClosedProjectsAreHidden=Closed projects are not visible.
|
ClosedProjectsAreHidden=Closed projects are not visible.
|
||||||
TasksPublicDesc=Този възглед представя всички проекти и задачи, които може да чете.
|
TasksPublicDesc=Този възглед представя всички проекти и задачи, които може да чете.
|
||||||
TasksDesc=Този възглед представя всички проекти и задачи (потребителски разрешения ви даде разрешение да видите всичко).
|
TasksDesc=Този възглед представя всички проекти и задачи (потребителски разрешения ви даде разрешение да видите всичко).
|
||||||
AllTaskVisibleButEditIfYouAreAssigned=Всички задачи за такъв проект са видими, но можете да въвеждате време само за задача, към която сте причислен. Причислете задача към себе си ако искате да въведете време за нея.
|
AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task assigned to you. Assign task to yourself if you need to enter time on it.
|
||||||
OnlyYourTaskAreVisible=Само задачи, към които сте причислен са видими. Причислете задача към себе си ако искате да въведете време за нея
|
OnlyYourTaskAreVisible=Only tasks assigned to you are visible. Assign task to yourself if it is not visible and you need to enter time on it.
|
||||||
|
ImportDatasetTasks=Tasks of projects
|
||||||
NewProject=Нов проект
|
NewProject=Нов проект
|
||||||
AddProject=Създаване на проект
|
AddProject=Създаване на проект
|
||||||
DeleteAProject=Изтриване на проект
|
DeleteAProject=Изтриване на проект
|
||||||
DeleteATask=Изтриване на задача
|
DeleteATask=Изтриване на задача
|
||||||
ConfirmDeleteAProject=Сигурен ли сте, че искате да изтриете този проект?
|
ConfirmDeleteAProject=Are you sure you want to delete this project?
|
||||||
ConfirmDeleteATask=Сигурен ли сте, че искате да изтриете тази задача?
|
ConfirmDeleteATask=Are you sure you want to delete this task?
|
||||||
OpenedProjects=Open projects
|
OpenedProjects=Open projects
|
||||||
OpenedTasks=Open tasks
|
OpenedTasks=Open tasks
|
||||||
OpportunitiesStatusForOpenedProjects=Opportunities amount of open projects by status
|
OpportunitiesStatusForOpenedProjects=Opportunities amount of open projects by status
|
||||||
@ -91,16 +92,16 @@ NotOwnerOfProject=Не собственик на този частен прое
|
|||||||
AffectedTo=Присъжда се
|
AffectedTo=Присъжда се
|
||||||
CantRemoveProject=Този проект не може да бъде премахнато, тъй като е посочен от някои други предмети (фактура, заповеди или други). Виж препоръка раздела.
|
CantRemoveProject=Този проект не може да бъде премахнато, тъй като е посочен от някои други предмети (фактура, заповеди или други). Виж препоръка раздела.
|
||||||
ValidateProject=Одобряване на проект в
|
ValidateProject=Одобряване на проект в
|
||||||
ConfirmValidateProject=Сигурен ли сте, че искате да проверите този проект?
|
ConfirmValidateProject=Are you sure you want to validate this project?
|
||||||
CloseAProject=Затвори проект
|
CloseAProject=Затвори проект
|
||||||
ConfirmCloseAProject=Сигурен ли сте, че искате да затворите този проект?
|
ConfirmCloseAProject=Are you sure you want to close this project?
|
||||||
ReOpenAProject=Проект с отворен
|
ReOpenAProject=Проект с отворен
|
||||||
ConfirmReOpenAProject=Сигурен ли сте, че искате да отвори отново този проект?
|
ConfirmReOpenAProject=Are you sure you want to re-open this project?
|
||||||
ProjectContact=ПРОЕКТА Контакти
|
ProjectContact=ПРОЕКТА Контакти
|
||||||
ActionsOnProject=Събития по проекта
|
ActionsOnProject=Събития по проекта
|
||||||
YouAreNotContactOfProject=Вие не сте контакт на този частен проект
|
YouAreNotContactOfProject=Вие не сте контакт на този частен проект
|
||||||
DeleteATimeSpent=Изтриване на времето, прекарано
|
DeleteATimeSpent=Изтриване на времето, прекарано
|
||||||
ConfirmDeleteATimeSpent=Сигурен ли сте, че искате да изтриете това време, прекарано?
|
ConfirmDeleteATimeSpent=Are you sure you want to delete this time spent?
|
||||||
DoNotShowMyTasksOnly=Показване също на задачи, които не са възложени на мен
|
DoNotShowMyTasksOnly=Показване също на задачи, които не са възложени на мен
|
||||||
ShowMyTasksOnly=Показване задачи, възложени само на мен
|
ShowMyTasksOnly=Показване задачи, възложени само на мен
|
||||||
TaskRessourceLinks=Ресурси
|
TaskRessourceLinks=Ресурси
|
||||||
@ -117,8 +118,8 @@ CloneContacts=Клонингите контакти
|
|||||||
CloneNotes=Клонингите бележки
|
CloneNotes=Клонингите бележки
|
||||||
CloneProjectFiles=Клониран проект обединени файлове
|
CloneProjectFiles=Клониран проект обединени файлове
|
||||||
CloneTaskFiles=Клонирана задача(и) обединени файлове (ако задача(и) клонирана)
|
CloneTaskFiles=Клонирана задача(и) обединени файлове (ако задача(и) клонирана)
|
||||||
CloneMoveDate=Обновяване на датите на проект/задачи от сега ?
|
CloneMoveDate=Update project/tasks dates from now?
|
||||||
ConfirmCloneProject=Сигурен ли сте, че за клониране на този проект?
|
ConfirmCloneProject=Are you sure to clone this project?
|
||||||
ProjectReportDate=Промяна задача дата според началната дата на проекта
|
ProjectReportDate=Промяна задача дата според началната дата на проекта
|
||||||
ErrorShiftTaskDate=Невъзможно е да се смени датата на задача в съответствие с нова дата за началото на проекта
|
ErrorShiftTaskDate=Невъзможно е да се смени датата на задача в съответствие с нова дата за началото на проекта
|
||||||
ProjectsAndTasksLines=Проекти и задачи
|
ProjectsAndTasksLines=Проекти и задачи
|
||||||
|
|||||||
@ -13,8 +13,8 @@ Prospect=Перспектива
|
|||||||
DeleteProp=Изтриване на търговско предложение
|
DeleteProp=Изтриване на търговско предложение
|
||||||
ValidateProp=Одобряване на търговско предложение
|
ValidateProp=Одобряване на търговско предложение
|
||||||
AddProp=Създаване на предложение
|
AddProp=Създаване на предложение
|
||||||
ConfirmDeleteProp=Сигурен ли сте, че искате да изтриете тази търговска предложение?
|
ConfirmDeleteProp=Are you sure you want to delete this commercial proposal?
|
||||||
ConfirmValidateProp=Сигурен ли сте, че искате да проверите това търговско предложение?
|
ConfirmValidateProp=Are you sure you want to validate this commercial proposal under name <b>%s</b>?
|
||||||
LastPropals=Latest %s proposals
|
LastPropals=Latest %s proposals
|
||||||
LastModifiedProposals=Latest %s modified proposals
|
LastModifiedProposals=Latest %s modified proposals
|
||||||
AllPropals=Всички предложения
|
AllPropals=Всички предложения
|
||||||
@ -56,8 +56,8 @@ CreateEmptyPropal=Създаване на празен търговски vierge
|
|||||||
DefaultProposalDurationValidity=Default търговски продължителност предложение на валидност (в дни)
|
DefaultProposalDurationValidity=Default търговски продължителност предложение на валидност (в дни)
|
||||||
UseCustomerContactAsPropalRecipientIfExist=Използвайте адрес за контакт на клиента, ако вместо на трета страна адрес като адрес предложение получателя
|
UseCustomerContactAsPropalRecipientIfExist=Използвайте адрес за контакт на клиента, ако вместо на трета страна адрес като адрес предложение получателя
|
||||||
ClonePropal=Clone търговско предложение
|
ClonePropal=Clone търговско предложение
|
||||||
ConfirmClonePropal=Сигурен ли сте, че искате да клонира търговските <b>%s</b> предложение?
|
ConfirmClonePropal=Are you sure you want to clone the commercial proposal <b>%s</b>?
|
||||||
ConfirmReOpenProp=Сигурен ли сте, че искате да отворите търговските <b>%s</b> предложение?
|
ConfirmReOpenProp=Are you sure you want to open back the commercial proposal <b>%s</b>?
|
||||||
ProposalsAndProposalsLines=Търговско предложение и линии
|
ProposalsAndProposalsLines=Търговско предложение и линии
|
||||||
ProposalLine=Предложение линия
|
ProposalLine=Предложение линия
|
||||||
AvailabilityPeriod=Наличност закъснение
|
AvailabilityPeriod=Наличност закъснение
|
||||||
|
|||||||
@ -16,13 +16,15 @@ NbOfSendings=Брой на пратките
|
|||||||
NumberOfShipmentsByMonth=Брой на пратки по месец
|
NumberOfShipmentsByMonth=Брой на пратки по месец
|
||||||
SendingCard=Карта на пратка
|
SendingCard=Карта на пратка
|
||||||
NewSending=Нова пратка
|
NewSending=Нова пратка
|
||||||
CreateASending=Създаване на пратка
|
CreateShipment=Създаване на пратка
|
||||||
QtyShipped=Количество изпратени
|
QtyShipped=Количество изпратени
|
||||||
|
QtyPreparedOrShipped=Qty prepared or shipped
|
||||||
QtyToShip=Количество за кораба
|
QtyToShip=Количество за кораба
|
||||||
QtyReceived=Количество получи
|
QtyReceived=Количество получи
|
||||||
|
QtyInOtherShipments=Qty in other shipments
|
||||||
KeepToShip=Остава за изпращане
|
KeepToShip=Остава за изпращане
|
||||||
OtherSendingsForSameOrder=Други пратки за изпълнение на поръчката
|
OtherSendingsForSameOrder=Други пратки за изпълнение на поръчката
|
||||||
SendingsAndReceivingForSameOrder=Пратки и receivings за тази поръчка
|
SendingsAndReceivingForSameOrder=Shipments and receipts for this order
|
||||||
SendingsToValidate=Превозите за валидация
|
SendingsToValidate=Превозите за валидация
|
||||||
StatusSendingCanceled=Отменен
|
StatusSendingCanceled=Отменен
|
||||||
StatusSendingDraft=Проект
|
StatusSendingDraft=Проект
|
||||||
@ -32,14 +34,16 @@ StatusSendingDraftShort=Проект
|
|||||||
StatusSendingValidatedShort=Утвърден
|
StatusSendingValidatedShort=Утвърден
|
||||||
StatusSendingProcessedShort=Обработен
|
StatusSendingProcessedShort=Обработен
|
||||||
SendingSheet=Лист на изпращане
|
SendingSheet=Лист на изпращане
|
||||||
ConfirmDeleteSending=Сигурен ли сте, че искате да изтриете тази пратка?
|
ConfirmDeleteSending=Are you sure you want to delete this shipment?
|
||||||
ConfirmValidateSending=Сигурен ли сте, че искате да проверите тази пратка с референтни <b>%s?</b>
|
ConfirmValidateSending=Are you sure you want to validate this shipment with reference <b>%s</b>?
|
||||||
ConfirmCancelSending=Сигурен ли сте, че искате да отмените тази пратка?
|
ConfirmCancelSending=Are you sure you want to cancel this shipment?
|
||||||
DocumentModelSimple=Обикновено документ модел
|
DocumentModelSimple=Обикновено документ модел
|
||||||
DocumentModelMerou=Merou A5 модел
|
DocumentModelMerou=Merou A5 модел
|
||||||
WarningNoQtyLeftToSend=Внимание, няма продукти, които чакат да бъдат изпратени.
|
WarningNoQtyLeftToSend=Внимание, няма продукти, които чакат да бъдат изпратени.
|
||||||
StatsOnShipmentsOnlyValidated=Статистики водени само на валидирани пратки. Използваната дата е датата на валидация на пратката (планираната дата на доставка не се знае винаги)
|
StatsOnShipmentsOnlyValidated=Статистики водени само на валидирани пратки. Използваната дата е датата на валидация на пратката (планираната дата на доставка не се знае винаги)
|
||||||
DateDeliveryPlanned=Планирана дата за доставка
|
DateDeliveryPlanned=Планирана дата за доставка
|
||||||
|
RefDeliveryReceipt=Ref delivery receipt
|
||||||
|
StatusReceipt=Status delivery receipt
|
||||||
DateReceived=Дата на доставка
|
DateReceived=Дата на доставка
|
||||||
SendShippingByEMail=Изпращане на пратка по имейл
|
SendShippingByEMail=Изпращане на пратка по имейл
|
||||||
SendShippingRef=Предаване на пратка %s
|
SendShippingRef=Предаване на пратка %s
|
||||||
|
|||||||
@ -38,7 +38,7 @@ SmsStatusNotSent=Не е изпратено
|
|||||||
SmsSuccessfulySent=Sms правилно изпратен (от %s да %s)
|
SmsSuccessfulySent=Sms правилно изпратен (от %s да %s)
|
||||||
ErrorSmsRecipientIsEmpty=Брой цел е празна
|
ErrorSmsRecipientIsEmpty=Брой цел е празна
|
||||||
WarningNoSmsAdded=Няма нови телефонен номер, да добавите към целевия списък
|
WarningNoSmsAdded=Няма нови телефонен номер, да добавите към целевия списък
|
||||||
ConfirmValidSms=Потвърждавате ли валидиране на тази акция?
|
ConfirmValidSms=Do you confirm validation of this campain?
|
||||||
NbOfUniqueSms=NB DOF уникални телефонни номера
|
NbOfUniqueSms=NB DOF уникални телефонни номера
|
||||||
NbOfSms=Nbre на номера Phon
|
NbOfSms=Nbre на номера Phon
|
||||||
ThisIsATestMessage=Това е тестово съобщение
|
ThisIsATestMessage=Това е тестово съобщение
|
||||||
|
|||||||
@ -2,6 +2,7 @@
|
|||||||
WarehouseCard=Карта на склад
|
WarehouseCard=Карта на склад
|
||||||
Warehouse=Склад
|
Warehouse=Склад
|
||||||
Warehouses=Складове
|
Warehouses=Складове
|
||||||
|
ParentWarehouse=Parent warehouse
|
||||||
NewWarehouse=Нов склад
|
NewWarehouse=Нов склад
|
||||||
WarehouseEdit=Промяна на склад
|
WarehouseEdit=Промяна на склад
|
||||||
MenuNewWarehouse=Нов склад
|
MenuNewWarehouse=Нов склад
|
||||||
@ -45,7 +46,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
|
AllowAddLimitStockByWarehouse=Allow to add limit and desired stock per couple (product, warehouse) instead of per product
|
||||||
IndependantSubProductStock=Product stock and subproduct stock are independant
|
IndependantSubProductStock=Product stock and subproduct stock are independant
|
||||||
QtyDispatched=Брой изпратени
|
QtyDispatched=Брой изпратени
|
||||||
QtyDispatchedShort=Qty dispatched
|
QtyDispatchedShort=Qty dispatched
|
||||||
@ -82,7 +83,7 @@ EstimatedStockValueSell=Value for sell
|
|||||||
EstimatedStockValueShort=Входна стойност наличност
|
EstimatedStockValueShort=Входна стойност наличност
|
||||||
EstimatedStockValue=Входна стойност наличност
|
EstimatedStockValue=Входна стойност наличност
|
||||||
DeleteAWarehouse=Изтриване на склад
|
DeleteAWarehouse=Изтриване на склад
|
||||||
ConfirmDeleteWarehouse=Сигурни ли сте, че желаете да изтриете склада <b>%s</b>?
|
ConfirmDeleteWarehouse=Are you sure you want to delete the warehouse <b>%s</b>?
|
||||||
PersonalStock=Лични запаси %s
|
PersonalStock=Лични запаси %s
|
||||||
ThisWarehouseIsPersonalStock=Този склад представлява личен запас на %s %s
|
ThisWarehouseIsPersonalStock=Този склад представлява личен запас на %s %s
|
||||||
SelectWarehouseForStockDecrease=Изберете склад, да се използва за намаляване на склад
|
SelectWarehouseForStockDecrease=Изберете склад, да се използва за намаляване на склад
|
||||||
@ -125,17 +126,15 @@ InventoryCode=Movement or inventory code
|
|||||||
IsInPackage=Contained into package
|
IsInPackage=Contained into package
|
||||||
WarehouseAllowNegativeTransfer=Stock can be negative
|
WarehouseAllowNegativeTransfer=Stock can be negative
|
||||||
qtyToTranferIsNotEnough=You don't have enough stock from your source warehouse
|
qtyToTranferIsNotEnough=You don't have enough stock from your source warehouse
|
||||||
ShowWarehouse=Show warehouse
|
ShowWarehouse=Покажи склад
|
||||||
MovementCorrectStock=Stock correction for product %s
|
MovementCorrectStock=Stock correction for product %s
|
||||||
MovementTransferStock=Stock transfer of product %s into another warehouse
|
MovementTransferStock=Stock transfer of product %s into another warehouse
|
||||||
InventoryCodeShort=Inv./Mov. code
|
InventoryCodeShort=Inv./Mov. code
|
||||||
NoPendingReceptionOnSupplierOrder=No pending reception due to open supplier order
|
NoPendingReceptionOnSupplierOrder=No pending reception due to open supplier order
|
||||||
ThisSerialAlreadyExistWithDifferentDate=This lot/serial number (<strong>%s</strong>) already exists but with different eatby or sellby date (found <strong>%s</strong> but you enter <strong>%s</strong>).
|
ThisSerialAlreadyExistWithDifferentDate=This lot/serial number (<strong>%s</strong>) already exists but with different eatby or sellby date (found <strong>%s</strong> but you enter <strong>%s</strong>).
|
||||||
OpenAll=Open for all actions
|
OpenAll=Open for all actions
|
||||||
OpenInternal=Open for internal actions
|
OpenInternal=Open only for internal actions
|
||||||
OpenShipping=Open for shippings
|
UseDispatchStatus=Use a dispatch status (approve/refuse) for product lines on supplier order reception
|
||||||
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
|
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
|
ProductStockWarehouseCreated=Stock limit for alert and desired optimal stock correctly created
|
||||||
ProductStockWarehouseUpdated=Stock limit for alert and desired optimal stock correctly updated
|
ProductStockWarehouseUpdated=Stock limit for alert and desired optimal stock correctly updated
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
# Dolibarr language file - Source file is en_US - supplier_proposal
|
# Dolibarr language file - Source file is en_US - supplier_proposal
|
||||||
SupplierProposal=Търговски предложения от доставчици
|
SupplierProposal=Търговски предложения от доставчици
|
||||||
supplier_proposalDESC=Управление на запитвания за цени към доставчици
|
supplier_proposalDESC=Управление на запитвания за цени към доставчици
|
||||||
SupplierProposalNew=New request
|
SupplierProposalNew=Ново запитване
|
||||||
CommRequest=Запитване за цена
|
CommRequest=Запитване за цена
|
||||||
CommRequests=Запитвания за цени
|
CommRequests=Запитвания за цени
|
||||||
SearchRequest=Намиране на запитване
|
SearchRequest=Намиране на запитване
|
||||||
@ -10,16 +10,16 @@ SupplierProposalsDraft=Draft supplier proposals
|
|||||||
LastModifiedRequests=Latest %s modified price requests
|
LastModifiedRequests=Latest %s modified price requests
|
||||||
RequestsOpened=Отваряне на запитване за цена
|
RequestsOpened=Отваряне на запитване за цена
|
||||||
SupplierProposalArea=Зона предложения от доставчици
|
SupplierProposalArea=Зона предложения от доставчици
|
||||||
SupplierProposalShort=Supplier proposal
|
SupplierProposalShort=Предложение от доставчик
|
||||||
SupplierProposals=Предложения доставчици
|
SupplierProposals=Предложения доставчици
|
||||||
SupplierProposalsShort=Supplier proposals
|
SupplierProposalsShort=Предложения доставчици
|
||||||
NewAskPrice=Ново запитване за цена
|
NewAskPrice=Ново запитване за цена
|
||||||
ShowSupplierProposal=Показване на запитване за цена
|
ShowSupplierProposal=Показване на запитване за цена
|
||||||
AddSupplierProposal=Създаване на запитване за цена
|
AddSupplierProposal=Създаване на запитване за цена
|
||||||
SupplierProposalRefFourn=Доставчик реф.
|
SupplierProposalRefFourn=Доставчик реф.
|
||||||
SupplierProposalDate=Дата на доставка
|
SupplierProposalDate=Дата на доставка
|
||||||
SupplierProposalRefFournNotice=Before closing to "Accepted", think to grasp suppliers references.
|
SupplierProposalRefFournNotice=Before closing to "Accepted", think to grasp suppliers references.
|
||||||
ConfirmValidateAsk=Сигурни ли сте, че искате да валидирате това запитване за цена под това име <b>%s</b> ?
|
ConfirmValidateAsk=Are you sure you want to validate this price request under name <b>%s</b>?
|
||||||
DeleteAsk=Изтриване на запитване
|
DeleteAsk=Изтриване на запитване
|
||||||
ValidateAsk=Валидиране на запитване
|
ValidateAsk=Валидиране на запитване
|
||||||
SupplierProposalStatusDraft=Чернова (нуждае се да бъде валидирана)
|
SupplierProposalStatusDraft=Чернова (нуждае се да бъде валидирана)
|
||||||
@ -28,18 +28,19 @@ SupplierProposalStatusClosed=Затворено
|
|||||||
SupplierProposalStatusSigned=Прието
|
SupplierProposalStatusSigned=Прието
|
||||||
SupplierProposalStatusNotSigned=Отказано
|
SupplierProposalStatusNotSigned=Отказано
|
||||||
SupplierProposalStatusDraftShort=Чернова
|
SupplierProposalStatusDraftShort=Чернова
|
||||||
|
SupplierProposalStatusValidatedShort=Валидирано
|
||||||
SupplierProposalStatusClosedShort=Затворено
|
SupplierProposalStatusClosedShort=Затворено
|
||||||
SupplierProposalStatusSignedShort=Прието
|
SupplierProposalStatusSignedShort=Прието
|
||||||
SupplierProposalStatusNotSignedShort=Отказано
|
SupplierProposalStatusNotSignedShort=Отказано
|
||||||
CopyAskFrom=Създаване на запитване чрез копиране на съществуващо запитване
|
CopyAskFrom=Създаване на запитване чрез копиране на съществуващо запитване
|
||||||
CreateEmptyAsk=Създаване на празно запитване
|
CreateEmptyAsk=Създаване на празно запитване
|
||||||
CloneAsk=Клониране на запитване за цена
|
CloneAsk=Клониране на запитване за цена
|
||||||
ConfirmCloneAsk=Сигурни ли сте, че искате да клонирате запитването за цена <b>%s</b> ?
|
ConfirmCloneAsk=Are you sure you want to clone the price request <b>%s</b>?
|
||||||
ConfirmReOpenAsk=Сигурни ли сте, че искате да отворите отново запитването за цена <b>%s</b> ?
|
ConfirmReOpenAsk=Are you sure you want to open back the price request <b>%s</b>?
|
||||||
SendAskByMail=Изпращане на запитване на цена по поща
|
SendAskByMail=Изпращане на запитване на цена по поща
|
||||||
SendAskRef=Изпращане на запитването за цена %s
|
SendAskRef=Изпращане на запитването за цена %s
|
||||||
SupplierProposalCard=Карта на запитване
|
SupplierProposalCard=Карта на запитване
|
||||||
ConfirmDeleteAsk=Сигурни ли сте, че искате да изтриете това запитване за цена ?
|
ConfirmDeleteAsk=Are you sure you want to delete this price request <b>%s</b>?
|
||||||
ActionsOnSupplierProposal=Събития на запитване за цена
|
ActionsOnSupplierProposal=Събития на запитване за цена
|
||||||
DocModelAuroreDescription=Пълен модел на запитване (лого...)
|
DocModelAuroreDescription=Пълен модел на запитване (лого...)
|
||||||
CommercialAsk=Запитване за цена
|
CommercialAsk=Запитване за цена
|
||||||
@ -50,5 +51,5 @@ ListOfSupplierProposal=Списък на запитвания за цени къ
|
|||||||
ListSupplierProposalsAssociatedProject=List of supplier proposals associated with project
|
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=Latest %s price requests
|
||||||
AllPriceRequests=All requests
|
AllPriceRequests=All requests
|
||||||
|
|||||||
@ -1,6 +1,7 @@
|
|||||||
# Dolibarr language file - Source file is en_US - trips
|
# Dolibarr language file - Source file is en_US - trips
|
||||||
ExpenseReport=Доклад разходи
|
ExpenseReport=Доклад разходи
|
||||||
ExpenseReports=Expense reports
|
ExpenseReports=Expense reports
|
||||||
|
ShowExpenseReport=Показване на доклад за разходи
|
||||||
Trips=Expense reports
|
Trips=Expense reports
|
||||||
TripsAndExpenses=Доклади разходи
|
TripsAndExpenses=Доклади разходи
|
||||||
TripsAndExpensesStatistics=Статистики на доклади за разходи
|
TripsAndExpensesStatistics=Статистики на доклади за разходи
|
||||||
@ -8,12 +9,13 @@ TripCard=Карта на доклад за разходи
|
|||||||
AddTrip=Създаване на доклад за разходи
|
AddTrip=Създаване на доклад за разходи
|
||||||
ListOfTrips=Списък на доклади за разходи
|
ListOfTrips=Списък на доклади за разходи
|
||||||
ListOfFees=Списък на такси
|
ListOfFees=Списък на такси
|
||||||
|
TypeFees=Types of fees
|
||||||
ShowTrip=Показване на доклад за разходи
|
ShowTrip=Показване на доклад за разходи
|
||||||
NewTrip=Нов доклад за разходи
|
NewTrip=Нов доклад за разходи
|
||||||
CompanyVisited=Фирмата/организацията е посетена
|
CompanyVisited=Фирмата/организацията е посетена
|
||||||
FeesKilometersOrAmout=Сума или км
|
FeesKilometersOrAmout=Сума или км
|
||||||
DeleteTrip=Изтриване на доклад за разходи
|
DeleteTrip=Изтриване на доклад за разходи
|
||||||
ConfirmDeleteTrip=Сигурни ли сте, че искате да изтриете този доклад за разходи ?
|
ConfirmDeleteTrip=Are you sure you want to delete this expense report?
|
||||||
ListTripsAndExpenses=Списък на доклади за разходи
|
ListTripsAndExpenses=Списък на доклади за разходи
|
||||||
ListToApprove=Очаква одобрение
|
ListToApprove=Очаква одобрение
|
||||||
ExpensesArea=Зона Доклади за разходи
|
ExpensesArea=Зона Доклади за разходи
|
||||||
@ -27,7 +29,7 @@ TripNDF=Информации доклад за разходи
|
|||||||
PDFStandardExpenseReports=Стандартен шаблон за генериране на PDF документ за доклад за разходи
|
PDFStandardExpenseReports=Стандартен шаблон за генериране на PDF документ за доклад за разходи
|
||||||
ExpenseReportLine=Линия на доклад за разходи
|
ExpenseReportLine=Линия на доклад за разходи
|
||||||
TF_OTHER=Друг
|
TF_OTHER=Друг
|
||||||
TF_TRIP=Transportation
|
TF_TRIP=Превоз
|
||||||
TF_LUNCH=Обяд
|
TF_LUNCH=Обяд
|
||||||
TF_METRO=Метро
|
TF_METRO=Метро
|
||||||
TF_TRAIN=Влак
|
TF_TRAIN=Влак
|
||||||
@ -64,21 +66,21 @@ ValidatedWaitingApproval=Валидиран (очаква одобрение)
|
|||||||
|
|
||||||
NOT_AUTHOR=Не сте автор на този доклад за разходи. Операцията е отказана.
|
NOT_AUTHOR=Не сте автор на този доклад за разходи. Операцията е отказана.
|
||||||
|
|
||||||
ConfirmRefuseTrip=Сигурни ли сте, че искате да отхвърлите този доклад за разходи ?
|
ConfirmRefuseTrip=Are you sure you want to deny this expense report?
|
||||||
|
|
||||||
ValideTrip=Одобрение на доклад за разходи
|
ValideTrip=Одобрение на доклад за разходи
|
||||||
ConfirmValideTrip=Сигурни ли сте, че искате да одобрите този доклад за разходи ?
|
ConfirmValideTrip=Are you sure you want to approve this expense report?
|
||||||
|
|
||||||
PaidTrip=Плащане на доклад за разходи
|
PaidTrip=Плащане на доклад за разходи
|
||||||
ConfirmPaidTrip=Сигурни ли сте, че искате да промените статуса на доклад за разходи на "Платен" ?
|
ConfirmPaidTrip=Are you sure you want to change status of this expense report to "Paid"?
|
||||||
|
|
||||||
ConfirmCancelTrip=Сигурни ли сте, че искате да откажете този доклад за разходи ?
|
ConfirmCancelTrip=Are you sure you want to cancel this expense report?
|
||||||
|
|
||||||
BrouillonnerTrip=Преместване обратно на доклад за разходи със статус "Чернова"
|
BrouillonnerTrip=Преместване обратно на доклад за разходи със статус "Чернова"
|
||||||
ConfirmBrouillonnerTrip=Сигурни ли сте, че искате да преместите този доклад за разходи към статус "Чернова" ?
|
ConfirmBrouillonnerTrip=Are you sure you want to move this expense report to status "Draft"?
|
||||||
|
|
||||||
SaveTrip=Валидиране на доклад за разходи
|
SaveTrip=Валидиране на доклад за разходи
|
||||||
ConfirmSaveTrip=Сигурни ли сте, че искате да валидирате този доклад за разходи ?
|
ConfirmSaveTrip=Are you sure you want to validate this expense report?
|
||||||
|
|
||||||
NoTripsToExportCSV=Няма доклад за разходи за експортиране за този период.
|
NoTripsToExportCSV=Няма доклад за разходи за експортиране за този период.
|
||||||
ExpenseReportPayment=Плащане на доклад за разходи
|
ExpenseReportPayment=Плащане на доклад за разходи
|
||||||
|
|||||||
@ -8,7 +8,7 @@ EditPassword=Редактиране на паролата
|
|||||||
SendNewPassword=Регенериране и изпращане на паролата
|
SendNewPassword=Регенериране и изпращане на паролата
|
||||||
ReinitPassword=Регенериране на паролата
|
ReinitPassword=Регенериране на паролата
|
||||||
PasswordChangedTo=Паролата е променена на: %s
|
PasswordChangedTo=Паролата е променена на: %s
|
||||||
SubjectNewPassword=Вашата нова парола за системата
|
SubjectNewPassword=Your new password for %s
|
||||||
GroupRights=Права
|
GroupRights=Права
|
||||||
UserRights=Права
|
UserRights=Права
|
||||||
UserGUISetup=Настройки изглед
|
UserGUISetup=Настройки изглед
|
||||||
@ -19,12 +19,12 @@ DeleteAUser=Изтриване на потребител
|
|||||||
EnableAUser=Активиране на потребител
|
EnableAUser=Активиране на потребител
|
||||||
DeleteGroup=Изтрий
|
DeleteGroup=Изтрий
|
||||||
DeleteAGroup=Изтриване на група
|
DeleteAGroup=Изтриване на група
|
||||||
ConfirmDisableUser=Сигурни ли сте, че желаете да деактивирате потребител <b>%s</b> ?
|
ConfirmDisableUser=Are you sure you want to disable user <b>%s</b>?
|
||||||
ConfirmDeleteUser=Сигурни ли сте, че желаете да изтриете потребител <b>%s</b> ?
|
ConfirmDeleteUser=Are you sure you want to delete user <b>%s</b>?
|
||||||
ConfirmDeleteGroup=Сигурни ли сте, че желаете да изтриете група <b>%s</b> ?
|
ConfirmDeleteGroup=Are you sure you want to delete group <b>%s</b>?
|
||||||
ConfirmEnableUser=Сигурни ли сте, че желаете да активирате потребител <b>%s</b> ?
|
ConfirmEnableUser=Are you sure you want to enable user <b>%s</b>?
|
||||||
ConfirmReinitPassword=Сигурни ли сте, че желаете да генерирате нова парола за потребителя <b>%s</b> ?
|
ConfirmReinitPassword=Are you sure you want to generate a new password for user <b>%s</b>?
|
||||||
ConfirmSendNewPassword=Сигурни ли сте, че желаете да генерирате нова парола за потребител <b>%s</b> и да му я изпратите?
|
ConfirmSendNewPassword=Are you sure you want to generate and send new password for user <b>%s</b>?
|
||||||
NewUser=Нов потребител
|
NewUser=Нов потребител
|
||||||
CreateUser=Създай потребител
|
CreateUser=Създай потребител
|
||||||
LoginNotDefined=Име за вход не е дефинирано.
|
LoginNotDefined=Име за вход не е дефинирано.
|
||||||
@ -82,9 +82,9 @@ UserDeleted=Потребител %s е премахнат
|
|||||||
NewGroupCreated=Група %s е създадена
|
NewGroupCreated=Група %s е създадена
|
||||||
GroupModified=Група %s е променена
|
GroupModified=Група %s е променена
|
||||||
GroupDeleted=Група %s е премахната
|
GroupDeleted=Група %s е премахната
|
||||||
ConfirmCreateContact=Сигурни ли сте, че желаете да създадете профил в системата за този контакт?
|
ConfirmCreateContact=Are you sure you want to create a Dolibarr account for this contact?
|
||||||
ConfirmCreateLogin=Сигурни ли сте, че желаете да създадете профил в системата за този член?
|
ConfirmCreateLogin=Are you sure you want to create a Dolibarr account for this member?
|
||||||
ConfirmCreateThirdParty=Сигурни ли сте, че желаете да създадете контрагент за този член?
|
ConfirmCreateThirdParty=Are you sure you want to create a third party for this member?
|
||||||
LoginToCreate=Данни за вход за създаване
|
LoginToCreate=Данни за вход за създаване
|
||||||
NameToCreate=Име на контрагент за създаване
|
NameToCreate=Име на контрагент за създаване
|
||||||
YourRole=Вашите роли
|
YourRole=Вашите роли
|
||||||
|
|||||||
@ -23,7 +23,7 @@ WithdrawalsSetup=Direct debit payment setup
|
|||||||
WithdrawStatistics=Direct debit payment statistics
|
WithdrawStatistics=Direct debit payment statistics
|
||||||
WithdrawRejectStatistics=Direct debit payment reject statistics
|
WithdrawRejectStatistics=Direct debit payment reject statistics
|
||||||
LastWithdrawalReceipt=Latest %s direct debit receipts
|
LastWithdrawalReceipt=Latest %s direct debit receipts
|
||||||
MakeWithdrawRequest=Уверете се оттегли искането
|
MakeWithdrawRequest=Make a direct debit payment request
|
||||||
ThirdPartyBankCode=Банков код на контрагента
|
ThirdPartyBankCode=Банков код на контрагента
|
||||||
NoInvoiceCouldBeWithdrawed=Не теглене фактура с успех. Уверете се, че фактура са дружества с валиден БАН.
|
NoInvoiceCouldBeWithdrawed=Не теглене фактура с успех. Уверете се, че фактура са дружества с валиден БАН.
|
||||||
ClassCredited=Класифицирайте кредитирани
|
ClassCredited=Класифицирайте кредитирани
|
||||||
@ -67,7 +67,7 @@ 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 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.
|
DoStandingOrdersBeforePayments=This tab allows you to request a direct debit payment order. Once done, go into menu Bank->Direct Debit orders 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=Това също ще приложи заплащания към фактури и ще ги класифицира като "Платени"
|
||||||
@ -85,7 +85,7 @@ SEPALegalText=By signing this mandate form, you authorize (A) %s to send instruc
|
|||||||
CreditorIdentifier=Creditor Identifier
|
CreditorIdentifier=Creditor Identifier
|
||||||
CreditorName=Creditor’s Name
|
CreditorName=Creditor’s Name
|
||||||
SEPAFillForm=(B) Please complete all the fields marked *
|
SEPAFillForm=(B) Please complete all the fields marked *
|
||||||
SEPAFormYourName=Your name
|
SEPAFormYourName=Вашето име
|
||||||
SEPAFormYourBAN=Your Bank Account Name (IBAN)
|
SEPAFormYourBAN=Your Bank Account Name (IBAN)
|
||||||
SEPAFormYourBIC=Your Bank Identifier Code (BIC)
|
SEPAFormYourBIC=Your Bank Identifier Code (BIC)
|
||||||
SEPAFrstOrRecur=Type of payment
|
SEPAFrstOrRecur=Type of payment
|
||||||
|
|||||||
@ -10,4 +10,6 @@ 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_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
|
descWORKFLOW_ORDER_CLASSIFY_SHIPPED_SHIPPING=Classify linked source order to shipped when a shipment is validated and quantity shipped is the same as in order
|
||||||
|
AutomaticCreation=Automatic creation
|
||||||
|
AutomaticClassification=Automatic classification
|
||||||
|
|||||||
@ -8,60 +8,90 @@ ACCOUNTING_EXPORT_AMOUNT=Export amount
|
|||||||
ACCOUNTING_EXPORT_DEVISE=Export currency
|
ACCOUNTING_EXPORT_DEVISE=Export currency
|
||||||
Selectformat=Select the format for the file
|
Selectformat=Select the format for the file
|
||||||
ACCOUNTING_EXPORT_PREFIX_SPEC=Specify the prefix for the file name
|
ACCOUNTING_EXPORT_PREFIX_SPEC=Specify the prefix for the file name
|
||||||
|
ThisService=This service
|
||||||
|
ThisProduct=This product
|
||||||
|
DefaultForService=Default for service
|
||||||
|
DefaultForProduct=Default for product
|
||||||
|
CantSuggest=Can't suggest
|
||||||
|
AccountancySetupDoneFromAccountancyMenu=Most setup of the accountancy is done from the menu %s
|
||||||
ConfigAccountingExpert=Configuration of the module accounting expert
|
ConfigAccountingExpert=Configuration of the module accounting expert
|
||||||
|
Journalization=Journalization
|
||||||
Journaux=Journals
|
Journaux=Journals
|
||||||
JournalFinancial=Financial journals
|
JournalFinancial=Financial journals
|
||||||
BackToChartofaccounts=Return chart of accounts
|
BackToChartofaccounts=Return chart of accounts
|
||||||
|
Chartofaccounts=Chart of accounts
|
||||||
|
CurrentDedicatedAccountingAccount=Current dedicated account
|
||||||
|
AssignDedicatedAccountingAccount=New account to assign
|
||||||
|
InvoiceLabel=Invoice label
|
||||||
|
OverviewOfAmountOfLinesNotBound=Overview of amount of lines not bound to accounting account
|
||||||
|
OverviewOfAmountOfLinesBound=Overview of amount of lines already bound to accounting account
|
||||||
|
OtherInfo=Other information
|
||||||
|
|
||||||
AccountancyArea=Accountancy area
|
AccountancyArea=Accountancy area
|
||||||
AccountancyAreaDescIntro=Usage of the accountancy module is done in several step:
|
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...
|
AccountancyAreaDescActionOnce=The following actions are usually executed one time only, or once per year...
|
||||||
|
AccountancyAreaDescActionOnceBis=Next steps should be done to save you time in future by suggesting you the correct default accounting account when making thee journalization (writing record in Journals and General ledger)
|
||||||
AccountancyAreaDescActionFreq=The following actions are usually executed every month, week or day for very large companies...
|
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
|
AccountancyAreaDescChartModel=STEP %s: Create a model of 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.
|
AccountancyAreaDescChart=STEP %s: Create or check content of your chart of account from menu %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.
|
AccountancyAreaDescBank=STEP %s: Check the binding between bank accounts and accounting account is done. Complete missing bindings. 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.
|
AccountancyAreaDescVat=STEP %s: Check the binding between vat rates and accounting account is done. Complete missing bindings. 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.
|
AccountancyAreaDescExpenseReport=STEP %s: Check the binding between type of expense report and accounting account is done. Complete missing bindings. You can set accounting accounts to use for each VAT from page %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.
|
AccountancyAreaDescSal=STEP %s: Check the binding between salaries payment and accounting account is done. Complete missing bindings. 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.
|
AccountancyAreaDescContrib=STEP %s: Check the binding between special expences (miscellaneous taxes) and accounting account is done. Complete missing bindings. 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. You can set the account dedicated for that from the menu entry %s.
|
||||||
|
AccountancyAreaDescMisc=STEP %s: Check the default binding between miscellaneous transaction lines and accounting account is done. Complete missing bindings. For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescProd=STEP %s: Check the binding between products/services and accounting account is done. Complete missing bindings. For this you can use the menu entry %s.
|
||||||
|
AccountancyAreaDescLoan=STEP %s: Check the binding between loans payment and accounting account is done. Complete missing bindings. For this you can use 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.
|
AccountancyAreaDescCustomer=STEP %s: Check the binding between existing customer invoice lines and accounting account is done, so application will be able to journalize transactions in General Ledger in one click. Complete missing bindings. 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.
|
AccountancyAreaDescSupplier=STEP %s: Check the binding between existing supplier invoice lines and accounting account is done, so application will be able to journalize transactions in General Ledger in one click. Complete missing bindings. 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
|
AccountancyAreaDescWriteRecords=STEP %s: Write transactions into the General Ledger. For this, go into each Journal, and click into button "Journalize transactions in General Ledger".
|
||||||
|
AccountancyAreaDescAnalyze=STEP %s: Add or edit existing transactions and generate reports and exports.
|
||||||
|
|
||||||
Selectchartofaccounts=Select a chart of accounts
|
AccountancyAreaDescClosePeriod=STEP %s: Close period so we can't make modification in a future.
|
||||||
|
|
||||||
|
MenuAccountancy=Accountancy
|
||||||
|
Selectchartofaccounts=Select active chart of accounts
|
||||||
|
ChangeAndLoad=Change and load
|
||||||
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 suggested
|
||||||
|
MenuDefaultAccounts=Default accounts
|
||||||
|
MenuVatAccounts=Vat accounts
|
||||||
|
MenuTaxAccounts=Tax accounts
|
||||||
|
MenuExpenseReportAccounts=Expense report accounts
|
||||||
|
MenuLoanAccounts=Loan accounts
|
||||||
|
MenuProductsAccounts=Product accounts
|
||||||
|
ProductsBinding=Products accounts
|
||||||
Ventilation=Binding to accounts
|
Ventilation=Binding to accounts
|
||||||
ProductsBinding=Products bindings
|
|
||||||
|
|
||||||
MenuAccountancy=Accountancy
|
|
||||||
CustomersVentilation=Customer invoice binding
|
CustomersVentilation=Customer invoice binding
|
||||||
SuppliersVentilation=Supplier invoice binding
|
SuppliersVentilation=Supplier invoice binding
|
||||||
Reports=Reports
|
ExpenseReportsVentilation=Expense report binding
|
||||||
NewAccount=New accounting account
|
|
||||||
Create=Create
|
|
||||||
CreateMvts=Create new transaction
|
CreateMvts=Create new transaction
|
||||||
UpdateMvts=Modification of a transaction
|
UpdateMvts=Modification of a transaction
|
||||||
WriteBookKeeping=Record operations in General Ledger
|
WriteBookKeeping=Journalize transactions 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
|
||||||
|
TotalExpenseReport=Total expense report
|
||||||
InvoiceLines=Lines of invoices to bind
|
InvoiceLines=Lines of invoices to bind
|
||||||
InvoiceLinesDone=Bound lines of invoices
|
InvoiceLinesDone=Bound lines of invoices
|
||||||
|
ExpenseReportLines=Lines of expense reports to bind
|
||||||
|
ExpenseReportLinesDone=Bound lines of expense reports
|
||||||
IntoAccount=Bind line with the accounting account
|
IntoAccount=Bind line with the accounting account
|
||||||
|
|
||||||
Ventilate=Bind
|
|
||||||
|
|
||||||
|
Ventilate=Bind
|
||||||
|
LineId=Id line
|
||||||
Processing=Processing
|
Processing=Processing
|
||||||
EndProcessing=The end of processing
|
EndProcessing=Process terminated.
|
||||||
AnyLineVentilate=Any lines to bind
|
|
||||||
SelectedLines=Selected lines
|
SelectedLines=Selected lines
|
||||||
Lineofinvoice=Line of invoice
|
Lineofinvoice=Line of invoice
|
||||||
|
LineOfExpenseReport=Line of expense report
|
||||||
|
NoAccountSelected=No accounting account selected
|
||||||
VentilatedinAccount=Binded successfully to the accounting account
|
VentilatedinAccount=Binded successfully to the accounting account
|
||||||
NotVentilatedinAccount=Not bound to the accounting account
|
NotVentilatedinAccount=Not bound to the accounting account
|
||||||
XLineSuccessfullyBinded=%s products/services successfuly bound to an accounting account
|
XLineSuccessfullyBinded=%s products/services successfuly bound to an accounting account
|
||||||
@ -71,12 +101,12 @@ ACCOUNTING_LIMIT_LIST_VENTILATION=Number of elements to bind shown by page (maxi
|
|||||||
ACCOUNTING_LIST_SORT_VENTILATION_TODO=Begin the sorting of the page "Binding to do" 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 page "Binding done" 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=Truncate product & services description in listings after x chars (Best = 50)
|
||||||
ACCOUNTING_LENGTH_DESCRIPTION_ACCOUNT=Length for displaying product & services account description form in listings (Best = 50)
|
ACCOUNTING_LENGTH_DESCRIPTION_ACCOUNT=Truncate product & services account description form in listings after x chars (Best = 50)
|
||||||
ACCOUNTING_LENGTH_GACCOUNT=Length of the general accounting accounts
|
ACCOUNTING_LENGTH_GACCOUNT=Length of the general accounting accounts
|
||||||
ACCOUNTING_LENGTH_AACCOUNT=Length of the third party accounting 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".
|
ACCOUNTING_MANAGE_ZERO=Manage the zero at the end of an accounting account. Needed by some countries. Disabled by default. If set to on, you must also set the 2 following parameters (or it is ignored)
|
||||||
BANK_DISABLE_DIRECT_INPUT=Disable free input of bank transactions (Enabled by default with this module).
|
BANK_DISABLE_DIRECT_INPUT=Disable direct recording of transaction in bank account
|
||||||
|
|
||||||
ACCOUNTING_SELL_JOURNAL=Sell journal
|
ACCOUNTING_SELL_JOURNAL=Sell journal
|
||||||
ACCOUNTING_PURCHASE_JOURNAL=Purchase journal
|
ACCOUNTING_PURCHASE_JOURNAL=Purchase journal
|
||||||
@ -84,14 +114,14 @@ ACCOUNTING_MISCELLANEOUS_JOURNAL=Miscellaneous journal
|
|||||||
ACCOUNTING_EXPENSEREPORT_JOURNAL=Expense report journal
|
ACCOUNTING_EXPENSEREPORT_JOURNAL=Expense report journal
|
||||||
ACCOUNTING_SOCIAL_JOURNAL=Social journal
|
ACCOUNTING_SOCIAL_JOURNAL=Social journal
|
||||||
|
|
||||||
ACCOUNTING_ACCOUNT_TRANSFER_CASH=Account of transfer
|
ACCOUNTING_ACCOUNT_TRANSFER_CASH=Accounting account of transfer
|
||||||
ACCOUNTING_ACCOUNT_SUSPENSE=Account of wait
|
ACCOUNTING_ACCOUNT_SUSPENSE=Accounting account of wait
|
||||||
DONATION_ACCOUNTINGACCOUNT=Account to register donations
|
DONATION_ACCOUNTINGACCOUNT=Accounting account to register donations
|
||||||
|
|
||||||
ACCOUNTING_PRODUCT_BUY_ACCOUNT=Accounting account by default for bought products (if not defined in the product sheet)
|
ACCOUNTING_PRODUCT_BUY_ACCOUNT=Accounting account by default for bought products (used if not defined in the product sheet)
|
||||||
ACCOUNTING_PRODUCT_SOLD_ACCOUNT=Accounting account by default for the sold products (if not defined in the product sheet)
|
ACCOUNTING_PRODUCT_SOLD_ACCOUNT=Accounting account by default for the sold products (used if not defined in the product sheet)
|
||||||
ACCOUNTING_SERVICE_BUY_ACCOUNT=Accounting account by default for the bought services (if not defined in the service sheet)
|
ACCOUNTING_SERVICE_BUY_ACCOUNT=Accounting account by default for the bought services (used if not defined in the service sheet)
|
||||||
ACCOUNTING_SERVICE_SOLD_ACCOUNT=Accounting account by default for the sold services (if not defined in the service sheet)
|
ACCOUNTING_SERVICE_SOLD_ACCOUNT=Accounting account by default for the sold services (used if not defined in the service sheet)
|
||||||
|
|
||||||
Doctype=Type of document
|
Doctype=Type of document
|
||||||
Docdate=Date
|
Docdate=Date
|
||||||
@ -101,22 +131,24 @@ Labelcompte=Label account
|
|||||||
Sens=Sens
|
Sens=Sens
|
||||||
Codejournal=Journal
|
Codejournal=Journal
|
||||||
NumPiece=Piece number
|
NumPiece=Piece number
|
||||||
|
TransactionNumShort=Num. transaction
|
||||||
AccountingCategory=Accounting category
|
AccountingCategory=Accounting category
|
||||||
|
GroupByAccountAccounting=Group by accounting account
|
||||||
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 lines 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 specific journal. At least one criteria is required.
|
||||||
ConfirmDeleteMvtPartial=This will delete the selected line(s) of the general ledger
|
ConfirmDeleteMvtPartial=This will delete the selected line(s) of the general ledger
|
||||||
DelBookKeeping=Delete the records of the general ledger
|
DelBookKeeping=Delete record of the general ledger
|
||||||
DescSellsJournal=Sells journal
|
|
||||||
DescPurchasesJournal=Purchases journal
|
|
||||||
FinanceJournal=Finance journal
|
FinanceJournal=Finance journal
|
||||||
|
ExpenseReportsJournal=Expense reports 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.
|
DescJournalOnlyBindedVisible=This is a view of record that are bound to products/services accountancy account and can be recorded into the General Ledger.
|
||||||
VATAccountNotDefined=Account for VAT not defined
|
VATAccountNotDefined=Account for VAT not defined
|
||||||
ThirdpartyAccountNotDefined=Account for third party not defined
|
ThirdpartyAccountNotDefined=Account for third party not defined
|
||||||
ProductAccountNotDefined=Account for product not defined
|
ProductAccountNotDefined=Account for product not defined
|
||||||
|
FeeAccountNotDefined=Account for fee not defined
|
||||||
BankAccountNotDefined=Account for bank not defined
|
BankAccountNotDefined=Account for bank not defined
|
||||||
CustomerInvoicePayment=Payment of invoice customer
|
CustomerInvoicePayment=Payment of invoice customer
|
||||||
ThirdPartyAccount=Thirdparty account
|
ThirdPartyAccount=Thirdparty account
|
||||||
@ -127,12 +159,10 @@ 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 third party customers and 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
|
||||||
|
|
||||||
Pcgtype=Class of account
|
Pcgtype=Class of account
|
||||||
Pcgsubtype=Under class of account
|
Pcgsubtype=Under class of account
|
||||||
Accountparent=Root of the account
|
|
||||||
|
|
||||||
TotalVente=Total turnover before tax
|
TotalVente=Total turnover before tax
|
||||||
TotalMarge=Total sales margin
|
TotalMarge=Total sales margin
|
||||||
@ -145,6 +175,10 @@ ChangeAccount=Change the product/service accounting account for selected lines w
|
|||||||
Vide=-
|
Vide=-
|
||||||
DescVentilSupplier=Consult here the list of supplier invoice lines bound or not yet bound to a product accounting account
|
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
|
||||||
|
DescVentilTodoExpenseReport=Bind expense report lines not already bound with a fee accounting account
|
||||||
|
DescVentilExpenseReport=Consult here the list of expense report lines bound (or not) to a fee accounting account
|
||||||
|
DescVentilExpenseReportMore=If you setup accounting account on type of expense report lines, the application will be able to make all the binding between your expense report 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 fees dictionary 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>".
|
||||||
|
DescVentilDoneExpenseReport=Consult here the list of the lines of expenses reports and their fees accounting account
|
||||||
|
|
||||||
ValidateHistory=Bind Automatically
|
ValidateHistory=Bind Automatically
|
||||||
AutomaticBindingDone=Automatic binding done
|
AutomaticBindingDone=Automatic binding done
|
||||||
@ -152,7 +186,7 @@ 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=Binding card
|
FicheVentilation=Binding card
|
||||||
GeneralLedgerIsWritten=Operations are written in the general ledger
|
GeneralLedgerIsWritten=Transactions are written in the general ledger
|
||||||
GeneralLedgerSomeRecordWasNotRecorded=Some of the transactions could not be recorded.
|
GeneralLedgerSomeRecordWasNotRecorded=Some of the transactions could not be recorded.
|
||||||
NoNewRecordSaved=No new record saved
|
NoNewRecordSaved=No new record saved
|
||||||
ListOfProductsWithoutAccountingAccount=List of products not bound to any accounting account
|
ListOfProductsWithoutAccountingAccount=List of products not bound to any accounting account
|
||||||
@ -178,22 +212,27 @@ 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 chart of accounts 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.
|
||||||
|
DefaultBindingDesc=This page can be used to set a default account to use to link transactions record about payment salaries, donation, taxes and vat when no specific accounting account were already set.
|
||||||
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 accounting account for sales.
|
||||||
OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
|
OptionModeProductBuyDesc=Show all products with accounting account for purchases.
|
||||||
CleanFixHistory=Remove accountancy code from lines that not exists into charts of account
|
CleanFixHistory=Remove accountancy code from lines that not exists into charts of account
|
||||||
CleanHistory=Reset all bindings for selected year
|
CleanHistory=Reset all bindings for selected year
|
||||||
|
|
||||||
|
WithoutValidAccount=Without valid dedicated account
|
||||||
|
WithValidAccount=With valid dedicated account
|
||||||
|
ValueNotIntoChartOfAccount=This value of accounting account does not exist into chart of account
|
||||||
|
|
||||||
## Dictionary
|
## Dictionary
|
||||||
Range=Range of accounting account
|
Range=Range of accounting account
|
||||||
Calculated=Calculated
|
Calculated=Calculated
|
||||||
Formula=Formula
|
Formula=Formula
|
||||||
|
|
||||||
## Error
|
## Error
|
||||||
ErrorNoAccountingCategoryForThisCountry=No accounting category are available for this country
|
ErrorNoAccountingCategoryForThisCountry=No accounting category available for country %s (See Home - Setup - Dictionaries)
|
||||||
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
|
||||||
|
|
||||||
@ -201,4 +240,3 @@ Binded=Lines bound
|
|||||||
ToBind=Lines to bind
|
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.
|
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.
|
||||||
|
|
||||||
|
|||||||
@ -22,7 +22,7 @@ SessionId=Session ID
|
|||||||
SessionSaveHandler=Handler to save sessions
|
SessionSaveHandler=Handler to save sessions
|
||||||
SessionSavePath=Storage session localization
|
SessionSavePath=Storage session localization
|
||||||
PurgeSessions=Purge of sessions
|
PurgeSessions=Purge of sessions
|
||||||
ConfirmPurgeSessions=Do you really want to purge all sessions ? This will disconnect every user (except yourself).
|
ConfirmPurgeSessions=Do you really want to purge all sessions? This will disconnect every user (except yourself).
|
||||||
NoSessionListWithThisHandler=Save session handler configured in your PHP does not allow to list all running sessions.
|
NoSessionListWithThisHandler=Save session handler configured in your PHP does not allow to list all running sessions.
|
||||||
LockNewSessions=Lock new connections
|
LockNewSessions=Lock new connections
|
||||||
ConfirmLockNewSessions=Are you sure you want to restrict any new Dolibarr connection to yourself. Only user <b>%s</b> will be able to connect after that.
|
ConfirmLockNewSessions=Are you sure you want to restrict any new Dolibarr connection to yourself. Only user <b>%s</b> will be able to connect after that.
|
||||||
@ -53,15 +53,13 @@ ErrorModuleRequireDolibarrVersion=Error, this module requires Dolibarr version %
|
|||||||
ErrorDecimalLargerThanAreForbidden=Error, a precision higher than <b>%s</b> is not supported.
|
ErrorDecimalLargerThanAreForbidden=Error, a precision higher than <b>%s</b> is not supported.
|
||||||
DictionarySetup=Dictionary setup
|
DictionarySetup=Dictionary setup
|
||||||
Dictionary=Dictionaries
|
Dictionary=Dictionaries
|
||||||
Chartofaccounts=Chart of accounts
|
|
||||||
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)
|
||||||
UseSearchToSelectCompanyTooltip=Also if you have a large number of third parties (> 100 000), you can increase speed by setting constant COMPANY_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string.
|
UseSearchToSelectCompanyTooltip=Also if you have a large number of third parties (> 100 000), you can increase speed by setting constant COMPANY_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string.
|
||||||
UseSearchToSelectContactTooltip=Also if you have a large number of third parties (> 100 000), you can increase speed by setting constant CONTACT_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string.
|
UseSearchToSelectContactTooltip=Also if you have a large number of third parties (> 100 000), you can increase speed by setting constant CONTACT_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string.
|
||||||
DelaiedFullListToSelectCompany=Wait you press a key before loading content of thirdparties combo list (This may increase performance if you have a large number of thirdparties)
|
DelaiedFullListToSelectCompany=Wait you press a key before loading content of thirdparties combo list (This may increase performance if you have a large number of thirdparties, but it is less convenient)
|
||||||
DelaiedFullListToSelectContact=Wait you press a key before loading content of contact combo list (This may increase performance if you have a large number of contact)
|
DelaiedFullListToSelectContact=Wait you press a key before loading content of contact combo list (This may increase performance if you have a large number of contact, but it is less convenient)
|
||||||
NumberOfKeyToSearch=Nbr of characters to trigger search: %s
|
NumberOfKeyToSearch=Nbr of characters to trigger search: %s
|
||||||
NotAvailableWhenAjaxDisabled=Not available when Ajax disabled
|
NotAvailableWhenAjaxDisabled=Not available when Ajax disabled
|
||||||
AllowToSelectProjectFromOtherCompany=On document of a third party, can choose a project linked to another third party
|
AllowToSelectProjectFromOtherCompany=On document of a third party, can choose a project linked to another third party
|
||||||
@ -143,7 +141,7 @@ PurgeRunNow=Purge now
|
|||||||
PurgeNothingToDelete=No directory or files to delete.
|
PurgeNothingToDelete=No directory or files to delete.
|
||||||
PurgeNDirectoriesDeleted=<b>%s</b> files or directories deleted.
|
PurgeNDirectoriesDeleted=<b>%s</b> files or directories deleted.
|
||||||
PurgeAuditEvents=Purge all security events
|
PurgeAuditEvents=Purge all security events
|
||||||
ConfirmPurgeAuditEvents=Are you sure you want to purge all security events ? All security logs will be deleted, no other data will be removed.
|
ConfirmPurgeAuditEvents=Are you sure you want to purge all security events? All security logs will be deleted, no other data will be removed.
|
||||||
GenerateBackup=Generate backup
|
GenerateBackup=Generate backup
|
||||||
Backup=Backup
|
Backup=Backup
|
||||||
Restore=Restore
|
Restore=Restore
|
||||||
@ -178,7 +176,7 @@ ExtendedInsert=Extended INSERT
|
|||||||
NoLockBeforeInsert=No lock commands around INSERT
|
NoLockBeforeInsert=No lock commands around INSERT
|
||||||
DelayedInsert=Delayed insert
|
DelayedInsert=Delayed insert
|
||||||
EncodeBinariesInHexa=Encode binary data in hexadecimal
|
EncodeBinariesInHexa=Encode binary data in hexadecimal
|
||||||
IgnoreDuplicateRecords=Ignore errors of duplicate records (INSERT IGNORE)
|
IgnoreDuplicateRecords=Ignore errors of duplicate record (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
|
FeatureAvailableOnlyOnStable=Feature only available on official stable versions
|
||||||
@ -225,6 +223,16 @@ HelpCenterDesc1=This area can help you to get a Help support service on Dolibarr
|
|||||||
HelpCenterDesc2=Some part of this service are available in <b>english only</b>.
|
HelpCenterDesc2=Some part of this service are available in <b>english only</b>.
|
||||||
CurrentMenuHandler=Current menu handler
|
CurrentMenuHandler=Current menu handler
|
||||||
MeasuringUnit=Measuring unit
|
MeasuringUnit=Measuring unit
|
||||||
|
LeftMargin=Left margin
|
||||||
|
TopMargin=Top margin
|
||||||
|
PaperSize=Paper type
|
||||||
|
Orientation=Orientation
|
||||||
|
SpaceX=Space X
|
||||||
|
SpaceY=Space Y
|
||||||
|
FontSize=Font size
|
||||||
|
Content=Content
|
||||||
|
NoticePeriod=Notice period
|
||||||
|
NewByMonth=New by month
|
||||||
Emails=E-mails
|
Emails=E-mails
|
||||||
EMailsSetup=E-mails setup
|
EMailsSetup=E-mails setup
|
||||||
EMailsDesc=This page allows you to overwrite your PHP parameters for e-mails sending. In most cases on Unix/Linux OS, your PHP setup is correct and these parameters are useless.
|
EMailsDesc=This page allows you to overwrite your PHP parameters for e-mails sending. In most cases on Unix/Linux OS, your PHP setup is correct and these parameters are useless.
|
||||||
@ -244,6 +252,9 @@ MAIN_MAIL_EMAIL_STARTTLS= Use TLS (STARTTLS) encrypt
|
|||||||
MAIN_DISABLE_ALL_SMS=Disable all SMS sendings (for test purposes or demos)
|
MAIN_DISABLE_ALL_SMS=Disable all SMS sendings (for test purposes or demos)
|
||||||
MAIN_SMS_SENDMODE=Method to use to send SMS
|
MAIN_SMS_SENDMODE=Method to use to send SMS
|
||||||
MAIN_MAIL_SMS_FROM=Default sender phone number for Sms sending
|
MAIN_MAIL_SMS_FROM=Default sender phone number for Sms sending
|
||||||
|
MAIN_MAIL_DEFAULT_FROMTYPE=Sender e-mail by default for manual sendings (User email or Company email)
|
||||||
|
UserEmail=User email
|
||||||
|
CompanyEmail=Company email
|
||||||
FeatureNotAvailableOnLinux=Feature not available on Unix like systems. Test your sendmail program locally.
|
FeatureNotAvailableOnLinux=Feature not available on Unix like systems. Test your sendmail program locally.
|
||||||
SubmitTranslation=If translation for this language is not complete or you find errors, you can correct this by editing files into directory <b>langs/%s</b> and submit your change to www.transifex.com/dolibarr-association/dolibarr/
|
SubmitTranslation=If translation for this language is not complete or you find errors, you can correct this by editing files into directory <b>langs/%s</b> and submit your change to www.transifex.com/dolibarr-association/dolibarr/
|
||||||
SubmitTranslationENUS=If translation for this language is not complete or you find errors, you can correct this by editing files into directory <b>langs/%s</b> and submit modified files on dolibarr.org/forum or for developers on github.com/Dolibarr/dolibarr.
|
SubmitTranslationENUS=If translation for this language is not complete or you find errors, you can correct this by editing files into directory <b>langs/%s</b> and submit modified files on dolibarr.org/forum or for developers on github.com/Dolibarr/dolibarr.
|
||||||
@ -303,7 +314,7 @@ UseACacheDelay= Delay for caching export response in seconds (0 or empty for no
|
|||||||
DisableLinkToHelpCenter=Hide link "<b>Need help or support</b>" on login page
|
DisableLinkToHelpCenter=Hide link "<b>Need help or support</b>" on login page
|
||||||
DisableLinkToHelp=Hide link to online help "<b>%s</b>"
|
DisableLinkToHelp=Hide link to online help "<b>%s</b>"
|
||||||
AddCRIfTooLong=There is no automatic wrapping, so if line is out of page on documents because too long, you must add yourself carriage returns in the textarea.
|
AddCRIfTooLong=There is no automatic wrapping, so if line is out of page on documents because too long, you must add yourself carriage returns in the textarea.
|
||||||
ConfirmPurge=Are you sure you want to execute this purge ?<br>This will delete definitely all your data files with no way to restore them (ECM files, attached files...).
|
ConfirmPurge=Are you sure you want to execute this purge?<br>This will delete definitely all your data files with no way to restore them (ECM files, attached files...).
|
||||||
MinLength=Minimum length
|
MinLength=Minimum length
|
||||||
LanguageFilesCachedIntoShmopSharedMemory=Files .lang loaded in shared memory
|
LanguageFilesCachedIntoShmopSharedMemory=Files .lang loaded in shared memory
|
||||||
ExamplesWithCurrentSetup=Examples with current running setup
|
ExamplesWithCurrentSetup=Examples with current running setup
|
||||||
@ -353,6 +364,7 @@ Boolean=Boolean (Checkbox)
|
|||||||
ExtrafieldPhone = Phone
|
ExtrafieldPhone = Phone
|
||||||
ExtrafieldPrice = Price
|
ExtrafieldPrice = Price
|
||||||
ExtrafieldMail = Email
|
ExtrafieldMail = Email
|
||||||
|
ExtrafieldUrl = Url
|
||||||
ExtrafieldSelect = Select list
|
ExtrafieldSelect = Select list
|
||||||
ExtrafieldSelectList = Select from table
|
ExtrafieldSelectList = Select from table
|
||||||
ExtrafieldSeparator=Separator
|
ExtrafieldSeparator=Separator
|
||||||
@ -364,8 +376,8 @@ ExtrafieldLink=Link to an object
|
|||||||
ExtrafieldParamHelpselect=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...<br><br>In order to have the list depending on another :<br>1,value1|parent_list_code:parent_key<br>2,value2|parent_list_code:parent_key
|
ExtrafieldParamHelpselect=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...<br><br>In order to have the list depending on another :<br>1,value1|parent_list_code:parent_key<br>2,value2|parent_list_code:parent_key
|
||||||
ExtrafieldParamHelpcheckbox=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
|
ExtrafieldParamHelpcheckbox=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
|
||||||
ExtrafieldParamHelpradio=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
|
ExtrafieldParamHelpradio=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
|
||||||
ExtrafieldParamHelpsellist=Parameters list comes from a table<br>Syntax : table_name:label_field:id_field::filter<br>Example : c_typent:libelle:id::filter<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntaxt extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
|
ExtrafieldParamHelpsellist=Parameters list comes from a table<br>Syntax : table_name:label_field:id_field::filter<br>Example : c_typent:libelle:id::filter<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
|
||||||
ExtrafieldParamHelpchkbxlst=Parameters list comes from a table<br>Syntax : table_name:label_field:id_field::filter<br>Example : c_typent:libelle:id::filter<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntaxt extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
|
ExtrafieldParamHelpchkbxlst=Parameters list comes from a table<br>Syntax : table_name:label_field:id_field::filter<br>Example : c_typent:libelle:id::filter<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
|
||||||
ExtrafieldParamHelplink=Parameters must be ObjectName:Classpath<br>Syntax : ObjectName:Classpath<br>Example : Societe:societe/class/societe.class.php
|
ExtrafieldParamHelplink=Parameters must be ObjectName:Classpath<br>Syntax : ObjectName:Classpath<br>Example : Societe:societe/class/societe.class.php
|
||||||
LibraryToBuildPDF=Library used for PDF generation
|
LibraryToBuildPDF=Library used for PDF generation
|
||||||
WarningUsingFPDF=Warning: Your <b>conf.php</b> contains directive <b>dolibarr_pdf_force_fpdf=1</b>. This means you use the FPDF library to generate PDF files. This library is old and does not support a lot of features (Unicode, image transparency, cyrillic, arab and asiatic languages, ...), so you may experience errors during PDF generation.<br>To solve this and have a full support of PDF generation, please download <a href="http://www.tcpdf.org/" target="_blank">TCPDF library</a>, then comment or remove the line <b>$dolibarr_pdf_force_fpdf=1</b>, and add instead <b>$dolibarr_lib_TCPDF_PATH='path_to_TCPDF_dir'</b>
|
WarningUsingFPDF=Warning: Your <b>conf.php</b> contains directive <b>dolibarr_pdf_force_fpdf=1</b>. This means you use the FPDF library to generate PDF files. This library is old and does not support a lot of features (Unicode, image transparency, cyrillic, arab and asiatic languages, ...), so you may experience errors during PDF generation.<br>To solve this and have a full support of PDF generation, please download <a href="http://www.tcpdf.org/" target="_blank">TCPDF library</a>, then comment or remove the line <b>$dolibarr_pdf_force_fpdf=1</b>, and add instead <b>$dolibarr_lib_TCPDF_PATH='path_to_TCPDF_dir'</b>
|
||||||
@ -381,10 +393,10 @@ ValueOverwrittenByUserSetup=Warning, this value may be overwritten by user speci
|
|||||||
ExternalModule=External module - Installed into directory %s
|
ExternalModule=External module - Installed into directory %s
|
||||||
BarcodeInitForThirdparties=Mass barcode init for thirdparties
|
BarcodeInitForThirdparties=Mass barcode init for thirdparties
|
||||||
BarcodeInitForProductsOrServices=Mass barcode init or reset for products or services
|
BarcodeInitForProductsOrServices=Mass barcode init or reset for products or services
|
||||||
CurrentlyNWithoutBarCode=Currently, you have <strong>%s</strong> records on <strong>%s</strong> %s without barcode defined.
|
CurrentlyNWithoutBarCode=Currently, you have <strong>%s</strong> record on <strong>%s</strong> %s without barcode defined.
|
||||||
InitEmptyBarCode=Init value for next %s empty records
|
InitEmptyBarCode=Init value for next %s empty records
|
||||||
EraseAllCurrentBarCode=Erase all current barcode values
|
EraseAllCurrentBarCode=Erase all current barcode values
|
||||||
ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode values ?
|
ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode values?
|
||||||
AllBarcodeReset=All barcode values have been removed
|
AllBarcodeReset=All barcode values have been removed
|
||||||
NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
|
NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
|
||||||
EnableFileCache=Enable file cache
|
EnableFileCache=Enable file cache
|
||||||
@ -397,7 +409,7 @@ EnableAndSetupModuleCron=If you want to have this recurring invoice beeing gener
|
|||||||
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.
|
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 a 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 (3 steps) is always required.
|
||||||
UseDoubleApproval=Use a 3 steps approval when amount (without tax) is higher than...
|
UseDoubleApproval=Use a 3 steps approval when amount (without tax) is higher than...
|
||||||
|
|
||||||
# Modules
|
# Modules
|
||||||
@ -813,6 +825,7 @@ DictionaryPaymentModes=Payment modes
|
|||||||
DictionaryTypeContact=Contact/Address types
|
DictionaryTypeContact=Contact/Address types
|
||||||
DictionaryEcotaxe=Ecotax (WEEE)
|
DictionaryEcotaxe=Ecotax (WEEE)
|
||||||
DictionaryPaperFormat=Paper formats
|
DictionaryPaperFormat=Paper formats
|
||||||
|
DictionaryFormatCards=Cards formats
|
||||||
DictionaryFees=Types of fees
|
DictionaryFees=Types of fees
|
||||||
DictionarySendingMethods=Shipping methods
|
DictionarySendingMethods=Shipping methods
|
||||||
DictionaryStaff=Staff
|
DictionaryStaff=Staff
|
||||||
@ -1016,7 +1029,6 @@ SimpleNumRefModelDesc=Returns the reference number with format %syymm-nnnn where
|
|||||||
ShowProfIdInAddress=Show professionnal id with addresses on documents
|
ShowProfIdInAddress=Show professionnal id with addresses on documents
|
||||||
ShowVATIntaInAddress=Hide VAT Intra num with addresses on documents
|
ShowVATIntaInAddress=Hide VAT Intra num with addresses on documents
|
||||||
TranslationUncomplete=Partial translation
|
TranslationUncomplete=Partial translation
|
||||||
SomeTranslationAreUncomplete=Some languages may be partially translated or may contains errors. If you detect some, you can fix language files registering to <a href="http://transifex.com/projects/p/dolibarr/" target="_blank">http://transifex.com/projects/p/dolibarr/</a>.
|
|
||||||
MAIN_DISABLE_METEO=Disable meteo view
|
MAIN_DISABLE_METEO=Disable meteo view
|
||||||
TestLoginToAPI=Test login to API
|
TestLoginToAPI=Test login to API
|
||||||
ProxyDesc=Some features of Dolibarr need to have an Internet access to work. Define here parameters for this. If the Dolibarr server is behind a Proxy server, those parameters tells Dolibarr how to access Internet through it.
|
ProxyDesc=Some features of Dolibarr need to have an Internet access to work. Define here parameters for this. If the Dolibarr server is behind a Proxy server, those parameters tells Dolibarr how to access Internet through it.
|
||||||
@ -1061,7 +1073,7 @@ TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</
|
|||||||
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
|
||||||
YesInSummer=Yes in summer
|
YesInSummer=Yes in summer
|
||||||
OnlyFollowingModulesAreOpenedToExternalUsers=Note, only following modules are open to external users (whatever are permission of such users):
|
OnlyFollowingModulesAreOpenedToExternalUsers=Note, only following modules are open to external users (whatever are permission of such users) and only if permissions were granted:
|
||||||
SuhosinSessionEncrypt=Session storage encrypted by Suhosin
|
SuhosinSessionEncrypt=Session storage encrypted by Suhosin
|
||||||
ConditionIsCurrently=Condition is currently %s
|
ConditionIsCurrently=Condition is currently %s
|
||||||
YouUseBestDriver=You use driver %s that is best driver available currently.
|
YouUseBestDriver=You use driver %s that is best driver available currently.
|
||||||
@ -1104,10 +1116,9 @@ DocumentModelOdt=Generate documents from OpenDocuments templates (.ODT or .ODS f
|
|||||||
WatermarkOnDraft=Watermark on draft document
|
WatermarkOnDraft=Watermark on draft document
|
||||||
JSOnPaimentBill=Activate feature to autofill payment lines on payment form
|
JSOnPaimentBill=Activate feature to autofill payment lines on payment form
|
||||||
CompanyIdProfChecker=Rules on Professional Ids
|
CompanyIdProfChecker=Rules on Professional Ids
|
||||||
MustBeUnique=Must be unique ?
|
MustBeUnique=Must be unique?
|
||||||
MustBeMandatory=Mandatory to create third parties ?
|
MustBeMandatory=Mandatory to create third parties?
|
||||||
MustBeInvoiceMandatory=Mandatory to validate invoices ?
|
MustBeInvoiceMandatory=Mandatory to validate invoices?
|
||||||
Miscellaneous=Miscellaneous
|
|
||||||
##### Webcal setup #####
|
##### Webcal setup #####
|
||||||
WebCalUrlForVCalExport=An export link to <b>%s</b> format is available at following link: %s
|
WebCalUrlForVCalExport=An export link to <b>%s</b> format is available at following link: %s
|
||||||
##### Invoices #####
|
##### Invoices #####
|
||||||
@ -1140,6 +1151,8 @@ FreeLegalTextOnSupplierProposal=Free text on price requests suppliers
|
|||||||
WatermarkOnDraftSupplierProposal=Watermark on draft price requests suppliers (none if empty)
|
WatermarkOnDraftSupplierProposal=Watermark on draft price requests suppliers (none if empty)
|
||||||
BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_PROPOSAL=Ask for bank account destination of price request
|
BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_PROPOSAL=Ask for bank account destination of price request
|
||||||
WAREHOUSE_ASK_WAREHOUSE_DURING_ORDER=Ask for Warehouse Source for order
|
WAREHOUSE_ASK_WAREHOUSE_DURING_ORDER=Ask for Warehouse Source for order
|
||||||
|
##### Suppliers Orders #####
|
||||||
|
BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_ORDER=Ask for bank account destination of supplier order
|
||||||
##### Orders #####
|
##### Orders #####
|
||||||
OrdersSetup=Order management setup
|
OrdersSetup=Order management setup
|
||||||
OrdersNumberingModules=Orders numbering models
|
OrdersNumberingModules=Orders numbering models
|
||||||
@ -1320,7 +1333,7 @@ ViewProductDescInFormAbility=Visualization of product descriptions in the forms
|
|||||||
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=Visualization of products descriptions in the third party language
|
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=Wait you press a key before loading content of product combo list (This may increase performance if you have a large number of products, but it is less convenient)
|
||||||
SetDefaultBarcodeTypeProducts=Default barcode type to use for products
|
SetDefaultBarcodeTypeProducts=Default barcode type to use for products
|
||||||
SetDefaultBarcodeTypeThirdParties=Default barcode type to use for third parties
|
SetDefaultBarcodeTypeThirdParties=Default barcode type to use for third parties
|
||||||
UseUnits=Define a unit of measure for Quantity during order, proposal or invoice lines edition
|
UseUnits=Define a unit of measure for Quantity during order, proposal or invoice lines edition
|
||||||
@ -1427,7 +1440,7 @@ DetailTarget=Target for links (_blank top open a new window)
|
|||||||
DetailLevel=Level (-1:top menu, 0:header menu, >0 menu and sub menu)
|
DetailLevel=Level (-1:top menu, 0:header menu, >0 menu and sub menu)
|
||||||
ModifMenu=Menu change
|
ModifMenu=Menu change
|
||||||
DeleteMenu=Delete menu entry
|
DeleteMenu=Delete menu entry
|
||||||
ConfirmDeleteMenu=Are you sure you want to delete menu entry <b>%s</b> ?
|
ConfirmDeleteMenu=Are you sure you want to delete menu entry <b>%s</b>?
|
||||||
FailedToInitializeMenu=Failed to initialize menu
|
FailedToInitializeMenu=Failed to initialize menu
|
||||||
##### Tax #####
|
##### Tax #####
|
||||||
TaxSetup=Taxes, social or fiscal taxes and dividends module setup
|
TaxSetup=Taxes, social or fiscal taxes and dividends module setup
|
||||||
@ -1482,7 +1495,7 @@ NbOfBoomarkToShow=Maximum number of bookmarks to show in left menu
|
|||||||
WebServicesSetup=Webservices module setup
|
WebServicesSetup=Webservices module setup
|
||||||
WebServicesDesc=By enabling this module, Dolibarr become a web service server to provide miscellaneous web services.
|
WebServicesDesc=By enabling this module, Dolibarr become a web service server to provide miscellaneous web services.
|
||||||
WSDLCanBeDownloadedHere=WSDL descriptor files of provided services can be download here
|
WSDLCanBeDownloadedHere=WSDL descriptor files of provided services can be download here
|
||||||
EndPointIs=SOAP clients must send their requests to the Dolibarr endpoint available at Url
|
EndPointIs=SOAP clients must send their requests to the Dolibarr endpoint available at URL
|
||||||
##### API ####
|
##### API ####
|
||||||
ApiSetup=API module setup
|
ApiSetup=API module setup
|
||||||
ApiDesc=By enabling this module, Dolibarr become a REST server to provide miscellaneous web services.
|
ApiDesc=By enabling this module, Dolibarr become a REST server to provide miscellaneous web services.
|
||||||
@ -1524,14 +1537,14 @@ TaskModelModule=Tasks reports document model
|
|||||||
UseSearchToSelectProject=Use autocompletion fields to choose project (instead of using a list box)
|
UseSearchToSelectProject=Use autocompletion fields to choose project (instead of using a list box)
|
||||||
##### ECM (GED) #####
|
##### ECM (GED) #####
|
||||||
##### Fiscal Year #####
|
##### Fiscal Year #####
|
||||||
FiscalYears=Fiscal years
|
AccountingPeriods=Accounting periods
|
||||||
FiscalYearCard=Fiscal year card
|
AccountingPeriodCard=Accounting period
|
||||||
NewFiscalYear=New fiscal year
|
NewFiscalYear=New accounting period
|
||||||
OpenFiscalYear=Open fiscal year
|
OpenFiscalYear=Open accounting period
|
||||||
CloseFiscalYear=Close fiscal year
|
CloseFiscalYear=Close accounting period
|
||||||
DeleteFiscalYear=Delete fiscal year
|
DeleteFiscalYear=Delete accounting period
|
||||||
ConfirmDeleteFiscalYear=Are you sure to delete this fiscal year ?
|
ConfirmDeleteFiscalYear=Are you sure to delete this accounting period?
|
||||||
ShowFiscalYear=Show fiscal year
|
ShowFiscalYear=Show accounting period
|
||||||
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
|
||||||
@ -1563,7 +1576,7 @@ HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
|
|||||||
HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
|
HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
|
||||||
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 or clear your browser cache after changing this value to have it effective
|
||||||
NotSupportedByAllThemes=Will works with core themes, may not be supported by external 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
|
||||||
@ -1623,12 +1636,17 @@ AddOtherPagesOrServices=Add other pages or services
|
|||||||
AddModels=Add document or numbering templates
|
AddModels=Add document or numbering templates
|
||||||
AddSubstitutions=Add keys substitutions
|
AddSubstitutions=Add keys substitutions
|
||||||
DetectionNotPossible=Detection not possible
|
DetectionNotPossible=Detection not possible
|
||||||
UrlToGetKeyToUseAPIs=Url to get token to use API (once token has been received it is saved on database user table and will be checked on each future access)
|
UrlToGetKeyToUseAPIs=Url to get token to use API (once token has been received it is saved on database user table and must be provided on each API call)
|
||||||
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
|
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
|
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.
|
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 or groups manually if necessary.
|
||||||
UserHasNoPermissions=This user has no permission defined
|
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")
|
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")
|
||||||
|
##### Resource ####
|
||||||
|
ResourceSetup=Configuration du module Resource
|
||||||
|
UseSearchToSelectResource=Use a search form to choose a resource (rather than a drop-down list).
|
||||||
|
DisabledResourceLinkUser=Disabled resource link to user
|
||||||
|
DisabledResourceLinkContact=Disabled resource link to contact
|
||||||
|
|||||||
@ -3,7 +3,6 @@ IdAgenda=ID event
|
|||||||
Actions=Events
|
Actions=Events
|
||||||
Agenda=Agenda
|
Agenda=Agenda
|
||||||
Agendas=Agendas
|
Agendas=Agendas
|
||||||
Calendar=Calendar
|
|
||||||
LocalAgenda=Internal calendar
|
LocalAgenda=Internal calendar
|
||||||
ActionsOwnedBy=Event owned by
|
ActionsOwnedBy=Event owned by
|
||||||
ActionsOwnedByShort=Owner
|
ActionsOwnedByShort=Owner
|
||||||
@ -34,11 +33,28 @@ AgendaAutoActionDesc= Define here events for which you want Dolibarr to create a
|
|||||||
AgendaSetupOtherDesc= This page provides options to allow export of your Dolibarr events into an external calendar (thunderbird, google calendar, ...)
|
AgendaSetupOtherDesc= This page provides options to allow export of your Dolibarr events into an external calendar (thunderbird, google calendar, ...)
|
||||||
AgendaExtSitesDesc=This page allows to declare external sources of calendars to see their events into Dolibarr agenda.
|
AgendaExtSitesDesc=This page allows to declare external sources of calendars to see their events into Dolibarr agenda.
|
||||||
ActionsEvents=Events for which Dolibarr will create an action in agenda automatically
|
ActionsEvents=Events for which Dolibarr will create an action in agenda automatically
|
||||||
|
##### Agenda event labels #####
|
||||||
|
NewCompanyToDolibarr=Third party %s created
|
||||||
|
ContractValidatedInDolibarr=Contract %s validated
|
||||||
|
PropalClosedSignedInDolibarr=Proposal %s signed
|
||||||
|
PropalClosedRefusedInDolibarr=Proposal %s refused
|
||||||
PropalValidatedInDolibarr=Proposal %s validated
|
PropalValidatedInDolibarr=Proposal %s validated
|
||||||
|
PropalClassifiedBilledInDolibarr=Proposal %s classified billed
|
||||||
InvoiceValidatedInDolibarr=Invoice %s validated
|
InvoiceValidatedInDolibarr=Invoice %s validated
|
||||||
InvoiceValidatedInDolibarrFromPos=Invoice %s validated from POS
|
InvoiceValidatedInDolibarrFromPos=Invoice %s validated from POS
|
||||||
InvoiceBackToDraftInDolibarr=Invoice %s go back to draft status
|
InvoiceBackToDraftInDolibarr=Invoice %s go back to draft status
|
||||||
InvoiceDeleteDolibarr=Invoice %s deleted
|
InvoiceDeleteDolibarr=Invoice %s deleted
|
||||||
|
InvoicePaidInDolibarr=Invoice %s changed to paid
|
||||||
|
InvoiceCanceledInDolibarr=Invoice %s canceled
|
||||||
|
MemberValidatedInDolibarr=Member %s validated
|
||||||
|
MemberResiliatedInDolibarr=Member %s terminated
|
||||||
|
MemberDeletedInDolibarr=Member %s deleted
|
||||||
|
MemberSubscriptionAddedInDolibarr=Subscription for member %s added
|
||||||
|
ShipmentValidatedInDolibarr=Shipment %s validated
|
||||||
|
ShipmentClassifyClosedInDolibarr=Shipment %s classify billed
|
||||||
|
ShipmentUnClassifyCloseddInDolibarr=Shipment %s classify reopened
|
||||||
|
ShipmentDeletedInDolibarr=Shipment %s deleted
|
||||||
|
OrderCreatedInDolibarr=Order %s created
|
||||||
OrderValidatedInDolibarr=Order %s validated
|
OrderValidatedInDolibarr=Order %s validated
|
||||||
OrderDeliveredInDolibarr=Order %s classified delivered
|
OrderDeliveredInDolibarr=Order %s classified delivered
|
||||||
OrderCanceledInDolibarr=Order %s canceled
|
OrderCanceledInDolibarr=Order %s canceled
|
||||||
@ -57,9 +73,9 @@ InterventionSentByEMail=Intervention %s sent by EMail
|
|||||||
ProposalDeleted=Proposal deleted
|
ProposalDeleted=Proposal deleted
|
||||||
OrderDeleted=Order deleted
|
OrderDeleted=Order deleted
|
||||||
InvoiceDeleted=Invoice deleted
|
InvoiceDeleted=Invoice deleted
|
||||||
NewCompanyToDolibarr= Third party created
|
##### End agenda events #####
|
||||||
DateActionStart= Start date
|
DateActionStart=Start date
|
||||||
DateActionEnd= End date
|
DateActionEnd=End date
|
||||||
AgendaUrlOptions1=You can also add following parameters to filter output:
|
AgendaUrlOptions1=You can also add following parameters to filter output:
|
||||||
AgendaUrlOptions2=<b>login=%s</b> to restrict output to actions created by or assigned to user <b>%s</b>.
|
AgendaUrlOptions2=<b>login=%s</b> to restrict output to actions created by or assigned to user <b>%s</b>.
|
||||||
AgendaUrlOptions3=<b>logina=%s</b> to restrict output to actions owned by a user <b>%s</b>.
|
AgendaUrlOptions3=<b>logina=%s</b> to restrict output to actions owned by a user <b>%s</b>.
|
||||||
@ -86,7 +102,7 @@ MyAvailability=My availability
|
|||||||
ActionType=Event type
|
ActionType=Event type
|
||||||
DateActionBegin=Start event date
|
DateActionBegin=Start event date
|
||||||
CloneAction=Clone event
|
CloneAction=Clone event
|
||||||
ConfirmCloneEvent=Are you sure you want to clone the event <b>%s</b> ?
|
ConfirmCloneEvent=Are you sure you want to clone the event <b>%s</b>?
|
||||||
RepeatEvent=Repeat event
|
RepeatEvent=Repeat event
|
||||||
EveryWeek=Every week
|
EveryWeek=Every week
|
||||||
EveryMonth=Every month
|
EveryMonth=Every month
|
||||||
|
|||||||
@ -28,6 +28,10 @@ Reconciliation=Reconciliation
|
|||||||
RIB=Bank Account Number
|
RIB=Bank Account Number
|
||||||
IBAN=IBAN number
|
IBAN=IBAN number
|
||||||
BIC=BIC/SWIFT number
|
BIC=BIC/SWIFT number
|
||||||
|
SwiftValid=BIC/SWIFT valid
|
||||||
|
SwiftVNotalid=BIC/SWIFT not valid
|
||||||
|
IbanValid=BAN valid
|
||||||
|
IbanNotValid=BAN not valid
|
||||||
StandingOrders=Direct Debit orders
|
StandingOrders=Direct Debit orders
|
||||||
StandingOrder=Direct debit order
|
StandingOrder=Direct debit order
|
||||||
AccountStatement=Account statement
|
AccountStatement=Account statement
|
||||||
@ -41,7 +45,7 @@ BankAccountOwner=Account owner name
|
|||||||
BankAccountOwnerAddress=Account owner address
|
BankAccountOwnerAddress=Account owner address
|
||||||
RIBControlError=Integrity check of values fails. This means information for this account number are not complete or wrong (check country, numbers and IBAN).
|
RIBControlError=Integrity check of values fails. This means information for this account number are not complete or wrong (check country, numbers and IBAN).
|
||||||
CreateAccount=Create account
|
CreateAccount=Create account
|
||||||
NewAccount=New account
|
NewBankAccount=New account
|
||||||
NewFinancialAccount=New financial account
|
NewFinancialAccount=New financial account
|
||||||
MenuNewFinancialAccount=New financial account
|
MenuNewFinancialAccount=New financial account
|
||||||
EditFinancialAccount=Edit account
|
EditFinancialAccount=Edit account
|
||||||
@ -53,37 +57,38 @@ BankType2=Cash account
|
|||||||
AccountsArea=Accounts area
|
AccountsArea=Accounts area
|
||||||
AccountCard=Account card
|
AccountCard=Account card
|
||||||
DeleteAccount=Delete account
|
DeleteAccount=Delete account
|
||||||
ConfirmDeleteAccount=Are you sure you want to delete this account ?
|
ConfirmDeleteAccount=Are you sure you want to delete this account?
|
||||||
Account=Account
|
Account=Account
|
||||||
BankTransactionByCategories=Bank transactions by categories
|
BankTransactionByCategories=Bank entries by categories
|
||||||
BankTransactionForCategory=Bank transactions for category <b>%s</b>
|
BankTransactionForCategory=Bank entries for category <b>%s</b>
|
||||||
RemoveFromRubrique=Remove link with category
|
RemoveFromRubrique=Remove link with category
|
||||||
RemoveFromRubriqueConfirm=Are you sure you want to remove link between the transaction and the category ?
|
RemoveFromRubriqueConfirm=Are you sure you want to remove link between the entry and the category?
|
||||||
ListBankTransactions=List of bank transactions
|
ListBankTransactions=List of bank entries
|
||||||
IdTransaction=Transaction ID
|
IdTransaction=Transaction ID
|
||||||
BankTransactions=Bank transactions
|
BankTransactions=Bank entries
|
||||||
ListTransactions=List transactions
|
ListTransactions=List entries
|
||||||
ListTransactionsByCategory=List transaction/category
|
ListTransactionsByCategory=List entries/category
|
||||||
TransactionsToConciliate=Transactions to reconcile
|
TransactionsToConciliate=Entries to reconcile
|
||||||
Conciliable=Can be reconciled
|
Conciliable=Can be reconciled
|
||||||
Conciliate=Reconcile
|
Conciliate=Reconcile
|
||||||
Conciliation=Reconciliation
|
Conciliation=Reconciliation
|
||||||
|
ReconciliationLate=Reconciliation late
|
||||||
IncludeClosedAccount=Include closed accounts
|
IncludeClosedAccount=Include closed accounts
|
||||||
OnlyOpenedAccount=Only open accounts
|
OnlyOpenedAccount=Only open accounts
|
||||||
AccountToCredit=Account to credit
|
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
|
LinkedToAConciliatedTransaction=Linked to a conciliated entry
|
||||||
StatusAccountOpened=Open
|
StatusAccountOpened=Open
|
||||||
StatusAccountClosed=Closed
|
StatusAccountClosed=Closed
|
||||||
AccountIdShort=Number
|
AccountIdShort=Number
|
||||||
LineRecord=Transaction
|
LineRecord=Transaction
|
||||||
AddBankRecord=Add transaction
|
AddBankRecord=Add entry
|
||||||
AddBankRecordLong=Add transaction manually
|
AddBankRecordLong=Add entry manually
|
||||||
ConciliatedBy=Reconciled by
|
ConciliatedBy=Reconciled by
|
||||||
DateConciliating=Reconcile date
|
DateConciliating=Reconcile date
|
||||||
BankLineConciliated=Transaction reconciled
|
BankLineConciliated=Entry reconciled
|
||||||
Reconciled=Reconciled
|
Reconciled=Reconciled
|
||||||
NotReconciled=Not reconciled
|
NotReconciled=Not reconciled
|
||||||
CustomerInvoicePayment=Customer payment
|
CustomerInvoicePayment=Customer payment
|
||||||
@ -94,26 +99,26 @@ SocialContributionPayment=Social/fiscal tax payment
|
|||||||
BankTransfer=Bank transfer
|
BankTransfer=Bank transfer
|
||||||
BankTransfers=Bank transfers
|
BankTransfers=Bank transfers
|
||||||
MenuBankInternalTransfer=Internal transfer
|
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)
|
TransferDesc=Transfer from one account to another one, Dolibarr will write two record (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.
|
||||||
CheckTransmitter=Transmitter
|
CheckTransmitter=Transmitter
|
||||||
ValidateCheckReceipt=Validate this check receipt ?
|
ValidateCheckReceipt=Validate this check receipt?
|
||||||
ConfirmValidateCheckReceipt=Are you sure you want to validate this check receipt, no change will be possible once this is done ?
|
ConfirmValidateCheckReceipt=Are you sure you want to validate this check receipt, no change will be possible once this is done?
|
||||||
DeleteCheckReceipt=Delete this check receipt ?
|
DeleteCheckReceipt=Delete this check receipt?
|
||||||
ConfirmDeleteCheckReceipt=Are you sure you want to delete this check receipt ?
|
ConfirmDeleteCheckReceipt=Are you sure you want to delete this check receipt?
|
||||||
BankChecks=Bank checks
|
BankChecks=Bank checks
|
||||||
BankChecksToReceipt=Checks awaiting deposit
|
BankChecksToReceipt=Checks awaiting deposit
|
||||||
ShowCheckReceipt=Show check deposit receipt
|
ShowCheckReceipt=Show check deposit receipt
|
||||||
NumberOfCheques=Nb of check
|
NumberOfCheques=Nb of check
|
||||||
DeleteTransaction=Delete transaction
|
DeleteTransaction=Delete entry
|
||||||
ConfirmDeleteTransaction=Are you sure you want to delete this transaction ?
|
ConfirmDeleteTransaction=Are you sure you want to delete this entry?
|
||||||
ThisWillAlsoDeleteBankRecord=This will also delete generated bank transactions
|
ThisWillAlsoDeleteBankRecord=This will also delete generated bank entry
|
||||||
BankMovements=Movements
|
BankMovements=Movements
|
||||||
PlannedTransactions=Planned transactions
|
PlannedTransactions=Planned entries
|
||||||
Graph=Graphics
|
Graph=Graphics
|
||||||
ExportDataset_banque_1=Bank transactions and account statement
|
ExportDataset_banque_1=Bank entries and account statement
|
||||||
ExportDataset_banque_2=Deposit slip
|
ExportDataset_banque_2=Deposit slip
|
||||||
TransactionOnTheOtherAccount=Transaction on the other account
|
TransactionOnTheOtherAccount=Transaction on the other account
|
||||||
PaymentNumberUpdateSucceeded=Payment number updated successfully
|
PaymentNumberUpdateSucceeded=Payment number updated successfully
|
||||||
@ -121,7 +126,7 @@ PaymentNumberUpdateFailed=Payment number could not be updated
|
|||||||
PaymentDateUpdateSucceeded=Payment date updated successfully
|
PaymentDateUpdateSucceeded=Payment date updated successfully
|
||||||
PaymentDateUpdateFailed=Payment date could not be updated
|
PaymentDateUpdateFailed=Payment date could not be updated
|
||||||
Transactions=Transactions
|
Transactions=Transactions
|
||||||
BankTransactionLine=Bank transaction
|
BankTransactionLine=Bank entry
|
||||||
AllAccounts=All bank/cash accounts
|
AllAccounts=All bank/cash accounts
|
||||||
BackToAccount=Back to account
|
BackToAccount=Back to account
|
||||||
ShowAllAccounts=Show for all accounts
|
ShowAllAccounts=Show for all accounts
|
||||||
@ -129,16 +134,16 @@ 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 reconcile ?
|
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
|
||||||
LabelRIB=BAN Label
|
LabelRIB=BAN Label
|
||||||
NoBANRecord=No BAN record
|
NoBANRecord=No BAN record
|
||||||
DeleteARib=Delete BAN record
|
DeleteARib=Delete BAN record
|
||||||
ConfirmDeleteRib=Are you sure you want to delete this BAN record ?
|
ConfirmDeleteRib=Are you sure you want to delete this BAN record?
|
||||||
RejectCheck=Check returned
|
RejectCheck=Check returned
|
||||||
ConfirmRejectCheck=Are you sure you want to mark this check as rejected ?
|
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
|
||||||
|
|||||||
@ -41,7 +41,7 @@ ConsumedBy=Consumed by
|
|||||||
NotConsumed=Not consumed
|
NotConsumed=Not consumed
|
||||||
NoReplacableInvoice=No replacable invoices
|
NoReplacableInvoice=No replacable invoices
|
||||||
NoInvoiceToCorrect=No invoice to correct
|
NoInvoiceToCorrect=No invoice to correct
|
||||||
InvoiceHasAvoir=Corrected by one or several invoices
|
InvoiceHasAvoir=Was source of one or several credit notes
|
||||||
CardBill=Invoice card
|
CardBill=Invoice card
|
||||||
PredefinedInvoices=Predefined Invoices
|
PredefinedInvoices=Predefined Invoices
|
||||||
Invoice=Invoice
|
Invoice=Invoice
|
||||||
@ -62,8 +62,8 @@ PaymentsBack=Payments back
|
|||||||
paymentInInvoiceCurrency=in invoices currency
|
paymentInInvoiceCurrency=in invoices currency
|
||||||
PaidBack=Paid back
|
PaidBack=Paid back
|
||||||
DeletePayment=Delete payment
|
DeletePayment=Delete payment
|
||||||
ConfirmDeletePayment=Are you sure you want to delete this payment ?
|
ConfirmDeletePayment=Are you sure you want to delete this payment?
|
||||||
ConfirmConvertToReduc=Do you want to convert this credit note or deposit into an absolute discount ?<br>The amount will so be saved among all discounts and could be used as a discount for a current or a future invoice for this customer.
|
ConfirmConvertToReduc=Do you want to convert this credit note or deposit into an absolute discount?<br>The amount will so be saved among all discounts and could be used as a discount for a current or a future invoice for this customer.
|
||||||
SupplierPayments=Suppliers payments
|
SupplierPayments=Suppliers payments
|
||||||
ReceivedPayments=Received payments
|
ReceivedPayments=Received payments
|
||||||
ReceivedCustomersPayments=Payments received from customers
|
ReceivedCustomersPayments=Payments received from customers
|
||||||
@ -75,6 +75,8 @@ PaymentsAlreadyDone=Payments already done
|
|||||||
PaymentsBackAlreadyDone=Payments back already done
|
PaymentsBackAlreadyDone=Payments back already done
|
||||||
PaymentRule=Payment rule
|
PaymentRule=Payment rule
|
||||||
PaymentMode=Payment type
|
PaymentMode=Payment type
|
||||||
|
PaymentTypeDC=Debit/Credit Card
|
||||||
|
PaymentTypePP=PayPal
|
||||||
IdPaymentMode=Payment type (id)
|
IdPaymentMode=Payment type (id)
|
||||||
LabelPaymentMode=Payment type (label)
|
LabelPaymentMode=Payment type (label)
|
||||||
PaymentModeShort=Payment type
|
PaymentModeShort=Payment type
|
||||||
@ -156,14 +158,14 @@ DraftBills=Draft invoices
|
|||||||
CustomersDraftInvoices=Customers draft invoices
|
CustomersDraftInvoices=Customers draft invoices
|
||||||
SuppliersDraftInvoices=Suppliers draft invoices
|
SuppliersDraftInvoices=Suppliers draft invoices
|
||||||
Unpaid=Unpaid
|
Unpaid=Unpaid
|
||||||
ConfirmDeleteBill=Are you sure you want to delete this invoice ?
|
ConfirmDeleteBill=Are you sure you want to delete this invoice?
|
||||||
ConfirmValidateBill=Are you sure you want to validate this invoice with reference <b>%s</b> ?
|
ConfirmValidateBill=Are you sure you want to validate this invoice with reference <b>%s</b>?
|
||||||
ConfirmUnvalidateBill=Are you sure you want to change invoice <b>%s</b> to draft status ?
|
ConfirmUnvalidateBill=Are you sure you want to change invoice <b>%s</b> to draft status?
|
||||||
ConfirmClassifyPaidBill=Are you sure you want to change invoice <b>%s</b> to status paid ?
|
ConfirmClassifyPaidBill=Are you sure you want to change invoice <b>%s</b> to status paid?
|
||||||
ConfirmCancelBill=Are you sure you want to cancel invoice <b>%s</b> ?
|
ConfirmCancelBill=Are you sure you want to cancel invoice <b>%s</b>?
|
||||||
ConfirmCancelBillQuestion=Why do you want to classify this invoice 'abandoned' ?
|
ConfirmCancelBillQuestion=Why do you want to classify this invoice 'abandoned'?
|
||||||
ConfirmClassifyPaidPartially=Are you sure you want to change invoice <b>%s</b> to status paid ?
|
ConfirmClassifyPaidPartially=Are you sure you want to change invoice <b>%s</b> to status paid?
|
||||||
ConfirmClassifyPaidPartiallyQuestion=This invoice has not been paid completely. What are reasons for you to close this invoice ?
|
ConfirmClassifyPaidPartiallyQuestion=This invoice has not been paid completely. What are reasons for you to close this invoice?
|
||||||
ConfirmClassifyPaidPartiallyReasonAvoir=Remaining unpaid <b>(%s %s)</b> is a discount granted because payment was made before term. I regularise the VAT with a credit note.
|
ConfirmClassifyPaidPartiallyReasonAvoir=Remaining unpaid <b>(%s %s)</b> is a discount granted because payment was made before term. I regularise the VAT with a credit note.
|
||||||
ConfirmClassifyPaidPartiallyReasonDiscountNoVat=Remaining unpaid <b>(%s %s)</b> is a discount granted because payment was made before term. I accept to lose the VAT on this discount.
|
ConfirmClassifyPaidPartiallyReasonDiscountNoVat=Remaining unpaid <b>(%s %s)</b> is a discount granted because payment was made before term. I accept to lose the VAT on this discount.
|
||||||
ConfirmClassifyPaidPartiallyReasonDiscountVat=Remaining unpaid <b>(%s %s)</b> is a discount granted because payment was made before term. I recover the VAT on this discount without a credit note.
|
ConfirmClassifyPaidPartiallyReasonDiscountVat=Remaining unpaid <b>(%s %s)</b> is a discount granted because payment was made before term. I recover the VAT on this discount without a credit note.
|
||||||
@ -178,9 +180,9 @@ ConfirmClassifyPaidPartiallyReasonProductReturnedDesc=This choice is used when p
|
|||||||
ConfirmClassifyPaidPartiallyReasonOtherDesc=Use this choice if all other does not suit, for example in following situation:<br>- payment not complete because some products were shipped back<br>- amount claimed too important because a discount was forgotten<br>In all cases, amount over-claimed must be corrected in accountancy system by creating a credit note.
|
ConfirmClassifyPaidPartiallyReasonOtherDesc=Use this choice if all other does not suit, for example in following situation:<br>- payment not complete because some products were shipped back<br>- amount claimed too important because a discount was forgotten<br>In all cases, amount over-claimed must be corrected in accountancy system by creating a credit note.
|
||||||
ConfirmClassifyAbandonReasonOther=Other
|
ConfirmClassifyAbandonReasonOther=Other
|
||||||
ConfirmClassifyAbandonReasonOtherDesc=This choice will be used in all other cases. For example because you plan to create a replacing invoice.
|
ConfirmClassifyAbandonReasonOtherDesc=This choice will be used in all other cases. For example because you plan to create a replacing invoice.
|
||||||
ConfirmCustomerPayment=Do you confirm this payment input for <b>%s</b> %s ?
|
ConfirmCustomerPayment=Do you confirm this payment input for <b>%s</b> %s?
|
||||||
ConfirmSupplierPayment=Do you confirm this payment input for <b>%s</b> %s ?
|
ConfirmSupplierPayment=Do you confirm this payment input for <b>%s</b> %s?
|
||||||
ConfirmValidatePayment=Are you sure you want to validate this payment ? No change can be made once payment is validated.
|
ConfirmValidatePayment=Are you sure you want to validate this payment? No change can be made once payment is validated.
|
||||||
ValidateBill=Validate invoice
|
ValidateBill=Validate invoice
|
||||||
UnvalidateBill=Unvalidate invoice
|
UnvalidateBill=Unvalidate invoice
|
||||||
NumberOfBills=Nb of invoices
|
NumberOfBills=Nb of invoices
|
||||||
@ -269,7 +271,7 @@ Deposits=Deposits
|
|||||||
DiscountFromCreditNote=Discount from credit note %s
|
DiscountFromCreditNote=Discount from credit note %s
|
||||||
DiscountFromDeposit=Payments from deposit invoice %s
|
DiscountFromDeposit=Payments from deposit invoice %s
|
||||||
AbsoluteDiscountUse=This kind of credit can be used on invoice before its validation
|
AbsoluteDiscountUse=This kind of credit can be used on invoice before its validation
|
||||||
CreditNoteDepositUse=Invoice must be validated to use this king of credits
|
CreditNoteDepositUse=Invoice must be validated to use this kind of credits
|
||||||
NewGlobalDiscount=New absolute discount
|
NewGlobalDiscount=New absolute discount
|
||||||
NewRelativeDiscount=New relative discount
|
NewRelativeDiscount=New relative discount
|
||||||
NoteReason=Note/Reason
|
NoteReason=Note/Reason
|
||||||
@ -295,15 +297,15 @@ RemoveDiscount=Remove discount
|
|||||||
WatermarkOnDraftBill=Watermark on draft invoices (nothing if empty)
|
WatermarkOnDraftBill=Watermark on draft invoices (nothing if empty)
|
||||||
InvoiceNotChecked=No invoice selected
|
InvoiceNotChecked=No invoice selected
|
||||||
CloneInvoice=Clone invoice
|
CloneInvoice=Clone invoice
|
||||||
ConfirmCloneInvoice=Are you sure you want to clone this invoice <b>%s</b> ?
|
ConfirmCloneInvoice=Are you sure you want to clone this invoice <b>%s</b>?
|
||||||
DisabledBecauseReplacedInvoice=Action disabled because invoice has been replaced
|
DisabledBecauseReplacedInvoice=Action disabled because invoice has been replaced
|
||||||
DescTaxAndDividendsArea=This area presents a summary of all payments made for special expenses. Only records with payment during the fixed year are included here.
|
DescTaxAndDividendsArea=This area presents a summary of all payments made for special expenses. Only record with payment during the fixed year are included here.
|
||||||
NbOfPayments=Nb of payments
|
NbOfPayments=Nb of payments
|
||||||
SplitDiscount=Split discount in two
|
SplitDiscount=Split discount in two
|
||||||
ConfirmSplitDiscount=Are you sure you want to split this discount of <b>%s</b> %s into 2 lower discounts ?
|
ConfirmSplitDiscount=Are you sure you want to split this discount of <b>%s</b> %s into 2 lower discounts?
|
||||||
TypeAmountOfEachNewDiscount=Input amount for each of two parts :
|
TypeAmountOfEachNewDiscount=Input amount for each of two parts :
|
||||||
TotalOfTwoDiscountMustEqualsOriginal=Total of two new discount must be equal to original discount amount.
|
TotalOfTwoDiscountMustEqualsOriginal=Total of two new discount must be equal to original discount amount.
|
||||||
ConfirmRemoveDiscount=Are you sure you want to remove this discount ?
|
ConfirmRemoveDiscount=Are you sure you want to remove this discount?
|
||||||
RelatedBill=Related invoice
|
RelatedBill=Related invoice
|
||||||
RelatedBills=Related invoices
|
RelatedBills=Related invoices
|
||||||
RelatedCustomerInvoices=Related customer invoices
|
RelatedCustomerInvoices=Related customer invoices
|
||||||
@ -319,7 +321,7 @@ ListOfNextSituationInvoices=List of next situation invoices
|
|||||||
FrequencyPer_d=Every %s days
|
FrequencyPer_d=Every %s days
|
||||||
FrequencyPer_m=Every %s months
|
FrequencyPer_m=Every %s months
|
||||||
FrequencyPer_y=Every %s years
|
FrequencyPer_y=Every %s years
|
||||||
toolTipFrequency=Examples:<br /><b>Set 7 / day</b>: give a new invoice every 7 days<br /><b>Set 3 / month</b>: give a new invoice every 3 month
|
toolTipFrequency=Examples:<br /><b>Set 7, Day</b>: give a new invoice every 7 days<br /><b>Set 3, Month</b>: give a new invoice every 3 month
|
||||||
NextDateToExecution=Date for next invoice generation
|
NextDateToExecution=Date for next invoice generation
|
||||||
DateLastGeneration=Date of latest generation
|
DateLastGeneration=Date of latest generation
|
||||||
MaxPeriodNumber=Max nb of invoice generation
|
MaxPeriodNumber=Max nb of invoice generation
|
||||||
@ -330,6 +332,7 @@ GeneratedFromRecurringInvoice=Generated from template recurring invoice %s
|
|||||||
DateIsNotEnough=Date not reached yet
|
DateIsNotEnough=Date not reached yet
|
||||||
InvoiceGeneratedFromTemplate=Invoice %s generated from recurring template invoice %s
|
InvoiceGeneratedFromTemplate=Invoice %s generated from recurring template invoice %s
|
||||||
# PaymentConditions
|
# PaymentConditions
|
||||||
|
Statut=Status
|
||||||
PaymentConditionShortRECEP=Immediate
|
PaymentConditionShortRECEP=Immediate
|
||||||
PaymentConditionRECEP=Immediate
|
PaymentConditionRECEP=Immediate
|
||||||
PaymentConditionShort30D=30 days
|
PaymentConditionShort30D=30 days
|
||||||
@ -421,6 +424,7 @@ ShowUnpaidAll=Show all unpaid invoices
|
|||||||
ShowUnpaidLateOnly=Show late unpaid invoices only
|
ShowUnpaidLateOnly=Show late unpaid invoices only
|
||||||
PaymentInvoiceRef=Payment invoice %s
|
PaymentInvoiceRef=Payment invoice %s
|
||||||
ValidateInvoice=Validate invoice
|
ValidateInvoice=Validate invoice
|
||||||
|
ValidateInvoices=Validate invoices
|
||||||
Cash=Cash
|
Cash=Cash
|
||||||
Reported=Delayed
|
Reported=Delayed
|
||||||
DisabledBecausePayments=Not possible since there are some payments
|
DisabledBecausePayments=Not possible since there are some payments
|
||||||
@ -445,6 +449,7 @@ PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice templat
|
|||||||
TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
|
TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
|
||||||
MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
|
MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
|
||||||
TerreNumRefModelError=A bill starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
|
TerreNumRefModelError=A bill starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
|
||||||
|
CactusNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for credit notes and %syymm-nnnn for deposit invoices where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
|
||||||
##### Types de contacts #####
|
##### Types de contacts #####
|
||||||
TypeContact_facture_internal_SALESREPFOLL=Representative following-up customer invoice
|
TypeContact_facture_internal_SALESREPFOLL=Representative following-up customer invoice
|
||||||
TypeContact_facture_external_BILLING=Customer invoice contact
|
TypeContact_facture_external_BILLING=Customer invoice contact
|
||||||
@ -481,5 +486,6 @@ ToCreateARecurringInvoice=To create a recurring invoice for this contract, first
|
|||||||
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
|
DeleteRepeatableInvoice=Delete template invoice
|
||||||
ConfirmDeleteRepeatableInvoice=Are your sure you want to delete the template invoice ?
|
ConfirmDeleteRepeatableInvoice=Are your sure you want to delete the template invoice?
|
||||||
|
CreateOneBillByThird=Create one invoice per third party (otherwise, one invoice per order)
|
||||||
|
BillCreated=%s bill(s) created
|
||||||
|
|||||||
@ -10,7 +10,7 @@ NewAction=New event
|
|||||||
AddAction=Create event
|
AddAction=Create event
|
||||||
AddAnAction=Create an event
|
AddAnAction=Create an event
|
||||||
AddActionRendezVous=Create a Rendez-vous event
|
AddActionRendezVous=Create a Rendez-vous event
|
||||||
ConfirmDeleteAction=Are you sure you want to delete this event ?
|
ConfirmDeleteAction=Are you sure you want to delete this event?
|
||||||
CardAction=Event card
|
CardAction=Event card
|
||||||
ActionOnCompany=Related company
|
ActionOnCompany=Related company
|
||||||
ActionOnContact=Related contact
|
ActionOnContact=Related contact
|
||||||
@ -28,7 +28,7 @@ ShowCustomer=Show customer
|
|||||||
ShowProspect=Show prospect
|
ShowProspect=Show prospect
|
||||||
ListOfProspects=List of prospects
|
ListOfProspects=List of prospects
|
||||||
ListOfCustomers=List of customers
|
ListOfCustomers=List of customers
|
||||||
LastDoneTasks=Latest %s completed tasks
|
LastDoneTasks=Latest %s completed actions
|
||||||
LastActionsToDo=Oldest %s not completed actions
|
LastActionsToDo=Oldest %s not completed actions
|
||||||
DoneAndToDoActions=Completed and To do events
|
DoneAndToDoActions=Completed and To do events
|
||||||
DoneActions=Completed events
|
DoneActions=Completed events
|
||||||
@ -62,7 +62,7 @@ ActionAC_SHIP=Send shipping by mail
|
|||||||
ActionAC_SUP_ORD=Send supplier order by mail
|
ActionAC_SUP_ORD=Send supplier order by mail
|
||||||
ActionAC_SUP_INV=Send supplier invoice by mail
|
ActionAC_SUP_INV=Send supplier invoice by mail
|
||||||
ActionAC_OTH=Other
|
ActionAC_OTH=Other
|
||||||
ActionAC_OTH_AUTO=Other (automatically inserted events)
|
ActionAC_OTH_AUTO=Automatically inserted events
|
||||||
ActionAC_MANUAL=Manually inserted events
|
ActionAC_MANUAL=Manually inserted events
|
||||||
ActionAC_AUTO=Automatically inserted events
|
ActionAC_AUTO=Automatically inserted events
|
||||||
Stats=Sales statistics
|
Stats=Sales statistics
|
||||||
|
|||||||
@ -2,9 +2,9 @@
|
|||||||
ErrorCompanyNameAlreadyExists=Company name %s already exists. Choose another one.
|
ErrorCompanyNameAlreadyExists=Company name %s already exists. Choose another one.
|
||||||
ErrorSetACountryFirst=Set the country first
|
ErrorSetACountryFirst=Set the country first
|
||||||
SelectThirdParty=Select a third party
|
SelectThirdParty=Select a third party
|
||||||
ConfirmDeleteCompany=Are you sure you want to delete this company and all inherited information ?
|
ConfirmDeleteCompany=Are you sure you want to delete this company and all inherited information?
|
||||||
DeleteContact=Delete a contact/address
|
DeleteContact=Delete a contact/address
|
||||||
ConfirmDeleteContact=Are you sure you want to delete this contact and all inherited information ?
|
ConfirmDeleteContact=Are you sure you want to delete this contact and all inherited information?
|
||||||
MenuNewThirdParty=New third party
|
MenuNewThirdParty=New third party
|
||||||
MenuNewCustomer=New customer
|
MenuNewCustomer=New customer
|
||||||
MenuNewProspect=New prospect
|
MenuNewProspect=New prospect
|
||||||
@ -77,6 +77,7 @@ VATIsUsed=VAT is used
|
|||||||
VATIsNotUsed=VAT is not used
|
VATIsNotUsed=VAT is not used
|
||||||
CopyAddressFromSoc=Fill address with third party address
|
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
|
||||||
|
PaymentBankAccount=Payment bank account
|
||||||
##### Local Taxes #####
|
##### Local Taxes #####
|
||||||
LocalTax1IsUsed=Use second tax
|
LocalTax1IsUsed=Use second tax
|
||||||
LocalTax1IsUsedES= RE is used
|
LocalTax1IsUsedES= RE is used
|
||||||
@ -271,7 +272,7 @@ DefaultContact=Default contact/address
|
|||||||
AddThirdParty=Create third party
|
AddThirdParty=Create third party
|
||||||
DeleteACompany=Delete a company
|
DeleteACompany=Delete a company
|
||||||
PersonalInformations=Personal data
|
PersonalInformations=Personal data
|
||||||
AccountancyCode=Accountancy code
|
AccountancyCode=Accounting account
|
||||||
CustomerCode=Customer code
|
CustomerCode=Customer code
|
||||||
SupplierCode=Supplier code
|
SupplierCode=Supplier code
|
||||||
CustomerCodeShort=Customer code
|
CustomerCodeShort=Customer code
|
||||||
@ -392,7 +393,7 @@ LeopardNumRefModelDesc=The code is free. This code can be modified at any time.
|
|||||||
ManagingDirectors=Manager(s) name (CEO, director, president...)
|
ManagingDirectors=Manager(s) name (CEO, director, president...)
|
||||||
MergeOriginThirdparty=Duplicate third party (third party you want to delete)
|
MergeOriginThirdparty=Duplicate third party (third party you want to delete)
|
||||||
MergeThirdparties=Merge third parties
|
MergeThirdparties=Merge third parties
|
||||||
ConfirmMergeThirdparties=Are you sure you want to merge this third party into the current one ? All linked objects (invoices, orders, ...) will be moved to current third party so you will be able to delete the duplicate one.
|
ConfirmMergeThirdparties=Are you sure you want to merge this third party into the current one? All linked objects (invoices, orders, ...) will be moved to current third party so you will be able to delete the duplicate one.
|
||||||
ThirdpartiesMergeSuccess=Thirdparties have been merged
|
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
|
||||||
|
|||||||
@ -86,12 +86,13 @@ Refund=Refund
|
|||||||
SocialContributionsPayments=Social/fiscal taxes payments
|
SocialContributionsPayments=Social/fiscal taxes payments
|
||||||
ShowVatPayment=Show VAT payment
|
ShowVatPayment=Show VAT payment
|
||||||
TotalToPay=Total to pay
|
TotalToPay=Total to pay
|
||||||
|
BalanceVisibilityDependsOnSortAndFilters=Balance is visible in this list only if table is sorted ascending on %s and filtered for 1 bank account
|
||||||
CustomerAccountancyCode=Customer accountancy code
|
CustomerAccountancyCode=Customer accountancy code
|
||||||
SupplierAccountancyCode=Supplier accountancy code
|
SupplierAccountancyCode=Supplier accountancy code
|
||||||
CustomerAccountancyCodeShort=Cust. account. code
|
CustomerAccountancyCodeShort=Cust. account. code
|
||||||
SupplierAccountancyCodeShort=Sup. account. code
|
SupplierAccountancyCodeShort=Sup. account. code
|
||||||
AccountNumber=Account number
|
AccountNumber=Account number
|
||||||
NewAccount=New account
|
NewAccountingAccount=New account
|
||||||
SalesTurnover=Sales turnover
|
SalesTurnover=Sales turnover
|
||||||
SalesTurnoverMinimum=Minimum sales turnover
|
SalesTurnoverMinimum=Minimum sales turnover
|
||||||
ByExpenseIncome=By expenses & incomes
|
ByExpenseIncome=By expenses & incomes
|
||||||
@ -169,7 +170,7 @@ InvoiceRef=Invoice ref.
|
|||||||
CodeNotDef=Not defined
|
CodeNotDef=Not defined
|
||||||
WarningDepositsNotIncluded=Deposits invoices are not included in this version with this accountancy module.
|
WarningDepositsNotIncluded=Deposits invoices are not included in this version with this accountancy module.
|
||||||
DatePaymentTermCantBeLowerThanObjectDate=Payment term date can't be lower than object date.
|
DatePaymentTermCantBeLowerThanObjectDate=Payment term date can't be lower than object date.
|
||||||
Pcg_version=Pcg version
|
Pcg_version=Chart of accounts models
|
||||||
Pcg_type=Pcg type
|
Pcg_type=Pcg type
|
||||||
Pcg_subtype=Pcg subtype
|
Pcg_subtype=Pcg subtype
|
||||||
InvoiceLinesToDispatch=Invoice lines to dispatch
|
InvoiceLinesToDispatch=Invoice lines to dispatch
|
||||||
@ -184,11 +185,11 @@ CalculationRuleDescSupplier=According to supplier, choose appropriate method to
|
|||||||
TurnoverPerProductInCommitmentAccountingNotRelevant=Turnover report per product, when using a <b>cash accountancy</b> mode is not relevant. This report is only available when using <b>engagement accountancy</b> mode (see setup of accountancy module).
|
TurnoverPerProductInCommitmentAccountingNotRelevant=Turnover report per product, when using a <b>cash accountancy</b> mode is not relevant. This report is only available when using <b>engagement accountancy</b> mode (see setup of accountancy module).
|
||||||
CalculationMode=Calculation mode
|
CalculationMode=Calculation mode
|
||||||
AccountancyJournal=Accountancy code journal
|
AccountancyJournal=Accountancy code journal
|
||||||
ACCOUNTING_VAT_SOLD_ACCOUNT=Default accountancy code for collecting VAT (VAT on sales)
|
ACCOUNTING_VAT_SOLD_ACCOUNT=Accounting account by default for collecting VAT - VAT on sales (used if not defined on VAT dictionary setup)
|
||||||
ACCOUNTING_VAT_BUY_ACCOUNT=Default accountancy code for recovered VAT (VAT on purchases)
|
ACCOUNTING_VAT_BUY_ACCOUNT=Accounting account by default for recovered VAT - VAT on purchases (used if not defined on VAT dictionary setup)
|
||||||
ACCOUNTING_VAT_PAY_ACCOUNT=Default accountancy code for paying VAT
|
ACCOUNTING_VAT_PAY_ACCOUNT=Accounting account by default for paying VAT
|
||||||
ACCOUNTING_ACCOUNT_CUSTOMER=Accountancy code by default for customer thirdparties
|
ACCOUNTING_ACCOUNT_CUSTOMER=Accounting account by default for customer third parties (used if not defined on third party card)
|
||||||
ACCOUNTING_ACCOUNT_SUPPLIER=Accountancy code by default for supplier thirdparties
|
ACCOUNTING_ACCOUNT_SUPPLIER=Accounting account by default for supplier third parties (used if not defined on third party card)
|
||||||
CloneTax=Clone a social/fiscal tax
|
CloneTax=Clone a social/fiscal tax
|
||||||
ConfirmCloneTax=Confirm the clone of a social/fiscal tax payment
|
ConfirmCloneTax=Confirm the clone of a social/fiscal tax payment
|
||||||
CloneTaxForNextMonth=Clone it for next month
|
CloneTaxForNextMonth=Clone it for next month
|
||||||
@ -199,6 +200,7 @@ BasedOnTwoFirstLettersOfVATNumberBeingDifferentFromYourCompanyCountry=Based on t
|
|||||||
SameCountryCustomersWithVAT=National customers report
|
SameCountryCustomersWithVAT=National customers report
|
||||||
BasedOnTwoFirstLettersOfVATNumberBeingTheSameAsYourCompanyCountry=Based on the two first letters of the VAT number being the same as your own company's country code
|
BasedOnTwoFirstLettersOfVATNumberBeingTheSameAsYourCompanyCountry=Based on the two first letters of the VAT number being the same as your own company's country code
|
||||||
LinkedFichinter=Link to an intervention
|
LinkedFichinter=Link to an intervention
|
||||||
ImportDataset_tax_contrib=Import social/fiscal taxes
|
ImportDataset_tax_contrib=Social/fiscal taxes
|
||||||
ImportDataset_tax_vat=Import vat payments
|
ImportDataset_tax_vat=Vat payments
|
||||||
ErrorBankAccountNotFound=Error: Bank account not found
|
ErrorBankAccountNotFound=Error: Bank account not found
|
||||||
|
FiscalPeriod=Accounting period
|
||||||
|
|||||||
@ -32,13 +32,13 @@ NewContractSubscription=New contract/subscription
|
|||||||
AddContract=Create contract
|
AddContract=Create contract
|
||||||
DeleteAContract=Delete a contract
|
DeleteAContract=Delete a contract
|
||||||
CloseAContract=Close a contract
|
CloseAContract=Close a contract
|
||||||
ConfirmDeleteAContract=Are you sure you want to delete this contract and all its services ?
|
ConfirmDeleteAContract=Are you sure you want to delete this contract and all its services?
|
||||||
ConfirmValidateContract=Are you sure you want to validate this contract under name <b>%s</b> ?
|
ConfirmValidateContract=Are you sure you want to validate this contract under name <b>%s</b>?
|
||||||
ConfirmCloseContract=This will close all services (active or not). Are you sure you want to close this contract ?
|
ConfirmCloseContract=This will close all services (active or not). Are you sure you want to close this contract?
|
||||||
ConfirmCloseService=Are you sure you want to close this service with date <b>%s</b> ?
|
ConfirmCloseService=Are you sure you want to close this service with date <b>%s</b>?
|
||||||
ValidateAContract=Validate a contract
|
ValidateAContract=Validate a contract
|
||||||
ActivateService=Activate service
|
ActivateService=Activate service
|
||||||
ConfirmActivateService=Are you sure you want to activate this service with date <b>%s</b> ?
|
ConfirmActivateService=Are you sure you want to activate this service with date <b>%s</b>?
|
||||||
RefContract=Contract reference
|
RefContract=Contract reference
|
||||||
DateContract=Contract date
|
DateContract=Contract date
|
||||||
DateServiceActivate=Service activation date
|
DateServiceActivate=Service activation date
|
||||||
@ -69,10 +69,10 @@ DraftContracts=Drafts contracts
|
|||||||
CloseRefusedBecauseOneServiceActive=Contract can't be closed as ther is at least one open service on it
|
CloseRefusedBecauseOneServiceActive=Contract can't be closed as ther is at least one open service on it
|
||||||
CloseAllContracts=Close all contract lines
|
CloseAllContracts=Close all contract lines
|
||||||
DeleteContractLine=Delete a contract line
|
DeleteContractLine=Delete a contract line
|
||||||
ConfirmDeleteContractLine=Are you sure you want to delete this contract line ?
|
ConfirmDeleteContractLine=Are you sure you want to delete this contract line?
|
||||||
MoveToAnotherContract=Move service into another contract.
|
MoveToAnotherContract=Move service into another contract.
|
||||||
ConfirmMoveToAnotherContract=I choosed new target contract and confirm I want to move this service into this contract.
|
ConfirmMoveToAnotherContract=I choosed new target contract and confirm I want to move this service into this contract.
|
||||||
ConfirmMoveToAnotherContractQuestion=Choose in which existing contract (of same third party), you want to move this service to ?
|
ConfirmMoveToAnotherContractQuestion=Choose in which existing contract (of same third party), you want to move this service to?
|
||||||
PaymentRenewContractId=Renew contract line (number %s)
|
PaymentRenewContractId=Renew contract line (number %s)
|
||||||
ExpiredSince=Expiration date
|
ExpiredSince=Expiration date
|
||||||
NoExpiredServices=No expired active services
|
NoExpiredServices=No expired active services
|
||||||
|
|||||||
@ -1,16 +1,16 @@
|
|||||||
# Dolibarr language file - Source file is en_US - deliveries
|
# Dolibarr language file - Source file is en_US - deliveries
|
||||||
Delivery=Delivery
|
Delivery=Delivery
|
||||||
DeliveryRef=Ref Delivery
|
DeliveryRef=Ref Delivery
|
||||||
DeliveryCard=Delivery card
|
DeliveryCard=Receipt card
|
||||||
DeliveryOrder=Delivery order
|
DeliveryOrder=Delivery order
|
||||||
DeliveryDate=Delivery date
|
DeliveryDate=Delivery date
|
||||||
CreateDeliveryOrder=Generate delivery order
|
CreateDeliveryOrder=Generate delivery receipt
|
||||||
DeliveryStateSaved=Delivery state saved
|
DeliveryStateSaved=Delivery state saved
|
||||||
SetDeliveryDate=Set shipping date
|
SetDeliveryDate=Set shipping date
|
||||||
ValidateDeliveryReceipt=Validate delivery receipt
|
ValidateDeliveryReceipt=Validate delivery receipt
|
||||||
ValidateDeliveryReceiptConfirm=Are you sure you want to validate this delivery receipt ?
|
ValidateDeliveryReceiptConfirm=Are you sure you want to validate this delivery receipt?
|
||||||
DeleteDeliveryReceipt=Delete delivery receipt
|
DeleteDeliveryReceipt=Delete delivery receipt
|
||||||
DeleteDeliveryReceiptConfirm=Are you sure you want to delete delivery receipt <b>%s</b> ?
|
DeleteDeliveryReceiptConfirm=Are you sure you want to delete delivery receipt <b>%s</b>?
|
||||||
DeliveryMethod=Delivery method
|
DeliveryMethod=Delivery method
|
||||||
TrackingNumber=Tracking number
|
TrackingNumber=Tracking number
|
||||||
DeliveryNotValidated=Delivery not validated
|
DeliveryNotValidated=Delivery not validated
|
||||||
|
|||||||
@ -6,7 +6,7 @@ Donor=Donor
|
|||||||
AddDonation=Create a donation
|
AddDonation=Create a donation
|
||||||
NewDonation=New donation
|
NewDonation=New donation
|
||||||
DeleteADonation=Delete a donation
|
DeleteADonation=Delete a donation
|
||||||
ConfirmDeleteADonation=Are you sure you want to delete this donation ?
|
ConfirmDeleteADonation=Are you sure you want to delete this donation?
|
||||||
ShowDonation=Show donation
|
ShowDonation=Show donation
|
||||||
PublicDonation=Public donation
|
PublicDonation=Public donation
|
||||||
DonationsArea=Donations area
|
DonationsArea=Donations area
|
||||||
|
|||||||
@ -32,13 +32,13 @@ ECMDocsByProducts=Documents linked to products
|
|||||||
ECMDocsByProjects=Documents linked to projects
|
ECMDocsByProjects=Documents linked to projects
|
||||||
ECMDocsByUsers=Documents linked to users
|
ECMDocsByUsers=Documents linked to users
|
||||||
ECMDocsByInterventions=Documents linked to interventions
|
ECMDocsByInterventions=Documents linked to interventions
|
||||||
|
ECMDocsByExpenseReports=Documents linked to expense reports
|
||||||
ECMNoDirectoryYet=No directory created
|
ECMNoDirectoryYet=No directory created
|
||||||
ShowECMSection=Show directory
|
ShowECMSection=Show directory
|
||||||
DeleteSection=Remove directory
|
DeleteSection=Remove directory
|
||||||
ConfirmDeleteSection=Can you confirm you want to delete the directory <b>%s</b> ?
|
ConfirmDeleteSection=Can you confirm you want to delete the directory <b>%s</b>?
|
||||||
ECMDirectoryForFiles=Relative directory for files
|
ECMDirectoryForFiles=Relative directory for files
|
||||||
CannotRemoveDirectoryContainsFiles=Removed not possible because it contains some files
|
CannotRemoveDirectoryContainsFiles=Removed not possible because it contains some files
|
||||||
ECMFileManager=File manager
|
ECMFileManager=File manager
|
||||||
ECMSelectASection=Select a directory on left tree...
|
ECMSelectASection=Select a directory on left tree...
|
||||||
DirNotSynchronizedSyncFirst=This directory seems to be created or modified outside ECM module. You must click on "Refresh" button first to synchronize disk and database to get content of this directory.
|
DirNotSynchronizedSyncFirst=This directory seems to be created or modified outside ECM module. You must click on "Refresh" button first to synchronize disk and database to get content of this directory.
|
||||||
|
|
||||||
|
|||||||
@ -69,8 +69,8 @@ ErrorLDAPSetupNotComplete=Dolibarr-LDAP matching is not complete.
|
|||||||
ErrorLDAPMakeManualTest=A .ldif file has been generated in directory %s. Try to load it manually from command line to have more information on errors.
|
ErrorLDAPMakeManualTest=A .ldif file has been generated in directory %s. Try to load it manually from command line to have more information on errors.
|
||||||
ErrorCantSaveADoneUserWithZeroPercentage=Can't save an action with "statut not started" if field "done by" is also filled.
|
ErrorCantSaveADoneUserWithZeroPercentage=Can't save an action with "statut not started" if field "done by" is also filled.
|
||||||
ErrorRefAlreadyExists=Ref used for creation already exists.
|
ErrorRefAlreadyExists=Ref used for creation already exists.
|
||||||
ErrorPleaseTypeBankTransactionReportName=Please type bank receipt name where transaction is reported (Format YYYYMM or YYYYMMDD)
|
ErrorPleaseTypeBankTransactionReportName=Please type bank statement name where entry is reported (Format YYYYMM or YYYYMMDD)
|
||||||
ErrorRecordHasChildren=Failed to delete records since it has some childs.
|
ErrorRecordHasChildren=Failed to delete record since it has some childs.
|
||||||
ErrorRecordIsUsedCantDelete=Can't delete record. It is already used or included into other object.
|
ErrorRecordIsUsedCantDelete=Can't delete record. It is already used or included into other object.
|
||||||
ErrorModuleRequireJavascript=Javascript must not be disabled to have this feature working. To enable/disable Javascript, go to menu Home->Setup->Display.
|
ErrorModuleRequireJavascript=Javascript must not be disabled to have this feature working. To enable/disable Javascript, go to menu Home->Setup->Display.
|
||||||
ErrorPasswordsMustMatch=Both typed passwords must match each other
|
ErrorPasswordsMustMatch=Both typed passwords must match each other
|
||||||
@ -131,7 +131,7 @@ ErrorWarehouseMustDiffers=Source and target warehouses must differs
|
|||||||
ErrorBadFormat=Bad format!
|
ErrorBadFormat=Bad format!
|
||||||
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.
|
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=Error, there is some deliveries linked to this shipment. Deletion refused.
|
ErrorThereIsSomeDeliveries=Error, there is some deliveries linked to this shipment. Deletion refused.
|
||||||
ErrorCantDeletePaymentReconciliated=Can't delete a payment that had generated a bank transaction that was conciliated
|
ErrorCantDeletePaymentReconciliated=Can't delete a payment that had generated a bank entry that was reconciled
|
||||||
ErrorCantDeletePaymentSharedWithPayedInvoice=Can't delete a payment shared by at least one invoice with status Payed
|
ErrorCantDeletePaymentSharedWithPayedInvoice=Can't delete a payment shared by at least one invoice with status Payed
|
||||||
ErrorPriceExpression1=Cannot assign to constant '%s'
|
ErrorPriceExpression1=Cannot assign to constant '%s'
|
||||||
ErrorPriceExpression2=Cannot redefine built-in function '%s'
|
ErrorPriceExpression2=Cannot redefine built-in function '%s'
|
||||||
@ -176,6 +176,8 @@ ErrorStockIsNotEnoughToAddProductOnShipment=Stock is not enougth for product %s
|
|||||||
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'.
|
ErrorFailedToLoadLoginFileForMode=Failed to get the login file for mode '%s'.
|
||||||
ErrorModuleNotFound=File of module was not found.
|
ErrorModuleNotFound=File of module was not found.
|
||||||
|
ErrorFieldAccountNotDefinedForBankLine=Value for Accounting account not defined for source bank line %s
|
||||||
|
ErrorBankStatementNameMustFollowRegex=Error, bank statement name must follow the following syntax rule %s
|
||||||
|
|
||||||
# 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.
|
||||||
|
|||||||
@ -26,8 +26,6 @@ FieldTitle=Field title
|
|||||||
NowClickToGenerateToBuildExportFile=Now, select file format in combo box and click on "Generate" to build export file...
|
NowClickToGenerateToBuildExportFile=Now, select file format in combo box and click on "Generate" to build export file...
|
||||||
AvailableFormats=Available formats
|
AvailableFormats=Available formats
|
||||||
LibraryShort=Library
|
LibraryShort=Library
|
||||||
LibraryUsed=Library used
|
|
||||||
LibraryVersion=Version
|
|
||||||
Step=Step
|
Step=Step
|
||||||
FormatedImport=Import assistant
|
FormatedImport=Import assistant
|
||||||
FormatedImportDesc1=This area allows to import personalized data, using an assistant to help you in process without technical knowledge.
|
FormatedImportDesc1=This area allows to import personalized data, using an assistant to help you in process without technical knowledge.
|
||||||
@ -87,7 +85,7 @@ TooMuchWarnings=There is still <b>%s</b> other source lines with warnings but ou
|
|||||||
EmptyLine=Empty line (will be discarded)
|
EmptyLine=Empty line (will be discarded)
|
||||||
CorrectErrorBeforeRunningImport=You must first correct all errors before running definitive import.
|
CorrectErrorBeforeRunningImport=You must first correct all errors before running definitive import.
|
||||||
FileWasImported=File was imported with number <b>%s</b>.
|
FileWasImported=File was imported with number <b>%s</b>.
|
||||||
YouCanUseImportIdToFindRecord=You can find all imported records in your database by filtering on field <b>import_key='%s'</b>.
|
YouCanUseImportIdToFindRecord=You can find all imported record in your database by filtering on field <b>import_key='%s'</b>.
|
||||||
NbOfLinesOK=Number of lines with no errors and no warnings: <b>%s</b>.
|
NbOfLinesOK=Number of lines with no errors and no warnings: <b>%s</b>.
|
||||||
NbOfLinesImported=Number of lines successfully imported: <b>%s</b>.
|
NbOfLinesImported=Number of lines successfully imported: <b>%s</b>.
|
||||||
DataComeFromNoWhere=Value to insert comes from nowhere in source file.
|
DataComeFromNoWhere=Value to insert comes from nowhere in source file.
|
||||||
@ -105,7 +103,7 @@ CSVFormatDesc=<b>Comma Separated Value</b> file format (.csv).<br>This is a text
|
|||||||
Excel95FormatDesc=<b>Excel</b> file format (.xls)<br>This is native Excel 95 format (BIFF5).
|
Excel95FormatDesc=<b>Excel</b> file format (.xls)<br>This is native Excel 95 format (BIFF5).
|
||||||
Excel2007FormatDesc=<b>Excel</b> file format (.xlsx)<br>This is native Excel 2007 format (SpreadsheetML).
|
Excel2007FormatDesc=<b>Excel</b> file format (.xlsx)<br>This is native Excel 2007 format (SpreadsheetML).
|
||||||
TsvFormatDesc=<b>Tab Separated Value</b> file format (.tsv)<br>This is a text file format where fields are separated by a tabulator [tab].
|
TsvFormatDesc=<b>Tab Separated Value</b> file format (.tsv)<br>This is a text file format where fields are separated by a tabulator [tab].
|
||||||
ExportFieldAutomaticallyAdded=Field <b>%s</b> was automatically added. It will avoid you to have similar lines to be treated as duplicate records (with this field added, all lines will own their own id and will differ).
|
ExportFieldAutomaticallyAdded=Field <b>%s</b> was automatically added. It will avoid you to have similar lines to be treated as duplicate record (with this field added, all lines will own their own id and will differ).
|
||||||
CsvOptions=Csv Options
|
CsvOptions=Csv Options
|
||||||
Separator=Separator
|
Separator=Separator
|
||||||
Enclosure=Enclosure
|
Enclosure=Enclosure
|
||||||
|
|||||||
@ -11,7 +11,7 @@ TypeOfSupport=Source of support
|
|||||||
TypeSupportCommunauty=Community (free)
|
TypeSupportCommunauty=Community (free)
|
||||||
TypeSupportCommercial=Commercial
|
TypeSupportCommercial=Commercial
|
||||||
TypeOfHelp=Type
|
TypeOfHelp=Type
|
||||||
NeedHelpCenter=Need help or support ?
|
NeedHelpCenter=Need help or support?
|
||||||
Efficiency=Efficiency
|
Efficiency=Efficiency
|
||||||
TypeHelpOnly=Help only
|
TypeHelpOnly=Help only
|
||||||
TypeHelpDev=Help+Development
|
TypeHelpDev=Help+Development
|
||||||
|
|||||||
@ -5,7 +5,7 @@ Establishments=Establishments
|
|||||||
Establishment=Establishment
|
Establishment=Establishment
|
||||||
NewEstablishment=New establishment
|
NewEstablishment=New establishment
|
||||||
DeleteEstablishment=Delete establishment
|
DeleteEstablishment=Delete establishment
|
||||||
ConfirmDeleteEstablishment=Are-you sure to delete this establishment ?
|
ConfirmDeleteEstablishment=Are-you sure to delete this establishment?
|
||||||
OpenEtablishment=Open establishment
|
OpenEtablishment=Open establishment
|
||||||
CloseEtablishment=Close establishment
|
CloseEtablishment=Close establishment
|
||||||
# Dictionary
|
# Dictionary
|
||||||
|
|||||||
@ -62,7 +62,6 @@ KeepEmptyIfNoPassword=Leave empty if user has no password (avoid this)
|
|||||||
SaveConfigurationFile=Save values
|
SaveConfigurationFile=Save values
|
||||||
ServerConnection=Server connection
|
ServerConnection=Server connection
|
||||||
DatabaseCreation=Database creation
|
DatabaseCreation=Database creation
|
||||||
UserCreation=User creation
|
|
||||||
CreateDatabaseObjects=Database objects creation
|
CreateDatabaseObjects=Database objects creation
|
||||||
ReferenceDataLoading=Reference data loading
|
ReferenceDataLoading=Reference data loading
|
||||||
TablesAndPrimaryKeysCreation=Tables and Primary keys creation
|
TablesAndPrimaryKeysCreation=Tables and Primary keys creation
|
||||||
@ -133,7 +132,7 @@ MigrationFinished=Migration finished
|
|||||||
LastStepDesc=<strong>Last step</strong>: Define here login and password you plan to use to connect to software. Do not loose this as it is the account to administer all others.
|
LastStepDesc=<strong>Last step</strong>: Define here login and password you plan to use to connect to software. Do not loose this as it is the account to administer all others.
|
||||||
ActivateModule=Activate module %s
|
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.
|
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.
|
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.
|
||||||
@ -176,7 +175,7 @@ MigrationReopeningContracts=Open contract closed by error
|
|||||||
MigrationReopenThisContract=Reopen contract %s
|
MigrationReopenThisContract=Reopen contract %s
|
||||||
MigrationReopenedContractsNumber=%s contracts modified
|
MigrationReopenedContractsNumber=%s contracts modified
|
||||||
MigrationReopeningContractsNothingToUpdate=No closed contract to open
|
MigrationReopeningContractsNothingToUpdate=No closed contract to open
|
||||||
MigrationBankTransfertsUpdate=Update links between bank transaction and a bank transfer
|
MigrationBankTransfertsUpdate=Update links between bank entry and a bank transfer
|
||||||
MigrationBankTransfertsNothingToUpdate=All links are up to date
|
MigrationBankTransfertsNothingToUpdate=All links are up to date
|
||||||
MigrationShipmentOrderMatching=Sendings receipt update
|
MigrationShipmentOrderMatching=Sendings receipt update
|
||||||
MigrationDeliveryOrderMatching=Delivery receipt update
|
MigrationDeliveryOrderMatching=Delivery receipt update
|
||||||
|
|||||||
@ -15,17 +15,18 @@ ValidateIntervention=Validate intervention
|
|||||||
ModifyIntervention=Modify intervention
|
ModifyIntervention=Modify intervention
|
||||||
DeleteInterventionLine=Delete intervention line
|
DeleteInterventionLine=Delete intervention line
|
||||||
CloneIntervention=Clone intervention
|
CloneIntervention=Clone intervention
|
||||||
ConfirmDeleteIntervention=Are you sure you want to delete this intervention ?
|
ConfirmDeleteIntervention=Are you sure you want to delete this intervention?
|
||||||
ConfirmValidateIntervention=Are you sure you want to validate this intervention under name <b>%s</b> ?
|
ConfirmValidateIntervention=Are you sure you want to validate this intervention under name <b>%s</b>?
|
||||||
ConfirmModifyIntervention=Are you sure you want to modify this intervention ?
|
ConfirmModifyIntervention=Are you sure you want to modify this intervention?
|
||||||
ConfirmDeleteInterventionLine=Are you sure you want to delete this intervention line ?
|
ConfirmDeleteInterventionLine=Are you sure you want to delete this intervention line?
|
||||||
ConfirmCloneIntervention=Are you sure you want to clone this intervention ?
|
ConfirmCloneIntervention=Are you sure you want to clone this intervention?
|
||||||
NameAndSignatureOfInternalContact=Name and signature of intervening :
|
NameAndSignatureOfInternalContact=Name and signature of intervening :
|
||||||
NameAndSignatureOfExternalContact=Name and signature of customer :
|
NameAndSignatureOfExternalContact=Name and signature of customer :
|
||||||
DocumentModelStandard=Standard document model for interventions
|
DocumentModelStandard=Standard document model for interventions
|
||||||
InterventionCardsAndInterventionLines=Interventions and lines of interventions
|
InterventionCardsAndInterventionLines=Interventions and lines of interventions
|
||||||
InterventionClassifyBilled=Classify "Billed"
|
InterventionClassifyBilled=Classify "Billed"
|
||||||
InterventionClassifyUnBilled=Classify "Unbilled"
|
InterventionClassifyUnBilled=Classify "Unbilled"
|
||||||
|
InterventionClassifyDone=Classify "Done"
|
||||||
StatusInterInvoiced=Billed
|
StatusInterInvoiced=Billed
|
||||||
ShowIntervention=Show intervention
|
ShowIntervention=Show intervention
|
||||||
SendInterventionRef=Submission of intervention %s
|
SendInterventionRef=Submission of intervention %s
|
||||||
|
|||||||
@ -4,14 +4,15 @@ Loans=Loans
|
|||||||
NewLoan=New Loan
|
NewLoan=New Loan
|
||||||
ShowLoan=Show Loan
|
ShowLoan=Show Loan
|
||||||
PaymentLoan=Loan payment
|
PaymentLoan=Loan payment
|
||||||
|
LoanPayment=Loan payment
|
||||||
ShowLoanPayment=Show Loan Payment
|
ShowLoanPayment=Show Loan Payment
|
||||||
LoanCapital=Capital
|
LoanCapital=Capital
|
||||||
Insurance=Insurance
|
Insurance=Insurance
|
||||||
Interest=Interest
|
Interest=Interest
|
||||||
Nbterms=Number of terms
|
Nbterms=Number of terms
|
||||||
LoanAccountancyCapitalCode=Accountancy code capital
|
LoanAccountancyCapitalCode=Accounting account capital
|
||||||
LoanAccountancyInsuranceCode=Accountancy code insurance
|
LoanAccountancyInsuranceCode=Accounting account insurance
|
||||||
LoanAccountancyInterestCode=Accountancy code interest
|
LoanAccountancyInterestCode=Accounting account interest
|
||||||
ConfirmDeleteLoan=Confirm deleting this loan
|
ConfirmDeleteLoan=Confirm deleting this loan
|
||||||
LoanDeleted=Loan Deleted Successfully
|
LoanDeleted=Loan Deleted Successfully
|
||||||
ConfirmPayLoan=Confirm classify paid this loan
|
ConfirmPayLoan=Confirm classify paid this loan
|
||||||
@ -44,6 +45,6 @@ GoToPrincipal=%s will go towards PRINCIPAL
|
|||||||
YouWillSpend=You will spend %s in year %s
|
YouWillSpend=You will spend %s in year %s
|
||||||
# Admin
|
# Admin
|
||||||
ConfigLoan=Configuration of the module loan
|
ConfigLoan=Configuration of the module loan
|
||||||
LOAN_ACCOUNTING_ACCOUNT_CAPITAL=Accountancy code capital by default
|
LOAN_ACCOUNTING_ACCOUNT_CAPITAL=Accounting account capital by default
|
||||||
LOAN_ACCOUNTING_ACCOUNT_INTEREST=Accountancy code interest by default
|
LOAN_ACCOUNTING_ACCOUNT_INTEREST=Accounting account interest by default
|
||||||
LOAN_ACCOUNTING_ACCOUNT_INSURANCE=Accountancy code insurance by default
|
LOAN_ACCOUNTING_ACCOUNT_INSURANCE=Accounting account insurance by default
|
||||||
|
|||||||
@ -42,22 +42,21 @@ MailingStatusNotContact=Don't contact anymore
|
|||||||
MailingStatusReadAndUnsubscribe=Read and unsubscribe
|
MailingStatusReadAndUnsubscribe=Read and unsubscribe
|
||||||
ErrorMailRecipientIsEmpty=Email recipient is empty
|
ErrorMailRecipientIsEmpty=Email recipient is empty
|
||||||
WarningNoEMailsAdded=No new Email to add to recipient's list.
|
WarningNoEMailsAdded=No new Email to add to recipient's list.
|
||||||
ConfirmValidMailing=Are you sure you want to validate this emailing ?
|
ConfirmValidMailing=Are you sure you want to validate this emailing?
|
||||||
ConfirmResetMailing=Warning, by reinitializing emailing <b>%s</b>, you allow to make a mass sending of this email another time. Are you sure you this is what you want to do ?
|
ConfirmResetMailing=Warning, by reinitializing emailing <b>%s</b>, you allow to make a mass sending of this email another time. Are you sure you this is what you want to do?
|
||||||
ConfirmDeleteMailing=Are you sure you want to delete this emailling ?
|
ConfirmDeleteMailing=Are you sure you want to delete this emailling?
|
||||||
NbOfUniqueEMails=Nb of unique emails
|
NbOfUniqueEMails=Nb of unique emails
|
||||||
NbOfEMails=Nb of EMails
|
NbOfEMails=Nb of EMails
|
||||||
TotalNbOfDistinctRecipients=Number of distinct recipients
|
TotalNbOfDistinctRecipients=Number of distinct recipients
|
||||||
NoTargetYet=No recipients defined yet (Go on tab 'Recipients')
|
NoTargetYet=No recipients defined yet (Go on tab 'Recipients')
|
||||||
RemoveRecipient=Remove recipient
|
RemoveRecipient=Remove recipient
|
||||||
CommonSubstitutions=Common substitutions
|
|
||||||
YouCanAddYourOwnPredefindedListHere=To create your email selector module, see htdocs/core/modules/mailings/README.
|
YouCanAddYourOwnPredefindedListHere=To create your email selector module, see htdocs/core/modules/mailings/README.
|
||||||
EMailTestSubstitutionReplacedByGenericValues=When using test mode, substitutions variables are replaced by generic values
|
EMailTestSubstitutionReplacedByGenericValues=When using test mode, substitutions variables are replaced by generic values
|
||||||
MailingAddFile=Attach this file
|
MailingAddFile=Attach this file
|
||||||
NoAttachedFiles=No attached files
|
NoAttachedFiles=No attached files
|
||||||
BadEMail=Bad value for EMail
|
BadEMail=Bad value for EMail
|
||||||
CloneEMailing=Clone Emailing
|
CloneEMailing=Clone Emailing
|
||||||
ConfirmCloneEMailing=Are you sure you want to clone this emailing ?
|
ConfirmCloneEMailing=Are you sure you want to clone this emailing?
|
||||||
CloneContent=Clone message
|
CloneContent=Clone message
|
||||||
CloneReceivers=Cloner recipients
|
CloneReceivers=Cloner recipients
|
||||||
DateLastSend=Date of latest sending
|
DateLastSend=Date of latest sending
|
||||||
@ -90,7 +89,7 @@ SendMailing=Send emailing
|
|||||||
SendMail=Send email
|
SendMail=Send email
|
||||||
MailingNeedCommand=For security reason, sending an emailing is better when performed from command line. If you have one, ask your server administrator to launch the following command to send the emailing to all recipients:
|
MailingNeedCommand=For security reason, sending an emailing is better when performed from command line. If you have one, ask your server administrator to launch the following command to send the emailing to all recipients:
|
||||||
MailingNeedCommand2=You can however send them online by adding parameter MAILING_LIMIT_SENDBYWEB with value of max number of emails you want to send by session. For this, go on Home - Setup - Other.
|
MailingNeedCommand2=You can however send them online by adding parameter MAILING_LIMIT_SENDBYWEB with value of max number of emails you want to send by session. For this, go on Home - Setup - Other.
|
||||||
ConfirmSendingEmailing=If you can't or prefer sending them with your www browser, please confirm you are sure you want to send emailing now from your browser ?
|
ConfirmSendingEmailing=If you can't or prefer sending them with your www browser, please confirm you are sure you want to send emailing now from your browser?
|
||||||
LimitSendingEmailing=Note: Sending of emailings from web interface is done in several times for security and timeout reasons, <b>%s</b> recipients at a time for each sending session.
|
LimitSendingEmailing=Note: Sending of emailings from web interface is done in several times for security and timeout reasons, <b>%s</b> recipients at a time for each sending session.
|
||||||
TargetsReset=Clear list
|
TargetsReset=Clear list
|
||||||
ToClearAllRecipientsClickHere=Click here to clear the recipient list for this emailing
|
ToClearAllRecipientsClickHere=Click here to clear the recipient list for this emailing
|
||||||
@ -98,7 +97,7 @@ ToAddRecipientsChooseHere=Add recipients by choosing from the lists
|
|||||||
NbOfEMailingsReceived=Mass emailings received
|
NbOfEMailingsReceived=Mass emailings received
|
||||||
NbOfEMailingsSend=Mass emailings sent
|
NbOfEMailingsSend=Mass emailings sent
|
||||||
IdRecord=ID record
|
IdRecord=ID record
|
||||||
DeliveryReceipt=Delivery Receipt
|
DeliveryReceipt=Delivery Ack.
|
||||||
YouCanUseCommaSeparatorForSeveralRecipients=You can use the <b>comma</b> separator to specify several recipients.
|
YouCanUseCommaSeparatorForSeveralRecipients=You can use the <b>comma</b> separator to specify several recipients.
|
||||||
TagCheckMail=Track mail opening
|
TagCheckMail=Track mail opening
|
||||||
TagUnsubscribe=Unsubscribe link
|
TagUnsubscribe=Unsubscribe link
|
||||||
@ -119,6 +118,8 @@ MailSendSetupIs2=You must first go, with an admin account, into menu %sHome - Se
|
|||||||
MailSendSetupIs3=If you have any questions on how to setup your SMTP server, you can ask to %s.
|
MailSendSetupIs3=If you have any questions on how to setup your SMTP server, you can ask to %s.
|
||||||
YouCanAlsoUseSupervisorKeyword=You can also add the keyword <strong>__SUPERVISOREMAIL__</strong> to have email being sent to the supervisor of user (works only if an email is defined for this supervisor)
|
YouCanAlsoUseSupervisorKeyword=You can also add the keyword <strong>__SUPERVISOREMAIL__</strong> to have email being sent to the supervisor of user (works only if an email is defined for this supervisor)
|
||||||
NbOfTargetedContacts=Current number of targeted contact emails
|
NbOfTargetedContacts=Current number of targeted contact emails
|
||||||
|
UseFormatFileEmailToTarget=Imported file must have format <strong>email;name;firstname;other</strong>
|
||||||
|
UseFormatInputEmailToTarget=Enter a string with format <strong>email;name;firstname;other</strong>
|
||||||
MailAdvTargetRecipients=Recipients (advanced selection)
|
MailAdvTargetRecipients=Recipients (advanced selection)
|
||||||
AdvTgtTitle=Fill input fields to preselect the thirdparties or contacts/addresses to target
|
AdvTgtTitle=Fill input fields to preselect the thirdparties or contacts/addresses to target
|
||||||
AdvTgtSearchTextHelp=Use %% as magic caracters. For exemple to find all item like <b>jean, joe, jim</b>, you can input <b>j%%</b>, you can also use ; as separator for value, and use ! for except this value. For exemple <b>jean;joe;jim%%;!jimo;!jima%</b> will target all jean, joe, start with jim but not jimo and not everythnig taht start by jima
|
AdvTgtSearchTextHelp=Use %% as magic caracters. For exemple to find all item like <b>jean, joe, jim</b>, you can input <b>j%%</b>, you can also use ; as separator for value, and use ! for except this value. For exemple <b>jean;joe;jim%%;!jimo;!jima%</b> will target all jean, joe, start with jim but not jimo and not everythnig taht start by jima
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user