mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
Merge branch 'develop' of https://github.com/grandoc/dolibarr into
grandoc-develop Conflicts: htdocs/langs/ar_SA/admin.lang htdocs/langs/el_GR/admin.lang htdocs/langs/es_ES/admin.lang htdocs/langs/nl_NL/admin.lang htdocs/langs/tr_TR/admin.lang
This commit is contained in:
commit
46e9b5d550
|
|
@ -49,6 +49,8 @@ Dolibarr better:
|
|||
- The deprecated way (with 4 parameters) to declare a new tab into a module descriptor file has been
|
||||
removed. You must now use the 6 parameters way. See file modMyModule.class.php for example.
|
||||
- Remove the javascrit function ac_delay() that is not used anymore by core code.
|
||||
- Properties dictionnaries into module descriptor files has been renamed into dictionaries.
|
||||
|
||||
|
||||
|
||||
***** ChangeLog for 3.5.1 compared to 3.5.0 *****
|
||||
|
|
@ -824,7 +826,7 @@ For developers:
|
|||
- New: Support a backtopage parameter on contact creation page.
|
||||
- New: Add id on div to show logo.
|
||||
- New: Install wizard can activate a module at end of install.
|
||||
- New: Dictionnary setup works with very large external dictionnaries (Add
|
||||
- New: Dictionary setup works with very large external dictionnaries (Add
|
||||
page navigation).
|
||||
- New: Add api to draw graphics with javascript (using Jquery Flot).
|
||||
- New: Can add user login into menu urls added by modules.
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -137,26 +137,26 @@ class modMyModule extends DolibarrModules
|
|||
// 'opensurveypoll' to add a tab in opensurvey poll view
|
||||
$this->tabs = array();
|
||||
|
||||
// Dictionnaries
|
||||
// Dictionaries
|
||||
if (! isset($conf->mymodule->enabled))
|
||||
{
|
||||
$conf->mymodule=new stdClass();
|
||||
$conf->mymodule->enabled=0;
|
||||
}
|
||||
$this->dictionnaries=array();
|
||||
$this->dictionaries=array();
|
||||
/* Example:
|
||||
if (! isset($conf->mymodule->enabled)) $conf->mymodule->enabled=0; // This is to avoid warnings
|
||||
$this->dictionnaries=array(
|
||||
$this->dictionaries=array(
|
||||
'langs'=>'mylangfile@mymodule',
|
||||
'tabname'=>array(MAIN_DB_PREFIX."table1",MAIN_DB_PREFIX."table2",MAIN_DB_PREFIX."table3"), // List of tables we want to see into dictonnary editor
|
||||
'tablib'=>array("Table1","Table2","Table3"), // Label of tables
|
||||
'tabsql'=>array('SELECT f.rowid as rowid, f.code, f.label, f.active FROM '.MAIN_DB_PREFIX.'table1 as f','SELECT f.rowid as rowid, f.code, f.label, f.active FROM '.MAIN_DB_PREFIX.'table2 as f','SELECT f.rowid as rowid, f.code, f.label, f.active FROM '.MAIN_DB_PREFIX.'table3 as f'), // Request to select fields
|
||||
'tabsqlsort'=>array("label ASC","label ASC","label ASC"), // Sort order
|
||||
'tabfield'=>array("code,label","code,label","code,label"), // List of fields (result of select to show dictionnary)
|
||||
'tabfield'=>array("code,label","code,label","code,label"), // List of fields (result of select to show dictionary)
|
||||
'tabfieldvalue'=>array("code,label","code,label","code,label"), // List of fields (list of fields to edit a record)
|
||||
'tabfieldinsert'=>array("code,label","code,label","code,label"), // List of fields (list of fields for insert)
|
||||
'tabrowid'=>array("rowid","rowid","rowid"), // Name of columns with primary key (try to always name it 'rowid')
|
||||
'tabcond'=>array($conf->mymodule->enabled,$conf->mymodule->enabled,$conf->mymodule->enabled) // Condition to show each dictionnary
|
||||
'tabcond'=>array($conf->mymodule->enabled,$conf->mymodule->enabled,$conf->mymodule->enabled) // Condition to show each dictionary
|
||||
);
|
||||
*/
|
||||
|
||||
|
|
|
|||
|
|
@ -296,7 +296,7 @@ abstract class ActionsAdherentCardCommon
|
|||
$this->tpl['select_country'] = $form->select_country($this->object->country_id,'country_id');
|
||||
$countrynotdefined = $langs->trans("ErrorSetACountryFirst").' ('.$langs->trans("SeeAbove").')';
|
||||
|
||||
if ($user->admin) $this->tpl['info_admin'] = info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
||||
if ($user->admin) $this->tpl['info_admin'] = info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
||||
|
||||
// State
|
||||
if ($this->object->country_id) $this->tpl['select_state'] = $formcompany->select_state($this->object->state_id,$this->object->country_code);
|
||||
|
|
|
|||
|
|
@ -834,7 +834,7 @@ else
|
|||
$object->country_id=$object->country_id?$object->country_id:$mysoc->country_id;
|
||||
print '<tr><td width="25%">'.$langs->trans('Country').'</td><td>';
|
||||
print $form->select_country(GETPOST('country_id','alpha')?GETPOST('country_id','alpha'):$object->country_id,'country_id');
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
||||
print '</td></tr>';
|
||||
|
||||
// State
|
||||
|
|
@ -1083,7 +1083,7 @@ else
|
|||
//$object->country_id=$object->country_id?$object->country_id:$mysoc->country_id; // In edit mode we don't force to company country if not defined
|
||||
print '<tr><td width="25%">'.$langs->trans('Country').'</td><td>';
|
||||
print $form->select_country(isset($_POST["country_id"])?$_POST["country_id"]:$object->country_id,'country_id');
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
||||
print '</td></tr>';
|
||||
|
||||
// State
|
||||
|
|
|
|||
|
|
@ -295,7 +295,7 @@ if ($action == 'edit' || $action == 'updateedit')
|
|||
print '<tr '.$bc[$var].'><td class="fieldrequired">'.$langs->trans("Country").'</td><td class="maxwidthonsmartphone">';
|
||||
//if (empty($country_selected)) $country_selected=substr($langs->defaultlang,-2); // Par defaut, pays de la localisation
|
||||
print $form->select_country($mysoc->country_id,'country_id');
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
||||
print '</td></tr>'."\n";
|
||||
|
||||
$var=!$var;
|
||||
|
|
|
|||
|
|
@ -66,13 +66,13 @@ $pagenext = $page + 1;
|
|||
// Initialize technical object to manage hooks of thirdparties. Note that conf->hooks_modules contains array array
|
||||
$hookmanager->initHooks(array('admin'));
|
||||
|
||||
// This page is a generic page to edit dictionnaries
|
||||
// Put here declaration of dictionnaries properties
|
||||
// This page is a generic page to edit dictionaries
|
||||
// Put here declaration of dictionaries properties
|
||||
|
||||
// Sort order to show dictionnary (0 is space). All other dictionnaries (added by modules) will be at end of this.
|
||||
// Sort order to show dictionary (0 is space). All other dictionaries (added by modules) will be at end of this.
|
||||
$taborder=array(9,0,4,3,2,0,1,8,19,16,0,5,11,0,6,0,10,25,12,13,0,14,0,7,17,0,22,20,18,21,0,15,0,24,23);
|
||||
|
||||
// Name of SQL tables of dictionnaries
|
||||
// Name of SQL tables of dictionaries
|
||||
$tabname=array();
|
||||
$tabname[1] = MAIN_DB_PREFIX."c_forme_juridique";
|
||||
$tabname[2] = MAIN_DB_PREFIX."c_departements";
|
||||
|
|
@ -102,31 +102,31 @@ $tabname[25]= MAIN_DB_PREFIX."c_revenuestamp";
|
|||
|
||||
// Dictionary labels
|
||||
$tablib=array();
|
||||
$tablib[1] = "DictionnaryCompanyJuridicalType";
|
||||
$tablib[2] = "DictionnaryCanton";
|
||||
$tablib[3] = "DictionnaryRegion";
|
||||
$tablib[4] = "DictionnaryCountry";
|
||||
$tablib[5] = "DictionnaryCivility";
|
||||
$tablib[6] = "DictionnaryActions";
|
||||
$tablib[7] = "DictionnarySocialContributions";
|
||||
$tablib[8] = "DictionnaryCompanyType";
|
||||
$tablib[9] = "DictionnaryCurrency";
|
||||
$tablib[10]= "DictionnaryVAT";
|
||||
$tablib[11]= "DictionnaryTypeContact";
|
||||
$tablib[12]= "DictionnaryPaymentConditions";
|
||||
$tablib[13]= "DictionnaryPaymentModes";
|
||||
$tablib[14]= "DictionnaryEcotaxe";
|
||||
$tablib[15]= "DictionnaryPaperFormat";
|
||||
$tablib[16]= "DictionnaryProspectLevel";
|
||||
$tablib[17]= "DictionnaryFees";
|
||||
$tablib[18]= "DictionnarySendingMethods";
|
||||
$tablib[19]= "DictionnaryStaff";
|
||||
$tablib[20]= "DictionnaryOrderMethods";
|
||||
$tablib[21]= "DictionnaryAvailability";
|
||||
$tablib[22]= "DictionnarySource";
|
||||
$tablib[23]= "DictionnaryAccountancyplan";
|
||||
$tablib[24]= "DictionnaryAccountancysystem";
|
||||
$tablib[25]= "DictionnaryRevenueStamp";
|
||||
$tablib[1] = "DictionaryCompanyJuridicalType";
|
||||
$tablib[2] = "DictionaryCanton";
|
||||
$tablib[3] = "DictionaryRegion";
|
||||
$tablib[4] = "DictionaryCountry";
|
||||
$tablib[5] = "DictionaryCivility";
|
||||
$tablib[6] = "DictionaryActions";
|
||||
$tablib[7] = "DictionarySocialContributions";
|
||||
$tablib[8] = "DictionaryCompanyType";
|
||||
$tablib[9] = "DictionaryCurrency";
|
||||
$tablib[10]= "DictionaryVAT";
|
||||
$tablib[11]= "DictionaryTypeContact";
|
||||
$tablib[12]= "DictionaryPaymentConditions";
|
||||
$tablib[13]= "DictionaryPaymentModes";
|
||||
$tablib[14]= "DictionaryEcotaxe";
|
||||
$tablib[15]= "DictionaryPaperFormat";
|
||||
$tablib[16]= "DictionaryProspectLevel";
|
||||
$tablib[17]= "DictionaryFees";
|
||||
$tablib[18]= "DictionarySendingMethods";
|
||||
$tablib[19]= "DictionaryStaff";
|
||||
$tablib[20]= "DictionaryOrderMethods";
|
||||
$tablib[21]= "DictionaryAvailability";
|
||||
$tablib[22]= "DictionarySource";
|
||||
$tablib[23]= "DictionaryAccountancyplan";
|
||||
$tablib[24]= "DictionaryAccountancysystem";
|
||||
$tablib[25]= "DictionaryRevenueStamp";
|
||||
|
||||
// Requete pour extraction des donnees des dictionnaires
|
||||
$tabsql=array();
|
||||
|
|
@ -298,7 +298,7 @@ $tabrowid[23]= "";
|
|||
$tabrowid[24]= "";
|
||||
$tabrowid[25]= "";
|
||||
|
||||
// Condition to show dictionnary in setup page
|
||||
// Condition to show dictionary in setup page
|
||||
$tabcond=array();
|
||||
$tabcond[1] = true;
|
||||
$tabcond[2] = true;
|
||||
|
|
@ -322,8 +322,8 @@ $tabcond[19]= ! empty($conf->societe->enabled);
|
|||
$tabcond[20]= ! empty($conf->fournisseur->enabled);
|
||||
$tabcond[21]= ! empty($conf->propal->enabled);
|
||||
$tabcond[22]= (! empty($conf->commande->enabled) || ! empty($conf->propal->enabled));
|
||||
$tabcond[23]= (! empty($conf->global->ACCOUNTING_USEDICTTOEDIT) && ! empty($conf->accounting->enabled)); // The accountancy plan should be edited with specific pages. You can set ACCOUNTING_USEDICTTOEDIT to 1 if you want to use dictionnary editor.
|
||||
$tabcond[24]= (! empty($conf->global->ACCOUNTING_USEDICTTOEDIT) && ! empty($conf->accounting->enabled)); // The accountancy system should be edited with specific pages. You can set ACCOUNTING_USEDICTTOEDIT to 1 if you want to use dictionnary editor.
|
||||
$tabcond[23]= (! empty($conf->global->ACCOUNTING_USEDICTTOEDIT) && ! empty($conf->accounting->enabled)); // The accountancy plan should be edited with specific pages. You can set ACCOUNTING_USEDICTTOEDIT to 1 if you want to use dictionary editor.
|
||||
$tabcond[24]= (! empty($conf->global->ACCOUNTING_USEDICTTOEDIT) && ! empty($conf->accounting->enabled)); // The accountancy system should be edited with specific pages. You can set ACCOUNTING_USEDICTTOEDIT to 1 if you want to use dictionary editor.
|
||||
$tabcond[25]= true;
|
||||
|
||||
// List of help for fields
|
||||
|
|
@ -355,10 +355,10 @@ $tabhelp[24] = array();
|
|||
$tabhelp[25] = array();
|
||||
|
||||
// Complete all arrays with entries found into modules
|
||||
complete_dictionnary_with_modules($taborder,$tabname,$tablib,$tabsql,$tabsqlsort,$tabfield,$tabfieldvalue,$tabfieldinsert,$tabrowid,$tabcond,$tabhelp);
|
||||
complete_dictionary_with_modules($taborder,$tabname,$tablib,$tabsql,$tabsqlsort,$tabfield,$tabfieldvalue,$tabfieldinsert,$tabrowid,$tabcond,$tabhelp);
|
||||
|
||||
|
||||
// Define elementList and sourceList (used for dictionnary "type of contacts")
|
||||
// Define elementList and sourceList (used for dictionary "type of contacts")
|
||||
$elementList = array();
|
||||
$sourceList=array();
|
||||
if ($id == 11)
|
||||
|
|
@ -389,7 +389,7 @@ if ($id == 11)
|
|||
);
|
||||
}
|
||||
|
||||
// Define localtax_typeList (used for dictionnary "c_tva")
|
||||
// Define localtax_typeList (used for dictionary "c_tva")
|
||||
$localtax_typeList = array();
|
||||
if ($id == 10)
|
||||
{
|
||||
|
|
@ -655,18 +655,18 @@ $formadmin=new FormAdmin($db);
|
|||
|
||||
llxHeader();
|
||||
|
||||
$titre=$langs->trans("DictionnarySetup");
|
||||
$titre=$langs->trans("DictionarySetup");
|
||||
$linkback='';
|
||||
if ($id)
|
||||
{
|
||||
$titre.=' - '.$langs->trans($tablib[$id]);
|
||||
$linkback='<a href="'.$_SERVER['PHP_SELF'].'">'.$langs->trans("BackToDictionnaryList").'</a>';
|
||||
$linkback='<a href="'.$_SERVER['PHP_SELF'].'">'.$langs->trans("BackToDictionaryList").'</a>';
|
||||
}
|
||||
print_fiche_titre($titre,$linkback,'setup');
|
||||
|
||||
if (empty($id))
|
||||
{
|
||||
print $langs->trans("DictionnaryDesc");
|
||||
print $langs->trans("DictionaryDesc");
|
||||
print " ".$langs->trans("OnlyActiveElementsAreShown")."<br>\n";
|
||||
}
|
||||
print "<br>\n";
|
||||
|
|
@ -679,7 +679,7 @@ if ($action == 'delete')
|
|||
}
|
||||
|
||||
/*
|
||||
* Show a dictionnary
|
||||
* Show a dictionary
|
||||
*/
|
||||
if ($id)
|
||||
{
|
||||
|
|
@ -1140,7 +1140,7 @@ if ($id)
|
|||
else
|
||||
{
|
||||
/*
|
||||
* Show list of dictionnary to show
|
||||
* Show list of dictionary to show
|
||||
*/
|
||||
|
||||
$var=true;
|
||||
|
|
@ -1148,7 +1148,7 @@ else
|
|||
print '<table class="noborder" width="100%">';
|
||||
print '<tr class="liste_titre">';
|
||||
//print '<td>'.$langs->trans("Module").'</td>';
|
||||
print '<td colspan="2">'.$langs->trans("Dictionnary").'</td>';
|
||||
print '<td colspan="2">'.$langs->trans("Dictionary").'</td>';
|
||||
print '<td>'.$langs->trans("Table").'</td>';
|
||||
print '</tr>';
|
||||
|
||||
|
|
@ -1181,7 +1181,7 @@ else
|
|||
print '<td>';
|
||||
/*if (empty($tabcond[$i]))
|
||||
{
|
||||
print info_admin($langs->trans("DictionnaryDisabledSinceNoModuleNeedIt"),1);
|
||||
print info_admin($langs->trans("DictionaryDisabledSinceNoModuleNeedIt"),1);
|
||||
}*/
|
||||
print '</td>';
|
||||
print '<td>'.$tabname[$i].'</td></tr>';
|
||||
|
|
|
|||
|
|
@ -110,7 +110,7 @@ if ($action == 'edit') // Edit
|
|||
|
||||
|
||||
// Misc options
|
||||
print_fiche_titre($langs->trans("DictionnaryPaperFormat"),'','').'<br>';
|
||||
print_fiche_titre($langs->trans("DictionaryPaperFormat"),'','').'<br>';
|
||||
$var=true;
|
||||
print '<table summary="more" class="noborder" width="100%">';
|
||||
print '<tr class="liste_titre"><td>'.$langs->trans("Parameter").'</td><td width="200px">'.$langs->trans("Value").'</td></tr>';
|
||||
|
|
@ -120,7 +120,7 @@ if ($action == 'edit') // Edit
|
|||
|
||||
// Show pdf format
|
||||
$var=!$var;
|
||||
print '<tr '.$bc[$var].'><td>'.$langs->trans("DictionnaryPaperFormat").'</td><td>';
|
||||
print '<tr '.$bc[$var].'><td>'.$langs->trans("DictionaryPaperFormat").'</td><td>';
|
||||
print $formadmin->select_paper_format($selected,'MAIN_PDF_FORMAT');
|
||||
print '</td></tr>';
|
||||
|
||||
|
|
@ -262,14 +262,14 @@ else // Show
|
|||
$var=true;
|
||||
|
||||
// Misc options
|
||||
print_fiche_titre($langs->trans("DictionnaryPaperFormat"),'','').'<br>';
|
||||
print_fiche_titre($langs->trans("DictionaryPaperFormat"),'','').'<br>';
|
||||
$var=true;
|
||||
print '<table summary="more" class="noborder" width="100%">';
|
||||
print '<tr class="liste_titre"><td>'.$langs->trans("Parameter").'</td><td width="200px">'.$langs->trans("Value").'</td></tr>';
|
||||
|
||||
// Show pdf format
|
||||
$var=!$var;
|
||||
print '<tr '.$bc[$var].'><td>'.$langs->trans("DictionnaryPaperFormat").'</td><td>';
|
||||
print '<tr '.$bc[$var].'><td>'.$langs->trans("DictionaryPaperFormat").'</td><td>';
|
||||
|
||||
$pdfformatlabel='';
|
||||
if (empty($conf->global->MAIN_PDF_FORMAT))
|
||||
|
|
|
|||
|
|
@ -143,7 +143,7 @@ class ActionComm extends CommonObject
|
|||
}
|
||||
else if ($result == 0)
|
||||
{
|
||||
$this->error='Failed to get record with code '.$this->type_code.' from dictionnary "type of events"';
|
||||
$this->error='Failed to get record with code '.$this->type_code.' from dictionary "type of events"';
|
||||
return -1;
|
||||
}
|
||||
else
|
||||
|
|
@ -825,7 +825,7 @@ class ActionComm extends CommonObject
|
|||
require_once (DOL_DOCUMENT_ROOT ."/core/lib/xcal.lib.php");
|
||||
require_once (DOL_DOCUMENT_ROOT ."/core/lib/date.lib.php");
|
||||
require_once (DOL_DOCUMENT_ROOT ."/core/lib/files.lib.php");
|
||||
|
||||
|
||||
dol_syslog(get_class($this)."::build_exportfile Build export file format=".$format.", type=".$type.", cachedelay=".$cachedelay.", filename=".$filename.", filters size=".count($filters), LOG_DEBUG);
|
||||
|
||||
// Check parameters
|
||||
|
|
|
|||
|
|
@ -2174,10 +2174,10 @@ else
|
|||
{
|
||||
$form->form_demand_reason($_SERVER['PHP_SELF'].'?id='.$object->id,$object->demand_reason_id,'none');
|
||||
}
|
||||
// Removed because using dictionnary is an admin feature, not a user feature. Ther is already the "star" to show info to admin users.
|
||||
// Removed because using dictionary is an admin feature, not a user feature. Ther is already the "star" to show info to admin users.
|
||||
// This is to avoid too heavy screens and have an uniform look and feel for all screens.
|
||||
//print '</td><td>';
|
||||
//print '<a href="'.DOL_URL_ROOT.'/admin/dict.php?id=22&origin=order&originid='.$object->id.'">'.$langs->trans("DictionnarySource").'</a>';
|
||||
//print '<a href="'.DOL_URL_ROOT.'/admin/dict.php?id=22&origin=order&originid='.$object->id.'">'.$langs->trans("DictionarySource").'</a>';
|
||||
print '</td></tr>';
|
||||
|
||||
// Project
|
||||
|
|
@ -2481,15 +2481,15 @@ else
|
|||
if ($conf->contrat->enabled && ($object->statut == 1 || $object->statut == 2))
|
||||
{
|
||||
$langs->load("contracts");
|
||||
|
||||
|
||||
if ($user->rights->contrat->creer)
|
||||
{
|
||||
print '<div class="inline-block divButAction"><a class="butAction" href="'.DOL_URL_ROOT.'/contrat/fiche.php?action=create&origin='.$object->element.'&originid='.$object->id.'&socid='.$object->socid.'">'.$langs->trans('AddContract').'</a></div>';
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Create bill and Classify billed
|
||||
// Note: Even if module invoice is not enabled, we should be able to use button "Classified billed"
|
||||
// Note: Even if module invoice is not enabled, we should be able to use button "Classified billed"
|
||||
if ($object->statut > 0 && ! $object->billed)
|
||||
{
|
||||
if (! empty($conf->facture->enabled) && $user->rights->facture->creer && empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER))
|
||||
|
|
|
|||
|
|
@ -277,7 +277,7 @@ if ($action == 'create')
|
|||
}
|
||||
else if (empty($selectedcode)) $selectedcode=$mysoc->country_code;
|
||||
print $form->select_country($selectedcode,'account_country_id');
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
||||
print '</td></tr>';
|
||||
|
||||
// State
|
||||
|
|
@ -550,7 +550,7 @@ else
|
|||
if (isset($_POST["account_country_id"])) $selectedcode=$_POST["account_country_id"];
|
||||
else if (empty($selectedcode)) $selectedcode=$mysoc->country_code;
|
||||
print $form->select_country($selectedcode,'account_country_id');
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
||||
print '</td></tr>';
|
||||
|
||||
// State
|
||||
|
|
|
|||
|
|
@ -24,9 +24,7 @@
|
|||
|
||||
|
||||
/**
|
||||
* \class PaymentTerm
|
||||
* \brief Class to manage payment terms records in dictionnary
|
||||
* \remarks Initialy built by build_class_from_table on 2010-09-06 00:33
|
||||
* Class to manage payment terms records in dictionary
|
||||
*/
|
||||
class PaymentTerm // extends CommonObject
|
||||
{
|
||||
|
|
|
|||
|
|
@ -296,7 +296,7 @@ abstract class ActionsContactCardCommon
|
|||
$this->tpl['select_country'] = $form->select_country($this->object->country_id,'country_id');
|
||||
$countrynotdefined = $langs->trans("ErrorSetACountryFirst").' ('.$langs->trans("SeeAbove").')';
|
||||
|
||||
if ($user->admin) $this->tpl['info_admin'] = info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
||||
if ($user->admin) $this->tpl['info_admin'] = info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
||||
|
||||
// State
|
||||
if ($this->object->country_id) $this->tpl['select_state'] = $formcompany->select_state($this->object->fk_departement,$this->object->country_code);
|
||||
|
|
|
|||
|
|
@ -482,7 +482,7 @@ else
|
|||
// Country
|
||||
print '<tr><td>'.$langs->trans("Country").'</td><td colspan="'.$colspan.'" class="maxwidthonsmartphone">';
|
||||
print $form->select_country((isset($_POST["country_id"])?$_POST["country_id"]:$object->country_id),'country_id');
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
||||
print '</td></tr>';
|
||||
|
||||
// State
|
||||
|
|
@ -688,7 +688,7 @@ else
|
|||
// Country
|
||||
print '<tr><td>'.$langs->trans("Country").'</td><td colspan="2" class="maxwidthonsmartphone">';
|
||||
print $form->select_country(isset($_POST["country_id"])?$_POST["country_id"]:$object->country_id,'country_id');
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
||||
print '</td></tr>';
|
||||
|
||||
// State
|
||||
|
|
|
|||
|
|
@ -18,8 +18,7 @@
|
|||
/**
|
||||
* \file htdocs/core/class/cpays.class.php
|
||||
* \ingroup core
|
||||
* \brief This file is a CRUD class file (Create/Read/Update/Delete) for c_pays dictionnary
|
||||
* Initialy built by build_class_from_table on 2012-01-17 22:03
|
||||
* \brief This file is a CRUD class file (Create/Read/Update/Delete) for c_pays dictionary
|
||||
*/
|
||||
|
||||
// Put here all includes required by your class file
|
||||
|
|
@ -29,8 +28,7 @@
|
|||
|
||||
|
||||
/**
|
||||
* \class Cpays
|
||||
* \brief Class to manage dictionnary Countries (used by imports)
|
||||
* Class to manage dictionary Countries (used by imports)
|
||||
*/
|
||||
class Cpays // extends CommonObject
|
||||
{
|
||||
|
|
|
|||
|
|
@ -18,14 +18,12 @@
|
|||
/**
|
||||
* \file htdocs/core/class/ctypent.class.php
|
||||
* \ingroup core
|
||||
* \brief This file is CRUD class file (Create/Read/Update/Delete) for c_typent dictionnary
|
||||
* Initialy built by build_class_from_table on 2012-01-17 16:24
|
||||
* \brief This file is CRUD class file (Create/Read/Update/Delete) for c_typent dictionary
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* \class Ctypent
|
||||
* \brief Class of dictionnary type of thirdparty (used by imports)
|
||||
* Class of dictionary type of thirdparty (used by imports)
|
||||
*/
|
||||
class Ctypent // extends CommonObject
|
||||
{
|
||||
|
|
|
|||
|
|
@ -572,7 +572,7 @@ class Form
|
|||
print '>'.$langs->trans("Service");
|
||||
|
||||
print '</select>';
|
||||
//if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
||||
//if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
||||
}
|
||||
if (! $forceall && empty($conf->product->enabled) && ! empty($conf->service->enabled))
|
||||
{
|
||||
|
|
@ -662,7 +662,7 @@ class Form
|
|||
}
|
||||
|
||||
print '</select>';
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -2105,7 +2105,7 @@ class Form
|
|||
print '</option>';
|
||||
}
|
||||
print '</select>';
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -2185,7 +2185,7 @@ class Form
|
|||
print '</option>';
|
||||
}
|
||||
print '</select>';
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -2261,7 +2261,7 @@ class Form
|
|||
print '</option>';
|
||||
}
|
||||
print '</select>';
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -2316,7 +2316,7 @@ class Form
|
|||
print '</option>';
|
||||
}
|
||||
print '</select>';
|
||||
if ($user->admin && ! $noadmininfo) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
||||
if ($user->admin && ! $noadmininfo) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -3239,7 +3239,7 @@ class Form
|
|||
$out.= '</option>';
|
||||
}
|
||||
$out.= '</select>';
|
||||
if ($user->admin) $out.= info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
||||
if ($user->admin) $out.= info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
||||
return $out;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -233,7 +233,7 @@ class FormActions
|
|||
if ($selected == 'auto') $selected='AC_OTH_AUTO';
|
||||
|
||||
print $form->selectarray($htmlname, $arraylist, $selected);
|
||||
if ($user->admin && empty($onlyautoornot)) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
||||
if ($user->admin && empty($onlyautoornot)) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -274,7 +274,7 @@ class FormCompany
|
|||
}
|
||||
}
|
||||
if (! empty($htmlname)) $out.= '</select>';
|
||||
if (! empty($htmlname) && $user->admin) $out.= info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
||||
if (! empty($htmlname) && $user->admin) $out.= info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
@ -395,7 +395,7 @@ class FormCompany
|
|||
}
|
||||
}
|
||||
$out.= '</select>';
|
||||
if ($user->admin) $out.= info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
||||
if ($user->admin) $out.= info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
@ -488,7 +488,7 @@ class FormCompany
|
|||
}
|
||||
}
|
||||
$out.= '</select>';
|
||||
if ($user->admin) $out.= info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
||||
if ($user->admin) $out.= info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
||||
$out.= '</div>';
|
||||
}
|
||||
else
|
||||
|
|
|
|||
|
|
@ -1088,24 +1088,24 @@ class FormOther
|
|||
* Return a HTML select list of bank accounts
|
||||
*
|
||||
* @param string $htmlname Name of select zone
|
||||
* @param string $dictionnarytable Dictionnary table
|
||||
* @param string $dictionarytable Dictionary table
|
||||
* @param string $keyfield Field for key
|
||||
* @param string $labelfield Label field
|
||||
* @param string $selected Selected value
|
||||
* @param int $useempty 1=Add an empty value in list, 2=Add an empty value in list only if there is more than 2 entries.
|
||||
* @return void
|
||||
*/
|
||||
function select_dictionnary($htmlname,$dictionnarytable,$keyfield='code',$labelfield='label',$selected='',$useempty=0)
|
||||
function select_dictionary($htmlname,$dictionarytable,$keyfield='code',$labelfield='label',$selected='',$useempty=0)
|
||||
{
|
||||
global $langs, $conf;
|
||||
|
||||
$langs->load("admin");
|
||||
|
||||
$sql = "SELECT rowid, ".$keyfield.", ".$labelfield;
|
||||
$sql.= " FROM ".MAIN_DB_PREFIX.$dictionnarytable;
|
||||
$sql.= " FROM ".MAIN_DB_PREFIX.$dictionarytable;
|
||||
$sql.= " ORDER BY ".$labelfield;
|
||||
|
||||
dol_syslog(get_class($this)."::select_dictionnary sql=".$sql);
|
||||
dol_syslog(get_class($this)."::select_dictionary sql=".$sql);
|
||||
$result = $this->db->query($sql);
|
||||
if ($result)
|
||||
{
|
||||
|
|
@ -1113,7 +1113,7 @@ class FormOther
|
|||
$i = 0;
|
||||
if ($num)
|
||||
{
|
||||
print '<select id="select'.$htmlname.'" class="flat selectdictionnary" name="'.$htmlname.'"'.($moreattrib?' '.$moreattrib:'').'>';
|
||||
print '<select id="select'.$htmlname.'" class="flat selectdictionary" name="'.$htmlname.'"'.($moreattrib?' '.$moreattrib:'').'>';
|
||||
if ($useempty == 1 || ($useempty == 2 && $num > 1))
|
||||
{
|
||||
print '<option value="-1"> </option>';
|
||||
|
|
@ -1138,7 +1138,7 @@ class FormOther
|
|||
}
|
||||
else
|
||||
{
|
||||
print $langs->trans("DictionnaryEmpty");
|
||||
print $langs->trans("DictionaryEmpty");
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
|
|
|||
|
|
@ -99,7 +99,7 @@ class FormSocialContrib
|
|||
$i++;
|
||||
}
|
||||
print '</select>';
|
||||
if ($user->admin && $help) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
||||
if ($user->admin && $help) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
|
|
@ -851,7 +851,7 @@ function unActivateModule($value, $requiredby=1)
|
|||
|
||||
|
||||
/**
|
||||
* Add external modules to list of dictionnaries
|
||||
* Add external modules to list of dictionaries
|
||||
*
|
||||
* @param array &$taborder Taborder
|
||||
* @param array &$tabname Tabname
|
||||
|
|
@ -866,7 +866,7 @@ function unActivateModule($value, $requiredby=1)
|
|||
* @param array &$tabhelp Tabhelp
|
||||
* @return int 1
|
||||
*/
|
||||
function complete_dictionnary_with_modules(&$taborder,&$tabname,&$tablib,&$tabsql,&$tabsqlsort,&$tabfield,&$tabfieldvalue,&$tabfieldinsert,&$tabrowid,&$tabcond,&$tabhelp)
|
||||
function complete_dictionary_with_modules(&$taborder,&$tabname,&$tablib,&$tabsql,&$tabsqlsort,&$tabfield,&$tabfieldvalue,&$tabfieldinsert,&$tabrowid,&$tabcond,&$tabhelp)
|
||||
{
|
||||
global $db, $modules, $conf, $langs;
|
||||
|
||||
|
|
@ -960,26 +960,26 @@ function complete_dictionnary_with_modules(&$taborder,&$tabname,&$tablib,&$tabsq
|
|||
// Complete arrays
|
||||
//&$tabname,&$tablib,&$tabsql,&$tabsqlsort,&$tabfield,&$tabfieldvalue,&$tabfieldinsert,&$tabrowid,&$tabcond
|
||||
//$objMod
|
||||
if (! empty($objMod->dictionnaries))
|
||||
if (! empty($objMod->dictionaries))
|
||||
{
|
||||
//var_dump($objMod->dictionnaries['tabname']);
|
||||
//var_dump($objMod->dictionaries['tabname']);
|
||||
$taborder[] = 0;
|
||||
foreach($objMod->dictionnaries['tabname'] as $val)
|
||||
foreach($objMod->dictionaries['tabname'] as $val)
|
||||
{
|
||||
$taborder[] = count($tabname)+1;
|
||||
$tabname[] = $val;
|
||||
}
|
||||
foreach($objMod->dictionnaries['tablib'] as $val) $tablib[] = $val;
|
||||
foreach($objMod->dictionnaries['tabsql'] as $val) $tabsql[] = $val;
|
||||
foreach($objMod->dictionnaries['tabsqlsort'] as $val) $tabsqlsort[] = $val;
|
||||
foreach($objMod->dictionnaries['tabfield'] as $val) $tabfield[] = $val;
|
||||
foreach($objMod->dictionnaries['tabfieldvalue'] as $val) $tabfieldvalue[] = $val;
|
||||
foreach($objMod->dictionnaries['tabfieldinsert'] as $val) $tabfieldinsert[] = $val;
|
||||
foreach($objMod->dictionnaries['tabrowid'] as $val) $tabrowid[] = $val;
|
||||
foreach($objMod->dictionnaries['tabcond'] as $val) $tabcond[] = $val;
|
||||
if (! empty($objMod->dictionnaries['tabhelp'])) foreach($objMod->dictionnaries['tabhelp'] as $val) $tabhelp[] = $val;
|
||||
//foreach($objMod->dictionnaries['tabsqlsort'] as $val) $tablib[] = $val;
|
||||
//$tabname = array_merge ($tabname, $objMod->dictionnaries['tabname']);
|
||||
foreach($objMod->dictionaries['tablib'] as $val) $tablib[] = $val;
|
||||
foreach($objMod->dictionaries['tabsql'] as $val) $tabsql[] = $val;
|
||||
foreach($objMod->dictionaries['tabsqlsort'] as $val) $tabsqlsort[] = $val;
|
||||
foreach($objMod->dictionaries['tabfield'] as $val) $tabfield[] = $val;
|
||||
foreach($objMod->dictionaries['tabfieldvalue'] as $val) $tabfieldvalue[] = $val;
|
||||
foreach($objMod->dictionaries['tabfieldinsert'] as $val) $tabfieldinsert[] = $val;
|
||||
foreach($objMod->dictionaries['tabrowid'] as $val) $tabrowid[] = $val;
|
||||
foreach($objMod->dictionaries['tabcond'] as $val) $tabcond[] = $val;
|
||||
if (! empty($objMod->dictionaries['tabhelp'])) foreach($objMod->dictionaries['tabhelp'] as $val) $tabhelp[] = $val;
|
||||
//foreach($objMod->dictionaries['tabsqlsort'] as $val) $tablib[] = $val;
|
||||
//$tabname = array_merge ($tabname, $objMod->dictionaries['tabname']);
|
||||
//var_dump($tabcond);
|
||||
//exit;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ insert into llx_menu (module, enabled, menu_handler, type, rowid, mainmenu, left
|
|||
insert into llx_menu (module, enabled, menu_handler, type, rowid, mainmenu, leftmenu, fk_menu, url, titre, level, langs, perms, target, usertype, position, entity) values ('', '$leftmenu=="setup"', __HANDLER__, 'left', 107__+MAX_llx_menu__, 'home', '', 100__+MAX_llx_menu__, '/admin/pdf.php?leftmenu=setup', 'PDF', 1, 'admin', '', '', 2, 9, __ENTITY__);
|
||||
insert into llx_menu (module, enabled, menu_handler, type, rowid, mainmenu, leftmenu, fk_menu, url, titre, level, langs, perms, target, usertype, position, entity) values ('', '$leftmenu=="setup"', __HANDLER__, 'left', 109__+MAX_llx_menu__, 'home', '', 100__+MAX_llx_menu__, '/admin/mails.php?leftmenu=setup', 'Emails', 1, 'admin', '', '', 2, 10, __ENTITY__);
|
||||
insert into llx_menu (module, enabled, menu_handler, type, rowid, mainmenu, leftmenu, fk_menu, url, titre, level, langs, perms, target, usertype, position, entity) values ('', '$leftmenu=="setup"', __HANDLER__, 'left', 113__+MAX_llx_menu__, 'home', '', 100__+MAX_llx_menu__, '/admin/sms.php?leftmenu=setup', 'SMS', 1, 'admin', '', '', 2, 11, __ENTITY__);
|
||||
insert into llx_menu (module, enabled, menu_handler, type, rowid, mainmenu, leftmenu, fk_menu, url, titre, level, langs, perms, target, usertype, position, entity) values ('', '$leftmenu=="setup"', __HANDLER__, 'left', 111__+MAX_llx_menu__, 'home', '', 100__+MAX_llx_menu__, '/admin/dict.php?leftmenu=setup', 'Dictionnary', 1, 'admin', '', '', 2, 12, __ENTITY__);
|
||||
insert into llx_menu (module, enabled, menu_handler, type, rowid, mainmenu, leftmenu, fk_menu, url, titre, level, langs, perms, target, usertype, position, entity) values ('', '$leftmenu=="setup"', __HANDLER__, 'left', 111__+MAX_llx_menu__, 'home', '', 100__+MAX_llx_menu__, '/admin/dict.php?leftmenu=setup', 'Dictionary', 1, 'admin', '', '', 2, 12, __ENTITY__);
|
||||
insert into llx_menu (module, enabled, menu_handler, type, rowid, mainmenu, leftmenu, fk_menu, url, titre, level, langs, perms, target, usertype, position, entity) values ('', '$leftmenu=="setup"', __HANDLER__, 'left', 112__+MAX_llx_menu__, 'home', '', 100__+MAX_llx_menu__, '/admin/const.php?leftmenu=setup', 'OtherSetup', 1, 'admin', '', '', 2, 13, __ENTITY__);
|
||||
-- Home - Sytem info
|
||||
insert into llx_menu (module, enabled, menu_handler, type, rowid, mainmenu, leftmenu, fk_menu, url, titre, level, langs, perms, target, usertype, position, entity) values ('', '$user->admin', __HANDLER__, 'left', 300__+MAX_llx_menu__, 'home', 'admintools', 1__+MAX_llx_menu__, '/admin/tools/index.php?leftmenu=admintools', 'SystemTools', 0, 'admin', '', '', 2, 2, __ENTITY__);
|
||||
|
|
|
|||
|
|
@ -510,7 +510,7 @@ function print_left_eldy_menu($db,$menu_array_before,$menu_array_after,&$tabMenu
|
|||
$newmenu->add("/admin/pdf.php?mainmenu=home", $langs->trans("PDF"),1);
|
||||
$newmenu->add("/admin/mails.php?mainmenu=home", $langs->trans("Emails"),1);
|
||||
$newmenu->add("/admin/sms.php?mainmenu=home", $langs->trans("SMS"),1);
|
||||
$newmenu->add("/admin/dict.php?mainmenu=home", $langs->trans("Dictionnary"),1);
|
||||
$newmenu->add("/admin/dict.php?mainmenu=home", $langs->trans("Dictionary"),1);
|
||||
$newmenu->add("/admin/const.php?mainmenu=home", $langs->trans("OtherSetup"),1);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -122,7 +122,7 @@ class MenuManager
|
|||
$this->menu->add("/admin/pdf.php?mainmenu=home", $langs->trans("PDF"),1);
|
||||
$this->menu->add("/admin/mails.php?mainmenu=home", $langs->trans("Emails"),1);
|
||||
$this->menu->add("/admin/sms.php?mainmenu=home", $langs->trans("SMS"),1);
|
||||
$this->menu->add("/admin/dict.php?mainmenu=home", $langs->trans("DictionnarySetup"),1);
|
||||
$this->menu->add("/admin/dict.php?mainmenu=home", $langs->trans("DictionarySetup"),1);
|
||||
$this->menu->add("/admin/const.php?mainmenu=home", $langs->trans("OtherSetup"),1);
|
||||
|
||||
// ***** END *****
|
||||
|
|
|
|||
|
|
@ -81,8 +81,8 @@ class modOpenSurvey extends DolibarrModules
|
|||
// Constants
|
||||
$this->const = array(); // List of parameters
|
||||
|
||||
// Dictionnaries
|
||||
$this->dictionnaries=array();
|
||||
// Dictionaries
|
||||
$this->dictionaries=array();
|
||||
|
||||
// Boxes
|
||||
$this->boxes = array(); // List of boxes
|
||||
|
|
|
|||
|
|
@ -398,8 +398,8 @@ class modSociete extends DolibarrModules
|
|||
// End add extra fields
|
||||
$this->import_fieldshidden_array[$r]=array('s.fk_user_creat'=>'user->id','extra.fk_object'=>'lastrowid-'.MAIN_DB_PREFIX.'societe'); // aliastable.field => ('user->id' or 'lastrowid-'.tableparent)
|
||||
$this->import_convertvalue_array[$r]=array(
|
||||
's.fk_typent'=>array('rule'=>'fetchidfromcodeid','classfile'=>'/core/class/ctypent.class.php','class'=>'Ctypent','method'=>'fetch','dict'=>'DictionnaryCompanyType'),
|
||||
's.fk_pays'=>array('rule'=>'fetchidfromcodeid','classfile'=>'/core/class/cpays.class.php','class'=>'Cpays','method'=>'fetch','dict'=>'DictionnaryCountry'),
|
||||
's.fk_typent'=>array('rule'=>'fetchidfromcodeid','classfile'=>'/core/class/ctypent.class.php','class'=>'Ctypent','method'=>'fetch','dict'=>'DictionaryCompanyType'),
|
||||
's.fk_pays'=>array('rule'=>'fetchidfromcodeid','classfile'=>'/core/class/cpays.class.php','class'=>'Cpays','method'=>'fetch','dict'=>'DictionaryCountry'),
|
||||
's.fk_stcomm'=>array('rule'=>'zeroifnull'),
|
||||
's.code_client'=>array('rule'=>'getcustomercodeifnull'),
|
||||
's.code_fournisseur'=>array('rule'=>'getsuppliercodeifnull'),
|
||||
|
|
@ -434,7 +434,7 @@ class modSociete extends DolibarrModules
|
|||
$this->import_fieldshidden_array[$r]=array('s.fk_user_creat'=>'user->id','extra.fk_object'=>'lastrowid-'.MAIN_DB_PREFIX.'socpeople'); // aliastable.field => ('user->id' or 'lastrowid-'.tableparent)
|
||||
$this->import_convertvalue_array[$r]=array(
|
||||
's.fk_soc'=>array('rule'=>'fetchidfromref','file'=>'/societe/class/societe.class.php','class'=>'Societe','method'=>'fetch','element'=>'ThirdParty'),
|
||||
's.fk_pays'=>array('rule'=>'fetchidfromcodeid','classfile'=>'/core/class/cpays.class.php','class'=>'Cpays','method'=>'fetch','dict'=>'DictionnaryCountry'),
|
||||
's.fk_pays'=>array('rule'=>'fetchidfromcodeid','classfile'=>'/core/class/cpays.class.php','class'=>'Cpays','method'=>'fetch','dict'=>'DictionaryCountry'),
|
||||
);
|
||||
//$this->import_convertvalue_array[$r]=array('s.fk_soc'=>array('rule'=>'lastrowid',table='t');
|
||||
$this->import_regex_array[$r]=array('s.birthday'=>'^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]$','s.datec'=>'^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]$');
|
||||
|
|
|
|||
|
|
@ -154,7 +154,7 @@ class modStock extends DolibarrModules
|
|||
);
|
||||
|
||||
$this->import_convertvalue_array[$r]=array(
|
||||
'e.fk_pays'=>array('rule'=>'fetchidfromcodeid','classfile'=>'/core/class/cpays.class.php','class'=>'Cpays','method'=>'fetch','dict'=>'DictionnaryCountry')
|
||||
'e.fk_pays'=>array('rule'=>'fetchidfromcodeid','classfile'=>'/core/class/cpays.class.php','class'=>'Cpays','method'=>'fetch','dict'=>'DictionaryCountry')
|
||||
);
|
||||
$this->import_regex_array[$r]=array('e.statut'=>'^[0|1]');
|
||||
$this->import_examplevalues_array[$r]=array('e.label'=>"ALM001",
|
||||
|
|
|
|||
|
|
@ -653,7 +653,7 @@ if ($action == 'create')
|
|||
print '<td colspan="3">';
|
||||
$expe->fetch_delivery_methods();
|
||||
print $form->selectarray("shipping_method_id",$expe->meths,GETPOST('shipping_method_id','int'),1,0,0,"",1);
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
||||
print "</td></tr>\n";
|
||||
|
||||
// Tracking number
|
||||
|
|
@ -1152,7 +1152,7 @@ else if ($id || $ref)
|
|||
print '<input type="hidden" name="action" value="setshipping_method_id">';
|
||||
$object->fetch_delivery_methods();
|
||||
print $form->selectarray("shipping_method_id",$object->meths,$object->shipping_method_id,1,0,0,"",1);
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
||||
print '<input type="submit" class="button" value="'.$langs->trans('Modify').'">';
|
||||
print '</form>';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -80,7 +80,7 @@ $entitytolang = array(
|
|||
'member_type' => 'MemberType',
|
||||
'subscription' => 'Subscription',
|
||||
'tax' => 'SocialContribution',
|
||||
'tax_type' => 'DictionnarySocialContributions',
|
||||
'tax_type' => 'DictionarySocialContributions',
|
||||
'account' => 'BankTransactions',
|
||||
'payment' => 'Payment',
|
||||
'product' => 'Product',
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ $entitytolang=array( // Translation code
|
|||
'order'=>'Order','order_line'=>'OrderLine',
|
||||
'intervention'=>'Intervention' ,'inter_line'=>'InterLine',
|
||||
'member'=>'Member','member_type'=>'MemberType','subscription'=>'Subscription',
|
||||
'tax'=>'SocialContribution','tax_type'=>'DictionnarySocialContributions',
|
||||
'tax'=>'SocialContribution','tax_type'=>'DictionarySocialContributions',
|
||||
'account'=>'BankTransactions',
|
||||
'payment'=>'Payment',
|
||||
'product'=>'Product','stock'=>'Stock','warehouse'=>'Warehouse',
|
||||
|
|
@ -890,7 +890,7 @@ if ($step == 4 && $datatoimport)
|
|||
else
|
||||
{
|
||||
if ($objimport->array_import_convertvalue[0][$code]['rule']=='fetchidfromref') $htmltext.=$langs->trans("SourceExample").': <b>'.$langs->transnoentitiesnoconv("ExampleAnyRefFoundIntoElement",$entitylang).($example?' ('.$langs->transnoentitiesnoconv("Example").': '.$example.')':'').'</b><br>';
|
||||
if ($objimport->array_import_convertvalue[0][$code]['rule']=='fetchidfromcodeid') $htmltext.=$langs->trans("SourceExample").': <b>'.$langs->trans("ExampleAnyCodeOrIdFoundIntoDictionnary",$langs->transnoentitiesnoconv($objimport->array_import_convertvalue[0][$code]['dict'])).($example?' ('.$langs->transnoentitiesnoconv("Example").': '.$example.')':'').'</b><br>';
|
||||
if ($objimport->array_import_convertvalue[0][$code]['rule']=='fetchidfromcodeid') $htmltext.=$langs->trans("SourceExample").': <b>'.$langs->trans("ExampleAnyCodeOrIdFoundIntoDictionary",$langs->transnoentitiesnoconv($objimport->array_import_convertvalue[0][$code]['dict'])).($example?' ('.$langs->transnoentitiesnoconv("Example").': '.$example.')':'').'</b><br>';
|
||||
}
|
||||
$htmltext.='<br>';
|
||||
// Target field info
|
||||
|
|
|
|||
|
|
@ -254,7 +254,7 @@ insert into `llx_menu` (`rowid`, `mainmenu`, `leftmenu`, `fk_menu`, `url`, `titr
|
|||
insert into `llx_menu` (`rowid`, `mainmenu`, `leftmenu`, `fk_menu`, `url`, `titre`, `level`, `langs`, `right`, `target`, `user`, `order`) values (108, 'home', '$leftmenu=="setup"', 100, '/admin/perms.php', 'Security', 1, 'admin', '', '', 2, 7);
|
||||
insert into `llx_menu` (`rowid`, `mainmenu`, `leftmenu`, `fk_menu`, `url`, `titre`, `level`, `langs`, `right`, `target`, `user`, `order`) values (109, 'home', '$leftmenu=="setup"', 100, '/admin/mails.php', 'Emails', 1, 'admin', '', '', 2, 8);
|
||||
insert into `llx_menu` (`rowid`, `mainmenu`, `leftmenu`, `fk_menu`, `url`, `titre`, `level`, `langs`, `right`, `target`, `user`, `order`) values (110, 'home', '$leftmenu=="setup"', 100, '/admin/limits.php', 'Limits', 1, 'admin', '', '', 2, 9);
|
||||
insert into `llx_menu` (`rowid`, `mainmenu`, `leftmenu`, `fk_menu`, `url`, `titre`, `level`, `langs`, `right`, `target`, `user`, `order`) values (111, 'home', '$leftmenu=="setup"', 100, '/admin/dict.php', 'DictionnarySetup', 1, 'admin', '', '', 2, 10);
|
||||
insert into `llx_menu` (`rowid`, `mainmenu`, `leftmenu`, `fk_menu`, `url`, `titre`, `level`, `langs`, `right`, `target`, `user`, `order`) values (111, 'home', '$leftmenu=="setup"', 100, '/admin/dict.php', 'DictionarySetup', 1, 'admin', '', '', 2, 10);
|
||||
insert into `llx_menu` (`rowid`, `mainmenu`, `leftmenu`, `fk_menu`, `url`, `titre`, `level`, `langs`, `right`, `target`, `user`, `order`) values (112, 'home', '$leftmenu=="setup"', 100, '/admin/const.php', 'OtherSetup', 1, 'admin', '', '', 2, 11);
|
||||
insert into `llx_menu` (`rowid`, `mainmenu`, `leftmenu`, `fk_menu`, `url`, `titre`, `level`, `langs`, `right`, `target`, `user`, `order`) values (200, 'home', '', 1, '/admin/system/index.php?leftmenu=system', 'SystemInfo', 0, 'admin', '', '', 2, 1);
|
||||
insert into `llx_menu` (`rowid`, `mainmenu`, `leftmenu`, `fk_menu`, `url`, `titre`, `level`, `langs`, `right`, `target`, `user`, `order`) values (201, 'home', '$leftmenu=="system"', 200, '/admin/system/dolibarr.php', 'Dolibarr', 1, 'admin', '', '', 2, 0);
|
||||
|
|
|
|||
|
|
@ -874,7 +874,7 @@ INSERT INTO llx_c_actioncomm (id, code, type, libelle, module, position) values
|
|||
UPDATE llx_c_actioncomm SET libelle = 'Other (manually inserted events)' WHERE code = 'AC_OTH';
|
||||
UPDATE llx_c_actioncomm SET active = 0 WHERE code in ('AC_PROP', 'AC_COM', 'AC_FAC', 'AC_SHIP', 'AC_SUP_ORD', 'AC_SUP_INV');
|
||||
|
||||
-- Update dictionnary of table llx_c_paper_format
|
||||
-- Update dictionary of table llx_c_paper_format
|
||||
DELETE FROM llx_c_paper_format;
|
||||
|
||||
-- Europe
|
||||
|
|
|
|||
|
|
@ -43,8 +43,8 @@ SecuritySetup=الإعداد الأمني
|
|||
ErrorModuleRequirePHPVersion=خطأ ، هذا النموذج يتطلب نسخة بي إتش بي %s أو أعلى
|
||||
ErrorModuleRequireDolibarrVersion=خطأ ، هذا النموذج يتطلب نسخة دوليبار %s أو أعلى
|
||||
ErrorDecimalLargerThanAreForbidden=خطأ, برنامج دوليبار <b>%s</b> الحالي لا يدعم دقة أعلى من الحالية
|
||||
DictionnarySetup=إعداد القاموس
|
||||
Dictionnary=القواميس
|
||||
DictionarySetup=إعداد القاموس
|
||||
Dictionary=القواميس
|
||||
ErrorReservedTypeSystemSystemAuto=القيمة 'system' و 'systemauto' لهذا النوع محفوظ. يمكنك إستخدام 'user' كقيمة لإضافة السجل الخاص بك
|
||||
ErrorCodeCantContainZero=لا يمكن إستخدام القيمة 0 لهذا الكود
|
||||
DisableJavascript=تعطيل عمليات الجافا و الأجاكس
|
||||
|
|
@ -726,34 +726,34 @@ Permission50202=استيراد المعاملات
|
|||
# Permission55002=Create/modify surveys
|
||||
# Permission59001=Read commercial margins
|
||||
# Permission59002=Define commercial margins
|
||||
DictionnaryCompanyType=أنواع الشركة
|
||||
DictionnaryCompanyJuridicalType=أنواع القانوني للشركة
|
||||
DictionnaryProspectLevel=آفاق محتملة المستوى
|
||||
DictionnaryCanton=الدولة / الكانتونات
|
||||
DictionnaryRegion=المناطق
|
||||
DictionnaryCountry=البلدان
|
||||
DictionnaryCurrency=العملات
|
||||
DictionnaryCivility=عنوان الكياسة
|
||||
DictionnaryActions=الإجراءات القائمة
|
||||
DictionnarySocialContributions=أنواع المساهمات الاجتماعية
|
||||
DictionnaryVAT=معدلات ضريبة القيمة المضافة
|
||||
# DictionnaryRevenueStamp=Amount of revenue stamps
|
||||
DictionnaryPaymentConditions=شروط الدفع
|
||||
DictionnaryPaymentModes=طرق الدفع
|
||||
DictionnaryTypeContact=أنواع الاتصال
|
||||
DictionnaryEcotaxe=الضرائب الإيكولوجية (WEEE)
|
||||
DictionnaryPaperFormat=الصيغة الورقية
|
||||
DictionnaryFees=نوع من الرسوم
|
||||
DictionnarySendingMethods=طرق الإرسال
|
||||
DictionnaryStaff=العاملين
|
||||
DictionnaryAvailability=تأخير تسليم
|
||||
DictionnaryOrderMethods=ترتيب طرق
|
||||
DictionnarySource=الأصل من مقترحات / أوامر
|
||||
# DictionnaryAccountancyplan=Chart of accounts
|
||||
# DictionnaryAccountancysystem=Models for chart of accounts
|
||||
DictionaryCompanyType=أنواع الشركة
|
||||
DictionaryCompanyJuridicalType=أنواع القانوني للشركة
|
||||
DictionaryProspectLevel=آفاق محتملة المستوى
|
||||
DictionaryCanton=الدولة / الكانتونات
|
||||
DictionaryRegion=المناطق
|
||||
DictionaryCountry=البلدان
|
||||
DictionaryCurrency=العملات
|
||||
DictionaryCivility=عنوان الكياسة
|
||||
DictionaryActions=الإجراءات القائمة
|
||||
DictionarySocialContributions=أنواع المساهمات الاجتماعية
|
||||
DictionaryVAT=معدلات ضريبة القيمة المضافة
|
||||
# DictionaryRevenueStamp=Amount of revenue stamps
|
||||
DictionaryPaymentConditions=شروط الدفع
|
||||
DictionaryPaymentModes=طرق الدفع
|
||||
DictionaryTypeContact=أنواع الاتصال
|
||||
DictionaryEcotaxe=الضرائب الإيكولوجية (WEEE)
|
||||
DictionaryPaperFormat=الصيغة الورقية
|
||||
DictionaryFees=نوع من الرسوم
|
||||
DictionarySendingMethods=طرق الإرسال
|
||||
DictionaryStaff=العاملين
|
||||
DictionaryAvailability=تأخير تسليم
|
||||
DictionaryOrderMethods=ترتيب طرق
|
||||
DictionarySource=الأصل من مقترحات / أوامر
|
||||
# DictionaryAccountancyplan=Chart of accounts
|
||||
# DictionaryAccountancysystem=Models for chart of accounts
|
||||
SetupSaved=الإعداد المحفوظة
|
||||
BackToModuleList=العودة إلى قائمة الوحدات
|
||||
BackToDictionnaryList=العودة إلى قائمة معاجم
|
||||
BackToDictionaryList=العودة إلى قائمة معاجم
|
||||
VATReceivedOnly=سعر خاص لا تحمل
|
||||
VATManagement=إدارة الضريبة على القيمة المضافة
|
||||
VATIsUsedDesc=معدل ضريبة القيمة المضافة بشكل افتراضي عند إنشاء الآفاق ، والفواتير ، وما يتبع أوامر النشطة القياسية للمادة : <br> إذا كان البائع هو تعرض لضريبة القيمة المضافة ، وضريبة القيمة المضافة بعد ذلك تلقائيا= 0. نهاية المادة. <br> إذا كان (بيع وشراء= بلد في البلد) ، فإن ضريبة القيمة المضافة بشكل افتراضي= ضريبة القيمة المضافة من بيع المنتج في البلد. نهاية المادة. <br> إذا كان البائع والمشتري في الجماعة الأوروبية ، وبيعت البضاعة الجديدة بعد أن وسائل النقل (السيارات ، والسفن ، والطائرات) ، الافتراضي= 0 ضريبة القيمة المضافة (ضريبة القيمة المضافة وينبغي أن تدفع من قبل المشتري في customoffice بلاده وليس على البائع . نهاية المادة. <br> إذا كان البائع والمشتري في الجماعة الأوروبية والسلع التي تباع عن طريق وسائل أخرى جديدة بدلا من وسائل النقل ، فإن ضريبة القيمة المضافة بشكل افتراضي= ضريبة القيمة المضافة للمنتجات المباعة. نهاية المادة. <br> وإلا فإن ضريبة القيمة المضافة المقترحة الافتراضي= 1. نهاية المادة.
|
||||
|
|
@ -921,7 +921,7 @@ TriggerDisabledAsModuleDisabled=يتسبب في تعطيل هذه الصورة
|
|||
TriggerAlwaysActive=يطلق في هذا الملف هي حركة دائمة ، وتفعيل ما هي وحدات Dolibarr.
|
||||
TriggerActiveAsModuleActive=يطلق في هذا الملف كما ينشط حدة تمكين <b>٪ ق.</b>
|
||||
GeneratedPasswordDesc=هنا تعريف القاعدة التي تريد استخدامه لكلمة السر اذا كنت أسأل لصناعة السيارات ولدت كلمة السر
|
||||
DictionnaryDesc=تعرف هنا إشارة datas. يمكنك استكمال مسبقا مع قيمة لك.
|
||||
DictionaryDesc=تعرف هنا إشارة datas. يمكنك استكمال مسبقا مع قيمة لك.
|
||||
ConstDesc=تسمح لك هذه الصفحة لتحرير جميع البارامترات الأخرى غير المتوفرة في الصفحات السابقة. فهي محفوظة لمعايير متقدمة للمطورين أو troubleshouting.
|
||||
OnceSetupFinishedCreateUsers=تحذير فأنت Dolibarr مدير المستخدم. مدير المستخدمين تستخدم لإعداد Dolibarr. لالمعتاد استخدام Dolibarr ، يوصى باستخدام غير مستخدم مدير خلق مجموعات من المستخدمين & القائمة.
|
||||
MiscellaneousDesc=هنا تعريف جميع البارامترات الأخرى ذات الصلة بالأمن.
|
||||
|
|
@ -1425,7 +1425,7 @@ AccountancyCode=قانون المحاسبة
|
|||
AgendaSetup=جدول الأعمال وحدة الإعداد
|
||||
PasswordTogetVCalExport=مفتاح ربط تصدير تأذن
|
||||
PastDelayVCalExport=لا تصدر الحدث الأكبر من
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionnary->llx_c_actioncomm)
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionary->llx_c_actioncomm)
|
||||
##### ClickToDial #####
|
||||
ClickToDialDesc=هذا النموذج يسمح لإضافة رمز بعد رقم هاتف Dolibarr الاتصالات. وهناك اضغط على هذه الأيقونة ، سوف يطلب من أحد serveur معينة مع تحديد عنوان لكم أدناه. ويمكن استخدام هذه الكلمة لدعوة من مركز نظام Dolibarr التي يمكن الاتصال على رقم الهاتف هذا المسبار النظام على سبيل المثال.
|
||||
##### Point Of Sales (CashDesk) #####
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ DataCodeIDSourceIsInsertedInto=معرف خط الأم وجدت من رمز، س
|
|||
SourceRequired=بيانات قيمة إلزامية
|
||||
SourceExample=مثال على قيمة البيانات ممكن
|
||||
ExampleAnyRefFoundIntoElement=أي المرجع تم العثور عليها ل <b>%s</b> العنصر
|
||||
ExampleAnyCodeOrIdFoundIntoDictionnary=أي رمز (أو الهوية) وجدت في <b>%s</b> dictionnary
|
||||
ExampleAnyCodeOrIdFoundIntoDictionary=أي رمز (أو الهوية) وجدت في <b>%s</b> dictionnary
|
||||
CSVFormatDesc=<b>فاصلة فصل</b> ملف <b>القيمة</b> تنسيق (csv.). <br> هذا هو شكل ملف نصي ، حيث يتم فصل الحقول بواسطة فاصل [%s]. إذا تم العثور على فاصل داخل محتوى الحقل ، يتم تقريب الجولة الميدانية التي قام بها حرف] %s [. الهروب حرف وحرف الهروب جولة هو [%s].
|
||||
# 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).
|
||||
|
|
|
|||
|
|
@ -572,7 +572,7 @@ TotalWoman=المجموع
|
|||
TotalMan=المجموع
|
||||
NeverReceived=لم يتلق
|
||||
Canceled=ألغى
|
||||
YouCanChangeValuesForThisListFromDictionnarySetup=يمكنك تغيير القيم لهذه القائمة من قائمة الإعداد -- dictionnary
|
||||
YouCanChangeValuesForThisListFromDictionarySetup=يمكنك تغيير القيم لهذه القائمة من قائمة الإعداد -- dictionnary
|
||||
Color=لون
|
||||
Documents=ربط الملفات
|
||||
DocumentsNb=ملفات مرتبطة (%s)
|
||||
|
|
|
|||
|
|
@ -43,8 +43,8 @@ SecuritySetup=Настройки на сигурността
|
|||
ErrorModuleRequirePHPVersion=Грешка, този модул изисква PHP версия %s или по-висока
|
||||
ErrorModuleRequireDolibarrVersion=Грешка, този модул изисква Dolibarr версия %s или по-висока
|
||||
ErrorDecimalLargerThanAreForbidden=Грешка, с точност по-висока от <b>%s</b> не се поддържа.
|
||||
DictionnarySetup=Настройки на речника
|
||||
Dictionnary=Речници
|
||||
DictionarySetup=Настройки на речника
|
||||
Dictionary=Речници
|
||||
# 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
|
||||
DisableJavascript=Изключване на Java скрипт и Ajax функции
|
||||
|
|
@ -726,34 +726,34 @@ Permission50202=Сделки на внос
|
|||
# Permission55002=Create/modify surveys
|
||||
# Permission59001=Read commercial margins
|
||||
# Permission59002=Define commercial margins
|
||||
DictionnaryCompanyType=Фирма видове
|
||||
DictionnaryCompanyJuridicalType=Юридическите видове дружества
|
||||
DictionnaryProspectLevel=Prospect потенциал ниво
|
||||
DictionnaryCanton=Област
|
||||
DictionnaryRegion=Регионите
|
||||
DictionnaryCountry=Страни
|
||||
DictionnaryCurrency=Валути
|
||||
DictionnaryCivility=Учтивост заглавие
|
||||
DictionnaryActions=Вид на дневния ред събития
|
||||
DictionnarySocialContributions=Социални видове вноски
|
||||
DictionnaryVAT=Ставките на ДДС или данък върху продажбите цени
|
||||
# DictionnaryRevenueStamp=Amount of revenue stamps
|
||||
DictionnaryPaymentConditions=Условия на плащане
|
||||
DictionnaryPaymentModes=Плащане режими
|
||||
DictionnaryTypeContact=Контакт / Адрес видове
|
||||
DictionnaryEcotaxe=Ecotax (ОЕЕО)
|
||||
DictionnaryPaperFormat=Формати на хартията
|
||||
DictionnaryFees=Вид на таксите
|
||||
DictionnarySendingMethods=Доставка методи
|
||||
DictionnaryStaff=Персонал
|
||||
DictionnaryAvailability=Доставка закъснение
|
||||
DictionnaryOrderMethods=Подреждане методи
|
||||
DictionnarySource=Произход на предложения / поръчки
|
||||
DictionnaryAccountancyplan=Сметкоплан
|
||||
# DictionnaryAccountancysystem=Models for chart of accounts
|
||||
DictionaryCompanyType=Фирма видове
|
||||
DictionaryCompanyJuridicalType=Юридическите видове дружества
|
||||
DictionaryProspectLevel=Prospect потенциал ниво
|
||||
DictionaryCanton=Област
|
||||
DictionaryRegion=Регионите
|
||||
DictionaryCountry=Страни
|
||||
DictionaryCurrency=Валути
|
||||
DictionaryCivility=Учтивост заглавие
|
||||
DictionaryActions=Вид на дневния ред събития
|
||||
DictionarySocialContributions=Социални видове вноски
|
||||
DictionaryVAT=Ставките на ДДС или данък върху продажбите цени
|
||||
# DictionaryRevenueStamp=Amount of revenue stamps
|
||||
DictionaryPaymentConditions=Условия на плащане
|
||||
DictionaryPaymentModes=Плащане режими
|
||||
DictionaryTypeContact=Контакт / Адрес видове
|
||||
DictionaryEcotaxe=Ecotax (ОЕЕО)
|
||||
DictionaryPaperFormat=Формати на хартията
|
||||
DictionaryFees=Вид на таксите
|
||||
DictionarySendingMethods=Доставка методи
|
||||
DictionaryStaff=Персонал
|
||||
DictionaryAvailability=Доставка закъснение
|
||||
DictionaryOrderMethods=Подреждане методи
|
||||
DictionarySource=Произход на предложения / поръчки
|
||||
DictionaryAccountancyplan=Сметкоплан
|
||||
# DictionaryAccountancysystem=Models for chart of accounts
|
||||
SetupSaved=Setup спаси
|
||||
BackToModuleList=Обратно към списъка с модули
|
||||
BackToDictionnaryList=Обратно към речници списък
|
||||
BackToDictionaryList=Обратно към речници списък
|
||||
VATReceivedOnly=Специална цена не се начислява
|
||||
VATManagement=Управление на ДДС
|
||||
VATIsUsedDesc=Ставка на ДДС по подразбиране при създаването на перспективите, фактури, поръчки и т.н. следват активна стандартното правило: <br> Ако продавачът не се облагат с ДДС, а след това ДДС по подразбиране = 0. Край на правило. <br> Ако (продажба страната = закупуване на страната), а след това на ДДС по подразбиране = ДДС на продукта в продажба страната. Край на правило. <br> Ако продавача и купувача в Европейската общност и стоки са транспортни продукти (кола, кораб, самолет), по подразбиране ДДС = 0 (ДДС следва да бъде платена от купувача, в customoffice на страната си, а не на продавача). Край на правило. <br> Ако продавача и купувача в Европейската общност и купувача не е компания, тогава ДДС по подразбиране = ДДС на продаваните продукти. Край на правило. <br> Ако продавача и купувача в Европейската общност и купувача е фирма, тогава ДДС по подразбиране = 0. Край на правило. <br> Иначе предложената по подразбиране на ДДС = 0. Край на правило.
|
||||
|
|
@ -921,7 +921,7 @@ TriggerDisabledAsModuleDisabled=Тригерите в този файл са з
|
|||
TriggerAlwaysActive=Тригерите в този файл са винаги активни,, каквото са активирани модули Dolibarr.
|
||||
TriggerActiveAsModuleActive=Тригерите в този файл са активни, като модул <b>%s</b> е активирана.
|
||||
GeneratedPasswordDesc=Определете тук правилото, което искате да използвате, за да генерира нова парола, ако поискате да има автоматично генерирана парола
|
||||
DictionnaryDesc=Определете тук всички референтни презареждане на данните. Можете да попълните предварително зададена стойност с вашите.
|
||||
DictionaryDesc=Определете тук всички референтни презареждане на данните. Можете да попълните предварително зададена стойност с вашите.
|
||||
ConstDesc=Тази страница ви позволява да редактирате всички останали параметри не са налични в предишните страници. Те са запазени параметрите за напреднали разработчиците или за troubleshouting.
|
||||
OnceSetupFinishedCreateUsers=Внимание, вие сте на потребителя администратор Dolibarr. Администратор потребители не се използват да настроите Dolibarr. За обичайна употреба на Dolibarr, се препоръчва да използвате не потребителски администратора, създаден от Потребители и групи менюто.
|
||||
MiscellaneousDesc=Определете тук всички други параметри, свързани със сигурността.
|
||||
|
|
@ -1425,7 +1425,7 @@ AccountancyCode=Счетоводен код
|
|||
AgendaSetup=Събития и натъкмяване на дневен ред модул
|
||||
PasswordTogetVCalExport=, За да разреши износ връзка
|
||||
PastDelayVCalExport=Не изнася случай по-стари от
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionnary->llx_c_actioncomm)
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionary->llx_c_actioncomm)
|
||||
##### ClickToDial #####
|
||||
ClickToDialDesc=Този модул позволява да добавите икона след телефонни номера. Кликнете върху тази икона ще призове сървър с определен URL адрес можете да зададете по-долу. Това може да се използва, за да се обадя на кол център система от Dolibarr, че да се обаждат на телефонен номер на SIP система, например.
|
||||
##### Point Of Sales (CashDesk) #####
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ DataCodeIDSourceIsInsertedInto=ID на родител ред от кода, ще
|
|||
SourceRequired=Стойността на данните е задължително
|
||||
SourceExample=Пример за възможно стойността на данните
|
||||
ExampleAnyRefFoundIntoElement=Всеки код за елемент <b>%s</b>
|
||||
ExampleAnyCodeOrIdFoundIntoDictionnary=Всеки код (ID) в dictionnary <b>%s</b>
|
||||
ExampleAnyCodeOrIdFoundIntoDictionary=Всеки код (ID) в dictionnary <b>%s</b>
|
||||
CSVFormatDesc=<b>Разделени със запетаи</b> формат <b>стойност</b> файл (CSV). <br> Това е формат текстов файл, където полетата са разделени със сепаратор [%s]. Ако сепаратор се намира във вътрешността съдържанието поле, поле се закръглява кръг характер [%s]. Бягство характер, за да избягат кръг характер е %s].
|
||||
Excel95FormatDesc=Файлов формат на <b>Excel</b> (XLS) <br> Това е роден Excel 95 формат (BIFF5).
|
||||
Excel2007FormatDesc=<b>Excel</b> файлов формат (XLSX) <br> Това е роден формат Excel 2007 (SpreadsheetML).
|
||||
|
|
|
|||
|
|
@ -572,7 +572,7 @@ TotalWoman=Общо
|
|||
TotalMan=Общо
|
||||
NeverReceived=Никога не са получавали
|
||||
Canceled=Отменен
|
||||
YouCanChangeValuesForThisListFromDictionnarySetup=Можете да промените стойности за този списък от менюто за настройки - dictionnary
|
||||
YouCanChangeValuesForThisListFromDictionarySetup=Можете да промените стойности за този списък от менюто за настройки - dictionnary
|
||||
Color=Цвят
|
||||
Documents=Свързани файлове
|
||||
DocumentsNb=Свързани файлове (%s)
|
||||
|
|
|
|||
|
|
@ -43,8 +43,8 @@ SecuritySetup=Configuració de la seguretat
|
|||
ErrorModuleRequirePHPVersion=Error, aquest mòdul requereix una versió %s o superior de PHP
|
||||
ErrorModuleRequireDolibarrVersion=Error, aquest mòdul requereix una versió %s o superior de Dolibarr
|
||||
ErrorDecimalLargerThanAreForbidden=Error, les precisions superiors a <b>%s</b> no estan suportades.
|
||||
DictionnarySetup=Diccionaris
|
||||
Dictionnary=Diccionaris
|
||||
DictionarySetup=Diccionaris
|
||||
Dictionary=Diccionaris
|
||||
ErrorReservedTypeSystemSystemAuto=L'ús del tipus 'system' i 'systemauto' està reservat. Podeu utilitzar 'user' com a valor per afegir el seu propi registre
|
||||
ErrorCodeCantContainZero=El codi no pot contenir el valor 0
|
||||
DisableJavascript=Desactivar les funcions Javascript
|
||||
|
|
@ -726,34 +726,34 @@ Permission50202=Importar les transaccions
|
|||
# Permission55002=Create/modify surveys
|
||||
# Permission59001=Read commercial margins
|
||||
# Permission59002=Define commercial margins
|
||||
DictionnaryCompanyType=Tipus d'empresa
|
||||
DictionnaryCompanyJuridicalType=Formes jurídiques
|
||||
DictionnaryProspectLevel=Perspectiva nivell client potencial
|
||||
DictionnaryCanton=Departaments/Províncies/Zones
|
||||
DictionnaryRegion=Regions
|
||||
DictionnaryCountry=Països
|
||||
DictionnaryCurrency=Monedes
|
||||
DictionnaryCivility=Títol cortesia
|
||||
DictionnaryActions=Tipus d'esdeveniments de l'agenda
|
||||
DictionnarySocialContributions=Tipus de càrregues socials
|
||||
DictionnaryVAT=Taxa d'IVA (Impost sobre vendes als EEUU)
|
||||
DictionnaryRevenueStamp=Imports de segells fiscals
|
||||
DictionnaryPaymentConditions=Condicions de pagament
|
||||
DictionnaryPaymentModes=Modes de pagament
|
||||
DictionnaryTypeContact=Tipus de contactes/adreces
|
||||
DictionnaryEcotaxe=Barems CEcoParticipación (DEEE)
|
||||
DictionnaryPaperFormat=Formats paper
|
||||
DictionnaryFees=Tipus de desplaçaments i honoraris
|
||||
DictionnarySendingMethods=Mètodes d'expedició
|
||||
DictionnaryStaff=Empleats
|
||||
DictionnaryAvailability=Temps de lliurament
|
||||
DictionnaryOrderMethods=Mètodes de comanda
|
||||
DictionnarySource=Orígens de pressupostos/comandes
|
||||
DictionnaryAccountancyplan=Pla comptable
|
||||
DictionnaryAccountancysystem=Models de plans comptables
|
||||
DictionaryCompanyType=Tipus d'empresa
|
||||
DictionaryCompanyJuridicalType=Formes jurídiques
|
||||
DictionaryProspectLevel=Perspectiva nivell client potencial
|
||||
DictionaryCanton=Departaments/Províncies/Zones
|
||||
DictionaryRegion=Regions
|
||||
DictionaryCountry=Països
|
||||
DictionaryCurrency=Monedes
|
||||
DictionaryCivility=Títol cortesia
|
||||
DictionaryActions=Tipus d'esdeveniments de l'agenda
|
||||
DictionarySocialContributions=Tipus de càrregues socials
|
||||
DictionaryVAT=Taxa d'IVA (Impost sobre vendes als EEUU)
|
||||
DictionaryRevenueStamp=Imports de segells fiscals
|
||||
DictionaryPaymentConditions=Condicions de pagament
|
||||
DictionaryPaymentModes=Modes de pagament
|
||||
DictionaryTypeContact=Tipus de contactes/adreces
|
||||
DictionaryEcotaxe=Barems CEcoParticipación (DEEE)
|
||||
DictionaryPaperFormat=Formats paper
|
||||
DictionaryFees=Tipus de desplaçaments i honoraris
|
||||
DictionarySendingMethods=Mètodes d'expedició
|
||||
DictionaryStaff=Empleats
|
||||
DictionaryAvailability=Temps de lliurament
|
||||
DictionaryOrderMethods=Mètodes de comanda
|
||||
DictionarySource=Orígens de pressupostos/comandes
|
||||
DictionaryAccountancyplan=Pla comptable
|
||||
DictionaryAccountancysystem=Models de plans comptables
|
||||
SetupSaved=Configuració desada
|
||||
BackToModuleList=Retornar llista de mòduls
|
||||
BackToDictionnaryList=Tornar a la llista de diccionaris
|
||||
BackToDictionaryList=Tornar a la llista de diccionaris
|
||||
VATReceivedOnly=Impostos especials no facturables
|
||||
VATManagement=Gestió IVA
|
||||
VATIsUsedDesc=El tipus d'IVA proposat per defecte en les creacions de pressupostos, factures, comandes, etc. Respon a la següent regla: <br> Si el venedor no està subjecte a IVA, IVA per defecte= 0. Final de regla. <br> Si el país del venedor= país del comprador llavors IVA per defecte= IVA del producte venut. Final de regla. <br> Si venedor i comprador resideixen a la Comunitat Europea i el bé venut= nou mitjà de transports (auto, vaixell, avió), IVA per defecte= 0 (l'IVA ha de ser pagat pel comprador a la hisenda pública del seu país i no al venedor). Final de regla <br> Si venedor i comprador resideixen a la Comunitat Europea i comprador= particular o empresa sense NIF intracomunitari llavors IVA per defecte= IVA del producte venut. Final de regla. <br> Si venedor i comprador resideixen a la Comunitat Europea i comprador= empresa amb NIF intracomunitari llavors IVA per defecte= 0. Final de regla. <br> Sinó, IVA proposat per defecte= 0. Final de regla. <br>
|
||||
|
|
@ -921,7 +921,7 @@ TriggerDisabledAsModuleDisabled=Triggers d'aquest arxiu desactivats ja que el m
|
|||
TriggerAlwaysActive=Triggers d'aquest arxiu sempre actius, ja que els mòduls Dolibarr relacionats estan activats
|
||||
TriggerActiveAsModuleActive=Triggers d'aquest arxiu actius ja que el mòdul <b>%s</b> està activat
|
||||
GeneratedPasswordDesc=Indiqui aquí que norma vol utilitzar per generar les contrasenyes quan vulgui generar una nova contrasenya
|
||||
DictionnaryDesc=Indiqui aquí les dades de referència. Pot completar/modificar les dades predefinides amb les seves
|
||||
DictionaryDesc=Indiqui aquí les dades de referència. Pot completar/modificar les dades predefinides amb les seves
|
||||
ConstDesc=Qualsevol altre paràmetre no editable en les pàgines anteriors
|
||||
OnceSetupFinishedCreateUsers=Atenció, està sota un compte d'administrador de Dolibarr. Els administradors s'utilitzen per configurar Dolibarr. Per a un ús corrent de Dolibarr, es recomana utilitzar un compte no administrador creada des del menú "Usuaris i grups"
|
||||
MiscellaneousDesc=Definiu aquí els altres paràmetres relacionats amb la seguretat.
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ DataCodeIDSourceIsInsertedInto=L'id de la línia pare trobada a partir del codi,
|
|||
SourceRequired=Dades d'origen obligatòries
|
||||
SourceExample=Exemple de dades d'origen possibles
|
||||
ExampleAnyRefFoundIntoElement=Totes les referències trobades per als elements <b>%s</b>
|
||||
ExampleAnyCodeOrIdFoundIntoDictionnary=Tots els codis (o id) trobats en el diccionari <b>%s</b>
|
||||
ExampleAnyCodeOrIdFoundIntoDictionary=Tots els codis (o id) trobats en el diccionari <b>%s</b>
|
||||
CSVFormatDesc=Arxiu amb format <b>Valors separats per coma</b> (.csv).<br>És un fitxer amb format de text en què els camps són separats pel caràcter [ %s ]. Si el separador es troba en el contingut d'un camp, el camp ha d'estar tancat per el caràcter [ %s ]. El caràcter d'escapament per a incloure un caràcter d'entorn en una dada és [ %s ].
|
||||
Excel95FormatDesc=Arxiu amb format <b>Excel</b> (.xls)<br>Aquest és el format natiu d'Excel 95 (BIFF5).
|
||||
Excel2007FormatDesc=Arxiu amb format <b>Excel</b> (.xlsx)<br>Aquest és el format natiu d'Excel 2007 (SpreadsheetML).
|
||||
|
|
|
|||
|
|
@ -572,7 +572,7 @@ TotalWoman=Total
|
|||
TotalMan=Total
|
||||
NeverReceived=Mai rebut
|
||||
Canceled=Cancel·lat
|
||||
YouCanChangeValuesForThisListFromDictionnarySetup=Pot canviar aquestos valors al menú configuració->diccionaris
|
||||
YouCanChangeValuesForThisListFromDictionarySetup=Pot canviar aquestos valors al menú configuració->diccionaris
|
||||
Color=Color
|
||||
Documents=Documents
|
||||
DocumentsNb=Fitxers adjunts (%s)
|
||||
|
|
|
|||
|
|
@ -43,8 +43,8 @@ SecuritySetup=Bezpečnostní nastavení
|
|||
ErrorModuleRequirePHPVersion=Chyba, tento modul vyžaduje PHP verze %s nebo vyšší
|
||||
ErrorModuleRequireDolibarrVersion=Chyba, tento modul vyžaduje Dolibarr verze %s nebo vyšší
|
||||
ErrorDecimalLargerThanAreForbidden=Chyba, přesnost vyšší než <b>%s</b> není podporováno.
|
||||
DictionnarySetup=Slovník Nastavení
|
||||
Dictionnary=Slovníky
|
||||
DictionarySetup=Slovník Nastavení
|
||||
Dictionary=Slovníky
|
||||
ErrorReservedTypeSystemSystemAuto=Hodnota "systém" a "systemauto" typu je vyhrazena. Můžete použít "uživatelem" jako hodnota přidat svůj vlastní rekord
|
||||
ErrorCodeCantContainZero=Kód může obsahovat hodnotu 0
|
||||
DisableJavascript=Zakázat JavaScript a Ajax funkce
|
||||
|
|
@ -726,34 +726,34 @@ Permission55001=Přečtěte si průzkumy
|
|||
Permission55002=Vytvořit / upravit průzkumy
|
||||
# Permission59001=Read commercial margins
|
||||
# Permission59002=Define commercial margins
|
||||
DictionnaryCompanyType=Společnost typy
|
||||
DictionnaryCompanyJuridicalType=Právnické druhy společnosti
|
||||
DictionnaryProspectLevel=Prospect potenciální míra
|
||||
DictionnaryCanton=Státní / kantony
|
||||
DictionnaryRegion=Regiony
|
||||
DictionnaryCountry=Země
|
||||
DictionnaryCurrency=Měny
|
||||
DictionnaryCivility=Zdvořilost titul
|
||||
DictionnaryActions=Typ agendy událostí
|
||||
DictionnarySocialContributions=Sociální příspěvky typy
|
||||
DictionnaryVAT=Sazby DPH nebo daň z prodeje Kurzy
|
||||
DictionnaryRevenueStamp=Množství kolkových známek
|
||||
DictionnaryPaymentConditions=Platební podmínky
|
||||
DictionnaryPaymentModes=Platební způsoby
|
||||
DictionnaryTypeContact=Kontakt / Adresa typy
|
||||
DictionnaryEcotaxe=Ekologické daně (OEEZ)
|
||||
DictionnaryPaperFormat=Formáty papíru
|
||||
DictionnaryFees=Typy poplatků
|
||||
DictionnarySendingMethods=Způsoby dopravy
|
||||
DictionnaryStaff=Zaměstnanci
|
||||
DictionnaryAvailability=Dodací zpoždění
|
||||
DictionnaryOrderMethods=Řazení metody
|
||||
DictionnarySource=Původ návrhů / objednávky
|
||||
DictionnaryAccountancyplan=Graf účtů
|
||||
DictionnaryAccountancysystem=Modely účtové osnovy
|
||||
DictionaryCompanyType=Společnost typy
|
||||
DictionaryCompanyJuridicalType=Právnické druhy společnosti
|
||||
DictionaryProspectLevel=Prospect potenciální míra
|
||||
DictionaryCanton=Státní / kantony
|
||||
DictionaryRegion=Regiony
|
||||
DictionaryCountry=Země
|
||||
DictionaryCurrency=Měny
|
||||
DictionaryCivility=Zdvořilost titul
|
||||
DictionaryActions=Typ agendy událostí
|
||||
DictionarySocialContributions=Sociální příspěvky typy
|
||||
DictionaryVAT=Sazby DPH nebo daň z prodeje Kurzy
|
||||
DictionaryRevenueStamp=Množství kolkových známek
|
||||
DictionaryPaymentConditions=Platební podmínky
|
||||
DictionaryPaymentModes=Platební způsoby
|
||||
DictionaryTypeContact=Kontakt / Adresa typy
|
||||
DictionaryEcotaxe=Ekologické daně (OEEZ)
|
||||
DictionaryPaperFormat=Formáty papíru
|
||||
DictionaryFees=Typy poplatků
|
||||
DictionarySendingMethods=Způsoby dopravy
|
||||
DictionaryStaff=Zaměstnanci
|
||||
DictionaryAvailability=Dodací zpoždění
|
||||
DictionaryOrderMethods=Řazení metody
|
||||
DictionarySource=Původ návrhů / objednávky
|
||||
DictionaryAccountancyplan=Graf účtů
|
||||
DictionaryAccountancysystem=Modely účtové osnovy
|
||||
SetupSaved=Nastavení uloženo
|
||||
BackToModuleList=Zpět na seznam modulů
|
||||
BackToDictionnaryList=Zpět na seznam slovníků
|
||||
BackToDictionaryList=Zpět na seznam slovníků
|
||||
VATReceivedOnly=Zvláštní sazba není účtován
|
||||
VATManagement=DPH řízení
|
||||
VATIsUsedDesc=Sazba DPH ve výchozím nastavení při vytváření vyhlídky, faktury, objednávky atd. sledovat aktivní standardní pravidlo: <br> Pokud prodávající není předmětem DPH, pak se DPH ve výchozím nastavení = 0. Konec vlády. <br> Je-li (prodejní country = nákup zemi), pak se DPH standardně = DPH výrobku v zemi prodeje. Konec vlády. <br> Pokud se prodávající a kupující v Evropském společenství a zboží je doprava výrobků (auto, loď, letadlo), výchozí DPH = 0 (DPH by měla být věnována ze strany kupujícího v customoffice své země, a ne u prodejce). Konec vlády. <br> Pokud se prodávající a kupující v Evropském společenství a kupujícím není společnost, pak se DPH standardně = DPH z výrobků prodaných. Konec vlády. <br> Pokud se prodávající a kupující v Evropském společenství a kupujícím je společnost, pak se DPH ve výchozím nastavení = 0. Konec vlády. <br> Jinak navrhovaná výchozí DPH = 0. Konec vlády.
|
||||
|
|
@ -921,7 +921,7 @@ TriggerDisabledAsModuleDisabled=Trigger v tomto souboru jsou zakázány jako mod
|
|||
TriggerAlwaysActive=Trigger v tomto souboru jsou vždy aktivní, ať už jsou aktivované Dolibarr moduly.
|
||||
TriggerActiveAsModuleActive=Trigger v tomto souboru jsou aktivní jako modul <b>%s</b> je povoleno.
|
||||
GeneratedPasswordDesc=Definujte zde pravidlo, které chcete použít k vytvoření nového hesla, pokud se zeptáte mít automaticky generované heslo
|
||||
DictionnaryDesc=Definujte zde všechny referenční Kako. Můžete dokončit danou hodnotu s vašimi.
|
||||
DictionaryDesc=Definujte zde všechny referenční Kako. Můžete dokončit danou hodnotu s vašimi.
|
||||
ConstDesc=Na této stránce můžete upravovat všechny ostatní parametry nejsou k dispozici v předchozích stránkách. Oni jsou vyhrazeny parametry pro zkušené vývojáře nebo troubleshouting.
|
||||
OnceSetupFinishedCreateUsers=Upozornění, že jste správce Dolibarr uživatel. Správce Uživatelské slouží k nastavení Dolibarr. Pro běžné použití Dolibarr, se doporučuje používat non správce uživateli vytvořené od uživatelů a skupin Menu.
|
||||
MiscellaneousDesc=Definujte zde všechny ostatní parametry vztahující se k bezpečnosti.
|
||||
|
|
@ -1425,7 +1425,7 @@ AccountancyCodeBuy=Nákup účet. kód
|
|||
AgendaSetup=Akce a agenda Nastavení modulu
|
||||
PasswordTogetVCalExport=Klíč povolit export odkaz
|
||||
PastDelayVCalExport=Neexportovat události starší než
|
||||
AGENDA_USE_EVENT_TYPE=Používejte typy událostí (podařilo do Configuration-> Dictionnary-> llx_c_actioncomm)
|
||||
AGENDA_USE_EVENT_TYPE=Používejte typy událostí (podařilo do Configuration-> Dictionary-> llx_c_actioncomm)
|
||||
##### ClickToDial #####
|
||||
ClickToDialDesc=Tento modul umožňuje přidat ikonu po telefonních čísel. Klepnutím na tuto ikonu bude volat server s konkrétní URL, kterou definujete níže. To lze použít k volání call centra systému z Dolibarr které mohou volat na telefonní číslo SIP systému pro příklad.
|
||||
##### Point Of Sales (CashDesk) #####
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ DataCodeIDSourceIsInsertedInto=Id mateřské linie nalezli kódu, bude vložen d
|
|||
SourceRequired=Hodnota dat je povinné
|
||||
SourceExample=Příklad možné hodnoty údajů
|
||||
ExampleAnyRefFoundIntoElement=Veškeré ref našli prvků <b>%s</b>
|
||||
ExampleAnyCodeOrIdFoundIntoDictionnary=Jakýkoliv kód (nebo id) našel na dictionnary <b>%s</b>
|
||||
ExampleAnyCodeOrIdFoundIntoDictionary=Jakýkoliv kód (nebo id) našel na dictionnary <b>%s</b>
|
||||
CSVFormatDesc=<b>Hodnoty oddělené čárkami</b> formát souboru (. Csv). <br> Jedná se o textový formát souboru, kde jsou pole oddělena oddělovačem [%s]. Pokud oddělovač se nachází uvnitř pole obsahu je pole zaoblené charakteru kola [%s]. Útěk charakter unikat kolem znaku je %s [].
|
||||
Excel95FormatDesc=<b>Excel</b> formát souboru (. Xls) <br> Toto je nativní formát aplikace Excel 95 (BIFF5).
|
||||
Excel2007FormatDesc=<b>Excel</b> formát souboru (. Xlsx) <br> Toto je nativní formát aplikace Excel 2007 (SpreadsheetML).
|
||||
|
|
|
|||
|
|
@ -572,7 +572,7 @@ TotalWoman=Celkový
|
|||
TotalMan=Celkový
|
||||
NeverReceived=Nikdy nedostal
|
||||
Canceled=Zrušený
|
||||
YouCanChangeValuesForThisListFromDictionnarySetup=Můžete změnit hodnoty tohoto seznamu z menu nastavení - dictionnary
|
||||
YouCanChangeValuesForThisListFromDictionarySetup=Můžete změnit hodnoty tohoto seznamu z menu nastavení - dictionnary
|
||||
Color=Barva
|
||||
Documents=Připojené soubory
|
||||
DocumentsNb=Připojené soubory (%s)
|
||||
|
|
|
|||
|
|
@ -43,8 +43,8 @@ SecuritySetup=Sikkerhed setup
|
|||
ErrorModuleRequirePHPVersion=Fejl, dette modul kræver PHP version %s eller højere
|
||||
ErrorModuleRequireDolibarrVersion=Fejl, dette modul kræver Dolibarr version %s eller højere
|
||||
ErrorDecimalLargerThanAreForbidden=Fejl, en præcision højere <b>end %s</b> er ikke understøttet.
|
||||
DictionnarySetup=Ordbog setup
|
||||
# Dictionnary=Dictionaries
|
||||
DictionarySetup=Ordbog setup
|
||||
# Dictionary=Dictionaries
|
||||
# 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
|
||||
DisableJavascript=Deaktiver JavaScript og Ajax funktioner
|
||||
|
|
@ -726,34 +726,34 @@ Permission50202=Import transaktioner
|
|||
# Permission55002=Create/modify surveys
|
||||
# Permission59001=Read commercial margins
|
||||
# Permission59002=Define commercial margins
|
||||
DictionnaryCompanyType=Company typer
|
||||
DictionnaryCompanyJuridicalType=Juridiske former for virksomhed
|
||||
DictionnaryProspectLevel=Prospect potentielle niveau
|
||||
DictionnaryCanton=Distrikter
|
||||
DictionnaryRegion=Regioner
|
||||
DictionnaryCountry=Lande
|
||||
DictionnaryCurrency=Valuta
|
||||
DictionnaryCivility=Høfligt titel
|
||||
DictionnaryActions=Aktioner liste
|
||||
DictionnarySocialContributions=Sociale bidrag typer
|
||||
DictionnaryVAT=Momssatser
|
||||
# DictionnaryRevenueStamp=Amount of revenue stamps
|
||||
DictionnaryPaymentConditions=Betalingsbetingelser
|
||||
DictionnaryPaymentModes=Betalingsformer
|
||||
DictionnaryTypeContact=Kontakt typer
|
||||
DictionnaryEcotaxe=Miljøafgift (WEEE)
|
||||
DictionnaryPaperFormat=Papir formater
|
||||
DictionnaryFees=Type af gebyrer
|
||||
DictionnarySendingMethods=Sendings metoder
|
||||
DictionnaryStaff=Personale
|
||||
DictionnaryAvailability=Levering forsinkelse
|
||||
DictionnaryOrderMethods=Bestilling af metoder
|
||||
DictionnarySource=Oprindelse af forslag / ordrer
|
||||
# DictionnaryAccountancyplan=Chart of accounts
|
||||
# DictionnaryAccountancysystem=Models for chart of accounts
|
||||
DictionaryCompanyType=Company typer
|
||||
DictionaryCompanyJuridicalType=Juridiske former for virksomhed
|
||||
DictionaryProspectLevel=Prospect potentielle niveau
|
||||
DictionaryCanton=Distrikter
|
||||
DictionaryRegion=Regioner
|
||||
DictionaryCountry=Lande
|
||||
DictionaryCurrency=Valuta
|
||||
DictionaryCivility=Høfligt titel
|
||||
DictionaryActions=Aktioner liste
|
||||
DictionarySocialContributions=Sociale bidrag typer
|
||||
DictionaryVAT=Momssatser
|
||||
# DictionaryRevenueStamp=Amount of revenue stamps
|
||||
DictionaryPaymentConditions=Betalingsbetingelser
|
||||
DictionaryPaymentModes=Betalingsformer
|
||||
DictionaryTypeContact=Kontakt typer
|
||||
DictionaryEcotaxe=Miljøafgift (WEEE)
|
||||
DictionaryPaperFormat=Papir formater
|
||||
DictionaryFees=Type af gebyrer
|
||||
DictionarySendingMethods=Sendings metoder
|
||||
DictionaryStaff=Personale
|
||||
DictionaryAvailability=Levering forsinkelse
|
||||
DictionaryOrderMethods=Bestilling af metoder
|
||||
DictionarySource=Oprindelse af forslag / ordrer
|
||||
# DictionaryAccountancyplan=Chart of accounts
|
||||
# DictionaryAccountancysystem=Models for chart of accounts
|
||||
SetupSaved=Setup gemt
|
||||
BackToModuleList=Tilbage til moduler liste
|
||||
BackToDictionnaryList=Tilbage til ordbøger liste
|
||||
BackToDictionaryList=Tilbage til ordbøger liste
|
||||
VATReceivedOnly=Særlige sats ikke afholdes
|
||||
VATManagement=Moms Management
|
||||
# VATIsUsedDesc=The VAT rate by default when creating prospects, invoices, orders etc follow the active standard rule:<br>If the seller is not subjected to VAT, then VAT by default=0. End of rule.<br>If the (selling country= buying country), then the VAT by default=VAT of the product in the selling country. End of rule. <br>If seller and buyer in the European Community and goods are transport products (car, ship, plane), the default VAT=0 ( The VAT should be paid by the buyer at the customoffice of his country and not at the seller). End of rule.<br>If seller and buyer in the European Community and buyer is not a company, then the VAT by default=VAT of product sold. End of rule.<br>If seller and buyer in the European Community and buyer is a company, then the VAT by default=0. End of rule.<br>Else the proposed default VAT=0. End of rule.
|
||||
|
|
@ -921,7 +921,7 @@ TriggerDisabledAsModuleDisabled=Udløser i denne fil er slået fra som <b>modul
|
|||
TriggerAlwaysActive=Udløser i denne fil er altid aktive, uanset hvad er det aktiverede Dolibarr moduler.
|
||||
TriggerActiveAsModuleActive=Udløser i denne fil er aktive som <b>modul %s</b> er aktiveret.
|
||||
GeneratedPasswordDesc=Definer her som regel, du vil bruge til at generere nye adgangskode, hvis du beder om at få automatisk genereret adgangskode
|
||||
DictionnaryDesc=Definer her alle reference oplysningerne. Du kan færdiggøre foruddefineret værdi med dine.
|
||||
DictionaryDesc=Definer her alle reference oplysningerne. Du kan færdiggøre foruddefineret værdi med dine.
|
||||
ConstDesc=Denne side giver dig mulighed for at redigere alle andre parametre, som ikke findes i de foregående sider. De er forbeholdt parametre for avancerede udviklere eller for troubleshouting.
|
||||
OnceSetupFinishedCreateUsers=Advarsel, du er en Dolibarr administrator bruger. Administrator brugere er vant til opsætningen Dolibarr. For en almindelig brug af Dolibarr, anbefales det at bruge en ikke administrator bruger oprettet fra Brugere & Grupper menuen.
|
||||
MiscellaneousDesc=Definer her alle andre parametre med relation til sikkerhed.
|
||||
|
|
@ -1425,7 +1425,7 @@ AccountancyCode=Regnskab Kode
|
|||
AgendaSetup=Aktioner og dagsorden modul opsætning
|
||||
PasswordTogetVCalExport=Nøglen til at tillade eksport link
|
||||
PastDelayVCalExport=Må ikke eksportere begivenhed ældre end
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionnary->llx_c_actioncomm)
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionary->llx_c_actioncomm)
|
||||
##### ClickToDial #####
|
||||
ClickToDialDesc=Dette modul giver mulighed for at tilføje et ikon efter telefonnummeret på Dolibarr kontakter. Et klik på dette ikon, vil kalde en serveur med en bestemt webadresse du definerer nedenfor. Dette kan bruges til at ringe til et call center-system fra Dolibarr, der kan ringe til telefonnummeret på en SIP-system f.eks.
|
||||
##### Point Of Sales (CashDesk) #####
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ DataCodeIDSourceIsInsertedInto=Den id stamlinjen fundet fra kode, vil blive inds
|
|||
SourceRequired=Data værdi er obligatorisk
|
||||
SourceExample=Eksempel på mulige dataværdi
|
||||
ExampleAnyRefFoundIntoElement=Enhver ref fundet for element <b>%s</b>
|
||||
ExampleAnyCodeOrIdFoundIntoDictionnary=Enhver kode (eller id) fundet i dictionnary <b>%s</b>
|
||||
ExampleAnyCodeOrIdFoundIntoDictionary=Enhver kode (eller id) fundet i dictionnary <b>%s</b>
|
||||
CSVFormatDesc=<b>Semikolonseparerede Værdi</b> filformat (. Csv). <br> Dette er en tekstfil format, hvor felterne er adskilt af separator [%s]. Hvis separator er fundet inde i et felt indhold, er området afrundet med runde karakter [%s]. Escape character at flygte runde karakter er [%s].
|
||||
# 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).
|
||||
|
|
|
|||
|
|
@ -572,7 +572,7 @@ TotalWoman=Total
|
|||
TotalMan=Total
|
||||
NeverReceived=Aldrig modtaget
|
||||
Canceled=Annulleret
|
||||
YouCanChangeValuesForThisListFromDictionnarySetup=Du kan ændre værdier for denne liste fra menuen setup - dictionnary
|
||||
YouCanChangeValuesForThisListFromDictionarySetup=Du kan ændre værdier for denne liste fra menuen setup - dictionnary
|
||||
Color=Color
|
||||
Documents=Forbundet filer
|
||||
DocumentsNb=Linkede filer (%s)
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ SecuritySetup=Sicherheitseinstellungen
|
|||
ErrorModuleRequirePHPVersion=Fehler: Dieses Modul benötigt PHP Version %s oder höher
|
||||
ErrorModuleRequireDolibarrVersion=Fehler: Dieses Moduls erfordert Dolibarr Version %s oder höher
|
||||
ErrorDecimalLargerThanAreForbidden=Fehler: Eine höhere Genauigkeit als <b>%s</b> wird nicht unterstützt.
|
||||
DictionnarySetup=Wörterbucheinstellungen
|
||||
DictionarySetup=Wörterbucheinstellungen
|
||||
DisableJavascript=JavaScript- und Ajax-Funktionen deaktivieren
|
||||
ConfirmAjax=Ajax-Bestätigungs-Popups verwenden
|
||||
ViewFullDateActions=Zeige alle Terminaktionen in der Partneransicht
|
||||
|
|
@ -451,26 +451,26 @@ Permission2405=Maßnahmen (Termine/Aufgaben) Anderer erstellen/bearbeiten
|
|||
Permission2500=Dokumente einsehen
|
||||
Permission2501=Dokumente hochladen oder löschen
|
||||
Permission2515=Dokumentverzeichnisse verwalten
|
||||
DictionnaryCompanyType=Art des Unternehmens
|
||||
DictionnaryCompanyJuridicalType=Rechtsform
|
||||
DictionnaryProspectLevel=Geschäftsaussicht
|
||||
DictionnaryCanton=Bundesland
|
||||
DictionnaryRegion=Regionen
|
||||
DictionnaryCountry=Länder
|
||||
DictionnaryCurrency=Währungen
|
||||
DictionnaryCivility=Anredeformen
|
||||
DictionnaryActions=Maßnahmen
|
||||
DictionnarySocialContributions=Sozialbeitragstypen
|
||||
DictionnaryVAT=MwSt.-Sätze
|
||||
DictionnaryPaymentConditions=Zahlungsbedingungen
|
||||
DictionnaryPaymentModes=Zahlungsarten
|
||||
DictionnaryTypeContact=Kontaktarten
|
||||
DictionnaryEcotaxe=Ökosteuern (WEEE)
|
||||
DictionnaryPaperFormat=Papierformate
|
||||
DictionnaryFees=Gebührenarten
|
||||
DictionaryCompanyType=Art des Unternehmens
|
||||
DictionaryCompanyJuridicalType=Rechtsform
|
||||
DictionaryProspectLevel=Geschäftsaussicht
|
||||
DictionaryCanton=Bundesland
|
||||
DictionaryRegion=Regionen
|
||||
DictionaryCountry=Länder
|
||||
DictionaryCurrency=Währungen
|
||||
DictionaryCivility=Anredeformen
|
||||
DictionaryActions=Maßnahmen
|
||||
DictionarySocialContributions=Sozialbeitragstypen
|
||||
DictionaryVAT=MwSt.-Sätze
|
||||
DictionaryPaymentConditions=Zahlungsbedingungen
|
||||
DictionaryPaymentModes=Zahlungsarten
|
||||
DictionaryTypeContact=Kontaktarten
|
||||
DictionaryEcotaxe=Ökosteuern (WEEE)
|
||||
DictionaryPaperFormat=Papierformate
|
||||
DictionaryFees=Gebührenarten
|
||||
SetupSaved=Setup gespeichert
|
||||
BackToModuleList=Zurück zur Modulübersicht
|
||||
BackToDictionnaryList=Zurück zur Wörterbuchübersicht
|
||||
BackToDictionaryList=Zurück zur Wörterbuchübersicht
|
||||
VATReceivedOnly=Nur Mehtwertsteuererhalt
|
||||
VATManagement=MwSt-Verwaltung
|
||||
VATIsUsedDesc=Der standardmäßige MwSt.-Satz für die Erstellung von Leads, Rechnungen, Bestellungen, etc. folgt der folgenden, aktiven Regel:<br>Ist der Verkäufer mehrwertsteuerpflichtig, ist die MwSt. standardmäßig 0. Ende der Regel.<br>Ist das Verkaufsland gleich dem Einkaufsland, ist die MwSt. standardmäßig die MwSt. des Produkts im Verkaufsland. Ende der Regel. <br>Sind Verkäufer und Käufer beide aus Europäischen Mitgliedsstaaten und die Produkte physisch transportfähig (Auto, Schiff, Flugzeug), ist die MwSt. standardmäßig 0. (Die MwSt. sollte durch den Käufer beim eigenen Zollamt entrichtet werden, nicht durch den Verkäufer. Ende der Regel.<br>Sind Verkäufer und Käufer beide aus Europäischen Mitgliedsstaaten, der Käufer jedoch kein Unternehmen so ist die MwSt. standardmäßig die MwSt. des verkauften Produkts. Ende der Regel.<br>Sind Verkäufer und Käufer beide Unternehmen im Europäischen Gemeinschaftsraum, so ist die MwSt. standardmäßig 0. Ende der Regel.<br>Trifft keine der obigen Regeln zu, ist die MwSt. standardmäßig 0.
|
||||
|
|
@ -590,7 +590,7 @@ TriggerDisabledAsModuleDisabled=Trigger in dieser Datei sind durch das übergeor
|
|||
TriggerAlwaysActive=Trigger in dieser Datei sind unabhängig der Modulkonfiguration immer aktiviert.
|
||||
TriggerActiveAsModuleActive=Trigger in dieser Datei sind durch das übergeordnete Modul <b>%s</b> aktiviert.
|
||||
GeneratedPasswordDesc=Definieren Sie hier das Schema nach dem automatisch generierte Passwörter erstellt werden sollen.
|
||||
DictionnaryDesc=Definieren Sie hier alle Referenzwerte. Sie können vordefinierte Werte mit ihren eigenen ergänzen.
|
||||
DictionaryDesc=Definieren Sie hier alle Referenzwerte. Sie können vordefinierte Werte mit ihren eigenen ergänzen.
|
||||
ConstDesc=Auf dieser Seite können Sie alle, auf bisherigen Seiten nicht aufgeführte, Parameter einstellen. Dieser Bereich ist primär für fortgeschrittene Entwickler und zur Fehlersuche gedacht.
|
||||
OnceSetupFinishedCreateUsers=Achtung: Sie sind derzeit als Systemadministrator angemeldet. Administratorenkonten dienen primär zur Einrichtung des Systems, für die reguläre Verwendung sollten Sie ein herkömmliches Benutzerkonto unter 'Benutzer&Gruppen' anlegen und verwenden.
|
||||
MiscellaneousDesc=Definieren Sie hier alle sonstigen Sicherheitseinstellungen
|
||||
|
|
@ -1002,7 +1002,7 @@ Permission534=Services löschen
|
|||
Permission538=Services exportieren
|
||||
Permission1251=Massenimport von Daten in die Datenbank (Systemlast!)
|
||||
Permission1421=Kundenbestellungen und -attribute exportieren
|
||||
DictionnarySendingMethods=Versandarten
|
||||
DictionarySendingMethods=Versandarten
|
||||
SetupDescription5=Andere Einträge verwalten optionale Parameter.
|
||||
BackupDesc=Um eine vollständige Systemsicherung durchzuführen müssen Sie:
|
||||
BackupDesc2=* Eine Sicherung des Dokumentenverzeichnisses (<b>%s</b>), das alle hochgeladenen und erzeugte Dateien beinhaltet, erzeugen (z.B. als zip-Archiv).
|
||||
|
|
@ -1092,7 +1092,7 @@ Permission536=Versteckte Services einsehen/verwalten
|
|||
Permission2411=Maßnahmen (Termine oder Aufgaben) Anderer einsehen
|
||||
Permission2412=Maßnahmen (Termine oder Aufgaben) Anderer erstellen/bearbeiten
|
||||
Permission2413=Maßnahmen (Termine oder Aufgaben) Anderer löschen
|
||||
DictionnaryStaff=Mitarbeiter
|
||||
DictionaryStaff=Mitarbeiter
|
||||
LocalTax1ManagementES=RE Management
|
||||
LocalTax1IsUsedDescES=Die RE Rate standardmäßig beim Erstellen Aussichten, Rechnungen, Bestellungen etc. folgen die aktive Standard-Regel: <br> Wenn te Käufer ist nicht unterworfen RE, RE standardmäßig = 0 ist. Ende der Regel. <br> Ist der Käufer unterzogen, um dann die RE RE standardmäßig. Ende der Regel. <br>
|
||||
LocalTax1IsNotUsedDescES=Standardmäßig werden die vorgeschlagenen RE 0 ist. Ende der Regel.
|
||||
|
|
|
|||
|
|
@ -457,7 +457,7 @@ TotalWoman=Vollständig
|
|||
TotalMan=Vollständig
|
||||
NeverReceived=Nie erhalten
|
||||
Canceled=Storniert
|
||||
YouCanChangeValuesForThisListFromDictionnarySetup=Sie können die Listenoptionen in den Wörterbuch-Einstellungen anpassen
|
||||
YouCanChangeValuesForThisListFromDictionarySetup=Sie können die Listenoptionen in den Wörterbuch-Einstellungen anpassen
|
||||
Color=Farbe
|
||||
Documents=Verknüpfte Dokumente
|
||||
Documents2=Dokumente
|
||||
|
|
|
|||
|
|
@ -43,8 +43,8 @@ SecuritySetup=Sicherheitseinstellungen
|
|||
ErrorModuleRequirePHPVersion=Fehler: Dieses Modul benötigt PHP Version %s oder höher
|
||||
ErrorModuleRequireDolibarrVersion=Fehler: Dieses Moduls erfordert Dolibarr Version %s oder höher
|
||||
ErrorDecimalLargerThanAreForbidden=Fehler: Eine höhere Genauigkeit als <b>%s</b> wird nicht unterstützt.
|
||||
DictionnarySetup=Wörterbucheinstellungen
|
||||
Dictionnary=Wörterbücher
|
||||
DictionarySetup=Wörterbucheinstellungen
|
||||
Dictionary=Wörterbücher
|
||||
# ErrorReservedTypeSystemSystemAuto=Value 'system' and 'systemauto' for type is reserved. You can use 'user' as value to add your own record
|
||||
ErrorCodeCantContainZero=Code darf keinen Wert 0 enthalten
|
||||
DisableJavascript=JavaScript- und Ajax-Funktionen deaktivieren
|
||||
|
|
@ -726,34 +726,34 @@ Permission54001=Drucken
|
|||
# Permission55002=Create/modify surveys
|
||||
# Permission59001=Read commercial margins
|
||||
# Permission59002=Define commercial margins
|
||||
DictionnaryCompanyType=Art des Unternehmens
|
||||
DictionnaryCompanyJuridicalType=Rechtsform
|
||||
DictionnaryProspectLevel=Geschäftsaussicht
|
||||
DictionnaryCanton=Bundesland
|
||||
DictionnaryRegion=Regionen
|
||||
DictionnaryCountry=Länder
|
||||
DictionnaryCurrency=Währungen
|
||||
DictionnaryCivility=Anredeformen
|
||||
DictionnaryActions=Maßnahmen
|
||||
DictionnarySocialContributions=Sozialbeitragstypen
|
||||
DictionnaryVAT=MwSt.-Sätze
|
||||
# DictionnaryRevenueStamp=Amount of revenue stamps
|
||||
DictionnaryPaymentConditions=Zahlungsbedingungen
|
||||
DictionnaryPaymentModes=Zahlungsarten
|
||||
DictionnaryTypeContact=Kontaktarten
|
||||
DictionnaryEcotaxe=Ökosteuern (WEEE)
|
||||
DictionnaryPaperFormat=Papierformate
|
||||
DictionnaryFees=Gebührenarten
|
||||
DictionnarySendingMethods=Versandarten
|
||||
DictionnaryStaff=Mitarbeiter
|
||||
DictionnaryAvailability=Lieferverzug
|
||||
DictionnaryOrderMethods=Bestellmethoden
|
||||
DictionnarySource=Quelle der Angebote/Bestellungen
|
||||
DictionnaryAccountancyplan=Kontenplan
|
||||
DictionnaryAccountancysystem=Kontenplan Modul
|
||||
DictionaryCompanyType=Art des Unternehmens
|
||||
DictionaryCompanyJuridicalType=Rechtsform
|
||||
DictionaryProspectLevel=Geschäftsaussicht
|
||||
DictionaryCanton=Bundesland
|
||||
DictionaryRegion=Regionen
|
||||
DictionaryCountry=Länder
|
||||
DictionaryCurrency=Währungen
|
||||
DictionaryCivility=Anredeformen
|
||||
DictionaryActions=Maßnahmen
|
||||
DictionarySocialContributions=Sozialbeitragstypen
|
||||
DictionaryVAT=MwSt.-Sätze
|
||||
# DictionaryRevenueStamp=Amount of revenue stamps
|
||||
DictionaryPaymentConditions=Zahlungsbedingungen
|
||||
DictionaryPaymentModes=Zahlungsarten
|
||||
DictionaryTypeContact=Kontaktarten
|
||||
DictionaryEcotaxe=Ökosteuern (WEEE)
|
||||
DictionaryPaperFormat=Papierformate
|
||||
DictionaryFees=Gebührenarten
|
||||
DictionarySendingMethods=Versandarten
|
||||
DictionaryStaff=Mitarbeiter
|
||||
DictionaryAvailability=Lieferverzug
|
||||
DictionaryOrderMethods=Bestellmethoden
|
||||
DictionarySource=Quelle der Angebote/Bestellungen
|
||||
DictionaryAccountancyplan=Kontenplan
|
||||
DictionaryAccountancysystem=Kontenplan Modul
|
||||
SetupSaved=Setup gespeichert
|
||||
BackToModuleList=Zurück zur Modulübersicht
|
||||
BackToDictionnaryList=Zurück zur Wörterbuchübersicht
|
||||
BackToDictionaryList=Zurück zur Wörterbuchübersicht
|
||||
VATReceivedOnly=Nur Mehrwertsteuererhalt
|
||||
VATManagement=MwSt-Verwaltung
|
||||
VATIsUsedDesc=Der standardmäßige MwSt.-Satz für die Erstellung von Leads, Rechnungen, Bestellungen, etc. folgt der folgenden, aktiven Regel:<br>Ist der Verkäufer mehrwertsteuerpflichtig, ist die MwSt. standardmäßig 0. Ende der Regel.<br>Ist das Verkaufsland gleich dem Einkaufsland, ist die MwSt. standardmäßig die MwSt. des Produkts im Verkaufsland. Ende der Regel. <br>Sind Verkäufer und Käufer beide aus Europäischen Mitgliedsstaaten und die Produkte physisch transportfähig (Auto, Schiff, Flugzeug), ist die MwSt. standardmäßig 0. (Die MwSt. sollte durch den Käufer beim eigenen Zollamt entrichtet werden, nicht durch den Verkäufer. Ende der Regel.<br>Sind Verkäufer und Käufer beide aus Europäischen Mitgliedsstaaten, der Käufer jedoch kein Unternehmen so ist die MwSt. standardmäßig die MwSt. des verkauften Produkts. Ende der Regel.<br>Sind Verkäufer und Käufer beide Unternehmen im Europäischen Gemeinschaftsraum, so ist die MwSt. standardmäßig 0. Ende der Regel.<br>Trifft keine der obigen Regeln zu, ist die MwSt. standardmäßig 0.
|
||||
|
|
@ -921,7 +921,7 @@ TriggerDisabledAsModuleDisabled=Trigger in dieser Datei sind durch das übergeor
|
|||
TriggerAlwaysActive=Trigger in dieser Datei sind unabhängig der Modulkonfiguration immer aktiviert.
|
||||
TriggerActiveAsModuleActive=Trigger in dieser Datei sind durch das übergeordnete Modul <b>%s</b> aktiviert.
|
||||
GeneratedPasswordDesc=Definieren Sie hier das Schema nach dem automatisch generierte Passwörter erstellt werden sollen.
|
||||
DictionnaryDesc=Definieren Sie hier alle Referenzwerte. Sie können vordefinierte Werte mit ihren eigenen ergänzen.
|
||||
DictionaryDesc=Definieren Sie hier alle Referenzwerte. Sie können vordefinierte Werte mit ihren eigenen ergänzen.
|
||||
ConstDesc=Auf dieser Seite können Sie alle, auf bisherigen Seiten nicht aufgeführte, Parameter einstellen. Dieser Bereich ist primär für fortgeschrittene Entwickler und zur Fehlersuche gedacht.
|
||||
OnceSetupFinishedCreateUsers=Achtung: Sie sind derzeit als Systemadministrator angemeldet. Administratorenkonten dienen primär zur Einrichtung des Systems, für die reguläre Verwendung sollten Sie ein herkömmliches Benutzerkonto unter 'Benutzer&Gruppen' anlegen und verwenden.
|
||||
MiscellaneousDesc=Definieren Sie hier alle sonstigen Sicherheitseinstellungen
|
||||
|
|
@ -1425,7 +1425,7 @@ AccountancyCode=Rechnungswesen-Code
|
|||
AgendaSetup=Agenda-Moduleinstellungen
|
||||
PasswordTogetVCalExport=Passwort für den VCal-Export
|
||||
PastDelayVCalExport=Keine Termine exportieren die älter sind als
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionnary->llx_c_actioncomm)
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionary->llx_c_actioncomm)
|
||||
##### ClickToDial #####
|
||||
ClickToDialDesc=Dieses Modul fügt ein Symbols nach Telefonnummern ein, bei dessen der Server unter der unten definierten URL aufgerufen wird. Diese Funktion können Sie dazu verwenden, ein Callcenter-System innerhalb dolibarrs aufzurufen, das eine Telefonnummer z.B. über ein SIP-System, für Sie wählt.
|
||||
##### Point Of Sales (CashDesk) #####
|
||||
|
|
|
|||
|
|
@ -102,14 +102,14 @@ NbOfLinesImported=Anzahl der erfolgreich importierten Zeilen: <b>%s</b>.
|
|||
DataComeFromNoWhere=Der einzufügende Wert kommt nicht aus der Quelldatei.
|
||||
DataComeFromFileFieldNb=Der einzufügende Wert stammt aus Feldnummer <b>%s</b> der Quelldatei.
|
||||
DataComeFromIdFoundFromRef=Der Wert aus Feldnummer <b>%s</b> der Quelldatei wird zur Auffindung der ID des zu verwendenden Elternelements verwendet (entsprechend muss das Objekt <b>%s</b> mit der Nummer aus der Quelldatei im System vorhanden sein).
|
||||
DataComeFromIdFoundFromCodeId=Der Eintrag aus der Quelldatei mit der Feldnummer <b>%s</b>, wird zur Referenzierung verwendet. Dazu muss die ID des Objektes in Dictionnary <b>%s</b> existieren. Ist Ihnen die ID bekannt, dann können Sie auch dies in der Sourcedatei - anstelle des Codes - eintragen. Der Import sollte in beiden Fällen funktionieren.
|
||||
DataComeFromIdFoundFromCodeId=Der Eintrag aus der Quelldatei mit der Feldnummer <b>%s</b>, wird zur Referenzierung verwendet. Dazu muss die ID des Objektes in Dictionary <b>%s</b> existieren. Ist Ihnen die ID bekannt, dann können Sie auch dies in der Sourcedatei - anstelle des Codes - eintragen. Der Import sollte in beiden Fällen funktionieren.
|
||||
DataIsInsertedInto=Die Quelldateidaten werden in folgendes Feld eingefügt:
|
||||
DataIDSourceIsInsertedInto=Die ID des mittels Quelldatei ermittelten Elternelements werden in folgendes Feld eingefügt:
|
||||
DataCodeIDSourceIsInsertedInto=Die gefundene, übergeordnete ID aus dem Code wird in das folgende Feld eingefügt:
|
||||
SourceRequired=Datenwert erforderlich
|
||||
SourceExample=Beispiel möglicher Datenwerte
|
||||
ExampleAnyRefFoundIntoElement=Ein Referenz für das Element <b>%s</b> gefunden
|
||||
ExampleAnyCodeOrIdFoundIntoDictionnary=Ein Code (oder eine ID) wurde im Dictionnary <b>%s</b> gefunden
|
||||
ExampleAnyCodeOrIdFoundIntoDictionary=Ein Code (oder eine ID) wurde im Dictionary <b>%s</b> gefunden
|
||||
CSVFormatDesc=<b>Comma Separated Value</b> Format (.csv). <br> Dies ist ein Textdatei-Format, bei dem einzelne Spalten durch ein Trennzeichen [ %s ] getrennt sind. Wird innerhalb eines Feldes das Trennzeichen gefunden, wird der Wert des entsprechenden Feldes über ein Rundungszeichen [ %s ] gerundet. Das Escape-Zeichen für die Rundung ist [ %s ].
|
||||
Excel95FormatDesc=<b>Excel</b> Dateiformat (.xls)<br>Dies ist das Excel 95 Format (BIFF5).
|
||||
Excel2007FormatDesc=<b>Excel</b> Dateiformat (.xlsx)<br>Dies ist das Excel 2007 Format (XML).
|
||||
|
|
|
|||
|
|
@ -572,7 +572,7 @@ TotalWoman=Vollständig
|
|||
TotalMan=Vollständig
|
||||
NeverReceived=Nie erhalten
|
||||
Canceled=Storniert
|
||||
YouCanChangeValuesForThisListFromDictionnarySetup=Sie können die Listenoptionen in den Wörterbuch-Einstellungen anpassen
|
||||
YouCanChangeValuesForThisListFromDictionarySetup=Sie können die Listenoptionen in den Wörterbuch-Einstellungen anpassen
|
||||
Color=Farbe
|
||||
Documents=Verknüpfte Dokumente
|
||||
DocumentsNb=Verknüpfte Dateien (%s)
|
||||
|
|
|
|||
|
|
@ -43,8 +43,8 @@ SecuritySetup=Διαχείριση Ασφάλειας
|
|||
ErrorModuleRequirePHPVersion=Λάθος, αυτή η ενότητα απαιτεί έκδοση PHP %s ή μεγαλύτερη
|
||||
ErrorModuleRequireDolibarrVersion=Λάθος, αυτό το module απαιτεί Dolibarr έκδοση %s ή μεγαλύτερη
|
||||
ErrorDecimalLargerThanAreForbidden=Λάθος, μια διευκρίνιση μεγαλύτερη από <b>%s</b> δεν υποστηρίζεται.
|
||||
DictionnarySetup=Διαχείριση Λεξικού
|
||||
Dictionnary=Λεξικά
|
||||
DictionarySetup=Διαχείριση Λεξικού
|
||||
Dictionary=Λεξικά
|
||||
ErrorReservedTypeSystemSystemAuto=Αξία «system» και «systemauto» για τον τύπο είναι κατοχυρωμένα. Μπορείτε να χρησιμοποιήσετε το «χρήστη» ως αξία για να προσθέσετε το δικό σας μητρώο
|
||||
ErrorCodeCantContainZero=Ο κώδικας δεν μπορεί να περιέχει την τιμή 0
|
||||
DisableJavascript=Απενεργοποίηση συναρτήσεων JavaScript και Ajax
|
||||
|
|
@ -726,34 +726,34 @@ Permission55001=Διαβάστε τις έρευνες
|
|||
Permission55002=Δημιουργία/τροποποίηση ερευνών
|
||||
Permission59001=Δείτε τα εμπορικά περιθώρια
|
||||
Permission59002=Ορίστε τα εμπορικά περιθώρια
|
||||
DictionnaryCompanyType=Company types
|
||||
DictionnaryCompanyJuridicalType=Juridical kinds of company
|
||||
DictionnaryProspectLevel=Prospect potential level
|
||||
DictionnaryCanton=State/Cantons
|
||||
DictionnaryRegion=Περιοχές
|
||||
DictionnaryCountry=Χώρες
|
||||
DictionnaryCurrency=Νομίσματα
|
||||
DictionnaryCivility=Civility title
|
||||
DictionnaryActions=Type of agenda events
|
||||
DictionnarySocialContributions=Social contributions types
|
||||
DictionnaryVAT=Τιμές Φ.Π.Α.
|
||||
DictionnaryRevenueStamp=Amount of revenue stamps
|
||||
DictionnaryPaymentConditions=Payment terms
|
||||
DictionnaryPaymentModes=Τρόποι Πληρωμής
|
||||
DictionnaryTypeContact=Contact/Address types
|
||||
DictionnaryEcotaxe=Ecotax (WEEE)
|
||||
DictionnaryPaperFormat=Paper formats
|
||||
DictionnaryFees=Type of fees
|
||||
DictionnarySendingMethods=Sendings methods
|
||||
DictionnaryStaff=Προσωπικό
|
||||
DictionnaryAvailability=Καθυστέρηση παράδοσης
|
||||
DictionnaryOrderMethods=Παραγγελία μεθόδους
|
||||
DictionnarySource=Προέλευση των προτάσεων / εντολών
|
||||
DictionnaryAccountancyplan=Chart of accounts
|
||||
DictionnaryAccountancysystem=Models for chart of accounts
|
||||
DictionaryCompanyType=Company types
|
||||
DictionaryCompanyJuridicalType=Juridical kinds of company
|
||||
DictionaryProspectLevel=Prospect potential level
|
||||
DictionaryCanton=State/Cantons
|
||||
DictionaryRegion=Περιοχές
|
||||
DictionaryCountry=Χώρες
|
||||
DictionaryCurrency=Νομίσματα
|
||||
DictionaryCivility=Civility title
|
||||
DictionaryActions=Type of agenda events
|
||||
DictionarySocialContributions=Social contributions types
|
||||
DictionaryVAT=Τιμές Φ.Π.Α.
|
||||
DictionaryRevenueStamp=Amount of revenue stamps
|
||||
DictionaryPaymentConditions=Payment terms
|
||||
DictionaryPaymentModes=Τρόποι Πληρωμής
|
||||
DictionaryTypeContact=Contact/Address types
|
||||
DictionaryEcotaxe=Ecotax (WEEE)
|
||||
DictionaryPaperFormat=Paper formats
|
||||
DictionaryFees=Type of fees
|
||||
DictionarySendingMethods=Sendings methods
|
||||
DictionaryStaff=Προσωπικό
|
||||
DictionaryAvailability=Καθυστέρηση παράδοσης
|
||||
DictionaryOrderMethods=Παραγγελία μεθόδους
|
||||
DictionarySource=Προέλευση των προτάσεων / εντολών
|
||||
DictionaryAccountancyplan=Chart of accounts
|
||||
DictionaryAccountancysystem=Models for chart of accounts
|
||||
SetupSaved=Οι ρυθμίσεις αποθηκεύτηκαν
|
||||
BackToModuleList=Back to modules list
|
||||
BackToDictionnaryList=Back to dictionaries list
|
||||
BackToDictionaryList=Back to dictionaries list
|
||||
VATReceivedOnly=Special rate not charged
|
||||
VATManagement=Διαχείριση Φ.Π.Α.
|
||||
VATIsUsedDesc=The VAT rate by default when creating prospects, invoices, orders etc follow the active standard rule:<br>If the seller is not subjected to VAT, then VAT by default=0. End of rule.<br>If the (selling country= buying country), then the VAT by default=VAT of the product in the selling country. End of rule. <br>If seller and buyer in the European Community and goods are transport products (car, ship, plane), the default VAT=0 ( The VAT should be paid by the buyer at the customoffice of his country and not at the seller). End of rule.<br>If seller and buyer in the European Community and buyer is not a company, then the VAT by default=VAT of product sold. End of rule.<br>If seller and buyer in the European Community and buyer is a company, then the VAT by default=0. End of rule.<br>Else the proposed default VAT=0. End of rule.
|
||||
|
|
@ -921,7 +921,7 @@ TriggerDisabledAsModuleDisabled=Triggers in this file are disabled as module <b>
|
|||
TriggerAlwaysActive=Triggers in this file are always active, whatever are the activated Dolibarr modules.
|
||||
TriggerActiveAsModuleActive=Triggers in this file are active as module <b>%s</b> is enabled.
|
||||
GeneratedPasswordDesc=Define here which rule you want to use to generate new password if you ask to have auto generated password
|
||||
DictionnaryDesc=Define here all reference datas. You can complete predefined value with yours.
|
||||
DictionaryDesc=Define here all reference datas. You can complete predefined value with yours.
|
||||
ConstDesc=This page allows you to edit all other parameters not available in previous pages. They are reserved parameters for advanced developers or for troubleshouting.
|
||||
OnceSetupFinishedCreateUsers=Warning, you are a Dolibarr administrator user. Administrator users are used to setup Dolibarr. For a usual usage of Dolibarr, it is recommended to use a non administrator user created from Users & Groups menu.
|
||||
MiscellaneousDesc=Define here all other parameters related to security.
|
||||
|
|
@ -1425,7 +1425,7 @@ AccountancyCodeBuy=Purchase account. code
|
|||
AgendaSetup=Events and agenda module setup
|
||||
PasswordTogetVCalExport=Key to authorize export link
|
||||
PastDelayVCalExport=Do not export event older than
|
||||
AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionnary->llx_c_actioncomm)
|
||||
AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionary->llx_c_actioncomm)
|
||||
##### ClickToDial #####
|
||||
ClickToDialDesc=This module allows to add an icon after phone numbers. A click on this icon will call a server with a particular URL you define below. This can be used to call a call center system from Dolibarr that can call the phone number on a SIP system for example.
|
||||
##### Point Of Sales (CashDesk) #####
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ DataCodeIDSourceIsInsertedInto=Η ταυτότητα του γονέα που β
|
|||
SourceRequired=Data value is mandatory
|
||||
SourceExample=Example of possible data value
|
||||
ExampleAnyRefFoundIntoElement=Κάθε σχ βρέθηκαν για <b>%s</b> στοιχείο
|
||||
ExampleAnyCodeOrIdFoundIntoDictionnary=Κάθε κωδικός (ή id) βρέθηκαν σε dictionnary <b>%s</b>
|
||||
ExampleAnyCodeOrIdFoundIntoDictionary=Κάθε κωδικός (ή id) βρέθηκαν σε dictionnary <b>%s</b>
|
||||
CSVFormatDesc=<b>Comma Separated Value</b> file format (.csv).<br>This is a text file format where fields are separated by separator [ %s ]. If separator is found inside a field content, field is rounded by round character [ %s ]. Escape character to escape round character is [ %s ].
|
||||
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).
|
||||
|
|
|
|||
|
|
@ -572,7 +572,7 @@ TotalWoman=Συνολικές
|
|||
TotalMan=Συνολικοί
|
||||
NeverReceived=Δεν παραλήφθηκε
|
||||
Canceled=Ακυρώθηκε
|
||||
YouCanChangeValuesForThisListFromDictionnarySetup=You can change values for this list from menu setup - dictionnary
|
||||
YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionnary
|
||||
Color=Χρώμα
|
||||
Documents=Συνδεδεμένα Αρχεία
|
||||
DocumentsNb=Συνδεδεμένα Αρχεία (%s)
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
# Dolibarr language file - en_GB - admin
|
||||
DictionnaryVAT=VAT Rates
|
||||
DictionaryVAT=VAT Rates
|
||||
|
|
|
|||
|
|
@ -43,8 +43,8 @@ SecuritySetup=Security setup
|
|||
ErrorModuleRequirePHPVersion=Error, this module requires PHP version %s or higher
|
||||
ErrorModuleRequireDolibarrVersion=Error, this module requires Dolibarr version %s or higher
|
||||
ErrorDecimalLargerThanAreForbidden=Error, a precision higher than <b>%s</b> is not supported.
|
||||
DictionnarySetup=Dictionary setup
|
||||
Dictionnary=Dictionaries
|
||||
DictionarySetup=Dictionary setup
|
||||
Dictionary=Dictionaries
|
||||
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
|
||||
DisableJavascript=Disable JavaScript and Ajax functions
|
||||
|
|
@ -726,34 +726,34 @@ Permission55001=Read surveys
|
|||
Permission55002=Create/modify surveys
|
||||
Permission59001=Read commercial margins
|
||||
Permission59002=Define commercial margins
|
||||
DictionnaryCompanyType=Company types
|
||||
DictionnaryCompanyJuridicalType=Juridical kinds of company
|
||||
DictionnaryProspectLevel=Prospect potential level
|
||||
DictionnaryCanton=State/Cantons
|
||||
DictionnaryRegion=Regions
|
||||
DictionnaryCountry=Countries
|
||||
DictionnaryCurrency=Currencies
|
||||
DictionnaryCivility=Civility title
|
||||
DictionnaryActions=Type of agenda events
|
||||
DictionnarySocialContributions=Social contributions types
|
||||
DictionnaryVAT=VAT Rates or Sales Tax Rates
|
||||
DictionnaryRevenueStamp=Amount of revenue stamps
|
||||
DictionnaryPaymentConditions=Payment terms
|
||||
DictionnaryPaymentModes=Payment modes
|
||||
DictionnaryTypeContact=Contact/Address types
|
||||
DictionnaryEcotaxe=Ecotax (WEEE)
|
||||
DictionnaryPaperFormat=Paper formats
|
||||
DictionnaryFees=Type of fees
|
||||
DictionnarySendingMethods=Shipping methods
|
||||
DictionnaryStaff=Staff
|
||||
DictionnaryAvailability=Delivery delay
|
||||
DictionnaryOrderMethods=Ordering methods
|
||||
DictionnarySource=Origin of proposals/orders
|
||||
DictionnaryAccountancyplan=Chart of accounts
|
||||
DictionnaryAccountancysystem=Models for chart of accounts
|
||||
DictionaryCompanyType=Company types
|
||||
DictionaryCompanyJuridicalType=Juridical kinds of company
|
||||
DictionaryProspectLevel=Prospect potential level
|
||||
DictionaryCanton=State/Cantons
|
||||
DictionaryRegion=Regions
|
||||
DictionaryCountry=Countries
|
||||
DictionaryCurrency=Currencies
|
||||
DictionaryCivility=Civility title
|
||||
DictionaryActions=Type of agenda events
|
||||
DictionarySocialContributions=Social contributions types
|
||||
DictionaryVAT=VAT Rates or Sales Tax Rates
|
||||
DictionaryRevenueStamp=Amount of revenue stamps
|
||||
DictionaryPaymentConditions=Payment terms
|
||||
DictionaryPaymentModes=Payment modes
|
||||
DictionaryTypeContact=Contact/Address types
|
||||
DictionaryEcotaxe=Ecotax (WEEE)
|
||||
DictionaryPaperFormat=Paper formats
|
||||
DictionaryFees=Type of fees
|
||||
DictionarySendingMethods=Shipping methods
|
||||
DictionaryStaff=Staff
|
||||
DictionaryAvailability=Delivery delay
|
||||
DictionaryOrderMethods=Ordering methods
|
||||
DictionarySource=Origin of proposals/orders
|
||||
DictionaryAccountancyplan=Chart of accounts
|
||||
DictionaryAccountancysystem=Models for chart of accounts
|
||||
SetupSaved=Setup saved
|
||||
BackToModuleList=Back to modules list
|
||||
BackToDictionnaryList=Back to dictionaries list
|
||||
BackToDictionaryList=Back to dictionaries list
|
||||
VATReceivedOnly=Special rate not charged
|
||||
VATManagement=VAT Management
|
||||
VATIsUsedDesc=The VAT rate by default when creating prospects, invoices, orders etc follow the active standard rule:<br>If the seller is not subjected to VAT, then VAT by default=0. End of rule.<br>If the (selling country= buying country), then the VAT by default=VAT of the product in the selling country. End of rule. <br>If seller and buyer in the European Community and goods are transport products (car, ship, plane), the default VAT=0 ( The VAT should be paid by the buyer at the customoffice of his country and not at the seller). End of rule.<br>If seller and buyer in the European Community and buyer is not a company, then the VAT by default=VAT of product sold. End of rule.<br>If seller and buyer in the European Community and buyer is a company, then the VAT by default=0. End of rule.<br>Else the proposed default VAT=0. End of rule.
|
||||
|
|
@ -921,7 +921,7 @@ TriggerDisabledAsModuleDisabled=Triggers in this file are disabled as module <b>
|
|||
TriggerAlwaysActive=Triggers in this file are always active, whatever are the activated Dolibarr modules.
|
||||
TriggerActiveAsModuleActive=Triggers in this file are active as module <b>%s</b> is enabled.
|
||||
GeneratedPasswordDesc=Define here which rule you want to use to generate new password if you ask to have auto generated password
|
||||
DictionnaryDesc=Define here all reference datas. You can complete predefined value with yours.
|
||||
DictionaryDesc=Define here all reference datas. You can complete predefined value with yours.
|
||||
ConstDesc=This page allows you to edit all other parameters not available in previous pages. They are reserved parameters for advanced developers or for troubleshouting.
|
||||
OnceSetupFinishedCreateUsers=Warning, you are a Dolibarr administrator user. Administrator users are used to setup Dolibarr. For a usual usage of Dolibarr, it is recommended to use a non administrator user created from Users & Groups menu.
|
||||
MiscellaneousDesc=Define here all other parameters related to security.
|
||||
|
|
@ -1426,7 +1426,7 @@ AccountancyCodeBuy=Purchase account. code
|
|||
AgendaSetup=Events and agenda module setup
|
||||
PasswordTogetVCalExport=Key to authorize export link
|
||||
PastDelayVCalExport=Do not export event older than
|
||||
AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionnary->llx_c_actioncomm)
|
||||
AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionary->llx_c_actioncomm)
|
||||
##### ClickToDial #####
|
||||
ClickToDialDesc=This module allows to add an icon after phone numbers. A click on this icon will call a server with a particular URL you define below. This can be used to call a call center system from Dolibarr that can call the phone number on a SIP system for example.
|
||||
##### Point Of Sales (CashDesk) #####
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ DataCodeIDSourceIsInsertedInto=The id of parent line found from code, will be in
|
|||
SourceRequired=Data value is mandatory
|
||||
SourceExample=Example of possible data value
|
||||
ExampleAnyRefFoundIntoElement=Any ref found for element <b>%s</b>
|
||||
ExampleAnyCodeOrIdFoundIntoDictionnary=Any code (or id) found into dictionnary <b>%s</b>
|
||||
ExampleAnyCodeOrIdFoundIntoDictionary=Any code (or id) found into dictionnary <b>%s</b>
|
||||
CSVFormatDesc=<b>Comma Separated Value</b> file format (.csv).<br>This is a text file format where fields are separated by separator [ %s ]. If separator is found inside a field content, field is rounded by round character [ %s ]. Escape character to escape round character is [ %s ].
|
||||
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).
|
||||
|
|
|
|||
|
|
@ -572,7 +572,7 @@ TotalWoman=Total
|
|||
TotalMan=Total
|
||||
NeverReceived=Never received
|
||||
Canceled=Canceled
|
||||
YouCanChangeValuesForThisListFromDictionnarySetup=You can change values for this list from menu setup - dictionnary
|
||||
YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionnary
|
||||
Color=Color
|
||||
Documents=Linked files
|
||||
DocumentsNb=Linked files (%s)
|
||||
|
|
|
|||
|
|
@ -43,8 +43,8 @@ SecuritySetup=Configuración de la seguridad
|
|||
ErrorModuleRequirePHPVersion=Error, este módulo requiere una versión %s o superior de PHP
|
||||
ErrorModuleRequireDolibarrVersion=Error, este módulo requiere una versión %s o superior de Dolibarr
|
||||
ErrorDecimalLargerThanAreForbidden=Error, las precisiones superiores a <b>%s</b> no están soportadas.
|
||||
DictionnarySetup=Diccionarios
|
||||
Dictionnary=Diccionarios
|
||||
DictionarySetup=Diccionarios
|
||||
Dictionary=Diccionarios
|
||||
ErrorReservedTypeSystemSystemAuto=El uso del tipo 'system' y 'systemauto' está reservado. Puede utilizar 'user' como valor para añadir su propio registro
|
||||
ErrorCodeCantContainZero=El código no puede contener el valor 0
|
||||
DisableJavascript=Desactivar las funciones Javascript y AJAX
|
||||
|
|
@ -726,34 +726,34 @@ Permission55001=Leer encuestas
|
|||
Permission55002=Crear/modificar encuestas
|
||||
Permission59001=Leer márgenes comerciales
|
||||
Permission59002=Definir márgenes comerciales
|
||||
DictionnaryCompanyType=Tipos de empresa
|
||||
DictionnaryCompanyJuridicalType=Formas jurídicas
|
||||
DictionnaryProspectLevel=Perspectiva nivel cliente potencial
|
||||
DictionnaryCanton=Departamentos/Provincias/Zonas
|
||||
DictionnaryRegion=Regiones
|
||||
DictionnaryCountry=Países
|
||||
DictionnaryCurrency=Monedas
|
||||
DictionnaryCivility=Títulos de cortesía
|
||||
DictionnaryActions=Tipos de eventos de la agenda
|
||||
DictionnarySocialContributions=Tipos de cargas sociales
|
||||
DictionnaryVAT=Tasa de IVA (Impuesto sobre ventas en EEUU)
|
||||
DictionnaryRevenueStamp=Importes de sellos fiscales
|
||||
DictionnaryPaymentConditions=Condiciones de pago
|
||||
DictionnaryPaymentModes=Modos de pago
|
||||
DictionnaryTypeContact=Tipos de contactos/direcciones
|
||||
DictionnaryEcotaxe=Baremos CEcoParticipación (DEEE)
|
||||
DictionnaryPaperFormat=Formatos de papel
|
||||
DictionnaryFees=Tipos de desplazamientos y honorarios
|
||||
DictionnarySendingMethods=Métodos de expedición
|
||||
DictionnaryStaff=Empleados
|
||||
DictionnaryAvailability=Tiempos de entrega
|
||||
DictionnaryOrderMethods=Métodos de pedido
|
||||
DictionnarySource=Orígenes de presupuestos/pedidos
|
||||
DictionnaryAccountancyplan=Plan contable
|
||||
DictionnaryAccountancysystem=Modelos de planes contables
|
||||
DictionaryCompanyType=Tipos de empresa
|
||||
DictionaryCompanyJuridicalType=Formas jurídicas
|
||||
DictionaryProspectLevel=Perspectiva nivel cliente potencial
|
||||
DictionaryCanton=Departamentos/Provincias/Zonas
|
||||
DictionaryRegion=Regiones
|
||||
DictionaryCountry=Países
|
||||
DictionaryCurrency=Monedas
|
||||
DictionaryCivility=Títulos de cortesía
|
||||
DictionaryActions=Tipos de eventos de la agenda
|
||||
DictionarySocialContributions=Tipos de cargas sociales
|
||||
DictionaryVAT=Tasa de IVA (Impuesto sobre ventas en EEUU)
|
||||
DictionaryRevenueStamp=Importes de sellos fiscales
|
||||
DictionaryPaymentConditions=Condiciones de pago
|
||||
DictionaryPaymentModes=Modos de pago
|
||||
DictionaryTypeContact=Tipos de contactos/direcciones
|
||||
DictionaryEcotaxe=Baremos CEcoParticipación (DEEE)
|
||||
DictionaryPaperFormat=Formatos de papel
|
||||
DictionaryFees=Tipos de desplazamientos y honorarios
|
||||
DictionarySendingMethods=Métodos de expedición
|
||||
DictionaryStaff=Empleados
|
||||
DictionaryAvailability=Tiempos de entrega
|
||||
DictionaryOrderMethods=Métodos de pedido
|
||||
DictionarySource=Orígenes de presupuestos/pedidos
|
||||
DictionaryAccountancyplan=Plan contable
|
||||
DictionaryAccountancysystem=Modelos de planes contables
|
||||
SetupSaved=Configuración guardada
|
||||
BackToModuleList=Volver a la lista de módulos
|
||||
BackToDictionnaryList=Volver a la lista de diccionarios
|
||||
BackToDictionaryList=Volver a la lista de diccionarios
|
||||
VATReceivedOnly=Impuestos especiales no facturables
|
||||
VATManagement=Gestión IVA
|
||||
VATIsUsedDesc=El tipo de IVA propuesto por defecto en las creaciones de presupuestos, facturas, pedidos, etc. Responde a la siguiente regla:<br>Si el vendedor no está sujeto a IVA, IVA por defecto=0. Final de regla.<br>Si el país del vendedor= país del comprador entonces IVA por defecto=IVA del producto vendido. Final de regla.<br>Si vendedor y comprador residen en la Comunidad Europea y el bien vendido= nuevo medio de transportes (auto, barco, avión), IVA por defecto=0 (el IVA debe ser pagado por comprador a la hacienda pública de su país y no al vendedor). Final de regla<br>Si vendedor y comprador residen en la Comunidad Europea y comprador= particular o empresa sin NIF intracomunitario entonces IVA por defecto=IVA del producto vendido. Final de regla.<br>Si vendedor y comprador residen en la Comunidad Europea y comprador= empresa con NIF intracomunitario entonces IVA por defecto=0. Final de regla.<br>Si no, IVA propuesto por defecto=0. Final de regla.<br>
|
||||
|
|
@ -921,7 +921,7 @@ TriggerDisabledAsModuleDisabled=Triggers de este archivo desactivados ya que el
|
|||
TriggerAlwaysActive=Triggers de este archivo siempre activos, ya que los módulos Dolibarr relacionados están activados
|
||||
TriggerActiveAsModuleActive=Triggers de este archivo activos ya que el módulo <b>%s</b> está activado
|
||||
GeneratedPasswordDesc=Indique aquí que norma quiere utilizar para generar las contraseñas cuando quiera generar una nueva contraseña
|
||||
DictionnaryDesc=Indique aquí los datos de referencia. Puede completar/modificar los datos predefinidos con los suyos.
|
||||
DictionaryDesc=Indique aquí los datos de referencia. Puede completar/modificar los datos predefinidos con los suyos.
|
||||
ConstDesc=Cualquier otro parámetro no editable en las páginas anteriores
|
||||
OnceSetupFinishedCreateUsers=Atención, está bajo una cuenta de administrador de Dolibarr. Los administradores se utilizan para configurar a Dolibarr. Para un uso corriente de Dolibarr, se recomienda utilizar una cuenta no administrador creada desde el menú "Usuarios y grupos"
|
||||
MiscellaneousDesc=Defina aquí los otros parámetros relacionados con la seguridad.
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ DataCodeIDSourceIsInsertedInto=El id de la línea padre encontrada a partir del
|
|||
SourceRequired=Datos de origen obligatorios
|
||||
SourceExample=Ejemplo de datos de origen posibles
|
||||
ExampleAnyRefFoundIntoElement=Todas las referencias encontradas para los elementos <b>%s</b>
|
||||
ExampleAnyCodeOrIdFoundIntoDictionnary=Todos los códigos (o id) encontrados en el diccionario <b>%s</b>
|
||||
ExampleAnyCodeOrIdFoundIntoDictionary=Todos los códigos (o id) encontrados en el diccionario <b>%s</b>
|
||||
CSVFormatDesc=Archivo con formato <b>Valores separados por coma</b> (.csv).<br>Es un fichero con formato de texto en el que los campos son separados por el carácter [ %s ]. Si el separador se encuentra en el contenido de un campo, El campo debe de estar acotado por el carácter [ %s ]. El carácter de escape para incluir un carácter de entorno en un dato es [ %s ].
|
||||
Excel95FormatDesc=Archivo con formato <b>Excel</b> (.xls)<br>Este es el formato nativo de Excel 95 (BIFF5).
|
||||
Excel2007FormatDesc=Archivo con formato <b>Excel</b> (.xlsx)<br>Este es el formato nativo de Excel 2007 (SpreadsheetML).
|
||||
|
|
|
|||
|
|
@ -572,7 +572,7 @@ TotalWoman=Total
|
|||
TotalMan=Total
|
||||
NeverReceived=Nunca recibido
|
||||
Canceled=Cancelado
|
||||
YouCanChangeValuesForThisListFromDictionnarySetup=Puede cambiar estos valores en el menú configuración->diccionarios
|
||||
YouCanChangeValuesForThisListFromDictionarySetup=Puede cambiar estos valores en el menú configuración->diccionarios
|
||||
Color=Color
|
||||
Documents=Documentos
|
||||
DocumentsNb=archivos adjuntos (%s)
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
Permission91=Consultar impuestos e ISV
|
||||
Permission92=Crear/modificar impuestos e ISV
|
||||
Permission93=Eliminar impuestos e ISV
|
||||
DictionnaryVAT=Tasa de ISV (Impuesto sobre ventas en EEUU)
|
||||
DictionaryVAT=Tasa de ISV (Impuesto sobre ventas en EEUU)
|
||||
VATManagement=Gestión ISV
|
||||
VATIsUsedDesc=El tipo de ISV propuesto por defecto en las creaciones de presupuestos, facturas, pedidos, etc. Responde a la siguiente regla:<br>Si el vendedor no está sujeto a ISV, ISV por defecto=0. Final de regla.<br>Si el país del vendedor= país del comprador entonces ISV por defecto=ISV del producto vendido. Final de regla.<br>Si vendedor y comprador residen en la Comunidad Europea y el bien vendido= nuevo medio de transportes (auto, barco, avión), ISV por defecto=0 (el ISV debe ser pagado por comprador a la hacienda pública de su país y no al vendedor). Final de regla<br>Si vendedor y comprador residen en la Comunidad Europea y comprador= particular o empresa sin NIF intracomunitario entonces ISV por defecto=ISV del producto vendido. Final de regla.<br>Si vendedor y comprador residen en la Comunidad Europea y comprador= empresa con NIF intracomunitario entonces ISV por defecto=0. Final de regla.<br>Si no, ISV propuesto por defecto=0. Final de regla.<br>
|
||||
VATIsNotUsedDesc=El tipo de ISV propuesto por defecto es 0. Este es el caso de asociaciones, particulares o algunas pequeñas sociedades.
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
Permission91=Consultar impuestos e IGV
|
||||
Permission92=Crear/modificar impuestos e IGV
|
||||
Permission93=Eliminar impuestos e IGV
|
||||
DictionnaryVAT=Tasa de IGV (Impuesto sobre ventas en EEUU)
|
||||
DictionaryVAT=Tasa de IGV (Impuesto sobre ventas en EEUU)
|
||||
VATManagement=Gestión IGV
|
||||
VATIsUsedDesc=El tipo de IGV propuesto por defecto en las creaciones de presupuestos, facturas, pedidos, etc. Responde a la siguiente regla:<br>Si el vendedor no está sujeto a IVU, IVU por defecto=0. Final de regla.<br>Si el país del vendedor= país del comprador entonces IVU por defecto=IVU del producto vendido. Final de regla.<br>Si vendedor y comprador residen en la Comunidad Europea y el bien vendido= nuevo medio de transportes (auto, barco, avión), IVU por defecto=0 (el IVU debe ser pagado por comprador a la hacienda pública de su país y no al vendedor). Final de regla<br>Si vendedor y comprador residen en la Comunidad Europea y comprador= particular o empresa sin NIF intracomunitario entonces IVU por defecto=IVU del producto vendido. Final de regla.<br>Si vendedor y comprador residen en la Comunidad Europea y comprador= empresa con NIF intracomunitario entonces IVU por defecto=0. Final de regla.<br>Si no, IVU propuesto por defecto=0. Final de regla.<br>
|
||||
VATIsNotUsedDesc=El tipo de IGV propuesto por defecto es 0. Este es el caso de asociaciones, particulares o algunas pequeñas sociedades.
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
Permission91=Consultar impuestos e IVU
|
||||
Permission92=Crear/modificar impuestos e IVU
|
||||
Permission93=Eliminar impuestos e IVU
|
||||
DictionnaryVAT=Tasa de IVU (Impuesto sobre ventas en EEUU)
|
||||
DictionaryVAT=Tasa de IVU (Impuesto sobre ventas en EEUU)
|
||||
VATManagement=Gestión IVU
|
||||
VATIsUsedDesc=El tipo de IVU propuesto por defecto en las creaciones de presupuestos, facturas, pedidos, etc. Responde a la siguiente regla:<br>Si el vendedor no está sujeto a IVU, IVU por defecto=0. Final de regla.<br>Si el país del vendedor= país del comprador entonces IVU por defecto=IVU del producto vendido. Final de regla.<br>Si vendedor y comprador residen en la Comunidad Europea y el bien vendido= nuevo medio de transportes (auto, barco, avión), IVU por defecto=0 (el IVU debe ser pagado por comprador a la hacienda pública de su país y no al vendedor). Final de regla<br>Si vendedor y comprador residen en la Comunidad Europea y comprador= particular o empresa sin NIF intracomunitario entonces IVU por defecto=IVU del producto vendido. Final de regla.<br>Si vendedor y comprador residen en la Comunidad Europea y comprador= empresa con NIF intracomunitario entonces IVU por defecto=0. Final de regla.<br>Si no, IVU propuesto por defecto=0. Final de regla.<br>
|
||||
VATIsNotUsedDesc=El tipo de IVU propuesto por defecto es 0. Este es el caso de asociaciones, particulares o algunas pequeñas sociedades.
|
||||
|
|
|
|||
|
|
@ -43,8 +43,8 @@ SecuritySetup=Turvaseaded
|
|||
ErrorModuleRequirePHPVersion=Viga: see moodul nõuab PHP versiooni %s või kõrgemat
|
||||
ErrorModuleRequireDolibarrVersion=Viga: see moodul nõuab Dolibarri versiooni %s või kõrgemat
|
||||
ErrorDecimalLargerThanAreForbidden=Viga, suurem täpsus kui <b>%s</b> ei ole toetatud.
|
||||
DictionnarySetup=Sõnastiku seadistamine
|
||||
Dictionnary=Sõnastikud
|
||||
DictionarySetup=Sõnastiku seadistamine
|
||||
Dictionary=Sõnastikud
|
||||
ErrorReservedTypeSystemSystemAuto=Tüübi väärtused 'system' ja 'systemauto' on reserveeritud. Omaloodud kirje väärtuseks võib kasutada väärtust 'user'.
|
||||
ErrorCodeCantContainZero=Kood ei või sisaldada väärtust 0
|
||||
DisableJavascript=Keela JavaScript ja Ajax funktsioonid
|
||||
|
|
@ -726,34 +726,34 @@ Permission55001=Küsitluste vaatamine
|
|||
Permission55002=Küsitluste loomine/muutmine
|
||||
# Permission59001=Read commercial margins
|
||||
# Permission59002=Define commercial margins
|
||||
DictionnaryCompanyType=Ettevõtete tüübid
|
||||
DictionnaryCompanyJuridicalType=Ettevõtete juriidilised liigid
|
||||
DictionnaryProspectLevel=Huvilise potentsiaal
|
||||
DictionnaryCanton=Osariik/kantonid
|
||||
DictionnaryRegion=Regioonid
|
||||
DictionnaryCountry=Riigid
|
||||
DictionnaryCurrency=Valuutad
|
||||
DictionnaryCivility=Pöördumise tiitel
|
||||
DictionnaryActions=Päevakava tegevuste liigid
|
||||
DictionnarySocialContributions=Sotsiaalmaksu liigid
|
||||
DictionnaryVAT=Käibemaksu või müügimaksu määrad
|
||||
DictionnaryRevenueStamp=Maksumärkide kogus
|
||||
DictionnaryPaymentConditions=Maksetingimused
|
||||
DictionnaryPaymentModes=Maksemoodused
|
||||
DictionnaryTypeContact=Kontaktide/Aadresside liigid
|
||||
DictionnaryEcotaxe=Keskkonnamaks (WEEE)
|
||||
DictionnaryPaperFormat=Paberiformaadid
|
||||
DictionnaryFees=Lisatasude liigid
|
||||
DictionnarySendingMethods=Saatmise meetodid
|
||||
DictionnaryStaff=Personal
|
||||
DictionnaryAvailability=Saatmise viivitus
|
||||
DictionnaryOrderMethods=Tellimise meetodid
|
||||
DictionnarySource=Pakkumiste/tellimuste päritolu
|
||||
DictionnaryAccountancyplan=Kontoplaan
|
||||
DictionnaryAccountancysystem=Kontoplaani mudelid
|
||||
DictionaryCompanyType=Ettevõtete tüübid
|
||||
DictionaryCompanyJuridicalType=Ettevõtete juriidilised liigid
|
||||
DictionaryProspectLevel=Huvilise potentsiaal
|
||||
DictionaryCanton=Osariik/kantonid
|
||||
DictionaryRegion=Regioonid
|
||||
DictionaryCountry=Riigid
|
||||
DictionaryCurrency=Valuutad
|
||||
DictionaryCivility=Pöördumise tiitel
|
||||
DictionaryActions=Päevakava tegevuste liigid
|
||||
DictionarySocialContributions=Sotsiaalmaksu liigid
|
||||
DictionaryVAT=Käibemaksu või müügimaksu määrad
|
||||
DictionaryRevenueStamp=Maksumärkide kogus
|
||||
DictionaryPaymentConditions=Maksetingimused
|
||||
DictionaryPaymentModes=Maksemoodused
|
||||
DictionaryTypeContact=Kontaktide/Aadresside liigid
|
||||
DictionaryEcotaxe=Keskkonnamaks (WEEE)
|
||||
DictionaryPaperFormat=Paberiformaadid
|
||||
DictionaryFees=Lisatasude liigid
|
||||
DictionarySendingMethods=Saatmise meetodid
|
||||
DictionaryStaff=Personal
|
||||
DictionaryAvailability=Saatmise viivitus
|
||||
DictionaryOrderMethods=Tellimise meetodid
|
||||
DictionarySource=Pakkumiste/tellimuste päritolu
|
||||
DictionaryAccountancyplan=Kontoplaan
|
||||
DictionaryAccountancysystem=Kontoplaani mudelid
|
||||
SetupSaved=Seadistused salvestatud
|
||||
BackToModuleList=Tagasi moodulite nimekirja
|
||||
BackToDictionnaryList=Tagasi sõnastike nimekirja
|
||||
BackToDictionaryList=Tagasi sõnastike nimekirja
|
||||
VATReceivedOnly=Erihinda ei maksustata
|
||||
VATManagement=Käibemaksu haldamine
|
||||
VATIsUsedDesc=Pakkumiste, tellimuste, arvete jne loomisel kasutatav vaikimisi käibemaksumäär järgib aktiivset reeglit:<br>Kui müüja ei ole käibemaksukohuslane, siis on käibemaks vaikimisi 0. Reegli lõpp.<br>Juhul, kui (müümise maa=ostmise maa), siis kasututakse müümise maa käibemaksumäära. Reegli lõpp.<br>Kui müüja ja ostja on Euroopa Ühenduses ja tegu on transpordikaupadega (auto, laev, lennuk), siis on vaikimisi maksumäär 0 (käibemaksu peaks ostja maksma oma maa tollis ja mitte müüja juures). Reegli lõpp.<br>Kui müüja ja ostja on Euroopa Ühenduses ja ostja ei ole ettevõte, siis on käibemaksumääraks müüdava toote vaikimisi käibemaksumäär. Reegli lõpp.<br>Kui müüja ja ostja on Euroopa Ühenduses ja ostja on ettevõte, siis on käibemaks vaikimisi 0. Reegli lõpp.<br>Muul juhul on vaikimisi pakutud määraks 0. Reegli lõpp.
|
||||
|
|
@ -921,7 +921,7 @@ TriggerDisabledAsModuleDisabled=Selles failis olevad trigerid on blokeeritud, ku
|
|||
TriggerAlwaysActive=Selles failis olevad trigerid on alati aktiivsed hoolimata aktiveeritud Dolibarri moodulitest.
|
||||
TriggerActiveAsModuleActive=Selles failis olevad trigerid on aktiivsed, kuna moodul <b>%s</b> on aktiivne.
|
||||
GeneratedPasswordDesc=Määratle siin uue parooli loomise reegel, kui keegi tahab kasutada automaatselt loodud parooli.
|
||||
DictionnaryDesc=Määratle siin kogu viidatav andmestik. Eelnevalt määratletud väärtusi võid ise täiustada.
|
||||
DictionaryDesc=Määratle siin kogu viidatav andmestik. Eelnevalt määratletud väärtusi võid ise täiustada.
|
||||
ConstDesc=See lehekülg võimaldab muuta kõiki parameetreid, mis ei olnud eelmistel lehtedel saadaval. Tegu on edasijõudnud arendajate või programmi silujate jaoks mõeldud parameetritega.
|
||||
OnceSetupFinishedCreateUsers=Hoiatus: oled sisse logitud Dolibarri administraatorina. Administraatoreid kasutatakse Dolibarri seadistamiseks. Igapäevaseks kasutamiseks on soovitav kasutada tavakasutajat, kes on loodud Kasutajad & Grupid menüü abil.
|
||||
MiscellaneousDesc=Määratle siin muud parameetrid, mis on seotud turvalisusega.
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ DataCodeIDSourceIsInsertedInto=Koodist leitud emarea ID sisestatakse järgmisse
|
|||
SourceRequired=Andmeväärtus on kohustuslik
|
||||
SourceExample=Võimaliku andmeväärtuse näide
|
||||
ExampleAnyRefFoundIntoElement=Iga elemendi <b>%s</b> jaoks leitud viide
|
||||
ExampleAnyCodeOrIdFoundIntoDictionnary=Iga sõnastiku <b>%s</b> jaoks leitud kood (või ID)
|
||||
ExampleAnyCodeOrIdFoundIntoDictionary=Iga sõnastiku <b>%s</b> jaoks leitud kood (või ID)
|
||||
CSVFormatDesc=<b>Comma Separated Value</b> faili formaat (.csv).<br>See on tekstifaili formaat, kus väljad on eraldatud eraldajaga [ %s ]. Kui välja sisus leidub eraldaja, eraldatakse väli teistest väljadest eraldusssümboliga [ %s ]. Eraldussümboli paomärk on [ %s ].
|
||||
Excel95FormatDesc=<b>Excel</b> faili formaat (.xls)<br>Excel 95 formaat (BIFF5).
|
||||
Excel2007FormatDesc=<b>Excel</b> faili formaat (.xlsx)<br>Excel 2007 formaat (SpreadsheetML).
|
||||
|
|
|
|||
|
|
@ -572,7 +572,7 @@ TotalWoman=Täielik
|
|||
TotalMan=Täielik
|
||||
NeverReceived=Pole vastu võetud
|
||||
Canceled=Tühistatud
|
||||
YouCanChangeValuesForThisListFromDictionnarySetup=Selle nimekirja väärtusi on võimalik muuta menüüst Seadistamine - Sõnastik
|
||||
YouCanChangeValuesForThisListFromDictionarySetup=Selle nimekirja väärtusi on võimalik muuta menüüst Seadistamine - Sõnastik
|
||||
Color=Värv
|
||||
Documents=Seotud failid
|
||||
DocumentsNb=Seotud failid (%s)
|
||||
|
|
|
|||
|
|
@ -43,8 +43,8 @@ SecuritySetup=تنظیمات امنیتی
|
|||
ErrorModuleRequirePHPVersion=خطا! این ماژول نیازمند پی اچ پی نسخه <b>%s</b> و ب
|
||||
ErrorModuleRequireDolibarrVersion=خطا این ماژول نیازمند دلیبار نسخه <b>%s</b> و به بالاست
|
||||
ErrorDecimalLargerThanAreForbidden=خطا دقت بیش از <b>%s</b> امکان پذیر نیست
|
||||
DictionnarySetup=تنظیمات فرهنگ لغات
|
||||
Dictionnary=دیکشنری
|
||||
DictionarySetup=تنظیمات فرهنگ لغات
|
||||
Dictionary=دیکشنری
|
||||
# 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
|
||||
DisableJavascript=غیر فعال سازی جاوا اسکریپت
|
||||
|
|
@ -726,34 +726,34 @@ Permission2515=إعداد وثائق وأدلة
|
|||
# Permission55002=Create/modify surveys
|
||||
# Permission59001=Read commercial margins
|
||||
# Permission59002=Define commercial margins
|
||||
DictionnaryCompanyType=أنواع الشركة
|
||||
DictionnaryCompanyJuridicalType=أنواع القانوني للشركة
|
||||
DictionnaryProspectLevel=آفاق محتملة المستوى
|
||||
DictionnaryCanton=الدولة / الكانتونات
|
||||
DictionnaryRegion=المناطق
|
||||
DictionnaryCountry=البلدان
|
||||
DictionnaryCurrency=العملات
|
||||
DictionnaryCivility=عنوان الكياسة
|
||||
DictionnaryActions=الإجراءات القائمة
|
||||
DictionnarySocialContributions=أنواع المساهمات الاجتماعية
|
||||
DictionnaryVAT=معدلات ضريبة القيمة المضافة
|
||||
# DictionnaryRevenueStamp=Amount of revenue stamps
|
||||
DictionnaryPaymentConditions=شروط الدفع
|
||||
DictionnaryPaymentModes=طرق الدفع
|
||||
DictionnaryTypeContact=أنواع الاتصال
|
||||
DictionnaryEcotaxe=الضرائب الإيكولوجية (WEEE)
|
||||
DictionnaryPaperFormat=الصيغة الورقية
|
||||
DictionnaryFees=نوع من الرسوم
|
||||
DictionnarySendingMethods=طرق الإرسال
|
||||
DictionnaryStaff=العاملين
|
||||
# DictionnaryAvailability=Delivery delay
|
||||
# DictionnaryOrderMethods=Ordering methods
|
||||
# DictionnarySource=Origin of proposals/orders
|
||||
# DictionnaryAccountancyplan=Chart of accounts
|
||||
# DictionnaryAccountancysystem=Models for chart of accounts
|
||||
DictionaryCompanyType=أنواع الشركة
|
||||
DictionaryCompanyJuridicalType=أنواع القانوني للشركة
|
||||
DictionaryProspectLevel=آفاق محتملة المستوى
|
||||
DictionaryCanton=الدولة / الكانتونات
|
||||
DictionaryRegion=المناطق
|
||||
DictionaryCountry=البلدان
|
||||
DictionaryCurrency=العملات
|
||||
DictionaryCivility=عنوان الكياسة
|
||||
DictionaryActions=الإجراءات القائمة
|
||||
DictionarySocialContributions=أنواع المساهمات الاجتماعية
|
||||
DictionaryVAT=معدلات ضريبة القيمة المضافة
|
||||
# DictionaryRevenueStamp=Amount of revenue stamps
|
||||
DictionaryPaymentConditions=شروط الدفع
|
||||
DictionaryPaymentModes=طرق الدفع
|
||||
DictionaryTypeContact=أنواع الاتصال
|
||||
DictionaryEcotaxe=الضرائب الإيكولوجية (WEEE)
|
||||
DictionaryPaperFormat=الصيغة الورقية
|
||||
DictionaryFees=نوع من الرسوم
|
||||
DictionarySendingMethods=طرق الإرسال
|
||||
DictionaryStaff=العاملين
|
||||
# DictionaryAvailability=Delivery delay
|
||||
# DictionaryOrderMethods=Ordering methods
|
||||
# DictionarySource=Origin of proposals/orders
|
||||
# DictionaryAccountancyplan=Chart of accounts
|
||||
# DictionaryAccountancysystem=Models for chart of accounts
|
||||
SetupSaved=الإعداد المحفوظة
|
||||
BackToModuleList=العودة إلى قائمة الوحدات
|
||||
BackToDictionnaryList=العودة إلى قائمة معاجم
|
||||
BackToDictionaryList=العودة إلى قائمة معاجم
|
||||
VATReceivedOnly=سعر خاص لا تحمل
|
||||
VATManagement=إدارة الضريبة على القيمة المضافة
|
||||
VATIsUsedDesc=معدل ضريبة القيمة المضافة بشكل افتراضي عند إنشاء الآفاق ، والفواتير ، وما يتبع أوامر النشطة القياسية للمادة : <br> إذا كان البائع هو تعرض لضريبة القيمة المضافة ، وضريبة القيمة المضافة بعد ذلك تلقائيا= 0. نهاية المادة. <br> إذا كان (بيع وشراء= بلد في البلد) ، فإن ضريبة القيمة المضافة بشكل افتراضي= ضريبة القيمة المضافة من بيع المنتج في البلد. نهاية المادة. <br> إذا كان البائع والمشتري في الجماعة الأوروبية ، وبيعت البضاعة الجديدة بعد أن وسائل النقل (السيارات ، والسفن ، والطائرات) ، الافتراضي= 0 ضريبة القيمة المضافة (ضريبة القيمة المضافة وينبغي أن تدفع من قبل المشتري في customoffice بلاده وليس على البائع . نهاية المادة. <br> إذا كان البائع والمشتري في الجماعة الأوروبية والسلع التي تباع عن طريق وسائل أخرى جديدة بدلا من وسائل النقل ، فإن ضريبة القيمة المضافة بشكل افتراضي= ضريبة القيمة المضافة للمنتجات المباعة. نهاية المادة. <br> وإلا فإن ضريبة القيمة المضافة المقترحة الافتراضي= 1. نهاية المادة.
|
||||
|
|
@ -921,7 +921,7 @@ TriggerDisabledAsModuleDisabled=يتسبب في تعطيل هذه الصورة
|
|||
TriggerAlwaysActive=يطلق في هذا الملف هي حركة دائمة ، وتفعيل ما هي وحدات Dolibarr.
|
||||
TriggerActiveAsModuleActive=يطلق في هذا الملف كما ينشط حدة تمكين <b>٪ ق.</b>
|
||||
GeneratedPasswordDesc=هنا تعريف القاعدة التي تريد استخدامه لكلمة السر اذا كنت أسأل لصناعة السيارات ولدت كلمة السر
|
||||
DictionnaryDesc=تعرف هنا إشارة datas. يمكنك استكمال مسبقا مع قيمة لك.
|
||||
DictionaryDesc=تعرف هنا إشارة datas. يمكنك استكمال مسبقا مع قيمة لك.
|
||||
ConstDesc=تسمح لك هذه الصفحة لتحرير جميع البارامترات الأخرى غير المتوفرة في الصفحات السابقة. فهي محفوظة لمعايير متقدمة للمطورين أو troubleshouting.
|
||||
OnceSetupFinishedCreateUsers=تحذير فأنت Dolibarr مدير المستخدم. مدير المستخدمين تستخدم لإعداد Dolibarr. لالمعتاد استخدام Dolibarr ، يوصى باستخدام غير مستخدم مدير خلق مجموعات من المستخدمين & القائمة.
|
||||
MiscellaneousDesc=هنا تعريف جميع البارامترات الأخرى ذات الصلة بالأمن.
|
||||
|
|
@ -1425,7 +1425,7 @@ YourCompanyDoesNotUseVAT=وقد تم تسجيل شركة محددة لعدم ا
|
|||
AgendaSetup=جدول الأعمال وحدة الإعداد
|
||||
PasswordTogetVCalExport=مفتاح ربط تصدير تأذن
|
||||
PastDelayVCalExport=لا تصدر الحدث الأكبر من
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionnary->llx_c_actioncomm)
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionary->llx_c_actioncomm)
|
||||
##### ClickToDial #####
|
||||
ClickToDialDesc=هذا النموذج يسمح لإضافة رمز بعد رقم هاتف Dolibarr الاتصالات. وهناك اضغط على هذه الأيقونة ، سوف يطلب من أحد serveur معينة مع تحديد عنوان لكم أدناه. ويمكن استخدام هذه الكلمة لدعوة من مركز نظام Dolibarr التي يمكن الاتصال على رقم الهاتف هذا المسبار النظام على سبيل المثال.
|
||||
##### Point Of Sales (CashDesk) #####
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ DataIDSourceIsInsertedInto=العثور على كائن معرف الأصل با
|
|||
SourceRequired=بيانات قيمة إلزامية
|
||||
SourceExample=مثال على قيمة البيانات ممكن
|
||||
# ExampleAnyRefFoundIntoElement=Any ref found for element <b>%s</b>
|
||||
# ExampleAnyCodeOrIdFoundIntoDictionnary=Any code (or id) found into dictionnary <b>%s</b>
|
||||
# ExampleAnyCodeOrIdFoundIntoDictionary=Any code (or id) found into dictionnary <b>%s</b>
|
||||
CSVFormatDesc=<b>فاصلة فصل</b> ملف <b>القيمة</b> تنسيق (csv.). <br> هذا هو شكل ملف نصي ، حيث يتم فصل الحقول بواسطة فاصل [%s]. إذا تم العثور على فاصل داخل محتوى الحقل ، يتم تقريب الجولة الميدانية التي قام بها حرف] %s [. الهروب حرف وحرف الهروب جولة هو [%s].
|
||||
# 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).
|
||||
|
|
|
|||
|
|
@ -572,7 +572,7 @@ TotalWoman=المجموع
|
|||
TotalMan=المجموع
|
||||
NeverReceived=لم يتلق
|
||||
Canceled=ألغى
|
||||
YouCanChangeValuesForThisListFromDictionnarySetup=يمكنك تغيير القيم لهذه القائمة من قائمة الإعداد -- dictionnary
|
||||
YouCanChangeValuesForThisListFromDictionarySetup=يمكنك تغيير القيم لهذه القائمة من قائمة الإعداد -- dictionnary
|
||||
Color=لون
|
||||
Documents=ربط الملفات
|
||||
DocumentsNb=ملفات مرتبطة (%s)
|
||||
|
|
|
|||
|
|
@ -43,8 +43,8 @@ SecuritySetup=Turvallisuus-asetukset
|
|||
ErrorModuleRequirePHPVersion=Virhe Tätä moduulia edellyttää PHP version %s tai enemmän
|
||||
ErrorModuleRequireDolibarrVersion=Virhe Tätä moduulia edellyttää Dolibarr version %s tai enemmän
|
||||
ErrorDecimalLargerThanAreForbidden=Virhe, tarkkuuden suurempi <b>kuin %s</b> ei ole tuettu.
|
||||
DictionnarySetup=Sanakirja setup
|
||||
# Dictionnary=Dictionaries
|
||||
DictionarySetup=Sanakirja setup
|
||||
# Dictionary=Dictionaries
|
||||
# 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
|
||||
DisableJavascript=Poista JavaScript-ja Ajax toiminnot
|
||||
|
|
@ -726,34 +726,34 @@ Permission50202=Tuo liiketoimet
|
|||
# Permission55002=Create/modify surveys
|
||||
# Permission59001=Read commercial margins
|
||||
# Permission59002=Define commercial margins
|
||||
DictionnaryCompanyType=Yritys tyypit
|
||||
DictionnaryCompanyJuridicalType=Mustan erilaisia yrityksen
|
||||
DictionnaryProspectLevel=Esitetilaus mahdolliset tasolla
|
||||
DictionnaryCanton=Piirit
|
||||
DictionnaryRegion=Alueiden
|
||||
DictionnaryCountry=Maat
|
||||
DictionnaryCurrency=Valuutat
|
||||
DictionnaryCivility=Kohteliaisuus otsikko
|
||||
DictionnaryActions=Toimet luettelo
|
||||
DictionnarySocialContributions=Sosiaaliturvamaksut tyypit
|
||||
DictionnaryVAT=Alv
|
||||
# DictionnaryRevenueStamp=Amount of revenue stamps
|
||||
DictionnaryPaymentConditions=Maksuehdot
|
||||
DictionnaryPaymentModes=Maksutavat
|
||||
DictionnaryTypeContact=Yhteystiedot tyypit
|
||||
DictionnaryEcotaxe=Ympäristöveron (WEEE)
|
||||
DictionnaryPaperFormat=Paper tiedostomuodot
|
||||
DictionnaryFees=Tyyppi maksujen
|
||||
DictionnarySendingMethods=Sendings menetelmiä
|
||||
DictionnaryStaff=Henkilöstö
|
||||
DictionnaryAvailability=Toimituksen viivästyminen
|
||||
DictionnaryOrderMethods=Tilaaminen menetelmät
|
||||
DictionnarySource=Alkuperä ehdotusten / tilaukset
|
||||
# DictionnaryAccountancyplan=Chart of accounts
|
||||
# DictionnaryAccountancysystem=Models for chart of accounts
|
||||
DictionaryCompanyType=Yritys tyypit
|
||||
DictionaryCompanyJuridicalType=Mustan erilaisia yrityksen
|
||||
DictionaryProspectLevel=Esitetilaus mahdolliset tasolla
|
||||
DictionaryCanton=Piirit
|
||||
DictionaryRegion=Alueiden
|
||||
DictionaryCountry=Maat
|
||||
DictionaryCurrency=Valuutat
|
||||
DictionaryCivility=Kohteliaisuus otsikko
|
||||
DictionaryActions=Toimet luettelo
|
||||
DictionarySocialContributions=Sosiaaliturvamaksut tyypit
|
||||
DictionaryVAT=Alv
|
||||
# DictionaryRevenueStamp=Amount of revenue stamps
|
||||
DictionaryPaymentConditions=Maksuehdot
|
||||
DictionaryPaymentModes=Maksutavat
|
||||
DictionaryTypeContact=Yhteystiedot tyypit
|
||||
DictionaryEcotaxe=Ympäristöveron (WEEE)
|
||||
DictionaryPaperFormat=Paper tiedostomuodot
|
||||
DictionaryFees=Tyyppi maksujen
|
||||
DictionarySendingMethods=Sendings menetelmiä
|
||||
DictionaryStaff=Henkilöstö
|
||||
DictionaryAvailability=Toimituksen viivästyminen
|
||||
DictionaryOrderMethods=Tilaaminen menetelmät
|
||||
DictionarySource=Alkuperä ehdotusten / tilaukset
|
||||
# DictionaryAccountancyplan=Chart of accounts
|
||||
# DictionaryAccountancysystem=Models for chart of accounts
|
||||
SetupSaved=Setup tallennettu
|
||||
BackToModuleList=Palaa moduulien luetteloon
|
||||
BackToDictionnaryList=Palaa sanakirjat luettelo
|
||||
BackToDictionaryList=Palaa sanakirjat luettelo
|
||||
VATReceivedOnly=Erityistä verokantaa ei veloiteta
|
||||
VATManagement=Alv Management
|
||||
# VATIsUsedDesc=The VAT rate by default when creating prospects, invoices, orders etc follow the active standard rule:<br>If the seller is not subjected to VAT, then VAT by default=0. End of rule.<br>If the (selling country= buying country), then the VAT by default=VAT of the product in the selling country. End of rule. <br>If seller and buyer in the European Community and goods are transport products (car, ship, plane), the default VAT=0 ( The VAT should be paid by the buyer at the customoffice of his country and not at the seller). End of rule.<br>If seller and buyer in the European Community and buyer is not a company, then the VAT by default=VAT of product sold. End of rule.<br>If seller and buyer in the European Community and buyer is a company, then the VAT by default=0. End of rule.<br>Else the proposed default VAT=0. End of rule.
|
||||
|
|
@ -921,7 +921,7 @@ TriggerDisabledAsModuleDisabled=Käynnistäjät tähän tiedostoon pois päält
|
|||
TriggerAlwaysActive=Käynnistäjät tässä tiedosto on aina aktiivinen, mikä on aktivoitu Dolibarr moduulit.
|
||||
TriggerActiveAsModuleActive=Käynnistäjät tähän tiedostoon ovat aktiivisia <b>moduuli %s</b> on käytössä.
|
||||
GeneratedPasswordDesc=Määritä tässä joka sääntö, jota haluat käyttää luoda uuden salasanan, jos pyytää, että auto tuotti salasana
|
||||
DictionnaryDesc=Määritä tässä kaikki viittaukset datas. Voit täysin ennalta-arvon sinun.
|
||||
DictionaryDesc=Määritä tässä kaikki viittaukset datas. Voit täysin ennalta-arvon sinun.
|
||||
ConstDesc=Tällä sivulla voit muokata kaikkia muita muuttujia ei ole saatavilla edellinen sivua. Ne on varattu parametrit edistyneelle kehittäjät tai troubleshouting.
|
||||
OnceSetupFinishedCreateUsers=Varoitus, olet Dolibarr järjestelmänvalvojan käyttäjätili. Administrator käyttäjät ovat tottuneet setup Dolibarr. Jos kyseessä on tavanomainen käyttö Dolibarr, on suositeltavaa käyttää kuin järjestelmänvalvojan käyttäjätili luotu Käyttäjät & ryhmät valikosta.
|
||||
MiscellaneousDesc=Määritä tässä kaikki muut parametrit, jotka liittyvät turvallisuuteen.
|
||||
|
|
@ -1425,7 +1425,7 @@ AccountancyCode=Kirjanpito koodi
|
|||
AgendaSetup=Toimet ja esityslistan moduulin asetukset
|
||||
PasswordTogetVCalExport=Avain sallia viennin linkki
|
||||
PastDelayVCalExport=Älä viedä tapauksessa vanhempia kuin
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionnary->llx_c_actioncomm)
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionary->llx_c_actioncomm)
|
||||
##### ClickToDial #####
|
||||
ClickToDialDesc=Tämän moduulin avulla voidaan lisätä kuvake jälkeen puhelinnumero Dolibarr yhteystiedot. A napsautat tätä kuvaketta, tulee soittaa serveur tiettyyn URL määritellä alla. Tätä voidaan käyttää soittaa puhelun keskellä järjestelmän Dolibarr että voi soittaa puhelinnumeroon, joka SIP järjestelmä esimerkiksi.
|
||||
##### Point Of Sales (CashDesk) #####
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ DataCodeIDSourceIsInsertedInto=Id vanhemman linjan löydy koodia, lisätään os
|
|||
SourceRequired=Tiedon arvo on pakollinen
|
||||
SourceExample=Esimerkki mahdollisesta tietojen arvo
|
||||
ExampleAnyRefFoundIntoElement=Jos ref löytynyt elementin <b>%s</b>
|
||||
ExampleAnyCodeOrIdFoundIntoDictionnary=Kaikki koodia (tai id) löytyi tulee dictionnary <b>%s</b>
|
||||
ExampleAnyCodeOrIdFoundIntoDictionary=Kaikki koodia (tai id) löytyi tulee dictionnary <b>%s</b>
|
||||
CSVFormatDesc=<b>Pilkuin erotellut</b> tiedostomuodossa (. Csv). <br> Tämä on tekstitiedosto muodossa, jossa kentät on erotettu separaattori [%s]. Jos erotin on sisäpuolella kentän sisältöä, kenttä on pyöristetty pyöreä merkki [%s]. Escape paeta pyöreä merkki on [%s].
|
||||
# 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).
|
||||
|
|
|
|||
|
|
@ -572,7 +572,7 @@ TotalWoman=Yhteensä
|
|||
TotalMan=Yhteensä
|
||||
NeverReceived=Koskaan saanut
|
||||
Canceled=Peruutettu
|
||||
YouCanChangeValuesForThisListFromDictionnarySetup=Voit muuttaa arvoja tämän listan valikkopalkki setup - dictionnary
|
||||
YouCanChangeValuesForThisListFromDictionarySetup=Voit muuttaa arvoja tämän listan valikkopalkki setup - dictionnary
|
||||
Color=Väri
|
||||
Documents=Linkitettyjä tiedostoja
|
||||
DocumentsNb=Linkitettyä kuvaa (%s)
|
||||
|
|
|
|||
|
|
@ -43,8 +43,8 @@ SecuritySetup=Configuration de la sécurité
|
|||
ErrorModuleRequirePHPVersion=Erreur, ce module requiert une version %s ou supérieure de PHP
|
||||
ErrorModuleRequireDolibarrVersion=Erreur, ce module requiert une version %s ou supérieure de Dolibarr
|
||||
ErrorDecimalLargerThanAreForbidden=Erreur, les précisions supérieures à <b>%s</b> ne sont pas prises en charge.
|
||||
DictionnarySetup=Configuration des dictionnaires
|
||||
Dictionnary=Dictionnaires
|
||||
DictionarySetup=Configuration des dictionnaires
|
||||
Dictionary=Dictionnaires
|
||||
ErrorReservedTypeSystemSystemAuto=Erreur, les valeurs 'system' et 'systemauto' sont réservées. Vous pouvez utiliser la valeur 'user' pour ajouter vos propres enregistrements
|
||||
ErrorCodeCantContainZero=Erreur, le code ne peut contenir la valeur 0
|
||||
DisableJavascript=Désactiver les fonctions Javascript et Ajax
|
||||
|
|
@ -726,34 +726,34 @@ Permission55001=Lire les sondages
|
|||
Permission55002=Créer/modifier les sondages
|
||||
Permission59001=Consulter les propositions commerciales
|
||||
Permission59002=Saisir les marges commerciales
|
||||
DictionnaryCompanyType=Types de sociétés
|
||||
DictionnaryCompanyJuridicalType=Formes juridiques
|
||||
DictionnaryProspectLevel=Niveau de potentiel des prospects
|
||||
DictionnaryCanton=Départements/Provinces/Cantons
|
||||
DictionnaryRegion=Régions
|
||||
DictionnaryCountry=Pays
|
||||
DictionnaryCurrency=Monnaies
|
||||
DictionnaryCivility=Titres de civilité
|
||||
DictionnaryActions=Liste des types d'événements de l'agenda
|
||||
DictionnarySocialContributions=Types de charges sociales
|
||||
DictionnaryVAT=Taux de TVA ou de taxes de ventes
|
||||
DictionnaryRevenueStamp=Montants des timbres fiscaux
|
||||
DictionnaryPaymentConditions=Conditions de règlement
|
||||
DictionnaryPaymentModes=Modes de paiements
|
||||
DictionnaryTypeContact=Types de contacts/adresses
|
||||
DictionnaryEcotaxe=Barèmes Éco-participation (DEEE)
|
||||
DictionnaryPaperFormat=Formats de papier
|
||||
DictionnaryFees=Types de déplacements et notes de frais
|
||||
DictionnarySendingMethods=Méthodes d'expédition
|
||||
DictionnaryStaff=Effectifs
|
||||
DictionnaryAvailability=Délais de livraison
|
||||
DictionnaryOrderMethods=Méthodes de commandes
|
||||
DictionnarySource=Origines des propales/commandes
|
||||
DictionnaryAccountancyplan=Plan comptable
|
||||
DictionnaryAccountancysystem=Modèles de plan comptable
|
||||
DictionaryCompanyType=Types de sociétés
|
||||
DictionaryCompanyJuridicalType=Formes juridiques
|
||||
DictionaryProspectLevel=Niveau de potentiel des prospects
|
||||
DictionaryCanton=Départements/Provinces/Cantons
|
||||
DictionaryRegion=Régions
|
||||
DictionaryCountry=Pays
|
||||
DictionaryCurrency=Monnaies
|
||||
DictionaryCivility=Titres de civilité
|
||||
DictionaryActions=Liste des types d'événements de l'agenda
|
||||
DictionarySocialContributions=Types de charges sociales
|
||||
DictionaryVAT=Taux de TVA ou de taxes de ventes
|
||||
DictionaryRevenueStamp=Montants des timbres fiscaux
|
||||
DictionaryPaymentConditions=Conditions de règlement
|
||||
DictionaryPaymentModes=Modes de paiements
|
||||
DictionaryTypeContact=Types de contacts/adresses
|
||||
DictionaryEcotaxe=Barèmes Éco-participation (DEEE)
|
||||
DictionaryPaperFormat=Formats de papier
|
||||
DictionaryFees=Types de déplacements et notes de frais
|
||||
DictionarySendingMethods=Méthodes d'expédition
|
||||
DictionaryStaff=Effectifs
|
||||
DictionaryAvailability=Délais de livraison
|
||||
DictionaryOrderMethods=Méthodes de commandes
|
||||
DictionarySource=Origines des propales/commandes
|
||||
DictionaryAccountancyplan=Plan comptable
|
||||
DictionaryAccountancysystem=Modèles de plan comptable
|
||||
SetupSaved=Configuration sauvegardée
|
||||
BackToModuleList=Retour liste des modules
|
||||
BackToDictionnaryList=Retour liste des dictionnaires
|
||||
BackToDictionaryList=Retour liste des dictionnaires
|
||||
VATReceivedOnly=Taux spécial non facturé
|
||||
VATManagement=Gestion TVA
|
||||
VATIsUsedDesc=Le taux de TVA proposé par défaut lors de la création de proposition commerciale, facture, commande, etc... répond à la règle standard suivante :<br>Si vendeur non assujetti à TVA, TVA par défaut=0. Fin de règle.<br>Si le (pays vendeur= pays acheteur) alors TVA par défaut=TVA du produit vendu. Fin de règle.<br>Si vendeur et acheteur dans Communauté européenne et bien vendu= moyen de transport neuf (auto, bateau, avion), TVA par défaut=0 (La TVA doit être payée par acheteur au centre d'impôts de son pays et non au vendeur). Fin de règle.<br>Si vendeur et acheteur dans Communauté européenne et acheteur= particulier alors TVA par défaut=TVA du produit vendu. Fin de règle.<br>Si vendeur et acheteur dans Communauté européenne et acheteur= entreprise alors TVA par défaut=0. Fin de règle.<br>Sinon TVA proposée par défaut=0. Fin de règle.<br>
|
||||
|
|
@ -921,7 +921,7 @@ TriggerDisabledAsModuleDisabled=Déclencheurs de ce fichier désactivés car le
|
|||
TriggerAlwaysActive=Déclencheurs de ce fichier toujours actifs, quels que soient les modules Dolibarr activés.
|
||||
TriggerActiveAsModuleActive=Déclencheurs de ce fichier actifs car le module <b>%s</b> est actif.
|
||||
GeneratedPasswordDesc=Definissez ici quelle règle vous voulez utiliser pour générer les mots de passe quand vous demandez à fabriquer un nouveau mot de passe
|
||||
DictionnaryDesc=Définissez ici les données de référence. Vous pouvez compléter/modifier les données prédéfinies avec les vôtres.
|
||||
DictionaryDesc=Définissez ici les données de référence. Vous pouvez compléter/modifier les données prédéfinies avec les vôtres.
|
||||
ConstDesc=Cet écran permet d'éditer tout autre paramètre non éditable dans les pages précédentes. Ce sont en général des paramètres réservés aux développeurs avancés ou utilisés pour du dépannage.
|
||||
OnceSetupFinishedCreateUsers=Attention, vous êtes sous un compte administrateur de Dolibarr. Les administrateurs sont utilisés pour configurer Dolibarr. Pour une utilisation courante de Dolibarr, il est recommandé d'utiliser un compte non administrateur créé depuis le menu "Utilisateurs & Groupes".
|
||||
MiscellaneousDesc=Définissez ici les autres paramètres en rapport avec la sécurité.
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ DataCodeIDSourceIsInsertedInto=L'identifiant de la ligne père retrouvé à part
|
|||
SourceRequired=Donnée source obligatoire
|
||||
SourceExample=Exemple de donnée source possible
|
||||
ExampleAnyRefFoundIntoElement=Toute réf. trouvée pour les éléments <b>%s</b>
|
||||
ExampleAnyCodeOrIdFoundIntoDictionnary=Tout code (ou identifiant) trouvé dans le dictionnaire <b>%s</b>
|
||||
ExampleAnyCodeOrIdFoundIntoDictionary=Tout code (ou identifiant) trouvé dans le dictionnaire <b>%s</b>
|
||||
CSVFormatDesc=Fichier au format <b>Comma Separated Value</b> (.csv).<br>C'est un fichier au format texte dans lequel les champs sont séparés par le caractère [ %s ]. Si le séparateur est trouvé dans le contenu d'un champ, le champ doit être entouré du caractère [ %s ]. Le caractère d'échappement pour inclure un caractère de contour dans une donnée est [ %s ].
|
||||
Excel95FormatDesc=Format <b>Excel</b> (.xls).<br>Format Excel 95 (BIFF5).
|
||||
Excel2007FormatDesc=Format <b>Excel</b> (.xls).<br>Format standard Excel 2007 (SpreadsheetML).
|
||||
|
|
|
|||
|
|
@ -572,7 +572,7 @@ TotalWoman=Totale
|
|||
TotalMan=Total
|
||||
NeverReceived=Jamais reçu
|
||||
Canceled=Annulé
|
||||
YouCanChangeValuesForThisListFromDictionnarySetup=Vous pouvez changer les valeurs de cette liste depuis le menu accueil - configuration - dictionnaires
|
||||
YouCanChangeValuesForThisListFromDictionarySetup=Vous pouvez changer les valeurs de cette liste depuis le menu accueil - configuration - dictionnaires
|
||||
Color=Couleur
|
||||
Documents=Fichiers joints
|
||||
DocumentsNb=Fichiers joints (%s)
|
||||
|
|
|
|||
|
|
@ -43,8 +43,8 @@ SecuritySetup=הגדרת אבטחה
|
|||
ErrorModuleRequirePHPVersion=שגיאה, מודול זה דורש %s PHP גירסה ומעלה
|
||||
ErrorModuleRequireDolibarrVersion=שגיאה, מודול זה דורש %s Dolibarr גרסה ומעלה
|
||||
ErrorDecimalLargerThanAreForbidden=שגיאה, דיוק גבוה יותר <b>%s</b> אינו נתמך.
|
||||
DictionnarySetup=הגדרת מילון
|
||||
# Dictionnary=Dictionaries
|
||||
DictionarySetup=הגדרת מילון
|
||||
# Dictionary=Dictionaries
|
||||
# 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
|
||||
DisableJavascript=בטל פונקציונליות של JavaScript ו Ajax
|
||||
|
|
@ -726,34 +726,34 @@ Permission50202=ייבוא עסקאות
|
|||
# Permission55002=Create/modify surveys
|
||||
# Permission59001=Read commercial margins
|
||||
# Permission59002=Define commercial margins
|
||||
DictionnaryCompanyType=החברה סוגים
|
||||
DictionnaryCompanyJuridicalType=סוגים חוק ומשפט של החברה
|
||||
DictionnaryProspectLevel=הסיכוי הפוטנציאלי ברמה
|
||||
DictionnaryCanton=המדינה / הקנטונים
|
||||
DictionnaryRegion=אזורים
|
||||
DictionnaryCountry=מדינות
|
||||
DictionnaryCurrency=מטבעות
|
||||
DictionnaryCivility=באדיבות כותרת
|
||||
DictionnaryActions=סוג של אירועים סדר היום
|
||||
DictionnarySocialContributions=תשלומים סוציאליים סוגים
|
||||
DictionnaryVAT=שיעורי מע"מ או מכירות שיעורי מס
|
||||
# DictionnaryRevenueStamp=Amount of revenue stamps
|
||||
DictionnaryPaymentConditions=תנאי תשלום
|
||||
DictionnaryPaymentModes=תשלום מצבי
|
||||
DictionnaryTypeContact=צור סוגים
|
||||
DictionnaryEcotaxe=Ecotax (WEEE)
|
||||
DictionnaryPaperFormat=נייר פורמטים
|
||||
DictionnaryFees=סוג של דמי
|
||||
DictionnarySendingMethods=משלוח שיטות
|
||||
DictionnaryStaff=סגל
|
||||
DictionnaryAvailability=עיכוב משלוח
|
||||
DictionnaryOrderMethods=הזמנת שיטות
|
||||
DictionnarySource=מקור הצעות / הזמנות
|
||||
# DictionnaryAccountancyplan=Chart of accounts
|
||||
# DictionnaryAccountancysystem=Models for chart of accounts
|
||||
DictionaryCompanyType=החברה סוגים
|
||||
DictionaryCompanyJuridicalType=סוגים חוק ומשפט של החברה
|
||||
DictionaryProspectLevel=הסיכוי הפוטנציאלי ברמה
|
||||
DictionaryCanton=המדינה / הקנטונים
|
||||
DictionaryRegion=אזורים
|
||||
DictionaryCountry=מדינות
|
||||
DictionaryCurrency=מטבעות
|
||||
DictionaryCivility=באדיבות כותרת
|
||||
DictionaryActions=סוג של אירועים סדר היום
|
||||
DictionarySocialContributions=תשלומים סוציאליים סוגים
|
||||
DictionaryVAT=שיעורי מע"מ או מכירות שיעורי מס
|
||||
# DictionaryRevenueStamp=Amount of revenue stamps
|
||||
DictionaryPaymentConditions=תנאי תשלום
|
||||
DictionaryPaymentModes=תשלום מצבי
|
||||
DictionaryTypeContact=צור סוגים
|
||||
DictionaryEcotaxe=Ecotax (WEEE)
|
||||
DictionaryPaperFormat=נייר פורמטים
|
||||
DictionaryFees=סוג של דמי
|
||||
DictionarySendingMethods=משלוח שיטות
|
||||
DictionaryStaff=סגל
|
||||
DictionaryAvailability=עיכוב משלוח
|
||||
DictionaryOrderMethods=הזמנת שיטות
|
||||
DictionarySource=מקור הצעות / הזמנות
|
||||
# DictionaryAccountancyplan=Chart of accounts
|
||||
# DictionaryAccountancysystem=Models for chart of accounts
|
||||
SetupSaved=הגדרת הציל
|
||||
BackToModuleList=חזרה לרשימת מודולים
|
||||
BackToDictionnaryList=חזרה לרשימת המילונים
|
||||
BackToDictionaryList=חזרה לרשימת המילונים
|
||||
VATReceivedOnly=שיעור מיוחד לא טעונה
|
||||
VATManagement=מע"מ ניהול
|
||||
VATIsUsedDesc=שיעור המע"מ כברירת מחדל בעת יצירת הסיכויים, חשבוניות, הזמנות וכו 'פעל הכלל רגיל פעיל: <br> אם המוכר הוא נתון מע"מ, אז המע"מ כברירת מחדל = 0. קץ שלטון. <br> אם (בארץ מוכר = לקנות בארץ), אז כברירת מחדל מע"מ = מס ערך מוסף של המוצר בארץ מוכר. קץ שלטון. <br> אם המוכר והקונה בקהילה וסחורות אירופה הם מוצרי תחבורה (מכונית, ספינה, מטוס), המע"מ מחדל = 0 (המע"מ צריך להיות משולם על ידי הקונה על customoffice של ארצו ולא המוכר). קץ שלטון. <br> אם המוכר והקונה בקהילה הקונה האירופי היא לא חברה, אז כברירת מחדל מע"מ = מס ערך מוסף של המוצר שנמכר. קץ שלטון. <br> אם המוכר והקונה בקהילה האירופית הקונה היא חברה, אז מע"מ כברירת מחדל = 0. קץ שלטון. <br> אחר מע"מ ברירת המחדל המוצעת = 0. קץ שלטון.
|
||||
|
|
@ -921,7 +921,7 @@ TriggerDisabledAsModuleDisabled=גורמים בקובץ זה אינם זמיני
|
|||
TriggerAlwaysActive=גורמים בקובץ זה תמיד פעיל, לא משנה מה הם מודולים Dolibarr מופעל.
|
||||
TriggerActiveAsModuleActive=גורמים בקובץ זה הם פעיל <b>%s</b> מודול מופעלת.
|
||||
GeneratedPasswordDesc=להגדיר כאן כלל שבו ברצונך להשתמש כדי ליצור סיסמה חדשה אם אתה שואל כדי שהסיסמה אוטומטי שנוצר
|
||||
DictionnaryDesc=להגדיר כאן את כל datas הפניה. אתה יכול להשלים ערך מוגדר מראש עם שלך.
|
||||
DictionaryDesc=להגדיר כאן את כל datas הפניה. אתה יכול להשלים ערך מוגדר מראש עם שלך.
|
||||
ConstDesc=דף זה מאפשר לך לערוך את כל הפרמטרים האחרים לא זמין בעמודים הקודמים. הם שמורים הפרמטרים למפתחים מתקדמים או troubleshouting.
|
||||
OnceSetupFinishedCreateUsers=אזהרה, אתה משתמש שמנהל Dolibarr. מנהל משתמשים רגילים להגדיר Dolibarr. לשימוש הרגיל של Dolibarr, מומלץ להשתמש משתמש של מנהל מערכת לא נוצר משתמשים & תפריט קבוצות.
|
||||
MiscellaneousDesc=להגדיר כאן את כל הפרמטרים האחרים הקשורים לביטחון.
|
||||
|
|
@ -1425,7 +1425,7 @@ AccountancyCode=חשבונאות קוד
|
|||
AgendaSetup=אירועים מודול ההתקנה סדר היום
|
||||
PasswordTogetVCalExport=מפתח לאשר הקישור יצוא
|
||||
PastDelayVCalExport=לא יצא אירוע מבוגרת
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionnary->llx_c_actioncomm)
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionary->llx_c_actioncomm)
|
||||
##### ClickToDial #####
|
||||
ClickToDialDesc=מודול זה מאפשר להוסיף סמל אחרי מספרי טלפון. לחץ על סמל זה נקרא שרת עם כתובת ה-URL מסוים אתה מגדיר להלן. זה יכול לשמש כדי להתקשר למוקד הטלפוני המערכת Dolibarr שיכול להתקשר למספר הטלפון על מערכת SIP למשל.
|
||||
##### Point Of Sales (CashDesk) #####
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ LibraryVersion=גרסה
|
|||
# SourceRequired=Data value is mandatory
|
||||
# SourceExample=Example of possible data value
|
||||
# ExampleAnyRefFoundIntoElement=Any ref found for element <b>%s</b>
|
||||
# ExampleAnyCodeOrIdFoundIntoDictionnary=Any code (or id) found into dictionnary <b>%s</b>
|
||||
# ExampleAnyCodeOrIdFoundIntoDictionary=Any code (or id) found into dictionnary <b>%s</b>
|
||||
# CSVFormatDesc=<b>Comma Separated Value</b> file format (.csv).<br>This is a text file format where fields are separated by separator [ %s ]. If separator is found inside a field content, field is rounded by round character [ %s ]. Escape character to escape round character is [ %s ].
|
||||
# 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).
|
||||
|
|
|
|||
|
|
@ -572,7 +572,7 @@ EventLogs=יומנים
|
|||
# TotalMan=Total
|
||||
# NeverReceived=Never received
|
||||
# Canceled=Canceled
|
||||
# YouCanChangeValuesForThisListFromDictionnarySetup=You can change values for this list from menu setup - dictionnary
|
||||
# YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionnary
|
||||
# Color=Color
|
||||
# Documents=Linked files
|
||||
# DocumentsNb=Linked files (%s)
|
||||
|
|
|
|||
|
|
@ -43,8 +43,8 @@ SecuritySetup=Biztonsági beállítások
|
|||
ErrorModuleRequirePHPVersion=Hiba történt, ez a modul a PHP verzió vagy újabb %s
|
||||
ErrorModuleRequireDolibarrVersion=Hiba történt, ez a modul Dolibarr %s verzió vagy újabb
|
||||
ErrorDecimalLargerThanAreForbidden=Hiba, a precíziós magasabb <b>%s</b> nem támogatott.
|
||||
DictionnarySetup=Szótár beállítási
|
||||
# Dictionnary=Dictionaries
|
||||
DictionarySetup=Szótár beállítási
|
||||
# Dictionary=Dictionaries
|
||||
# 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
|
||||
DisableJavascript=Disable JavaScript és Ajax funkciókkal
|
||||
|
|
@ -726,34 +726,34 @@ Permission50202=Import ügyletek
|
|||
# Permission55002=Create/modify surveys
|
||||
# Permission59001=Read commercial margins
|
||||
# Permission59002=Define commercial margins
|
||||
DictionnaryCompanyType=Cég típusok
|
||||
DictionnaryCompanyJuridicalType=Jogi féle cég
|
||||
DictionnaryProspectLevel=Prospect potenciális szintjétől
|
||||
DictionnaryCanton=Állami / kantonok
|
||||
DictionnaryRegion=Régiók
|
||||
DictionnaryCountry=Országok
|
||||
DictionnaryCurrency=Pénznemek
|
||||
DictionnaryCivility=Udvariasság cím
|
||||
DictionnaryActions=Típusa napirendi események
|
||||
DictionnarySocialContributions=Társadalombiztosítási hozzájárulások típusai
|
||||
DictionnaryVAT=HÉA-kulcsok vagy Értékesítés adókulcsok
|
||||
# DictionnaryRevenueStamp=Amount of revenue stamps
|
||||
DictionnaryPaymentConditions=Fizetési feltételek
|
||||
DictionnaryPaymentModes=Fizetési módok
|
||||
DictionnaryTypeContact=Kapcsolat típusok
|
||||
DictionnaryEcotaxe=Ökoadó (WEEE)
|
||||
DictionnaryPaperFormat=Papír formátumok
|
||||
DictionnaryFees=Típusa díjak
|
||||
DictionnarySendingMethods=Szállítási módok
|
||||
DictionnaryStaff=Személyzet
|
||||
DictionnaryAvailability=Szállítási késedelem
|
||||
DictionnaryOrderMethods=Rendelés módszerek
|
||||
DictionnarySource=Származási javaslatok / megrendelések
|
||||
# DictionnaryAccountancyplan=Chart of accounts
|
||||
# DictionnaryAccountancysystem=Models for chart of accounts
|
||||
DictionaryCompanyType=Cég típusok
|
||||
DictionaryCompanyJuridicalType=Jogi féle cég
|
||||
DictionaryProspectLevel=Prospect potenciális szintjétől
|
||||
DictionaryCanton=Állami / kantonok
|
||||
DictionaryRegion=Régiók
|
||||
DictionaryCountry=Országok
|
||||
DictionaryCurrency=Pénznemek
|
||||
DictionaryCivility=Udvariasság cím
|
||||
DictionaryActions=Típusa napirendi események
|
||||
DictionarySocialContributions=Társadalombiztosítási hozzájárulások típusai
|
||||
DictionaryVAT=HÉA-kulcsok vagy Értékesítés adókulcsok
|
||||
# DictionaryRevenueStamp=Amount of revenue stamps
|
||||
DictionaryPaymentConditions=Fizetési feltételek
|
||||
DictionaryPaymentModes=Fizetési módok
|
||||
DictionaryTypeContact=Kapcsolat típusok
|
||||
DictionaryEcotaxe=Ökoadó (WEEE)
|
||||
DictionaryPaperFormat=Papír formátumok
|
||||
DictionaryFees=Típusa díjak
|
||||
DictionarySendingMethods=Szállítási módok
|
||||
DictionaryStaff=Személyzet
|
||||
DictionaryAvailability=Szállítási késedelem
|
||||
DictionaryOrderMethods=Rendelés módszerek
|
||||
DictionarySource=Származási javaslatok / megrendelések
|
||||
# DictionaryAccountancyplan=Chart of accounts
|
||||
# DictionaryAccountancysystem=Models for chart of accounts
|
||||
SetupSaved=Beállítás mentett
|
||||
BackToModuleList=Visszalép a modulok listáját
|
||||
BackToDictionnaryList=Visszalép a szótárak listája
|
||||
BackToDictionaryList=Visszalép a szótárak listája
|
||||
VATReceivedOnly=Speciális kulcs nincs feltöltve
|
||||
VATManagement=ÁFA kezelés
|
||||
VATIsUsedDesc=Az ÁFA-kulcs létrehozásakor alapértelmezés szerint kilátások, számlák, megrendelések, stb kövesse a normál aktív szabályt: <br> Ha az eladó a HÉA alá, majd HÉA default = 0. Vége a szabály. <br> Ha a (eladási = vételi ország ország), akkor az ÁFA ÁFA = alapértelmezés szerint a termék az eladó ország. Vége a szabály. <br> Ha az eladó és a vevő az Európai Közösség és az áruk szállítása termékek (autó, hajó, repülő), az alapértelmezett ÁFA = 0 (a HÉA-t kell fizetni a vevő a customoffice hazája, és nem az eladónak). Vége a szabály. <br> Ha az eladó és a vevő az Európai Közösség és a vevő nem egy cég, akkor az ÁFA ÁFA = alapértelmezés szerint értékesített termékek. Vége a szabály. <br> Ha az eladó és a vevő az Európai Közösség és a vevő egy cég, akkor a HÉA default = 0. Vége a szabály. <br> Különben a javasolt alapértelmezett ÁFA = 0. Vége a szabály.
|
||||
|
|
@ -921,7 +921,7 @@ TriggerDisabledAsModuleDisabled=Triggerek ebben a fájlban vannak tiltva, mint <
|
|||
TriggerAlwaysActive=Triggerek ebben a fájlban mindig aktív, függetlenül az aktivált Dolibarr modulokat.
|
||||
TriggerActiveAsModuleActive=Triggerek ebben a fájlban vannak aktív <b>%s</b> modul engedélyezve van.
|
||||
GeneratedPasswordDesc=Határozza meg itt, hogy melyik szabályt kívánja használni, hogy új jelszót, ha kéred, hogy automatikusan generált jelszó
|
||||
DictionnaryDesc=Adjuk meg itt az összes referencia adatok. Készítse el előre meghatározott értéket a tiéd.
|
||||
DictionaryDesc=Adjuk meg itt az összes referencia adatok. Készítse el előre meghatározott értéket a tiéd.
|
||||
ConstDesc=Ez az oldal lehetővé teszi, hogy módosítsuk az összes többi paraméter nem áll rendelkezésre az előző oldalakon. Ők tartják fenn paraméterek haladó fejlesztőknek vagy troubleshouting.
|
||||
OnceSetupFinishedCreateUsers=Figyelem, egy Dolibarr rendszergazdaként. Rendszergazda felhasználók használják Dolibarr beállítani. A szokásos használat Dolibarr, akkor ajánlatos használni egy nem adminisztrátori felhasználói létre Felhasználók és csoportok menüben.
|
||||
MiscellaneousDesc=Adjuk meg itt az összes többi paraméter a biztonsággal kapcsolatos.
|
||||
|
|
@ -1425,7 +1425,7 @@ AccountancyCode=Számviteli kód
|
|||
AgendaSetup=Rendezvények és napirend modul beállítási
|
||||
PasswordTogetVCalExport=Főbb kiviteli engedélyezésének linket
|
||||
PastDelayVCalExport=Ne export esetén, mint a régebbi
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionnary->llx_c_actioncomm)
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionary->llx_c_actioncomm)
|
||||
##### ClickToDial #####
|
||||
ClickToDialDesc=Ez a modul lehetővé teszi, hogy egészítsék ki egy ikont telefonszámot. Egy kattintással erre az ikonra fogja hívni a szerver egy adott URL-t meg az alábbiakban. Ezt fel lehet használni, hogy hívja a call center rendszert Dolibarr hogy hívhatjuk a telefonszámot egy SIP rendszert pl.
|
||||
##### Point Of Sales (CashDesk) #####
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ DataCodeIDSourceIsInsertedInto=Az id a szülői vonal megtalálható a kód, akk
|
|||
SourceRequired=Adatérték kötelező
|
||||
SourceExample=Példa lehet az adatok értékét
|
||||
ExampleAnyRefFoundIntoElement=Minden ref talált elem <b>%s</b>
|
||||
ExampleAnyCodeOrIdFoundIntoDictionnary=Bármely kód (vagy azonosító) találtak a dictionnary <b>%s</b>
|
||||
ExampleAnyCodeOrIdFoundIntoDictionary=Bármely kód (vagy azonosító) találtak a dictionnary <b>%s</b>
|
||||
CSVFormatDesc=<b>Vesszővel elválasztott</b> fájlformátum (. Csv). <br> Ez egy szöveges fájl formátum ahol a mezők egymástól elválasztó [%s]. Ha az elválasztó belsejében található egy mező tartalmát, mező kerekíteni kerek karakter [%s]. Escape karakter menekülni kerek karakter [%s].
|
||||
# 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).
|
||||
|
|
|
|||
|
|
@ -572,7 +572,7 @@ TotalWoman=Összes
|
|||
TotalMan=Összes
|
||||
NeverReceived=Soha nem került átvételre
|
||||
Canceled=Megszakítva
|
||||
YouCanChangeValuesForThisListFromDictionnarySetup=A menü beállításból megváltoztatható ennek a listának az értékei
|
||||
YouCanChangeValuesForThisListFromDictionarySetup=A menü beállításból megváltoztatható ennek a listának az értékei
|
||||
Color=Szín
|
||||
Documents=Kapcsolt fájlok
|
||||
DocumentsNb=Kapcsolt fájlok (%s)
|
||||
|
|
|
|||
|
|
@ -43,8 +43,8 @@ SecuritySetup=Öryggi skipulag
|
|||
ErrorModuleRequirePHPVersion=Villa, þessa einingu þarf PHP útgáfa %s eða hærri
|
||||
ErrorModuleRequireDolibarrVersion=Villa, þessa einingu þarf Dolibarr útgáfu %s eða hærri
|
||||
ErrorDecimalLargerThanAreForbidden=Villa, a nákvæmni hærra <b>en %s </b> er ekki studd.
|
||||
DictionnarySetup=Orðabók skipulag
|
||||
# Dictionnary=Dictionaries
|
||||
DictionarySetup=Orðabók skipulag
|
||||
# Dictionary=Dictionaries
|
||||
# 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
|
||||
DisableJavascript=Slökkva á Javascript og Ajax aðgerðir
|
||||
|
|
@ -726,34 +726,34 @@ Permission50202=Flytja viðskipti
|
|||
# Permission55002=Create/modify surveys
|
||||
# Permission59001=Read commercial margins
|
||||
# Permission59002=Define commercial margins
|
||||
DictionnaryCompanyType=Fyrirtæki tegundir
|
||||
DictionnaryCompanyJuridicalType=Lögpersóna konar fyrirtæki
|
||||
DictionnaryProspectLevel=Prospect hugsanleg stig
|
||||
DictionnaryCanton=Ríki / kgm
|
||||
DictionnaryRegion=Svæði
|
||||
DictionnaryCountry=Lönd
|
||||
DictionnaryCurrency=Gjaldmiðlar
|
||||
DictionnaryCivility=Civility titill
|
||||
DictionnaryActions=Actions lista
|
||||
DictionnarySocialContributions=Tryggingagjöld tegundir
|
||||
DictionnaryVAT=VSK Verð
|
||||
# DictionnaryRevenueStamp=Amount of revenue stamps
|
||||
DictionnaryPaymentConditions=Greiðsla skilyrði
|
||||
DictionnaryPaymentModes=Greiðsla stillingar
|
||||
DictionnaryTypeContact=Hafðu tegundir
|
||||
DictionnaryEcotaxe=Ecotax (raf-og rafeindabúnaðarúrgang)
|
||||
DictionnaryPaperFormat=Pappír snið
|
||||
DictionnaryFees=Tegund Gjaldskrá
|
||||
DictionnarySendingMethods=Sendings aðferðir
|
||||
DictionnaryStaff=Starfsfólk
|
||||
DictionnaryAvailability=Afhending töf
|
||||
DictionnaryOrderMethods=Röðun aðferðir
|
||||
DictionnarySource=Uppruni tillögur / pantanir
|
||||
# DictionnaryAccountancyplan=Chart of accounts
|
||||
# DictionnaryAccountancysystem=Models for chart of accounts
|
||||
DictionaryCompanyType=Fyrirtæki tegundir
|
||||
DictionaryCompanyJuridicalType=Lögpersóna konar fyrirtæki
|
||||
DictionaryProspectLevel=Prospect hugsanleg stig
|
||||
DictionaryCanton=Ríki / kgm
|
||||
DictionaryRegion=Svæði
|
||||
DictionaryCountry=Lönd
|
||||
DictionaryCurrency=Gjaldmiðlar
|
||||
DictionaryCivility=Civility titill
|
||||
DictionaryActions=Actions lista
|
||||
DictionarySocialContributions=Tryggingagjöld tegundir
|
||||
DictionaryVAT=VSK Verð
|
||||
# DictionaryRevenueStamp=Amount of revenue stamps
|
||||
DictionaryPaymentConditions=Greiðsla skilyrði
|
||||
DictionaryPaymentModes=Greiðsla stillingar
|
||||
DictionaryTypeContact=Hafðu tegundir
|
||||
DictionaryEcotaxe=Ecotax (raf-og rafeindabúnaðarúrgang)
|
||||
DictionaryPaperFormat=Pappír snið
|
||||
DictionaryFees=Tegund Gjaldskrá
|
||||
DictionarySendingMethods=Sendings aðferðir
|
||||
DictionaryStaff=Starfsfólk
|
||||
DictionaryAvailability=Afhending töf
|
||||
DictionaryOrderMethods=Röðun aðferðir
|
||||
DictionarySource=Uppruni tillögur / pantanir
|
||||
# DictionaryAccountancyplan=Chart of accounts
|
||||
# DictionaryAccountancysystem=Models for chart of accounts
|
||||
SetupSaved=Skipulag vistuð
|
||||
BackToModuleList=Til baka í mát lista
|
||||
BackToDictionnaryList=Til baka orðabækur lista
|
||||
BackToDictionaryList=Til baka orðabækur lista
|
||||
VATReceivedOnly=Special hlutfall ákæra ekki
|
||||
VATManagement=VSK Stjórn
|
||||
VATIsUsedDesc=VSK-hlutfall sjálfgefið þegar þú býrð til viðskiptavina, reikninga, pantanir o.þ.h. fylgja virku staðall reglu: <br> Ef seljandi er með VSK, þá VSK sjálfgefið = 0. Lok reglu. <br> Ef (selja country = kaupa land), svo VSK sjálfgefið = VSK af vörunni í að selja landið. Lok reglu. <br> Ef seljanda og kaupanda í Evrópubandalagið og vörur eru seldar með nýjum flutningatæki (bíll, skip, flugvél) er sjálfgefna VSK = 0 (VSK ætti að vera greiddur af kaupanda við customoffice lands síns og ekki á seljandi ). Lok reglu. <br> Ef seljanda og kaupanda í Evrópubandalagið og seldum vörum með öðrum hætti en nýr flutningatæki, svo VSK sjálfgefið = VSK af vörunni seld. Lok reglu. <br> Annars fyrirhugaðar sjálfgefið VSK = 1. Lok reglu.
|
||||
|
|
@ -921,7 +921,7 @@ TriggerDisabledAsModuleDisabled=Hrindir af stað í þessari skrá eru óvirk se
|
|||
TriggerAlwaysActive=Hrindir af stað í þessari skrá eru alltaf virk, hvað sem er virkjaður Dolibarr mát.
|
||||
TriggerActiveAsModuleActive=Hrindir af stað í þessari skrá eru virku og <b>mát %s </b> er virkt.
|
||||
GeneratedPasswordDesc=Veldu hér sem regla sem þú vilt nota til að búa til nýtt lykilorð ef þú beðið um að hafa farartæki mynda lykilorð
|
||||
DictionnaryDesc=Define hér öll tilvísun gögn. Þú getur lokið fyrirfram gildi við þitt.
|
||||
DictionaryDesc=Define hér öll tilvísun gögn. Þú getur lokið fyrirfram gildi við þitt.
|
||||
ConstDesc=Þessi síða leyfir þér að breyta öllum öðrum breytum ekki í boði í fyrri síður. Þau eru frátekin breytur fyrir háþróaður verktaki eða troubleshouting.
|
||||
OnceSetupFinishedCreateUsers=Aðvörun, ertu Dolibarr stjórnandi notandann. Stjórnandi notendur eru notuð til að skipulag Dolibarr. Fyrir venjulega notkun Dolibarr, það er mælt með að nota ekki stjórnandi notandi stofnaðar Notendur & Groups valmyndinni.
|
||||
MiscellaneousDesc=Veldu hér öllum öðrum þáttum sem tengjast öryggi.
|
||||
|
|
@ -1425,7 +1425,7 @@ AccountancyCode=Bankar Code
|
|||
AgendaSetup=Aðgerðir og dagskrá mát skipulag
|
||||
PasswordTogetVCalExport=Lykill að heimila útflutning hlekkur
|
||||
PastDelayVCalExport=Ekki flytja atburður eldri en
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionnary->llx_c_actioncomm)
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionary->llx_c_actioncomm)
|
||||
##### ClickToDial #####
|
||||
ClickToDialDesc=Þessi eining leyfir þér að bæta við tákn eftir símanúmeri Dolibarr tengiliði. A smella á þetta tákn mun hringja í serveur með ákveðinni vefslóð sem þú tilgreinir hér að neðan. Þetta má nota til að hringja í miðju símtali kerfi frá Dolibarr að geta hringt í símanúmer á SIP kerfi til dæmis.
|
||||
##### Point Of Sales (CashDesk) #####
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ DataCodeIDSourceIsInsertedInto=Einkennisnúmer línu foreldri finnst af kóða,
|
|||
SourceRequired=Gögn gildi er nauðsynlegur
|
||||
SourceExample=Dæmi um hugsanlegar gildi gögn
|
||||
ExampleAnyRefFoundIntoElement=Allar tilv fann fyrir <b>%s</b> þátturinn
|
||||
ExampleAnyCodeOrIdFoundIntoDictionnary=Allir númer (eða id) fannst í dictionnary <b>%s</b>
|
||||
ExampleAnyCodeOrIdFoundIntoDictionary=Allir númer (eða id) fannst í dictionnary <b>%s</b>
|
||||
CSVFormatDesc=<b>Comma Seperated Gildi</b> skráarsnið (. Csv). <br> Þetta er textaskrá snið þar sem reitir eru aðskilin með skiltákn [%s]. Ef skiltákn finnst inni í reitinn innihald er á sviði rúnnuð með umferð karakter [%s]. Flýja staf til að flýja umferð eðli er [%s].
|
||||
# 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).
|
||||
|
|
|
|||
|
|
@ -572,7 +572,7 @@ TotalWoman=Samtals
|
|||
TotalMan=Samtals
|
||||
NeverReceived=Aldrei fengið
|
||||
Canceled=Hætt við
|
||||
YouCanChangeValuesForThisListFromDictionnarySetup=Þú getur breytt gildi fyrir þennan lista frá skipulag matseðill - dictionnary
|
||||
YouCanChangeValuesForThisListFromDictionarySetup=Þú getur breytt gildi fyrir þennan lista frá skipulag matseðill - dictionnary
|
||||
Color=Litur
|
||||
Documents=Hlekkur skrá
|
||||
DocumentsNb=Hlekkur skrá ( %s )
|
||||
|
|
|
|||
|
|
@ -43,8 +43,8 @@ SecuritySetup=Impostazioni per la sicurezza
|
|||
ErrorModuleRequirePHPVersion=Errore, questo modulo richiede PHP versione %s o superiore.
|
||||
ErrorModuleRequireDolibarrVersion=Errore, questo modulo richiede Dolibarr versione %s o superiore.
|
||||
ErrorDecimalLargerThanAreForbidden=Errore, una precisione superiore a <b> %s </b> non è supportata.
|
||||
DictionnarySetup=Configurazione dizionario
|
||||
Dictionnary=Dizionari
|
||||
DictionarySetup=Configurazione dizionario
|
||||
Dictionary=Dizionari
|
||||
ErrorReservedTypeSystemSystemAuto=I valori 'system' e 'systemauto' sono riservati. Puoi usare 'user' come valore da aggiungere al tuo record.
|
||||
ErrorCodeCantContainZero=Il codice non può contenere il valore 0
|
||||
DisableJavascript=Disabilita JavaScript e funzioni Ajax
|
||||
|
|
@ -726,34 +726,34 @@ Permission50202=Importare transazioni
|
|||
# Permission55002=Create/modify surveys
|
||||
# Permission59001=Read commercial margins
|
||||
# Permission59002=Define commercial margins
|
||||
DictionnaryCompanyType=Tipi di azienda
|
||||
DictionnaryCompanyJuridicalType=Forme giuridiche di impresa
|
||||
DictionnaryProspectLevel=Livello prospettiva potenziale cliente
|
||||
DictionnaryCanton=Province
|
||||
DictionnaryRegion=Regioni
|
||||
DictionnaryCountry=Paesi
|
||||
DictionnaryCurrency=Valute
|
||||
DictionnaryCivility=Titoli civili
|
||||
DictionnaryActions=Tipi di azioni/eventi
|
||||
DictionnarySocialContributions=Tipi di contributi
|
||||
DictionnaryVAT=Aliquote IVA
|
||||
# DictionnaryRevenueStamp=Amount of revenue stamps
|
||||
DictionnaryPaymentConditions=Condizioni di pagamento
|
||||
DictionnaryPaymentModes=Modalità di pagamento
|
||||
DictionnaryTypeContact=Tipi di contatto
|
||||
DictionnaryEcotaxe=Ecotassa (RAEE)
|
||||
DictionnaryPaperFormat=Formati di carta
|
||||
DictionnaryFees=Tipo di tasse
|
||||
DictionnarySendingMethods=Metodi di invio
|
||||
DictionnaryStaff=Personale
|
||||
DictionnaryAvailability=Ritardo nella consegna
|
||||
DictionnaryOrderMethods=Metodi di ordinamento
|
||||
DictionnarySource=Origine degli ordini/proposte
|
||||
# DictionnaryAccountancyplan=Chart of accounts
|
||||
# DictionnaryAccountancysystem=Models for chart of accounts
|
||||
DictionaryCompanyType=Tipi di azienda
|
||||
DictionaryCompanyJuridicalType=Forme giuridiche di impresa
|
||||
DictionaryProspectLevel=Livello prospettiva potenziale cliente
|
||||
DictionaryCanton=Province
|
||||
DictionaryRegion=Regioni
|
||||
DictionaryCountry=Paesi
|
||||
DictionaryCurrency=Valute
|
||||
DictionaryCivility=Titoli civili
|
||||
DictionaryActions=Tipi di azioni/eventi
|
||||
DictionarySocialContributions=Tipi di contributi
|
||||
DictionaryVAT=Aliquote IVA
|
||||
# DictionaryRevenueStamp=Amount of revenue stamps
|
||||
DictionaryPaymentConditions=Condizioni di pagamento
|
||||
DictionaryPaymentModes=Modalità di pagamento
|
||||
DictionaryTypeContact=Tipi di contatto
|
||||
DictionaryEcotaxe=Ecotassa (RAEE)
|
||||
DictionaryPaperFormat=Formati di carta
|
||||
DictionaryFees=Tipo di tasse
|
||||
DictionarySendingMethods=Metodi di invio
|
||||
DictionaryStaff=Personale
|
||||
DictionaryAvailability=Ritardo nella consegna
|
||||
DictionaryOrderMethods=Metodi di ordinamento
|
||||
DictionarySource=Origine degli ordini/proposte
|
||||
# DictionaryAccountancyplan=Chart of accounts
|
||||
# DictionaryAccountancysystem=Models for chart of accounts
|
||||
SetupSaved=Impostazioni salvate
|
||||
BackToModuleList=Torna alla lista moduli
|
||||
BackToDictionnaryList=Torna alla lista dizionari
|
||||
BackToDictionaryList=Torna alla lista dizionari
|
||||
VATReceivedOnly=Tariffa speciale non dovuta
|
||||
VATManagement=Gestione IVA
|
||||
VATIsUsedDesc=Impostazione predefinita dell'aliquota IVA usata per la creazione di prospetti, fatture, ordini, ecc <br/> Applicata se il venditore è soggetto ad IVA.
|
||||
|
|
@ -921,7 +921,7 @@ TriggerDisabledAsModuleDisabled=I trigger in questo file sono disabilitati perch
|
|||
TriggerAlwaysActive=I trigger in questo file sono sempre attivi, indipendentemente da quali moduli siano attivi in Dolibarr.
|
||||
TriggerActiveAsModuleActive=I trigger in questo file sono attivi se il modulo <b>%s</b> è attivo.
|
||||
GeneratedPasswordDesc=Regola per la generazione di nuove password generate automaticamente
|
||||
DictionnaryDesc=Definire qui tutti i dati di riferimento. è possibile integrare i valori predefinito con i vostri.
|
||||
DictionaryDesc=Definire qui tutti i dati di riferimento. è possibile integrare i valori predefinito con i vostri.
|
||||
ConstDesc=Questa pagina ti permette di modificare tutti i parametri non disponibili nelle pagine precedenti. Si tratta di parametri riservati per lo sviluppo o il troubleshooting.
|
||||
OnceSetupFinishedCreateUsers=Attenzione, sei un utente amministratore Dolibarr. Le utenze amministrative vanno utilizzate per l'impostazione del sistema. Per un uso abituale di Dolibarr si raccomanda di non utilizzare un utente amministratore, ma crearne uno nuovo dal menu utenti e gruppi.
|
||||
MiscellaneousDesc=Definire qui tutti gli altri parametri relativi alla sicurezza.
|
||||
|
|
@ -1425,7 +1425,7 @@ AccountancyCode=Codice contabile
|
|||
AgendaSetup=Impostazioni modulo agenda
|
||||
PasswordTogetVCalExport=Chiave per autorizzare l'esportazione di link
|
||||
PastDelayVCalExport=Non esportare evento più vecchio di
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionnary->llx_c_actioncomm)
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionary->llx_c_actioncomm)
|
||||
##### ClickToDial #####
|
||||
ClickToDialDesc=Questo modulo aggiunge una icona accanto ai numeri telefonici dei contatti in Dolibarr.<br/> Cliccando sull'icona si attiva il collegamento al server che effettuerà le chiamate telefoniche.
|
||||
##### Point Of Sales (CashDesk) #####
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ DataCodeIDSourceIsInsertedInto=L'id della riga superiore trovato dal codice verr
|
|||
SourceRequired=valore dei dati è obbligatorio
|
||||
SourceExample=Esempio di possibile valore di dati
|
||||
ExampleAnyRefFoundIntoElement=Qualsiasi ref trovati per <b>%s</b> elementi
|
||||
ExampleAnyCodeOrIdFoundIntoDictionnary=Qualsiasi codice (o id) hanno trovato in <b>%s</b> Dizionario
|
||||
ExampleAnyCodeOrIdFoundIntoDictionary=Qualsiasi codice (o id) hanno trovato in <b>%s</b> Dizionario
|
||||
CSVFormatDesc=Formato <b>Comma Separated Value</b> (.Csv).<br/>File di testo dove i campi sono separati dal separatore [%s]. Se il separatore è situato all'interno di un contenuto del campo, il campo è circondato dal carattere di contenimento [%s]. Il carattere di escape per il carattere di contenimento è [%s].
|
||||
Excel95FormatDesc=Formato <b>Excel</b> (.xls)<br>Questo è il formato nativo Excel 95 (BIFF5).
|
||||
Excel2007FormatDesc=Formato <b>Excel</b> (.xlsx)<br>Questo è il formato nativo Excel 2007 (SpreadsheetML).
|
||||
|
|
|
|||
|
|
@ -572,7 +572,7 @@ TotalWoman=Totale
|
|||
TotalMan=Totale
|
||||
NeverReceived=Mai ricevuto
|
||||
Canceled=Annullato
|
||||
YouCanChangeValuesForThisListFromDictionnarySetup=È possibile modificare i valori di questo elenco dal menu Impostazioni - Dizionario
|
||||
YouCanChangeValuesForThisListFromDictionarySetup=È possibile modificare i valori di questo elenco dal menu Impostazioni - Dizionario
|
||||
Color=Colore
|
||||
Documents=Documenti
|
||||
DocumentsNb=file collegati (%s)
|
||||
|
|
|
|||
|
|
@ -43,8 +43,8 @@ SecuritySetup=セキュリティの設定
|
|||
ErrorModuleRequirePHPVersion=エラーは、このモジュールは、PHPのバージョン%s以上が必要です
|
||||
ErrorModuleRequireDolibarrVersion=エラー、このモジュールはDolibarrバージョン%s以上が必要です
|
||||
ErrorDecimalLargerThanAreForbidden=<b>%s</b>より精度の高いエラーは、サポートされていません。
|
||||
DictionnarySetup=辞書のセットアップ
|
||||
# Dictionnary=Dictionaries
|
||||
DictionarySetup=辞書のセットアップ
|
||||
# Dictionary=Dictionaries
|
||||
# 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
|
||||
DisableJavascript=JavaScriptとAjaxの機能を無効にする
|
||||
|
|
@ -726,34 +726,34 @@ Permission50202=輸入取引
|
|||
# Permission55002=Create/modify surveys
|
||||
# Permission59001=Read commercial margins
|
||||
# Permission59002=Define commercial margins
|
||||
DictionnaryCompanyType=会社の種類
|
||||
DictionnaryCompanyJuridicalType=会社の法人の種類
|
||||
DictionnaryProspectLevel=見通しの潜在的なレベル
|
||||
DictionnaryCanton=状態/カントン
|
||||
DictionnaryRegion=地域
|
||||
DictionnaryCountry=国
|
||||
DictionnaryCurrency=通貨
|
||||
DictionnaryCivility=礼儀のタイトル
|
||||
DictionnaryActions=アジェンダイベントのタイプ
|
||||
DictionnarySocialContributions=社会貢献活動の種類
|
||||
DictionnaryVAT=VATレートまたは販売税率
|
||||
# DictionnaryRevenueStamp=Amount of revenue stamps
|
||||
DictionnaryPaymentConditions=支払条件
|
||||
DictionnaryPaymentModes=支払いモード
|
||||
DictionnaryTypeContact=種類をお問い合わせ
|
||||
DictionnaryEcotaxe=Ecotax(WEEE)
|
||||
DictionnaryPaperFormat=紙の形式
|
||||
DictionnaryFees=手数料の種類
|
||||
DictionnarySendingMethods=配送方法
|
||||
DictionnaryStaff=スタッフ
|
||||
DictionnaryAvailability=配達遅延
|
||||
DictionnaryOrderMethods=注文方法
|
||||
DictionnarySource=提案/受注の起源
|
||||
# DictionnaryAccountancyplan=Chart of accounts
|
||||
# DictionnaryAccountancysystem=Models for chart of accounts
|
||||
DictionaryCompanyType=会社の種類
|
||||
DictionaryCompanyJuridicalType=会社の法人の種類
|
||||
DictionaryProspectLevel=見通しの潜在的なレベル
|
||||
DictionaryCanton=状態/カントン
|
||||
DictionaryRegion=地域
|
||||
DictionaryCountry=国
|
||||
DictionaryCurrency=通貨
|
||||
DictionaryCivility=礼儀のタイトル
|
||||
DictionaryActions=アジェンダイベントのタイプ
|
||||
DictionarySocialContributions=社会貢献活動の種類
|
||||
DictionaryVAT=VATレートまたは販売税率
|
||||
# DictionaryRevenueStamp=Amount of revenue stamps
|
||||
DictionaryPaymentConditions=支払条件
|
||||
DictionaryPaymentModes=支払いモード
|
||||
DictionaryTypeContact=種類をお問い合わせ
|
||||
DictionaryEcotaxe=Ecotax(WEEE)
|
||||
DictionaryPaperFormat=紙の形式
|
||||
DictionaryFees=手数料の種類
|
||||
DictionarySendingMethods=配送方法
|
||||
DictionaryStaff=スタッフ
|
||||
DictionaryAvailability=配達遅延
|
||||
DictionaryOrderMethods=注文方法
|
||||
DictionarySource=提案/受注の起源
|
||||
# DictionaryAccountancyplan=Chart of accounts
|
||||
# DictionaryAccountancysystem=Models for chart of accounts
|
||||
SetupSaved=セットアップは、保存された
|
||||
BackToModuleList=モジュールリストに戻る
|
||||
BackToDictionnaryList=辞書リストに戻る
|
||||
BackToDictionaryList=辞書リストに戻る
|
||||
VATReceivedOnly=特別料金でご利用いただけません
|
||||
VATManagement=付加価値税管理
|
||||
VATIsUsedDesc=見通しを作成して、デフォルトでは付加価値税率、請求書、発注などのアクティブな標準ルールに従います。 <br>デフォルト= 0により、売主が付加価値税の対象とされている場合は、付加価値税。ルールの終わり。 <br> IF(販売国=国を購入)し、販売国の製品のデフォルトでは付加価値税= VAT。ルールの終わり。 <br>欧州共同体及び物品の売り手と買い手は、トランスポート製品(自動車、船、飛行機)、デフォルトの付加価値税= 0(付加価値税は売主で彼の国のcustomofficeでなく買い手によって支払われるべきである。)である場合ルールの終わり。 <br>欧州共同体と買い手の売り手と買い手は、企業、デフォルトでは付加価値製品の販売の=付加価値税ではない場合。ルールの終わり。 <br>欧州共同体と買い手の売り手と買い手の場合は、会社、デフォルトで、付加価値税= 0です。ルールの終わり。 <br>他に提案されたデフォルトの付加価値税= 0になります。ルールの終わり。
|
||||
|
|
@ -921,7 +921,7 @@ TriggerDisabledAsModuleDisabled=モジュール<b>%sが</b>無効<b>になっ</b
|
|||
TriggerAlwaysActive=このファイル内のトリガーがアクティブにDolibarrモジュールであれ、常にアクティブです。
|
||||
TriggerActiveAsModuleActive=モジュール<b>%sが</b>有効<b>になっ</b>ているとして、このファイル内のトリガーがアクティブになります。
|
||||
GeneratedPasswordDesc=あなたが自動生成されたパスワードを持つように要求した場合、新しいパスワードを生成するために使用するルールがここで定義
|
||||
DictionnaryDesc=ここですべての参照件のデータを定義します。あなたはあなたで定義済みの値を完了することができます。
|
||||
DictionaryDesc=ここですべての参照件のデータを定義します。あなたはあなたで定義済みの値を完了することができます。
|
||||
ConstDesc=このページでは、前のページで使用できない他のすべてのパラメータを編集することができます。彼らは高度な開発者のためにまたはtroubleshoutingのパラメータを予約されています。
|
||||
OnceSetupFinishedCreateUsers=警告は、あなたはDolibarr管理者のユーザーです。管理者ユーザーがDolibarrをセットアップするために使用されます。 Dolibarrの通常の使用方法については、それはユーザーとグループ]メニューから作成された非管理者ユーザーを使用することをお勧めします。
|
||||
MiscellaneousDesc=ここでセキュリティに関連する他のすべてのパラメータを定義します。
|
||||
|
|
@ -1425,7 +1425,7 @@ AccountancyCode=会計コード
|
|||
AgendaSetup=イベントと議題モジュールのセットアップ
|
||||
PasswordTogetVCalExport=エクスポートのリンクを許可するキー
|
||||
PastDelayVCalExport=より古いイベントはエクスポートされません
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionnary->llx_c_actioncomm)
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionary->llx_c_actioncomm)
|
||||
##### ClickToDial #####
|
||||
ClickToDialDesc=このモジュールは、電話番号の後にアイコンを追加することができます。このアイコンをクリックすると、あなたは以下の定義、特定のURLを使用してサーバーを呼び出します。これは、例えばSIPシステム上で電話番号を呼び出すことができますDolibarrからのコール·センター·システムを呼び出すために使用することができます。
|
||||
##### Point Of Sales (CashDesk) #####
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ DataCodeIDSourceIsInsertedInto=コードから見つかった親行のID
|
|||
SourceRequired=データ値は必須です。
|
||||
SourceExample=可能なデータ値の例
|
||||
ExampleAnyRefFoundIntoElement=任意のref要素の<b>%s</b>見つかりました
|
||||
ExampleAnyCodeOrIdFoundIntoDictionnary=dictionnary <b>%s</b>に発見されたコード(またはID)
|
||||
ExampleAnyCodeOrIdFoundIntoDictionary=dictionnary <b>%s</b>に発見されたコード(またはID)
|
||||
CSVFormatDesc=<b>カンマ区切りファイル</b>形式(。CSV)。 <br>これは、フィールドがセパレータ[%s]で区切られたテキストファイル形式です。区切り文字はフィールドの内容の中に発見されている場合は、フィールドが円形文字[%s]で丸められます。 [%s]は丸い文字をエスケープする文字をエスケープします。
|
||||
# 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).
|
||||
|
|
|
|||
|
|
@ -572,7 +572,7 @@ TotalWoman=合計
|
|||
TotalMan=合計
|
||||
NeverReceived=受信しませんでした
|
||||
Canceled=キャンセル
|
||||
YouCanChangeValuesForThisListFromDictionnarySetup=dictionnary - あなたは、メニューの設定からこのリストの値を変更することができます
|
||||
YouCanChangeValuesForThisListFromDictionarySetup=dictionnary - あなたは、メニューの設定からこのリストの値を変更することができます
|
||||
Color=カラー
|
||||
Documents=リンクされたファイル
|
||||
DocumentsNb=リンクされたファイル(%s)
|
||||
|
|
|
|||
|
|
@ -43,8 +43,8 @@ VersionLastUpgrade=최종 버전 업그레이드
|
|||
# ErrorModuleRequirePHPVersion=Error, this module requires PHP version %s or higher
|
||||
# ErrorModuleRequireDolibarrVersion=Error, this module requires Dolibarr version %s or higher
|
||||
# ErrorDecimalLargerThanAreForbidden=Error, a precision higher than <b>%s</b> is not supported.
|
||||
# DictionnarySetup=Dictionary setup
|
||||
# Dictionnary=Dictionaries
|
||||
# DictionarySetup=Dictionary setup
|
||||
# Dictionary=Dictionaries
|
||||
# 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
|
||||
# DisableJavascript=Disable JavaScript and Ajax functions
|
||||
|
|
@ -726,34 +726,34 @@ VersionLastUpgrade=최종 버전 업그레이드
|
|||
# Permission55002=Create/modify surveys
|
||||
# Permission59001=Read commercial margins
|
||||
# Permission59002=Define commercial margins
|
||||
# DictionnaryCompanyType=Company types
|
||||
# DictionnaryCompanyJuridicalType=Juridical kinds of company
|
||||
# DictionnaryProspectLevel=Prospect potential level
|
||||
# DictionnaryCanton=State/Cantons
|
||||
# DictionnaryRegion=Regions
|
||||
# DictionnaryCountry=Countries
|
||||
# DictionnaryCurrency=Currencies
|
||||
# DictionnaryCivility=Civility title
|
||||
# DictionnaryActions=Type of agenda events
|
||||
# DictionnarySocialContributions=Social contributions types
|
||||
# DictionnaryVAT=VAT Rates or Sales Tax Rates
|
||||
# DictionnaryRevenueStamp=Amount of revenue stamps
|
||||
# DictionnaryPaymentConditions=Payment terms
|
||||
# DictionnaryPaymentModes=Payment modes
|
||||
# DictionnaryTypeContact=Contact/Address types
|
||||
# DictionnaryEcotaxe=Ecotax (WEEE)
|
||||
# DictionnaryPaperFormat=Paper formats
|
||||
# DictionnaryFees=Type of fees
|
||||
# DictionnarySendingMethods=Shipping methods
|
||||
# DictionnaryStaff=Staff
|
||||
# DictionnaryAvailability=Delivery delay
|
||||
# DictionnaryOrderMethods=Ordering methods
|
||||
# DictionnarySource=Origin of proposals/orders
|
||||
# DictionnaryAccountancyplan=Chart of accounts
|
||||
# DictionnaryAccountancysystem=Models for chart of accounts
|
||||
# DictionaryCompanyType=Company types
|
||||
# DictionaryCompanyJuridicalType=Juridical kinds of company
|
||||
# DictionaryProspectLevel=Prospect potential level
|
||||
# DictionaryCanton=State/Cantons
|
||||
# DictionaryRegion=Regions
|
||||
# DictionaryCountry=Countries
|
||||
# DictionaryCurrency=Currencies
|
||||
# DictionaryCivility=Civility title
|
||||
# DictionaryActions=Type of agenda events
|
||||
# DictionarySocialContributions=Social contributions types
|
||||
# DictionaryVAT=VAT Rates or Sales Tax Rates
|
||||
# DictionaryRevenueStamp=Amount of revenue stamps
|
||||
# DictionaryPaymentConditions=Payment terms
|
||||
# DictionaryPaymentModes=Payment modes
|
||||
# DictionaryTypeContact=Contact/Address types
|
||||
# DictionaryEcotaxe=Ecotax (WEEE)
|
||||
# DictionaryPaperFormat=Paper formats
|
||||
# DictionaryFees=Type of fees
|
||||
# DictionarySendingMethods=Shipping methods
|
||||
# DictionaryStaff=Staff
|
||||
# DictionaryAvailability=Delivery delay
|
||||
# DictionaryOrderMethods=Ordering methods
|
||||
# DictionarySource=Origin of proposals/orders
|
||||
# DictionaryAccountancyplan=Chart of accounts
|
||||
# DictionaryAccountancysystem=Models for chart of accounts
|
||||
# SetupSaved=Setup saved
|
||||
# BackToModuleList=Back to modules list
|
||||
# BackToDictionnaryList=Back to dictionaries list
|
||||
# BackToDictionaryList=Back to dictionaries list
|
||||
# VATReceivedOnly=Special rate not charged
|
||||
# VATManagement=VAT Management
|
||||
# VATIsUsedDesc=The VAT rate by default when creating prospects, invoices, orders etc follow the active standard rule:<br>If the seller is not subjected to VAT, then VAT by default=0. End of rule.<br>If the (selling country= buying country), then the VAT by default=VAT of the product in the selling country. End of rule. <br>If seller and buyer in the European Community and goods are transport products (car, ship, plane), the default VAT=0 ( The VAT should be paid by the buyer at the customoffice of his country and not at the seller). End of rule.<br>If seller and buyer in the European Community and buyer is not a company, then the VAT by default=VAT of product sold. End of rule.<br>If seller and buyer in the European Community and buyer is a company, then the VAT by default=0. End of rule.<br>Else the proposed default VAT=0. End of rule.
|
||||
|
|
@ -921,7 +921,7 @@ LocalTax2IsNotUsedExample=
|
|||
# TriggerAlwaysActive=Triggers in this file are always active, whatever are the activated Dolibarr modules.
|
||||
# TriggerActiveAsModuleActive=Triggers in this file are active as module <b>%s</b> is enabled.
|
||||
# GeneratedPasswordDesc=Define here which rule you want to use to generate new password if you ask to have auto generated password
|
||||
# DictionnaryDesc=Define here all reference datas. You can complete predefined value with yours.
|
||||
# DictionaryDesc=Define here all reference datas. You can complete predefined value with yours.
|
||||
# ConstDesc=This page allows you to edit all other parameters not available in previous pages. They are reserved parameters for advanced developers or for troubleshouting.
|
||||
# OnceSetupFinishedCreateUsers=Warning, you are a Dolibarr administrator user. Administrator users are used to setup Dolibarr. For a usual usage of Dolibarr, it is recommended to use a non administrator user created from Users & Groups menu.
|
||||
# MiscellaneousDesc=Define here all other parameters related to security.
|
||||
|
|
@ -1425,7 +1425,7 @@ LocalTax2IsNotUsedExample=
|
|||
# AgendaSetup=Events and agenda module setup
|
||||
# PasswordTogetVCalExport=Key to authorize export link
|
||||
# PastDelayVCalExport=Do not export event older than
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionnary->llx_c_actioncomm)
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionary->llx_c_actioncomm)
|
||||
##### ClickToDial #####
|
||||
# ClickToDialDesc=This module allows to add an icon after phone numbers. A click on this icon will call a server with a particular URL you define below. This can be used to call a call center system from Dolibarr that can call the phone number on a SIP system for example.
|
||||
##### Point Of Sales (CashDesk) #####
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ LibraryVersion=버전
|
|||
# SourceRequired=Data value is mandatory
|
||||
# SourceExample=Example of possible data value
|
||||
# ExampleAnyRefFoundIntoElement=Any ref found for element <b>%s</b>
|
||||
# ExampleAnyCodeOrIdFoundIntoDictionnary=Any code (or id) found into dictionnary <b>%s</b>
|
||||
# ExampleAnyCodeOrIdFoundIntoDictionary=Any code (or id) found into dictionnary <b>%s</b>
|
||||
# CSVFormatDesc=<b>Comma Separated Value</b> file format (.csv).<br>This is a text file format where fields are separated by separator [ %s ]. If separator is found inside a field content, field is rounded by round character [ %s ]. Escape character to escape round character is [ %s ].
|
||||
# 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).
|
||||
|
|
|
|||
|
|
@ -572,7 +572,7 @@ Size=크기
|
|||
# TotalMan=Total
|
||||
# NeverReceived=Never received
|
||||
# Canceled=Canceled
|
||||
# YouCanChangeValuesForThisListFromDictionnarySetup=You can change values for this list from menu setup - dictionnary
|
||||
# YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionnary
|
||||
# Color=Color
|
||||
# Documents=Linked files
|
||||
# DocumentsNb=Linked files (%s)
|
||||
|
|
|
|||
|
|
@ -43,8 +43,8 @@ SecuritySetup=Drošības iestatījumi
|
|||
ErrorModuleRequirePHPVersion=Kļūda, šim modulim ir nepieciešama PHP versija %s vai augstāka
|
||||
ErrorModuleRequireDolibarrVersion=Kļūda, šim modulim nepieciešama Dolibarr versija %s vai augstāka
|
||||
ErrorDecimalLargerThanAreForbidden=Kļūda, precizitāte augstāka nekā <b>%s</b> netiek atbalstīta.
|
||||
DictionnarySetup=Vārdnīcas iestatīšana
|
||||
Dictionnary=Vārdnīcas
|
||||
DictionarySetup=Vārdnīcas iestatīšana
|
||||
Dictionary=Vārdnīcas
|
||||
ErrorReservedTypeSystemSystemAuto=Vērtību "sistēma" un "systemauto" veida tiek aizsargātas. Jūs varat izmantot "lietotājs", kā vērtība, lai pievienotu savu ierakstu
|
||||
ErrorCodeCantContainZero=Kods nevar saturēt 0 vērtību
|
||||
DisableJavascript=Atslēgt JavaScript un Ajax funkcijas
|
||||
|
|
@ -726,34 +726,34 @@ Permission55001=Lasīt aptaujas
|
|||
Permission55002=Izveidot/mainīt aptaujas
|
||||
# Permission59001=Read commercial margins
|
||||
# Permission59002=Define commercial margins
|
||||
DictionnaryCompanyType=Uzņēmumu veidi
|
||||
DictionnaryCompanyJuridicalType=Sabiedrību juridiskais veids
|
||||
DictionnaryProspectLevel=Prospect potenciālais līmenis
|
||||
DictionnaryCanton=Valsts / kantonos
|
||||
DictionnaryRegion=Reģioni
|
||||
DictionnaryCountry=Valstis
|
||||
DictionnaryCurrency=Valūtas
|
||||
DictionnaryCivility=Pieklājība virsraksts
|
||||
DictionnaryActions=Veids kārtības pasākumu
|
||||
DictionnarySocialContributions=Sociālās iemaksas veidi
|
||||
DictionnaryVAT=PVN likmes vai pārdošanas nodokļa likmes
|
||||
DictionnaryRevenueStamp=Summa nodokļu marku
|
||||
DictionnaryPaymentConditions=Samaksas noteikumi
|
||||
DictionnaryPaymentModes=Maksājumu veidi
|
||||
DictionnaryTypeContact=Kontakti/adrešu veidi
|
||||
DictionnaryEcotaxe=Vides nodoklis (EEIA)
|
||||
DictionnaryPaperFormat=Papīra formāti
|
||||
DictionnaryFees=Tips maksas
|
||||
DictionnarySendingMethods=Piegādes veidi
|
||||
DictionnaryStaff=Personāls
|
||||
DictionnaryAvailability=Piegādes aizkavēšanās
|
||||
DictionnaryOrderMethods=Pasūtīšana metodes
|
||||
DictionnarySource=Izcelsme priekšlikumus / pasūtījumu
|
||||
DictionnaryAccountancyplan=Kontu
|
||||
DictionnaryAccountancysystem=Modeļi kontu
|
||||
DictionaryCompanyType=Uzņēmumu veidi
|
||||
DictionaryCompanyJuridicalType=Sabiedrību juridiskais veids
|
||||
DictionaryProspectLevel=Prospect potenciālais līmenis
|
||||
DictionaryCanton=Valsts / kantonos
|
||||
DictionaryRegion=Reģioni
|
||||
DictionaryCountry=Valstis
|
||||
DictionaryCurrency=Valūtas
|
||||
DictionaryCivility=Pieklājība virsraksts
|
||||
DictionaryActions=Veids kārtības pasākumu
|
||||
DictionarySocialContributions=Sociālās iemaksas veidi
|
||||
DictionaryVAT=PVN likmes vai pārdošanas nodokļa likmes
|
||||
DictionaryRevenueStamp=Summa nodokļu marku
|
||||
DictionaryPaymentConditions=Samaksas noteikumi
|
||||
DictionaryPaymentModes=Maksājumu veidi
|
||||
DictionaryTypeContact=Kontakti/adrešu veidi
|
||||
DictionaryEcotaxe=Vides nodoklis (EEIA)
|
||||
DictionaryPaperFormat=Papīra formāti
|
||||
DictionaryFees=Tips maksas
|
||||
DictionarySendingMethods=Piegādes veidi
|
||||
DictionaryStaff=Personāls
|
||||
DictionaryAvailability=Piegādes aizkavēšanās
|
||||
DictionaryOrderMethods=Pasūtīšana metodes
|
||||
DictionarySource=Izcelsme priekšlikumus / pasūtījumu
|
||||
DictionaryAccountancyplan=Kontu
|
||||
DictionaryAccountancysystem=Modeļi kontu
|
||||
SetupSaved=Iestatījumi saglabāti
|
||||
BackToModuleList=Atpakaļ uz moduļu sarakstu
|
||||
BackToDictionnaryList=Atpakaļ uz vārdnīcu sarakstu
|
||||
BackToDictionaryList=Atpakaļ uz vārdnīcu sarakstu
|
||||
VATReceivedOnly=Īpaša likme nav jāmaksā
|
||||
VATManagement=PVN Vadība
|
||||
VATIsUsedDesc=PVN likme pēc noklusējuma, veidojot izredzes, rēķini, rīkojumi uc sekot aktīvo standarta noteikums: <br> Ja pārdevējs nav pakļauta PVN, tad PVN pēc noklusējuma = 0. Beigas varu. <br> Ja (pārdošanas valstij = pērkot valsti), tad pēc noklusējuma PVN = PVN no produkta pārdošanas valstī. Beigas varu. <br> Ja pārdevējs un pircējs Eiropas Kopienā, un preces ir transporta līdzekļi (auto, kuģis, lidmašīna), noklusējuma PVN = 0 (PVN būtu jāmaksā pircējam pie customoffice savas valsts, nevis pārdevējs). Beigas varu. <br> Ja pārdevējs un pircējs Eiropas Kopienas un pircējs nav uzņēmums, tad PVN pēc noklusējuma = PVN no pārdotā produkta. Beigas varu. <br> Ja pārdevējs un pircējs Eiropas Kopienas un pircējs ir uzņēmums, tad PVN pēc noklusējuma = 0. Beigas varu. <br> Else ierosinātā noklusējuma PVN = 0. Beigas varu.
|
||||
|
|
@ -921,7 +921,7 @@ TriggerDisabledAsModuleDisabled=Trigeri Šajā failā ir invalīdi, kā modulis
|
|||
TriggerAlwaysActive=Trigeri Šajā failā ir aktīva vienmēr, neatkarīgi ir aktivizēts Dolibarr moduļiem.
|
||||
TriggerActiveAsModuleActive=Trigeri Šajā failā ir aktīvs kā modulis <b>%s</b> ir iespējots.
|
||||
GeneratedPasswordDesc=Noteikt šeit, kas noteikums jūs vēlaties izmantot, lai radītu jaunu paroli, ja jūs lūgt, lai ir auto radīto paroli
|
||||
DictionnaryDesc=Definēt šeit visas atsauces datas. Jūs varat aizpildīt iepriekš vērtību ar jums.
|
||||
DictionaryDesc=Definēt šeit visas atsauces datas. Jūs varat aizpildīt iepriekš vērtību ar jums.
|
||||
ConstDesc=Šī lapa ļauj jums rediģēt visus citus parametrus, kas nav pieejamas iepriekšējās lapās. Tie ir rezervētas parametrus pieredzējušiem izstrādātājiem vai troubleshouting.
|
||||
OnceSetupFinishedCreateUsers=Uzmanību, jums ir Dolibarr administrators lietotājs. Administratora lietotāji izmanto, lai setup Dolibarr. Par parasto izmantošanu Dolibarr, ieteicams izmantot bez administratora lietotājam izveidota no lietotājiem un grupas ēdienkarti.
|
||||
MiscellaneousDesc=Definēt šeit visus citus parametrus, kas saistīti ar drošību.
|
||||
|
|
@ -1425,7 +1425,7 @@ AccountancyCodeBuy=Iegādāties kontu. kods
|
|||
AgendaSetup=Notikumi un kārtības modulis uzstādīšana
|
||||
PasswordTogetVCalExport=Galvenais atļaut eksporta saiti
|
||||
PastDelayVCalExport=Neeksportē notikums vecāki par
|
||||
AGENDA_USE_EVENT_TYPE=Izmantojiet notikumus veidus (izdevās uz Configuration-> Dictionnary-> llx_c_actioncomm)
|
||||
AGENDA_USE_EVENT_TYPE=Izmantojiet notikumus veidus (izdevās uz Configuration-> Dictionary-> llx_c_actioncomm)
|
||||
##### ClickToDial #####
|
||||
ClickToDialDesc=Šis modulis ļauj pievienot ikonu pēc tālruņa numuriem. Uz šīs ikonas, noklikšķiniet sauksim serveri ar īpašu URL, noteikt turpmāk. To var izmantot, lai izsauktu zvanu centrs sistēmu no Dolibarr kas var telefona numuru, uz SIP sistēmu, piemēram,.
|
||||
##### Point Of Sales (CashDesk) #####
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ DataCodeIDSourceIsInsertedInto=Mātes līnijas atrasts no koda id, tiks ievietot
|
|||
SourceRequired=Datu vērtība ir obligāta
|
||||
SourceExample=Piemērs par iespējamo datu vērtības
|
||||
ExampleAnyRefFoundIntoElement=Jebkura atsauce atrasts elementu <b>%s</b>
|
||||
ExampleAnyCodeOrIdFoundIntoDictionnary=Jebkura kods (vai id) atzina par dictionnary <b>%s</b>
|
||||
ExampleAnyCodeOrIdFoundIntoDictionary=Jebkura kods (vai id) atzina par dictionnary <b>%s</b>
|
||||
CSVFormatDesc=<b>Ar komatu atdalītu vērtību</b> failu formāts (. Csv). <br> Tas ir teksta faila formāts, kur lauki ir atdalīti ar atdalītāju [%s]. Ja atdalītājs atrodas iekšpusē lauka saturu, lauks tiek noapaļota ar apaļo raksturs [%s]. Escape raksturs izvairīties apaļas raksturs ir [%s].
|
||||
Excel95FormatDesc=<b>Excel</b> faila formātā (. Xls) <br> Tas ir dzimtā Excel 95 formātā (BIFF5).
|
||||
Excel2007FormatDesc=<b>Excel</b> faila formātā (. Xlsx) <br> Tas ir dzimtā Excel 2007 formātā (SpreadsheetML).
|
||||
|
|
|
|||
|
|
@ -572,7 +572,7 @@ TotalWoman=Kopsumma
|
|||
TotalMan=Kopsumma
|
||||
NeverReceived=Nekad nav saņemts
|
||||
Canceled=Atcelts
|
||||
YouCanChangeValuesForThisListFromDictionnarySetup=Jūs varat mainīt vērtības šajā sarakstā no izvēlnes Iestatījumi - vārdnīca
|
||||
YouCanChangeValuesForThisListFromDictionarySetup=Jūs varat mainīt vērtības šajā sarakstā no izvēlnes Iestatījumi - vārdnīca
|
||||
Color=Krāsa
|
||||
Documents=Piesaistītie faili
|
||||
DocumentsNb=Piesaistītie faili (%s)
|
||||
|
|
|
|||
|
|
@ -43,8 +43,8 @@ SecuritySetup=Sikkerhetsinstillinger
|
|||
ErrorModuleRequirePHPVersion=Feil: Denne modulen krever PHP versjon %s eller høyere
|
||||
ErrorModuleRequireDolibarrVersion=Feil: Denne modulen krever Dolibarr versjon %s eller høyere
|
||||
ErrorDecimalLargerThanAreForbidden=Feil: Presisjon over <b>%s</b> støttes ikke.
|
||||
DictionnarySetup=Begreper
|
||||
# Dictionnary=Dictionaries
|
||||
DictionarySetup=Begreper
|
||||
# Dictionary=Dictionaries
|
||||
# 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
|
||||
DisableJavascript=Slå av funksjoner som bruker JavaScript og Ajax
|
||||
|
|
@ -726,34 +726,34 @@ Permission50202=Importer transaksjoner
|
|||
# Permission55002=Create/modify surveys
|
||||
# Permission59001=Read commercial margins
|
||||
# Permission59002=Define commercial margins
|
||||
DictionnaryCompanyType=Bedriftstyper
|
||||
DictionnaryCompanyJuridicalType=Selskapsform
|
||||
DictionnaryProspectLevel=Prospektets potensielle nivå
|
||||
DictionnaryCanton=Distrikter
|
||||
DictionnaryRegion=Regioner
|
||||
DictionnaryCountry=Land
|
||||
DictionnaryCurrency=Valuta
|
||||
DictionnaryCivility=Tittel
|
||||
DictionnaryActions=Handlingsoversikt
|
||||
DictionnarySocialContributions=Avgiftstyper
|
||||
DictionnaryVAT=MVA-satser
|
||||
# DictionnaryRevenueStamp=Amount of revenue stamps
|
||||
DictionnaryPaymentConditions=Betalingsbetingelser
|
||||
DictionnaryPaymentModes=Betalingstyper
|
||||
DictionnaryTypeContact=Kontaktperson typer
|
||||
DictionnaryEcotaxe=Ecotax (WEEE)
|
||||
DictionnaryPaperFormat=Papirformater
|
||||
DictionnaryFees=Avgiftstyper
|
||||
DictionnarySendingMethods=Sendings metoder
|
||||
DictionnaryStaff=Personale
|
||||
DictionnaryAvailability=Levering forsinkelse
|
||||
DictionnaryOrderMethods=Bestilling av metoder
|
||||
DictionnarySource=Origin of forslag / pålegg
|
||||
# DictionnaryAccountancyplan=Chart of accounts
|
||||
# DictionnaryAccountancysystem=Models for chart of accounts
|
||||
DictionaryCompanyType=Bedriftstyper
|
||||
DictionaryCompanyJuridicalType=Selskapsform
|
||||
DictionaryProspectLevel=Prospektets potensielle nivå
|
||||
DictionaryCanton=Distrikter
|
||||
DictionaryRegion=Regioner
|
||||
DictionaryCountry=Land
|
||||
DictionaryCurrency=Valuta
|
||||
DictionaryCivility=Tittel
|
||||
DictionaryActions=Handlingsoversikt
|
||||
DictionarySocialContributions=Avgiftstyper
|
||||
DictionaryVAT=MVA-satser
|
||||
# DictionaryRevenueStamp=Amount of revenue stamps
|
||||
DictionaryPaymentConditions=Betalingsbetingelser
|
||||
DictionaryPaymentModes=Betalingstyper
|
||||
DictionaryTypeContact=Kontaktperson typer
|
||||
DictionaryEcotaxe=Ecotax (WEEE)
|
||||
DictionaryPaperFormat=Papirformater
|
||||
DictionaryFees=Avgiftstyper
|
||||
DictionarySendingMethods=Sendings metoder
|
||||
DictionaryStaff=Personale
|
||||
DictionaryAvailability=Levering forsinkelse
|
||||
DictionaryOrderMethods=Bestilling av metoder
|
||||
DictionarySource=Origin of forslag / pålegg
|
||||
# DictionaryAccountancyplan=Chart of accounts
|
||||
# DictionaryAccountancysystem=Models for chart of accounts
|
||||
SetupSaved=Innstillinger lagret
|
||||
BackToModuleList=Tilbake til moduloversikt
|
||||
BackToDictionnaryList=Tilbake til begrepsoversikt
|
||||
BackToDictionaryList=Tilbake til begrepsoversikt
|
||||
VATReceivedOnly=Special rate not charged
|
||||
VATManagement=MVA-håndtering
|
||||
# VATIsUsedDesc=The VAT rate by default when creating prospects, invoices, orders etc follow the active standard rule:<br>If the seller is not subjected to VAT, then VAT by default=0. End of rule.<br>If the (selling country= buying country), then the VAT by default=VAT of the product in the selling country. End of rule. <br>If seller and buyer in the European Community and goods are transport products (car, ship, plane), the default VAT=0 ( The VAT should be paid by the buyer at the customoffice of his country and not at the seller). End of rule.<br>If seller and buyer in the European Community and buyer is not a company, then the VAT by default=VAT of product sold. End of rule.<br>If seller and buyer in the European Community and buyer is a company, then the VAT by default=0. End of rule.<br>Else the proposed default VAT=0. End of rule.
|
||||
|
|
@ -921,7 +921,7 @@ TriggerDisabledAsModuleDisabled=Utløserne i denne filen er slått av ettersom m
|
|||
TriggerAlwaysActive=Utløserne i denne filen er alltid slått på, uansett hvilke moduler som er slått på.
|
||||
TriggerActiveAsModuleActive=Utløserne i denne filen er slått på ettersom modulen <b>%s</b> er slått på.
|
||||
GeneratedPasswordDesc=Her angir du hvilken regel som skal generere nye passord dersom du ber om å ha automatisk opprettede passord
|
||||
DictionnaryDesc=Her angir du alle referansedata/begreper. Du kan komplettere de forhåndsdefinerte dataene med dine egne.
|
||||
DictionaryDesc=Her angir du alle referansedata/begreper. Du kan komplettere de forhåndsdefinerte dataene med dine egne.
|
||||
ConstDesc=Her kan du endre innstillinger som ikke er tilgjengelige på de foregående sidene. Dette er reserverte parametere, for avanserte utviklere eller for feilsøking.
|
||||
OnceSetupFinishedCreateUsers=OBS! Du er Dolibarr-administrator. Administratorer er brukere som kan sette opp programmet. For vanlig bruk av Dolibarr bør du lage en bruker uten administratorrettigheter ( i Brukere og grupper ).
|
||||
MiscellaneousDesc=Her angir du sikkerhetsinnstillinger for Dolibarr.
|
||||
|
|
@ -1425,7 +1425,7 @@ AccountancyCode=Regnskap Kode
|
|||
AgendaSetup=Instillinger for modulen hendelser og agenda
|
||||
PasswordTogetVCalExport=Nøkkel for å autorisere eksportlenke
|
||||
PastDelayVCalExport=Må ikke eksportere hendelse eldre enn
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionnary->llx_c_actioncomm)
|
||||
# AGENDA_USE_EVENT_TYPE=Use events types (managed into Configuration->Dictionary->llx_c_actioncomm)
|
||||
##### ClickToDial #####
|
||||
ClickToDialDesc=Denne modulen gir et telefonikon etter telefonnummeret til kontaktpersoner. Et trykk på dette ikonet vil kalle opp en egen server med en URL som du definerer nedenfor. Du kan da få et system som ringer opp kontaktpersonen automatisk for deg, for eksempel på et SIP-system.
|
||||
##### Point Of Sales (CashDesk) #####
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user