Merge remote-tracking branch 'origin/3.8' into develop

Conflicts:
	htdocs/filefunc.inc.php
This commit is contained in:
Laurent Destailleur 2015-09-16 22:09:21 +02:00
commit 9cbd236c8c
199 changed files with 4420 additions and 3631 deletions

View File

@ -39,12 +39,14 @@ parse_str($argv[1]);
$outputfile=dirname(__FILE__).'/../htdocs/install/filelist.xml'; $outputfile=dirname(__FILE__).'/../htdocs/install/filelist.xml';
$fp = fopen($outputfile,'w'); $fp = fopen($outputfile,'w');
fputs($fp, '<?xml version="1.0" encoding="UTF-8" ?>'."\n"); fputs($fp, '<?xml version="1.0" encoding="UTF-8" ?>'."\n");
fputs($fp, '<checksum_list>'."\n"); fputs($fp, '<checksum_list version="'.$release.'">'."\n");
fputs($fp, '<dolibarr_root_dir version="'.$release.'">'."\n");
$dir_iterator = new RecursiveDirectoryIterator(dirname(__FILE__).'/../htdocs/'); fputs($fp, '<dolibarr_htdocs_dir>'."\n");
$iterator = new RecursiveIteratorIterator($dir_iterator);
$dir_iterator1 = new RecursiveDirectoryIterator(dirname(__FILE__).'/../htdocs/');
$iterator1 = new RecursiveIteratorIterator($dir_iterator1);
// need to ignore document custom etc // 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=''; $dir='';
$needtoclose=0; $needtoclose=0;
foreach ($files as $file) { foreach ($files as $file) {
@ -61,7 +63,34 @@ foreach ($files as $file) {
} }
} }
fputs($fp, '</dir>'."\n"); 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"); fputs($fp, '</checksum_list>'."\n");
fclose($fp); fclose($fp);

View File

@ -228,11 +228,14 @@ class modMyModule extends DolibarrModules
// Example: // Example:
// $this->export_code[$r]=$this->rights_class.'_'.$r; // $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_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_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_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_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] =' 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)'; // $this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'product as p on (fd.fk_product = p.rowid)';

View File

@ -445,6 +445,7 @@ if ($id == 11)
$langs->load("interventions"); $langs->load("interventions");
$elementList = array( $elementList = array(
'' => '', '' => '',
'societe' => $langs->trans('ThirdParty'),
// 'proposal' => $langs->trans('Proposal'), // 'proposal' => $langs->trans('Proposal'),
// 'order' => $langs->trans('Order'), // 'order' => $langs->trans('Order'),
// 'invoice' => $langs->trans('Bill'), // 'invoice' => $langs->trans('Bill'),

View File

@ -31,6 +31,8 @@ $langs->load("admin");
if (!$user->admin) if (!$user->admin)
accessforbidden(); accessforbidden();
$error=0;
/* /*
* View * View
@ -77,67 +79,91 @@ if (file_exists($xmlfile))
$xml = simplexml_load_file($xmlfile); $xml = simplexml_load_file($xmlfile);
if ($xml) if ($xml)
{ {
$file_list = array(); if (is_object($xml->dolibarr_htdocs_dir[0]))
$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))
{ {
foreach ($tmpfilelist as $file) $file_list = array();
{ $ret = getFilesUpdated($file_list, $xml->dolibarr_htdocs_dir[0]); // Fill array $file_list
$var = !$var;
print '<tr ' . $bc[$var] . '>'; print '<table class="noborder">';
print '<td>'.$file['filename'].'</td>' . "\n"; print '<tr class="liste_titre">';
print '<td align="center">'.$file['expectedmd5'].'</td>' . "\n"; print '<td>' . $langs->trans("FilesMissing") . '</td>';
print "</tr>\n"; 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>'; else
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))
{ {
foreach ($tmpfilelist as $file) print 'Error: Failed to found dolibarr_htdocs_dir into XML file '.$xmlfile;
{ $error++;
$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 '</table>'; }
else
{
print 'Error: Failed to parse XML for input file '.$xmlfile;
$error++;
} }
} }
else else
{ {
print $langs->trans('XmlNotFound') . ': ' . $xmlfile; print $langs->trans('XmlNotFound') . ': ' . $xmlfile;
$error++;
} }
llxFooter(); llxFooter();
$db->close(); $db->close();
exit($error);
/** /**
* Function to get list of updated or modified files. * Function to get list of updated or modified files.

View File

@ -1165,8 +1165,10 @@ if (empty($reshook))
if (! $error && ! empty($conf->global->MAIN_DISABLE_CONTACTS_TAB) && $user->rights->commande->creer) { if (! $error && ! empty($conf->global->MAIN_DISABLE_CONTACTS_TAB) && $user->rights->commande->creer)
if ($action == 'addcontact') { {
if ($action == 'addcontact')
{
if ($object->id > 0) { if ($object->id > 0) {
$contactid = (GETPOST('userid') ? GETPOST('userid') : GETPOST('contactid')); $contactid = (GETPOST('userid') ? GETPOST('userid') : GETPOST('contactid'));
$result = $object->add_contact($contactid, GETPOST('type'), GETPOST('source')); $result = $object->add_contact($contactid, GETPOST('type'), GETPOST('source'));
@ -1186,7 +1188,8 @@ if (empty($reshook))
} }
// bascule du statut d'un contact // bascule du statut d'un contact
else if ($action == 'swapstatut') { else if ($action == 'swapstatut')
{
if ($object->id > 0) { if ($object->id > 0) {
$result = $object->swapContactStatus(GETPOST('ligne')); $result = $object->swapContactStatus(GETPOST('ligne'));
} else { } else {
@ -1195,7 +1198,8 @@ if (empty($reshook))
} }
// Efface un contact // Efface un contact
else if ($action == 'deletecontact') { else if ($action == 'deletecontact')
{
$result = $object->delete_contact($lineid); $result = $object->delete_contact($lineid);
if ($result >= 0) { if ($result >= 0) {

View File

@ -452,13 +452,15 @@ abstract class CommonObject
// Check parameters // Check parameters
if ($fk_socpeople <= 0) 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); dol_syslog(get_class($this)."::add_contact ".$this->error,LOG_ERR);
return -1; return -1;
} }
if (! $type_contact) 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); dol_syslog(get_class($this)."::add_contact ".$this->error,LOG_ERR);
return -2; return -2;
} }
@ -486,7 +488,7 @@ abstract class CommonObject
} }
$datecreate = dol_now(); $datecreate = dol_now();
$this->db->begin(); $this->db->begin();
// Insertion dans la base // Insertion dans la base
@ -504,7 +506,11 @@ abstract class CommonObject
if (! $notrigger) if (! $notrigger)
{ {
$result=$this->call_trigger(strtoupper($this->element).'_ADD_CONTACT', $user); $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(); $this->db->commit();

View File

@ -3016,6 +3016,8 @@ class Form
global $langs; global $langs;
$langs->load("categories"); $langs->load("categories");
include_once DOL_DOCUMENT_ROOT.'/categories/class.categorie.class.php';
$cat = new Categorie($this->db); $cat = new Categorie($this->db);
$cate_arbo = $cat->get_full_arbo($type,$excludeafterid); $cate_arbo = $cat->get_full_arbo($type,$excludeafterid);
@ -4675,6 +4677,8 @@ class Form
{ {
global $db; global $db;
include_once DOL_DOCUMENT_ROOT.'/categories/class.categorie.class.php';
$cat = new Categorie($db); $cat = new Categorie($db);
$categories = $cat->containing($id, $type); $categories = $cat->containing($id, $type);

View File

@ -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 // if =0 we don't use the feature
$limittoshow=(empty($conf->global->MAIN_MAXTABS_IN_CARD)?99:$conf->global->MAIN_MAXTABS_IN_CARD); $limittoshow=(empty($conf->global->MAIN_MAXTABS_IN_CARD)?99:$conf->global->MAIN_MAXTABS_IN_CARD);
$displaytab=0; $displaytab=0;
$nbintab=0;
for ($i = 0 ; $i <= $maxkey ; $i++) 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.='<a'.(! empty($links[$i][2])?' id="'.$links[$i][2].'"':'').' class="inline-block" href="'.$links[$i][0].'">'.$links[$i][1].'</a>'."\n";
$outmore.='</div>'; $outmore.='</div>';
$nbintab++;
} }
$displaytab=$i; $displaytab=$i;
} }
@ -795,18 +797,16 @@ function dol_get_fiche_head($links=array(), $active='0', $title='', $notab=0, $p
{ {
$tabsname=str_replace("@", "", $picto); $tabsname=str_replace("@", "", $picto);
$out.='<div id="moretabs'.$tabsname.'" class="inline-block tabsElem">'; $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 id="moretabsList'.$tabsname.'" style="position: absolute; left: -999em;text-align: left;margin:0px;padding:2px">'.$outmore.'</div>';
$out.="</div>\n"; $out.="</div>\n";
$out.="<script>"; $out.="<script>";
$out.="$('#moretabs".$tabsname.").mouseenter( function() { $('#moretabsList".$tabsname.").css('left','auto');});"; $out.="$('#moretabs".$tabsname."').mouseenter( function() { $('#moretabsList".$tabsname."').css('left','auto');});";
$out.="$('#moretabs".$tabsname.").mouseleave( function() { $('#moretabsList".$tabsname.").css('left','-999em');});"; $out.="$('#moretabs".$tabsname."').mouseleave( function() { $('#moretabsList".$tabsname."').css('left','-999em');});";
$out.="</script>"; $out.="</script>";
} }
$out.="</div>\n";
if (! $notab) $out.="\n".'<div class="tabBar">'."\n"; if (! $notab) $out.="\n".'<div class="tabBar">'."\n";
return $out; return $out;

View File

@ -73,7 +73,12 @@ $userstatic=new User($db);
<div class="nowrap tagtd"><?php echo img_object('','user').' '.$langs->trans("Users"); ?></div> <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"><?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 $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">&nbsp;</div> <div class="tagtd">&nbsp;</div>
<div class="tagtd" align="right"><input type="submit" class="button" value="<?php echo $langs->trans("Add"); ?>"></div> <div class="tagtd" align="right"><input type="submit" class="button" value="<?php echo $langs->trans("Add"); ?>"></div>
</form> </form>

View File

@ -77,7 +77,7 @@ if ($action == 'addcontact' && $user->rights->expedition->creer)
{ {
if ($result > 0 && $id > 0) 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) if ($result >= 0)
@ -87,14 +87,15 @@ if ($action == 'addcontact' && $user->rights->expedition->creer)
} }
else else
{ {
if ($objectsrc->error == 'DB_ERROR_RECORD_ALREADY_EXISTS') { if ($objectsrc->error == 'DB_ERROR_RECORD_ALREADY_EXISTS')
{
$langs->load("errors"); $langs->load("errors");
$mesg = $langs->trans("ErrorThisContactIsAlreadyDefinedAsThisType"); $mesg = $langs->trans("ErrorThisContactIsAlreadyDefinedAsThisType");
} else { } else {
$mesg = $objectsrc->error; $mesg = $objectsrc->error;
$mesgs = $objectsrc->errors;
} }
setEventMessages($mesg, $mesgs, 'errors');
setEventMessage($mesg, 'errors');
} }
} }
@ -236,7 +237,6 @@ if ($id > 0 || ! empty($ref))
// Lignes de contacts // Lignes de contacts
echo '<br>'; echo '<br>';
// Contacts lines (modules that overwrite templates must declare this into descriptor) // Contacts lines (modules that overwrite templates must declare this into descriptor)
$dirtpls=array_merge($conf->modules_parts['tpl'],array('/core/tpl')); $dirtpls=array_merge($conf->modules_parts['tpl'],array('/core/tpl'));
foreach($dirtpls as $reldir) foreach($dirtpls as $reldir)

View File

@ -488,7 +488,7 @@ class PaymentExpenseReport extends CommonObject
$this->datepaid, $this->datepaid,
$this->fk_typepayment, // Payment mode id or code ("CHQ or VIR for example") $this->fk_typepayment, // Payment mode id or code ("CHQ or VIR for example")
$label, $label,
$amount, -$amount,
$this->num_payment, $this->num_payment,
'', '',
$user, $user,

View File

@ -431,10 +431,10 @@ if ($step == 1 || ! $datatoexport)
//print img_object($objexport->array_export_module[$key]->getName(),$export->array_export_module[$key]->picto).' '; //print img_object($objexport->array_export_module[$key]->getName(),$export->array_export_module[$key]->picto).' ';
print $objexport->array_export_module[$key]->getName(); print $objexport->array_export_module[$key]->getName();
print '</td><td>'; print '</td><td>';
$icon=$objexport->array_export_icon[$key]; $icon=preg_replace('/:.*$/','',$objexport->array_export_icon[$key]);
$label=$objexport->array_export_label[$key]; $label=$objexport->array_export_label[$key];
//print $value.'-'.$icon.'-'.$label."<br>"; //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 $label;
print '</td><td align="right">'; print '</td><td align="right">';
if ($objexport->array_export_perms[$key]) if ($objexport->array_export_perms[$key])
@ -492,10 +492,10 @@ if ($step == 2 && $datatoexport)
// Lot de donnees a exporter // Lot de donnees a exporter
print '<tr><td width="25%">'.$langs->trans("DatasetToExport").'</td>'; print '<tr><td width="25%">'.$langs->trans("DatasetToExport").'</td>';
print '<td>'; print '<td>';
$icon=$objexport->array_export_icon[0]; $icon=preg_replace('/:.*$/','',$objexport->array_export_icon[0]);
$label=$objexport->array_export_label[0]; $label=$objexport->array_export_label[0];
//print $value.'-'.$icon.'-'.$label."<br>"; //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 $label;
print '</td></tr>'; print '</td></tr>';
@ -666,10 +666,10 @@ if ($step == 3 && $datatoexport)
// Lot de donnees a exporter // Lot de donnees a exporter
print '<tr><td width="25%">'.$langs->trans("DatasetToExport").'</td>'; print '<tr><td width="25%">'.$langs->trans("DatasetToExport").'</td>';
print '<td>'; print '<td>';
$icon=$objexport->array_export_icon[0]; $icon=preg_replace('/:.*$/','',$objexport->array_export_icon[0]);
$label=$objexport->array_export_label[0]; $label=$objexport->array_export_label[0];
//print $value.'-'.$icon.'-'.$label."<br>"; //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 $label;
print '</td></tr>'; print '</td></tr>';
@ -832,7 +832,8 @@ if ($step == 4 && $datatoexport)
// Lot de donnees a exporter // Lot de donnees a exporter
print '<tr><td width="25%">'.$langs->trans("DatasetToExport").'</td>'; print '<tr><td width="25%">'.$langs->trans("DatasetToExport").'</td>';
print '<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 $objexport->array_export_label[0];
print '</td></tr>'; print '</td></tr>';
@ -1069,7 +1070,8 @@ if ($step == 5 && $datatoexport)
// Lot de donnees a exporter // Lot de donnees a exporter
print '<tr><td width="25%">'.$langs->trans("DatasetToExport").'</td>'; print '<tr><td width="25%">'.$langs->trans("DatasetToExport").'</td>';
print '<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 $objexport->array_export_label[0];
print '</td></tr>'; print '</td></tr>';

View File

@ -67,7 +67,9 @@ $conffiletoshow = "htdocs/conf/conf.php";
// Include configuration // Include configuration
// --- End of part replaced by Dolibarr packager makepack-dolibarr // --- End of part replaced by Dolibarr packager makepack-dolibarr
// Replace conf filename with "conf" parameter on url by GET // Replace conf filename with "conf" parameter on url by GET
/* Disabled. This is a serious security hole
if (! empty($_GET['conf'])) if (! empty($_GET['conf']))
{ {
$confname=basename($_GET['conf']); $confname=basename($_GET['conf']);
@ -77,7 +79,7 @@ if (! empty($_GET['conf']))
$confname=basename(empty($_COOKIE['dolconf']) ? 'conf' : $_COOKIE['dolconf']); $confname=basename(empty($_COOKIE['dolconf']) ? 'conf' : $_COOKIE['dolconf']);
$conffile = 'conf/'.$confname.'.php'; $conffile = 'conf/'.$confname.'.php';
} }
*/
// Include configuration // Include configuration
$result=@include_once $conffile; // Keep @ because with some error reporting this break the redirect $result=@include_once $conffile; // Keep @ because with some error reporting this break the redirect

View File

@ -264,10 +264,13 @@ if ($object->id > 0)
print '</tr>'; print '</tr>';
// Categories // Categories
print '<tr><td>' . $langs->trans("Categories") . '</td>'; if (! empty($conf->categorie->enabled))
print '<td colspan="3">'; {
print $form->showCategories($object->id, 'supplier', 1); print '<tr><td>' . $langs->trans("Categories") . '</td>';
print "</td></tr>"; print '<td colspan="3">';
print $form->showCategories($object->id, 'supplier', 1);
print "</td></tr>";
}
// Other attributes // Other attributes
$parameters=array('socid'=>$object->id, 'colspan' => ' colspan="3"', 'colspanvalue' => '3'); $parameters=array('socid'=>$object->id, 'colspan' => ' colspan="3"', 'colspanvalue' => '3');

File diff suppressed because it is too large Load Diff

View File

@ -9,14 +9,14 @@
-- To drop a column: ALTER TABLE llx_table DROP COLUMN oldname; -- 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 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 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 Mysql version x.y or more: -- VMYSQLx.y
-- To restrict request to Pgsql version x.y use -- VPGSQLx.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 (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 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 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; -- 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); -- To delete orphelins: VMYSQL4.1 DELETE FROM llx_usergroup_user WHERE fk_usergroup NOT IN (SELECT rowid from llx_usergroup);
-- -- 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; 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); 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; DROP TABLE llx_holiday_types;

View File

@ -1,10 +1,10 @@
# Dolibarr language file - en_US - Accounting Expert # Dolibarr language file - en_US - Accounting Expert
CHARSET=UTF-8 CHARSET=UTF-8
ACCOUNTING_EXPORT_SEPARATORCSV=Column separator for export file ACCOUNTING_EXPORT_SEPARATORCSV=Separador de columna pel fitxer d'exportació
ACCOUNTING_EXPORT_DATE=Date format for export file ACCOUNTING_EXPORT_DATE=Format de data pel fitxer d'exportació
ACCOUNTING_EXPORT_PIECE=Export the number of piece ? ACCOUNTING_EXPORT_PIECE=Export the number of piece ?
ACCOUNTING_EXPORT_GLOBAL_ACCOUNT=Export with global account ? 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_AMOUNT=Export the amount ?
ACCOUNTING_EXPORT_DEVISE=Export the devise ? ACCOUNTING_EXPORT_DEVISE=Export the devise ?
@ -22,18 +22,18 @@ JournalFinancial=Diaris financers
Exports=Exportacions Exports=Exportacions
Export=Exporta Export=Exporta
Modelcsv=Model d'exportació 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ó Selectmodelcsv=Selecciona un model d'exportació
Modelcsv_normal=Exportació clàssica Modelcsv_normal=Exportació clàssica
Modelcsv_CEGID=Export towards CEGID Expert Modelcsv_CEGID=Exporta cap a CEGID Expert
BackToChartofaccounts=Return chart of accounts BackToChartofaccounts=Tornar al Pla comptable
Back=Return Back=Tornar
Definechartofaccounts=Define a chart of accounts Definechartofaccounts=Definir el Pla comptable
Selectchartofaccounts=Select a chart of accounts Selectchartofaccounts=Seleccionar el Pla comptable
Validate=Validar Validate=Validar
Addanaccount=Add an accounting account Addanaccount=Afegir un compte comptable
AccountAccounting=Accounting account AccountAccounting=Compte comptable
Ventilation=Breakdown Ventilation=Breakdown
ToDispatch=A desglossar ToDispatch=A desglossar
Dispatched=Desglossats Dispatched=Desglossats
@ -44,11 +44,11 @@ TradeMargin=Trade margin
Reports=Informes Reports=Informes
ByCustomerInvoice=By invoices customers ByCustomerInvoice=By invoices customers
ByMonth=Per mes ByMonth=Per mes
NewAccount=New accounting account NewAccount=Nou compte comptable
Update=Update Update=Actualitzar
List=Llistat List=Llistat
Create=Crear Create=Crear
CreateMvts=Create movement CreateMvts=Crear moviment
UpdateAccount=Modification of an accounting account UpdateAccount=Modification of an accounting account
UpdateMvts=Modification of a movement UpdateMvts=Modification of a movement
WriteBookKeeping=Record accounts in general ledger WriteBookKeeping=Record accounts in general ledger
@ -58,7 +58,7 @@ AccountBalanceByMonth=Account balance by month
AccountingVentilation=Breakdown accounting AccountingVentilation=Breakdown accounting
AccountingVentilationSupplier=Breakdown accounting supplier AccountingVentilationSupplier=Breakdown accounting supplier
AccountingVentilationCustomer=Breakdown accounting customer AccountingVentilationCustomer=Breakdown accounting customer
Line=Line Line=Línia
CAHTF=Total purchase supplier HT CAHTF=Total purchase supplier HT
InvoiceLines=Lines of invoice to be ventilated InvoiceLines=Lines of invoice to be ventilated
@ -131,14 +131,14 @@ CashPayment=Cash Payment
SupplierInvoicePayment=Payment of invoice supplier SupplierInvoicePayment=Payment of invoice supplier
CustomerInvoicePayment=Payment of invoice customer CustomerInvoicePayment=Payment of invoice customer
ThirdPartyAccount=Thirdparty account ThirdPartyAccount=Compte de tercer
NewAccountingMvt=Nou moviment NewAccountingMvt=Nou moviment
NumMvts=Nombre de 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 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 DescThirdPartyReport=Consult here the list of the thirdparty customers and the suppliers and their accounting accounts
ListAccounts=List of the accounting accounts ListAccounts=List of the accounting accounts

View File

@ -231,8 +231,8 @@ Security=Seguretat
Passwords=Contrasenyes Passwords=Contrasenyes
DoNotStoreClearPassword=No emmagatzemar la contrasenya sense xifrar a la base DoNotStoreClearPassword=No emmagatzemar la contrasenya sense xifrar a la base
MainDbPasswordFileConfEncrypted=Encriptar la contrasenya de la base en l'arxiu conf.php 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> 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=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> 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 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. 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ó Feature=Funció

View File

@ -178,7 +178,7 @@ NumberOfBills=Nº de factures
NumberOfBillsByMonth=Nº de factures per mes NumberOfBillsByMonth=Nº de factures per mes
AmountOfBills=Import de les factures AmountOfBills=Import de les factures
AmountOfBillsByMonthHT=Import de les factures per mes (Sense IVA) AmountOfBillsByMonthHT=Import de les factures per mes (Sense IVA)
ShowSocialContribution=Show social/fiscal tax ShowSocialContribution=Mostra l'impost social
ShowBill=Veure factura ShowBill=Veure factura
ShowInvoice=Veure factura ShowInvoice=Veure factura
ShowInvoiceReplace=Veure factura rectificativa 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. 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. 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). 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 PaymentId=ID pagament
InvoiceId=Id factura InvoiceId=Id factura
InvoiceRef=Ref. factura InvoiceRef=Ref. factura
@ -330,8 +330,8 @@ PaymentTypeCB=Targeta
PaymentTypeShortCB=Targeta PaymentTypeShortCB=Targeta
PaymentTypeCHQ=Xec PaymentTypeCHQ=Xec
PaymentTypeShortCHQ=Xec PaymentTypeShortCHQ=Xec
PaymentTypeTIP=Deposit PaymentTypeTIP=Bestreta
PaymentTypeShortTIP=Deposit PaymentTypeShortTIP=Bestreta
PaymentTypeVAD=Pagament On Line PaymentTypeVAD=Pagament On Line
PaymentTypeShortVAD=Pagament On Line PaymentTypeShortVAD=Pagament On Line
PaymentTypeTRA=Lletra de canvi PaymentTypeTRA=Lletra de canvi

View File

@ -19,7 +19,7 @@ BoxLastContracts=Últims contractes
BoxLastContacts=Últims contactes/adreçes BoxLastContacts=Últims contactes/adreçes
BoxLastMembers=Últims membres modificats BoxLastMembers=Últims membres modificats
BoxFicheInter=Últimes intervencions modificades BoxFicheInter=Últimes intervencions modificades
BoxCurrentAccounts=Open accounts balance BoxCurrentAccounts=Balanç de comptes oberts
BoxSalesTurnover=Volum de vendes BoxSalesTurnover=Volum de vendes
BoxTotalUnpaidCustomerBills=Total factures a clients pendents de cobrament BoxTotalUnpaidCustomerBills=Total factures a clients pendents de cobrament
BoxTotalUnpaidSuppliersBills=Total factures de proveïdors pendents de pagament BoxTotalUnpaidSuppliersBills=Total factures de proveïdors pendents de pagament
@ -47,7 +47,7 @@ BoxTitleLastModifiedMembers=Últims %s membres modificats
BoxTitleLastFicheInter=Les %s últimes intervencions modificades BoxTitleLastFicheInter=Les %s últimes intervencions modificades
BoxTitleOldestUnpaidCustomerBills=Les %s factures més antigues a clients pendents de cobrament 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 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 BoxTitleSalesTurnover=Volum de vendes realitzades
BoxTitleTotalUnpaidCustomerBills=Factures a clients pendents de cobrament BoxTitleTotalUnpaidCustomerBills=Factures a clients pendents de cobrament
BoxTitleTotalUnpaidSuppliersBills=Factures de proveïdors pendents de pagament BoxTitleTotalUnpaidSuppliersBills=Factures de proveïdors pendents de pagament

View File

@ -30,8 +30,8 @@ ThirdPartyContact=Contacte tercer
StatusContactValidated=Estat del contacte StatusContactValidated=Estat del contacte
Company=Empresa Company=Empresa
CompanyName=Raó social CompanyName=Raó social
AliasNames=Alias name (commercial, trademark, ...) AliasNames=Àlies (nom comercial, marca, ...)
AliasNameShort=Alias name AliasNameShort=Nom comercial
Companies=Empreses Companies=Empreses
CountryIsInEEC=Pais de la Comunitat Econòmica Europea CountryIsInEEC=Pais de la Comunitat Econòmica Europea
ThirdPartyName=Nom del tercer ThirdPartyName=Nom del tercer
@ -69,7 +69,7 @@ Country=Pais
CountryCode=Codi pais CountryCode=Codi pais
CountryId=Id pais CountryId=Id pais
Phone=Telèfon Phone=Telèfon
PhoneShort=Phone PhoneShort=Telèfon
Skype=Skype Skype=Skype
Call=Trucar Call=Trucar
Chat=Xat 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. 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. LeopardNumRefModelDesc=Codi de client/proveïdor lliure sense verificació. Pot ser modificat en qualsevol moment.
ManagingDirectors=Nom del gerent(s) (CEO, director, president ...) ManagingDirectors=Nom del gerent(s) (CEO, director, president ...)
SearchThirdparty=Search third party SearchThirdparty=Buscar tercer
SearchContact=Cercar contacte SearchContact=Cercar contacte
MergeOriginThirdparty=Duplicate third party (third party you want to delete) MergeOriginThirdparty=Duplicar tercer (tercer que vols eliminar)
MergeThirdparties=Merge third parties MergeThirdparties=Fusionar tercers
ConfirmMergeThirdparties=Are you sure you want to merge this third party into the current one ? All linked objects (invoices, orders, ...) will be moved to current third party so you will be able to delete the duplicate one. ConfirmMergeThirdparties=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=Thirdparties have been merged ThirdpartiesMergeSuccess=Els tercers han sigut fusionats
ErrorThirdpartiesMerge=There was an error when deleting the thirdparties. Please check the log. Changes have been reverted. ErrorThirdpartiesMerge=Hi ha hagut un error mentre s'esborraven els tercers. Per favor, revisa el log. Els canvis han sigut revertits.

View File

@ -35,7 +35,7 @@ ECMSearchByEntity=Cercar per objecte
ECMSectionOfDocuments=Carpetes de documents ECMSectionOfDocuments=Carpetes de documents
ECMTypeManual=Manual ECMTypeManual=Manual
ECMTypeAuto=Automàtic ECMTypeAuto=Automàtic
ECMDocsBySocialContributions=Documents linked to social or fiscal taxes ECMDocsBySocialContributions=Documents relacionats als impostos socials o fiscals
ECMDocsByThirdParties=Documents associats a tercers ECMDocsByThirdParties=Documents associats a tercers
ECMDocsByProposals=Documents associats a pressupostos ECMDocsByProposals=Documents associats a pressupostos
ECMDocsByOrders=Documents associats a comandes ECMDocsByOrders=Documents associats a comandes

View File

@ -65,7 +65,7 @@ ErrorNoValueForCheckBoxType=Els valors de la llista han de ser indicats
ErrorNoValueForRadioType=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 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 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 ErrorNoAccountancyModuleLoaded=Mòdul de comptabilitat no activat
ErrorExportDuplicateProfil=El nom d'aquest perfil ja existeix per aquest conjunt d'exportació ErrorExportDuplicateProfil=El nom d'aquest perfil ja existeix per aquest conjunt d'exportació
ErrorLDAPSetupNotComplete=La configuració Dolibarr-LDAP és incompleta. 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 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. 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>) 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>) 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 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)! 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 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. 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 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. 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 ...). 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ó. 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 ErrorGlobalVariableUpdater5=Sense variable global seleccionada
ErrorFieldMustBeANumeric=El camp <b>%s</b> ha de contenir un valor numèric ErrorFieldMustBeANumeric=El camp <b>%s</b> ha de contenir un valor numèric
ErrorFieldMustBeAnInteger=El camp <b>%s</b> ha de ser un enter ErrorFieldMustBeAnInteger=El camp <b>%s</b> ha de ser un enter
ErrorMandatoryParametersNotProvided=Mandatory parameter(s) not provided ErrorMandatoryParametersNotProvided=Paràmetre/s obligatori/s no definits
ErrorOppStatusRequiredIfAmount=You set an estimated amount for this opportunity/lead. So you must also enter its status ErrorOppStatusRequiredIfAmount=S'estableix una quantitat estimada per aquesta oportunitat/prospecte. Així que també has d'introduir el seu estat
# Warnings # Warnings
WarningMandatorySetupNotComplete=Els paràmetres obligatoris de configuració no estan encara definits 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. 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. WarningPaymentDateLowerThanInvoiceDate=La data de pagament (%s) és anterior a la data (%s) de la factura %s.
WarningTooManyDataPleaseUseMoreFilters=Masses dades. Utilitzi més filtres. 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.

View File

@ -48,7 +48,7 @@ NoImportableData=Sense taules de dades importables (cap mòdul amb les definicio
FileSuccessfullyBuilt=Arxiu d'exportació generat FileSuccessfullyBuilt=Arxiu d'exportació generat
SQLUsedForExport=Consulta SQL utilitzada per construir el fitxer d'exportació SQLUsedForExport=Consulta SQL utilitzada per construir el fitxer d'exportació
LineId=ID de línia LineId=ID de línia
LineLabel=Label of line LineLabel=Etiqueta de la línia
LineDescription=Descripció de línia LineDescription=Descripció de línia
LineUnitPrice=Preu unitari de la línia LineUnitPrice=Preu unitari de la línia
LineVATRate=Tipus d'IVA 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 FilterableFields=Camps filtrables
FilteredFields=Campos filtrats FilteredFields=Campos filtrats
FilteredFieldsValues=Valors de filtres FilteredFieldsValues=Valors de filtres
FormatControlRule=Format control rule FormatControlRule=Regla de control de format

View File

@ -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. 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. 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) 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ó). 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 KeepEmptyIfNoPassword=Deixi buit si l'usuari no té contrasenya
SaveConfigurationFile=Gravació del fitxer de configuració SaveConfigurationFile=Gravació del fitxer de configuració

View File

@ -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>. 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. 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'. 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. ErrorFailedToSaveFile=Error, el registre del fitxer ha fallat.
SetDate=Definir data SetDate=Definir data
SelectDate=Seleccioneu una data SelectDate=Seleccioneu una data
@ -108,7 +108,7 @@ Yes=Sí
no=no no=no
No=No No=No
All=Tot All=Tot
Alls=All Alls=Tot
Home=Inici Home=Inici
Help=Ajuda Help=Ajuda
OnlineHelp=Ajuda en línia OnlineHelp=Ajuda en línia
@ -128,7 +128,7 @@ Disable=Desactivar
Disabled=Desactivat Disabled=Desactivat
Add=Afegir Add=Afegir
AddLink=Enllaçar AddLink=Enllaçar
RemoveLink=Remove link RemoveLink=Elimina enllaç
Update=Modificar Update=Modificar
AddActionToDo=Afegir acció a realitzar AddActionToDo=Afegir acció a realitzar
AddActionDone=Afegir acció realitzada AddActionDone=Afegir acció realitzada
@ -303,8 +303,8 @@ UnitPriceHT=Preu base
UnitPriceTTC=Preu unitari total UnitPriceTTC=Preu unitari total
PriceU=P.U. PriceU=P.U.
PriceUHT=P.U. PriceUHT=P.U.
AskPriceSupplierUHT=U.P. net Requested AskPriceSupplierUHT=Preu Unitari sol·licitat
PriceUTTC=U.P. (inc. tax) PriceUTTC=Preu unitari (IVA inclòs)
Amount=Import Amount=Import
AmountInvoice=Import factura AmountInvoice=Import factura
AmountPayment=Import pagament AmountPayment=Import pagament
@ -341,7 +341,7 @@ IncludedVAT=IVA inclòs
HT=Sense IVA HT=Sense IVA
TTC=IVA inclòs TTC=IVA inclòs
VAT=IVA VAT=IVA
VATs=Sales taxes VATs=IVAs
LT1ES=RE LT1ES=RE
LT2ES=IRPF LT2ES=IRPF
VATRate=Taxa IVA VATRate=Taxa IVA
@ -416,8 +416,8 @@ Qty=Qt.
ChangedBy=Modificat per ChangedBy=Modificat per
ApprovedBy=Aprovat per ApprovedBy=Aprovat per
ApprovedBy2=Aprovat per (segona aprovació) ApprovedBy2=Aprovat per (segona aprovació)
Approved=Approved Approved=Aprovat
Refused=Refused Refused=Rebutjada
ReCalculate=Recalcular ReCalculate=Recalcular
ResultOk=Èxit ResultOk=Èxit
ResultKo=Error ResultKo=Error
@ -426,7 +426,7 @@ Reportings=Informes
Draft=Esborrany Draft=Esborrany
Drafts=Esborranys Drafts=Esborranys
Validated=Validat Validated=Validat
Opened=Open Opened=Actiu
New=Nou New=Nou
Discount=Descompte Discount=Descompte
Unknown=Desconegut Unknown=Desconegut
@ -683,7 +683,7 @@ LinkedToSpecificUsers=Enllaçat a un contacte d'usuari particular
DeleteAFile=Eliminació d'arxiu DeleteAFile=Eliminació d'arxiu
ConfirmDeleteAFile=Confirme l'eliminació de l'arxiu ConfirmDeleteAFile=Confirme l'eliminació de l'arxiu
NoResults=Cap resultat NoResults=Cap resultat
SystemTools=System tools SystemTools=Utilitats sistema
ModulesSystemTools=Utilitats mòduls ModulesSystemTools=Utilitats mòduls
Test=Prova Test=Prova
Element=Element 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. GoIntoSetupToChangeLogo=Anar a Inici->Configuració->Empresa per canviar el logotip o anar a Inici->Configuració->Visualització per amagar.
Deny=Denegar Deny=Denegar
Denied=Denegad Denied=Denegad
ListOfTemplates=List of templates ListOfTemplates=Llistat de plantilles
Gender=Gender Gender=Sexe
Genderman=Man Genderman=Home
Genderwoman=Woman Genderwoman=Dona
ViewList=List view ViewList=Vista llistat
Mandatory=Mandatory Mandatory=Obligatori
Hello=Hello Hello=Hola
Sincerely=Sincerely Sincerely=Sincerament
# Week day # Week day
Monday=Dilluns Monday=Dilluns
Tuesday=Dimarts Tuesday=Dimarts
@ -746,5 +746,5 @@ ShortThursday=Dj
ShortFriday=Dv ShortFriday=Dv
ShortSaturday=Ds ShortSaturday=Ds
ShortSunday=Dg ShortSunday=Dg
SelectMailModel=Select email template SelectMailModel=Selecciona plantilla d'email
SetRef=Set ref SetRef=Definiar ref

View File

@ -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> 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 ByProperties=Per característiques
MembersStatisticsByProperties=Estadístiques dels membres per característiques MembersStatisticsByProperties=Estadístiques dels membres per característiques
MembersByNature=This screen show you statistics on members by nature. MembersByNature=Aquesta pantalla mostra les estadístiques de membres per naturalesa.
MembersByRegion=This screen show you statistics on members by region. MembersByRegion=Aquesta pantalla mostra les teves estadístiques de membres per regió.
VATToUseForSubscriptions=Taxa d'IVA per les afiliacions VATToUseForSubscriptions=Taxa d'IVA per les afiliacions
NoVatOnSubscription=Sense IVA per a 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ó MEMBER_PAYONLINE_SENDEMAIL=E-Mail per advertir en cas de recepció de confirmació d'un pagament validat d'una afiliació

View File

@ -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 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 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> IfAmountHigherThan=si l'import es major que <strong>%s</strong>
SourcesRepository=Repository for sources SourcesRepository=Repositori de fonts
##### Calendar common ##### ##### Calendar common #####
AddCalendarEntry=Afegir entrada al calendari AddCalendarEntry=Afegir entrada al calendari

View File

@ -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 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). 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). 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. 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). 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. 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 OfficerProject=Responsable del projecte
LastProjects=Els %s ultims projectes LastProjects=Els %s ultims projectes
AllProjects=Tots els projectes AllProjects=Tots els projectes
OpenedProjects=Opened projects OpenedProjects=Projectes oberts
OpportunitiesStatusForOpenedProjects=Opportunities status for opened projects OpportunitiesStatusForOpenedProjects=Estat d'oportunitats per projectes oberts
ProjectsList=Llistat de projectes ProjectsList=Llistat de projectes
ShowProject=Veure projecte ShowProject=Veure projecte
SetProject=Definir projecte SetProject=Definir projecte
@ -78,10 +78,10 @@ ListFichinterAssociatedProject=Llistat d'intervencions associades al projecte
ListExpenseReportsAssociatedProject=Llistat d'informes de despeses associades al projecte ListExpenseReportsAssociatedProject=Llistat d'informes de despeses associades al projecte
ListDonationsAssociatedProject=Llistat de donacions associades al projecte ListDonationsAssociatedProject=Llistat de donacions associades al projecte
ListActionsAssociatedProject=Llista d'esdeveniments associats al projecte ListActionsAssociatedProject=Llista d'esdeveniments associats al projecte
ListTaskTimeUserProject=List of time consumed on tasks of project ListTaskTimeUserProject=Llistat del temps consumit en tasques d'aquest projecte
TaskTimeUserProject=Time consumed on tasks of project TaskTimeUserProject=Temps consumit en tasques del projecte
ActivityOnProjectToday=Activity on project today ActivityOnProjectToday=Activitat en el projecte avui
ActivityOnProjectYesterday=Activity on project yesterday ActivityOnProjectYesterday=Activitat en el projecte ahir
ActivityOnProjectThisWeek=Activitat en el projecte aquesta setmana ActivityOnProjectThisWeek=Activitat en el projecte aquesta setmana
ActivityOnProjectThisMonth=Activitat en el projecte aquest mes ActivityOnProjectThisMonth=Activitat en el projecte aquest mes
ActivityOnProjectThisYear=Activitat en el projecte aquest any ActivityOnProjectThisYear=Activitat en el projecte aquest any
@ -97,7 +97,7 @@ ReOpenAProject=Reobrir projecte
ConfirmReOpenAProject=Esteu segur de voler reobrir aquest projecte? ConfirmReOpenAProject=Esteu segur de voler reobrir aquest projecte?
ProjectContact=Contactes projecte ProjectContact=Contactes projecte
ActionsOnProject=Esdeveniments del projecte ActionsOnProject=Esdeveniments del projecte
OpenedProjects=Opened projects OpenedProjects=Projectes oberts
YouAreNotContactOfProject=Vostè no és contacte d'aquest projecte privat YouAreNotContactOfProject=Vostè no és contacte d'aquest projecte privat
DeleteATimeSpent=Eliminació de temps dedicat DeleteATimeSpent=Eliminació de temps dedicat
ConfirmDeleteATimeSpent=Esteu segur de voler eliminar aquest 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 TaskCreatedInDolibarr=La tasca %s a sigut creada
TaskModifiedInDolibarr=La tasca %s a sigut modificada TaskModifiedInDolibarr=La tasca %s a sigut modificada
TaskDeletedInDolibarr=La tasca %s a sigut eliminada TaskDeletedInDolibarr=La tasca %s a sigut eliminada
OpportunityStatus=Opportunity status OpportunityStatus=Estat d'oportunitats
OpportunityStatusShort=Opp. status OpportunityStatusShort=Estat d'oportunitat
OpportunityAmount=Opportunity amount OpportunityAmount=Import d'oportunitats
OpportunityAmountShort=Opp. amount OpportunityAmountShort=Import d'oportunitat
##### Types de contacts ##### ##### Types de contacts #####
TypeContact_project_internal_PROJECTLEADER=Cap de projecte TypeContact_project_internal_PROJECTLEADER=Cap de projecte
TypeContact_project_external_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 WorkloadOccupation=Assignació de carrega de treball
ProjectReferers=Objectes vinculats ProjectReferers=Objectes vinculats
SearchAProject=Cercar un projecte SearchAProject=Cercar un projecte
SearchATask=Search a task SearchATask=Cerca una tasca
ProjectMustBeValidatedFirst=El projecte primer ha de ser validat ProjectMustBeValidatedFirst=El projecte primer ha de ser validat
ProjectDraft=Projectes esborrany ProjectDraft=Projectes esborrany
FirstAddRessourceToAllocateTime=Associate a resource to allocate time FirstAddRessourceToAllocateTime=Associate a resource to allocate time
@ -158,28 +158,28 @@ InputPerDay=Entrada per dia
InputPerWeek=Entrada per setmana InputPerWeek=Entrada per setmana
InputPerAction=Entrada per acció InputPerAction=Entrada per acció
TimeAlreadyRecorded=Temps dedicat ja registrat per aquesta tasca/dia i usuari %s TimeAlreadyRecorded=Temps dedicat ja registrat per aquesta tasca/dia i usuari %s
ProjectsWithThisUserAsContact=Projects with this user as contact ProjectsWithThisUserAsContact=Projectes amb aquest usuari com a contacte
TasksWithThisUserAsContact=Tasks assigned to this user TasksWithThisUserAsContact=Tasques asignades a l'usuari
ResourceNotAssignedToProject=Not assigned to project ResourceNotAssignedToProject=No assignat a cap projecte
ResourceNotAssignedToTask=Not assigned to task ResourceNotAssignedToTask=No assignat a cap tasca
AssignTaskToMe=Assign task to me AssignTaskToMe=Assignar-me una tasca
AssignTask=Assign AssignTask=Assigna
ProjectOverview=Overview ProjectOverview=Informació general
ManageTasks=Use projects to follow tasks and time ManageTasks=Utilitza els projectes per seguir tasques i temps
ManageOpportunitiesStatus=Use projects to follow leads/opportinuties ManageOpportunitiesStatus=Utilitza els projectes per seguir oportunitats
ProjectNbProjectByMonth=Nb of created projects by month ProjectNbProjectByMonth=Nº de projectes creats per mes
ProjectOppAmountOfProjectsByMonth=Amount of opportunities by month ProjectOppAmountOfProjectsByMonth=Amount of opportunities by month
ProjectWeightedOppAmountOfProjectsByMonth=Weighted amount of opportunities by month ProjectWeightedOppAmountOfProjectsByMonth=Weighted amount of opportunities by month
ProjectOpenedProjectByOppStatus=Opened project/lead by opportunity status ProjectOpenedProjectByOppStatus=Opened project/lead by opportunity status
ProjectsStatistics=Statistics on projects/leads ProjectsStatistics=Statistics on projects/leads
TaskAssignedToEnterTime=Task assigned. Entering time on this task should be possible. TaskAssignedToEnterTime=Task assigned. Entering time on this task should be possible.
OpenedProjectsByThirdparties=Opened projects by thirdparties OpenedProjectsByThirdparties=Projectes oberts per tercers
OpportunityTotalAmount=Opportunities total amount OpportunityTotalAmount=Import total d'oportunitats
OpportunityPonderatedAmount=Opportunities weighted amount OpportunityPonderatedAmount=Opportunities weighted amount
OppStatusPROSP=Prospection OppStatusPROSP=Prospection
OppStatusQUAL=Qualification OppStatusQUAL=Qualification
OppStatusPROPO=Proposal OppStatusPROPO=Pressupost
OppStatusNEGO=Negociation OppStatusNEGO=Negociation
OppStatusPENDING=Pending OppStatusPENDING=Pendent
OppStatusWIN=Won OppStatusWIN=Guanyat
OppStatusLOST=Lost OppStatusLOST=Perdut

View File

@ -52,7 +52,7 @@ PropalsToBill=Pressupostos signats a facturar
ListOfProposals=Llistat de pressupostos ListOfProposals=Llistat de pressupostos
ActionsOnPropal=Esdeveniments sobre el pressupost ActionsOnPropal=Esdeveniments sobre el pressupost
NoOpenedPropals=Sense pressupostos oberts NoOpenedPropals=Sense pressupostos oberts
NoOtherOpenedPropals=No other open commercial proposals NoOtherOpenedPropals=No hi ha altres pressupostos oberts
RefProposal=Ref. pressupost RefProposal=Ref. pressupost
SendPropalByMail=Enviar pressupost per e-mail SendPropalByMail=Enviar pressupost per e-mail
AssociatedDocuments=Documents associats al pressupost: AssociatedDocuments=Documents associats al pressupost:
@ -98,4 +98,4 @@ DocModelJauneDescription=Model de pressupost Jaune
DefaultModelPropalCreate=Model per defecte DefaultModelPropalCreate=Model per defecte
DefaultModelPropalToBill=Model per defecte en tancar un pressupost (a facturar) DefaultModelPropalToBill=Model per defecte en tancar un pressupost (a facturar)
DefaultModelPropalClosed=Model per defecte en tancar un pressupost (no facturat) 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

View File

@ -42,5 +42,5 @@ SentToSuppliers=Enviat a proveïdors
ListOfSupplierOrders=Llista de comandes a proveïdors ListOfSupplierOrders=Llista de comandes a proveïdors
MenuOrdersSupplierToBill=Comandes a proveïdors a facturar MenuOrdersSupplierToBill=Comandes a proveïdors a facturar
NbDaysToDelivery=Temps d'entrega en dies NbDaysToDelivery=Temps d'entrega en dies
DescNbDaysToDelivery=The biggest deliver delay of the products from this order DescNbDaysToDelivery=El retard més gran d'entrega dels productes d'aquesta comanda
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) 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ó).

View File

@ -1,21 +1,21 @@
# Dolibarr language file - Source file is en_US - trips # Dolibarr language file - Source file is en_US - trips
ExpenseReport=Expense report ExpenseReport=Expense report
ExpenseReports=Expense reports ExpenseReports=Expense reports
Trip=Expense report Trip=Informe de despeses
Trips=Expense reports Trips=Informes de despeses
TripsAndExpenses=Expenses reports TripsAndExpenses=Informes de despeses
TripsAndExpensesStatistics=Expense reports statistics TripsAndExpensesStatistics=Estadístiques de l'informe de despeses
TripCard=Expense report card TripCard=Expense report card
AddTrip=Create expense report AddTrip=Crear informe de despeses
ListOfTrips=List of expense reports ListOfTrips=Llistat de informes de despeses
ListOfFees=Llistat notes de honoraris ListOfFees=Llistat notes de honoraris
ShowTrip=Show expense report ShowTrip=Mostra l'informe de despeses
NewTrip=New expense report NewTrip=Nou informe de despeses
CompanyVisited=Empresa/institució visitada CompanyVisited=Empresa/institució visitada
Kilometers=Quilòmetres Kilometers=Quilòmetres
FeesKilometersOrAmout=Import o quilòmetres FeesKilometersOrAmout=Import o quilòmetres
DeleteTrip=Delete expense report DeleteTrip=Eliminar informe de despeses
ConfirmDeleteTrip=Are you sure you want to delete this expense report ? ConfirmDeleteTrip=Esteu segur de voler eliminar aquest informe de despeses?
ListTripsAndExpenses=List of expense reports ListTripsAndExpenses=List of expense reports
ListToApprove=Waiting for approval ListToApprove=Waiting for approval
ExpensesArea=Expense reports area ExpensesArea=Expense reports area
@ -54,17 +54,17 @@ Date_DEBUT=Period date start
Date_FIN=Period date end Date_FIN=Period date end
ModePaiement=Payment mode ModePaiement=Payment mode
Note=Note Note=Note
Project=Project Project=Projecte
VALIDATOR=User responsible for approval VALIDATOR=User responsible for approval
VALIDOR=Approved by VALIDOR=Aprovat per
AUTHOR=Recorded by AUTHOR=Desat per
AUTHORPAIEMENT=Paid by AUTHORPAIEMENT=Pagat per
REFUSEUR=Denied by REFUSEUR=Denegat per
CANCEL_USER=Deleted by CANCEL_USER=Eliminat per
MOTIF_REFUS=Reason MOTIF_REFUS=Raó
MOTIF_CANCEL=Reason MOTIF_CANCEL=Raó
DATE_REFUS=Deny date DATE_REFUS=Deny date
DATE_SAVE=Validation date DATE_SAVE=Validation date
@ -72,8 +72,8 @@ DATE_VALIDE=Validation date
DATE_CANCEL=Cancelation date DATE_CANCEL=Cancelation date
DATE_PAIEMENT=Payment date DATE_PAIEMENT=Payment date
TO_PAID=Pay TO_PAID=Pagar
BROUILLONNER=Reopen BROUILLONNER=Reobrir
SendToValid=Sent on approval SendToValid=Sent on approval
ModifyInfoGen=Edita ModifyInfoGen=Edita
ValidateAndSubmit=Validate and submit for approval ValidateAndSubmit=Validate and submit for approval

View File

@ -57,7 +57,7 @@ RemoveFromGroup=Eliminar del grup
PasswordChangedAndSentTo=Contrasenya canviada i enviada a <b>%s</b>. 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>. PasswordChangeRequestSent=Petició de canvi de contrasenya per a <b>%s</b> enviada a <b>%s</b>.
MenuUsersAndGroups=Usuaris i grups MenuUsersAndGroups=Usuaris i grups
MenuMyUserCard=My user card MenuMyUserCard=La meva fitxa d'usuari
LastGroupsCreated=Els %s darrers grups creats LastGroupsCreated=Els %s darrers grups creats
LastUsersCreated=Els %s darrers usuaris creats LastUsersCreated=Els %s darrers usuaris creats
ShowGroup=Veure grup ShowGroup=Veure grup

View File

@ -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. 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 RelatedBill=Verwandte Rechnung
PaymentConditionRECEP=Prompt nach Rechnungserhalt PaymentConditionRECEP=Prompt nach Rechnungserhalt
PaymentTypeTIP=Deposit
PaymentTypeShortTIP=Deposit
PaymentTypeTRA=Bill payment
PaymentTypeShortTRA=Bill
LawApplicationPart2=Die Ware bleibt Eigentum der LawApplicationPart2=Die Ware bleibt Eigentum der
LawApplicationPart3=der Verkäufer bis zur vollständigen Einlösung des LawApplicationPart3=der Verkäufer bis zur vollständigen Einlösung des
LawApplicationPart4=ihren Preis. LawApplicationPart4=ihren Preis.

View 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

View File

@ -65,3 +65,4 @@ AttributeCode=Attribut-Code
OptionalFieldsSetup=Optionale Felder einrichten OptionalFieldsSetup=Optionale Felder einrichten
CreateDraft=Erstelle Entwurf CreateDraft=Erstelle Entwurf
NoPhotoYet=Es wurde noch kein Bild hochgeladen NoPhotoYet=Es wurde noch kein Bild hochgeladen
ShowTransaction=Show transaction

View File

@ -1,4 +1,7 @@
# Dolibarr language file - Source file is en_US - admin # 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 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" 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 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)

View 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

View 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

View 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

View File

@ -19,3 +19,4 @@ FormatDateHourShort=%d/%m/%Y %H:%M
FormatDateHourSecShort=%d/%m/%Y %H:%M:%S FormatDateHourSecShort=%d/%m/%Y %H:%M:%S
FormatDateHourTextShort=%d %b %Y %H:%M FormatDateHourTextShort=%d %b %Y %H:%M
FormatDateHourText=%d %B %Y %H:%M FormatDateHourText=%d %B %Y %H:%M
ShowTransaction=Show transaction

View File

@ -0,0 +1,2 @@
# Dolibarr language file - Source file is en_US - projects
OpportunitiesStatusForOpenedProjects=Opportunities status for opened projects

View File

@ -39,7 +39,7 @@ InternalUsers=Interne Benutzer
ExternalUsers=Externe Benutzer ExternalUsers=Externe Benutzer
GlobalSetup=Allgemeine Einstellungen GlobalSetup=Allgemeine Einstellungen
GUISetup=Anzeige GUISetup=Anzeige
SetupArea=Einstellungsübersicht SetupArea=Einstellungen - Übersicht
FormToTestFileUploadForm=Formular für das Testen von Datei-Uplads (je nach Konfiguration) FormToTestFileUploadForm=Formular für das Testen von Datei-Uplads (je nach Konfiguration)
IfModuleEnabled=Anmerkung: Ist nur wirksam wenn Modul <b>%s</b> aktiviert ist 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 RemoveLock=Entfernen Sie die Datei <b>%s</b> falls vorhanden, um das Aktualisierungs-Tool auszuführen
@ -151,7 +151,7 @@ System=System
SystemInfo=Systeminformationen SystemInfo=Systeminformationen
SystemToolsArea=Systemwerkzeugsübersicht SystemToolsArea=Systemwerkzeugsübersicht
SystemToolsAreaDesc=In diesem Bereich finden Sie die Verwaltungsfunktionen. Verwenden Sie das linke Menü zur Auswahl der gesuchten Funktion. 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) 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) PurgeDeleteLogFile=Löschen der Protokolldatei <b>%s</b> des Systemprotokollmoduls (kein Risiko des Datenverlusts)
PurgeDeleteTemporaryFiles=Alle temporären Dateien löschen (kein Datenverlustrisiko) PurgeDeleteTemporaryFiles=Alle temporären Dateien löschen (kein Datenverlustrisiko)
@ -461,7 +461,7 @@ Module58Name=ClickToDial
Module58Desc=ClickToDial-Integration Module58Desc=ClickToDial-Integration
Module59Name=Bookmark4u Module59Name=Bookmark4u
Module59Desc=Neues Bookmark4u Konto zu Systembenutzerkonto hinzufügen Module59Desc=Neues Bookmark4u Konto zu Systembenutzerkonto hinzufügen
Module70Name=Service Module70Name=Arbeitseinsätze
Module70Desc=Serviceverwaltung Module70Desc=Serviceverwaltung
Module75Name=Spesen- und Reiseaufzeichnungen Module75Name=Spesen- und Reiseaufzeichnungen
Module75Desc=Reise- und Fahrtspesenverwaltung Module75Desc=Reise- und Fahrtspesenverwaltung
@ -566,7 +566,7 @@ Permission13=Rechnungsfreigabe aufheben
Permission14=Rechnungen freigeben Permission14=Rechnungen freigeben
Permission15=Rechnungen per E-Mail versenden Permission15=Rechnungen per E-Mail versenden
Permission16=Rechnungszahlungen erstellen Permission16=Rechnungszahlungen erstellen
Permission19=Rechnungen löschen Permission19=Kundenrechnungen löschen
Permission21=Angebote einsehen Permission21=Angebote einsehen
Permission22=Angebote erstellen/bearbeiten Permission22=Angebote erstellen/bearbeiten
Permission24=Angebote freigeben Permission24=Angebote freigeben
@ -581,10 +581,10 @@ Permission36=Projekte/Leistungen exportieren
Permission38=Produkte 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. 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) 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 Permission61=Leistungen ansehen
Permission62=Leistungen erstellen/bearbeiten Permission62=Leistungen erstellen/bearbeiten
Permission64=Leistungen löschen Permission64=Interventionen löschen
Permission67=Leistungen exportieren Permission67=Leistungen exportieren
Permission71=Mitglieder einsehen Permission71=Mitglieder einsehen
Permission72=Mitglieder erstellen/bearbeiten Permission72=Mitglieder erstellen/bearbeiten
@ -609,7 +609,7 @@ Permission101=Auslieferungen einsehen
Permission102=Auslieferungen erstellen/bearbeiten Permission102=Auslieferungen erstellen/bearbeiten
Permission104=Auslieferungen freigeben Permission104=Auslieferungen freigeben
Permission106=Auslieferungen exportieren Permission106=Auslieferungen exportieren
Permission109=Auslieferungen löschen Permission109=Sendungen löschen
Permission111=Finanzkonten einsehen Permission111=Finanzkonten einsehen
Permission112=Transaktionen erstellen/ändern/löschen und vergleichen Permission112=Transaktionen erstellen/ändern/löschen und vergleichen
Permission113=Einstellungen Finanzkonten (erstellen, Kategorien verwalten) 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. LocalTax1IsNotUsedDescES= Standardmäßig werden die vorgeschlagenen RE 0 ist. Ende der Regel.
LocalTax1IsUsedExampleES= In Spanien sind sie Profis unterliegen bestimmten Abschnitten der spanischen IAE. 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. 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> 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. 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. 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 LDAPServerDn=Server DN
LDAPAdminDn=Administrator DN LDAPAdminDn=Administrator DN
LDAPAdminDnExample=Vollständige DN (zB: cn=adminldap,dc=society,dc=com) LDAPAdminDnExample=Vollständige DN (zB: cn=adminldap,dc=society,dc=com)
LDAPPassword=Administratorpasswort LDAPPassword=Administrator-Passwort
LDAPUserDn=Benutzer DN LDAPUserDn=Benutzer DN
LDAPUserDnExample=Vollständige DN (zB: ou=users,dc=society,dc=com) LDAPUserDnExample=Vollständige DN (zB: ou=users,dc=society,dc=com)
LDAPGroupDn=Gruppen DN LDAPGroupDn=Gruppen DN
LDAPGroupDnExample=Vollständige DN (zB: ou=users,dc=society,dc=com) LDAPGroupDnExample=Vollständige DN (zB: ou=users,dc=society,dc=com)
LDAPServerExample=Server-Adresse (zB: localhost, 192.168.0.2, ldaps://ldap.example.com/) LDAPServerExample=Server-Adresse (zB: localhost, 192.168.0.2, ldaps://ldap.example.com/)
LDAPServerDnExample=Complete DN (zB: dc=company,dc=com) LDAPServerDnExample=Complete DN (zB: dc=company,dc=com)
LDAPPasswordExample=Administratorenpasswort LDAPPasswordExample=Administrator-Passwort
LDAPDnSynchroActive=Benutzer und Gruppensynchronisation LDAPDnSynchroActive=Benutzer und Gruppensynchronisation
LDAPDnSynchroActiveExample=LDAP zu dolibarr oder dolibarr zu LDAP-Synchronisation LDAPDnSynchroActiveExample=LDAP zu dolibarr oder dolibarr zu LDAP-Synchronisation
LDAPDnContactActive=Kontaktesynchronisation 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 EndPointIs=SOAP-Clients müssen Ihre Anfragen an den dolibarr-Endpoint unter der folgenden Url stellen
##### API #### ##### API ####
ApiSetup=API-Modul-Setup 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") KeyForApiAccess=Schlüssel um das API zu nutzen (Parameter "api_key")
ApiProductionMode=Aktiviere Produktionsmodus ApiProductionMode=Aktiviere Produktionsmodus
ApiEndPointIs=Sie können das API mit dieser URL verwenden ApiEndPointIs=Sie können das API mit dieser URL verwenden

View File

@ -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. 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. 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. AgendaUrlOptionsProject=<b>project=PROJECT_ID</b> begrenzt die Ausgabe auf die dem Projekte <b>PROJECT_ID</b> zugewiesene Ereignissen.
AgendaShowBirthdayEvents=Zeige Geburtstage AgendaShowBirthdayEvents=Zeige Geburtstage von Kontakten
AgendaHideBirthdayEvents=Geburtstage ausblenden AgendaHideBirthdayEvents=Geburtstage von Kontakten ausblenden
Busy=Besetzt Busy=Besetzt
ExportDataset_event1=Liste Ereignisse des Kalender ExportDataset_event1=Liste Ereignisse des Kalender
DefaultWorkingDays=Standard-Werktage der Woche (z.B. 1-5, 1-6) 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 ExtSiteNoLabel=Keine Beschreibung
WorkingTimeRange=Arbeitszeit-Bereich WorkingTimeRange=Arbeitszeit-Bereich
WorkingDaysRange=Arbeitstag-Bereich WorkingDaysRange=Arbeitstag-Bereich
VisibleTimeRange=Visible time range VisibleTimeRange=Sichtbare Stunden Bereich
VisibleDaysRange=Visible days range VisibleDaysRange=Sichtbare Tage Bereich
AddEvent=Ereignis erstellen AddEvent=Ereignis erstellen
MyAvailability=Meine Verfügbarkeit MyAvailability=Meine Verfügbarkeit
ActionType=Ereignistyp ActionType=Ereignistyp
DateActionBegin=Beginnzeit des Ereignis DateActionBegin=Beginnzeit des Ereignis
CloneAction=dupliziere Ereignis CloneAction=Dupliziere Ereignis
ConfirmCloneEvent=Möchten Sie dieses Ereignis <b>%s</b> wirklich duplizieren? ConfirmCloneEvent=Möchten Sie dieses Ereignis <b>%s</b> wirklich duplizieren?
RepeatEvent=wiederhole Ereignis RepeatEvent=Wiederhole Ereignis
EveryWeek=Jede Woche EveryWeek=Jede Woche
EveryMonth=Jeden Monat EveryMonth=Jeden Monat
DayOfMonth=Tag des Monat DayOfMonth=Tag des Monat

View File

@ -142,7 +142,7 @@ LastBills=%s neueste Rechnungen
LastCustomersBills=%s neueste Kundenrechnungen LastCustomersBills=%s neueste Kundenrechnungen
LastSuppliersBills=Letzte %s Lieferantenrechnungen LastSuppliersBills=Letzte %s Lieferantenrechnungen
AllBills=Alle Rechnungen AllBills=Alle Rechnungen
OtherBills=Sonstige Rechnungen OtherBills=Weitere Rechnungen
DraftBills=Rechnungsentwürfe DraftBills=Rechnungsentwürfe
CustomersDraftInvoices=Entwürfe Kundenrechnungen CustomersDraftInvoices=Entwürfe Kundenrechnungen
SuppliersDraftInvoices=Entwürfe Lieferantenrechnungen SuppliersDraftInvoices=Entwürfe Lieferantenrechnungen
@ -211,7 +211,7 @@ SendBillByMail=Rechnung per E-Mail versenden
SendReminderBillByMail=Erinnerung per E-Mail versenden SendReminderBillByMail=Erinnerung per E-Mail versenden
RelatedCommercialProposals=Verknüpfte Angebote RelatedCommercialProposals=Verknüpfte Angebote
MenuToValid=Zur Freigabe MenuToValid=Zur Freigabe
DateMaxPayment=Zahlungsziel DateMaxPayment=Zahlung fällig bis
DateEcheance=Zahlungsfrist (Limit) DateEcheance=Zahlungsfrist (Limit)
DateInvoice=Rechnungsdatum DateInvoice=Rechnungsdatum
NoInvoice=Keine Rechnung NoInvoice=Keine Rechnung
@ -227,7 +227,7 @@ RepeatableInvoice=Rechnungs-Vorlage
RepeatableInvoices=Rechnungs-Vorlagen RepeatableInvoices=Rechnungs-Vorlagen
Repeatable=Vorlage Repeatable=Vorlage
Repeatables=Vorlagen Repeatables=Vorlagen
ChangeIntoRepeatableInvoice=In Rechnungs-Vorlage umwandeln ChangeIntoRepeatableInvoice=erzeuge Rechnungsvorlage
CreateRepeatableInvoice=Rechnungs-Vorlage erstellen CreateRepeatableInvoice=Rechnungs-Vorlage erstellen
CreateFromRepeatableInvoice=Aus Rechnungs-Vorlage erzeugen CreateFromRepeatableInvoice=Aus Rechnungs-Vorlage erzeugen
CustomersInvoicesAndInvoiceLines=Kundenrechnungen und -positionen 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? ConfirmRemoveDiscount=Sind Sie sicher, dass Sie diesen Rabatt entfernen möchten?
RelatedBill=Ähnliche Rechnung RelatedBill=Ähnliche Rechnung
RelatedBills=Ähnliche Rechnungen RelatedBills=Ähnliche Rechnungen
RelatedCustomerInvoices=Ähnliche Rechnungen RelatedCustomerInvoices=Ähnliche Kundenrechnungen
RelatedSupplierInvoices=Ähnliche Rechnungen RelatedSupplierInvoices=Ähnliche Lieferantenrechnungen
LatestRelatedBill=Letzte ähnliche Rechnung LatestRelatedBill=Letzte ähnliche Rechnung
WarningBillExist=Achtung, es existiert bereits mindestens eine Rechnung WarningBillExist=Achtung, es existiert bereits mindestens eine Rechnung
MergingPDFTool=PDF zusammenfügen MergingPDFTool=PDF zusammenfügen
@ -330,8 +330,8 @@ PaymentTypeCB=Kreditkarte
PaymentTypeShortCB=Kreditkarte PaymentTypeShortCB=Kreditkarte
PaymentTypeCHQ=Scheck PaymentTypeCHQ=Scheck
PaymentTypeShortCHQ=Scheck PaymentTypeShortCHQ=Scheck
PaymentTypeTIP=Deposit PaymentTypeTIP=Anzahlung
PaymentTypeShortTIP=Deposit PaymentTypeShortTIP=Anzahlung
PaymentTypeVAD=Online-Zahlung PaymentTypeVAD=Online-Zahlung
PaymentTypeShortVAD=Online-Zahlung PaymentTypeShortVAD=Online-Zahlung
PaymentTypeTRA=Zahlung auf Rechnung PaymentTypeTRA=Zahlung auf Rechnung

View File

@ -10,10 +10,10 @@ BookmarkTargetNewWindowShort=Neues Fenster
BookmarkTargetReplaceWindowShort=Aktuelles Fenster BookmarkTargetReplaceWindowShort=Aktuelles Fenster
BookmarkTitle=Titel des Lesezeichens BookmarkTitle=Titel des Lesezeichens
UrlOrLink=Link UrlOrLink=Link
BehaviourOnClick=Verhalten bei Klick auf den Link BehaviourOnClick=Verhalten wenn ein Link geklickt wird
CreateBookmark=Lesezeichen erstellen CreateBookmark=Lesezeichen erstellen
SetHereATitleForLink=Erfasse hier einen Titel für das Lesezeichen SetHereATitleForLink=Erfasse hier einen Titel für das Lesezeichen
UseAnExternalHttpLinkOrRelativeDolibarrLink=Verwenden Sie eine absolute externe URL oder eine relative Dolibarr URL 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 BookmarksManagement=Verwalten von Lesezeichen
ListOfBookmarks=Liste der Lesezeichen ListOfBookmarks=Liste der Lesezeichen

View File

@ -2,7 +2,7 @@
BoxLastRssInfos=RSS-Information BoxLastRssInfos=RSS-Information
BoxLastProducts=Letzte %s Produkte/Leistungen BoxLastProducts=Letzte %s Produkte/Leistungen
BoxProductsAlertStock=Lagerbestands-Warnungen BoxProductsAlertStock=Lagerbestands-Warnungen
BoxLastProductsInContract=Letzte %s verkauften Leistungen in Verträgen BoxLastProductsInContract=Letzte %s Produkte/Leistungen unter Vertrag genommen
BoxLastSupplierBills=Zuletzt bearbeitete Lieferantenrechnungen BoxLastSupplierBills=Zuletzt bearbeitete Lieferantenrechnungen
BoxLastCustomerBills=Zuletzt bearbeitete Kundenrechnungen BoxLastCustomerBills=Zuletzt bearbeitete Kundenrechnungen
BoxOldestUnpaidCustomerBills=Älteste offene Kundenrechnungen BoxOldestUnpaidCustomerBills=Älteste offene Kundenrechnungen
@ -18,7 +18,7 @@ BoxLastActions=Zuletzt bearbeitete Ereignisse
BoxLastContracts=Zuletzt abgeschlossene Verträge BoxLastContracts=Zuletzt abgeschlossene Verträge
BoxLastContacts=Letzte Kontakte/Adressen BoxLastContacts=Letzte Kontakte/Adressen
BoxLastMembers=Letzte Mitglieder BoxLastMembers=Letzte Mitglieder
BoxFicheInter=Neueste Eingriffe BoxFicheInter=Letzte Einsätze
BoxCurrentAccounts=Saldo offene Konten BoxCurrentAccounts=Saldo offene Konten
BoxSalesTurnover=Umsatz BoxSalesTurnover=Umsatz
BoxTotalUnpaidCustomerBills=Summe offener Kundenrechnungen (OP Gesamt) BoxTotalUnpaidCustomerBills=Summe offener Kundenrechnungen (OP Gesamt)
@ -78,7 +78,7 @@ NoRecordedProducts=Keine erfassten Produkte/Leistungen
NoRecordedProspects=Keine erfassten Leads NoRecordedProspects=Keine erfassten Leads
NoContractedProducts=Keine Produkte/Leistungen im Auftrag NoContractedProducts=Keine Produkte/Leistungen im Auftrag
NoRecordedContracts=Keine Verträge erfasst NoRecordedContracts=Keine Verträge erfasst
NoRecordedInterventions=Keine bearbeiteten Eingriffe NoRecordedInterventions=Keine verzeichneten Einsätze
BoxLatestSupplierOrders=Neueste Lieferantenbestellungen BoxLatestSupplierOrders=Neueste Lieferantenbestellungen
BoxTitleLatestSupplierOrders=Letzte %s Lieferantenbestellungen BoxTitleLatestSupplierOrders=Letzte %s Lieferantenbestellungen
BoxTitleLatestModifiedSupplierOrders=Letzte %s bearbeiteten Lieferantenbestellungen BoxTitleLatestModifiedSupplierOrders=Letzte %s bearbeiteten Lieferantenbestellungen

View File

@ -8,10 +8,10 @@ In=In
AddIn=Einfügen in AddIn=Einfügen in
modify=Ändern modify=Ändern
Classify=Einordnen Classify=Einordnen
CategoriesArea=Kategorienbereich-Übersicht CategoriesArea=#tags/Kategorien - Übersicht
ProductsCategoriesArea=Produkte/Leistungen Kategorien-Übersicht ProductsCategoriesArea=Produkte/Leistungen Kategorien-Übersicht
SuppliersCategoriesArea=Lieferantenkategorienübersicht SuppliersCategoriesArea=Lieferantenkategorienübersicht
CustomersCategoriesArea=Kunden- Kategorien/#tags CustomersCategoriesArea=Kundenkategorien bzw. Suchwörter Übersicht
ThirdPartyCategoriesArea=Partner- Kategorien/#tags ThirdPartyCategoriesArea=Partner- Kategorien/#tags
MembersCategoriesArea=Mitglieder- Kategorien/#tags MembersCategoriesArea=Mitglieder- Kategorien/#tags
ContactsCategoriesArea=Kontaktkategorien-Übersicht ContactsCategoriesArea=Kontaktkategorien-Übersicht
@ -49,7 +49,7 @@ CompanyIsInCustomersCategories=Dieser Partner ist folgenden Kunden- Kategorien/#
CompanyIsInSuppliersCategories=Dieser Parnter ist folgenden Lieferanten- Kategorien/#tags zugewiesen CompanyIsInSuppliersCategories=Dieser Parnter ist folgenden Lieferanten- Kategorien/#tags zugewiesen
MemberIsInCategories=Dieses Mitglied ist folgenden Mitglieder- Kategorien/#tags zugewiesen MemberIsInCategories=Dieses Mitglied ist folgenden Mitglieder- Kategorien/#tags zugewiesen
ContactIsInCategories=Dieser Kontakt ist folgenden Kontakte- Kategorien/#tags verknüpft 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. SupplierHasNoCategory=Dieser Lieferant ist keiner Kategorie zugewiesen.
CompanyHasNoCategory=Dieser Partner ist in keiner Kategorie CompanyHasNoCategory=Dieser Partner ist in keiner Kategorie
MemberHasNoCategory= Dieses Mitglied ist keiner Kategorie zugewiesen. MemberHasNoCategory= Dieses Mitglied ist keiner Kategorie zugewiesen.
@ -101,7 +101,7 @@ CatProdLinks=Verbindung zwischen Produkten/Leistungen und Kategorien
CatMemberLinks=Verbindung zwischen Mitgliedern und Kategorien CatMemberLinks=Verbindung zwischen Mitgliedern und Kategorien
DeleteFromCat=Aus Kategorie entfernen DeleteFromCat=Aus Kategorie entfernen
DeletePicture=Bild löschen DeletePicture=Bild löschen
ConfirmDeletePicture=Bild wirklich löschen? ConfirmDeletePicture=Möchten Sie dieses Bild wirklich löschen?
ExtraFieldsCategories=Ergänzende Attribute ExtraFieldsCategories=Ergänzende Attribute
CategoriesSetup=Suchwörter/Kategorien Einstellungen CategoriesSetup=Suchwörter/Kategorien Einstellungen
CategorieRecursiv=Automatisch mit übergeordneter Kategorie verbinden CategorieRecursiv=Automatisch mit übergeordneter Kategorie verbinden

View File

@ -1,6 +1,6 @@
# Dolibarr language file - Source file is en_US - commercial # Dolibarr language file - Source file is en_US - commercial
Commercial=Vertrieb Commercial=Vertrieb
CommercialArea=Vertriebsübersicht CommercialArea=Vertriebs - Übersicht
CommercialCard=Vertriebskarte CommercialCard=Vertriebskarte
CustomerArea=Kundenübersicht CustomerArea=Kundenübersicht
Customer=Kunde Customer=Kunde
@ -22,7 +22,7 @@ TaskRDV=Treffen
TaskRDVWith=Treffen mit %s TaskRDVWith=Treffen mit %s
ShowTask=Zeige Aufgabe ShowTask=Zeige Aufgabe
ShowAction=Ereignisse anzeigen ShowAction=Ereignisse anzeigen
ActionsReport=Ereignis Report ActionsReport=Ereignis Journal
ThirdPartiesOfSaleRepresentative=Partner mit Vertriebsmitarbeiter ThirdPartiesOfSaleRepresentative=Partner mit Vertriebsmitarbeiter
SalesRepresentative=Vertriebsmitarbeiter SalesRepresentative=Vertriebsmitarbeiter
SalesRepresentatives=Vertreter SalesRepresentatives=Vertreter

View File

@ -24,7 +24,7 @@ SocGroup=Unternehmensgruppe
IdThirdParty=Partner ID IdThirdParty=Partner ID
IdCompany=Unternehmens ID IdCompany=Unternehmens ID
IdContact=Kontakt ID IdContact=Kontakt ID
Contacts=Kontakte Contacts=Kontakte/Adressen
ThirdPartyContacts=Partnerkontakte ThirdPartyContacts=Partnerkontakte
ThirdPartyContact=Partnerkontakt ThirdPartyContact=Partnerkontakt
StatusContactValidated=Status des Kontakts StatusContactValidated=Status des Kontakts
@ -93,7 +93,7 @@ LocalTax1IsNotUsedES= RE wird nicht verwendet
LocalTax2IsUsedES= IRPF wird verwendet LocalTax2IsUsedES= IRPF wird verwendet
LocalTax2IsNotUsedES= IRPF wird nicht verwendet LocalTax2IsNotUsedES= IRPF wird nicht verwendet
LocalTax1ES=RE LocalTax1ES=RE
LocalTax2ES=IRPF LocalTax2ES=EKSt.
TypeLocaltax1ES=RE Typ TypeLocaltax1ES=RE Typ
TypeLocaltax2ES=EKSt. Typ TypeLocaltax2ES=EKSt. Typ
TypeES=Typ TypeES=Typ
@ -109,7 +109,7 @@ ProfId2Short=Prof. ID 2
ProfId3Short=Prof. ID 3 ProfId3Short=Prof. ID 3
ProfId4Short=Prof. ID 4 ProfId4Short=Prof. ID 4
ProfId5Short=Prof. ID 5 ProfId5Short=Prof. ID 5
ProfId6Short=Prof. ID 6 ProfId6Short=-
ProfId1=Professional ID 1 ProfId1=Professional ID 1
ProfId2=Professional ID 2 ProfId2=Professional ID 2
ProfId3=Professional ID 3 ProfId3=Professional ID 3
@ -379,7 +379,7 @@ PriceLevel=Preisstufe
DeliveriesAddress=Lieferadressen DeliveriesAddress=Lieferadressen
DeliveryAddress=Lieferadresse DeliveryAddress=Lieferadresse
DeliveryAddressLabel=Lieferadressen-Label DeliveryAddressLabel=Lieferadressen-Label
DeleteDeliveryAddress=Lieferadresse löschen DeleteDeliveryAddress=Löschen einer Lieferadresse
ConfirmDeleteDeliveryAddress=Möchten Sie diese Lieferadresse wirklich löschen? ConfirmDeleteDeliveryAddress=Möchten Sie diese Lieferadresse wirklich löschen?
NewDeliveryAddress=Neue Lieferadresse NewDeliveryAddress=Neue Lieferadresse
AddDeliveryAddress=Adresse erstellen AddDeliveryAddress=Adresse erstellen

View File

@ -63,7 +63,7 @@ MenuSpecialExpenses=Sonstige Ausgaben
MenuTaxAndDividends=Steuern und Dividenden MenuTaxAndDividends=Steuern und Dividenden
MenuSalaries=Löhne MenuSalaries=Löhne
MenuSocialContributions=Sozialabgaben/Steuern MenuSocialContributions=Sozialabgaben/Steuern
MenuNewSocialContribution=New social/fiscal tax MenuNewSocialContribution=Neue Abgabe/Steuer
NewSocialContribution=Neue Sozialabgabe / Steuersatz NewSocialContribution=Neue Sozialabgabe / Steuersatz
ContributionsToPay=Sozialabgaben/Unternehmenssteuern zu bezahlen ContributionsToPay=Sozialabgaben/Unternehmenssteuern zu bezahlen
AccountancyTreasuryArea=Rechnungswesen/Vermögensverwaltung AccountancyTreasuryArea=Rechnungswesen/Vermögensverwaltung

View File

@ -21,8 +21,8 @@ ServicesLegend=Services Legende
Contracts=Verträge Contracts=Verträge
ContractsAndLine=Verträge und Zeilen von Verträgen ContractsAndLine=Verträge und Zeilen von Verträgen
Contract=Vertrag Contract=Vertrag
ContractLine=Contract line ContractLine=Vertragszeile
Closing=Closing Closing=Schließen
NoContracts=Keine Verträge NoContracts=Keine Verträge
MenuServices=Leistungen MenuServices=Leistungen
MenuInactiveServices=Inaktive Leistungen MenuInactiveServices=Inaktive Leistungen

View File

@ -6,8 +6,8 @@ Donor=Spender
Donors=Spender Donors=Spender
AddDonation=Spende erstellen AddDonation=Spende erstellen
NewDonation=Neue Spende NewDonation=Neue Spende
DeleteADonation=Delete a donation DeleteADonation=Ein Spende löschen
ConfirmDeleteADonation=Are you sure you want to delete this donation ? ConfirmDeleteADonation=Sind Sie sicher, dass diese Spende löschen wollen?
ShowDonation=Spenden anzeigen ShowDonation=Spenden anzeigen
DonationPromise=Zugesagte Spende DonationPromise=Zugesagte Spende
PromisesNotValid=Ungültige Zusage PromisesNotValid=Ungültige Zusage
@ -16,15 +16,15 @@ DonationsPaid=Bezahlte Spenden
DonationsReceived=Erhaltene Spenden DonationsReceived=Erhaltene Spenden
PublicDonation=Öffentliche Spenden PublicDonation=Öffentliche Spenden
DonationsNumber=Spendenanzahl DonationsNumber=Spendenanzahl
DonationsArea=Spendenübersicht DonationsArea=Spenden - Übersicht
DonationStatusPromiseNotValidated=Zugesagt (nicht freigegeben) DonationStatusPromiseNotValidated=Zugesagt (nicht freigegeben)
DonationStatusPromiseValidated=Zugesagt (freigegeben) DonationStatusPromiseValidated=Zugesagt (freigegeben)
DonationStatusPaid=Spende bezahlt DonationStatusPaid=Spende bezahlt
DonationStatusPromiseNotValidatedShort=Entwurf DonationStatusPromiseNotValidatedShort=Entwurf
DonationStatusPromiseValidatedShort=Freigegeben DonationStatusPromiseValidatedShort=Freigegeben
DonationStatusPaidShort=Bezahlt DonationStatusPaidShort=Bezahlt
DonationTitle=Donation receipt DonationTitle=Spendenbescheinigung
DonationDatePayment=Payment date DonationDatePayment=Zahlungsdatum
ValidPromess=Zusage freigeben ValidPromess=Zusage freigeben
DonationReceipt=Spendenbescheinigung DonationReceipt=Spendenbescheinigung
BuildDonationReceipt=Erzeuge Spendenbeleg BuildDonationReceipt=Erzeuge Spendenbeleg
@ -35,9 +35,9 @@ DonationRecipient=Spenden Empfänger
ThankYou=Danke ThankYou=Danke
IConfirmDonationReception=Der Empfänger bestätigt den Erhalt einer Spende in Höhe von IConfirmDonationReception=Der Empfänger bestätigt den Erhalt einer Spende in Höhe von
MinimumAmount=Mindestbetrag ist %s 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 FrenchOptions=Optionen für Frankreich
DONATION_ART200=Show article 200 from CGI if you are concerned DONATION_ART200=Zeige Artikel 200 des CGI, falls Sie betroffen sind
DONATION_ART238=Show article 238 from CGI if you are concerned DONATION_ART238=Zeige Artikel 238 des CGI, falls Sie betroffen sind
DONATION_ART885=Show article 885 from CGI if you are concerned DONATION_ART885=Zeige Artikel 885 des CGI, falls Sie betroffen sind
DonationPayment=Donation payment DonationPayment=Spendenzahlung

View File

@ -47,7 +47,7 @@ ECMDocsByUsers=Mit Benutzern verknüpfte Dokumente
ECMDocsByInterventions=Mit Eingriffen verknüpfte Dokumente ECMDocsByInterventions=Mit Eingriffen verknüpfte Dokumente
ECMNoDirectoryYet=Noch kein Ordner erstellt ECMNoDirectoryYet=Noch kein Ordner erstellt
ShowECMSection=Ordner anzeigen ShowECMSection=Ordner anzeigen
DeleteSection=Ordner löschen DeleteSection=Verzeichnis löschen
ConfirmDeleteSection=Möchten Sie das Verzeichnis <b>%s</b> wirklich löschen? ConfirmDeleteSection=Möchten Sie das Verzeichnis <b>%s</b> wirklich löschen?
ECMDirectoryForFiles=Relatives Verzeichnis für Dateien ECMDirectoryForFiles=Relatives Verzeichnis für Dateien
CannotRemoveDirectoryContainsFiles=Entfernen des Ordners nicht möglich, da dieser noch Dateien enthält CannotRemoveDirectoryContainsFiles=Entfernen des Ordners nicht möglich, da dieser noch Dateien enthält

View File

@ -79,7 +79,7 @@ ErrorModuleRequireJavascript=Diese Funktion erfordert aktiviertes JavaScript. Ak
ErrorPasswordsMustMatch=Die eingegebenen Passwörter müssen identisch sein. 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. 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>) 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) 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 ErrorsOnXLines=Fehler in <b>%s</b> Quellzeilen
ErrorFileIsInfectedWithAVirus=Der Virenschutz konnte diese Datei nicht freigeben (eventuell ist diese mit einem Virus infiziert) ErrorFileIsInfectedWithAVirus=Der Virenschutz konnte diese Datei nicht freigeben (eventuell ist diese mit einem Virus infiziert)

View File

@ -48,7 +48,7 @@ NoImportableData=Keine importfähigen Daten (kein Modul mit Erlaubnis für Daten
FileSuccessfullyBuilt=Exportdatei erfolgreich erzeugt FileSuccessfullyBuilt=Exportdatei erfolgreich erzeugt
SQLUsedForExport=SQL-Abfrage für Erstellung der Exportdatei genutzt SQLUsedForExport=SQL-Abfrage für Erstellung der Exportdatei genutzt
LineId=ID der Zeile LineId=ID der Zeile
LineLabel=Label of line LineLabel=Zeilenbeschriftung
LineDescription=Beschreibung der Zeile LineDescription=Beschreibung der Zeile
LineUnitPrice=Stückpreis der Zeile LineUnitPrice=Stückpreis der Zeile
LineVATRate=Steuersatz der Zeile LineVATRate=Steuersatz der Zeile
@ -56,7 +56,7 @@ LineQty=Menge der Zeile
LineTotalHT=Nettobetrag der Zeile LineTotalHT=Nettobetrag der Zeile
LineTotalTTC=Bruttobetrag der Zeile LineTotalTTC=Bruttobetrag der Zeile
LineTotalVAT=Steuerbetrag 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 FileWithDataToImport=Datei mit zu importierenden Daten
FileToImport=Quelldatei für Import FileToImport=Quelldatei für Import
FileMustHaveOneOfFollowingFormat=Die Importdatei muss in einem der folgenden Formate vorliegen FileMustHaveOneOfFollowingFormat=Die Importdatei muss in einem der folgenden Formate vorliegen

View File

@ -1,29 +1,29 @@
# Dolibarr language file - Source file is en_US - interventions # Dolibarr language file - Source file is en_US - interventions
Intervention=Eingriff Intervention=Arbeitseinsatz
Interventions=Eingriffe Interventions=Arbeitseinsätze
InterventionCard=Eingriffskarte InterventionCard=Arbeitszeitdokumentation
NewIntervention=Neuer Eingriff NewIntervention=Neuer Einsatz
AddIntervention=Eingriff erstellen AddIntervention=Einsatz erstellen
ListOfInterventions=Liste der Eingriffe ListOfInterventions=Liste der Einsätze
EditIntervention=Eingriff bearbeiten EditIntervention=Eingriff bearbeiten
ActionsOnFicheInter=Aktionen zum Eingriff ActionsOnFicheInter=Aktionen zum Eingriff
LastInterventions=Letzte %s Eingriffe LastInterventions=Letzte %s Einsätze
AllInterventions=Alle Eingriffe AllInterventions=Alle Einsätze
CreateDraftIntervention=Eingriffsentwurf CreateDraftIntervention=Eingriffsentwurf
CustomerDoesNotHavePrefix=Kunde hat kein Präfix CustomerDoesNotHavePrefix=Kunde hat kein Präfix
InterventionContact=Kontakt für Eingriffe InterventionContact=Kontakt für Eingriffe
DeleteIntervention=Eingriff löschen DeleteIntervention=Einsatz löschen
ValidateIntervention=Eingriff freigeben ValidateIntervention=Einsatz freigeben
ModifyIntervention=Geänderte Eingriff ModifyIntervention=Geänderte Eingriff
DeleteInterventionLine=Eingriffszeile löschen DeleteInterventionLine=Eingriffszeile löschen
ConfirmDeleteIntervention=Möchten Sie diesen Eingriff wirklich löschen? ConfirmDeleteIntervention=Möchten Sie diese Arbeitsleistung wirklich löschen?
ConfirmValidateIntervention=Möchten Sie diesen Eingriff wirklich freigeben? ConfirmValidateIntervention=Möchten Sie diese Arbeitsleistung mit der Referenz <b>%s</b> wirklich freigeben?
ConfirmModifyIntervention=Sind Sie sicher, dass Sie ändern möchten diese Intervention? ConfirmModifyIntervention=Möchten sie diese Arbeitsleistung wirklich verändern?
ConfirmDeleteInterventionLine=Möchten Sie diese Eingriffszeile wirklich löschen? ConfirmDeleteInterventionLine=Möchten Sie diese Arbeitsleistung wirklich löschen?
NameAndSignatureOfInternalContact=Name und Unterschrift des Mitarbeiter: NameAndSignatureOfInternalContact=Name und Unterschrift des Mitarbeiter:
NameAndSignatureOfExternalContact=Name und Unterschrift des Kunden: NameAndSignatureOfExternalContact=Name und Unterschrift des Kunden:
DocumentModelStandard=Standard-Dokumentvorlage für Eingriffe DocumentModelStandard=Standard-Dokumentvorlage für Arbeitseinsätze
InterventionCardsAndInterventionLines=Eingriffe und Eingriffszeilen InterventionCardsAndInterventionLines=Einsatzkarte und Einsatzzeilen
InterventionClassifyBilled=Eingeordnet "Angekündigt" InterventionClassifyBilled=Eingeordnet "Angekündigt"
InterventionClassifyUnBilled=Als "nicht verrechnet" markieren InterventionClassifyUnBilled=Als "nicht verrechnet" markieren
StatusInterInvoiced=Angekündigt StatusInterInvoiced=Angekündigt
@ -38,7 +38,7 @@ InterventionClassifiedBilledInDolibarr=Eingriff %s als verrechnet eingestuft
InterventionClassifiedUnbilledInDolibarr=Eingriff %s als nicht verrechnet eingestuft InterventionClassifiedUnbilledInDolibarr=Eingriff %s als nicht verrechnet eingestuft
InterventionSentByEMail=Eingriff %s per E-Mail versandt InterventionSentByEMail=Eingriff %s per E-Mail versandt
InterventionDeletedInDolibarr=Eingriff %s gelöscht InterventionDeletedInDolibarr=Eingriff %s gelöscht
SearchAnIntervention=Eingriff suchen SearchAnIntervention=Arbeitseinsatz suchen
##### Types de contacts ##### ##### Types de contacts #####
TypeContact_fichinter_internal_INTERREPFOLL=Eingriffsnachverfolgung durch Vertreter TypeContact_fichinter_internal_INTERREPFOLL=Eingriffsnachverfolgung durch Vertreter
TypeContact_fichinter_internal_INTERVENING=Eingriff läuft TypeContact_fichinter_internal_INTERVENING=Eingriff läuft
@ -46,7 +46,7 @@ TypeContact_fichinter_external_BILLING=Rechnungskontakt Kunde
TypeContact_fichinter_external_CUSTOMER=Kundenkontakt-Nachverfolgung TypeContact_fichinter_external_CUSTOMER=Kundenkontakt-Nachverfolgung
# Modele numérotation # Modele numérotation
ArcticNumRefModelDesc1=Generisches Nummernmodell 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 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. 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 PrintProductsOnFichinter=Drucke Produkte auf Eingriffskarte

View File

@ -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 LinkedFiles=Verknüpfte Dateien und Dokumente
NoLinkFound=Keine eingetragenen Verknüpfungen NoLinkFound=Keine verknüpften Links
LinkComplete=Die Datei wurde erfolgreich verknüpft LinkComplete=Die Datei wurde erfolgreich verlinkt
ErrorFileNotLinked=Die Datei konnte nicht Verknüpft werden ErrorFileNotLinked=Die Datei konnte nicht verlinkt werden
LinkRemoved=Die Verknüpfung %s wurde entfernt LinkRemoved=Der Link %s wurde entfernt
ErrorFailedToDeleteLink= Fehler beim Löschen des Links '<b>%s</b>' ErrorFailedToDeleteLink= Fehler beim entfernen des Links '<b>%s</b>'
ErrorFailedToUpdateLink= Fehler beim Aktualisieren der Verknüpfung '<b>%s</b>' ErrorFailedToUpdateLink= Fehler beim aktualisieren des Link '<b>%s</b>'

View File

@ -25,7 +25,7 @@ FormatDateHourTextShort=%d %b %Y %H:%M
FormatDateHourText=%d %B %Y %H:%M FormatDateHourText=%d %B %Y %H:%M
DatabaseConnection=Datenbankverbindung DatabaseConnection=Datenbankverbindung
NoTranslation=Keine Übersetzung NoTranslation=Keine Übersetzung
NoRecordFound=Kein Eintrag gefunden NoRecordFound=Keinen Eintrag gefunden
NoError=kein Fehler NoError=kein Fehler
Error=Fehler Error=Fehler
ErrorFieldRequired=Feld '%s' ist erforderlich 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 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. 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 ErrorInternalErrorDetected=Interner Fehler entdeckt
ErrorNoRequestRan=Abfrage ist nicht erfolgreich gelaufen ErrorNoRequestRan=Es wurde keine Abfrage ausgeführt
ErrorWrongHostParameter=Ungültige Host-Parameter ErrorWrongHostParameter=Ungültige Host-Parameter
ErrorYourCountryIsNotDefined=Ihr Land ist nicht definiert. Bitte vervollständigen Sie das Profil unter Start - Einstellungen - Firma/Stiftung 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. 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. ErrorCantLoadUserFromDolibarrDatabase=Kann Benutzer <b>%s</b> nicht aus der Systemdatenbank laden.
ErrorNoVATRateDefinedForSellerCountry=Fehler, keine MwSt.-Sätze für Land '%s' definiert. ErrorNoVATRateDefinedForSellerCountry=Fehler, keine MwSt.-Sätze für Land '%s' definiert.
ErrorNoSocialContributionForSellerCountry=Fehler, keine Definition für Sozialabgaben/Steuerwerte definiert in Firma '%s'. 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 SetDate=Datum
SelectDate=Wählen Sie ein Datum SelectDate=Wählen Sie ein Datum
SeeAlso=Siehe auch %s SeeAlso=Siehe auch %s
@ -108,7 +108,7 @@ Yes=Ja
no=nein no=nein
No=Nein No=Nein
All=Alle All=Alle
Alls=All Alls=Alle
Home=Start Home=Start
Help=Hilfe Help=Hilfe
OnlineHelp=Online-Hilfe OnlineHelp=Online-Hilfe
@ -152,14 +152,14 @@ ToClone=Duplizieren
ConfirmClone=Wählen Sie die zu duplizierenden Daten: ConfirmClone=Wählen Sie die zu duplizierenden Daten:
NoCloneOptionsSpecified=Keine Duplikationsoptionen ausgewählt. NoCloneOptionsSpecified=Keine Duplikationsoptionen ausgewählt.
Of=von Of=von
Go=Los Go=Weiter
Run=bearbeiten Run=bearbeiten
CopyOf=Duplikat von CopyOf=Duplikat von
Show=Zeige Show=Zeige
ShowCardHere=Zeige Karte ShowCardHere=Zeige Karte
Search=Suchen Search=Suchen
SearchOf=Suche nach SearchOf=Suche nach
Valid=Gültig Valid=Freigabe
Approve=Genehmigen Approve=Genehmigen
Disapprove=Abgelehnt Disapprove=Abgelehnt
ReOpen=Wiedereröffnen ReOpen=Wiedereröffnen
@ -343,7 +343,7 @@ TTC=Brutto
VAT=MwSt. VAT=MwSt.
VATs=Mehrwertsteuern VATs=Mehrwertsteuern
LT1ES=RE LT1ES=RE
LT2ES=IRPF LT2ES=EKSt.
VATRate=Steuersatz VATRate=Steuersatz
Average=Durchschnitt Average=Durchschnitt
Sum=Summe Sum=Summe
@ -422,7 +422,7 @@ ReCalculate=Neuberechnung
ResultOk=Erfolg ResultOk=Erfolg
ResultKo=Fehlschlag ResultKo=Fehlschlag
Reporting=Berichterstattung Reporting=Berichterstattung
Reportings=Berichterstattungen Reportings=Berichte
Draft=Entwurf Draft=Entwurf
Drafts=Entwürfe Drafts=Entwürfe
Validated=Freigegeben Validated=Freigegeben
@ -710,7 +710,7 @@ GoIntoSetupToChangeLogo=Gehen Sie zu Start - Einstellungen - Firma/Stiftung um d
Deny=ablehnen Deny=ablehnen
Denied=abgelehnt Denied=abgelehnt
ListOfTemplates=Liste der Vorlagen ListOfTemplates=Liste der Vorlagen
Gender=Gender Gender=Geschlecht
Genderman=Mann Genderman=Mann
Genderwoman=Frau Genderwoman=Frau
ViewList=Listenansicht ViewList=Listenansicht
@ -747,4 +747,4 @@ ShortFriday=Fr
ShortSaturday=Sa ShortSaturday=Sa
ShortSunday=So ShortSunday=So
SelectMailModel=Wähle E-Mail-Vorlage SelectMailModel=Wähle E-Mail-Vorlage
SetRef=Set ref SetRef=Set Ref

View File

@ -4,7 +4,7 @@ Margin=Gewinnspanne
Margins=Gewinnspannen Margins=Gewinnspannen
TotalMargin=Gesamt-Spanne TotalMargin=Gesamt-Spanne
MarginOnProducts=Gewinnspanne / Produkte MarginOnProducts=Gewinnspanne / Produkte
MarginOnServices=Gewinnspanne / Services MarginOnServices=Gewinnspanne / Leistungen
MarginRate=Gewinnspannen-Rate MarginRate=Gewinnspannen-Rate
MarkRate=Gewinnspannen-Rate MarkRate=Gewinnspannen-Rate
DisplayMarginRates=Zeige Gewinnspannen-Raten an DisplayMarginRates=Zeige Gewinnspannen-Raten an
@ -18,7 +18,7 @@ CustomerMargins=Kunden-Gewinnspannen
SalesRepresentativeMargins=Vertreter-Gewinnspannen SalesRepresentativeMargins=Vertreter-Gewinnspannen
UserMargins=Spannen nach Benutzer UserMargins=Spannen nach Benutzer
ProductService=Produkt oder Service ProductService=Produkt oder Service
AllProducts=Alle Produkte und Services AllProducts=Alle Produkte und Leistungen
ChooseProduct/Service=Produkt oder Service wählen ChooseProduct/Service=Produkt oder Service wählen
StartDate=Vertragsbeginn StartDate=Vertragsbeginn
EndDate=Vertragsende EndDate=Vertragsende

View File

@ -3,8 +3,8 @@ Module64000Name=Direkt drucken
Module64000Desc=Direkt-Druck-System aktivieren Module64000Desc=Direkt-Druck-System aktivieren
PrintingSetup=Direkt-Druck-System einrichten 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. 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 MenuDirectPrinting=Direkt drucken
DirectPrint=Direct print DirectPrint=Direkt drucken
ModuleDriverSetup=Modul Treiber einrichten ModuleDriverSetup=Modul Treiber einrichten
PrintingDriverDesc=Konfigurationsvariablen für den Druck-Treiber. PrintingDriverDesc=Konfigurationsvariablen für den Druck-Treiber.
ListDrivers=Treiberliste ListDrivers=Treiberliste
@ -12,11 +12,11 @@ PrintTestDesc=Druckerliste
FileWasSentToPrinter=Datei %s wurde an den Drucker gesendet FileWasSentToPrinter=Datei %s wurde an den Drucker gesendet
NoActivePrintingModuleFound=Kein aktives Modul, um Druckvorgang auszuführen NoActivePrintingModuleFound=Kein aktives Modul, um Druckvorgang auszuführen
PleaseSelectaDriverfromList=Bitte wählen Sie einen Treiber von der Liste PleaseSelectaDriverfromList=Bitte wählen Sie einen Treiber von der Liste
PleaseConfigureDriverfromList=Please configure the selected driver from list. PleaseConfigureDriverfromList=Bitte konfiguriere den ausgewählten Treiber aus der Liste
SetupDriver=Treibereinstellungen SetupDriver=Treiber Einstellungen
TestDriver=Test TestDriver=Test
TargetedPrinter=Zieldrucker TargetedPrinter=Zieldrucker
UserConf=Je Nutzer einrichten UserConf=Pro Benutzer einrichten
PRINTGCP=Google Cloud Print PRINTGCP=Google Cloud Print
PrintGCPDesc=Dieser Treiber erlaubt das direkte senden zu ein Drucker via 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. PrintingDriverDescprintgcp=Konfigurationsvariablen für den Druck Fahrer Google Cloud Print.
@ -53,7 +53,7 @@ PRINTIPP_USER=Anmeldung
PRINTIPP_PASSWORD=Passwort PRINTIPP_PASSWORD=Passwort
NoPrinterFound=Keine Drucker gefunden (CUPS-Konfiguration prüfen) NoPrinterFound=Keine Drucker gefunden (CUPS-Konfiguration prüfen)
NoDefaultPrinterDefined=Kein Standarddrucker defininert NoDefaultPrinterDefined=Kein Standarddrucker defininert
DefaultPrinter=Standarddrucker DefaultPrinter=Standard-Drucker
Printer=Drucker Printer=Drucker
CupsServer=CUPS-Server CupsServer=CUPS-Server
IPP_Uri=Drucker Uri IPP_Uri=Drucker Uri
@ -61,7 +61,7 @@ IPP_Name=Druckername
IPP_State=Druckerstatus IPP_State=Druckerstatus
IPP_State_reason=Status Grund IPP_State_reason=Status Grund
IPP_State_reason1=Status Grund 1 IPP_State_reason1=Status Grund 1
IPP_BW=schwarz und weiß IPP_BW=schwarz / weiß
IPP_Color=Farbe IPP_Color=Farbe
IPP_Device=IPP Gerät IPP_Device=IPP Gerät
IPP_Media=Druckermedium IPP_Media=Druckermedium

View File

@ -241,7 +241,7 @@ ProductBuilded=Produktion fertiggestellt
ProductsMultiPrice=Produkt Multi-Preis ProductsMultiPrice=Produkt Multi-Preis
ProductsOrServiceMultiPrice=Kundenpreise (von Produkten oder Leistungen, Multi-Preise) ProductsOrServiceMultiPrice=Kundenpreise (von Produkten oder Leistungen, Multi-Preise)
ProductSellByQuarterHT=Umsatz Produkte pro Quartal ProductSellByQuarterHT=Umsatz Produkte pro Quartal
ServiceSellByQuarterHT=Umsatz Services pro Quartal ServiceSellByQuarterHT=Umsatz von Leistungen pro Quartal
Quarter1=1. Quartal Quarter1=1. Quartal
Quarter2=2. Quartal Quarter2=2. Quartal
Quarter3=3. Quartal Quarter3=3. Quartal

View File

@ -45,7 +45,7 @@ TaskTimeUser=Benutzer
TaskTimeNote=Hinweis TaskTimeNote=Hinweis
TaskTimeDate=Datum TaskTimeDate=Datum
TasksOnOpenedProject=Aufgaben in offenen Projekten TasksOnOpenedProject=Aufgaben in offenen Projekten
WorkloadNotDefined=Workload nicht definiert WorkloadNotDefined=Arbeitsaufwand nicht definiert
NewTimeSpent=Neuer Zeitaufwand NewTimeSpent=Neuer Zeitaufwand
MyTimeSpent=Mein Zeitaufwand MyTimeSpent=Mein Zeitaufwand
MyTasks=Meine Aufgaben 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 ListActionsAssociatedProject=Liste Ereignisse, die mit diesem Projekt verknüpft sind
ListTaskTimeUserProject=Liste mit Zeitaufwand der Projektaufgaben ListTaskTimeUserProject=Liste mit Zeitaufwand der Projektaufgaben
TaskTimeUserProject=Zeitaufwand für Aufgaben des Projektes TaskTimeUserProject=Zeitaufwand für Aufgaben des Projektes
ActivityOnProjectToday=Heutige Projektaktivität ActivityOnProjectToday=Projektaktivitäten von heute
ActivityOnProjectYesterday=Projektaktivitäten von gestern ActivityOnProjectYesterday=Projektaktivitäten von gestern
ActivityOnProjectThisWeek=Projektaktivitäten dieser Woche ActivityOnProjectThisWeek=Projektaktivitäten dieser Woche
ActivityOnProjectThisMonth=Projektaktivitäten dieses Monats ActivityOnProjectThisMonth=Projektaktivitäten dieses Monats
@ -143,11 +143,11 @@ SelectElement=Element wählen
AddElement=Mit Element verknüpfen AddElement=Mit Element verknüpfen
UnlinkElement=Verknüpfung zu Element aufheben UnlinkElement=Verknüpfung zu Element aufheben
# Documents models # Documents models
DocumentModelBeluga=Project template for linked objects overview DocumentModelBeluga=Bericht Vorlage für verknüpfte Objekte-Übersicht
DocumentModelBaleine=Project report template for tasks DocumentModelBaleine=Projektberichtsvorlage für Aufgaben
PlannedWorkload=Geplante Auslastung PlannedWorkload=Geplante Auslastung
PlannedWorkloadShort=Workload PlannedWorkloadShort=Arbeitsaufwand
WorkloadOccupation=Workloadzuordnung WorkloadOccupation=Zugeordneter Arbeitsaufwand
ProjectReferers=Verknüpfte Objekte ProjectReferers=Verknüpfte Objekte
SearchAProject=Projekt suchen SearchAProject=Projekt suchen
SearchATask=Aufgabe suchen SearchATask=Aufgabe suchen

View File

@ -42,7 +42,7 @@ PropalStatusNotSigned=Nicht unterzeichnet (geschlossen)
PropalStatusBilled=Verrechnet PropalStatusBilled=Verrechnet
PropalStatusDraftShort=Entwurf PropalStatusDraftShort=Entwurf
PropalStatusValidatedShort=Freigegeben PropalStatusValidatedShort=Freigegeben
PropalStatusOpenedShort=offen PropalStatusOpenedShort=Offen
PropalStatusClosedShort=Geschlossen PropalStatusClosedShort=Geschlossen
PropalStatusSignedShort=Unterzeichnet PropalStatusSignedShort=Unterzeichnet
PropalStatusNotSignedShort=Nicht unterzeichnet PropalStatusNotSignedShort=Nicht unterzeichnet

View File

@ -24,7 +24,7 @@ ErrorWarehouseLabelRequired=Warenlager-Label erforderlich
CorrectStock=Lagerbestand anpassen CorrectStock=Lagerbestand anpassen
ListOfWarehouses=Liste der Warenlager ListOfWarehouses=Liste der Warenlager
ListOfStockMovements=Liste der Lagerbewegungen ListOfStockMovements=Liste der Lagerbewegungen
StocksArea=Lagerbereich StocksArea=Warenlager - Übersicht
Location=Standort Location=Standort
LocationSummary=Kurzbezeichnung Standort LocationSummary=Kurzbezeichnung Standort
NumberOfDifferentProducts=Anzahl unterschiedlicher Produkte NumberOfDifferentProducts=Anzahl unterschiedlicher Produkte

View File

@ -1,5 +1,5 @@
# Dolibarr language file - Source file is en_US - users # Dolibarr language file - Source file is en_US - users
HRMArea=PM - Personalmanagment - Übersicht HRMArea=Personalmanagment - Übersicht
UserCard=Benutzerkarte UserCard=Benutzerkarte
ContactCard=Kontaktkarte ContactCard=Kontaktkarte
GroupCard=Firmenverbundkarte GroupCard=Firmenverbundkarte

View File

@ -1,7 +1,7 @@
# Dolibarr language file - en_US - Accounting Expert # Dolibarr language file - en_US - Accounting Expert
CHARSET=UTF-8 CHARSET=UTF-8
ACCOUNTING_EXPORT_SEPARATORCSV=Column separator for export file ACCOUNTING_EXPORT_SEPARATORCSV=Διαχωριστής στηλών για το αρχείο που θα εξαχθεί
ACCOUNTING_EXPORT_DATE=Date format for export file ACCOUNTING_EXPORT_DATE=Μορφή ημερομηνίας για το αρχείο που θα εξαγθεί
ACCOUNTING_EXPORT_PIECE=Export the number of piece ? ACCOUNTING_EXPORT_PIECE=Export the number of piece ?
ACCOUNTING_EXPORT_GLOBAL_ACCOUNT=Export with global account ? ACCOUNTING_EXPORT_GLOBAL_ACCOUNT=Export with global account ?
ACCOUNTING_EXPORT_LABEL=Export the label ? ACCOUNTING_EXPORT_LABEL=Export the label ?

View File

@ -948,7 +948,7 @@ DoNotSuggestPaymentMode=Χωρίς πρόταση πληρωμής
NoActiveBankAccountDefined=Δεν έχει οριστεί ενεργός λογαριασμός τράπεζας NoActiveBankAccountDefined=Δεν έχει οριστεί ενεργός λογαριασμός τράπεζας
OwnerOfBankAccount=Ιδιοκτήτης του λογαριασμού τράπεζας %s OwnerOfBankAccount=Ιδιοκτήτης του λογαριασμού τράπεζας %s
BankModuleNotActive=Bank accounts module not enabled BankModuleNotActive=Bank accounts module not enabled
ShowBugTrackLink=Show link "<strong>%s</strong>" ShowBugTrackLink=Εμφάνιση συνδέσμου link <strong>%s</strong>
ShowWorkBoard=Show "workbench" on homepage ShowWorkBoard=Show "workbench" on homepage
Alerts=Συναγερμοί Alerts=Συναγερμοί
Delays=Καθυστερήσεις Delays=Καθυστερήσεις

View File

@ -96,11 +96,11 @@ AddEvent=Δημιουργία συμβάντος
MyAvailability=Η διαθεσιμότητα μου MyAvailability=Η διαθεσιμότητα μου
ActionType=Τύπος συμβάντος ActionType=Τύπος συμβάντος
DateActionBegin=Έναρξη ημερομηνίας του συμβάντος DateActionBegin=Έναρξη ημερομηνίας του συμβάντος
CloneAction=Clone event CloneAction=Κλωνοποίηση συμβάντος
ConfirmCloneEvent=Are you sure you want to clone the event <b>%s</b> ? ConfirmCloneEvent=Θέλεις σίγουρα να κλωνοποιήσεις το συμβάν<b>%τα</b>;
RepeatEvent=Repeat event RepeatEvent=Επανάληψη συμβάντος
EveryWeek=Every week EveryWeek=Εβδομαδιαίο
EveryMonth=Every month EveryMonth=Μηνιαίο
DayOfMonth=Day of month DayOfMonth=Ημέρα του Μήνα
DayOfWeek=Day of week DayOfWeek=Ημέρα της εβδομάδας
DateStartPlusOne=Date start + 1 hour DateStartPlusOne=Έναρξη ημέρας + 1 ώρα

View File

@ -94,12 +94,12 @@ Conciliate=Πραγματοποίηση Συναλλαγής
Conciliation=Πραγματοποίηση Συναλλαγής Conciliation=Πραγματοποίηση Συναλλαγής
ConciliationForAccount=Πραγματοποίηση Συναλλαγών του Λογαριασμού ConciliationForAccount=Πραγματοποίηση Συναλλαγών του Λογαριασμού
IncludeClosedAccount=Συμπερίληψη Κλειστών Λογαριασμών IncludeClosedAccount=Συμπερίληψη Κλειστών Λογαριασμών
OnlyOpenedAccount=Only open accounts OnlyOpenedAccount=Μόνο ανοικτούς λογαριασμούς
AccountToCredit=Πίστωση στον Λογαριασμό AccountToCredit=Πίστωση στον Λογαριασμό
AccountToDebit=Χρέωση στον Λογαριασμό AccountToDebit=Χρέωση στον Λογαριασμό
DisableConciliation=Απενεργοποίηση της ιδιότητας συμφωνία από αυτό τον λογαριασμό DisableConciliation=Απενεργοποίηση της ιδιότητας συμφωνία από αυτό τον λογαριασμό
ConciliationDisabled=Η ιδιότητα συμφωνία απενεργοποιήθηκε. ConciliationDisabled=Η ιδιότητα συμφωνία απενεργοποιήθηκε.
StatusAccountOpened=Open StatusAccountOpened=Ανοιχτός
StatusAccountClosed=Κλειστός StatusAccountClosed=Κλειστός
AccountIdShort=Αριθμός AccountIdShort=Αριθμός
EditBankRecord=Επεξεργασία Εγγραφής EditBankRecord=Επεξεργασία Εγγραφής
@ -113,7 +113,7 @@ CustomerInvoicePayment=Πληρωμή Πελάτη
CustomerInvoicePaymentBack=Επιστροφή πληρωμής Πελάτη CustomerInvoicePaymentBack=Επιστροφή πληρωμής Πελάτη
SupplierInvoicePayment=Πληρωμή Προμηθευτή SupplierInvoicePayment=Πληρωμή Προμηθευτή
WithdrawalPayment=Ανάκληση πληρωμής WithdrawalPayment=Ανάκληση πληρωμής
SocialContributionPayment=Social/fiscal tax payment SocialContributionPayment=Σίγουρα θέλεις να μαρκάρεις αυτότο αξιόγραφο σαν αποριφθέν;
FinancialAccountJournal=Ημερολόγιο λογιστικού λογαριασμού FinancialAccountJournal=Ημερολόγιο λογιστικού λογαριασμού
BankTransfer=Τραπεζική Μεταφορά BankTransfer=Τραπεζική Μεταφορά
BankTransfers=Τραπεζικές Μεταφορές BankTransfers=Τραπεζικές Μεταφορές
@ -165,8 +165,8 @@ DeleteARib=Διαγραφή BAN εγγραφή
ConfirmDeleteRib=Είστε σίγουροι ότι θέλετε να διαγράψετε αυτή την εγγραφή BAN; ConfirmDeleteRib=Είστε σίγουροι ότι θέλετε να διαγράψετε αυτή την εγγραφή BAN;
StartDate=Ημερομηνία έναρξης StartDate=Ημερομηνία έναρξης
EndDate=Ημερομηνία λήξης EndDate=Ημερομηνία λήξης
RejectCheck=Check rejection RejectCheck=Ελέγξτε την απόρριψη
ConfirmRejectCheck=Are you sure you want to mark this check as rejected ? ConfirmRejectCheck=Are you sure you want to mark this check as rejected ?
RejectCheckDate=Check rejection date RejectCheckDate=Ελέγξτε την ημερομηνία απόρριψης
CheckRejected=Check rejected CheckRejected=Ελέγξτε την απόρριψη
CheckRejectedAndInvoicesReopened=Check rejected and invoices reopened CheckRejectedAndInvoicesReopened=Ελέγξτε την απόρριψη και ξανάνοιξε τα τιμολόγια

View File

@ -330,8 +330,8 @@ PaymentTypeCB=Πιστωτική κάρτα
PaymentTypeShortCB=Πιστωτική κάρτα PaymentTypeShortCB=Πιστωτική κάρτα
PaymentTypeCHQ=Επιταγή PaymentTypeCHQ=Επιταγή
PaymentTypeShortCHQ=Επιταγή PaymentTypeShortCHQ=Επιταγή
PaymentTypeTIP=Deposit PaymentTypeTIP=Κατάθεση
PaymentTypeShortTIP=Deposit PaymentTypeShortTIP=Κατάθεση
PaymentTypeVAD=On line πληρωμή PaymentTypeVAD=On line πληρωμή
PaymentTypeShortVAD=On line πληρωμή PaymentTypeShortVAD=On line πληρωμή
PaymentTypeTRA=Τιμολόγηση Πληρωμής PaymentTypeTRA=Τιμολόγηση Πληρωμής

View File

@ -19,7 +19,7 @@ BoxLastContracts=Τελευταία συμβόλαια
BoxLastContacts=Τελευταίες επαφές/διευθύνσεις BoxLastContacts=Τελευταίες επαφές/διευθύνσεις
BoxLastMembers=Τελευταία μέλη BoxLastMembers=Τελευταία μέλη
BoxFicheInter=Τελευταίες παρεμβάσεις BoxFicheInter=Τελευταίες παρεμβάσεις
BoxCurrentAccounts=Open accounts balance BoxCurrentAccounts=Άνοιξε το ισοζύγιο των λογαριασμών
BoxSalesTurnover=Κύκλος εργασιών BoxSalesTurnover=Κύκλος εργασιών
BoxTotalUnpaidCustomerBills=Σύνολο απλήρωτων τιμολογίων πελατών BoxTotalUnpaidCustomerBills=Σύνολο απλήρωτων τιμολογίων πελατών
BoxTotalUnpaidSuppliersBills=Σύνολο απλήρωτων τιμολογίων προμηθευτών BoxTotalUnpaidSuppliersBills=Σύνολο απλήρωτων τιμολογίων προμηθευτών
@ -47,7 +47,7 @@ BoxTitleLastModifiedMembers=Τελευταία %s Μέλη
BoxTitleLastFicheInter=Τελευταία %s ενημέρωση παρέμβασης BoxTitleLastFicheInter=Τελευταία %s ενημέρωση παρέμβασης
BoxTitleOldestUnpaidCustomerBills=Παλαιότερα %s ανεξόφλητα τιμολόγια πελατών BoxTitleOldestUnpaidCustomerBills=Παλαιότερα %s ανεξόφλητα τιμολόγια πελατών
BoxTitleOldestUnpaidSupplierBills=Παλαιότερα %s ανεξόφλητα τιμολόγια προμηθευτών BoxTitleOldestUnpaidSupplierBills=Παλαιότερα %s ανεξόφλητα τιμολόγια προμηθευτών
BoxTitleCurrentAccounts=Open accounts balances BoxTitleCurrentAccounts=Άνοιξε το ισοζύγια των λογαριασμών
BoxTitleSalesTurnover=Κύκλος εργασιών των πωλήσεων BoxTitleSalesTurnover=Κύκλος εργασιών των πωλήσεων
BoxTitleTotalUnpaidCustomerBills=Απλήρωτα τιμολόγια πελατών BoxTitleTotalUnpaidCustomerBills=Απλήρωτα τιμολόγια πελατών
BoxTitleTotalUnpaidSuppliersBills=Απλήρωτα τιμολόγια προμηθευτών BoxTitleTotalUnpaidSuppliersBills=Απλήρωτα τιμολόγια προμηθευτών
@ -94,4 +94,4 @@ BoxProductDistributionFor=Κατανομή των %s για %s
ForCustomersInvoices=Τιμολόγια Πελάτη ForCustomersInvoices=Τιμολόγια Πελάτη
ForCustomersOrders=Παραγγελίες πελατών ForCustomersOrders=Παραγγελίες πελατών
ForProposals=Προσφορές ForProposals=Προσφορές
LastXMonthRolling=The last %s month rolling LastXMonthRolling=Η τελευταία %s κίνηση του μήνα

View File

@ -146,5 +146,5 @@ Permission20003=Διαγραφή των αιτήσεων άδειας
Permission20004=Read leave requests for everybody Permission20004=Read leave requests for everybody
Permission20005=Create/modify leave requests for everybody Permission20005=Create/modify leave requests for everybody
Permission20006=Admin leave requests (setup and update balance) 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. GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.

View File

@ -108,7 +108,7 @@ Yes=Ναι
no=όχι no=όχι
No=Όχι No=Όχι
All=Όλα All=Όλα
Alls=All Alls=Όλα
Home=Αρχική Home=Αρχική
Help=Βοήθεια Help=Βοήθεια
OnlineHelp=Online Βοήθεια OnlineHelp=Online Βοήθεια
@ -710,7 +710,7 @@ GoIntoSetupToChangeLogo=Πηγαίνετε Αρχική - Ρυθμίσεις -
Deny=Άρνηση Deny=Άρνηση
Denied=Άρνηση Denied=Άρνηση
ListOfTemplates=Κατάλογος των προτύπων ListOfTemplates=Κατάλογος των προτύπων
Gender=Gender Gender=Φύλο
Genderman=Άνδρας Genderman=Άνδρας
Genderwoman=Γυναίκα Genderwoman=Γυναίκα
ViewList=Προβολή λίστας ViewList=Προβολή λίστας

View File

@ -194,13 +194,13 @@ Unit=Unit
p=u. p=u.
set=set set=set
se=set se=set
second=second second=Δευτερόλεπτο
s=s s=s
hour=hour hour=hour
h=h h=h
day=day day=Ημέρα
d=d d=d
kilogram=kilogram kilogram=Κιλό
kg=Kg kg=Kg
gram=gram gram=gram
g=g g=g
@ -208,9 +208,9 @@ meter=meter
m=m m=m
linearmeter=linear meter linearmeter=linear meter
lm=lm lm=lm
squaremeter=square meter squaremeter=τετραγωνικό μέτρο
m2=m² m2=m²
cubicmeter=cubic meter cubicmeter=Κυβικό μέτρο
m3=m³ m3=m³
liter=liter liter=liter
l=L l=L

View File

@ -1,4 +1,7 @@
# Dolibarr language file - Source file is en_US - admin # 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 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" 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 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)

View 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

View File

@ -0,0 +1,5 @@
# Dolibarr language file - Source file is en_US - bills
PaymentTypeTIP=Deposit
PaymentTypeShortTIP=Deposit
PaymentTypeTRA=Bill payment
PaymentTypeShortTRA=Bill

View File

@ -19,3 +19,4 @@ FormatDateHourShort=%m/%d/%Y %I:%M %p
FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
FormatDateHourTextShort=%b %d, %Y, %I:%M %p FormatDateHourTextShort=%b %d, %Y, %I:%M %p
FormatDateHourText=%B %d, %Y, %I:%M %p FormatDateHourText=%B %d, %Y, %I:%M %p
ShowTransaction=Show transaction

View File

@ -0,0 +1,2 @@
# Dolibarr language file - Source file is en_US - projects
OpportunitiesStatusForOpenedProjects=Opportunities status for opened projects

View File

@ -1,4 +1,7 @@
# Dolibarr language file - Source file is en_US - admin # 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 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" 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 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)

View 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

View File

@ -0,0 +1,5 @@
# Dolibarr language file - Source file is en_US - bills
PaymentTypeTIP=Deposit
PaymentTypeShortTIP=Deposit
PaymentTypeTRA=Bill payment
PaymentTypeShortTRA=Bill

View File

@ -25,3 +25,4 @@ IncludedVAT=Included VAT
TTC=Inc. VAT TTC=Inc. VAT
VAT=VAT VAT=VAT
VATRate=VAT Rate VATRate=VAT Rate
ShowTransaction=Show transaction

View File

@ -0,0 +1,2 @@
# Dolibarr language file - Source file is en_US - projects
OpportunitiesStatusForOpenedProjects=Opportunities status for opened projects

View File

@ -1,4 +1,7 @@
# Dolibarr language file - Source file is en_US - admin # 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 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" 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 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)

View 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

View File

@ -0,0 +1,5 @@
# Dolibarr language file - Source file is en_US - bills
PaymentTypeTIP=Deposit
PaymentTypeShortTIP=Deposit
PaymentTypeTRA=Bill payment
PaymentTypeShortTRA=Bill

View File

@ -19,3 +19,4 @@ FormatDateHourShort=%m/%d/%Y %I:%M %p
FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
FormatDateHourTextShort=%b %d, %Y, %I:%M %p FormatDateHourTextShort=%b %d, %Y, %I:%M %p
FormatDateHourText=%B %d, %Y, %I:%M %p FormatDateHourText=%B %d, %Y, %I:%M %p
ShowTransaction=Show transaction

View File

@ -0,0 +1,2 @@
# Dolibarr language file - Source file is en_US - projects
OpportunitiesStatusForOpenedProjects=Opportunities status for opened projects

View File

@ -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. 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 PrintProductsOnFichinter=Print products on intervention card
PrintProductsOnFichinterDetails=interventions generated from orders 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

View File

@ -1,6 +1,8 @@
# Dolibarr language file - Source file is en_US - projects # Dolibarr language file - Source file is en_US - projects
RefProject=Ref. project RefProject=Ref. project
ProjectRef=Project ref.
ProjectId=Project Id ProjectId=Project Id
ProjectLabel=Project label
Project=Project Project=Project
Projects=Projects Projects=Projects
ProjectStatus=Project status ProjectStatus=Project status

View File

@ -1,4 +1,7 @@
# Dolibarr language file - Source file is en_US - admin # 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 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" 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 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)

View 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

View File

@ -0,0 +1,3 @@
# Dolibarr language file - Source file is en_US - bills
PaymentTypeTRA=Bill payment
PaymentTypeShortTRA=Bill

View 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

View File

@ -19,3 +19,4 @@ FormatDateHourShort=%m/%d/%Y %I:%M %p
FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
FormatDateHourTextShort=%b %d, %Y, %I:%M %p FormatDateHourTextShort=%b %d, %Y, %I:%M %p
FormatDateHourText=%B %d, %Y, %I:%M %p FormatDateHourText=%B %d, %Y, %I:%M %p
ShowTransaction=Show transaction

View File

@ -0,0 +1,2 @@
# Dolibarr language file - Source file is en_US - projects
OpportunitiesStatusForOpenedProjects=Opportunities status for opened projects

View File

@ -1,4 +1,7 @@
# Dolibarr language file - Source file is en_US - admin # 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 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" 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 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)

View 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