Merge remote-tracking branch 'origin/3.8' into develop
Conflicts: htdocs/filefunc.inc.php
This commit is contained in:
commit
9cbd236c8c
@ -39,12 +39,14 @@ parse_str($argv[1]);
|
||||
$outputfile=dirname(__FILE__).'/../htdocs/install/filelist.xml';
|
||||
$fp = fopen($outputfile,'w');
|
||||
fputs($fp, '<?xml version="1.0" encoding="UTF-8" ?>'."\n");
|
||||
fputs($fp, '<checksum_list>'."\n");
|
||||
fputs($fp, '<dolibarr_root_dir version="'.$release.'">'."\n");
|
||||
$dir_iterator = new RecursiveDirectoryIterator(dirname(__FILE__).'/../htdocs/');
|
||||
$iterator = new RecursiveIteratorIterator($dir_iterator);
|
||||
fputs($fp, '<checksum_list version="'.$release.'">'."\n");
|
||||
|
||||
fputs($fp, '<dolibarr_htdocs_dir>'."\n");
|
||||
|
||||
$dir_iterator1 = new RecursiveDirectoryIterator(dirname(__FILE__).'/../htdocs/');
|
||||
$iterator1 = new RecursiveIteratorIterator($dir_iterator1);
|
||||
// need to ignore document custom etc
|
||||
$files = new RegexIterator($iterator, '#^(?:[A-Z]:)?(?:/(?!(?:custom|documents|conf|install|nltechno))[^/]+)+/[^/]+\.(?:php|css|html|js|json|tpl|jpg|png|gif|sql|lang)$#i');
|
||||
$files = new RegexIterator($iterator1, '#^(?:[A-Z]:)?(?:/(?!(?:custom|documents|conf|install|nltechno))[^/]+)+/[^/]+\.(?:php|css|html|js|json|tpl|jpg|png|gif|sql|lang)$#i');
|
||||
$dir='';
|
||||
$needtoclose=0;
|
||||
foreach ($files as $file) {
|
||||
@ -61,7 +63,34 @@ foreach ($files as $file) {
|
||||
}
|
||||
}
|
||||
fputs($fp, '</dir>'."\n");
|
||||
fputs($fp, '</dolibarr_root_dir>'."\n");
|
||||
fputs($fp, '</dolibarr_htdocs_dir>'."\n");
|
||||
|
||||
|
||||
fputs($fp, '<dolibarr_script_dir version="'.$release.'">'."\n");
|
||||
|
||||
$dir_iterator2 = new RecursiveDirectoryIterator(dirname(__FILE__).'/../scripts/');
|
||||
$iterator2 = new RecursiveIteratorIterator($dir_iterator2);
|
||||
// need to ignore document custom etc
|
||||
$files = new RegexIterator($iterator2, '#^(?:[A-Z]:)?(?:/(?!(?:custom|documents|conf|install|nltechno))[^/]+)+/[^/]+\.(?:php|css|html|js|json|tpl|jpg|png|gif|sql|lang)$#i');
|
||||
$dir='';
|
||||
$needtoclose=0;
|
||||
foreach ($files as $file) {
|
||||
$newdir = str_replace(dirname(__FILE__).'/../scripts', '', dirname($file));
|
||||
if ($newdir!=$dir) {
|
||||
if ($needtoclose)
|
||||
fputs($fp, '</dir>'."\n");
|
||||
fputs($fp, '<dir name="'.$newdir.'" >'."\n");
|
||||
$dir = $newdir;
|
||||
$needtoclose=1;
|
||||
}
|
||||
if (filetype($file)=="file") {
|
||||
fputs($fp, '<md5file name="'.basename($file).'">'.md5_file($file).'</md5file>'."\n");
|
||||
}
|
||||
}
|
||||
fputs($fp, '</dir>'."\n");
|
||||
fputs($fp, '</dolibarr_script_dir>'."\n");
|
||||
|
||||
|
||||
fputs($fp, '</checksum_list>'."\n");
|
||||
fclose($fp);
|
||||
|
||||
|
||||
@ -228,11 +228,14 @@ class modMyModule extends DolibarrModules
|
||||
|
||||
// Example:
|
||||
// $this->export_code[$r]=$this->rights_class.'_'.$r;
|
||||
// $this->export_label[$r]='CustomersInvoicesAndInvoiceLines'; // Translation key (used only if key ExportDataset_xxx_z not found)
|
||||
// $this->export_label[$r]='MyModule'; // Translation key (used only if key ExportDataset_xxx_z not found)
|
||||
// $this->export_enabled[$r]='1'; // Condition to show export in list (ie: '$user->id==3'). Set to 1 to always show when module is enabled.
|
||||
// $this->export_permission[$r]=array(array("facture","facture","export"));
|
||||
// $this->export_icon[$r]='generic:MyModule';
|
||||
// $this->export_permission[$r]=array(array("mymodule","level1","level2"));
|
||||
// $this->export_fields_array[$r]=array('s.rowid'=>"IdCompany",'s.nom'=>'CompanyName','s.address'=>'Address','s.zip'=>'Zip','s.town'=>'Town','s.fk_pays'=>'Country','s.phone'=>'Phone','s.siren'=>'ProfId1','s.siret'=>'ProfId2','s.ape'=>'ProfId3','s.idprof4'=>'ProfId4','s.code_compta'=>'CustomerAccountancyCode','s.code_compta_fournisseur'=>'SupplierAccountancyCode','f.rowid'=>"InvoiceId",'f.facnumber'=>"InvoiceRef",'f.datec'=>"InvoiceDateCreation",'f.datef'=>"DateInvoice",'f.total'=>"TotalHT",'f.total_ttc'=>"TotalTTC",'f.tva'=>"TotalVAT",'f.paye'=>"InvoicePaid",'f.fk_statut'=>'InvoiceStatus','f.note'=>"InvoiceNote",'fd.rowid'=>'LineId','fd.description'=>"LineDescription",'fd.price'=>"LineUnitPrice",'fd.tva_tx'=>"LineVATRate",'fd.qty'=>"LineQty",'fd.total_ht'=>"LineTotalHT",'fd.total_tva'=>"LineTotalTVA",'fd.total_ttc'=>"LineTotalTTC",'fd.date_start'=>"DateStart",'fd.date_end'=>"DateEnd",'fd.fk_product'=>'ProductId','p.ref'=>'ProductRef');
|
||||
// $this->export_TypeFields_array[$r]=array('t.date'=>'Date', 't.qte'=>'Numeric', 't.poids'=>'Numeric', 't.fad'=>'Numeric', 't.paq'=>'Numeric', 't.stockage'=>'Numeric', 't.fadparliv'=>'Numeric', 't.livau100'=>'Numeric', 't.forfait'=>'Numeric', 's.nom'=>'Text','s.address'=>'Text','s.zip'=>'Text','s.town'=>'Text','c.code'=>'Text','s.phone'=>'Text','s.siren'=>'Text','s.siret'=>'Text','s.ape'=>'Text','s.idprof4'=>'Text','s.code_compta'=>'Text','s.code_compta_fournisseur'=>'Text','s.tva_intra'=>'Text','f.facnumber'=>"Text",'f.datec'=>"Date",'f.datef'=>"Date",'f.date_lim_reglement'=>"Date",'f.total'=>"Numeric",'f.total_ttc'=>"Numeric",'f.tva'=>"Numeric",'f.paye'=>"Boolean",'f.fk_statut'=>'Status','f.note_private'=>"Text",'f.note_public'=>"Text",'fd.description'=>"Text",'fd.subprice'=>"Numeric",'fd.tva_tx'=>"Numeric",'fd.qty'=>"Numeric",'fd.total_ht'=>"Numeric",'fd.total_tva'=>"Numeric",'fd.total_ttc'=>"Numeric",'fd.date_start'=>"Date",'fd.date_end'=>"Date",'fd.special_code'=>'Numeric','fd.product_type'=>"Numeric",'fd.fk_product'=>'List:product:label','p.ref'=>'Text','p.label'=>'Text','p.accountancy_code_sell'=>'Text');
|
||||
// $this->export_entities_array[$r]=array('s.rowid'=>"company",'s.nom'=>'company','s.address'=>'company','s.zip'=>'company','s.town'=>'company','s.fk_pays'=>'company','s.phone'=>'company','s.siren'=>'company','s.siret'=>'company','s.ape'=>'company','s.idprof4'=>'company','s.code_compta'=>'company','s.code_compta_fournisseur'=>'company','f.rowid'=>"invoice",'f.facnumber'=>"invoice",'f.datec'=>"invoice",'f.datef'=>"invoice",'f.total'=>"invoice",'f.total_ttc'=>"invoice",'f.tva'=>"invoice",'f.paye'=>"invoice",'f.fk_statut'=>'invoice','f.note'=>"invoice",'fd.rowid'=>'invoice_line','fd.description'=>"invoice_line",'fd.price'=>"invoice_line",'fd.total_ht'=>"invoice_line",'fd.total_tva'=>"invoice_line",'fd.total_ttc'=>"invoice_line",'fd.tva_tx'=>"invoice_line",'fd.qty'=>"invoice_line",'fd.date_start'=>"invoice_line",'fd.date_end'=>"invoice_line",'fd.fk_product'=>'product','p.ref'=>'product');
|
||||
// $this->export_dependencies_array[$r]=array('invoice_line'=>'fd.rowid','product'=>'fd.rowid'); // To add unique key if we ask a field of a child to avoid the DISTINCT to discard them
|
||||
// $this->export_sql_start[$r]='SELECT DISTINCT ';
|
||||
// $this->export_sql_end[$r] =' FROM ('.MAIN_DB_PREFIX.'facture as f, '.MAIN_DB_PREFIX.'facturedet as fd, '.MAIN_DB_PREFIX.'societe as s)';
|
||||
// $this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'product as p on (fd.fk_product = p.rowid)';
|
||||
|
||||
@ -445,6 +445,7 @@ if ($id == 11)
|
||||
$langs->load("interventions");
|
||||
$elementList = array(
|
||||
'' => '',
|
||||
'societe' => $langs->trans('ThirdParty'),
|
||||
// 'proposal' => $langs->trans('Proposal'),
|
||||
// 'order' => $langs->trans('Order'),
|
||||
// 'invoice' => $langs->trans('Bill'),
|
||||
|
||||
@ -31,6 +31,8 @@ $langs->load("admin");
|
||||
if (!$user->admin)
|
||||
accessforbidden();
|
||||
|
||||
$error=0;
|
||||
|
||||
|
||||
/*
|
||||
* View
|
||||
@ -77,67 +79,91 @@ if (file_exists($xmlfile))
|
||||
$xml = simplexml_load_file($xmlfile);
|
||||
if ($xml)
|
||||
{
|
||||
$file_list = array();
|
||||
$ret = getFilesUpdated($file_list, $xml->dolibarr_root_dir[0]); // Fill array $file_list
|
||||
|
||||
print '<table class="noborder">';
|
||||
print '<tr class="liste_titre">';
|
||||
print '<td>' . $langs->trans("FilesMissing") . '</td>';
|
||||
print '<td align="center">' . $langs->trans("ExpectedChecksum") . '</td>';
|
||||
print '</tr>'."\n";
|
||||
$var = true;
|
||||
$tmpfilelist = dol_sort_array($file_list['missing'], 'filename');
|
||||
if (is_array($tmpfilelist))
|
||||
if (is_object($xml->dolibarr_htdocs_dir[0]))
|
||||
{
|
||||
foreach ($tmpfilelist as $file)
|
||||
{
|
||||
$var = !$var;
|
||||
print '<tr ' . $bc[$var] . '>';
|
||||
print '<td>'.$file['filename'].'</td>' . "\n";
|
||||
print '<td align="center">'.$file['expectedmd5'].'</td>' . "\n";
|
||||
print "</tr>\n";
|
||||
}
|
||||
$file_list = array();
|
||||
$ret = getFilesUpdated($file_list, $xml->dolibarr_htdocs_dir[0]); // Fill array $file_list
|
||||
|
||||
print '<table class="noborder">';
|
||||
print '<tr class="liste_titre">';
|
||||
print '<td>' . $langs->trans("FilesMissing") . '</td>';
|
||||
print '<td align="center">' . $langs->trans("ExpectedChecksum") . '</td>';
|
||||
print '</tr>'."\n";
|
||||
$var = true;
|
||||
$tmpfilelist = dol_sort_array($file_list['missing'], 'filename');
|
||||
if (is_array($tmpfilelist) && count($tmpfilelist))
|
||||
{
|
||||
foreach ($tmpfilelist as $file)
|
||||
{
|
||||
$var = !$var;
|
||||
print '<tr ' . $bc[$var] . '>';
|
||||
print '<td>'.$file['filename'].'</td>' . "\n";
|
||||
print '<td align="center">'.$file['expectedmd5'].'</td>' . "\n";
|
||||
print "</tr>\n";
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
print '<tr ' . $bc[false] . '><td colspan="2">'.$langs->trans("None").'</td></tr>';
|
||||
}
|
||||
print '</table>';
|
||||
|
||||
print '<br>';
|
||||
|
||||
print '<table class="noborder">';
|
||||
print '<tr class="liste_titre">';
|
||||
print '<td>' . $langs->trans("FilesUpdated") . '</td>';
|
||||
print '<td align="center">' . $langs->trans("ExpectedChecksum") . '</td>';
|
||||
print '<td align="center">' . $langs->trans("CurrentChecksum") . '</td>';
|
||||
print '<td align="right">' . $langs->trans("Size") . '</td>';
|
||||
print '<td align="right">' . $langs->trans("DateModification") . '</td>';
|
||||
print '</tr>'."\n";
|
||||
$var = true;
|
||||
$tmpfilelist = dol_sort_array($file_list['updated'], 'filename');
|
||||
if (is_array($tmpfilelist) && count($tmpfilelist))
|
||||
{
|
||||
foreach ($tmpfilelist as $file)
|
||||
{
|
||||
$var = !$var;
|
||||
print '<tr ' . $bc[$var] . '>';
|
||||
print '<td>'.$file['filename'].'</td>' . "\n";
|
||||
print '<td align="center">'.$file['expectedmd5'].'</td>' . "\n";
|
||||
print '<td align="center">'.$file['md5'].'</td>' . "\n";
|
||||
print '<td align="right">'.dol_print_size(dol_filesize(DOL_DOCUMENT_ROOT.'/'.$file['filename'])).'</td>' . "\n";
|
||||
print '<td align="right">'.dol_print_date(dol_filemtime(DOL_DOCUMENT_ROOT.'/'.$file['filename']),'dayhour').'</td>' . "\n";
|
||||
print "</tr>\n";
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
print '<tr ' . $bc[false] . '><td colspan="5">'.$langs->trans("None").'</td></tr>';
|
||||
}
|
||||
print '</table>';
|
||||
}
|
||||
print '</table>';
|
||||
|
||||
print '<br>';
|
||||
|
||||
print '<table class="noborder">';
|
||||
print '<tr class="liste_titre">';
|
||||
print '<td>' . $langs->trans("FilesUpdated") . '</td>';
|
||||
print '<td align="center">' . $langs->trans("ExpectedChecksum") . '</td>';
|
||||
print '<td align="center">' . $langs->trans("CurrentChecksum") . '</td>';
|
||||
print '<td align="right">' . $langs->trans("Size") . '</td>';
|
||||
print '<td align="right">' . $langs->trans("DateModification") . '</td>';
|
||||
print '</tr>'."\n";
|
||||
$var = true;
|
||||
$tmpfilelist = dol_sort_array($file_list['updated'], 'filename');
|
||||
if (is_array($tmpfilelist))
|
||||
else
|
||||
{
|
||||
foreach ($tmpfilelist as $file)
|
||||
{
|
||||
$var = !$var;
|
||||
print '<tr ' . $bc[$var] . '>';
|
||||
print '<td>'.$file['filename'].'</td>' . "\n";
|
||||
print '<td align="center">'.$file['expectedmd5'].'</td>' . "\n";
|
||||
print '<td align="center">'.$file['md5'].'</td>' . "\n";
|
||||
print '<td align="right">'.dol_print_size(dol_filesize(DOL_DOCUMENT_ROOT.'/'.$file['filename'])).'</td>' . "\n";
|
||||
print '<td align="right">'.dol_print_date(dol_filemtime(DOL_DOCUMENT_ROOT.'/'.$file['filename']),'dayhour').'</td>' . "\n";
|
||||
print "</tr>\n";
|
||||
}
|
||||
print 'Error: Failed to found dolibarr_htdocs_dir into XML file '.$xmlfile;
|
||||
$error++;
|
||||
}
|
||||
print '</table>';
|
||||
}
|
||||
else
|
||||
{
|
||||
print 'Error: Failed to parse XML for input file '.$xmlfile;
|
||||
$error++;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
print $langs->trans('XmlNotFound') . ': ' . $xmlfile;
|
||||
$error++;
|
||||
}
|
||||
|
||||
llxFooter();
|
||||
|
||||
$db->close();
|
||||
|
||||
exit($error);
|
||||
|
||||
|
||||
/**
|
||||
* Function to get list of updated or modified files.
|
||||
|
||||
@ -1165,8 +1165,10 @@ if (empty($reshook))
|
||||
|
||||
|
||||
|
||||
if (! $error && ! empty($conf->global->MAIN_DISABLE_CONTACTS_TAB) && $user->rights->commande->creer) {
|
||||
if ($action == 'addcontact') {
|
||||
if (! $error && ! empty($conf->global->MAIN_DISABLE_CONTACTS_TAB) && $user->rights->commande->creer)
|
||||
{
|
||||
if ($action == 'addcontact')
|
||||
{
|
||||
if ($object->id > 0) {
|
||||
$contactid = (GETPOST('userid') ? GETPOST('userid') : GETPOST('contactid'));
|
||||
$result = $object->add_contact($contactid, GETPOST('type'), GETPOST('source'));
|
||||
@ -1186,7 +1188,8 @@ if (empty($reshook))
|
||||
}
|
||||
|
||||
// bascule du statut d'un contact
|
||||
else if ($action == 'swapstatut') {
|
||||
else if ($action == 'swapstatut')
|
||||
{
|
||||
if ($object->id > 0) {
|
||||
$result = $object->swapContactStatus(GETPOST('ligne'));
|
||||
} else {
|
||||
@ -1195,7 +1198,8 @@ if (empty($reshook))
|
||||
}
|
||||
|
||||
// Efface un contact
|
||||
else if ($action == 'deletecontact') {
|
||||
else if ($action == 'deletecontact')
|
||||
{
|
||||
$result = $object->delete_contact($lineid);
|
||||
|
||||
if ($result >= 0) {
|
||||
|
||||
@ -452,13 +452,15 @@ abstract class CommonObject
|
||||
// Check parameters
|
||||
if ($fk_socpeople <= 0)
|
||||
{
|
||||
$this->error=$langs->trans("ErrorWrongValueForParameter","1");
|
||||
$langs->load("errors");
|
||||
$this->error=$langs->trans("ErrorWrongValueForParameterX","1");
|
||||
dol_syslog(get_class($this)."::add_contact ".$this->error,LOG_ERR);
|
||||
return -1;
|
||||
}
|
||||
if (! $type_contact)
|
||||
{
|
||||
$this->error=$langs->trans("ErrorWrongValueForParameter","2");
|
||||
$langs->load("errors");
|
||||
$this->error=$langs->trans("ErrorWrongValueForParameterX","2");
|
||||
dol_syslog(get_class($this)."::add_contact ".$this->error,LOG_ERR);
|
||||
return -2;
|
||||
}
|
||||
@ -486,7 +488,7 @@ abstract class CommonObject
|
||||
}
|
||||
|
||||
$datecreate = dol_now();
|
||||
|
||||
|
||||
$this->db->begin();
|
||||
|
||||
// Insertion dans la base
|
||||
@ -504,7 +506,11 @@ abstract class CommonObject
|
||||
if (! $notrigger)
|
||||
{
|
||||
$result=$this->call_trigger(strtoupper($this->element).'_ADD_CONTACT', $user);
|
||||
if ($result < 0) { $this->db->rollback(); return -1; }
|
||||
if ($result < 0)
|
||||
{
|
||||
$this->db->rollback();
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
$this->db->commit();
|
||||
|
||||
@ -3016,6 +3016,8 @@ class Form
|
||||
global $langs;
|
||||
$langs->load("categories");
|
||||
|
||||
include_once DOL_DOCUMENT_ROOT.'/categories/class.categorie.class.php';
|
||||
|
||||
$cat = new Categorie($this->db);
|
||||
$cate_arbo = $cat->get_full_arbo($type,$excludeafterid);
|
||||
|
||||
@ -4675,6 +4677,8 @@ class Form
|
||||
{
|
||||
global $db;
|
||||
|
||||
include_once DOL_DOCUMENT_ROOT.'/categories/class.categorie.class.php';
|
||||
|
||||
$cat = new Categorie($db);
|
||||
$categories = $cat->containing($id, $type);
|
||||
|
||||
|
||||
@ -731,6 +731,7 @@ function dol_get_fiche_head($links=array(), $active='0', $title='', $notab=0, $p
|
||||
// if =0 we don't use the feature
|
||||
$limittoshow=(empty($conf->global->MAIN_MAXTABS_IN_CARD)?99:$conf->global->MAIN_MAXTABS_IN_CARD);
|
||||
$displaytab=0;
|
||||
$nbintab=0;
|
||||
|
||||
for ($i = 0 ; $i <= $maxkey ; $i++)
|
||||
{
|
||||
@ -787,6 +788,7 @@ function dol_get_fiche_head($links=array(), $active='0', $title='', $notab=0, $p
|
||||
$outmore.='<a'.(! empty($links[$i][2])?' id="'.$links[$i][2].'"':'').' class="inline-block" href="'.$links[$i][0].'">'.$links[$i][1].'</a>'."\n";
|
||||
|
||||
$outmore.='</div>';
|
||||
$nbintab++;
|
||||
}
|
||||
$displaytab=$i;
|
||||
}
|
||||
@ -795,18 +797,16 @@ function dol_get_fiche_head($links=array(), $active='0', $title='', $notab=0, $p
|
||||
{
|
||||
$tabsname=str_replace("@", "", $picto);
|
||||
$out.='<div id="moretabs'.$tabsname.'" class="inline-block tabsElem">';
|
||||
$out.='<a href="" data-role="button" style="background-color: #f0f0f0;" class="tab inline-block">'.$langs->trans("More").'...</a>';
|
||||
$out.='<a href="" data-role="button" style="background-color: #f0f0f0;" class="tab inline-block">'.$langs->trans("More").' <span class="badge">'.$nbintab.'</span></a>';
|
||||
$out.='<div id="moretabsList'.$tabsname.'" style="position: absolute; left: -999em;text-align: left;margin:0px;padding:2px">'.$outmore.'</div>';
|
||||
$out.="</div>\n";
|
||||
|
||||
$out.="<script>";
|
||||
$out.="$('#moretabs".$tabsname.").mouseenter( function() { $('#moretabsList".$tabsname.").css('left','auto');});";
|
||||
$out.="$('#moretabs".$tabsname.").mouseleave( function() { $('#moretabsList".$tabsname.").css('left','-999em');});";
|
||||
$out.="$('#moretabs".$tabsname."').mouseenter( function() { $('#moretabsList".$tabsname."').css('left','auto');});";
|
||||
$out.="$('#moretabs".$tabsname."').mouseleave( function() { $('#moretabsList".$tabsname."').css('left','-999em');});";
|
||||
$out.="</script>";
|
||||
}
|
||||
|
||||
$out.="</div>\n";
|
||||
|
||||
if (! $notab) $out.="\n".'<div class="tabBar">'."\n";
|
||||
|
||||
return $out;
|
||||
|
||||
@ -73,7 +73,12 @@ $userstatic=new User($db);
|
||||
<div class="nowrap tagtd"><?php echo img_object('','user').' '.$langs->trans("Users"); ?></div>
|
||||
<div class="tagtd"><?php echo $conf->global->MAIN_INFO_SOCIETE_NOM; ?></div>
|
||||
<div class="tagtd maxwidthonsmartphone"><?php echo $form->select_dolusers($user->id, 'userid', 0, (! empty($userAlreadySelected)?$userAlreadySelected:null), 0, null, null, 0, 56); ?></div>
|
||||
<div class="tagtd maxwidthonsmartphone"><?php echo $formcompany->selectTypeContact($object, '', 'type','internal'); ?></div>
|
||||
<div class="tagtd maxwidthonsmartphone">
|
||||
<?php
|
||||
$tmpobject=$object;
|
||||
if ($object->element == 'shipping' && is_object($objectsrc)) $tmpobject=$objectsrc;
|
||||
echo $formcompany->selectTypeContact($tmpobject, '', 'type','internal');
|
||||
?></div>
|
||||
<div class="tagtd"> </div>
|
||||
<div class="tagtd" align="right"><input type="submit" class="button" value="<?php echo $langs->trans("Add"); ?>"></div>
|
||||
</form>
|
||||
|
||||
@ -77,7 +77,7 @@ if ($action == 'addcontact' && $user->rights->expedition->creer)
|
||||
{
|
||||
if ($result > 0 && $id > 0)
|
||||
{
|
||||
$result = $objectsrc->add_contact($_POST["contactid"], $_POST["type"], $_POST["source"]);
|
||||
$result = $objectsrc->add_contact(GETPOST('userid') ? GETPOST('userid') : GETPOST('contactid'), $_POST["type"], $_POST["source"]);
|
||||
}
|
||||
|
||||
if ($result >= 0)
|
||||
@ -87,14 +87,15 @@ if ($action == 'addcontact' && $user->rights->expedition->creer)
|
||||
}
|
||||
else
|
||||
{
|
||||
if ($objectsrc->error == 'DB_ERROR_RECORD_ALREADY_EXISTS') {
|
||||
if ($objectsrc->error == 'DB_ERROR_RECORD_ALREADY_EXISTS')
|
||||
{
|
||||
$langs->load("errors");
|
||||
$mesg = $langs->trans("ErrorThisContactIsAlreadyDefinedAsThisType");
|
||||
} else {
|
||||
$mesg = $objectsrc->error;
|
||||
$mesgs = $objectsrc->errors;
|
||||
}
|
||||
|
||||
setEventMessage($mesg, 'errors');
|
||||
setEventMessages($mesg, $mesgs, 'errors');
|
||||
}
|
||||
}
|
||||
|
||||
@ -236,7 +237,6 @@ if ($id > 0 || ! empty($ref))
|
||||
// Lignes de contacts
|
||||
echo '<br>';
|
||||
|
||||
|
||||
// Contacts lines (modules that overwrite templates must declare this into descriptor)
|
||||
$dirtpls=array_merge($conf->modules_parts['tpl'],array('/core/tpl'));
|
||||
foreach($dirtpls as $reldir)
|
||||
|
||||
@ -488,7 +488,7 @@ class PaymentExpenseReport extends CommonObject
|
||||
$this->datepaid,
|
||||
$this->fk_typepayment, // Payment mode id or code ("CHQ or VIR for example")
|
||||
$label,
|
||||
$amount,
|
||||
-$amount,
|
||||
$this->num_payment,
|
||||
'',
|
||||
$user,
|
||||
|
||||
@ -431,10 +431,10 @@ if ($step == 1 || ! $datatoexport)
|
||||
//print img_object($objexport->array_export_module[$key]->getName(),$export->array_export_module[$key]->picto).' ';
|
||||
print $objexport->array_export_module[$key]->getName();
|
||||
print '</td><td>';
|
||||
$icon=$objexport->array_export_icon[$key];
|
||||
$icon=preg_replace('/:.*$/','',$objexport->array_export_icon[$key]);
|
||||
$label=$objexport->array_export_label[$key];
|
||||
//print $value.'-'.$icon.'-'.$label."<br>";
|
||||
print img_object($objexport->array_export_module[$key]->getName(),$icon).' ';
|
||||
print img_object($objexport->array_export_module[$key]->getName(), $icon).' ';
|
||||
print $label;
|
||||
print '</td><td align="right">';
|
||||
if ($objexport->array_export_perms[$key])
|
||||
@ -492,10 +492,10 @@ if ($step == 2 && $datatoexport)
|
||||
// Lot de donnees a exporter
|
||||
print '<tr><td width="25%">'.$langs->trans("DatasetToExport").'</td>';
|
||||
print '<td>';
|
||||
$icon=$objexport->array_export_icon[0];
|
||||
$icon=preg_replace('/:.*$/','',$objexport->array_export_icon[0]);
|
||||
$label=$objexport->array_export_label[0];
|
||||
//print $value.'-'.$icon.'-'.$label."<br>";
|
||||
print img_object($objexport->array_export_module[0]->getName(),$icon).' ';
|
||||
print img_object($objexport->array_export_module[0]->getName(), $icon).' ';
|
||||
print $label;
|
||||
print '</td></tr>';
|
||||
|
||||
@ -666,10 +666,10 @@ if ($step == 3 && $datatoexport)
|
||||
// Lot de donnees a exporter
|
||||
print '<tr><td width="25%">'.$langs->trans("DatasetToExport").'</td>';
|
||||
print '<td>';
|
||||
$icon=$objexport->array_export_icon[0];
|
||||
$icon=preg_replace('/:.*$/','',$objexport->array_export_icon[0]);
|
||||
$label=$objexport->array_export_label[0];
|
||||
//print $value.'-'.$icon.'-'.$label."<br>";
|
||||
print img_object($objexport->array_export_module[0]->getName(),$icon).' ';
|
||||
print img_object($objexport->array_export_module[0]->getName(), $icon).' ';
|
||||
print $label;
|
||||
print '</td></tr>';
|
||||
|
||||
@ -832,7 +832,8 @@ if ($step == 4 && $datatoexport)
|
||||
// Lot de donnees a exporter
|
||||
print '<tr><td width="25%">'.$langs->trans("DatasetToExport").'</td>';
|
||||
print '<td>';
|
||||
print img_object($objexport->array_export_module[0]->getName(),$objexport->array_export_icon[0]).' ';
|
||||
$icon=preg_replace('/:.*$/','',$objexport->array_export_icon[0]);
|
||||
print img_object($objexport->array_export_module[0]->getName(), $icon).' ';
|
||||
print $objexport->array_export_label[0];
|
||||
print '</td></tr>';
|
||||
|
||||
@ -1069,7 +1070,8 @@ if ($step == 5 && $datatoexport)
|
||||
// Lot de donnees a exporter
|
||||
print '<tr><td width="25%">'.$langs->trans("DatasetToExport").'</td>';
|
||||
print '<td>';
|
||||
print img_object($objexport->array_export_module[0]->getName(),$objexport->array_export_icon[0]).' ';
|
||||
$icon=preg_replace('/:.*$/','',$objexport->array_export_icon[0]);
|
||||
print img_object($objexport->array_export_module[0]->getName(), $icon).' ';
|
||||
print $objexport->array_export_label[0];
|
||||
print '</td></tr>';
|
||||
|
||||
|
||||
@ -67,7 +67,9 @@ $conffiletoshow = "htdocs/conf/conf.php";
|
||||
|
||||
// Include configuration
|
||||
// --- End of part replaced by Dolibarr packager makepack-dolibarr
|
||||
|
||||
// Replace conf filename with "conf" parameter on url by GET
|
||||
/* Disabled. This is a serious security hole
|
||||
if (! empty($_GET['conf']))
|
||||
{
|
||||
$confname=basename($_GET['conf']);
|
||||
@ -77,7 +79,7 @@ if (! empty($_GET['conf']))
|
||||
$confname=basename(empty($_COOKIE['dolconf']) ? 'conf' : $_COOKIE['dolconf']);
|
||||
$conffile = 'conf/'.$confname.'.php';
|
||||
}
|
||||
|
||||
*/
|
||||
|
||||
// Include configuration
|
||||
$result=@include_once $conffile; // Keep @ because with some error reporting this break the redirect
|
||||
|
||||
@ -264,10 +264,13 @@ if ($object->id > 0)
|
||||
print '</tr>';
|
||||
|
||||
// Categories
|
||||
print '<tr><td>' . $langs->trans("Categories") . '</td>';
|
||||
print '<td colspan="3">';
|
||||
print $form->showCategories($object->id, 'supplier', 1);
|
||||
print "</td></tr>";
|
||||
if (! empty($conf->categorie->enabled))
|
||||
{
|
||||
print '<tr><td>' . $langs->trans("Categories") . '</td>';
|
||||
print '<td colspan="3">';
|
||||
print $form->showCategories($object->id, 'supplier', 1);
|
||||
print "</td></tr>";
|
||||
}
|
||||
|
||||
// Other attributes
|
||||
$parameters=array('socid'=>$object->id, 'colspan' => ' colspan="3"', 'colspanvalue' => '3');
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -9,14 +9,14 @@
|
||||
-- To drop a column: ALTER TABLE llx_table DROP COLUMN oldname;
|
||||
-- To change type of field: ALTER TABLE llx_table MODIFY COLUMN name varchar(60);
|
||||
-- To drop a foreign key: ALTER TABLE llx_table DROP FOREIGN KEY fk_name;
|
||||
-- To restrict request to Mysql version x.y use -- VMYSQLx.y
|
||||
-- To restrict request to Pgsql version x.y use -- VPGSQLx.y
|
||||
-- To restrict request to Mysql version x.y or more: -- VMYSQLx.y
|
||||
-- To restrict request to Pgsql version x.y or more: -- VPGSQLx.y
|
||||
-- To make pk to be auto increment (mysql): VMYSQL4.3 ALTER TABLE llx_c_shipment_mode CHANGE COLUMN rowid rowid INTEGER NOT NULL AUTO_INCREMENT;
|
||||
-- To make pk to be auto increment (postgres): VPGSQL8.2 NOT POSSIBLE. MUST DELETE/CREATE TABLE
|
||||
-- To set a field as NULL: VPGSQL8.2 ALTER TABLE llx_table ALTER COLUMN name DROP NOT NULL;
|
||||
-- To set a field as default NULL: VPGSQL8.2 ALTER TABLE llx_table ALTER COLUMN name SET DEFAULT NULL;
|
||||
-- -- VPGSQL8.2 DELETE FROM llx_usergroup_user WHERE fk_user NOT IN (SELECT rowid from llx_user);
|
||||
-- -- VMYSQL4.1 DELETE FROM llx_usergroup_user WHERE fk_usergroup NOT IN (SELECT rowid from llx_usergroup);
|
||||
-- To delete orphelins: VMYSQL4.1 DELETE FROM llx_usergroup_user WHERE fk_usergroup NOT IN (SELECT rowid from llx_usergroup);
|
||||
-- To delete orphelins: VPGSQL8.2 DELETE FROM llx_usergroup_user WHERE fk_user NOT IN (SELECT rowid from llx_user);
|
||||
|
||||
|
||||
UPDATE llx_facture_fourn set ref=rowid where ref IS NULL;
|
||||
@ -677,7 +677,8 @@ ALTER TABLE llx_c_stcomm ADD COLUMN picto varchar(128);
|
||||
INSERT INTO llx_c_action_trigger (code, label, description, elementtype, rang) VALUES ('BILL_SUPPLIER_UNVALIDATE','Supplier invoice unvalidated','Executed when a supplier invoice status is set back to draft','invoice_supplier',15);
|
||||
|
||||
|
||||
ALTER TABLE llx_holiday_users DROP PRIMARY KEY;
|
||||
--VMYSQL4.1 ALTER TABLE llx_holiday_users DROP PRIMARY KEY;
|
||||
--VPGSQL8.2 ALTER TABLE llx_holiday_users DROP CONSTRAINT llx_holiday_users_pkey;
|
||||
|
||||
DROP TABLE llx_holiday_types;
|
||||
|
||||
|
||||
@ -1,10 +1,10 @@
|
||||
# Dolibarr language file - en_US - Accounting Expert
|
||||
CHARSET=UTF-8
|
||||
ACCOUNTING_EXPORT_SEPARATORCSV=Column separator for export file
|
||||
ACCOUNTING_EXPORT_DATE=Date format for export file
|
||||
ACCOUNTING_EXPORT_SEPARATORCSV=Separador de columna pel fitxer d'exportació
|
||||
ACCOUNTING_EXPORT_DATE=Format de data pel fitxer d'exportació
|
||||
ACCOUNTING_EXPORT_PIECE=Export the number of piece ?
|
||||
ACCOUNTING_EXPORT_GLOBAL_ACCOUNT=Export with global account ?
|
||||
ACCOUNTING_EXPORT_LABEL=Export the label ?
|
||||
ACCOUNTING_EXPORT_LABEL=Exportar l'etiqueta?
|
||||
ACCOUNTING_EXPORT_AMOUNT=Export the amount ?
|
||||
ACCOUNTING_EXPORT_DEVISE=Export the devise ?
|
||||
|
||||
@ -22,18 +22,18 @@ JournalFinancial=Diaris financers
|
||||
Exports=Exportacions
|
||||
Export=Exporta
|
||||
Modelcsv=Model d'exportació
|
||||
OptionsDeactivatedForThisExportModel=For this export model, options are deactivated
|
||||
OptionsDeactivatedForThisExportModel=Per aquest model d'exportació les opcions estan desactivades
|
||||
Selectmodelcsv=Selecciona un model d'exportació
|
||||
Modelcsv_normal=Exportació clàssica
|
||||
Modelcsv_CEGID=Export towards CEGID Expert
|
||||
BackToChartofaccounts=Return chart of accounts
|
||||
Back=Return
|
||||
Modelcsv_CEGID=Exporta cap a CEGID Expert
|
||||
BackToChartofaccounts=Tornar al Pla comptable
|
||||
Back=Tornar
|
||||
|
||||
Definechartofaccounts=Define a chart of accounts
|
||||
Selectchartofaccounts=Select a chart of accounts
|
||||
Definechartofaccounts=Definir el Pla comptable
|
||||
Selectchartofaccounts=Seleccionar el Pla comptable
|
||||
Validate=Validar
|
||||
Addanaccount=Add an accounting account
|
||||
AccountAccounting=Accounting account
|
||||
Addanaccount=Afegir un compte comptable
|
||||
AccountAccounting=Compte comptable
|
||||
Ventilation=Breakdown
|
||||
ToDispatch=A desglossar
|
||||
Dispatched=Desglossats
|
||||
@ -44,11 +44,11 @@ TradeMargin=Trade margin
|
||||
Reports=Informes
|
||||
ByCustomerInvoice=By invoices customers
|
||||
ByMonth=Per mes
|
||||
NewAccount=New accounting account
|
||||
Update=Update
|
||||
NewAccount=Nou compte comptable
|
||||
Update=Actualitzar
|
||||
List=Llistat
|
||||
Create=Crear
|
||||
CreateMvts=Create movement
|
||||
CreateMvts=Crear moviment
|
||||
UpdateAccount=Modification of an accounting account
|
||||
UpdateMvts=Modification of a movement
|
||||
WriteBookKeeping=Record accounts in general ledger
|
||||
@ -58,7 +58,7 @@ AccountBalanceByMonth=Account balance by month
|
||||
AccountingVentilation=Breakdown accounting
|
||||
AccountingVentilationSupplier=Breakdown accounting supplier
|
||||
AccountingVentilationCustomer=Breakdown accounting customer
|
||||
Line=Line
|
||||
Line=Línia
|
||||
|
||||
CAHTF=Total purchase supplier HT
|
||||
InvoiceLines=Lines of invoice to be ventilated
|
||||
@ -131,14 +131,14 @@ CashPayment=Cash Payment
|
||||
SupplierInvoicePayment=Payment of invoice supplier
|
||||
CustomerInvoicePayment=Payment of invoice customer
|
||||
|
||||
ThirdPartyAccount=Thirdparty account
|
||||
ThirdPartyAccount=Compte de tercer
|
||||
|
||||
NewAccountingMvt=Nou moviment
|
||||
NumMvts=Nombre de moviment
|
||||
ListeMvts=List of the movement
|
||||
ListeMvts=Llistat del moviment
|
||||
ErrorDebitCredit=Debit and Credit cannot have a value at the same time
|
||||
|
||||
ReportThirdParty=List thirdparty account
|
||||
ReportThirdParty=Llitat de comptes de tercers
|
||||
DescThirdPartyReport=Consult here the list of the thirdparty customers and the suppliers and their accounting accounts
|
||||
|
||||
ListAccounts=List of the accounting accounts
|
||||
|
||||
@ -231,8 +231,8 @@ Security=Seguretat
|
||||
Passwords=Contrasenyes
|
||||
DoNotStoreClearPassword=No emmagatzemar la contrasenya sense xifrar a la base
|
||||
MainDbPasswordFileConfEncrypted=Encriptar la contrasenya de la base en l'arxiu conf.php
|
||||
InstrucToEncodePass=To have password encoded into the <b>conf.php</b> file, replace the line <br><b>$dolibarr_main_db_pass="...";</b><br>by<br><b>$dolibarr_main_db_pass="crypted:%s";</b>
|
||||
InstrucToClearPass=To have password decoded (clear) into the <b>conf.php</b> file, replace the line <br><b>$dolibarr_main_db_pass="crypted:...";</b><br>by<br><b>$dolibarr_main_db_pass="%s";</b>
|
||||
InstrucToEncodePass=Per tenir la contrasenya encriptada al fitxer <b>conf.php</b> reemplaça la línia<br><b>$dolibarr_main_db_pass="...";</b><br>per<br><b>$dolibarr_main_db_pass="crypted:%s";</b>
|
||||
InstrucToClearPass=Per tenir la contrasenya descodificada en el fitxer de configuració <b> conf.php </b>, reemplaça en aquest fitxer la línia <br><b>$dolibarr_main_db_pass="crypted:..."</b><br> per <br><b>$dolibarr_main_db_pass="%s"</b>
|
||||
ProtectAndEncryptPdfFiles=Protecció i encriptació dels pdf generats
|
||||
ProtectAndEncryptPdfFilesDesc=La protecció d'un document pdf deixa el document lliure a la lectura ia la impressió a qualsevol lector de PDF. Per contra, la modificació i la còpia resulten impossibles.
|
||||
Feature=Funció
|
||||
|
||||
@ -178,7 +178,7 @@ NumberOfBills=Nº de factures
|
||||
NumberOfBillsByMonth=Nº de factures per mes
|
||||
AmountOfBills=Import de les factures
|
||||
AmountOfBillsByMonthHT=Import de les factures per mes (Sense IVA)
|
||||
ShowSocialContribution=Show social/fiscal tax
|
||||
ShowSocialContribution=Mostra l'impost social
|
||||
ShowBill=Veure factura
|
||||
ShowInvoice=Veure factura
|
||||
ShowInvoiceReplace=Veure factura rectificativa
|
||||
@ -270,7 +270,7 @@ BillAddress=Direcció de facturació
|
||||
HelpEscompte=Un <b>descompte</b> és un descompte acordat sobre una factura donada, a un client que va realitzar el seu pagament molt abans del venciment.
|
||||
HelpAbandonBadCustomer=Aquest import es va abandonar (client jutjat com morós) i es considera com una pèrdua excepcional.
|
||||
HelpAbandonOther=Aquest import es va abandonar ja que es tractava d'un error de facturació (mala introducció de dades, factura substituïda per una altra).
|
||||
IdSocialContribution=Social/fiscal tax payment id
|
||||
IdSocialContribution=Id. pagament d'impost social
|
||||
PaymentId=ID pagament
|
||||
InvoiceId=Id factura
|
||||
InvoiceRef=Ref. factura
|
||||
@ -330,8 +330,8 @@ PaymentTypeCB=Targeta
|
||||
PaymentTypeShortCB=Targeta
|
||||
PaymentTypeCHQ=Xec
|
||||
PaymentTypeShortCHQ=Xec
|
||||
PaymentTypeTIP=Deposit
|
||||
PaymentTypeShortTIP=Deposit
|
||||
PaymentTypeTIP=Bestreta
|
||||
PaymentTypeShortTIP=Bestreta
|
||||
PaymentTypeVAD=Pagament On Line
|
||||
PaymentTypeShortVAD=Pagament On Line
|
||||
PaymentTypeTRA=Lletra de canvi
|
||||
|
||||
@ -19,7 +19,7 @@ BoxLastContracts=Últims contractes
|
||||
BoxLastContacts=Últims contactes/adreçes
|
||||
BoxLastMembers=Últims membres modificats
|
||||
BoxFicheInter=Últimes intervencions modificades
|
||||
BoxCurrentAccounts=Open accounts balance
|
||||
BoxCurrentAccounts=Balanç de comptes oberts
|
||||
BoxSalesTurnover=Volum de vendes
|
||||
BoxTotalUnpaidCustomerBills=Total factures a clients pendents de cobrament
|
||||
BoxTotalUnpaidSuppliersBills=Total factures de proveïdors pendents de pagament
|
||||
@ -47,7 +47,7 @@ BoxTitleLastModifiedMembers=Últims %s membres modificats
|
||||
BoxTitleLastFicheInter=Les %s últimes intervencions modificades
|
||||
BoxTitleOldestUnpaidCustomerBills=Les %s factures més antigues a clients pendents de cobrament
|
||||
BoxTitleOldestUnpaidSupplierBills=Les %s factures més antigues de proveïdors pendents de pagament
|
||||
BoxTitleCurrentAccounts=Open accounts balances
|
||||
BoxTitleCurrentAccounts=Balanços de comptes oberts
|
||||
BoxTitleSalesTurnover=Volum de vendes realitzades
|
||||
BoxTitleTotalUnpaidCustomerBills=Factures a clients pendents de cobrament
|
||||
BoxTitleTotalUnpaidSuppliersBills=Factures de proveïdors pendents de pagament
|
||||
|
||||
@ -30,8 +30,8 @@ ThirdPartyContact=Contacte tercer
|
||||
StatusContactValidated=Estat del contacte
|
||||
Company=Empresa
|
||||
CompanyName=Raó social
|
||||
AliasNames=Alias name (commercial, trademark, ...)
|
||||
AliasNameShort=Alias name
|
||||
AliasNames=Àlies (nom comercial, marca, ...)
|
||||
AliasNameShort=Nom comercial
|
||||
Companies=Empreses
|
||||
CountryIsInEEC=Pais de la Comunitat Econòmica Europea
|
||||
ThirdPartyName=Nom del tercer
|
||||
@ -69,7 +69,7 @@ Country=Pais
|
||||
CountryCode=Codi pais
|
||||
CountryId=Id pais
|
||||
Phone=Telèfon
|
||||
PhoneShort=Phone
|
||||
PhoneShort=Telèfon
|
||||
Skype=Skype
|
||||
Call=Trucar
|
||||
Chat=Xat
|
||||
@ -413,10 +413,10 @@ OutstandingBillReached=S'ha arribat al màx. de factures pendents
|
||||
MonkeyNumRefModelDesc=Retorna un número sota el format %syymm-nnnn per als codis de clients i %syymm-nnnn per als codis dels proveïdors, on yy és l'any, mm el mes i nnnn un comptador seqüencial sense ruptura i sense tornar a 0.
|
||||
LeopardNumRefModelDesc=Codi de client/proveïdor lliure sense verificació. Pot ser modificat en qualsevol moment.
|
||||
ManagingDirectors=Nom del gerent(s) (CEO, director, president ...)
|
||||
SearchThirdparty=Search third party
|
||||
SearchThirdparty=Buscar tercer
|
||||
SearchContact=Cercar contacte
|
||||
MergeOriginThirdparty=Duplicate third party (third party you want to delete)
|
||||
MergeThirdparties=Merge third parties
|
||||
ConfirmMergeThirdparties=Are you sure you want to merge this third party into the current one ? All linked objects (invoices, orders, ...) will be moved to current third party so you will be able to delete the duplicate one.
|
||||
ThirdpartiesMergeSuccess=Thirdparties have been merged
|
||||
ErrorThirdpartiesMerge=There was an error when deleting the thirdparties. Please check the log. Changes have been reverted.
|
||||
MergeOriginThirdparty=Duplicar tercer (tercer que vols eliminar)
|
||||
MergeThirdparties=Fusionar tercers
|
||||
ConfirmMergeThirdparties=Estàs segur que vols fusionar aquest tercer amb l'actual? Tots els objectes relacionats (factures, comandes, ...) serán mogudes al tercer actual i el duplicat serà esborrat.
|
||||
ThirdpartiesMergeSuccess=Els tercers han sigut fusionats
|
||||
ErrorThirdpartiesMerge=Hi ha hagut un error mentre s'esborraven els tercers. Per favor, revisa el log. Els canvis han sigut revertits.
|
||||
|
||||
@ -35,7 +35,7 @@ ECMSearchByEntity=Cercar per objecte
|
||||
ECMSectionOfDocuments=Carpetes de documents
|
||||
ECMTypeManual=Manual
|
||||
ECMTypeAuto=Automàtic
|
||||
ECMDocsBySocialContributions=Documents linked to social or fiscal taxes
|
||||
ECMDocsBySocialContributions=Documents relacionats als impostos socials o fiscals
|
||||
ECMDocsByThirdParties=Documents associats a tercers
|
||||
ECMDocsByProposals=Documents associats a pressupostos
|
||||
ECMDocsByOrders=Documents associats a comandes
|
||||
|
||||
@ -65,7 +65,7 @@ ErrorNoValueForCheckBoxType=Els valors de la llista han de ser indicats
|
||||
ErrorNoValueForRadioType=Els valors de la llista han de ser indicats
|
||||
ErrorBadFormatValueList=Els valors de la llista no peudo contenir més d'una coma: <u>%s </u>, però necessita una: clau, valors
|
||||
ErrorFieldCanNotContainSpecialCharacters=El camp <b>%s</b> no ha de contenir caràcters especials
|
||||
ErrorFieldCanNotContainSpecialNorUpperCharacters=Field <b>%s</b> must not contain special characters, nor upper case characters and cannot contain only numbers.
|
||||
ErrorFieldCanNotContainSpecialNorUpperCharacters=El camp <b>%s</b> no ha de contenir caràcters especials, ni caràcters en majúscula i no pot contindre només números.
|
||||
ErrorNoAccountancyModuleLoaded=Mòdul de comptabilitat no activat
|
||||
ErrorExportDuplicateProfil=El nom d'aquest perfil ja existeix per aquest conjunt d'exportació
|
||||
ErrorLDAPSetupNotComplete=La configuració Dolibarr-LDAP és incompleta.
|
||||
@ -79,7 +79,7 @@ ErrorModuleRequireJavascript=Javascript ha d'estar activat per a que aquesta opc
|
||||
ErrorPasswordsMustMatch=Les 2 contrasenyes indicades s'han de correspondre
|
||||
ErrorContactEMail=S'ha produït un error tècnic. Contacti amb l'administrador al e-mail <b>%s</b>, indicant el codi d'error <b>%s</b> en el seu missatge, o pot també adjuntar una còpia de pantalla d'aquesta pàgina.
|
||||
ErrorWrongValueForField=Valor incorrecte per al camp número <b>%s</b> (el valor '<b>%s</b>' no compleix amb la regla <b>%s</b>)
|
||||
ErrorFieldValueNotIn=Wrong value for field number <b>%s</b> (value '<b>%s</b>' is not a value available into field <b>%s</b> of table <b>%s</b>)
|
||||
ErrorFieldValueNotIn=Valor incorrecte per al camp número <b>%s</b> (el valor '<b>%s</b>' no és un valors disponible en el camp <b>%s</b> de la taula <b>%s</b>)
|
||||
ErrorFieldRefNotIn=Valor incorrecte per al camp nombre <b>%s</b> (el valor '<b>%s</b>' no és una referència existent en <b>%s</b>)
|
||||
ErrorsOnXLines=Errors a <b>%s</b> línies font
|
||||
ErrorFileIsInfectedWithAVirus=L'antivirus no ha pogut validar aquest arxiu (és probable que estigui infectat per un virus)!
|
||||
@ -100,7 +100,7 @@ ErrorProdIdAlreadyExist=%s es troba assignat a altre tercer
|
||||
ErrorFailedToSendPassword=Error en l'enviament de la contrasenya
|
||||
ErrorFailedToLoadRSSFile=Error en la recuperació del flux RSS. Afegiu la constant MAIN_SIMPLEXMLLOAD_DEBUG si el missatge d'error no és molt explícit.
|
||||
ErrorPasswordDiffers=Les contrasenyes no són identiques, torni a introduir-les
|
||||
ErrorForbidden=Access denied.<br>You try to access to a page, area or feature of a disabled module or without being in an authenticated session or that is not allowed to your user.
|
||||
ErrorForbidden=Accés denegat. <br> Intentes accedir a una pàgina, àrea o funcionalitat d'un mòdul amb desactivat o sense estar en una sessió autenticada o que no se li permet al seu usuari.
|
||||
ErrorForbidden2=Els permisos per a aquest usuari poden ser assignats per l'administrador Dolibarr mitjançant el menú %s-> %s.
|
||||
ErrorForbidden3=Dolibarr no sembla funcionar en una sessió autentificada. Consulteu la documentació d'instal lació de Dolibarr per saber com administrar les autenticacions (htacces, mod_auth o altre ...).
|
||||
ErrorNoImagickReadimage=La classe imagick_readimage no està present en aquesta instal lació de PHP. La ressenya no està doncs disponible. Els administradors poden desactivar aquesta pestanya en el menú Configuració->Visualització.
|
||||
@ -170,8 +170,8 @@ ErrorGlobalVariableUpdater4=El client SOAP ha fallat amb l'error '%s'
|
||||
ErrorGlobalVariableUpdater5=Sense variable global seleccionada
|
||||
ErrorFieldMustBeANumeric=El camp <b>%s</b> ha de contenir un valor numèric
|
||||
ErrorFieldMustBeAnInteger=El camp <b>%s</b> ha de ser un enter
|
||||
ErrorMandatoryParametersNotProvided=Mandatory parameter(s) not provided
|
||||
ErrorOppStatusRequiredIfAmount=You set an estimated amount for this opportunity/lead. So you must also enter its status
|
||||
ErrorMandatoryParametersNotProvided=Paràmetre/s obligatori/s no definits
|
||||
ErrorOppStatusRequiredIfAmount=S'estableix una quantitat estimada per aquesta oportunitat/prospecte. Així que també has d'introduir el seu estat
|
||||
|
||||
# Warnings
|
||||
WarningMandatorySetupNotComplete=Els paràmetres obligatoris de configuració no estan encara definits
|
||||
@ -192,4 +192,4 @@ WarningNotRelevant=Operació irrellevant per a aquest conjunt de dades
|
||||
WarningFeatureDisabledWithDisplayOptimizedForBlindNoJs=Funcionalitat desactivada quant la configuració de visualització és optimitzada per a persones cegues o navegadors de text.
|
||||
WarningPaymentDateLowerThanInvoiceDate=La data de pagament (%s) és anterior a la data (%s) de la factura %s.
|
||||
WarningTooManyDataPleaseUseMoreFilters=Masses dades. Utilitzi més filtres.
|
||||
WarningSomeLinesWithNullHourlyRate=Some times were recorded by users when their hourly rate was not defined. A value of 0 was used but this may result in wrong valuation of time spent.
|
||||
WarningSomeLinesWithNullHourlyRate=Algunes vegades van ser registrats pels usuaris quan no s'havia definit el seu preu per hora. Es va utilitzar un valor de 0, però això pot resultar en una valoració equivocada del temps invertit.
|
||||
|
||||
@ -48,7 +48,7 @@ NoImportableData=Sense taules de dades importables (cap mòdul amb les definicio
|
||||
FileSuccessfullyBuilt=Arxiu d'exportació generat
|
||||
SQLUsedForExport=Consulta SQL utilitzada per construir el fitxer d'exportació
|
||||
LineId=ID de línia
|
||||
LineLabel=Label of line
|
||||
LineLabel=Etiqueta de la línia
|
||||
LineDescription=Descripció de línia
|
||||
LineUnitPrice=Preu unitari de la línia
|
||||
LineVATRate=Tipus d'IVA de la línia
|
||||
@ -133,4 +133,4 @@ SelectFilterFields=Si vol aplicar un filtre sobre alguns valors, introduïu-los
|
||||
FilterableFields=Camps filtrables
|
||||
FilteredFields=Campos filtrats
|
||||
FilteredFieldsValues=Valors de filtres
|
||||
FormatControlRule=Format control rule
|
||||
FormatControlRule=Regla de control de format
|
||||
|
||||
@ -63,7 +63,7 @@ DatabaseSuperUserAccess=Base de dades - Accés super usuari
|
||||
CheckToCreateDatabase=Seleccioneu aquesta opció si la base de dades no existeix i s'ha de crear. En aquest cas, cal indicar usuari/contrasenya de superusuari, més endavant en aquesta pàgina.
|
||||
CheckToCreateUser=Seleccioneu aquesta opció si l'usuari no existeix i s'ha de crear.<br>En aquest cas, cal indicar usuari/contrasenya de superusuari, més endavant en aquesta pàgina.
|
||||
Experimental=(experimental)
|
||||
Deprecated=(deprecated)
|
||||
Deprecated=(obsolet)
|
||||
DatabaseRootLoginDescription=Usuari de la base que té els drets de creació de bases de dades o compte per a la base de dades, inútil si la base de dades i el seu usuari ja existeixen (com quan estan en un amfitrió).
|
||||
KeepEmptyIfNoPassword=Deixi buit si l'usuari no té contrasenya
|
||||
SaveConfigurationFile=Gravació del fitxer de configuració
|
||||
|
||||
@ -57,7 +57,7 @@ ErrorSomeErrorWereFoundRollbackIsDone=S'han trobat alguns errors. Modificacions
|
||||
ErrorConfigParameterNotDefined=El paràmetre <b>%s</b> no està definit en el fitxer de configuració Dolibarr <b>conf.php</b>.
|
||||
ErrorCantLoadUserFromDolibarrDatabase=Impossible trobar l'usuari <b>%s</b> a la base de dades Dolibarr.
|
||||
ErrorNoVATRateDefinedForSellerCountry=Error, cap tipus d'IVA definit per al país '%s'.
|
||||
ErrorNoSocialContributionForSellerCountry=Error, no social/fiscal taxes type defined for country '%s'.
|
||||
ErrorNoSocialContributionForSellerCountry=Error, cap tipus d'impost social definit per al país '%s'.
|
||||
ErrorFailedToSaveFile=Error, el registre del fitxer ha fallat.
|
||||
SetDate=Definir data
|
||||
SelectDate=Seleccioneu una data
|
||||
@ -108,7 +108,7 @@ Yes=Sí
|
||||
no=no
|
||||
No=No
|
||||
All=Tot
|
||||
Alls=All
|
||||
Alls=Tot
|
||||
Home=Inici
|
||||
Help=Ajuda
|
||||
OnlineHelp=Ajuda en línia
|
||||
@ -128,7 +128,7 @@ Disable=Desactivar
|
||||
Disabled=Desactivat
|
||||
Add=Afegir
|
||||
AddLink=Enllaçar
|
||||
RemoveLink=Remove link
|
||||
RemoveLink=Elimina enllaç
|
||||
Update=Modificar
|
||||
AddActionToDo=Afegir acció a realitzar
|
||||
AddActionDone=Afegir acció realitzada
|
||||
@ -303,8 +303,8 @@ UnitPriceHT=Preu base
|
||||
UnitPriceTTC=Preu unitari total
|
||||
PriceU=P.U.
|
||||
PriceUHT=P.U.
|
||||
AskPriceSupplierUHT=U.P. net Requested
|
||||
PriceUTTC=U.P. (inc. tax)
|
||||
AskPriceSupplierUHT=Preu Unitari sol·licitat
|
||||
PriceUTTC=Preu unitari (IVA inclòs)
|
||||
Amount=Import
|
||||
AmountInvoice=Import factura
|
||||
AmountPayment=Import pagament
|
||||
@ -341,7 +341,7 @@ IncludedVAT=IVA inclòs
|
||||
HT=Sense IVA
|
||||
TTC=IVA inclòs
|
||||
VAT=IVA
|
||||
VATs=Sales taxes
|
||||
VATs=IVAs
|
||||
LT1ES=RE
|
||||
LT2ES=IRPF
|
||||
VATRate=Taxa IVA
|
||||
@ -416,8 +416,8 @@ Qty=Qt.
|
||||
ChangedBy=Modificat per
|
||||
ApprovedBy=Aprovat per
|
||||
ApprovedBy2=Aprovat per (segona aprovació)
|
||||
Approved=Approved
|
||||
Refused=Refused
|
||||
Approved=Aprovat
|
||||
Refused=Rebutjada
|
||||
ReCalculate=Recalcular
|
||||
ResultOk=Èxit
|
||||
ResultKo=Error
|
||||
@ -426,7 +426,7 @@ Reportings=Informes
|
||||
Draft=Esborrany
|
||||
Drafts=Esborranys
|
||||
Validated=Validat
|
||||
Opened=Open
|
||||
Opened=Actiu
|
||||
New=Nou
|
||||
Discount=Descompte
|
||||
Unknown=Desconegut
|
||||
@ -683,7 +683,7 @@ LinkedToSpecificUsers=Enllaçat a un contacte d'usuari particular
|
||||
DeleteAFile=Eliminació d'arxiu
|
||||
ConfirmDeleteAFile=Confirme l'eliminació de l'arxiu
|
||||
NoResults=Cap resultat
|
||||
SystemTools=System tools
|
||||
SystemTools=Utilitats sistema
|
||||
ModulesSystemTools=Utilitats mòduls
|
||||
Test=Prova
|
||||
Element=Element
|
||||
@ -709,14 +709,14 @@ ShowTransaction=Mostra transacció
|
||||
GoIntoSetupToChangeLogo=Anar a Inici->Configuració->Empresa per canviar el logotip o anar a Inici->Configuració->Visualització per amagar.
|
||||
Deny=Denegar
|
||||
Denied=Denegad
|
||||
ListOfTemplates=List of templates
|
||||
Gender=Gender
|
||||
Genderman=Man
|
||||
Genderwoman=Woman
|
||||
ViewList=List view
|
||||
Mandatory=Mandatory
|
||||
Hello=Hello
|
||||
Sincerely=Sincerely
|
||||
ListOfTemplates=Llistat de plantilles
|
||||
Gender=Sexe
|
||||
Genderman=Home
|
||||
Genderwoman=Dona
|
||||
ViewList=Vista llistat
|
||||
Mandatory=Obligatori
|
||||
Hello=Hola
|
||||
Sincerely=Sincerament
|
||||
# Week day
|
||||
Monday=Dilluns
|
||||
Tuesday=Dimarts
|
||||
@ -746,5 +746,5 @@ ShortThursday=Dj
|
||||
ShortFriday=Dv
|
||||
ShortSaturday=Ds
|
||||
ShortSunday=Dg
|
||||
SelectMailModel=Select email template
|
||||
SetRef=Set ref
|
||||
SelectMailModel=Selecciona plantilla d'email
|
||||
SetRef=Definiar ref
|
||||
|
||||
@ -199,8 +199,8 @@ Entreprises=Empreses
|
||||
DOLIBARRFOUNDATION_PAYMENT_FORM=Per realitzar el pagament de la seva cotització per transferència bancària, visiteu la pàgina <a target="_blank" href="http://wiki.dolibarr.org/index.php/Subscribirse#Para_una_adhesi.C3.B3n_por_transferencia">http://wiki.dolibarr.org/index.php/Subscribirse</a>.<br>Per pagar amb targeta de crèdit o PayPal, feu clic al botó a la part inferior d'aquesta pàgina.<br><br>
|
||||
ByProperties=Per característiques
|
||||
MembersStatisticsByProperties=Estadístiques dels membres per característiques
|
||||
MembersByNature=This screen show you statistics on members by nature.
|
||||
MembersByRegion=This screen show you statistics on members by region.
|
||||
MembersByNature=Aquesta pantalla mostra les estadístiques de membres per naturalesa.
|
||||
MembersByRegion=Aquesta pantalla mostra les teves estadístiques de membres per regió.
|
||||
VATToUseForSubscriptions=Taxa d'IVA per les afiliacions
|
||||
NoVatOnSubscription=Sense IVA per a les afiliacions
|
||||
MEMBER_PAYONLINE_SENDEMAIL=E-Mail per advertir en cas de recepció de confirmació d'un pagament validat d'una afiliació
|
||||
|
||||
@ -204,7 +204,7 @@ ClickHereToGoTo=Faci clic aquí per anar a %s
|
||||
YouMustClickToChange=però, primer ha de fer clic en el següent enllaç per validar aquest canvi de contrasenya
|
||||
ForgetIfNothing=Si vostè no ha sol·licitat aquest canvi, simplement ignori aquest e-mail. Les seves credencials són guardades de forma segura
|
||||
IfAmountHigherThan=si l'import es major que <strong>%s</strong>
|
||||
SourcesRepository=Repository for sources
|
||||
SourcesRepository=Repositori de fonts
|
||||
|
||||
##### Calendar common #####
|
||||
AddCalendarEntry=Afegir entrada al calendari
|
||||
|
||||
@ -11,7 +11,7 @@ ProjectsPublicDesc=Aquesta vista mostra tots els projectes en els que vostè té
|
||||
ProjectsPublicTaskDesc=Aquesta vista mostra tots els projectes als que té dret a visualitzar
|
||||
ProjectsDesc=Aquesta vista mostra tots els projectes (les seves autoritzacions li ofereixen una visió completa).
|
||||
MyTasksDesc=Aquesta vista es limita als projectes i tasques en què vostè és un contacte afectat en almenys una tasca (qualsevol tipus).
|
||||
OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
|
||||
OnlyOpenedProject=Només visibles els projectes oberts (els projectes en estat d'esborrany o tancats no són visibles)
|
||||
TasksPublicDesc=Aquesta vista mostra tots els projectes i tasques en els que vostè té dret a tenir visibilitat.
|
||||
TasksDesc=Aquesta vista mostra tots els projectes i tasques (les sevas autoritzacions li ofereixen una visió completa).
|
||||
AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
|
||||
@ -26,8 +26,8 @@ ConfirmDeleteATask=Esteu segur de voler eliminar aquesta tasca?
|
||||
OfficerProject=Responsable del projecte
|
||||
LastProjects=Els %s ultims projectes
|
||||
AllProjects=Tots els projectes
|
||||
OpenedProjects=Opened projects
|
||||
OpportunitiesStatusForOpenedProjects=Opportunities status for opened projects
|
||||
OpenedProjects=Projectes oberts
|
||||
OpportunitiesStatusForOpenedProjects=Estat d'oportunitats per projectes oberts
|
||||
ProjectsList=Llistat de projectes
|
||||
ShowProject=Veure projecte
|
||||
SetProject=Definir projecte
|
||||
@ -78,10 +78,10 @@ ListFichinterAssociatedProject=Llistat d'intervencions associades al projecte
|
||||
ListExpenseReportsAssociatedProject=Llistat d'informes de despeses associades al projecte
|
||||
ListDonationsAssociatedProject=Llistat de donacions associades al projecte
|
||||
ListActionsAssociatedProject=Llista d'esdeveniments associats al projecte
|
||||
ListTaskTimeUserProject=List of time consumed on tasks of project
|
||||
TaskTimeUserProject=Time consumed on tasks of project
|
||||
ActivityOnProjectToday=Activity on project today
|
||||
ActivityOnProjectYesterday=Activity on project yesterday
|
||||
ListTaskTimeUserProject=Llistat del temps consumit en tasques d'aquest projecte
|
||||
TaskTimeUserProject=Temps consumit en tasques del projecte
|
||||
ActivityOnProjectToday=Activitat en el projecte avui
|
||||
ActivityOnProjectYesterday=Activitat en el projecte ahir
|
||||
ActivityOnProjectThisWeek=Activitat en el projecte aquesta setmana
|
||||
ActivityOnProjectThisMonth=Activitat en el projecte aquest mes
|
||||
ActivityOnProjectThisYear=Activitat en el projecte aquest any
|
||||
@ -97,7 +97,7 @@ ReOpenAProject=Reobrir projecte
|
||||
ConfirmReOpenAProject=Esteu segur de voler reobrir aquest projecte?
|
||||
ProjectContact=Contactes projecte
|
||||
ActionsOnProject=Esdeveniments del projecte
|
||||
OpenedProjects=Opened projects
|
||||
OpenedProjects=Projectes oberts
|
||||
YouAreNotContactOfProject=Vostè no és contacte d'aquest projecte privat
|
||||
DeleteATimeSpent=Eliminació de temps dedicat
|
||||
ConfirmDeleteATimeSpent=Esteu segur de voler eliminar aquest temps dedicat?
|
||||
@ -126,10 +126,10 @@ ProjectCreatedInDolibarr=Projecte %s creat
|
||||
TaskCreatedInDolibarr=La tasca %s a sigut creada
|
||||
TaskModifiedInDolibarr=La tasca %s a sigut modificada
|
||||
TaskDeletedInDolibarr=La tasca %s a sigut eliminada
|
||||
OpportunityStatus=Opportunity status
|
||||
OpportunityStatusShort=Opp. status
|
||||
OpportunityAmount=Opportunity amount
|
||||
OpportunityAmountShort=Opp. amount
|
||||
OpportunityStatus=Estat d'oportunitats
|
||||
OpportunityStatusShort=Estat d'oportunitat
|
||||
OpportunityAmount=Import d'oportunitats
|
||||
OpportunityAmountShort=Import d'oportunitat
|
||||
##### Types de contacts #####
|
||||
TypeContact_project_internal_PROJECTLEADER=Cap de projecte
|
||||
TypeContact_project_external_PROJECTLEADER=Cap de projecte
|
||||
@ -150,7 +150,7 @@ PlannedWorkloadShort=Carrega de treball
|
||||
WorkloadOccupation=Assignació de carrega de treball
|
||||
ProjectReferers=Objectes vinculats
|
||||
SearchAProject=Cercar un projecte
|
||||
SearchATask=Search a task
|
||||
SearchATask=Cerca una tasca
|
||||
ProjectMustBeValidatedFirst=El projecte primer ha de ser validat
|
||||
ProjectDraft=Projectes esborrany
|
||||
FirstAddRessourceToAllocateTime=Associate a resource to allocate time
|
||||
@ -158,28 +158,28 @@ InputPerDay=Entrada per dia
|
||||
InputPerWeek=Entrada per setmana
|
||||
InputPerAction=Entrada per acció
|
||||
TimeAlreadyRecorded=Temps dedicat ja registrat per aquesta tasca/dia i usuari %s
|
||||
ProjectsWithThisUserAsContact=Projects with this user as contact
|
||||
TasksWithThisUserAsContact=Tasks assigned to this user
|
||||
ResourceNotAssignedToProject=Not assigned to project
|
||||
ResourceNotAssignedToTask=Not assigned to task
|
||||
AssignTaskToMe=Assign task to me
|
||||
AssignTask=Assign
|
||||
ProjectOverview=Overview
|
||||
ManageTasks=Use projects to follow tasks and time
|
||||
ManageOpportunitiesStatus=Use projects to follow leads/opportinuties
|
||||
ProjectNbProjectByMonth=Nb of created projects by month
|
||||
ProjectsWithThisUserAsContact=Projectes amb aquest usuari com a contacte
|
||||
TasksWithThisUserAsContact=Tasques asignades a l'usuari
|
||||
ResourceNotAssignedToProject=No assignat a cap projecte
|
||||
ResourceNotAssignedToTask=No assignat a cap tasca
|
||||
AssignTaskToMe=Assignar-me una tasca
|
||||
AssignTask=Assigna
|
||||
ProjectOverview=Informació general
|
||||
ManageTasks=Utilitza els projectes per seguir tasques i temps
|
||||
ManageOpportunitiesStatus=Utilitza els projectes per seguir oportunitats
|
||||
ProjectNbProjectByMonth=Nº de projectes creats per mes
|
||||
ProjectOppAmountOfProjectsByMonth=Amount of opportunities by month
|
||||
ProjectWeightedOppAmountOfProjectsByMonth=Weighted amount of opportunities by month
|
||||
ProjectOpenedProjectByOppStatus=Opened project/lead by opportunity status
|
||||
ProjectsStatistics=Statistics on projects/leads
|
||||
TaskAssignedToEnterTime=Task assigned. Entering time on this task should be possible.
|
||||
OpenedProjectsByThirdparties=Opened projects by thirdparties
|
||||
OpportunityTotalAmount=Opportunities total amount
|
||||
OpenedProjectsByThirdparties=Projectes oberts per tercers
|
||||
OpportunityTotalAmount=Import total d'oportunitats
|
||||
OpportunityPonderatedAmount=Opportunities weighted amount
|
||||
OppStatusPROSP=Prospection
|
||||
OppStatusQUAL=Qualification
|
||||
OppStatusPROPO=Proposal
|
||||
OppStatusPROPO=Pressupost
|
||||
OppStatusNEGO=Negociation
|
||||
OppStatusPENDING=Pending
|
||||
OppStatusWIN=Won
|
||||
OppStatusLOST=Lost
|
||||
OppStatusPENDING=Pendent
|
||||
OppStatusWIN=Guanyat
|
||||
OppStatusLOST=Perdut
|
||||
|
||||
@ -52,7 +52,7 @@ PropalsToBill=Pressupostos signats a facturar
|
||||
ListOfProposals=Llistat de pressupostos
|
||||
ActionsOnPropal=Esdeveniments sobre el pressupost
|
||||
NoOpenedPropals=Sense pressupostos oberts
|
||||
NoOtherOpenedPropals=No other open commercial proposals
|
||||
NoOtherOpenedPropals=No hi ha altres pressupostos oberts
|
||||
RefProposal=Ref. pressupost
|
||||
SendPropalByMail=Enviar pressupost per e-mail
|
||||
AssociatedDocuments=Documents associats al pressupost:
|
||||
@ -98,4 +98,4 @@ DocModelJauneDescription=Model de pressupost Jaune
|
||||
DefaultModelPropalCreate=Model per defecte
|
||||
DefaultModelPropalToBill=Model per defecte en tancar un pressupost (a facturar)
|
||||
DefaultModelPropalClosed=Model per defecte en tancar un pressupost (no facturat)
|
||||
ProposalCustomerSignature=Written acceptance, company stamp, date and signature
|
||||
ProposalCustomerSignature=Acceptació per escrit, segell de l'empresa, data i signatura
|
||||
|
||||
@ -42,5 +42,5 @@ SentToSuppliers=Enviat a proveïdors
|
||||
ListOfSupplierOrders=Llista de comandes a proveïdors
|
||||
MenuOrdersSupplierToBill=Comandes a proveïdors a facturar
|
||||
NbDaysToDelivery=Temps d'entrega en dies
|
||||
DescNbDaysToDelivery=The biggest deliver delay of the products from this order
|
||||
UseDoubleApproval=Use double approval when amount (without tax) is higher than (The second approval can be done by any user with the dedicated permission. Set to 0 for no double approval)
|
||||
DescNbDaysToDelivery=El retard més gran d'entrega dels productes d'aquesta comanda
|
||||
UseDoubleApproval=Utilitza la doble aprovació quan l'import (sense impostos) és més gran (la segona aprovació es pot fer per un usuari amb els permisos dedicats. Posa 0 per deshabilitar la doble aprovació).
|
||||
|
||||
@ -1,21 +1,21 @@
|
||||
# Dolibarr language file - Source file is en_US - trips
|
||||
ExpenseReport=Expense report
|
||||
ExpenseReports=Expense reports
|
||||
Trip=Expense report
|
||||
Trips=Expense reports
|
||||
TripsAndExpenses=Expenses reports
|
||||
TripsAndExpensesStatistics=Expense reports statistics
|
||||
Trip=Informe de despeses
|
||||
Trips=Informes de despeses
|
||||
TripsAndExpenses=Informes de despeses
|
||||
TripsAndExpensesStatistics=Estadístiques de l'informe de despeses
|
||||
TripCard=Expense report card
|
||||
AddTrip=Create expense report
|
||||
ListOfTrips=List of expense reports
|
||||
AddTrip=Crear informe de despeses
|
||||
ListOfTrips=Llistat de informes de despeses
|
||||
ListOfFees=Llistat notes de honoraris
|
||||
ShowTrip=Show expense report
|
||||
NewTrip=New expense report
|
||||
ShowTrip=Mostra l'informe de despeses
|
||||
NewTrip=Nou informe de despeses
|
||||
CompanyVisited=Empresa/institució visitada
|
||||
Kilometers=Quilòmetres
|
||||
FeesKilometersOrAmout=Import o quilòmetres
|
||||
DeleteTrip=Delete expense report
|
||||
ConfirmDeleteTrip=Are you sure you want to delete this expense report ?
|
||||
DeleteTrip=Eliminar informe de despeses
|
||||
ConfirmDeleteTrip=Esteu segur de voler eliminar aquest informe de despeses?
|
||||
ListTripsAndExpenses=List of expense reports
|
||||
ListToApprove=Waiting for approval
|
||||
ExpensesArea=Expense reports area
|
||||
@ -54,17 +54,17 @@ Date_DEBUT=Period date start
|
||||
Date_FIN=Period date end
|
||||
ModePaiement=Payment mode
|
||||
Note=Note
|
||||
Project=Project
|
||||
Project=Projecte
|
||||
|
||||
VALIDATOR=User responsible for approval
|
||||
VALIDOR=Approved by
|
||||
AUTHOR=Recorded by
|
||||
AUTHORPAIEMENT=Paid by
|
||||
REFUSEUR=Denied by
|
||||
CANCEL_USER=Deleted by
|
||||
VALIDOR=Aprovat per
|
||||
AUTHOR=Desat per
|
||||
AUTHORPAIEMENT=Pagat per
|
||||
REFUSEUR=Denegat per
|
||||
CANCEL_USER=Eliminat per
|
||||
|
||||
MOTIF_REFUS=Reason
|
||||
MOTIF_CANCEL=Reason
|
||||
MOTIF_REFUS=Raó
|
||||
MOTIF_CANCEL=Raó
|
||||
|
||||
DATE_REFUS=Deny date
|
||||
DATE_SAVE=Validation date
|
||||
@ -72,8 +72,8 @@ DATE_VALIDE=Validation date
|
||||
DATE_CANCEL=Cancelation date
|
||||
DATE_PAIEMENT=Payment date
|
||||
|
||||
TO_PAID=Pay
|
||||
BROUILLONNER=Reopen
|
||||
TO_PAID=Pagar
|
||||
BROUILLONNER=Reobrir
|
||||
SendToValid=Sent on approval
|
||||
ModifyInfoGen=Edita
|
||||
ValidateAndSubmit=Validate and submit for approval
|
||||
|
||||
@ -57,7 +57,7 @@ RemoveFromGroup=Eliminar del grup
|
||||
PasswordChangedAndSentTo=Contrasenya canviada i enviada a <b>%s</b>.
|
||||
PasswordChangeRequestSent=Petició de canvi de contrasenya per a <b>%s</b> enviada a <b>%s</b>.
|
||||
MenuUsersAndGroups=Usuaris i grups
|
||||
MenuMyUserCard=My user card
|
||||
MenuMyUserCard=La meva fitxa d'usuari
|
||||
LastGroupsCreated=Els %s darrers grups creats
|
||||
LastUsersCreated=Els %s darrers usuaris creats
|
||||
ShowGroup=Veure grup
|
||||
|
||||
@ -15,6 +15,10 @@ NewRelativeDiscount=Neue relative Rabatt
|
||||
DescTaxAndDividendsArea=Dieser Bereich stellt eine Übersicht über alle Zahlungen, die für die Steuer-oder Sozialabgaben. Nur Datensätze mit der Bezahlung während der festgesetzten Jahr hier.
|
||||
RelatedBill=Verwandte Rechnung
|
||||
PaymentConditionRECEP=Prompt nach Rechnungserhalt
|
||||
PaymentTypeTIP=Deposit
|
||||
PaymentTypeShortTIP=Deposit
|
||||
PaymentTypeTRA=Bill payment
|
||||
PaymentTypeShortTRA=Bill
|
||||
LawApplicationPart2=Die Ware bleibt Eigentum der
|
||||
LawApplicationPart3=der Verkäufer bis zur vollständigen Einlösung des
|
||||
LawApplicationPart4=ihren Preis.
|
||||
|
||||
3
htdocs/langs/de_AT/holiday.lang
Normal file
3
htdocs/langs/de_AT/holiday.lang
Normal file
@ -0,0 +1,3 @@
|
||||
# Dolibarr language file - Source file is en_US - holiday
|
||||
Permission20001=Read you own leave requests
|
||||
Permission20004=Read leave requests for everybody
|
||||
@ -65,3 +65,4 @@ AttributeCode=Attribut-Code
|
||||
OptionalFieldsSetup=Optionale Felder einrichten
|
||||
CreateDraft=Erstelle Entwurf
|
||||
NoPhotoYet=Es wurde noch kein Bild hochgeladen
|
||||
ShowTransaction=Show transaction
|
||||
|
||||
@ -1,4 +1,7 @@
|
||||
# Dolibarr language file - Source file is en_US - admin
|
||||
AntiVirusCommandExample=Example for ClamWin: c:\\Progra~1\\ClamWin\\bin\\clamscan.exe<br>Example for ClamAv: /usr/bin/clamscan
|
||||
AntiVirusParamExample=Example for ClamWin: --database="C:\\Program Files (x86)\\ClamWin\\lib"
|
||||
ListOfDirectoriesForModelGenODT=List of directories containing templates files with OpenDocument format.<br><br>Put here full path of directories.<br>Add a carriage return between eah directory.<br>To add a directory of the GED module, add here <b>DOL_DATA_ROOT/ecm/yourdirectoryname</b>.<br><br>Files in those directories must end with <b>.odt</b>.
|
||||
ExampleOfDirectoriesForModelGen=Examples of syntax:<br>c:\\mydir<br>/home/mydir<br>DOL_DATA_ROOT/ecm/ecmdir
|
||||
Permission171=Read trips and expenses (own and his subordinates)
|
||||
Permission771=Read expense reports (own and his subordinates)
|
||||
|
||||
5
htdocs/langs/de_CH/banks.lang
Normal file
5
htdocs/langs/de_CH/banks.lang
Normal file
@ -0,0 +1,5 @@
|
||||
# Dolibarr language file - Source file is en_US - banks
|
||||
RejectCheck=Check rejection
|
||||
RejectCheckDate=Check rejection date
|
||||
CheckRejected=Check rejected
|
||||
CheckRejectedAndInvoicesReopened=Check rejected and invoices reopened
|
||||
52
htdocs/langs/de_CH/bills.lang
Normal file
52
htdocs/langs/de_CH/bills.lang
Normal file
@ -0,0 +1,52 @@
|
||||
# Dolibarr language file - Source file is en_US - bills
|
||||
BillsCustomersUnpaid=Unbezahlte Kundenrechnungen
|
||||
BillsCustomersUnpaidForCompany=Unbezahlte Rechnungen vom Kunden %s
|
||||
BillsSuppliersUnpaid=Unbezahlte Lieferantenrechnungen
|
||||
BillsSuppliersUnpaidForCompany=Unbezahlte Rechnungen für den Lieferanten %s
|
||||
BillsStatistics=Zahlungsstatistik - Kundenrechnungen
|
||||
BillsStatisticsSuppliers=Zahlungsstatistik - Lieferantenrechnungen
|
||||
DisabledBecauseNotErasable=Das ist deaktiviert, weil ich das nicht löschen kann.
|
||||
InvoiceStandardAsk=Eine Standardrechnung erstellen
|
||||
InvoiceStandardDesc=Eine normale Kundenrechnung erstellen
|
||||
InvoiceDeposit=Akontorechnung
|
||||
InvoiceDepositAsk=Akontorechnung erstellen
|
||||
InvoiceDepositDesc=Eine Akontorechnung erstellen
|
||||
InvoiceProForma=Proformarechnung
|
||||
InvoiceProFormaAsk=Eine Proformarechnung erstellen
|
||||
InvoiceReplacementAsk=Eine Ersatzrechnung erstellen
|
||||
InvoiceReplacementDesc=<b>Eine Ersatzrechnung</b> wird an Stelle einer anderen Rechnung erzeugt. Die andere Rechnung wird so storniert Sie.<br><br> Hinweis: Das funktioniert nur, wenn zur Ursprungsrechnung noch keine Zahlung eingegangen ist. Eine noch nicht geschlossene ersetzte Rechnung fällt automatisch in den Status 'zurückgezogen'.
|
||||
InvoiceAvoirAsk=Gutschrift zum Vermindern des Rechnungsbetrages
|
||||
InvoiceAvoirDesc=Mit einer <b>Gutschrift</b> gleichst du eine Rechnung aus, z.B. weil jemand zuviel bezahlt hat, oder du zuviel verrechnet hast. Das kannst du auch bei Minderung benutzen, also einer Preisreduktion durch gelieferte mangelhafte Ware.
|
||||
CorrectionInvoice=Korrigierte Rechnung
|
||||
NotConsumed=Nicht verbraucht
|
||||
NoReplacableInvoice=Ich habe keine ersatzfähige Rechnung.
|
||||
NoInvoiceToCorrect=Ich habe keine Rechnung zu korrigieren.
|
||||
InvoiceHasAvoir=Korrigiert durch eine oder mehrere Gutschriften
|
||||
CardBill=Rechnungsübersicht
|
||||
InvoiceLine=Rechnungsposition
|
||||
SupplierBill=LIeferantenrechnung
|
||||
PaidBack=Zurückbezahlt
|
||||
DeletePayment=Zahlung löschen
|
||||
ConfirmDeletePayment=Nur zur Sicherheit: Willst du diese Zahlung wirklich löschen?
|
||||
ConfirmConvertToReduc=Willst du diese Gutschrift in einen absoluten Rabatt umwandeln? <br>Ich mache dir deinen angegebenen Betrag als Rabatt auswählbar, den du in Zukunft bei Rechnungen wieder verwenden kannst.
|
||||
ReceivedPayments=Zahlungseingang
|
||||
ReceivedCustomersPayments=Erhaltene Kundenzahlungen
|
||||
PaymentsReportsForYear=Zahlungsbericht laufendes Jahr für %s
|
||||
PaymentsBackAlreadyDone=Bereits erledigte Rückzahlungen
|
||||
PaymentRule=Zahlungsmodalitäten
|
||||
PaymentConditions=Zahlungsfrist
|
||||
PaymentConditionsShort=Frist
|
||||
PaymentAmount=Betrag
|
||||
PaymentHigherThanReminderToPay=Der eingegangene Betrag ist höher als der Mahnbetrag.
|
||||
HelpPaymentHigherThanReminderToPay=Hoppla, du willst einen höheren Betrag angeben, als noch offen ist. <br> Falls das so stimmt und du daraus z.B. eine Gutschrift machen willst - kein Problem.
|
||||
ClassifyCanceled=Als 'zurückgezogen' markieren
|
||||
AddBill=Erstelle eine Rechnung oder Gutschrift
|
||||
DeleteBill=Rechnung löschen
|
||||
SearchACustomerInvoice=Kundenrechnung finden
|
||||
SearchASupplierInvoice=Lieferantenrechnung finden
|
||||
CancelBill=Rechnung stornieren
|
||||
SendRemindByMail=Mahnung per E-Mail senden
|
||||
PaymentTypeTIP=Deposit
|
||||
PaymentTypeShortTIP=Deposit
|
||||
PaymentTypeTRA=Bill payment
|
||||
PaymentTypeShortTRA=Bill
|
||||
3
htdocs/langs/de_CH/holiday.lang
Normal file
3
htdocs/langs/de_CH/holiday.lang
Normal file
@ -0,0 +1,3 @@
|
||||
# Dolibarr language file - Source file is en_US - holiday
|
||||
Permission20001=Read you own leave requests
|
||||
Permission20004=Read leave requests for everybody
|
||||
@ -19,3 +19,4 @@ FormatDateHourShort=%d/%m/%Y %H:%M
|
||||
FormatDateHourSecShort=%d/%m/%Y %H:%M:%S
|
||||
FormatDateHourTextShort=%d %b %Y %H:%M
|
||||
FormatDateHourText=%d %B %Y %H:%M
|
||||
ShowTransaction=Show transaction
|
||||
|
||||
2
htdocs/langs/de_CH/projects.lang
Normal file
2
htdocs/langs/de_CH/projects.lang
Normal file
@ -0,0 +1,2 @@
|
||||
# Dolibarr language file - Source file is en_US - projects
|
||||
OpportunitiesStatusForOpenedProjects=Opportunities status for opened projects
|
||||
@ -39,7 +39,7 @@ InternalUsers=Interne Benutzer
|
||||
ExternalUsers=Externe Benutzer
|
||||
GlobalSetup=Allgemeine Einstellungen
|
||||
GUISetup=Anzeige
|
||||
SetupArea=Einstellungsübersicht
|
||||
SetupArea=Einstellungen - Übersicht
|
||||
FormToTestFileUploadForm=Formular für das Testen von Datei-Uplads (je nach Konfiguration)
|
||||
IfModuleEnabled=Anmerkung: Ist nur wirksam wenn Modul <b>%s</b> aktiviert ist
|
||||
RemoveLock=Entfernen Sie die Datei <b>%s</b> falls vorhanden, um das Aktualisierungs-Tool auszuführen
|
||||
@ -151,7 +151,7 @@ System=System
|
||||
SystemInfo=Systeminformationen
|
||||
SystemToolsArea=Systemwerkzeugsübersicht
|
||||
SystemToolsAreaDesc=In diesem Bereich finden Sie die Verwaltungsfunktionen. Verwenden Sie das linke Menü zur Auswahl der gesuchten Funktion.
|
||||
Purge=Löschen
|
||||
Purge=Säubern
|
||||
PurgeAreaDesc=Hier können Sie alle vom System erzeugten und gespeicherten Dateien löschen (temporäre Dateien oder alle Dateien im Verzeichnis <b>%s</b>). Diese Funktion ist nicht erforderlich und richtet sich vorwiegend an Benutzer ohne Zugriff auf das Dateisystem des Webservers (z.B. Hostingpakete)
|
||||
PurgeDeleteLogFile=Löschen der Protokolldatei <b>%s</b> des Systemprotokollmoduls (kein Risiko des Datenverlusts)
|
||||
PurgeDeleteTemporaryFiles=Alle temporären Dateien löschen (kein Datenverlustrisiko)
|
||||
@ -461,7 +461,7 @@ Module58Name=ClickToDial
|
||||
Module58Desc=ClickToDial-Integration
|
||||
Module59Name=Bookmark4u
|
||||
Module59Desc=Neues Bookmark4u Konto zu Systembenutzerkonto hinzufügen
|
||||
Module70Name=Service
|
||||
Module70Name=Arbeitseinsätze
|
||||
Module70Desc=Serviceverwaltung
|
||||
Module75Name=Spesen- und Reiseaufzeichnungen
|
||||
Module75Desc=Reise- und Fahrtspesenverwaltung
|
||||
@ -566,7 +566,7 @@ Permission13=Rechnungsfreigabe aufheben
|
||||
Permission14=Rechnungen freigeben
|
||||
Permission15=Rechnungen per E-Mail versenden
|
||||
Permission16=Rechnungszahlungen erstellen
|
||||
Permission19=Rechnungen löschen
|
||||
Permission19=Kundenrechnungen löschen
|
||||
Permission21=Angebote einsehen
|
||||
Permission22=Angebote erstellen/bearbeiten
|
||||
Permission24=Angebote freigeben
|
||||
@ -581,10 +581,10 @@ Permission36=Projekte/Leistungen exportieren
|
||||
Permission38=Produkte exportieren
|
||||
Permission41=Projekte und Aufgaben lesen (Geteilte Projekte und Projekte in denen ich Kontakt bin). Es kann auch Zeitaufwand auf zugewiesenen Aufgaben gebucht werden.
|
||||
Permission42=Projekte/Aufgaben erstellen/bearbeiten (Meine)
|
||||
Permission44=Projekte löschen
|
||||
Permission44=Projekte und Aufgaben löschen (gemeinsame Projekte und Projekte in welchen ich Ansprechpartner bin)
|
||||
Permission61=Leistungen ansehen
|
||||
Permission62=Leistungen erstellen/bearbeiten
|
||||
Permission64=Leistungen löschen
|
||||
Permission64=Interventionen löschen
|
||||
Permission67=Leistungen exportieren
|
||||
Permission71=Mitglieder einsehen
|
||||
Permission72=Mitglieder erstellen/bearbeiten
|
||||
@ -609,7 +609,7 @@ Permission101=Auslieferungen einsehen
|
||||
Permission102=Auslieferungen erstellen/bearbeiten
|
||||
Permission104=Auslieferungen freigeben
|
||||
Permission106=Auslieferungen exportieren
|
||||
Permission109=Auslieferungen löschen
|
||||
Permission109=Sendungen löschen
|
||||
Permission111=Finanzkonten einsehen
|
||||
Permission112=Transaktionen erstellen/ändern/löschen und vergleichen
|
||||
Permission113=Einstellungen Finanzkonten (erstellen, Kategorien verwalten)
|
||||
@ -852,7 +852,7 @@ LocalTax1IsUsedDescES= Die RE Rate standardmäßig beim Erstellen Aussichten, Re
|
||||
LocalTax1IsNotUsedDescES= Standardmäßig werden die vorgeschlagenen RE 0 ist. Ende der Regel.
|
||||
LocalTax1IsUsedExampleES= In Spanien sind sie Profis unterliegen bestimmten Abschnitten der spanischen IAE.
|
||||
LocalTax1IsNotUsedExampleES= In Spanien sind sie professionelle und Gesellschaften und vorbehaltlich bestimmter Abschnitte der spanischen IAE.
|
||||
LocalTax2ManagementES= IRPF Management
|
||||
LocalTax2ManagementES= EKSt. Management
|
||||
LocalTax2IsUsedDescES= Die RE Rate standardmäßig beim Erstellen Aussichten, Rechnungen, Bestellungen etc. folgen die aktive Standard-Regel: <br> Ist der Verkäufer nicht zu IRPF ausgesetzt, dann durch IRPF default = 0. Ende der Regel. <br> Ist der Verkäufer zur IRPF dann der Einkommenssteuer unterworfen standardmäßig. Ende der Regel. <br>
|
||||
LocalTax2IsNotUsedDescES= Standardmäßig werden die vorgeschlagenen IRPF 0 ist. Ende der Regel.
|
||||
LocalTax2IsUsedExampleES= In Spanien, Freiberufler und unabhängigen Fachleuten, die ihre Dienstleistungen und Unternehmen, die das Steuersystem von Modulen gewählt haben.
|
||||
@ -1254,14 +1254,14 @@ LDAPServerUseTLSExample=Ihr LDAP-Server TLS
|
||||
LDAPServerDn=Server DN
|
||||
LDAPAdminDn=Administrator DN
|
||||
LDAPAdminDnExample=Vollständige DN (zB: cn=adminldap,dc=society,dc=com)
|
||||
LDAPPassword=Administratorpasswort
|
||||
LDAPPassword=Administrator-Passwort
|
||||
LDAPUserDn=Benutzer DN
|
||||
LDAPUserDnExample=Vollständige DN (zB: ou=users,dc=society,dc=com)
|
||||
LDAPGroupDn=Gruppen DN
|
||||
LDAPGroupDnExample=Vollständige DN (zB: ou=users,dc=society,dc=com)
|
||||
LDAPServerExample=Server-Adresse (zB: localhost, 192.168.0.2, ldaps://ldap.example.com/)
|
||||
LDAPServerDnExample=Complete DN (zB: dc=company,dc=com)
|
||||
LDAPPasswordExample=Administratorenpasswort
|
||||
LDAPPasswordExample=Administrator-Passwort
|
||||
LDAPDnSynchroActive=Benutzer und Gruppensynchronisation
|
||||
LDAPDnSynchroActiveExample=LDAP zu dolibarr oder dolibarr zu LDAP-Synchronisation
|
||||
LDAPDnContactActive=Kontaktesynchronisation
|
||||
@ -1564,7 +1564,7 @@ WSDLCanBeDownloadedHere=Die WSDL-Datei der verfügbaren Webservices können Sie
|
||||
EndPointIs=SOAP-Clients müssen Ihre Anfragen an den dolibarr-Endpoint unter der folgenden Url stellen
|
||||
##### API ####
|
||||
ApiSetup=API-Modul-Setup
|
||||
ApiDesc=Wenn dieses Modula aktiviert ist, wird Dolibarr zum REST Server für diverse web services.
|
||||
ApiDesc=Wenn dieses Modul aktiviert ist, wird Dolibarr zum REST Server für diverse web services.
|
||||
KeyForApiAccess=Schlüssel um das API zu nutzen (Parameter "api_key")
|
||||
ApiProductionMode=Aktiviere Produktionsmodus
|
||||
ApiEndPointIs=Sie können das API mit dieser URL verwenden
|
||||
|
||||
@ -74,8 +74,8 @@ AgendaUrlOptions2=<b>login=%s</b> begrenzt die Ausgabe auf den Benutzer <b>%s</b
|
||||
AgendaUrlOptions3=<b>logina=%s</b> begrenzt die Ausgabe auf den Benutzer <b>%s</b> erstellte Ereignissen.
|
||||
AgendaUrlOptions4=<b>logint=%s</b> begrenzt die Ausgabe auf den Benutzer <b>%s</b> zugewiesene Ereignissen.
|
||||
AgendaUrlOptionsProject=<b>project=PROJECT_ID</b> begrenzt die Ausgabe auf die dem Projekte <b>PROJECT_ID</b> zugewiesene Ereignissen.
|
||||
AgendaShowBirthdayEvents=Zeige Geburtstage
|
||||
AgendaHideBirthdayEvents=Geburtstage ausblenden
|
||||
AgendaShowBirthdayEvents=Zeige Geburtstage von Kontakten
|
||||
AgendaHideBirthdayEvents=Geburtstage von Kontakten ausblenden
|
||||
Busy=Besetzt
|
||||
ExportDataset_event1=Liste Ereignisse des Kalender
|
||||
DefaultWorkingDays=Standard-Werktage der Woche (z.B. 1-5, 1-6)
|
||||
@ -90,15 +90,15 @@ ExtSiteUrlAgenda=URL Adresse um .ical Datei zu erreichen
|
||||
ExtSiteNoLabel=Keine Beschreibung
|
||||
WorkingTimeRange=Arbeitszeit-Bereich
|
||||
WorkingDaysRange=Arbeitstag-Bereich
|
||||
VisibleTimeRange=Visible time range
|
||||
VisibleDaysRange=Visible days range
|
||||
VisibleTimeRange=Sichtbare Stunden Bereich
|
||||
VisibleDaysRange=Sichtbare Tage Bereich
|
||||
AddEvent=Ereignis erstellen
|
||||
MyAvailability=Meine Verfügbarkeit
|
||||
ActionType=Ereignistyp
|
||||
DateActionBegin=Beginnzeit des Ereignis
|
||||
CloneAction=dupliziere Ereignis
|
||||
CloneAction=Dupliziere Ereignis
|
||||
ConfirmCloneEvent=Möchten Sie dieses Ereignis <b>%s</b> wirklich duplizieren?
|
||||
RepeatEvent=wiederhole Ereignis
|
||||
RepeatEvent=Wiederhole Ereignis
|
||||
EveryWeek=Jede Woche
|
||||
EveryMonth=Jeden Monat
|
||||
DayOfMonth=Tag des Monat
|
||||
|
||||
@ -142,7 +142,7 @@ LastBills=%s neueste Rechnungen
|
||||
LastCustomersBills=%s neueste Kundenrechnungen
|
||||
LastSuppliersBills=Letzte %s Lieferantenrechnungen
|
||||
AllBills=Alle Rechnungen
|
||||
OtherBills=Sonstige Rechnungen
|
||||
OtherBills=Weitere Rechnungen
|
||||
DraftBills=Rechnungsentwürfe
|
||||
CustomersDraftInvoices=Entwürfe Kundenrechnungen
|
||||
SuppliersDraftInvoices=Entwürfe Lieferantenrechnungen
|
||||
@ -211,7 +211,7 @@ SendBillByMail=Rechnung per E-Mail versenden
|
||||
SendReminderBillByMail=Erinnerung per E-Mail versenden
|
||||
RelatedCommercialProposals=Verknüpfte Angebote
|
||||
MenuToValid=Zur Freigabe
|
||||
DateMaxPayment=Zahlungsziel
|
||||
DateMaxPayment=Zahlung fällig bis
|
||||
DateEcheance=Zahlungsfrist (Limit)
|
||||
DateInvoice=Rechnungsdatum
|
||||
NoInvoice=Keine Rechnung
|
||||
@ -227,7 +227,7 @@ RepeatableInvoice=Rechnungs-Vorlage
|
||||
RepeatableInvoices=Rechnungs-Vorlagen
|
||||
Repeatable=Vorlage
|
||||
Repeatables=Vorlagen
|
||||
ChangeIntoRepeatableInvoice=In Rechnungs-Vorlage umwandeln
|
||||
ChangeIntoRepeatableInvoice=erzeuge Rechnungsvorlage
|
||||
CreateRepeatableInvoice=Rechnungs-Vorlage erstellen
|
||||
CreateFromRepeatableInvoice=Aus Rechnungs-Vorlage erzeugen
|
||||
CustomersInvoicesAndInvoiceLines=Kundenrechnungen und -positionen
|
||||
@ -294,8 +294,8 @@ TotalOfTwoDiscountMustEqualsOriginal=Insgesamt zwei neue Rabatt muss gleich zu d
|
||||
ConfirmRemoveDiscount=Sind Sie sicher, dass Sie diesen Rabatt entfernen möchten?
|
||||
RelatedBill=Ähnliche Rechnung
|
||||
RelatedBills=Ähnliche Rechnungen
|
||||
RelatedCustomerInvoices=Ähnliche Rechnungen
|
||||
RelatedSupplierInvoices=Ähnliche Rechnungen
|
||||
RelatedCustomerInvoices=Ähnliche Kundenrechnungen
|
||||
RelatedSupplierInvoices=Ähnliche Lieferantenrechnungen
|
||||
LatestRelatedBill=Letzte ähnliche Rechnung
|
||||
WarningBillExist=Achtung, es existiert bereits mindestens eine Rechnung
|
||||
MergingPDFTool=PDF zusammenfügen
|
||||
@ -330,8 +330,8 @@ PaymentTypeCB=Kreditkarte
|
||||
PaymentTypeShortCB=Kreditkarte
|
||||
PaymentTypeCHQ=Scheck
|
||||
PaymentTypeShortCHQ=Scheck
|
||||
PaymentTypeTIP=Deposit
|
||||
PaymentTypeShortTIP=Deposit
|
||||
PaymentTypeTIP=Anzahlung
|
||||
PaymentTypeShortTIP=Anzahlung
|
||||
PaymentTypeVAD=Online-Zahlung
|
||||
PaymentTypeShortVAD=Online-Zahlung
|
||||
PaymentTypeTRA=Zahlung auf Rechnung
|
||||
|
||||
@ -10,10 +10,10 @@ BookmarkTargetNewWindowShort=Neues Fenster
|
||||
BookmarkTargetReplaceWindowShort=Aktuelles Fenster
|
||||
BookmarkTitle=Titel des Lesezeichens
|
||||
UrlOrLink=Link
|
||||
BehaviourOnClick=Verhalten bei Klick auf den Link
|
||||
BehaviourOnClick=Verhalten wenn ein Link geklickt wird
|
||||
CreateBookmark=Lesezeichen erstellen
|
||||
SetHereATitleForLink=Erfasse hier einen Titel für das Lesezeichen
|
||||
UseAnExternalHttpLinkOrRelativeDolibarrLink=Verwenden Sie eine absolute externe URL oder eine relative Dolibarr URL
|
||||
ChooseIfANewWindowMustBeOpenedOnClickOnBookmark=Bitte wählen Sie, ob sich ein geklickter Link in einem neuen oder demselben Fenster öffnet
|
||||
ChooseIfANewWindowMustBeOpenedOnClickOnBookmark=Bitte wählen Sie, ob sich ein geklickter Link in einem neuen oder im selben Fenster öffnet
|
||||
BookmarksManagement=Verwalten von Lesezeichen
|
||||
ListOfBookmarks=Liste der Lesezeichen
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
BoxLastRssInfos=RSS-Information
|
||||
BoxLastProducts=Letzte %s Produkte/Leistungen
|
||||
BoxProductsAlertStock=Lagerbestands-Warnungen
|
||||
BoxLastProductsInContract=Letzte %s verkauften Leistungen in Verträgen
|
||||
BoxLastProductsInContract=Letzte %s Produkte/Leistungen unter Vertrag genommen
|
||||
BoxLastSupplierBills=Zuletzt bearbeitete Lieferantenrechnungen
|
||||
BoxLastCustomerBills=Zuletzt bearbeitete Kundenrechnungen
|
||||
BoxOldestUnpaidCustomerBills=Älteste offene Kundenrechnungen
|
||||
@ -18,7 +18,7 @@ BoxLastActions=Zuletzt bearbeitete Ereignisse
|
||||
BoxLastContracts=Zuletzt abgeschlossene Verträge
|
||||
BoxLastContacts=Letzte Kontakte/Adressen
|
||||
BoxLastMembers=Letzte Mitglieder
|
||||
BoxFicheInter=Neueste Eingriffe
|
||||
BoxFicheInter=Letzte Einsätze
|
||||
BoxCurrentAccounts=Saldo offene Konten
|
||||
BoxSalesTurnover=Umsatz
|
||||
BoxTotalUnpaidCustomerBills=Summe offener Kundenrechnungen (OP Gesamt)
|
||||
@ -78,7 +78,7 @@ NoRecordedProducts=Keine erfassten Produkte/Leistungen
|
||||
NoRecordedProspects=Keine erfassten Leads
|
||||
NoContractedProducts=Keine Produkte/Leistungen im Auftrag
|
||||
NoRecordedContracts=Keine Verträge erfasst
|
||||
NoRecordedInterventions=Keine bearbeiteten Eingriffe
|
||||
NoRecordedInterventions=Keine verzeichneten Einsätze
|
||||
BoxLatestSupplierOrders=Neueste Lieferantenbestellungen
|
||||
BoxTitleLatestSupplierOrders=Letzte %s Lieferantenbestellungen
|
||||
BoxTitleLatestModifiedSupplierOrders=Letzte %s bearbeiteten Lieferantenbestellungen
|
||||
|
||||
@ -8,10 +8,10 @@ In=In
|
||||
AddIn=Einfügen in
|
||||
modify=Ändern
|
||||
Classify=Einordnen
|
||||
CategoriesArea=Kategorienbereich-Übersicht
|
||||
CategoriesArea=#tags/Kategorien - Übersicht
|
||||
ProductsCategoriesArea=Produkte/Leistungen Kategorien-Übersicht
|
||||
SuppliersCategoriesArea=Lieferantenkategorienübersicht
|
||||
CustomersCategoriesArea=Kunden- Kategorien/#tags
|
||||
CustomersCategoriesArea=Kundenkategorien bzw. Suchwörter Übersicht
|
||||
ThirdPartyCategoriesArea=Partner- Kategorien/#tags
|
||||
MembersCategoriesArea=Mitglieder- Kategorien/#tags
|
||||
ContactsCategoriesArea=Kontaktkategorien-Übersicht
|
||||
@ -49,7 +49,7 @@ CompanyIsInCustomersCategories=Dieser Partner ist folgenden Kunden- Kategorien/#
|
||||
CompanyIsInSuppliersCategories=Dieser Parnter ist folgenden Lieferanten- Kategorien/#tags zugewiesen
|
||||
MemberIsInCategories=Dieses Mitglied ist folgenden Mitglieder- Kategorien/#tags zugewiesen
|
||||
ContactIsInCategories=Dieser Kontakt ist folgenden Kontakte- Kategorien/#tags verknüpft
|
||||
ProductHasNoCategory=Dieses Produkt/Service ist keiner Kategorie zugewiesen.
|
||||
ProductHasNoCategory=Dieses Produkt/Leistung ist keiner Kategorie zugewiesen.
|
||||
SupplierHasNoCategory=Dieser Lieferant ist keiner Kategorie zugewiesen.
|
||||
CompanyHasNoCategory=Dieser Partner ist in keiner Kategorie
|
||||
MemberHasNoCategory= Dieses Mitglied ist keiner Kategorie zugewiesen.
|
||||
@ -101,7 +101,7 @@ CatProdLinks=Verbindung zwischen Produkten/Leistungen und Kategorien
|
||||
CatMemberLinks=Verbindung zwischen Mitgliedern und Kategorien
|
||||
DeleteFromCat=Aus Kategorie entfernen
|
||||
DeletePicture=Bild löschen
|
||||
ConfirmDeletePicture=Bild wirklich löschen?
|
||||
ConfirmDeletePicture=Möchten Sie dieses Bild wirklich löschen?
|
||||
ExtraFieldsCategories=Ergänzende Attribute
|
||||
CategoriesSetup=Suchwörter/Kategorien Einstellungen
|
||||
CategorieRecursiv=Automatisch mit übergeordneter Kategorie verbinden
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
# Dolibarr language file - Source file is en_US - commercial
|
||||
Commercial=Vertrieb
|
||||
CommercialArea=Vertriebsübersicht
|
||||
CommercialArea=Vertriebs - Übersicht
|
||||
CommercialCard=Vertriebskarte
|
||||
CustomerArea=Kundenübersicht
|
||||
Customer=Kunde
|
||||
@ -22,7 +22,7 @@ TaskRDV=Treffen
|
||||
TaskRDVWith=Treffen mit %s
|
||||
ShowTask=Zeige Aufgabe
|
||||
ShowAction=Ereignisse anzeigen
|
||||
ActionsReport=Ereignis Report
|
||||
ActionsReport=Ereignis Journal
|
||||
ThirdPartiesOfSaleRepresentative=Partner mit Vertriebsmitarbeiter
|
||||
SalesRepresentative=Vertriebsmitarbeiter
|
||||
SalesRepresentatives=Vertreter
|
||||
|
||||
@ -24,7 +24,7 @@ SocGroup=Unternehmensgruppe
|
||||
IdThirdParty=Partner ID
|
||||
IdCompany=Unternehmens ID
|
||||
IdContact=Kontakt ID
|
||||
Contacts=Kontakte
|
||||
Contacts=Kontakte/Adressen
|
||||
ThirdPartyContacts=Partnerkontakte
|
||||
ThirdPartyContact=Partnerkontakt
|
||||
StatusContactValidated=Status des Kontakts
|
||||
@ -93,7 +93,7 @@ LocalTax1IsNotUsedES= RE wird nicht verwendet
|
||||
LocalTax2IsUsedES= IRPF wird verwendet
|
||||
LocalTax2IsNotUsedES= IRPF wird nicht verwendet
|
||||
LocalTax1ES=RE
|
||||
LocalTax2ES=IRPF
|
||||
LocalTax2ES=EKSt.
|
||||
TypeLocaltax1ES=RE Typ
|
||||
TypeLocaltax2ES=EKSt. Typ
|
||||
TypeES=Typ
|
||||
@ -109,7 +109,7 @@ ProfId2Short=Prof. ID 2
|
||||
ProfId3Short=Prof. ID 3
|
||||
ProfId4Short=Prof. ID 4
|
||||
ProfId5Short=Prof. ID 5
|
||||
ProfId6Short=Prof. ID 6
|
||||
ProfId6Short=-
|
||||
ProfId1=Professional ID 1
|
||||
ProfId2=Professional ID 2
|
||||
ProfId3=Professional ID 3
|
||||
@ -379,7 +379,7 @@ PriceLevel=Preisstufe
|
||||
DeliveriesAddress=Lieferadressen
|
||||
DeliveryAddress=Lieferadresse
|
||||
DeliveryAddressLabel=Lieferadressen-Label
|
||||
DeleteDeliveryAddress=Lieferadresse löschen
|
||||
DeleteDeliveryAddress=Löschen einer Lieferadresse
|
||||
ConfirmDeleteDeliveryAddress=Möchten Sie diese Lieferadresse wirklich löschen?
|
||||
NewDeliveryAddress=Neue Lieferadresse
|
||||
AddDeliveryAddress=Adresse erstellen
|
||||
|
||||
@ -63,7 +63,7 @@ MenuSpecialExpenses=Sonstige Ausgaben
|
||||
MenuTaxAndDividends=Steuern und Dividenden
|
||||
MenuSalaries=Löhne
|
||||
MenuSocialContributions=Sozialabgaben/Steuern
|
||||
MenuNewSocialContribution=New social/fiscal tax
|
||||
MenuNewSocialContribution=Neue Abgabe/Steuer
|
||||
NewSocialContribution=Neue Sozialabgabe / Steuersatz
|
||||
ContributionsToPay=Sozialabgaben/Unternehmenssteuern zu bezahlen
|
||||
AccountancyTreasuryArea=Rechnungswesen/Vermögensverwaltung
|
||||
|
||||
@ -21,8 +21,8 @@ ServicesLegend=Services Legende
|
||||
Contracts=Verträge
|
||||
ContractsAndLine=Verträge und Zeilen von Verträgen
|
||||
Contract=Vertrag
|
||||
ContractLine=Contract line
|
||||
Closing=Closing
|
||||
ContractLine=Vertragszeile
|
||||
Closing=Schließen
|
||||
NoContracts=Keine Verträge
|
||||
MenuServices=Leistungen
|
||||
MenuInactiveServices=Inaktive Leistungen
|
||||
|
||||
@ -6,8 +6,8 @@ Donor=Spender
|
||||
Donors=Spender
|
||||
AddDonation=Spende erstellen
|
||||
NewDonation=Neue Spende
|
||||
DeleteADonation=Delete a donation
|
||||
ConfirmDeleteADonation=Are you sure you want to delete this donation ?
|
||||
DeleteADonation=Ein Spende löschen
|
||||
ConfirmDeleteADonation=Sind Sie sicher, dass diese Spende löschen wollen?
|
||||
ShowDonation=Spenden anzeigen
|
||||
DonationPromise=Zugesagte Spende
|
||||
PromisesNotValid=Ungültige Zusage
|
||||
@ -16,15 +16,15 @@ DonationsPaid=Bezahlte Spenden
|
||||
DonationsReceived=Erhaltene Spenden
|
||||
PublicDonation=Öffentliche Spenden
|
||||
DonationsNumber=Spendenanzahl
|
||||
DonationsArea=Spendenübersicht
|
||||
DonationsArea=Spenden - Übersicht
|
||||
DonationStatusPromiseNotValidated=Zugesagt (nicht freigegeben)
|
||||
DonationStatusPromiseValidated=Zugesagt (freigegeben)
|
||||
DonationStatusPaid=Spende bezahlt
|
||||
DonationStatusPromiseNotValidatedShort=Entwurf
|
||||
DonationStatusPromiseValidatedShort=Freigegeben
|
||||
DonationStatusPaidShort=Bezahlt
|
||||
DonationTitle=Donation receipt
|
||||
DonationDatePayment=Payment date
|
||||
DonationTitle=Spendenbescheinigung
|
||||
DonationDatePayment=Zahlungsdatum
|
||||
ValidPromess=Zusage freigeben
|
||||
DonationReceipt=Spendenbescheinigung
|
||||
BuildDonationReceipt=Erzeuge Spendenbeleg
|
||||
@ -35,9 +35,9 @@ DonationRecipient=Spenden Empfänger
|
||||
ThankYou=Danke
|
||||
IConfirmDonationReception=Der Empfänger bestätigt den Erhalt einer Spende in Höhe von
|
||||
MinimumAmount=Mindestbetrag ist %s
|
||||
FreeTextOnDonations=Free text to show in footer
|
||||
FreeTextOnDonations=Freier Text der in der Fußzeile angezeigt wird
|
||||
FrenchOptions=Optionen für Frankreich
|
||||
DONATION_ART200=Show article 200 from CGI if you are concerned
|
||||
DONATION_ART238=Show article 238 from CGI if you are concerned
|
||||
DONATION_ART885=Show article 885 from CGI if you are concerned
|
||||
DonationPayment=Donation payment
|
||||
DONATION_ART200=Zeige Artikel 200 des CGI, falls Sie betroffen sind
|
||||
DONATION_ART238=Zeige Artikel 238 des CGI, falls Sie betroffen sind
|
||||
DONATION_ART885=Zeige Artikel 885 des CGI, falls Sie betroffen sind
|
||||
DonationPayment=Spendenzahlung
|
||||
|
||||
@ -47,7 +47,7 @@ ECMDocsByUsers=Mit Benutzern verknüpfte Dokumente
|
||||
ECMDocsByInterventions=Mit Eingriffen verknüpfte Dokumente
|
||||
ECMNoDirectoryYet=Noch kein Ordner erstellt
|
||||
ShowECMSection=Ordner anzeigen
|
||||
DeleteSection=Ordner löschen
|
||||
DeleteSection=Verzeichnis löschen
|
||||
ConfirmDeleteSection=Möchten Sie das Verzeichnis <b>%s</b> wirklich löschen?
|
||||
ECMDirectoryForFiles=Relatives Verzeichnis für Dateien
|
||||
CannotRemoveDirectoryContainsFiles=Entfernen des Ordners nicht möglich, da dieser noch Dateien enthält
|
||||
|
||||
@ -79,7 +79,7 @@ ErrorModuleRequireJavascript=Diese Funktion erfordert aktiviertes JavaScript. Ak
|
||||
ErrorPasswordsMustMatch=Die eingegebenen Passwörter müssen identisch sein.
|
||||
ErrorContactEMail=Ein technischer Fehler ist aufgetreten. Bitte kontaktieren Sie Ihren Administrator unter der folgenden E-Mail-Adresse <b>%s</b> und fügen Sie den Fehlercode <b>%s</b> in Ihrer Nachricht ein, oder (noch besser) fügen Sie einen Screenshot dieser Seite als Anhang bei.
|
||||
ErrorWrongValueForField=Falscher Wert für Feld Nr. <b>%s</b> (Wert '<b>%s</b>' passt nicht zur Regex-Regel <b>%s</b>)
|
||||
ErrorFieldValueNotIn=Wrong value for field number <b>%s</b> (value '<b>%s</b>' is not a value available into field <b>%s</b> of table <b>%s</b>)
|
||||
ErrorFieldValueNotIn=Nicht korrekter Wert für das Feld Nummer <b>%s</b> (Wert '<b>%s</b>' ist kein verfügbarer Wert im Feld <b>%s</b> der Tabelle <b>%s</b>)
|
||||
ErrorFieldRefNotIn=Falscher Wert für Feldnummer <b>%s</b> (für den Wert <b>'%s'</b> besteht keine <b>%s</b> Referenz)
|
||||
ErrorsOnXLines=Fehler in <b>%s</b> Quellzeilen
|
||||
ErrorFileIsInfectedWithAVirus=Der Virenschutz konnte diese Datei nicht freigeben (eventuell ist diese mit einem Virus infiziert)
|
||||
|
||||
@ -48,7 +48,7 @@ NoImportableData=Keine importfähigen Daten (kein Modul mit Erlaubnis für Daten
|
||||
FileSuccessfullyBuilt=Exportdatei erfolgreich erzeugt
|
||||
SQLUsedForExport=SQL-Abfrage für Erstellung der Exportdatei genutzt
|
||||
LineId=ID der Zeile
|
||||
LineLabel=Label of line
|
||||
LineLabel=Zeilenbeschriftung
|
||||
LineDescription=Beschreibung der Zeile
|
||||
LineUnitPrice=Stückpreis der Zeile
|
||||
LineVATRate=Steuersatz der Zeile
|
||||
@ -56,7 +56,7 @@ LineQty=Menge der Zeile
|
||||
LineTotalHT=Nettobetrag der Zeile
|
||||
LineTotalTTC=Bruttobetrag der Zeile
|
||||
LineTotalVAT=Steuerbetrag der Zeile
|
||||
TypeOfLineServiceOrProduct=Art der Zeile (0=Produkt, 1=Service)
|
||||
TypeOfLineServiceOrProduct=Art der Zeile (0=Produkt, 1=Leistung)
|
||||
FileWithDataToImport=Datei mit zu importierenden Daten
|
||||
FileToImport=Quelldatei für Import
|
||||
FileMustHaveOneOfFollowingFormat=Die Importdatei muss in einem der folgenden Formate vorliegen
|
||||
|
||||
@ -1,29 +1,29 @@
|
||||
# Dolibarr language file - Source file is en_US - interventions
|
||||
Intervention=Eingriff
|
||||
Interventions=Eingriffe
|
||||
InterventionCard=Eingriffskarte
|
||||
NewIntervention=Neuer Eingriff
|
||||
AddIntervention=Eingriff erstellen
|
||||
ListOfInterventions=Liste der Eingriffe
|
||||
Intervention=Arbeitseinsatz
|
||||
Interventions=Arbeitseinsätze
|
||||
InterventionCard=Arbeitszeitdokumentation
|
||||
NewIntervention=Neuer Einsatz
|
||||
AddIntervention=Einsatz erstellen
|
||||
ListOfInterventions=Liste der Einsätze
|
||||
EditIntervention=Eingriff bearbeiten
|
||||
ActionsOnFicheInter=Aktionen zum Eingriff
|
||||
LastInterventions=Letzte %s Eingriffe
|
||||
AllInterventions=Alle Eingriffe
|
||||
LastInterventions=Letzte %s Einsätze
|
||||
AllInterventions=Alle Einsätze
|
||||
CreateDraftIntervention=Eingriffsentwurf
|
||||
CustomerDoesNotHavePrefix=Kunde hat kein Präfix
|
||||
InterventionContact=Kontakt für Eingriffe
|
||||
DeleteIntervention=Eingriff löschen
|
||||
ValidateIntervention=Eingriff freigeben
|
||||
DeleteIntervention=Einsatz löschen
|
||||
ValidateIntervention=Einsatz freigeben
|
||||
ModifyIntervention=Geänderte Eingriff
|
||||
DeleteInterventionLine=Eingriffszeile löschen
|
||||
ConfirmDeleteIntervention=Möchten Sie diesen Eingriff wirklich löschen?
|
||||
ConfirmValidateIntervention=Möchten Sie diesen Eingriff wirklich freigeben?
|
||||
ConfirmModifyIntervention=Sind Sie sicher, dass Sie ändern möchten diese Intervention?
|
||||
ConfirmDeleteInterventionLine=Möchten Sie diese Eingriffszeile wirklich löschen?
|
||||
ConfirmDeleteIntervention=Möchten Sie diese Arbeitsleistung wirklich löschen?
|
||||
ConfirmValidateIntervention=Möchten Sie diese Arbeitsleistung mit der Referenz <b>%s</b> wirklich freigeben?
|
||||
ConfirmModifyIntervention=Möchten sie diese Arbeitsleistung wirklich verändern?
|
||||
ConfirmDeleteInterventionLine=Möchten Sie diese Arbeitsleistung wirklich löschen?
|
||||
NameAndSignatureOfInternalContact=Name und Unterschrift des Mitarbeiter:
|
||||
NameAndSignatureOfExternalContact=Name und Unterschrift des Kunden:
|
||||
DocumentModelStandard=Standard-Dokumentvorlage für Eingriffe
|
||||
InterventionCardsAndInterventionLines=Eingriffe und Eingriffszeilen
|
||||
DocumentModelStandard=Standard-Dokumentvorlage für Arbeitseinsätze
|
||||
InterventionCardsAndInterventionLines=Einsatzkarte und Einsatzzeilen
|
||||
InterventionClassifyBilled=Eingeordnet "Angekündigt"
|
||||
InterventionClassifyUnBilled=Als "nicht verrechnet" markieren
|
||||
StatusInterInvoiced=Angekündigt
|
||||
@ -38,7 +38,7 @@ InterventionClassifiedBilledInDolibarr=Eingriff %s als verrechnet eingestuft
|
||||
InterventionClassifiedUnbilledInDolibarr=Eingriff %s als nicht verrechnet eingestuft
|
||||
InterventionSentByEMail=Eingriff %s per E-Mail versandt
|
||||
InterventionDeletedInDolibarr=Eingriff %s gelöscht
|
||||
SearchAnIntervention=Eingriff suchen
|
||||
SearchAnIntervention=Arbeitseinsatz suchen
|
||||
##### Types de contacts #####
|
||||
TypeContact_fichinter_internal_INTERREPFOLL=Eingriffsnachverfolgung durch Vertreter
|
||||
TypeContact_fichinter_internal_INTERVENING=Eingriff läuft
|
||||
@ -46,7 +46,7 @@ TypeContact_fichinter_external_BILLING=Rechnungskontakt Kunde
|
||||
TypeContact_fichinter_external_CUSTOMER=Kundenkontakt-Nachverfolgung
|
||||
# Modele numérotation
|
||||
ArcticNumRefModelDesc1=Generisches Nummernmodell
|
||||
ArcticNumRefModelError=Fehler beim aktivieren
|
||||
ArcticNumRefModelError=Aktivierung nicht möglich
|
||||
PacificNumRefModelDesc1=Liefere Nummer im Format %syymm-nnnn zurück, wobei yy das Jahr, mm das Monat und nnnn eine Zahlensequenz ohne Nullwert oder Leerzeichen ist
|
||||
PacificNumRefModelError=Eine Interventionskarte beginnend mit $syymm existiert bereits und ist nicht mir dieser Numerierungssequenz kompatibel. Bitte löschen oder umbenennen.
|
||||
PrintProductsOnFichinter=Drucke Produkte auf Eingriffskarte
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
LinkANewFile=Verknüpfen Sie eine neue Datei / Dokument
|
||||
LinkANewFile=Verknüpfe eine neue Datei /Dokument
|
||||
LinkedFiles=Verknüpfte Dateien und Dokumente
|
||||
NoLinkFound=Keine eingetragenen Verknüpfungen
|
||||
LinkComplete=Die Datei wurde erfolgreich verknüpft
|
||||
ErrorFileNotLinked=Die Datei konnte nicht Verknüpft werden
|
||||
LinkRemoved=Die Verknüpfung %s wurde entfernt
|
||||
ErrorFailedToDeleteLink= Fehler beim Löschen des Links '<b>%s</b>'
|
||||
ErrorFailedToUpdateLink= Fehler beim Aktualisieren der Verknüpfung '<b>%s</b>'
|
||||
NoLinkFound=Keine verknüpften Links
|
||||
LinkComplete=Die Datei wurde erfolgreich verlinkt
|
||||
ErrorFileNotLinked=Die Datei konnte nicht verlinkt werden
|
||||
LinkRemoved=Der Link %s wurde entfernt
|
||||
ErrorFailedToDeleteLink= Fehler beim entfernen des Links '<b>%s</b>'
|
||||
ErrorFailedToUpdateLink= Fehler beim aktualisieren des Link '<b>%s</b>'
|
||||
|
||||
@ -25,7 +25,7 @@ FormatDateHourTextShort=%d %b %Y %H:%M
|
||||
FormatDateHourText=%d %B %Y %H:%M
|
||||
DatabaseConnection=Datenbankverbindung
|
||||
NoTranslation=Keine Übersetzung
|
||||
NoRecordFound=Kein Eintrag gefunden
|
||||
NoRecordFound=Keinen Eintrag gefunden
|
||||
NoError=kein Fehler
|
||||
Error=Fehler
|
||||
ErrorFieldRequired=Feld '%s' ist erforderlich
|
||||
@ -44,7 +44,7 @@ ErrorFailedToSendMail=Fehler beim Senden der E-Mail (Absender=%s, Empfänger=%s)
|
||||
ErrorAttachedFilesDisabled=Dateianhänge sind auf diesem Server deaktiviert
|
||||
ErrorFileNotUploaded=Die Datei konnte nicht hochgeladen werden. Stellen Sie sicher dass die Dateigröße nicht den gesetzten Maximalwert übersteigt, das Zielverzeichnis über genügend freien Speicherplatz verfügt und noch keine Datei mit gleichem Namen existiert.
|
||||
ErrorInternalErrorDetected=Interner Fehler entdeckt
|
||||
ErrorNoRequestRan=Abfrage ist nicht erfolgreich gelaufen
|
||||
ErrorNoRequestRan=Es wurde keine Abfrage ausgeführt
|
||||
ErrorWrongHostParameter=Ungültige Host-Parameter
|
||||
ErrorYourCountryIsNotDefined=Ihr Land ist nicht definiert. Bitte vervollständigen Sie das Profil unter Start - Einstellungen - Firma/Stiftung
|
||||
ErrorRecordIsUsedByChild=Kann diesen Eintrag nicht löschen. Dieser Eintrag wird von mindestens einem untegeordneten Datensatz verwendet.
|
||||
@ -58,7 +58,7 @@ ErrorConfigParameterNotDefined=Parameter <b>%s</b> innerhalb der Konfigurationsd
|
||||
ErrorCantLoadUserFromDolibarrDatabase=Kann Benutzer <b>%s</b> nicht aus der Systemdatenbank laden.
|
||||
ErrorNoVATRateDefinedForSellerCountry=Fehler, keine MwSt.-Sätze für Land '%s' definiert.
|
||||
ErrorNoSocialContributionForSellerCountry=Fehler, keine Definition für Sozialabgaben/Steuerwerte definiert in Firma '%s'.
|
||||
ErrorFailedToSaveFile=Fehler beim Speichern der Datei.
|
||||
ErrorFailedToSaveFile=Fehler, konnte Datei nicht speichern.
|
||||
SetDate=Datum
|
||||
SelectDate=Wählen Sie ein Datum
|
||||
SeeAlso=Siehe auch %s
|
||||
@ -108,7 +108,7 @@ Yes=Ja
|
||||
no=nein
|
||||
No=Nein
|
||||
All=Alle
|
||||
Alls=All
|
||||
Alls=Alle
|
||||
Home=Start
|
||||
Help=Hilfe
|
||||
OnlineHelp=Online-Hilfe
|
||||
@ -152,14 +152,14 @@ ToClone=Duplizieren
|
||||
ConfirmClone=Wählen Sie die zu duplizierenden Daten:
|
||||
NoCloneOptionsSpecified=Keine Duplikationsoptionen ausgewählt.
|
||||
Of=von
|
||||
Go=Los
|
||||
Go=Weiter
|
||||
Run=bearbeiten
|
||||
CopyOf=Duplikat von
|
||||
Show=Zeige
|
||||
ShowCardHere=Zeige Karte
|
||||
Search=Suchen
|
||||
SearchOf=Suche nach
|
||||
Valid=Gültig
|
||||
Valid=Freigabe
|
||||
Approve=Genehmigen
|
||||
Disapprove=Abgelehnt
|
||||
ReOpen=Wiedereröffnen
|
||||
@ -343,7 +343,7 @@ TTC=Brutto
|
||||
VAT=MwSt.
|
||||
VATs=Mehrwertsteuern
|
||||
LT1ES=RE
|
||||
LT2ES=IRPF
|
||||
LT2ES=EKSt.
|
||||
VATRate=Steuersatz
|
||||
Average=Durchschnitt
|
||||
Sum=Summe
|
||||
@ -422,7 +422,7 @@ ReCalculate=Neuberechnung
|
||||
ResultOk=Erfolg
|
||||
ResultKo=Fehlschlag
|
||||
Reporting=Berichterstattung
|
||||
Reportings=Berichterstattungen
|
||||
Reportings=Berichte
|
||||
Draft=Entwurf
|
||||
Drafts=Entwürfe
|
||||
Validated=Freigegeben
|
||||
@ -710,7 +710,7 @@ GoIntoSetupToChangeLogo=Gehen Sie zu Start - Einstellungen - Firma/Stiftung um d
|
||||
Deny=ablehnen
|
||||
Denied=abgelehnt
|
||||
ListOfTemplates=Liste der Vorlagen
|
||||
Gender=Gender
|
||||
Gender=Geschlecht
|
||||
Genderman=Mann
|
||||
Genderwoman=Frau
|
||||
ViewList=Listenansicht
|
||||
@ -747,4 +747,4 @@ ShortFriday=Fr
|
||||
ShortSaturday=Sa
|
||||
ShortSunday=So
|
||||
SelectMailModel=Wähle E-Mail-Vorlage
|
||||
SetRef=Set ref
|
||||
SetRef=Set Ref
|
||||
|
||||
@ -4,7 +4,7 @@ Margin=Gewinnspanne
|
||||
Margins=Gewinnspannen
|
||||
TotalMargin=Gesamt-Spanne
|
||||
MarginOnProducts=Gewinnspanne / Produkte
|
||||
MarginOnServices=Gewinnspanne / Services
|
||||
MarginOnServices=Gewinnspanne / Leistungen
|
||||
MarginRate=Gewinnspannen-Rate
|
||||
MarkRate=Gewinnspannen-Rate
|
||||
DisplayMarginRates=Zeige Gewinnspannen-Raten an
|
||||
@ -18,7 +18,7 @@ CustomerMargins=Kunden-Gewinnspannen
|
||||
SalesRepresentativeMargins=Vertreter-Gewinnspannen
|
||||
UserMargins=Spannen nach Benutzer
|
||||
ProductService=Produkt oder Service
|
||||
AllProducts=Alle Produkte und Services
|
||||
AllProducts=Alle Produkte und Leistungen
|
||||
ChooseProduct/Service=Produkt oder Service wählen
|
||||
StartDate=Vertragsbeginn
|
||||
EndDate=Vertragsende
|
||||
|
||||
@ -3,8 +3,8 @@ Module64000Name=Direkt drucken
|
||||
Module64000Desc=Direkt-Druck-System aktivieren
|
||||
PrintingSetup=Direkt-Druck-System einrichten
|
||||
PrintingDesc=Dieses Modul fügt einen "Drucken"-Button zu, um Dokumente direkt zu einen Drucker zu senden. Dies erfordert ein Linux-System mit installiertem CUPS.
|
||||
MenuDirectPrinting=Direct Printing
|
||||
DirectPrint=Direct print
|
||||
MenuDirectPrinting=Direkt drucken
|
||||
DirectPrint=Direkt drucken
|
||||
ModuleDriverSetup=Modul Treiber einrichten
|
||||
PrintingDriverDesc=Konfigurationsvariablen für den Druck-Treiber.
|
||||
ListDrivers=Treiberliste
|
||||
@ -12,11 +12,11 @@ PrintTestDesc=Druckerliste
|
||||
FileWasSentToPrinter=Datei %s wurde an den Drucker gesendet
|
||||
NoActivePrintingModuleFound=Kein aktives Modul, um Druckvorgang auszuführen
|
||||
PleaseSelectaDriverfromList=Bitte wählen Sie einen Treiber von der Liste
|
||||
PleaseConfigureDriverfromList=Please configure the selected driver from list.
|
||||
SetupDriver=Treibereinstellungen
|
||||
PleaseConfigureDriverfromList=Bitte konfiguriere den ausgewählten Treiber aus der Liste
|
||||
SetupDriver=Treiber Einstellungen
|
||||
TestDriver=Test
|
||||
TargetedPrinter=Zieldrucker
|
||||
UserConf=Je Nutzer einrichten
|
||||
UserConf=Pro Benutzer einrichten
|
||||
PRINTGCP=Google Cloud Print
|
||||
PrintGCPDesc=Dieser Treiber erlaubt das direkte senden zu ein Drucker via Google Cloud Print
|
||||
PrintingDriverDescprintgcp=Konfigurationsvariablen für den Druck Fahrer Google Cloud Print.
|
||||
@ -53,7 +53,7 @@ PRINTIPP_USER=Anmeldung
|
||||
PRINTIPP_PASSWORD=Passwort
|
||||
NoPrinterFound=Keine Drucker gefunden (CUPS-Konfiguration prüfen)
|
||||
NoDefaultPrinterDefined=Kein Standarddrucker defininert
|
||||
DefaultPrinter=Standarddrucker
|
||||
DefaultPrinter=Standard-Drucker
|
||||
Printer=Drucker
|
||||
CupsServer=CUPS-Server
|
||||
IPP_Uri=Drucker Uri
|
||||
@ -61,7 +61,7 @@ IPP_Name=Druckername
|
||||
IPP_State=Druckerstatus
|
||||
IPP_State_reason=Status Grund
|
||||
IPP_State_reason1=Status Grund 1
|
||||
IPP_BW=schwarz und weiß
|
||||
IPP_BW=schwarz / weiß
|
||||
IPP_Color=Farbe
|
||||
IPP_Device=IPP Gerät
|
||||
IPP_Media=Druckermedium
|
||||
|
||||
@ -241,7 +241,7 @@ ProductBuilded=Produktion fertiggestellt
|
||||
ProductsMultiPrice=Produkt Multi-Preis
|
||||
ProductsOrServiceMultiPrice=Kundenpreise (von Produkten oder Leistungen, Multi-Preise)
|
||||
ProductSellByQuarterHT=Umsatz Produkte pro Quartal
|
||||
ServiceSellByQuarterHT=Umsatz Services pro Quartal
|
||||
ServiceSellByQuarterHT=Umsatz von Leistungen pro Quartal
|
||||
Quarter1=1. Quartal
|
||||
Quarter2=2. Quartal
|
||||
Quarter3=3. Quartal
|
||||
|
||||
@ -45,7 +45,7 @@ TaskTimeUser=Benutzer
|
||||
TaskTimeNote=Hinweis
|
||||
TaskTimeDate=Datum
|
||||
TasksOnOpenedProject=Aufgaben in offenen Projekten
|
||||
WorkloadNotDefined=Workload nicht definiert
|
||||
WorkloadNotDefined=Arbeitsaufwand nicht definiert
|
||||
NewTimeSpent=Neuer Zeitaufwand
|
||||
MyTimeSpent=Mein Zeitaufwand
|
||||
MyTasks=Meine Aufgaben
|
||||
@ -80,7 +80,7 @@ ListDonationsAssociatedProject=Liste Spenden, die mit diesem Projekt verknüpft
|
||||
ListActionsAssociatedProject=Liste Ereignisse, die mit diesem Projekt verknüpft sind
|
||||
ListTaskTimeUserProject=Liste mit Zeitaufwand der Projektaufgaben
|
||||
TaskTimeUserProject=Zeitaufwand für Aufgaben des Projektes
|
||||
ActivityOnProjectToday=Heutige Projektaktivität
|
||||
ActivityOnProjectToday=Projektaktivitäten von heute
|
||||
ActivityOnProjectYesterday=Projektaktivitäten von gestern
|
||||
ActivityOnProjectThisWeek=Projektaktivitäten dieser Woche
|
||||
ActivityOnProjectThisMonth=Projektaktivitäten dieses Monats
|
||||
@ -143,11 +143,11 @@ SelectElement=Element wählen
|
||||
AddElement=Mit Element verknüpfen
|
||||
UnlinkElement=Verknüpfung zu Element aufheben
|
||||
# Documents models
|
||||
DocumentModelBeluga=Project template for linked objects overview
|
||||
DocumentModelBaleine=Project report template for tasks
|
||||
DocumentModelBeluga=Bericht Vorlage für verknüpfte Objekte-Übersicht
|
||||
DocumentModelBaleine=Projektberichtsvorlage für Aufgaben
|
||||
PlannedWorkload=Geplante Auslastung
|
||||
PlannedWorkloadShort=Workload
|
||||
WorkloadOccupation=Workloadzuordnung
|
||||
PlannedWorkloadShort=Arbeitsaufwand
|
||||
WorkloadOccupation=Zugeordneter Arbeitsaufwand
|
||||
ProjectReferers=Verknüpfte Objekte
|
||||
SearchAProject=Projekt suchen
|
||||
SearchATask=Aufgabe suchen
|
||||
|
||||
@ -42,7 +42,7 @@ PropalStatusNotSigned=Nicht unterzeichnet (geschlossen)
|
||||
PropalStatusBilled=Verrechnet
|
||||
PropalStatusDraftShort=Entwurf
|
||||
PropalStatusValidatedShort=Freigegeben
|
||||
PropalStatusOpenedShort=offen
|
||||
PropalStatusOpenedShort=Offen
|
||||
PropalStatusClosedShort=Geschlossen
|
||||
PropalStatusSignedShort=Unterzeichnet
|
||||
PropalStatusNotSignedShort=Nicht unterzeichnet
|
||||
|
||||
@ -24,7 +24,7 @@ ErrorWarehouseLabelRequired=Warenlager-Label erforderlich
|
||||
CorrectStock=Lagerbestand anpassen
|
||||
ListOfWarehouses=Liste der Warenlager
|
||||
ListOfStockMovements=Liste der Lagerbewegungen
|
||||
StocksArea=Lagerbereich
|
||||
StocksArea=Warenlager - Übersicht
|
||||
Location=Standort
|
||||
LocationSummary=Kurzbezeichnung Standort
|
||||
NumberOfDifferentProducts=Anzahl unterschiedlicher Produkte
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
# Dolibarr language file - Source file is en_US - users
|
||||
HRMArea=PM - Personalmanagment - Übersicht
|
||||
HRMArea=Personalmanagment - Übersicht
|
||||
UserCard=Benutzerkarte
|
||||
ContactCard=Kontaktkarte
|
||||
GroupCard=Firmenverbundkarte
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
# Dolibarr language file - en_US - Accounting Expert
|
||||
CHARSET=UTF-8
|
||||
ACCOUNTING_EXPORT_SEPARATORCSV=Column separator for export file
|
||||
ACCOUNTING_EXPORT_DATE=Date format for export file
|
||||
ACCOUNTING_EXPORT_SEPARATORCSV=Διαχωριστής στηλών για το αρχείο που θα εξαχθεί
|
||||
ACCOUNTING_EXPORT_DATE=Μορφή ημερομηνίας για το αρχείο που θα εξαγθεί
|
||||
ACCOUNTING_EXPORT_PIECE=Export the number of piece ?
|
||||
ACCOUNTING_EXPORT_GLOBAL_ACCOUNT=Export with global account ?
|
||||
ACCOUNTING_EXPORT_LABEL=Export the label ?
|
||||
|
||||
@ -948,7 +948,7 @@ DoNotSuggestPaymentMode=Χωρίς πρόταση πληρωμής
|
||||
NoActiveBankAccountDefined=Δεν έχει οριστεί ενεργός λογαριασμός τράπεζας
|
||||
OwnerOfBankAccount=Ιδιοκτήτης του λογαριασμού τράπεζας %s
|
||||
BankModuleNotActive=Bank accounts module not enabled
|
||||
ShowBugTrackLink=Show link "<strong>%s</strong>"
|
||||
ShowBugTrackLink=Εμφάνιση συνδέσμου link <strong>%s</strong>
|
||||
ShowWorkBoard=Show "workbench" on homepage
|
||||
Alerts=Συναγερμοί
|
||||
Delays=Καθυστερήσεις
|
||||
|
||||
@ -96,11 +96,11 @@ AddEvent=Δημιουργία συμβάντος
|
||||
MyAvailability=Η διαθεσιμότητα μου
|
||||
ActionType=Τύπος συμβάντος
|
||||
DateActionBegin=Έναρξη ημερομηνίας του συμβάντος
|
||||
CloneAction=Clone event
|
||||
ConfirmCloneEvent=Are you sure you want to clone the event <b>%s</b> ?
|
||||
RepeatEvent=Repeat event
|
||||
EveryWeek=Every week
|
||||
EveryMonth=Every month
|
||||
DayOfMonth=Day of month
|
||||
DayOfWeek=Day of week
|
||||
DateStartPlusOne=Date start + 1 hour
|
||||
CloneAction=Κλωνοποίηση συμβάντος
|
||||
ConfirmCloneEvent=Θέλεις σίγουρα να κλωνοποιήσεις το συμβάν<b>%τα</b>;
|
||||
RepeatEvent=Επανάληψη συμβάντος
|
||||
EveryWeek=Εβδομαδιαίο
|
||||
EveryMonth=Μηνιαίο
|
||||
DayOfMonth=Ημέρα του Μήνα
|
||||
DayOfWeek=Ημέρα της εβδομάδας
|
||||
DateStartPlusOne=Έναρξη ημέρας + 1 ώρα
|
||||
|
||||
@ -94,12 +94,12 @@ Conciliate=Πραγματοποίηση Συναλλαγής
|
||||
Conciliation=Πραγματοποίηση Συναλλαγής
|
||||
ConciliationForAccount=Πραγματοποίηση Συναλλαγών του Λογαριασμού
|
||||
IncludeClosedAccount=Συμπερίληψη Κλειστών Λογαριασμών
|
||||
OnlyOpenedAccount=Only open accounts
|
||||
OnlyOpenedAccount=Μόνο ανοικτούς λογαριασμούς
|
||||
AccountToCredit=Πίστωση στον Λογαριασμό
|
||||
AccountToDebit=Χρέωση στον Λογαριασμό
|
||||
DisableConciliation=Απενεργοποίηση της ιδιότητας συμφωνία από αυτό τον λογαριασμό
|
||||
ConciliationDisabled=Η ιδιότητα συμφωνία απενεργοποιήθηκε.
|
||||
StatusAccountOpened=Open
|
||||
StatusAccountOpened=Ανοιχτός
|
||||
StatusAccountClosed=Κλειστός
|
||||
AccountIdShort=Αριθμός
|
||||
EditBankRecord=Επεξεργασία Εγγραφής
|
||||
@ -113,7 +113,7 @@ CustomerInvoicePayment=Πληρωμή Πελάτη
|
||||
CustomerInvoicePaymentBack=Επιστροφή πληρωμής Πελάτη
|
||||
SupplierInvoicePayment=Πληρωμή Προμηθευτή
|
||||
WithdrawalPayment=Ανάκληση πληρωμής
|
||||
SocialContributionPayment=Social/fiscal tax payment
|
||||
SocialContributionPayment=Σίγουρα θέλεις να μαρκάρεις αυτότο αξιόγραφο σαν αποριφθέν;
|
||||
FinancialAccountJournal=Ημερολόγιο λογιστικού λογαριασμού
|
||||
BankTransfer=Τραπεζική Μεταφορά
|
||||
BankTransfers=Τραπεζικές Μεταφορές
|
||||
@ -165,8 +165,8 @@ DeleteARib=Διαγραφή BAN εγγραφή
|
||||
ConfirmDeleteRib=Είστε σίγουροι ότι θέλετε να διαγράψετε αυτή την εγγραφή BAN;
|
||||
StartDate=Ημερομηνία έναρξης
|
||||
EndDate=Ημερομηνία λήξης
|
||||
RejectCheck=Check rejection
|
||||
RejectCheck=Ελέγξτε την απόρριψη
|
||||
ConfirmRejectCheck=Are you sure you want to mark this check as rejected ?
|
||||
RejectCheckDate=Check rejection date
|
||||
CheckRejected=Check rejected
|
||||
CheckRejectedAndInvoicesReopened=Check rejected and invoices reopened
|
||||
RejectCheckDate=Ελέγξτε την ημερομηνία απόρριψης
|
||||
CheckRejected=Ελέγξτε την απόρριψη
|
||||
CheckRejectedAndInvoicesReopened=Ελέγξτε την απόρριψη και ξανάνοιξε τα τιμολόγια
|
||||
|
||||
@ -330,8 +330,8 @@ PaymentTypeCB=Πιστωτική κάρτα
|
||||
PaymentTypeShortCB=Πιστωτική κάρτα
|
||||
PaymentTypeCHQ=Επιταγή
|
||||
PaymentTypeShortCHQ=Επιταγή
|
||||
PaymentTypeTIP=Deposit
|
||||
PaymentTypeShortTIP=Deposit
|
||||
PaymentTypeTIP=Κατάθεση
|
||||
PaymentTypeShortTIP=Κατάθεση
|
||||
PaymentTypeVAD=On line πληρωμή
|
||||
PaymentTypeShortVAD=On line πληρωμή
|
||||
PaymentTypeTRA=Τιμολόγηση Πληρωμής
|
||||
|
||||
@ -19,7 +19,7 @@ BoxLastContracts=Τελευταία συμβόλαια
|
||||
BoxLastContacts=Τελευταίες επαφές/διευθύνσεις
|
||||
BoxLastMembers=Τελευταία μέλη
|
||||
BoxFicheInter=Τελευταίες παρεμβάσεις
|
||||
BoxCurrentAccounts=Open accounts balance
|
||||
BoxCurrentAccounts=Άνοιξε το ισοζύγιο των λογαριασμών
|
||||
BoxSalesTurnover=Κύκλος εργασιών
|
||||
BoxTotalUnpaidCustomerBills=Σύνολο απλήρωτων τιμολογίων πελατών
|
||||
BoxTotalUnpaidSuppliersBills=Σύνολο απλήρωτων τιμολογίων προμηθευτών
|
||||
@ -47,7 +47,7 @@ BoxTitleLastModifiedMembers=Τελευταία %s Μέλη
|
||||
BoxTitleLastFicheInter=Τελευταία %s ενημέρωση παρέμβασης
|
||||
BoxTitleOldestUnpaidCustomerBills=Παλαιότερα %s ανεξόφλητα τιμολόγια πελατών
|
||||
BoxTitleOldestUnpaidSupplierBills=Παλαιότερα %s ανεξόφλητα τιμολόγια προμηθευτών
|
||||
BoxTitleCurrentAccounts=Open accounts balances
|
||||
BoxTitleCurrentAccounts=Άνοιξε το ισοζύγια των λογαριασμών
|
||||
BoxTitleSalesTurnover=Κύκλος εργασιών των πωλήσεων
|
||||
BoxTitleTotalUnpaidCustomerBills=Απλήρωτα τιμολόγια πελατών
|
||||
BoxTitleTotalUnpaidSuppliersBills=Απλήρωτα τιμολόγια προμηθευτών
|
||||
@ -94,4 +94,4 @@ BoxProductDistributionFor=Κατανομή των %s για %s
|
||||
ForCustomersInvoices=Τιμολόγια Πελάτη
|
||||
ForCustomersOrders=Παραγγελίες πελατών
|
||||
ForProposals=Προσφορές
|
||||
LastXMonthRolling=The last %s month rolling
|
||||
LastXMonthRolling=Η τελευταία %s κίνηση του μήνα
|
||||
|
||||
@ -146,5 +146,5 @@ Permission20003=Διαγραφή των αιτήσεων άδειας
|
||||
Permission20004=Read leave requests for everybody
|
||||
Permission20005=Create/modify leave requests for everybody
|
||||
Permission20006=Admin leave requests (setup and update balance)
|
||||
NewByMonth=Added per month
|
||||
NewByMonth=Μηνιαία προσθήκη
|
||||
GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
|
||||
|
||||
@ -108,7 +108,7 @@ Yes=Ναι
|
||||
no=όχι
|
||||
No=Όχι
|
||||
All=Όλα
|
||||
Alls=All
|
||||
Alls=Όλα
|
||||
Home=Αρχική
|
||||
Help=Βοήθεια
|
||||
OnlineHelp=Online Βοήθεια
|
||||
@ -710,7 +710,7 @@ GoIntoSetupToChangeLogo=Πηγαίνετε Αρχική - Ρυθμίσεις -
|
||||
Deny=Άρνηση
|
||||
Denied=Άρνηση
|
||||
ListOfTemplates=Κατάλογος των προτύπων
|
||||
Gender=Gender
|
||||
Gender=Φύλο
|
||||
Genderman=Άνδρας
|
||||
Genderwoman=Γυναίκα
|
||||
ViewList=Προβολή λίστας
|
||||
|
||||
@ -194,13 +194,13 @@ Unit=Unit
|
||||
p=u.
|
||||
set=set
|
||||
se=set
|
||||
second=second
|
||||
second=Δευτερόλεπτο
|
||||
s=s
|
||||
hour=hour
|
||||
h=h
|
||||
day=day
|
||||
day=Ημέρα
|
||||
d=d
|
||||
kilogram=kilogram
|
||||
kilogram=Κιλό
|
||||
kg=Kg
|
||||
gram=gram
|
||||
g=g
|
||||
@ -208,9 +208,9 @@ meter=meter
|
||||
m=m
|
||||
linearmeter=linear meter
|
||||
lm=lm
|
||||
squaremeter=square meter
|
||||
squaremeter=τετραγωνικό μέτρο
|
||||
m2=m²
|
||||
cubicmeter=cubic meter
|
||||
cubicmeter=Κυβικό μέτρο
|
||||
m3=m³
|
||||
liter=liter
|
||||
l=L
|
||||
|
||||
@ -1,4 +1,7 @@
|
||||
# Dolibarr language file - Source file is en_US - admin
|
||||
AntiVirusCommandExample=Example for ClamWin: c:\\Progra~1\\ClamWin\\bin\\clamscan.exe<br>Example for ClamAv: /usr/bin/clamscan
|
||||
AntiVirusParamExample=Example for ClamWin: --database="C:\\Program Files (x86)\\ClamWin\\lib"
|
||||
ListOfDirectoriesForModelGenODT=List of directories containing templates files with OpenDocument format.<br><br>Put here full path of directories.<br>Add a carriage return between eah directory.<br>To add a directory of the GED module, add here <b>DOL_DATA_ROOT/ecm/yourdirectoryname</b>.<br><br>Files in those directories must end with <b>.odt</b>.
|
||||
ExampleOfDirectoriesForModelGen=Examples of syntax:<br>c:\\mydir<br>/home/mydir<br>DOL_DATA_ROOT/ecm/ecmdir
|
||||
Permission171=Read trips and expenses (own and his subordinates)
|
||||
Permission771=Read expense reports (own and his subordinates)
|
||||
|
||||
5
htdocs/langs/en_AU/banks.lang
Normal file
5
htdocs/langs/en_AU/banks.lang
Normal file
@ -0,0 +1,5 @@
|
||||
# Dolibarr language file - Source file is en_US - banks
|
||||
RejectCheck=Check rejection
|
||||
RejectCheckDate=Check rejection date
|
||||
CheckRejected=Check rejected
|
||||
CheckRejectedAndInvoicesReopened=Check rejected and invoices reopened
|
||||
5
htdocs/langs/en_AU/bills.lang
Normal file
5
htdocs/langs/en_AU/bills.lang
Normal file
@ -0,0 +1,5 @@
|
||||
# Dolibarr language file - Source file is en_US - bills
|
||||
PaymentTypeTIP=Deposit
|
||||
PaymentTypeShortTIP=Deposit
|
||||
PaymentTypeTRA=Bill payment
|
||||
PaymentTypeShortTRA=Bill
|
||||
@ -19,3 +19,4 @@ FormatDateHourShort=%m/%d/%Y %I:%M %p
|
||||
FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
|
||||
FormatDateHourTextShort=%b %d, %Y, %I:%M %p
|
||||
FormatDateHourText=%B %d, %Y, %I:%M %p
|
||||
ShowTransaction=Show transaction
|
||||
|
||||
2
htdocs/langs/en_AU/projects.lang
Normal file
2
htdocs/langs/en_AU/projects.lang
Normal file
@ -0,0 +1,2 @@
|
||||
# Dolibarr language file - Source file is en_US - projects
|
||||
OpportunitiesStatusForOpenedProjects=Opportunities status for opened projects
|
||||
@ -1,4 +1,7 @@
|
||||
# Dolibarr language file - Source file is en_US - admin
|
||||
AntiVirusCommandExample=Example for ClamWin: c:\\Progra~1\\ClamWin\\bin\\clamscan.exe<br>Example for ClamAv: /usr/bin/clamscan
|
||||
AntiVirusParamExample=Example for ClamWin: --database="C:\\Program Files (x86)\\ClamWin\\lib"
|
||||
ListOfDirectoriesForModelGenODT=List of directories containing templates files with OpenDocument format.<br><br>Put here full path of directories.<br>Add a carriage return between eah directory.<br>To add a directory of the GED module, add here <b>DOL_DATA_ROOT/ecm/yourdirectoryname</b>.<br><br>Files in those directories must end with <b>.odt</b>.
|
||||
ExampleOfDirectoriesForModelGen=Examples of syntax:<br>c:\\mydir<br>/home/mydir<br>DOL_DATA_ROOT/ecm/ecmdir
|
||||
Permission171=Read trips and expenses (own and his subordinates)
|
||||
Permission771=Read expense reports (own and his subordinates)
|
||||
|
||||
5
htdocs/langs/en_GB/banks.lang
Normal file
5
htdocs/langs/en_GB/banks.lang
Normal file
@ -0,0 +1,5 @@
|
||||
# Dolibarr language file - Source file is en_US - banks
|
||||
RejectCheck=Check rejection
|
||||
RejectCheckDate=Check rejection date
|
||||
CheckRejected=Check rejected
|
||||
CheckRejectedAndInvoicesReopened=Check rejected and invoices reopened
|
||||
5
htdocs/langs/en_GB/bills.lang
Normal file
5
htdocs/langs/en_GB/bills.lang
Normal file
@ -0,0 +1,5 @@
|
||||
# Dolibarr language file - Source file is en_US - bills
|
||||
PaymentTypeTIP=Deposit
|
||||
PaymentTypeShortTIP=Deposit
|
||||
PaymentTypeTRA=Bill payment
|
||||
PaymentTypeShortTRA=Bill
|
||||
@ -25,3 +25,4 @@ IncludedVAT=Included VAT
|
||||
TTC=Inc. VAT
|
||||
VAT=VAT
|
||||
VATRate=VAT Rate
|
||||
ShowTransaction=Show transaction
|
||||
|
||||
2
htdocs/langs/en_GB/projects.lang
Normal file
2
htdocs/langs/en_GB/projects.lang
Normal file
@ -0,0 +1,2 @@
|
||||
# Dolibarr language file - Source file is en_US - projects
|
||||
OpportunitiesStatusForOpenedProjects=Opportunities status for opened projects
|
||||
@ -1,4 +1,7 @@
|
||||
# Dolibarr language file - Source file is en_US - admin
|
||||
AntiVirusCommandExample=Example for ClamWin: c:\\Progra~1\\ClamWin\\bin\\clamscan.exe<br>Example for ClamAv: /usr/bin/clamscan
|
||||
AntiVirusParamExample=Example for ClamWin: --database="C:\\Program Files (x86)\\ClamWin\\lib"
|
||||
ListOfDirectoriesForModelGenODT=List of directories containing templates files with OpenDocument format.<br><br>Put here full path of directories.<br>Add a carriage return between eah directory.<br>To add a directory of the GED module, add here <b>DOL_DATA_ROOT/ecm/yourdirectoryname</b>.<br><br>Files in those directories must end with <b>.odt</b>.
|
||||
ExampleOfDirectoriesForModelGen=Examples of syntax:<br>c:\\mydir<br>/home/mydir<br>DOL_DATA_ROOT/ecm/ecmdir
|
||||
Permission171=Read trips and expenses (own and his subordinates)
|
||||
Permission771=Read expense reports (own and his subordinates)
|
||||
|
||||
5
htdocs/langs/en_IN/banks.lang
Normal file
5
htdocs/langs/en_IN/banks.lang
Normal file
@ -0,0 +1,5 @@
|
||||
# Dolibarr language file - Source file is en_US - banks
|
||||
RejectCheck=Check rejection
|
||||
RejectCheckDate=Check rejection date
|
||||
CheckRejected=Check rejected
|
||||
CheckRejectedAndInvoicesReopened=Check rejected and invoices reopened
|
||||
5
htdocs/langs/en_IN/bills.lang
Normal file
5
htdocs/langs/en_IN/bills.lang
Normal file
@ -0,0 +1,5 @@
|
||||
# Dolibarr language file - Source file is en_US - bills
|
||||
PaymentTypeTIP=Deposit
|
||||
PaymentTypeShortTIP=Deposit
|
||||
PaymentTypeTRA=Bill payment
|
||||
PaymentTypeShortTRA=Bill
|
||||
@ -19,3 +19,4 @@ FormatDateHourShort=%m/%d/%Y %I:%M %p
|
||||
FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
|
||||
FormatDateHourTextShort=%b %d, %Y, %I:%M %p
|
||||
FormatDateHourText=%B %d, %Y, %I:%M %p
|
||||
ShowTransaction=Show transaction
|
||||
|
||||
2
htdocs/langs/en_IN/projects.lang
Normal file
2
htdocs/langs/en_IN/projects.lang
Normal file
@ -0,0 +1,2 @@
|
||||
# Dolibarr language file - Source file is en_US - projects
|
||||
OpportunitiesStatusForOpenedProjects=Opportunities status for opened projects
|
||||
@ -54,3 +54,14 @@ PacificNumRefModelDesc1=Return numero with format %syymm-nnnn where yy is year,
|
||||
PacificNumRefModelError=An intervention card starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
|
||||
PrintProductsOnFichinter=Print products on intervention card
|
||||
PrintProductsOnFichinterDetails=interventions generated from orders
|
||||
##### Exports #####
|
||||
InterId=Intervention id
|
||||
InterRef=Intervention ref.
|
||||
InterDateCreation=Date creation intervention
|
||||
InterDuration=Duration intervention
|
||||
InterStatus=Status intervention
|
||||
InterNote=Note intervention
|
||||
InterLineId=Line id intervention
|
||||
InterLineDate=Line date intervention
|
||||
InterLineDuration=Line duration intervention
|
||||
InterLineDesc=Line description intervention
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
# Dolibarr language file - Source file is en_US - projects
|
||||
RefProject=Ref. project
|
||||
ProjectRef=Project ref.
|
||||
ProjectId=Project Id
|
||||
ProjectLabel=Project label
|
||||
Project=Project
|
||||
Projects=Projects
|
||||
ProjectStatus=Project status
|
||||
|
||||
@ -1,4 +1,7 @@
|
||||
# Dolibarr language file - Source file is en_US - admin
|
||||
AntiVirusCommandExample=Example for ClamWin: c:\\Progra~1\\ClamWin\\bin\\clamscan.exe<br>Example for ClamAv: /usr/bin/clamscan
|
||||
AntiVirusParamExample=Example for ClamWin: --database="C:\\Program Files (x86)\\ClamWin\\lib"
|
||||
ListOfDirectoriesForModelGenODT=List of directories containing templates files with OpenDocument format.<br><br>Put here full path of directories.<br>Add a carriage return between eah directory.<br>To add a directory of the GED module, add here <b>DOL_DATA_ROOT/ecm/yourdirectoryname</b>.<br><br>Files in those directories must end with <b>.odt</b>.
|
||||
ExampleOfDirectoriesForModelGen=Examples of syntax:<br>c:\\mydir<br>/home/mydir<br>DOL_DATA_ROOT/ecm/ecmdir
|
||||
Permission171=Read trips and expenses (own and his subordinates)
|
||||
Permission771=Read expense reports (own and his subordinates)
|
||||
|
||||
5
htdocs/langs/es_AR/banks.lang
Normal file
5
htdocs/langs/es_AR/banks.lang
Normal file
@ -0,0 +1,5 @@
|
||||
# Dolibarr language file - Source file is en_US - banks
|
||||
RejectCheck=Check rejection
|
||||
RejectCheckDate=Check rejection date
|
||||
CheckRejected=Check rejected
|
||||
CheckRejectedAndInvoicesReopened=Check rejected and invoices reopened
|
||||
3
htdocs/langs/es_AR/bills.lang
Normal file
3
htdocs/langs/es_AR/bills.lang
Normal file
@ -0,0 +1,3 @@
|
||||
# Dolibarr language file - Source file is en_US - bills
|
||||
PaymentTypeTRA=Bill payment
|
||||
PaymentTypeShortTRA=Bill
|
||||
3
htdocs/langs/es_AR/holiday.lang
Normal file
3
htdocs/langs/es_AR/holiday.lang
Normal file
@ -0,0 +1,3 @@
|
||||
# Dolibarr language file - Source file is en_US - holiday
|
||||
Permission20001=Read you own leave requests
|
||||
Permission20004=Read leave requests for everybody
|
||||
@ -19,3 +19,4 @@ FormatDateHourShort=%m/%d/%Y %I:%M %p
|
||||
FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
|
||||
FormatDateHourTextShort=%b %d, %Y, %I:%M %p
|
||||
FormatDateHourText=%B %d, %Y, %I:%M %p
|
||||
ShowTransaction=Show transaction
|
||||
|
||||
2
htdocs/langs/es_AR/projects.lang
Normal file
2
htdocs/langs/es_AR/projects.lang
Normal file
@ -0,0 +1,2 @@
|
||||
# Dolibarr language file - Source file is en_US - projects
|
||||
OpportunitiesStatusForOpenedProjects=Opportunities status for opened projects
|
||||
@ -1,4 +1,7 @@
|
||||
# Dolibarr language file - Source file is en_US - admin
|
||||
AntiVirusCommandExample=Example for ClamWin: c:\\Progra~1\\ClamWin\\bin\\clamscan.exe<br>Example for ClamAv: /usr/bin/clamscan
|
||||
AntiVirusParamExample=Example for ClamWin: --database="C:\\Program Files (x86)\\ClamWin\\lib"
|
||||
ListOfDirectoriesForModelGenODT=List of directories containing templates files with OpenDocument format.<br><br>Put here full path of directories.<br>Add a carriage return between eah directory.<br>To add a directory of the GED module, add here <b>DOL_DATA_ROOT/ecm/yourdirectoryname</b>.<br><br>Files in those directories must end with <b>.odt</b>.
|
||||
ExampleOfDirectoriesForModelGen=Examples of syntax:<br>c:\\mydir<br>/home/mydir<br>DOL_DATA_ROOT/ecm/ecmdir
|
||||
Permission171=Read trips and expenses (own and his subordinates)
|
||||
Permission771=Read expense reports (own and his subordinates)
|
||||
|
||||
5
htdocs/langs/es_BO/banks.lang
Normal file
5
htdocs/langs/es_BO/banks.lang
Normal file
@ -0,0 +1,5 @@
|
||||
# Dolibarr language file - Source file is en_US - banks
|
||||
RejectCheck=Check rejection
|
||||
RejectCheckDate=Check rejection date
|
||||
CheckRejected=Check rejected
|
||||
CheckRejectedAndInvoicesReopened=Check rejected and invoices reopened
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user