Merge remote-tracking branch 'upstream/develop' into boxindex

This commit is contained in:
Frédéric FRANCE 2021-01-16 21:06:12 +01:00
commit c8d1410e33
No known key found for this signature in database
GPG Key ID: 06809324E4B2ABC1
557 changed files with 4527 additions and 3691 deletions

View File

@ -250,6 +250,7 @@ Following changes may create regressions for some external modules, but were nec
* Function showStripePaymentUrl, getStripePaymentUrl, showPaypalPaymentUrl and getPaypalPaymentUrl has been removed. The generic one showOnlinePaymentUrl and getOnlinePaymentUrl are always used.
* Context for hook showSocinfoOnPrint has been moved from "showsocinfoonprint" to "main"
* Library htdocs/includes/phpoffice/phpexcel as been removed (replaced with htdocs/includes/phpoffice/PhpSpreadsheet)
* Databse transaction in your triggers must be correctly balanced (one close for one open). If not, an error will be returned by the trigger, even if trigger did return error code.
***** ChangeLog for 12.0.4 compared to 12.0.3 *****

View File

@ -695,14 +695,15 @@ while ($i < min($num, $limit)) {
print '<tr class="oddeven">';
// Piece number
if (!empty($arrayfields['t.piece_num']['checked']))
{
if (!empty($arrayfields['t.piece_num']['checked'])) {
print '<td>';
$object->id = $line->id;
$object->piece_num = $line->piece_num;
print $object->getNomUrl(1, '', 0, '', 1);
print '</td>';
if (!$i) $totalarray['nbfield']++;
if (!$i) {
$totalarray['nbfield']++;
}
}
// Journal code

View File

@ -66,6 +66,7 @@ if (($action == 'update' && !GETPOST("cancel", 'alpha'))
if ($action != 'updateedit' && !$error)
{
setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
header("Location: ".$_SERVER["PHP_SELF"]);
exit;
}

View File

@ -236,6 +236,7 @@ if (($action == 'update' && !GETPOST("cancel", 'alpha'))
if (!$error)
{
setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
$db->commit();
} else {
$db->rollback();

View File

@ -172,13 +172,13 @@ $urlwithroot = $urlwithouturlroot.DOL_URL_ROOT; // This is to use external domai
// Show message
$message = '';
$url = '<a href="'.$urlwithroot.'/dav/fileserver.php" target="_blank">'.$urlwithroot.'/dav/fileserver.php</a>';
$message .= img_picto('', 'globe').' '.$langs->trans("WebDavServer", 'WebDAV', $url);
$message .= img_picto('', 'globe').' '.str_replace('{url}', $url, $langs->trans("WebDavServer", 'WebDAV', '{url}'));
$message .= '<br>';
if (!empty($conf->global->DAV_ALLOW_PUBLIC_DIR))
{
$urlEntity = (!empty($conf->multicompany->enabled) ? '?entity='.$conf->entity : '');
$url = '<a href="'.$urlwithroot.'/dav/fileserver.php/public/'.$urlEntity.'" target="_blank">'.$urlwithroot.'/dav/fileserver.php/public/'.$urlEntity.'</a>';
$message .= img_picto('', 'globe').' '.$langs->trans("WebDavServer", 'WebDAV public', $url);
$message .= img_picto('', 'globe').' '.str_replace('{url}', $url, $langs->trans("WebDavServer", 'WebDAV public', '{url}'));
$message .= '<br>';
}
print $message;

View File

@ -57,6 +57,7 @@ if (($action == 'update' && !GETPOST("cancel", 'alpha'))
if ($action != 'updateedit' && !$error)
{
setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
header("Location: ".$_SERVER["PHP_SELF"]);
exit;
}

View File

@ -2,7 +2,7 @@
/* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2005-2010 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2010-2016 Juanjo Menent <jmenent@2byte.es>
* Copyright (C) 2018 Frédéric France <frederic.france@netlogic.fr>
* Copyright (C) 2018-2021 Frédéric France <frederic.france@netlogic.fr>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -354,8 +354,8 @@ if ($id > 0 || $ref)
{
$result = $db->query($sql);
$nbtotalofrecords = $db->num_rows($result);
if (($page * $limit) > $nbtotalofrecords) // if total resultset is smaller then paging size (filtering), goto and load page 0
{
if (($page * $limit) > $nbtotalofrecords) {
// if total resultset is smaller then paging size (filtering), goto and load page 0
$page = 0;
$offset = 0;
}
@ -445,15 +445,14 @@ if ($id > 0 || $ref)
$i++;
}
if ($num > 0)
{
if ($num > 0) {
print '<tr class="liste_total">';
print '<td>'.$langs->trans("Total").'</td>';
print '<td>&nbsp;</td>';
print '<td class="right">';
if (empty($offset) && $num <= $limit) // If we have all record on same page, then the following test/warning can be done
{
if ($total != $object->amount) print img_warning("TotalAmountOfdirectDebitOrderDiffersFromSumOfLines");
if (empty($offset) && $num <= $limit) {
// If we have all record on same page, then the following test/warning can be done
if ($total != $object->amount) print img_warning($langs->trans("TotalAmountOfdirectDebitOrderDiffersFromSumOfLines"));
}
print price($total);
print "</td>\n";

View File

@ -66,18 +66,14 @@ $parameters = array('mode' => $mode, 'format' => $format, 'limit' => $limit, 'pa
$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
{
if (empty($reshook)) {
// Change customer bank information to withdraw
if ($action == 'modify')
{
for ($i = 1; $i < 9; $i++)
{
if ($action == 'modify') {
for ($i = 1; $i < 9; $i++) {
dolibarr_set_const($db, GETPOST("nom$i"), GETPOST("value$i"), 'chaine', 0, '', $conf->entity);
}
}
if ($action == 'create')
{
if ($action == 'create') {
$default_account=($type == 'bank-transfer' ? 'PAYMENTBYBANKTRANSFER_ID_BANKACCOUNT' : 'PRELEVEMENT_ID_BANKACCOUNT');
if ($id_bankaccount != $conf->global->{$default_account}){
@ -88,7 +84,8 @@ if (empty($reshook))
$bank = new Account($db);
$bank->fetch($conf->global->{$default_account});
if (empty($bank->ics) || empty($bank->ics_transfer)){
setEventMessages($langs->trans("ErrorICSmissing", $bank->getNomUrl(1)), null, 'errors');
$errormessage = str_replace('{url}', $bank->getNomUrl(1), $langs->trans("ErrorICSmissing", '{url}'));
setEventMessages($errormessage, null, 'errors');
header("Location: ".DOL_URL_ROOT.'/compta/prelevement/create.php');
exit;
}
@ -111,8 +108,7 @@ if (empty($reshook))
$mesg = $langs->trans("NoInvoiceCouldBeWithdrawed", $format);
setEventMessages($mesg, null, 'errors');
$mesg .= '<br>'."\n";
foreach ($bprev->invoice_in_error as $key => $val)
{
foreach ($bprev->invoice_in_error as $key => $val) {
$mesg .= '<span class="warning">'.$val."</span><br>\n";
}
} else {
@ -145,8 +141,7 @@ $bprev = new BonPrelevement($db);
llxHeader('', $langs->trans("NewStandingOrder"));
if (prelevement_check_config($type) < 0)
{
if (prelevement_check_config($type) < 0) {
$langs->load("errors");
setEventMessages($langs->trans("ErrorModuleSetupNotComplete", $langs->transnoentitiesnoconv("Withdraw")), null, 'errors');
}
@ -237,8 +232,7 @@ if ($nb) {
print '<a class="butAction" type="submit" href="create.php?action=create&format=ALL&type='.$type.'">'.$title."</a>\n";
}
} else {
if ($mysoc->isInEEC())
{
if ($mysoc->isInEEC()) {
$title = $langs->trans("CreateForSepaFRST");
if ($type == 'bank-transfer') {
$title = $langs->trans("CreateSepaFileForPaymentByBankTransfer");
@ -289,8 +283,7 @@ $sql .= " ".MAIN_DB_PREFIX."societe as s,";
$sql .= " ".MAIN_DB_PREFIX."prelevement_facture_demande as pfd";
$sql .= " WHERE s.rowid = f.fk_soc";
$sql .= " AND f.entity IN (".getEntity('invoice').")";
if (empty($conf->global->WITHDRAWAL_ALLOW_ANY_INVOICE_STATUS))
{
if (empty($conf->global->WITHDRAWAL_ALLOW_ANY_INVOICE_STATUS)) {
$sql .= " AND f.fk_statut = ".Facture::STATUS_VALIDATED;
}
//$sql .= " AND pfd.amount > 0";
@ -305,12 +298,11 @@ if ($type == 'bank-transfer') {
if ($socid > 0) $sql .= " AND f.fk_soc = ".$socid;
$nbtotalofrecords = '';
if (empty($conf->global->MAIN_DISABLE_FULL_SCANLIST))
{
if (empty($conf->global->MAIN_DISABLE_FULL_SCANLIST)) {
$result = $db->query($sql);
$nbtotalofrecords = $db->num_rows($result);
if (($page * $limit) > $nbtotalofrecords) // if total resultset is smaller then paging size (filtering), goto and load page 0
{
if (($page * $limit) > $nbtotalofrecords) {
// if total resultset is smaller then paging size (filtering), goto and load page 0
$page = 0;
$offset = 0;
}
@ -399,7 +391,7 @@ if ($resql)
if ($format) print ' ('.$format.')';
}
} else {
print img_warning($langs->trans("NoBankAccount"));
print img_warning($langs->trans("NoBankAccountDefined"));
}
print '</td>';
// Amount

View File

@ -933,31 +933,31 @@ while ($i < min($num, $limit))
// Phone
if (!empty($arrayfields['p.phone']['checked']))
{
print '<td>'.dol_print_phone($obj->phone_pro, $obj->country_code, $obj->rowid, $obj->socid, 'AC_TEL').'</td>';
print '<td>'.dol_print_phone($obj->phone_pro, $obj->country_code, $obj->rowid, $obj->socid, 'AC_TEL', ' ', 'phone').'</td>';
if (!$i) $totalarray['nbfield']++;
}
// Phone perso
if (!empty($arrayfields['p.phone_perso']['checked']))
{
print '<td>'.dol_print_phone($obj->phone_perso, $obj->country_code, $obj->rowid, $obj->socid, 'AC_TEL').'</td>';
print '<td>'.dol_print_phone($obj->phone_perso, $obj->country_code, $obj->rowid, $obj->socid, 'AC_TEL', ' ', 'phone').'</td>';
if (!$i) $totalarray['nbfield']++;
}
// Phone mobile
if (!empty($arrayfields['p.phone_mobile']['checked']))
{
print '<td>'.dol_print_phone($obj->phone_mobile, $obj->country_code, $obj->rowid, $obj->socid, 'AC_TEL').'</td>';
print '<td>'.dol_print_phone($obj->phone_mobile, $obj->country_code, $obj->rowid, $obj->socid, 'AC_TEL', ' ', 'mobile').'</td>';
if (!$i) $totalarray['nbfield']++;
}
// Fax
if (!empty($arrayfields['p.fax']['checked']))
{
print '<td>'.dol_print_phone($obj->fax, $obj->country_code, $obj->rowid, $obj->socid, 'AC_TEL').'</td>';
print '<td>'.dol_print_phone($obj->fax, $obj->country_code, $obj->rowid, $obj->socid, 'AC_TEL', ' ', 'fax').'</td>';
if (!$i) $totalarray['nbfield']++;
}
// EMail
if (!empty($arrayfields['p.email']['checked']))
{
print '<td>'.dol_print_email($obj->email, $obj->rowid, $obj->socid, 'AC_EMAIL', 18).'</td>';
print '<td>'.dol_print_email($obj->email, $obj->rowid, $obj->socid, 'AC_EMAIL', 18, 0, 1).'</td>';
if (!$i) $totalarray['nbfield']++;
}
// No EMail

View File

@ -0,0 +1,333 @@
<?php
/* Copyright (C) 2003-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2005-2009 Regis Houssin <regis.houssin@inodbox.com>
* Copyright (C) 2015 Frederic France <frederic.france@free.fr>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/core/boxes/box_dolibarr_state_board.php
* \ingroup
* \brief Module Dolibarr state base
*/
include_once DOL_DOCUMENT_ROOT . '/core/boxes/modules_boxes.php';
include_once DOL_DOCUMENT_ROOT . '/core/class/hookmanager.class.php';
/**
* Class to manage the box to show last thirdparties
*/
class box_dolibarr_state_board extends ModeleBoxes
{
public $boxcode = "dolibarrstatebox";
public $boximg = "box_user";
public $boxlabel = "BoxDolibarrStateBoard";
public $depends = array("user");
/**
* @var DoliDB Database handler.
*/
public $db;
public $enabled = 1;
public $info_box_head = array();
public $info_box_contents = array();
/**
* Constructor
*
* @param DoliDB $db Database handler
* @param string $param More parameters
*/
public function __construct($db, $param = '')
{
global $conf, $user;
$this->db = $db;
// disable box for such cases
if (!empty($conf->global->SOCIETE_DISABLE_CUSTOMERS)) $this->enabled = 0; // disabled by this option
$this->hidden = !($user->rights->societe->lire && empty($user->socid));
}
/**
* Load data for box to show them later
*
* @param int $max Maximum number of records to load
* @return void
*/
public function loadBox($max = 5)
{
global $user, $langs, $conf;
$langs->load("boxes");
$this->max = $max;
$this->info_box_head = array('text' => $langs->trans("DolibarrStateBoard"));
if (empty($user->socid) && empty($conf->global->MAIN_DISABLE_GLOBAL_BOXSTATS))
{
$hookmanager = new HookManager($this->db);
$hookmanager->initHooks(array('index'));
$boxstatItems = array();
$boxstatFromHook = '';
$boxstatFromHook = $hookmanager->resPrint;
$boxstat = '';
$keys = array(
'users',
'members',
'expensereports',
'holidays',
'customers',
'prospects',
'suppliers',
'contacts',
'products',
'services',
'projects',
'proposals',
'orders',
'invoices',
'donations',
'supplier_proposals',
'supplier_orders',
'supplier_invoices',
'contracts',
'interventions',
'ticket'
);
$conditions = array(
'users' => $user->rights->user->user->lire,
'members' => !empty($conf->adherent->enabled) && $user->rights->adherent->lire,
'customers' => !empty($conf->societe->enabled) && $user->rights->societe->lire && empty($conf->global->SOCIETE_DISABLE_CUSTOMERS) && empty($conf->global->SOCIETE_DISABLE_CUSTOMERS_STATS),
'prospects' => !empty($conf->societe->enabled) && $user->rights->societe->lire && empty($conf->global->SOCIETE_DISABLE_PROSPECTS) && empty($conf->global->SOCIETE_DISABLE_PROSPECTS_STATS),
'suppliers' => !empty($conf->fournisseur->enabled) && $user->rights->fournisseur->lire && empty($conf->global->SOCIETE_DISABLE_SUPPLIERS_STATS),
'contacts' => !empty($conf->societe->enabled) && $user->rights->societe->contact->lire,
'products' => !empty($conf->product->enabled) && $user->rights->produit->lire,
'services' => !empty($conf->service->enabled) && $user->rights->service->lire,
'proposals' => !empty($conf->propal->enabled) && $user->rights->propale->lire,
'orders' => !empty($conf->commande->enabled) && $user->rights->commande->lire,
'invoices' => !empty($conf->facture->enabled) && $user->rights->facture->lire,
'donations' => !empty($conf->don->enabled) && $user->rights->don->lire,
'contracts' => !empty($conf->contrat->enabled) && $user->rights->contrat->lire,
'interventions' => !empty($conf->ficheinter->enabled) && $user->rights->ficheinter->lire,
'supplier_orders' => !empty($conf->supplier_order->enabled) && $user->rights->fournisseur->commande->lire && empty($conf->global->SOCIETE_DISABLE_SUPPLIERS_ORDERS_STATS),
'supplier_invoices' => !empty($conf->supplier_invoice->enabled) && $user->rights->fournisseur->facture->lire && empty($conf->global->SOCIETE_DISABLE_SUPPLIERS_INVOICES_STATS),
'supplier_proposals' => !empty($conf->supplier_proposal->enabled) && $user->rights->supplier_proposal->lire && empty($conf->global->SOCIETE_DISABLE_SUPPLIERS_PROPOSAL_STATS),
'projects' => !empty($conf->projet->enabled) && $user->rights->projet->lire,
'expensereports' => !empty($conf->expensereport->enabled) && $user->rights->expensereport->lire,
'holidays' => !empty($conf->holiday->enabled) && $user->rights->holiday->read,
'ticket' => !empty($conf->ticket->enabled) && $user->rights->ticket->read
);
$classes = array(
'users' => 'User',
'members' => 'Adherent',
'customers' => 'Client',
'prospects' => 'Client',
'suppliers' => 'Fournisseur',
'contacts' => 'Contact',
'products' => 'Product',
'services' => 'ProductService',
'proposals' => 'Propal',
'orders' => 'Commande',
'invoices' => 'Facture',
'donations' => 'Don',
'contracts' => 'Contrat',
'interventions' => 'Fichinter',
'supplier_orders' => 'CommandeFournisseur',
'supplier_invoices' => 'FactureFournisseur',
'supplier_proposals' => 'SupplierProposal',
'projects' => 'Project',
'expensereports' => 'ExpenseReport',
'holidays' => 'Holiday',
'ticket' => 'Ticket',
);
$includes = array(
'users' => DOL_DOCUMENT_ROOT . "/user/class/user.class.php",
'members' => DOL_DOCUMENT_ROOT . "/adherents/class/adherent.class.php",
'customers' => DOL_DOCUMENT_ROOT . "/societe/class/client.class.php",
'prospects' => DOL_DOCUMENT_ROOT . "/societe/class/client.class.php",
'suppliers' => DOL_DOCUMENT_ROOT . "/fourn/class/fournisseur.class.php",
'contacts' => DOL_DOCUMENT_ROOT . "/contact/class/contact.class.php",
'products' => DOL_DOCUMENT_ROOT . "/product/class/product.class.php",
'services' => DOL_DOCUMENT_ROOT . "/product/class/product.class.php",
'proposals' => DOL_DOCUMENT_ROOT . "/comm/propal/class/propal.class.php",
'orders' => DOL_DOCUMENT_ROOT . "/commande/class/commande.class.php",
'invoices' => DOL_DOCUMENT_ROOT . "/compta/facture/class/facture.class.php",
'donations' => DOL_DOCUMENT_ROOT . "/don/class/don.class.php",
'contracts' => DOL_DOCUMENT_ROOT . "/contrat/class/contrat.class.php",
'interventions' => DOL_DOCUMENT_ROOT . "/fichinter/class/fichinter.class.php",
'supplier_orders' => DOL_DOCUMENT_ROOT . "/fourn/class/fournisseur.commande.class.php",
'supplier_invoices' => DOL_DOCUMENT_ROOT . "/fourn/class/fournisseur.facture.class.php",
'supplier_proposals' => DOL_DOCUMENT_ROOT . "/supplier_proposal/class/supplier_proposal.class.php",
'projects' => DOL_DOCUMENT_ROOT . "/projet/class/project.class.php",
'expensereports' => DOL_DOCUMENT_ROOT . "/expensereport/class/expensereport.class.php",
'holidays' => DOL_DOCUMENT_ROOT . "/holiday/class/holiday.class.php",
'ticket' => DOL_DOCUMENT_ROOT . "/ticket/class/ticket.class.php"
);
$links = array(
'users' => DOL_URL_ROOT . '/user/list.php',
'members' => DOL_URL_ROOT . '/adherents/list.php?statut=1&mainmenu=members',
'customers' => DOL_URL_ROOT . '/societe/list.php?type=c&mainmenu=companies',
'prospects' => DOL_URL_ROOT . '/societe/list.php?type=p&mainmenu=companies',
'suppliers' => DOL_URL_ROOT . '/societe/list.php?type=f&mainmenu=companies',
'contacts' => DOL_URL_ROOT . '/contact/list.php?mainmenu=companies',
'products' => DOL_URL_ROOT . '/product/list.php?type=0&mainmenu=products',
'services' => DOL_URL_ROOT . '/product/list.php?type=1&mainmenu=products',
'proposals' => DOL_URL_ROOT . '/comm/propal/list.php?mainmenu=commercial&leftmenu=propals',
'orders' => DOL_URL_ROOT . '/commande/list.php?mainmenu=commercial&leftmenu=orders',
'invoices' => DOL_URL_ROOT . '/compta/facture/list.php?mainmenu=billing&leftmenu=customers_bills',
'donations' => DOL_URL_ROOT . '/don/list.php?leftmenu=donations',
'contracts' => DOL_URL_ROOT . '/contrat/list.php?mainmenu=commercial&leftmenu=contracts',
'interventions' => DOL_URL_ROOT . '/fichinter/list.php?mainmenu=commercial&leftmenu=ficheinter',
'supplier_orders' => DOL_URL_ROOT . '/fourn/commande/list.php?mainmenu=commercial&leftmenu=orders_suppliers',
'supplier_invoices' => DOL_URL_ROOT . '/fourn/facture/list.php?mainmenu=billing&leftmenu=suppliers_bills',
'supplier_proposals' => DOL_URL_ROOT . '/supplier_proposal/list.php?mainmenu=commercial&leftmenu=',
'projects' => DOL_URL_ROOT . '/projet/list.php?mainmenu=project',
'expensereports' => DOL_URL_ROOT . '/expensereport/list.php?mainmenu=hrm&leftmenu=expensereport',
'holidays' => DOL_URL_ROOT . '/holiday/list.php?mainmenu=hrm&leftmenu=holiday',
'ticket' => DOL_URL_ROOT . '/ticket/list.php?leftmenu=ticket'
);
$titres = array(
'users' => "Users",
'members' => "Members",
'customers' => "ThirdPartyCustomersStats",
'prospects' => "ThirdPartyProspectsStats",
'suppliers' => "Suppliers",
'contacts' => "Contacts",
'products' => "Products",
'services' => "Services",
'proposals' => "CommercialProposalsShort",
'orders' => "CustomersOrders",
'invoices' => "BillsCustomers",
'donations' => "Donations",
'contracts' => "Contracts",
'interventions' => "Interventions",
'supplier_orders' => "SuppliersOrders",
'supplier_invoices' => "SuppliersInvoices",
'supplier_proposals' => "SupplierProposalShort",
'projects' => "Projects",
'expensereports' => "ExpenseReports",
'holidays' => "Holidays",
'ticket' => "Ticket",
);
$langfile = array(
'customers' => "companies",
'contacts' => "companies",
'services' => "products",
'proposals' => "propal",
'invoices' => "bills",
'supplier_orders' => "orders",
'supplier_invoices' => "bills",
'supplier_proposals' => 'supplier_proposal',
'expensereports' => "trips",
'holidays' => "holiday",
);
$boardloaded = array();
foreach ($keys as $val)
{
if ($conditions[$val])
{
$boxstatItem = '';
$class = $classes[$val];
// Search in cache if load_state_board is already realized
$classkeyforcache = $class;
if ($classkeyforcache == 'ProductService') $classkeyforcache = 'Product'; // ProductService use same load_state_board than Product
if (!isset($boardloaded[$classkeyforcache]) || !is_object($boardloaded[$classkeyforcache]))
{
include_once $includes[$val]; // Loading a class cost around 1Mb
$board = new $class($this->db);
$board->load_state_board();
$boardloaded[$class] = $board;
} else {
$board = $boardloaded[$classkeyforcache];
}
$langs->load(empty($langfile[$val]) ? $val : $langfile[$val]);
$text = $langs->trans($titres[$val]);
$boxstatItem .= '<a href="' . $links[$val] . '" class="boxstatsindicator thumbstat nobold nounderline">';
$boxstatItem .= '<div class="boxstats">';
$boxstatItem .= '<span class="boxstatstext" title="' . dol_escape_htmltag($text) . '">' . $text . '</span><br>';
$boxstatItem .= '<span class="boxstatsindicator">' . img_object("", $board->picto, 'class="inline-block"') . ' ' . ($board->nb[$val] ? $board->nb[$val] : 0) . '</span>';
$boxstatItem .= '</div>';
$boxstatItem .= '</a>';
$boxstatItems[$val] = $boxstatItem;
}
}
if (!empty($boxstatFromHook) || !empty($boxstatItems))
{
$boxstat .= $boxstatFromHook;
if (is_array($boxstatItems) && count($boxstatItems) > 0)
{
$boxstat .= implode('', $boxstatItems);
}
$boxstat .= '<a class="boxstatsindicator thumbstat nobold nounderline"><div class="boxstatsempty"></div></a>';
$boxstat .= '<a class="boxstatsindicator thumbstat nobold nounderline"><div class="boxstatsempty"></div></a>';
$boxstat .= '<a class="boxstatsindicator thumbstat nobold nounderline"><div class="boxstatsempty"></div></a>';
$boxstat .= '<a class="boxstatsindicator thumbstat nobold nounderline"><div class="boxstatsempty"></div></a>';
$boxstat .= '<a class="boxstatsindicator thumbstat nobold nounderline"><div class="boxstatsempty"></div></a>';
$boxstat .= '<a class="boxstatsindicator thumbstat nobold nounderline"><div class="boxstatsempty"></div></a>';
$boxstat .= '<a class="boxstatsindicator thumbstat nobold nounderline"><div class="boxstatsempty"></div></a>';
$boxstat .= '<a class="boxstatsindicator thumbstat nobold nounderline"><div class="boxstatsempty"></div></a>';
$boxstat .= '</td></tr>';
$boxstat .= '</table>';
$this->info_box_contents[0][0] = array(
'td' => '',
'textnoformat' => $boxstat
);
} else {
$this->info_box_contents[0][0] = array(
'td' => 'class="nohover center"',
'maxlength' => 500,
'text' => ($this->db->error() . ' sql=' . $sql)
);
}
} else {
$this->info_box_contents[0][0] = array(
'td' => '',
'text' => $langs->trans("ReadPermissionNotAllowed")
);
}
}
/**
* Method to show box
*
* @param array $head Array with properties of box title
* @param array $contents Array with properties of box lines
* @param int $nooutput No print, only return string
* @return string
*/
public function showBox($head = null, $contents = null, $nooutput = 0)
{
return parent::showBox($this->info_box_head, $this->info_box_contents, $nooutput);
}
}

View File

@ -3672,7 +3672,9 @@ abstract class CommonObject
*/
static public function getAllItemsLinkedByObjectID($fk_object_where, $field_select, $field_where, $table_element)
{
if (empty($fk_object_where) || empty($field_where) || empty($table_element)) return -1;
if (empty($fk_object_where) || empty($field_where) || empty($table_element)) {
return -1;
}
global $db;
@ -3699,14 +3701,18 @@ abstract class CommonObject
*/
static public function deleteAllItemsLinkedByObjectID($fk_object_where, $field_where, $table_element)
{
if (empty($fk_object_where) || empty($field_where) || empty($table_element)) return -1;
if (empty($fk_object_where) || empty($field_where) || empty($table_element)) {
return -1;
}
global $db;
$sql = 'DELETE FROM '.MAIN_DB_PREFIX.$table_element.' WHERE '.$field_where.' = '.$fk_object_where;
$resql = $db->query($sql);
if (empty($resql)) return 0;
if (empty($resql)) {
return 0;
}
return 1;
}

View File

@ -634,13 +634,13 @@ class dolReceiptPrinter extends Printer
if ($line->fk_product)
{
$spacestoadd = $nbcharactbyline - strlen($line->ref) - strlen($line->qty) - 10 - 1;
$spaces = str_repeat(' ', $spacestoadd);
$spaces = str_repeat(' ', $spacestoadd > 0 ? $spacestoadd : 0);
$this->printer->text($line->ref.$spaces.$line->qty.' '.str_pad(price($line->total_ttc), 10, ' ', STR_PAD_LEFT)."\n");
$this->printer->text(strip_tags(htmlspecialchars_decode($line->product_label))."\n");
}
else {
$spacestoadd = $nbcharactbyline - strlen($line->description) - strlen($line->qty) - 10 - 1;
$spaces = str_repeat(' ', $spacestoadd);
$spaces = str_repeat(' ', $spacestoadd > 0 ? $spacestoadd : 0);
$this->printer->text($line->description.$spaces.$line->qty.' '.str_pad(price($line->total_ttc), 10, ' ', STR_PAD_LEFT)."\n");
}
}
@ -653,7 +653,7 @@ class dolReceiptPrinter extends Printer
}
foreach ($vatarray as $vatkey => $vatvalue) {
$spacestoadd = $nbcharactbyline - strlen($vatkey) - 12;
$spaces = str_repeat(' ', $spacestoadd);
$spaces = str_repeat(' ', $spacestoadd > 0 ? $spacestoadd : 0);
$this->printer->text($spaces.$vatkey.'% '.str_pad(price($vatvalue), 10, ' ', STR_PAD_LEFT)."\n");
}
break;
@ -680,15 +680,15 @@ class dolReceiptPrinter extends Printer
case 'DOL_PRINT_OBJECT_TOTAL':
$title = $langs->trans('TotalHT');
$spacestoadd = $nbcharactbyline - strlen($title) - 10;
$spaces = str_repeat(' ', $spacestoadd);
$spaces = str_repeat(' ', $spacestoadd > 0 ? $spacestoadd : 0);
$this->printer->text($title.$spaces.str_pad(price($object->total_ht), 10, ' ', STR_PAD_LEFT)."\n");
$title = $langs->trans('TotalVAT');
$spacestoadd = $nbcharactbyline - strlen($title) - 10;
$spaces = str_repeat(' ', $spacestoadd);
$spaces = str_repeat(' ', $spacestoadd > 0 ? $spacestoadd : 0);
$this->printer->text($title.$spaces.str_pad(price($object->total_tva), 10, ' ', STR_PAD_LEFT)."\n");
$title = $langs->trans('TotalTTC');
$spacestoadd = $nbcharactbyline - strlen($title) - 10;
$spaces = str_repeat(' ', $spacestoadd);
$spaces = str_repeat(' ', $spacestoadd > 0 ? $spacestoadd : 0);
$this->printer->text($title.$spaces.str_pad(price($object->total_ttc), 10, ' ', STR_PAD_LEFT)."\n");
break;
case 'DOL_LINE_FEED':
@ -778,7 +778,7 @@ class dolReceiptPrinter extends Printer
if ($line->special_code == $this->orderprinter)
{
$spacestoadd = $nbcharactbyline - strlen($line->ref) - strlen($line->qty) - 10 - 1;
$spaces = str_repeat(' ', $spacestoadd);
$spaces = str_repeat(' ', $spacestoadd > 0 ? $spacestoadd : 0);
$this->printer->text($line->ref.$spaces.$line->qty.' '.str_pad(price($line->total_ttc), 10, ' ', STR_PAD_LEFT)."\n");
$this->printer->text(strip_tags(htmlspecialchars_decode($line->desc))."\n");
}
@ -799,14 +799,14 @@ class dolReceiptPrinter extends Printer
while ($i < $num) {
$row = $this->db->fetch_object($resql);
$spacestoadd = $nbcharactbyline - strlen($langs->transnoentitiesnoconv("PaymentTypeShort".$row->code)) - 12;
$spaces = str_repeat(' ', $spacestoadd);
$spaces = str_repeat(' ', $spacestoadd > 0 ? $spacestoadd : 0);
$amount_payment = (!empty($conf->multicurrency->enabled) && $object->multicurrency_tx != 1) ? $row->multicurrency_amount : $row->amount;
if ($row->code == "LIQ") $amount_payment = $amount_payment + $row->pos_change; // Show amount with excess received if is cash payment
$this->printer->text($spaces.$langs->transnoentitiesnoconv("PaymentTypeShort".$row->code).' '.str_pad(price($amount_payment), 10, ' ', STR_PAD_LEFT)."\n");
if ($row->code == "LIQ" && $row->pos_change > 0) // Print change only in cash payments
{
$spacestoadd = $nbcharactbyline - strlen($langs->trans("Change")) - 12;
$spaces = str_repeat(' ', $spacestoadd);
$spaces = str_repeat(' ', $spacestoadd > 0 ? $spacestoadd : 0);
$this->printer->text($spaces.$langs->trans("Change").' '.str_pad(price($row->pos_change), 10, ' ', STR_PAD_LEFT)."\n");
}
$i++;

View File

@ -1066,7 +1066,8 @@ class FormFile
if ($disablecrop == -1)
{
$disablecrop = 1;
if (in_array($modulepart, array('bank', 'bom', 'expensereport', 'holiday', 'medias', 'member', 'mrp', 'project', 'product', 'produit', 'propal', 'service', 'societe', 'tax', 'tax-vat', 'ticket', 'user'))) $disablecrop = 0;
// Values here must be supported by the photo_resize.php page.
if (in_array($modulepart, array('bank', 'bom', 'expensereport', 'facture', 'facture_fournisseur', 'holiday', 'medias', 'member', 'mrp', 'project', 'product', 'produit', 'propal', 'service', 'societe', 'tax', 'tax-vat', 'ticket', 'user'))) $disablecrop = 0;
}
// Define relative path used to store the file

View File

@ -1516,9 +1516,15 @@ class FormMail extends Form
//,'__PERSONALIZED__' => 'Personalized' // Hidden because not used yet in mass emailing
$onlinepaymentenabled = 0;
if (!empty($conf->paypal->enabled)) $onlinepaymentenabled++;
if (!empty($conf->paybox->enabled)) $onlinepaymentenabled++;
if (!empty($conf->stripe->enabled)) $onlinepaymentenabled++;
if (!empty($conf->paypal->enabled)) {
$onlinepaymentenabled++;
}
if (!empty($conf->paybox->enabled)) {
$onlinepaymentenabled++;
}
if (!empty($conf->stripe->enabled)) {
$onlinepaymentenabled++;
}
if ($onlinepaymentenabled && !empty($conf->global->PAYMENT_SECURITY_TOKEN)) {
$tmparray['__SECUREKEYPAYMENT__'] = $conf->global->PAYMENT_SECURITY_TOKEN;
if (!empty($conf->global->PAYMENT_SECURITY_TOKEN_UNIQUE)) {

View File

@ -4863,7 +4863,7 @@ function price2num($amount, $rounding = '', $option = 0)
if ($option != 1) { // If not a PHP number or unknown, we change or clean format
//print 'PP'.$amount.' - '.$dec.' - '.$thousand.' - '.intval($amount).'<br>';
if (!is_numeric($amount)) {
$amount = preg_replace('/[a-zA-Z\/\\\*\(\)\<\>]/', '', $amount);
$amount = preg_replace('/[a-zA-Z\/\\\*\(\)\<\>\_]/', '', $amount);
}
if ($option == 2 && $thousand == '.' && preg_match('/\.(\d\d\d)$/', (string) $amount)) { // It means the . is used as a thousand separator and string come frominput data, so 1.123 is 1123

View File

@ -78,7 +78,8 @@ class modUser extends DolibarrModules
// Boxes
$this->boxes = array(
0=>array('file'=>'box_lastlogin.php', 'enabledbydefaulton'=>'Home'),
1=>array('file'=>'box_birthdays.php', 'enabledbydefaulton'=>'Home')
1=>array('file'=>'box_birthdays.php', 'enabledbydefaulton'=>'Home'),
2=>array('file'=>'box_dolibarr_state_board.php', 'enabledbydefaulton'=>'Home')
);
// Permissions

View File

@ -42,6 +42,7 @@ $file = GETPOST('file', 'alpha');
$num = GETPOST('num', 'alpha'); // Used for document on bank statement
$website = GETPOST('website', 'alpha');
// Security check
if (empty($modulepart)) accessforbidden('Bad value for modulepart');
$accessallowed = 0;
@ -85,6 +86,11 @@ if ($modulepart == 'produit' || $modulepart == 'product' || $modulepart == 'serv
$permtoadd = ($user->rights->mailing->creer || $user->rights->website->write);
if (!$permtoadd) accessforbidden();
$accessallowed = 1;
} elseif ($modulepart == 'facture_fourn' || $modulepart == 'facture_fournisseur')
{
$result = restrictedArea($user, 'fournisseur', $id, 'facture_fourn', 'facture');
if (!$user->rights->fournisseur->facture->lire) accessforbidden();
$accessallowed = 1;
} else // ticket, holiday, expensereport, societe...
{
$result = restrictedArea($user, $modulepart, $id, $modulepart);
@ -230,10 +236,28 @@ if ($modulepart == 'produit' || $modulepart == 'product' || $modulepart == 'serv
if ($result <= 0) dol_print_error($db, 'Failed to load object');
$dir = $conf->bank->dir_output; // By default
}
} elseif ($modulepart == 'facture') {
require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
$object = new Facture($db);
if ($id > 0)
{
$result = $object->fetch($id);
if ($result <= 0) dol_print_error($db, 'Failed to load object');
$dir = $conf->$modulepart->dir_output; // By default
}
} elseif ($modulepart == 'facture_fourn' || $modulepart == 'facture_fournisseur') {
require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.facture.class.php';
$object = new FactureFournisseur($db);
if ($id > 0)
{
$result = $object->fetch($id);
if ($result <= 0) dol_print_error($db, 'Failed to load object');
$dir = $conf->fournisseur->dir_output.'/facture'; // By default
}
} elseif ($modulepart == 'medias') {
$dir = $dolibarr_main_data_root.'/'.$modulepart;
} else {
print 'Action crop for modulepart = '.$modulepart.' is not supported yet by photos_resize.php.';
print 'Bug: Action crop for modulepart = '.$modulepart.' is not supported yet by photos_resize.php.';
}
if (empty($backtourl))
@ -250,6 +274,8 @@ if (empty($backtourl))
elseif (in_array($modulepart, array('tax'))) $backtourl = DOL_URL_ROOT."/compta/sociales/document.php?id=".$id.'&file='.urldecode($file);
elseif (in_array($modulepart, array('ticket'))) $backtourl = DOL_URL_ROOT."/ticket/document.php?id=".$id.'&file='.urldecode($file);
elseif (in_array($modulepart, array('user'))) $backtourl = DOL_URL_ROOT."/user/document.php?id=".$id.'&file='.urldecode($file);
elseif (in_array($modulepart, array('facture'))) $backtourl = DOL_URL_ROOT."/compta/facture/document.php?id=".$id.'&file='.urldecode($file);
elseif (in_array($modulepart, array('facture_fourn', 'facture_fournisseur'))) $backtourl = DOL_URL_ROOT."/fourn/facture/document.php?id=".$id.'&file='.urldecode($file);
elseif (in_array($modulepart, array('bank')) && preg_match('/\/statement\/([^\/]+)\//', $file, $regs)) {
$num = $regs[1];
$backtourl = DOL_URL_ROOT."/compta/bank/account_statement_document.php?id=".$id.'&num='.urlencode($num).'&file='.urldecode($file);
@ -269,10 +295,8 @@ if (empty($backtourl))
* Actions
*/
if ($cancel)
{
if ($backtourl)
{
if ($cancel) {
if ($backtourl) {
header("Location: ".$backtourl);
exit;
} else {
@ -283,6 +307,10 @@ if ($cancel)
if ($action == 'confirm_resize' && GETPOSTISSET("file") && GETPOSTISSET("sizex") && GETPOSTISSET("sizey"))
{
if (empty($dir)) {
print 'Bug: Value for $dir could not be defined.';
}
$fullpath = $dir."/".$original_file;
$result = dol_imageResizeOrCrop($fullpath, 0, GETPOST('sizex', 'int'), GETPOST('sizey', 'int'));
@ -350,9 +378,13 @@ if ($action == 'confirm_resize' && GETPOSTISSET("file") && GETPOSTISSET("sizex")
// Crop d'une image
if ($action == 'confirm_crop')
{
if (empty($dir)) {
print 'Bug: Value for $dir could not be defined.';
}
$fullpath = $dir."/".$original_file;
//var_dump($_POST['w'].'x'.$_POST['h'].'-'.$_POST['x'].'x'.$_POST['y']);exit;
//var_dump($fullpath.' '.$_POST['w'].'x'.$_POST['h'].'-'.$_POST['x'].'x'.$_POST['y']);exit;
$result = dol_imageResizeOrCrop($fullpath, 1, GETPOST('w', 'int'), GETPOST('h', 'int'), GETPOST('x', 'int'), GETPOST('y', 'int'));
if ($result == $fullpath)
@ -399,8 +431,7 @@ if ($action == 'confirm_crop')
$result = $ecmfile->create($user);
}
if ($backtourl)
{
if ($backtourl) {
header("Location: ".$backtourl);
exit;
} else {
@ -419,10 +450,12 @@ if ($action == 'confirm_crop')
* View
*/
llxHeader($head, $langs->trans("Image"), '', '', 0, 0, array('/includes/jquery/plugins/jcrop/js/jquery.Jcrop.min.js', '/core/js/lib_photosresize.js'), array('/includes/jquery/plugins/jcrop/css/jquery.Jcrop.css'));
$title= $langs->trans("ImageEditor");
llxHeader($head, $title, '', '', 0, 0, array('/includes/jquery/plugins/jcrop/js/jquery.Jcrop.min.js', '/core/js/lib_photosresize.js'), array('/includes/jquery/plugins/jcrop/css/jquery.Jcrop.css'));
print load_fiche_titre($langs->trans("ImageEditor"));
print load_fiche_titre($title);
$infoarray = dol_getImageSize($dir."/".GETPOST("file", 'alpha'));
$height = $infoarray['height'];

View File

@ -320,9 +320,12 @@ if ($nolinesbefore) {
echo '</div>';
}
if (is_object($objectline)) {
print '<div style="padding-top: 10px" id="extrafield_lines_area_create" name="extrafield_lines_area_create">';
print $objectline->showOptionals($extrafields, 'edit', array(), '', '', 1, 'line');
print '</div>';
$temps = $objectline->showOptionals($extrafields, 'create', array(), '', '', 1, 'line');;
if (!empty($temps)) {
print '<div style="padding-top: 10px" id="extrafield_lines_area_create" name="extrafield_lines_area_create">';
print $temps;
print '</div>';
}
}
echo '</td>';
if ($object->element == 'supplier_proposal' || $object->element == 'order_supplier' || $object->element == 'invoice_supplier') // We must have same test in printObjectLines

View File

@ -128,9 +128,12 @@ $coldisplay++;
//Line extrafield
if (!empty($extrafields))
{
print '<div style="padding-top: 10px" id="extrafield_lines_area_edit" name="extrafield_lines_area_edit">';
print $line->showOptionals($extrafields, 'edit', array('class'=>'tredited'), '', '', 1, 'line');
print '</div>';
$temps = $line->showOptionals($extrafields, 'edit', array('class'=>'tredited'), '', '', 1, 'line');
if (!empty($temps)) {
print '<div style="padding-top: 10px" id="extrafield_lines_area_edit" name="extrafield_lines_area_edit">';
print $temps;
print '</div>';
}
}
// Show autofill date for recuring invoices

View File

@ -160,9 +160,12 @@ if (($line->info_bits & 2) == 2) {
//Line extrafield
if (!empty($extrafields))
{
print '<div style="padding-top: 10px" id="extrafield_lines_area_'.$line->id.'" name="extrafield_lines_area_'.$line->id.'">';
print $line->showOptionals($extrafields, 'view', array(), '', '', 1, 'line');
print '</div>';
$temps = $line->showOptionals($extrafields, 'view', array(), '', '', 1, 'line');
if (!empty($temps)) {
print '<div style="padding-top: 10px" id="extrafield_lines_area_'.$line->id.'" name="extrafield_lines_area_'.$line->id.'">';
print $temps;
print '</div>';
}
}
}

View File

@ -2230,11 +2230,9 @@ if ($action == 'create')
}
} else {
if ($id > 0 || !empty($ref)) {
/* *************************************************************************** */
/* */
/* Fiche en mode visu ou edition */
/* */
/* *************************************************************************** */
//
// View or edit mode
//
$now = dol_now();
@ -3104,8 +3102,9 @@ if ($action == 'create')
if (!empty($conf->global->SUPPLIER_INVOICE_WITH_PREDEFINED_PRICES_ONLY)) $senderissupplier = 1;
// Show object lines
if (!empty($object->lines))
if (!empty($object->lines)) {
$ret = $object->printObjectLines($action, $societe, $mysoc, $lineid, 1);
}
$num = count($object->lines);

View File

@ -113,216 +113,6 @@ $boxstatFromHook = '';
// Load translation files required by page
$langs->loadLangs(array('commercial', 'bills', 'orders', 'contracts'));
// Load global statistics of objects
if (empty($user->socid) && empty($conf->global->MAIN_DISABLE_GLOBAL_BOXSTATS)) {
$object = new stdClass();
$parameters = array();
$action = '';
$reshook = $hookmanager->executeHooks('addStatisticLine', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
$boxstatFromHook = $hookmanager->resPrint;
if (empty($reshook)) {
// Cle array returned by the method load_state_board for each line
$keys = array(
'users',
'members',
'expensereports',
'holidays',
'customers',
'prospects',
'suppliers',
'contacts',
'products',
'services',
'projects',
'proposals',
'orders',
'invoices',
'donations',
'supplier_proposals',
'supplier_orders',
'supplier_invoices',
'contracts',
'interventions',
'ticket'
);
// Condition to be checked for each display line dashboard
$conditions = array(
'users' => $user->rights->user->user->lire,
'members' => !empty($conf->adherent->enabled) && $user->rights->adherent->lire,
'customers' => !empty($conf->societe->enabled) && $user->rights->societe->lire && empty($conf->global->SOCIETE_DISABLE_CUSTOMERS) && empty($conf->global->SOCIETE_DISABLE_CUSTOMERS_STATS),
'prospects' => !empty($conf->societe->enabled) && $user->rights->societe->lire && empty($conf->global->SOCIETE_DISABLE_PROSPECTS) && empty($conf->global->SOCIETE_DISABLE_PROSPECTS_STATS),
'suppliers' => !empty($conf->fournisseur->enabled) && $user->rights->fournisseur->lire && empty($conf->global->SOCIETE_DISABLE_SUPPLIERS_STATS),
'contacts' => !empty($conf->societe->enabled) && $user->rights->societe->contact->lire,
'products' => !empty($conf->product->enabled) && $user->rights->produit->lire,
'services' => !empty($conf->service->enabled) && $user->rights->service->lire,
'proposals' => !empty($conf->propal->enabled) && $user->rights->propale->lire,
'orders' => !empty($conf->commande->enabled) && $user->rights->commande->lire,
'invoices' => !empty($conf->facture->enabled) && $user->rights->facture->lire,
'donations' => !empty($conf->don->enabled) && $user->rights->don->lire,
'contracts' => !empty($conf->contrat->enabled) && $user->rights->contrat->lire,
'interventions' => !empty($conf->ficheinter->enabled) && $user->rights->ficheinter->lire,
'supplier_orders' => !empty($conf->supplier_order->enabled) && $user->rights->fournisseur->commande->lire && empty($conf->global->SOCIETE_DISABLE_SUPPLIERS_ORDERS_STATS),
'supplier_invoices' => !empty($conf->supplier_invoice->enabled) && $user->rights->fournisseur->facture->lire && empty($conf->global->SOCIETE_DISABLE_SUPPLIERS_INVOICES_STATS),
'supplier_proposals' => !empty($conf->supplier_proposal->enabled) && $user->rights->supplier_proposal->lire && empty($conf->global->SOCIETE_DISABLE_SUPPLIERS_PROPOSAL_STATS),
'projects' => !empty($conf->projet->enabled) && $user->rights->projet->lire,
'expensereports' => !empty($conf->expensereport->enabled) && $user->rights->expensereport->lire,
'holidays' => !empty($conf->holiday->enabled) && $user->rights->holiday->read,
'ticket' => !empty($conf->ticket->enabled) && $user->rights->ticket->read
);
// Class file containing the method load_state_board for each line
$includes = array(
'users' => DOL_DOCUMENT_ROOT."/user/class/user.class.php",
'members' => DOL_DOCUMENT_ROOT."/adherents/class/adherent.class.php",
'customers' => DOL_DOCUMENT_ROOT."/societe/class/client.class.php",
'prospects' => DOL_DOCUMENT_ROOT."/societe/class/client.class.php",
'suppliers' => DOL_DOCUMENT_ROOT."/fourn/class/fournisseur.class.php",
'contacts' => DOL_DOCUMENT_ROOT."/contact/class/contact.class.php",
'products' => DOL_DOCUMENT_ROOT."/product/class/product.class.php",
'services' => DOL_DOCUMENT_ROOT."/product/class/product.class.php",
'proposals' => DOL_DOCUMENT_ROOT."/comm/propal/class/propal.class.php",
'orders' => DOL_DOCUMENT_ROOT."/commande/class/commande.class.php",
'invoices' => DOL_DOCUMENT_ROOT."/compta/facture/class/facture.class.php",
'donations' => DOL_DOCUMENT_ROOT."/don/class/don.class.php",
'contracts' => DOL_DOCUMENT_ROOT."/contrat/class/contrat.class.php",
'interventions' => DOL_DOCUMENT_ROOT."/fichinter/class/fichinter.class.php",
'supplier_orders' => DOL_DOCUMENT_ROOT."/fourn/class/fournisseur.commande.class.php",
'supplier_invoices' => DOL_DOCUMENT_ROOT."/fourn/class/fournisseur.facture.class.php",
'supplier_proposals' => DOL_DOCUMENT_ROOT."/supplier_proposal/class/supplier_proposal.class.php",
'projects' => DOL_DOCUMENT_ROOT."/projet/class/project.class.php",
'expensereports' => DOL_DOCUMENT_ROOT."/expensereport/class/expensereport.class.php",
'holidays' => DOL_DOCUMENT_ROOT."/holiday/class/holiday.class.php",
'ticket' => DOL_DOCUMENT_ROOT."/ticket/class/ticket.class.php"
);
// Name class containing the method load_state_board for each line
$classes = array(
'users' => 'User',
'members' => 'Adherent',
'customers' => 'Client',
'prospects' => 'Client',
'suppliers' => 'Fournisseur',
'contacts' => 'Contact',
'products' => 'Product',
'services' => 'ProductService',
'proposals' => 'Propal',
'orders' => 'Commande',
'invoices' => 'Facture',
'donations' => 'Don',
'contracts' => 'Contrat',
'interventions' => 'Fichinter',
'supplier_orders' => 'CommandeFournisseur',
'supplier_invoices' => 'FactureFournisseur',
'supplier_proposals' => 'SupplierProposal',
'projects' => 'Project',
'expensereports' => 'ExpenseReport',
'holidays' => 'Holiday',
'ticket' => 'Ticket',
);
// Translation keyword
$titres = array(
'users' => "Users",
'members' => "Members",
'customers' => "ThirdPartyCustomersStats",
'prospects' => "ThirdPartyProspectsStats",
'suppliers' => "Suppliers",
'contacts' => "Contacts",
'products' => "Products",
'services' => "Services",
'proposals' => "CommercialProposalsShort",
'orders' => "CustomersOrders",
'invoices' => "BillsCustomers",
'donations' => "Donations",
'contracts' => "Contracts",
'interventions' => "Interventions",
'supplier_orders' => "SuppliersOrders",
'supplier_invoices' => "SuppliersInvoices",
'supplier_proposals' => "SupplierProposalShort",
'projects' => "Projects",
'expensereports' => "ExpenseReports",
'holidays' => "Holidays",
'ticket' => "Ticket",
);
// Dashboard Link lines
$links = array(
'users' => DOL_URL_ROOT.'/user/list.php',
'members' => DOL_URL_ROOT.'/adherents/list.php?statut=1&mainmenu=members',
'customers' => DOL_URL_ROOT.'/societe/list.php?type=c&mainmenu=companies',
'prospects' => DOL_URL_ROOT.'/societe/list.php?type=p&mainmenu=companies',
'suppliers' => DOL_URL_ROOT.'/societe/list.php?type=f&mainmenu=companies',
'contacts' => DOL_URL_ROOT.'/contact/list.php?mainmenu=companies',
'products' => DOL_URL_ROOT.'/product/list.php?type=0&mainmenu=products',
'services' => DOL_URL_ROOT.'/product/list.php?type=1&mainmenu=products',
'proposals' => DOL_URL_ROOT.'/comm/propal/list.php?mainmenu=commercial&leftmenu=propals',
'orders' => DOL_URL_ROOT.'/commande/list.php?mainmenu=commercial&leftmenu=orders',
'invoices' => DOL_URL_ROOT.'/compta/facture/list.php?mainmenu=billing&leftmenu=customers_bills',
'donations' => DOL_URL_ROOT.'/don/list.php?leftmenu=donations',
'contracts' => DOL_URL_ROOT.'/contrat/list.php?mainmenu=commercial&leftmenu=contracts',
'interventions' => DOL_URL_ROOT.'/fichinter/list.php?mainmenu=commercial&leftmenu=ficheinter',
'supplier_orders' => DOL_URL_ROOT.'/fourn/commande/list.php?mainmenu=commercial&leftmenu=orders_suppliers',
'supplier_invoices' => DOL_URL_ROOT.'/fourn/facture/list.php?mainmenu=billing&leftmenu=suppliers_bills',
'supplier_proposals' => DOL_URL_ROOT.'/supplier_proposal/list.php?mainmenu=commercial&leftmenu=',
'projects' => DOL_URL_ROOT.'/projet/list.php?mainmenu=project',
'expensereports' => DOL_URL_ROOT.'/expensereport/list.php?mainmenu=hrm&leftmenu=expensereport',
'holidays' => DOL_URL_ROOT.'/holiday/list.php?mainmenu=hrm&leftmenu=holiday',
'ticket' => DOL_URL_ROOT.'/ticket/list.php?leftmenu=ticket'
);
// Translation lang files
$langfile = array(
'customers' => "companies",
'contacts' => "companies",
'services' => "products",
'proposals' => "propal",
'invoices' => "bills",
'supplier_orders' => "orders",
'supplier_invoices' => "bills",
'supplier_proposals' => 'supplier_proposal',
'expensereports' => "trips",
'holidays' => "holiday",
);
// Loop and displays each line of table
$boardloaded = array();
foreach ($keys as $val) {
if ($conditions[$val]) {
$boxstatItem = '';
$class = $classes[$val];
// Search in cache if load_state_board is already realized
$classkeyforcache = $class;
if ($classkeyforcache == 'ProductService') {
$classkeyforcache = 'Product'; // ProductService use same load_state_board than Product
}
if (!isset($boardloaded[$classkeyforcache]) || !is_object($boardloaded[$classkeyforcache])) {
include_once $includes[$val]; // Loading a class cost around 1Mb
$board = new $class($db);
$board->load_state_board();
$boardloaded[$class] = $board;
} else {
$board = $boardloaded[$classkeyforcache];
}
$langs->load(empty($langfile[$val]) ? $val : $langfile[$val]);
$text = $langs->trans($titres[$val]);
$boxstatItem .= '<a href="'.$links[$val].'" class="boxstatsindicator thumbstat nobold nounderline">';
$boxstatItem .= '<div class="boxstats">';
$boxstatItem .= '<span class="boxstatstext" title="'.dol_escape_htmltag($text).'">'.$text.'</span><br>';
$boxstatItem .= '<span class="boxstatsindicator">'.img_object("", $board->picto, 'class="inline-block"').' '.(!empty($board->nb[$val]) ? $board->nb[$val] : 0).'</span>';
$boxstatItem .= '</div>';
$boxstatItem .= '</a>';
$boxstatItems[$val] = $boxstatItem;
}
}
}
}
// Dolibarr Working Board with weather
if (empty($conf->global->MAIN_DISABLE_GLOBAL_WORKBOARD)) {
@ -766,7 +556,7 @@ if (empty($conf->global->MAIN_DISABLE_GLOBAL_WORKBOARD)) {
}
if ($showweather && !empty($isIntopOpenedDashBoard)) {
$appendClass = (!empty($conf->global->MAIN_DISABLE_METEO) && $conf->global->MAIN_DISABLE_METEO == 2 ? ' hideonsmartphone' : '');
$appendClass = (!empty($conf->global->MAIN_DISABLE_METEO) && $conf->global->MAIN_DISABLE_METEO == 2 ? ' hideonsmartphone' : '');
$weather = getWeatherStatus($totallate);
$text = '';
@ -917,52 +707,8 @@ $boxlist .= $resultboxes['boxlista'];
$boxlist .= '</div>';
if (empty($user->socid) && empty($conf->global->MAIN_DISABLE_GLOBAL_BOXSTATS)) {
// Remove allready present info in new dash board
if (!empty($conf->global->MAIN_INCLUDE_GLOBAL_STATS_IN_OPENED_DASHBOARD) && is_array($boxstatItems) && count($boxstatItems) > 0) {
foreach ($boxstatItems as $boxstatItemKey => $boxstatItemHtml) {
if (in_array($boxstatItemKey, $globalStatInTopOpenedDashBoard)) {
unset($boxstatItems[$boxstatItemKey]);
}
}
}
if (!empty($boxstatFromHook) || !empty($boxstatItems)) {
$boxstat = '<!-- Database statistics -->'."\n";
$boxstat .= '<div class="box">';
$boxstat .= '<table summary="'.dol_escape_htmltag($langs->trans("DolibarrStateBoard")).'" class="noborder boxtable boxtablenobottom nohover widgetstats" width="100%">';
$boxstat .= '<tr class="liste_titre box_titre">';
$boxstat .= '<td>';
$boxstat .= '<div class="inline-block valignmiddle">'.$langs->trans("DolibarrStateBoard").'</div>';
$boxstat .= '</td>';
$boxstat .= '</tr>';
$boxstat .= '<tr class="nobottom nohover"><td class="tdboxstats nohover flexcontainer">';
$boxstat .= $boxstatFromHook;
if (is_array($boxstatItems) && count($boxstatItems) > 0) {
$boxstat .= implode('', $boxstatItems);
}
$boxstat .= '<a class="boxstatsindicator thumbstat nobold nounderline"><div class="boxstatsempty"></div></a>';
$boxstat .= '<a class="boxstatsindicator thumbstat nobold nounderline"><div class="boxstatsempty"></div></a>';
$boxstat .= '<a class="boxstatsindicator thumbstat nobold nounderline"><div class="boxstatsempty"></div></a>';
$boxstat .= '<a class="boxstatsindicator thumbstat nobold nounderline"><div class="boxstatsempty"></div></a>';
$boxstat .= '<a class="boxstatsindicator thumbstat nobold nounderline"><div class="boxstatsempty"></div></a>';
$boxstat .= '<a class="boxstatsindicator thumbstat nobold nounderline"><div class="boxstatsempty"></div></a>';
$boxstat .= '<a class="boxstatsindicator thumbstat nobold nounderline"><div class="boxstatsempty"></div></a>';
$boxstat .= '<a class="boxstatsindicator thumbstat nobold nounderline"><div class="boxstatsempty"></div></a>';
$boxstat .= '</td></tr>';
$boxstat .= '</table>';
$boxstat .= '</div>';
}
}
$boxlist .= '<div class="secondcolumn fichehalfright boxhalfright" id="boxhalfright">';
$boxlist .= $boxstat;
$boxlist .= $resultboxes['boxlistb'];
$boxlist .= '</div>';

View File

@ -47,6 +47,10 @@ ALTER TABLE llx_bank_account ADD COLUMN ics_transfer varchar(32) NULL;
ALTER TABLE llx_facture MODIFY COLUMN date_valid DATETIME NULL DEFAULT NULL;
-- VMYSQL4.1 INSERT INTO llx_boxes_def (file, entity) SELECT 'box_dolibarr_state_board.php', 1 FROM DUAL WHERE NOT EXISTS (SELECT * FROM llx_boxes_def WHERE file = 'box_dolibarr_state_board.php' AND entity = 1);
ALTER TABLE llx_website ADD COLUMN lastaccess datetime NULL;
ALTER TABLE llx_website ADD COLUMN pageviews_month BIGINT UNSIGNED DEFAULT 0;
ALTER TABLE llx_website ADD COLUMN pageviews_total BIGINT UNSIGNED DEFAULT 0;
@ -100,3 +104,4 @@ ALTER TABLE llx_propal ADD INDEX idx_propal_fk_warehouse(fk_warehouse);
ALTER TABLE llx_product_customer_price ADD COLUMN ref_customer varchar(30);
ALTER TABLE llx_product_customer_price_log ADD COLUMN ref_customer varchar(30);

View File

@ -1598,8 +1598,13 @@ ServiceSetup=Services module setup
ProductServiceSetup=Products and Services modules setup
NumberOfProductShowInSelect=Maximum number of products to show in combo select lists (0=no limit)
ViewProductDescInFormAbility=Display product descriptions in forms (otherwise shown in a tooltip popup)
DoNotAddProductDescAtAddLines=Do not add product description (from product card) on submit add lines on forms
OnProductSelectAddProductDesc=How to use the description of the products when adding a product as a line of a document
AutoFillFormFieldBeforeSubmit=Auto fill the description input field with the description of product
DoNotAutofillButAutoConcat=Do not autofill the input field with description of product. Description of the product will be concatenated to the entered description automatically.
DoNotUseDescriptionOfProdut=Description of the product will never be included into the description of lines of documents
MergePropalProductCard=Activate in product/service Attached Files tab an option to merge product PDF document to proposal PDF azur if product/service is in the proposal
ViewProductDescInThirdpartyLanguageAbility=Display products descriptions in the language of the third party
ViewProductDescInThirdpartyLanguageAbility=Display products descriptions in forms in the language of the third party (otherwise in the language of the user)
UseSearchToSelectProductTooltip=Also if you have a large number of products (> 100 000), you can increase speed by setting constant PRODUCT_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string.
UseSearchToSelectProduct=Wait until you press a key before loading content of product combo list (This may increase performance if you have a large number of products, but it is less convenient)
SetDefaultBarcodeTypeProducts=Default barcode type to use for products

View File

@ -78,6 +78,7 @@ Notify_EXPENSE_REPORT_VALIDATE=Expense report validated (approval required)
Notify_EXPENSE_REPORT_APPROVE=Expense report approved
Notify_HOLIDAY_VALIDATE=Leave request validated (approval required)
Notify_HOLIDAY_APPROVE=Leave request approved
Notify_ACTION_CREATE=Added action to Agenda
SeeModuleSetup=See setup of module %s
NbOfAttachedFiles=Number of attached files/documents
TotalSizeOfAttachedFiles=Total size of attached files/documents
@ -215,6 +216,7 @@ EMailTextExpenseReportValidated=Expense report %s has been validated.
EMailTextExpenseReportApproved=Expense report %s has been approved.
EMailTextHolidayValidated=Leave request %s has been validated.
EMailTextHolidayApproved=Leave request %s has been approved.
EMailTextActionAdded=The action %s has been added to the Agenda.
ImportedWithSet=Importation data set
DolibarrNotification=Automatic notification
ResizeDesc=Enter new width <b>OR</b> new height. Ratio will be kept during resizing...

View File

@ -108,7 +108,7 @@ FillWithLastServiceDates=Fill with last service line dates
MultiPricesAbility=Multiple price segments per product/service (each customer is in one price segment)
MultiPricesNumPrices=Number of prices
DefaultPriceType=Base of prices per default (with versus without tax) when adding new sale prices
AssociatedProductsAbility=Enable Kits (set of other products)
AssociatedProductsAbility=Enable Kits (set of several products)
VariantsAbility=Enable Variants (variations of products, for example color, size)
AssociatedProducts=Kits
AssociatedProductsNumber=Number of products composing this kit

View File

@ -76,15 +76,16 @@ MyActivities=My tasks/activities
MyProjects=My projects
MyProjectsArea=My projects Area
DurationEffective=Effective duration
ProgressDeclared=Declared progress
ProgressDeclared=Declared real progress
TaskProgressSummary=Task progress
CurentlyOpenedTasks=Curently open tasks
TheReportedProgressIsLessThanTheCalculatedProgressionByX=The declared progress is less %s than the calculated progression
TheReportedProgressIsMoreThanTheCalculatedProgressionByX=The declared progress is more %s than the calculated progression
ProgressCalculated=Calculated progress
TheReportedProgressIsLessThanTheCalculatedProgressionByX=The declared real progress is less %s than the progress on consumption
TheReportedProgressIsMoreThanTheCalculatedProgressionByX=The declared real progress is more %s than the progress on consumption
ProgressCalculated=Progress on consumption
WhichIamLinkedTo=which I'm linked to
WhichIamLinkedToProject=which I'm linked to project
Time=Time
TimeConsumed=Consumed
ListOfTasks=List of tasks
GoToListOfTimeConsumed=Go to list of time consumed
GanttView=Gantt View

View File

@ -1598,8 +1598,13 @@ ServiceSetup=خدمات وحدة الإعداد
ProductServiceSetup=منتجات وخدمات إعداد وحدات
NumberOfProductShowInSelect=Maximum number of products to show in combo select lists (0=no limit)
ViewProductDescInFormAbility=Display product descriptions in forms (otherwise shown in a tooltip popup)
DoNotAddProductDescAtAddLines=Do not add product description (from product card) on submit add lines on forms
OnProductSelectAddProductDesc=How to use the description of the products when adding a product as a line of a document
AutoFillFormFieldBeforeSubmit=Auto fill the description input field with the description of product
DoNotAutofillButAutoConcat=Do not autofill the input field with description of product. Description of the product will be concatenated to the entered description automatically.
DoNotUseDescriptionOfProdut=Description of the product will never be included into the description of lines of documents
MergePropalProductCard=في تنشيط المنتج / الخدمة المرفقة التبويب ملفات خيار دمج المستند المنتج PDF إلى اقتراح PDF دازور إذا كان المنتج / الخدمة في الاقتراح
ViewProductDescInThirdpartyLanguageAbility=Display products descriptions in the language of the third party
ViewProductDescInThirdpartyLanguageAbility=Display products descriptions in forms in the language of the third party (otherwise in the language of the user)
UseSearchToSelectProductTooltip=Also if you have a large number of products (> 100 000), you can increase speed by setting constant PRODUCT_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string.
UseSearchToSelectProduct=Wait until you press a key before loading content of product combo list (This may increase performance if you have a large number of products, but it is less convenient)
SetDefaultBarcodeTypeProducts=النوع الافتراضي لاستخدام الباركود للمنتجات

View File

@ -78,6 +78,7 @@ Notify_EXPENSE_REPORT_VALIDATE=Expense report validated (approval required)
Notify_EXPENSE_REPORT_APPROVE=Expense report approved
Notify_HOLIDAY_VALIDATE=Leave request validated (approval required)
Notify_HOLIDAY_APPROVE=Leave request approved
Notify_ACTION_CREATE=Added action to Agenda
SeeModuleSetup=انظر إعداد وحدة٪ الصورة
NbOfAttachedFiles=عدد الملفات المرفقة / وثائق
TotalSizeOfAttachedFiles=اجمالى حجم الملفات المرفقة / وثائق
@ -215,6 +216,7 @@ EMailTextExpenseReportValidated=Expense report %s has been validated.
EMailTextExpenseReportApproved=Expense report %s has been approved.
EMailTextHolidayValidated=Leave request %s has been validated.
EMailTextHolidayApproved=Leave request %s has been approved.
EMailTextActionAdded=The action %s has been added to the Agenda.
ImportedWithSet=استيراد مجموعة البيانات
DolibarrNotification=إشعار تلقائي
ResizeDesc=أدخل عرض جديدة <b>أو</b> ارتفاع جديد. وستبقى نسبة خلال تغيير حجم...

View File

@ -108,7 +108,7 @@ FillWithLastServiceDates=Fill with last service line dates
MultiPricesAbility=Multiple price segments per product/service (each customer is in one price segment)
MultiPricesNumPrices=عدد من السعر
DefaultPriceType=Base of prices per default (with versus without tax) when adding new sale prices
AssociatedProductsAbility=Enable Kits (set of other products)
AssociatedProductsAbility=Enable Kits (set of several products)
VariantsAbility=Enable Variants (variations of products, for example color, size)
AssociatedProducts=Kits
AssociatedProductsNumber=Number of products composing this kit

View File

@ -76,15 +76,16 @@ MyActivities=بلدي المهام والأنشطة
MyProjects=بلدي المشاريع
MyProjectsArea=My projects Area
DurationEffective=فعالة لمدة
ProgressDeclared=أعلن التقدم
ProgressDeclared=Declared real progress
TaskProgressSummary=Task progress
CurentlyOpenedTasks=Curently open tasks
TheReportedProgressIsLessThanTheCalculatedProgressionByX=The declared progress is less %s than the calculated progression
TheReportedProgressIsMoreThanTheCalculatedProgressionByX=The declared progress is more %s than the calculated progression
ProgressCalculated=تقدم تحسب
TheReportedProgressIsLessThanTheCalculatedProgressionByX=The declared real progress is less %s than the progress on consumption
TheReportedProgressIsMoreThanTheCalculatedProgressionByX=The declared real progress is more %s than the progress on consumption
ProgressCalculated=Progress on consumption
WhichIamLinkedTo=which I'm linked to
WhichIamLinkedToProject=which I'm linked to project
Time=وقت
TimeConsumed=Consumed
ListOfTasks=List of tasks
GoToListOfTimeConsumed=Go to list of time consumed
GanttView=Gantt View

View File

@ -1598,8 +1598,13 @@ ServiceSetup=Services module setup
ProductServiceSetup=Products and Services modules setup
NumberOfProductShowInSelect=Maximum number of products to show in combo select lists (0=no limit)
ViewProductDescInFormAbility=Display product descriptions in forms (otherwise shown in a tooltip popup)
DoNotAddProductDescAtAddLines=Do not add product description (from product card) on submit add lines on forms
OnProductSelectAddProductDesc=How to use the description of the products when adding a product as a line of a document
AutoFillFormFieldBeforeSubmit=Auto fill the description input field with the description of product
DoNotAutofillButAutoConcat=Do not autofill the input field with description of product. Description of the product will be concatenated to the entered description automatically.
DoNotUseDescriptionOfProdut=Description of the product will never be included into the description of lines of documents
MergePropalProductCard=Activate in product/service Attached Files tab an option to merge product PDF document to proposal PDF azur if product/service is in the proposal
ViewProductDescInThirdpartyLanguageAbility=Display products descriptions in the language of the third party
ViewProductDescInThirdpartyLanguageAbility=Display products descriptions in forms in the language of the third party (otherwise in the language of the user)
UseSearchToSelectProductTooltip=Also if you have a large number of products (> 100 000), you can increase speed by setting constant PRODUCT_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string.
UseSearchToSelectProduct=Wait until you press a key before loading content of product combo list (This may increase performance if you have a large number of products, but it is less convenient)
SetDefaultBarcodeTypeProducts=Default barcode type to use for products

View File

@ -78,6 +78,7 @@ Notify_EXPENSE_REPORT_VALIDATE=Expense report validated (approval required)
Notify_EXPENSE_REPORT_APPROVE=Expense report approved
Notify_HOLIDAY_VALIDATE=Leave request validated (approval required)
Notify_HOLIDAY_APPROVE=Leave request approved
Notify_ACTION_CREATE=Added action to Agenda
SeeModuleSetup=See setup of module %s
NbOfAttachedFiles=Number of attached files/documents
TotalSizeOfAttachedFiles=Total size of attached files/documents
@ -215,6 +216,7 @@ EMailTextExpenseReportValidated=Expense report %s has been validated.
EMailTextExpenseReportApproved=Expense report %s has been approved.
EMailTextHolidayValidated=Leave request %s has been validated.
EMailTextHolidayApproved=Leave request %s has been approved.
EMailTextActionAdded=The action %s has been added to the Agenda.
ImportedWithSet=Importation data set
DolibarrNotification=Automatic notification
ResizeDesc=Enter new width <b>OR</b> new height. Ratio will be kept during resizing...

View File

@ -108,7 +108,7 @@ FillWithLastServiceDates=Fill with last service line dates
MultiPricesAbility=Multiple price segments per product/service (each customer is in one price segment)
MultiPricesNumPrices=Number of prices
DefaultPriceType=Base of prices per default (with versus without tax) when adding new sale prices
AssociatedProductsAbility=Enable Kits (set of other products)
AssociatedProductsAbility=Enable Kits (set of several products)
VariantsAbility=Enable Variants (variations of products, for example color, size)
AssociatedProducts=Kits
AssociatedProductsNumber=Number of products composing this kit

View File

@ -76,15 +76,16 @@ MyActivities=My tasks/activities
MyProjects=My projects
MyProjectsArea=My projects Area
DurationEffective=Effective duration
ProgressDeclared=Declared progress
ProgressDeclared=Declared real progress
TaskProgressSummary=Task progress
CurentlyOpenedTasks=Curently open tasks
TheReportedProgressIsLessThanTheCalculatedProgressionByX=The declared progress is less %s than the calculated progression
TheReportedProgressIsMoreThanTheCalculatedProgressionByX=The declared progress is more %s than the calculated progression
ProgressCalculated=Calculated progress
TheReportedProgressIsLessThanTheCalculatedProgressionByX=The declared real progress is less %s than the progress on consumption
TheReportedProgressIsMoreThanTheCalculatedProgressionByX=The declared real progress is more %s than the progress on consumption
ProgressCalculated=Progress on consumption
WhichIamLinkedTo=which I'm linked to
WhichIamLinkedToProject=which I'm linked to project
Time=Time
TimeConsumed=Consumed
ListOfTasks=List of tasks
GoToListOfTimeConsumed=Go to list of time consumed
GanttView=Gantt View

View File

@ -1598,8 +1598,13 @@ ServiceSetup=Настройка на модулa за услуги
ProductServiceSetup=Настройка на модула за продукти и услуги
NumberOfProductShowInSelect=Максимален брой продукти за показване в комбинирани списъци за избор (0 = без ограничение)
ViewProductDescInFormAbility=Показване на описанията на продуктите във формуляри (в противен случай се показват в изскачащи подсказки)
DoNotAddProductDescAtAddLines=Do not add product description (from product card) on submit add lines on forms
OnProductSelectAddProductDesc=How to use the description of the products when adding a product as a line of a document
AutoFillFormFieldBeforeSubmit=Auto fill the description input field with the description of product
DoNotAutofillButAutoConcat=Do not autofill the input field with description of product. Description of the product will be concatenated to the entered description automatically.
DoNotUseDescriptionOfProdut=Description of the product will never be included into the description of lines of documents
MergePropalProductCard=Активиране на опция за обединяване на продуктови PDF документи налични в секцията "Прикачени файлове и документи" в раздела "Свързани файлове" на търговско предложение, ако се продукт / услуга в предложението и модел за документи Azur
ViewProductDescInThirdpartyLanguageAbility=Показване на описанията на продуктите в езика на контрагента
ViewProductDescInThirdpartyLanguageAbility=Display products descriptions in forms in the language of the third party (otherwise in the language of the user)
UseSearchToSelectProductTooltip=Също така, ако имате голям брой продукти (> 100 000) може да увеличите скоростта като зададете константата PRODUCT_DONOTSEARCH_ANYWHERE да бъде със стойност "1" в Настройки - Други настройки. След това търсенето ще бъде ограничено до началото на низ.
UseSearchToSelectProduct=Изчакване, докато бъде натиснат клавиш преди да се зареди съдържанието на комбинирания списък с продукти (това може да увеличи производителността, ако имате голям брой продукти, но е по-малко удобно)
SetDefaultBarcodeTypeProducts=Тип баркод по подразбиране, който да се използва за продукти

View File

@ -78,6 +78,7 @@ Notify_EXPENSE_REPORT_VALIDATE=Разходния отчет е валидира
Notify_EXPENSE_REPORT_APPROVE=Разходният отчет е одобрен
Notify_HOLIDAY_VALIDATE=Молбата за отпуск е валидирана (изисква се одобрение)
Notify_HOLIDAY_APPROVE=Молбата за отпуск е одобрена
Notify_ACTION_CREATE=Added action to Agenda
SeeModuleSetup=Вижте настройка на модул %s
NbOfAttachedFiles=Брой на прикачените файлове / документи
TotalSizeOfAttachedFiles=Общ размер на прикачените файлове / документи
@ -215,6 +216,7 @@ EMailTextExpenseReportValidated=Разходен отчет %s е валидир
EMailTextExpenseReportApproved=Разходен отчет %s е одобрен.
EMailTextHolidayValidated=Молба за отпуск %s е валидирана.
EMailTextHolidayApproved=Молба за отпуск %s е одобрена.
EMailTextActionAdded=The action %s has been added to the Agenda.
ImportedWithSet=Набор от данни за импортиране
DolibarrNotification=Автоматично известяване
ResizeDesc=Въведете нова ширина <b>или</b> нова височина. Съотношението ще се запази по време преоразмеряването...

View File

@ -108,7 +108,7 @@ FillWithLastServiceDates=Fill with last service line dates
MultiPricesAbility=Множество ценови сегменти за продукт / услуга (всеки клиент е в един ценови сегмент)
MultiPricesNumPrices=Брой цени
DefaultPriceType=Base of prices per default (with versus without tax) when adding new sale prices
AssociatedProductsAbility=Enable Kits (set of other products)
AssociatedProductsAbility=Enable Kits (set of several products)
VariantsAbility=Enable Variants (variations of products, for example color, size)
AssociatedProducts=Kits
AssociatedProductsNumber=Number of products composing this kit

View File

@ -76,15 +76,16 @@ MyActivities=Мои задачи / дейности
MyProjects=Мои проекти
MyProjectsArea=Секция с мои проекти
DurationEffective=Ефективна продължителност
ProgressDeclared=Деклариран напредък
ProgressDeclared=Declared real progress
TaskProgressSummary=Напредък на задачата
CurentlyOpenedTasks=Текущи активни задачи
TheReportedProgressIsLessThanTheCalculatedProgressionByX=Декларираният напредък е по-малко %s от изчисления напредък
TheReportedProgressIsMoreThanTheCalculatedProgressionByX=Декларираният напредък е повече %s от изчисления напредък
ProgressCalculated=Изчислен напредък
TheReportedProgressIsLessThanTheCalculatedProgressionByX=The declared real progress is less %s than the progress on consumption
TheReportedProgressIsMoreThanTheCalculatedProgressionByX=The declared real progress is more %s than the progress on consumption
ProgressCalculated=Progress on consumption
WhichIamLinkedTo=с които съм свързан
WhichIamLinkedToProject=с които съм свързан в проект
Time=Време
TimeConsumed=Consumed
ListOfTasks=Списък със задачи
GoToListOfTimeConsumed=Показване на списъка с изразходвано време
GanttView=Gantt диаграма

View File

@ -1598,8 +1598,13 @@ ServiceSetup=Services module setup
ProductServiceSetup=Products and Services modules setup
NumberOfProductShowInSelect=Maximum number of products to show in combo select lists (0=no limit)
ViewProductDescInFormAbility=Display product descriptions in forms (otherwise shown in a tooltip popup)
DoNotAddProductDescAtAddLines=Do not add product description (from product card) on submit add lines on forms
OnProductSelectAddProductDesc=How to use the description of the products when adding a product as a line of a document
AutoFillFormFieldBeforeSubmit=Auto fill the description input field with the description of product
DoNotAutofillButAutoConcat=Do not autofill the input field with description of product. Description of the product will be concatenated to the entered description automatically.
DoNotUseDescriptionOfProdut=Description of the product will never be included into the description of lines of documents
MergePropalProductCard=Activate in product/service Attached Files tab an option to merge product PDF document to proposal PDF azur if product/service is in the proposal
ViewProductDescInThirdpartyLanguageAbility=Display products descriptions in the language of the third party
ViewProductDescInThirdpartyLanguageAbility=Display products descriptions in forms in the language of the third party (otherwise in the language of the user)
UseSearchToSelectProductTooltip=Also if you have a large number of products (> 100 000), you can increase speed by setting constant PRODUCT_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string.
UseSearchToSelectProduct=Wait until you press a key before loading content of product combo list (This may increase performance if you have a large number of products, but it is less convenient)
SetDefaultBarcodeTypeProducts=Default barcode type to use for products

View File

@ -78,6 +78,7 @@ Notify_EXPENSE_REPORT_VALIDATE=Expense report validated (approval required)
Notify_EXPENSE_REPORT_APPROVE=Expense report approved
Notify_HOLIDAY_VALIDATE=Leave request validated (approval required)
Notify_HOLIDAY_APPROVE=Leave request approved
Notify_ACTION_CREATE=Added action to Agenda
SeeModuleSetup=See setup of module %s
NbOfAttachedFiles=Number of attached files/documents
TotalSizeOfAttachedFiles=Total size of attached files/documents
@ -215,6 +216,7 @@ EMailTextExpenseReportValidated=Expense report %s has been validated.
EMailTextExpenseReportApproved=Expense report %s has been approved.
EMailTextHolidayValidated=Leave request %s has been validated.
EMailTextHolidayApproved=Leave request %s has been approved.
EMailTextActionAdded=The action %s has been added to the Agenda.
ImportedWithSet=Importation data set
DolibarrNotification=Automatic notification
ResizeDesc=Enter new width <b>OR</b> new height. Ratio will be kept during resizing...

View File

@ -108,7 +108,7 @@ FillWithLastServiceDates=Fill with last service line dates
MultiPricesAbility=Multiple price segments per product/service (each customer is in one price segment)
MultiPricesNumPrices=Number of prices
DefaultPriceType=Base of prices per default (with versus without tax) when adding new sale prices
AssociatedProductsAbility=Enable Kits (set of other products)
AssociatedProductsAbility=Enable Kits (set of several products)
VariantsAbility=Enable Variants (variations of products, for example color, size)
AssociatedProducts=Kits
AssociatedProductsNumber=Number of products composing this kit

View File

@ -76,15 +76,16 @@ MyActivities=My tasks/activities
MyProjects=My projects
MyProjectsArea=My projects Area
DurationEffective=Effective duration
ProgressDeclared=Declared progress
ProgressDeclared=Declared real progress
TaskProgressSummary=Task progress
CurentlyOpenedTasks=Curently open tasks
TheReportedProgressIsLessThanTheCalculatedProgressionByX=The declared progress is less %s than the calculated progression
TheReportedProgressIsMoreThanTheCalculatedProgressionByX=The declared progress is more %s than the calculated progression
ProgressCalculated=Calculated progress
TheReportedProgressIsLessThanTheCalculatedProgressionByX=The declared real progress is less %s than the progress on consumption
TheReportedProgressIsMoreThanTheCalculatedProgressionByX=The declared real progress is more %s than the progress on consumption
ProgressCalculated=Progress on consumption
WhichIamLinkedTo=which I'm linked to
WhichIamLinkedToProject=which I'm linked to project
Time=Time
TimeConsumed=Consumed
ListOfTasks=List of tasks
GoToListOfTimeConsumed=Go to list of time consumed
GanttView=Gantt View

View File

@ -1598,8 +1598,13 @@ ServiceSetup=Services module setup
ProductServiceSetup=Products and Services modules setup
NumberOfProductShowInSelect=Maximum number of products to show in combo select lists (0=no limit)
ViewProductDescInFormAbility=Display product descriptions in forms (otherwise shown in a tooltip popup)
DoNotAddProductDescAtAddLines=Do not add product description (from product card) on submit add lines on forms
OnProductSelectAddProductDesc=How to use the description of the products when adding a product as a line of a document
AutoFillFormFieldBeforeSubmit=Auto fill the description input field with the description of product
DoNotAutofillButAutoConcat=Do not autofill the input field with description of product. Description of the product will be concatenated to the entered description automatically.
DoNotUseDescriptionOfProdut=Description of the product will never be included into the description of lines of documents
MergePropalProductCard=Activate in product/service Attached Files tab an option to merge product PDF document to proposal PDF azur if product/service is in the proposal
ViewProductDescInThirdpartyLanguageAbility=Display products descriptions in the language of the third party
ViewProductDescInThirdpartyLanguageAbility=Display products descriptions in forms in the language of the third party (otherwise in the language of the user)
UseSearchToSelectProductTooltip=Also if you have a large number of products (> 100 000), you can increase speed by setting constant PRODUCT_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string.
UseSearchToSelectProduct=Wait until you press a key before loading content of product combo list (This may increase performance if you have a large number of products, but it is less convenient)
SetDefaultBarcodeTypeProducts=Default barcode type to use for products

View File

@ -78,6 +78,7 @@ Notify_EXPENSE_REPORT_VALIDATE=Expense report validated (approval required)
Notify_EXPENSE_REPORT_APPROVE=Expense report approved
Notify_HOLIDAY_VALIDATE=Leave request validated (approval required)
Notify_HOLIDAY_APPROVE=Leave request approved
Notify_ACTION_CREATE=Added action to Agenda
SeeModuleSetup=See setup of module %s
NbOfAttachedFiles=Number of attached files/documents
TotalSizeOfAttachedFiles=Total size of attached files/documents
@ -215,6 +216,7 @@ EMailTextExpenseReportValidated=Expense report %s has been validated.
EMailTextExpenseReportApproved=Expense report %s has been approved.
EMailTextHolidayValidated=Leave request %s has been validated.
EMailTextHolidayApproved=Leave request %s has been approved.
EMailTextActionAdded=The action %s has been added to the Agenda.
ImportedWithSet=Importation data set
DolibarrNotification=Automatic notification
ResizeDesc=Enter new width <b>OR</b> new height. Ratio will be kept during resizing...

View File

@ -108,7 +108,7 @@ FillWithLastServiceDates=Fill with last service line dates
MultiPricesAbility=Multiple price segments per product/service (each customer is in one price segment)
MultiPricesNumPrices=Number of prices
DefaultPriceType=Base of prices per default (with versus without tax) when adding new sale prices
AssociatedProductsAbility=Enable Kits (set of other products)
AssociatedProductsAbility=Enable Kits (set of several products)
VariantsAbility=Enable Variants (variations of products, for example color, size)
AssociatedProducts=Kits
AssociatedProductsNumber=Number of products composing this kit

View File

@ -76,15 +76,16 @@ MyActivities=My tasks/activities
MyProjects=My projects
MyProjectsArea=My projects Area
DurationEffective=Effective duration
ProgressDeclared=Declared progress
ProgressDeclared=Declared real progress
TaskProgressSummary=Task progress
CurentlyOpenedTasks=Curently open tasks
TheReportedProgressIsLessThanTheCalculatedProgressionByX=The declared progress is less %s than the calculated progression
TheReportedProgressIsMoreThanTheCalculatedProgressionByX=The declared progress is more %s than the calculated progression
ProgressCalculated=Calculated progress
TheReportedProgressIsLessThanTheCalculatedProgressionByX=The declared real progress is less %s than the progress on consumption
TheReportedProgressIsMoreThanTheCalculatedProgressionByX=The declared real progress is more %s than the progress on consumption
ProgressCalculated=Progress on consumption
WhichIamLinkedTo=which I'm linked to
WhichIamLinkedToProject=which I'm linked to project
Time=Time
TimeConsumed=Consumed
ListOfTasks=List of tasks
GoToListOfTimeConsumed=Go to list of time consumed
GanttView=Gantt View

View File

@ -1598,8 +1598,13 @@ ServiceSetup=Services module setup
ProductServiceSetup=Products and Services modules setup
NumberOfProductShowInSelect=Maximum number of products to show in combo select lists (0=no limit)
ViewProductDescInFormAbility=Display product descriptions in forms (otherwise shown in a tooltip popup)
DoNotAddProductDescAtAddLines=Do not add product description (from product card) on submit add lines on forms
OnProductSelectAddProductDesc=How to use the description of the products when adding a product as a line of a document
AutoFillFormFieldBeforeSubmit=Auto fill the description input field with the description of product
DoNotAutofillButAutoConcat=Do not autofill the input field with description of product. Description of the product will be concatenated to the entered description automatically.
DoNotUseDescriptionOfProdut=Description of the product will never be included into the description of lines of documents
MergePropalProductCard=Activate in product/service Attached Files tab an option to merge product PDF document to proposal PDF azur if product/service is in the proposal
ViewProductDescInThirdpartyLanguageAbility=Display products descriptions in the language of the third party
ViewProductDescInThirdpartyLanguageAbility=Display products descriptions in forms in the language of the third party (otherwise in the language of the user)
UseSearchToSelectProductTooltip=Also if you have a large number of products (> 100 000), you can increase speed by setting constant PRODUCT_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string.
UseSearchToSelectProduct=Wait until you press a key before loading content of product combo list (This may increase performance if you have a large number of products, but it is less convenient)
SetDefaultBarcodeTypeProducts=Default barcode type to use for products

View File

@ -78,6 +78,7 @@ Notify_EXPENSE_REPORT_VALIDATE=Expense report validated (approval required)
Notify_EXPENSE_REPORT_APPROVE=Expense report approved
Notify_HOLIDAY_VALIDATE=Leave request validated (approval required)
Notify_HOLIDAY_APPROVE=Leave request approved
Notify_ACTION_CREATE=Added action to Agenda
SeeModuleSetup=See setup of module %s
NbOfAttachedFiles=Number of attached files/documents
TotalSizeOfAttachedFiles=Total size of attached files/documents
@ -215,6 +216,7 @@ EMailTextExpenseReportValidated=Expense report %s has been validated.
EMailTextExpenseReportApproved=Expense report %s has been approved.
EMailTextHolidayValidated=Leave request %s has been validated.
EMailTextHolidayApproved=Leave request %s has been approved.
EMailTextActionAdded=The action %s has been added to the Agenda.
ImportedWithSet=Importation data set
DolibarrNotification=Automatic notification
ResizeDesc=Enter new width <b>OR</b> new height. Ratio will be kept during resizing...

View File

@ -108,7 +108,7 @@ FillWithLastServiceDates=Fill with last service line dates
MultiPricesAbility=Multiple price segments per product/service (each customer is in one price segment)
MultiPricesNumPrices=Number of prices
DefaultPriceType=Base of prices per default (with versus without tax) when adding new sale prices
AssociatedProductsAbility=Enable Kits (set of other products)
AssociatedProductsAbility=Enable Kits (set of several products)
VariantsAbility=Enable Variants (variations of products, for example color, size)
AssociatedProducts=Kits
AssociatedProductsNumber=Number of products composing this kit

View File

@ -76,15 +76,16 @@ MyActivities=Moji zadaci/aktivnosti
MyProjects=Moji projekti
MyProjectsArea=My projects Area
DurationEffective=Efektivno trajanje
ProgressDeclared=Declared progress
ProgressDeclared=Declared real progress
TaskProgressSummary=Task progress
CurentlyOpenedTasks=Curently open tasks
TheReportedProgressIsLessThanTheCalculatedProgressionByX=The declared progress is less %s than the calculated progression
TheReportedProgressIsMoreThanTheCalculatedProgressionByX=The declared progress is more %s than the calculated progression
ProgressCalculated=Calculated progress
TheReportedProgressIsLessThanTheCalculatedProgressionByX=The declared real progress is less %s than the progress on consumption
TheReportedProgressIsMoreThanTheCalculatedProgressionByX=The declared real progress is more %s than the progress on consumption
ProgressCalculated=Progress on consumption
WhichIamLinkedTo=which I'm linked to
WhichIamLinkedToProject=which I'm linked to project
Time=Vrijeme
TimeConsumed=Consumed
ListOfTasks=List of tasks
GoToListOfTimeConsumed=Go to list of time consumed
GanttView=Gantt View

View File

@ -210,7 +210,7 @@ TransactionNumShort=Número de transacció
AccountingCategory=Grups personalitzats
GroupByAccountAccounting=Agrupa per compte major
GroupBySubAccountAccounting=Agrupa per subcompte comptable
AccountingAccountGroupsDesc=Pots definir aquí alguns grups de compte comptable. S'utilitzaran per a informes comptables personalitzats.
AccountingAccountGroupsDesc=Podeu definir aquí alguns grups de comptes comptables. S'utilitzaran per a informes comptables personalitzats.
ByAccounts=Per comptes
ByPredefinedAccountGroups=Per grups predefinits
ByPersonalizedAccountGroups=Per grups personalitzats
@ -224,7 +224,7 @@ ConfirmDeleteMvt=Això suprimirà totes les línies d'operació de la comptabili
ConfirmDeleteMvtPartial=Això suprimirà la transacció de la comptabilitat (se suprimiran totes les línies doperació relacionades amb la mateixa transacció)
FinanceJournal=Diari de finances
ExpenseReportsJournal=Informe-diari de despeses
DescFinanceJournal=Finance journal including all the types of payments by bank account
DescFinanceJournal=Diari financer que inclou tots els tipus de pagaments per compte bancari
DescJournalOnlyBindedVisible=Aquesta és una vista de registre que està vinculada a un compte comptable i que es pot registrar als diaris i llibres majors.
VATAccountNotDefined=Comptes comptables d'IVA sense definir
ThirdpartyAccountNotDefined=Comptes comptables de tercers (clients o proveïdors) sense definir

View File

@ -32,7 +32,7 @@ PurgeSessions=Purga de sessions
ConfirmPurgeSessions=Estàs segur de voler purgar totes les sessions? Es desconnectaran tots els usuaris (excepte tu mateix)
NoSessionListWithThisHandler=El gestor de sessions configurat al vostre PHP no permet llistar totes les sessions en execució.
LockNewSessions=Bloquejar connexions noves
ConfirmLockNewSessions=Esteu segur de voler restringir l'accés a Dolibarr únicament al seu usuari? Només el login <b>%s</b> podrà connectar si confirma.
ConfirmLockNewSessions=Esteu segur que voleu restringir qualsevol nova connexió a Dolibarr només a vosaltres mateixos? Només l'usuari <b> %s </b> podrà connectar-se després d'això.
UnlockNewSessions=Eliminar bloqueig de connexions
YourSession=La seva sessió
Sessions=Sessions d'usuaris
@ -102,7 +102,7 @@ NextValueForReplacements=Pròxim valor (rectificatives)
MustBeLowerThanPHPLimit=Nota: actualment la vostra configuració PHP limita la mida màxima de fitxers per a la pujada a <b> %s </b> %s, independentment del valor d'aquest paràmetre.
NoMaxSizeByPHPLimit=Cap limitació interna en el seu servidor PHP
MaxSizeForUploadedFiles=Mida màxima per als fitxers a pujar (0 per a no permetre cap pujada)
UseCaptchaCode=Utilització de codi gràfic (CAPTCHA) en el login
UseCaptchaCode=Utilitzeu el codi gràfic (CAPTCHA) a la pàgina d'inici de sessió
AntiVirusCommand=Ruta completa cap al comandament antivirus
AntiVirusCommandExample=Exemple per al dimoni ClamAv (requereix clamav-daemon): /usr/bin/clamdscan<br>Exemple per a ClamWin (molt molt lent): c:\\Progra~1\\ClamWin\\bin\\clamscan.exe
AntiVirusParam= Paràmetres complementaris en la línia de comandes
@ -333,7 +333,7 @@ StepNb=Pas %s
FindPackageFromWebSite=Cerca un paquet que proporcioni les funcions que necessites (per exemple, al lloc web oficial %s).
DownloadPackageFromWebSite=Descarrega el paquet (per exemple, des del lloc web oficial %s).
UnpackPackageInDolibarrRoot=Desempaqueta/descomprimeix els fitxers empaquetats al teu directori del servidor Dolibarr: <b> %s </b>
UnpackPackageInModulesRoot=Per instal·lar un mòdul extern, descomprimir l'arxiu en el directori del servidor dedicat als mòduls: <br><b>%s</b>
UnpackPackageInModulesRoot=Per a desplegar/instal·lar un mòdul extern, descomprimiu els fitxers empaquetats al directori del servidor dedicat a mòduls externs: <br><b>%s</b>
SetupIsReadyForUse=La instal·lació del mòdul ha finalitzat. No obstant, ha d'habilitar i configurar el mòdul en la seva aplicació, aneu a la pàgina per configurar els mòduls: <a href="%s">%s</a>.
NotExistsDirect=No s'ha definit el directori arrel alternatiu a un directori existent.<br>
InfDirAlt=Des de la versió 3, és possible definir un directori arrel alternatiu. Això li permet emmagatzemar, en un directori dedicat, plug-ins i plantilles personalitzades.<br>Només ha de crear un directori a l'arrel de Dolibarr (per exemple: custom).<br>
@ -366,7 +366,7 @@ UMask=Paràmetre UMask de nous fitxers en Unix/Linux/BSD.
UMaskExplanation=Aquest paràmetre determina els drets dels arxius creats en el servidor Dolibarr (durant la pujada, per exemple).<br>Aquest ha de ser el valor octal (per exemple, 0666 significa lectura/escriptura per a tots).<br>Aquest paràmetre no té cap efecte sobre un servidor Windows.
SeeWikiForAllTeam=Mira a la pàgina Wiki per veure una llista de contribuents i la seva organització
UseACacheDelay= Demora en memòria cau de l'exportació en segons (0 o buit sense memòria)
DisableLinkToHelpCenter=Amagar l'enllaç "Necessita suport o ajuda" a la pàgina de login
DisableLinkToHelpCenter=Amaga l'enllaç "<b>Necessiteu ajuda o assistència</b>" a la pàgina d'inici de sessió
DisableLinkToHelp=Amaga l'enllaç a l'ajuda en línia "<b>%s</b>"
AddCRIfTooLong=No hi ha cap tall de text automàtic, el text massa llarg no es mostrarà als documents. Si cal, afegiu devolucions de carro a l'àrea de text.
ConfirmPurge=Esteu segur que voleu executar aquesta purga? <br>Això suprimirà permanentment tots els fitxers de dades sense opció de restaurar-los (fitxers del GED, fitxers adjunts...).
@ -451,9 +451,9 @@ ExtrafieldParamHelpSeparator=Manteniu-lo buit per un simple separador <br> Confi
LibraryToBuildPDF=Llibreria utilitzada per a la generació de PDF
LocalTaxDesc=Alguns països apliquen 2 o 3 impostos en cada línia de factura. Si aquest és el cas, escull el tipus pel segon i el tercer impost i el seu valor. Els tipus possibles són: <br>1: impostos locals aplicats en productes i serveis sense IVA (l'impost local serà calculat en el total sense impostos)<br>2: impost local aplicat en productes i serveis amb IVA (l'impost local serà calculat amb el total + l'impost principal)<br>3: impost local aplicat en productes sense IVA (l'impost local serà calculat en el total sense impost)<br>4: impost local aplicat en productes amb IVA (l'impost local serà calculat amb el total + l'impost principal)<br>5: impost local aplicat en serveis sense IVA (l'impost local serà calculat amb el total sense impost)<br>6: impost local aplicat en serveis amb IVA inclòs (l'impost local serà calculat amb el total + IVA)
SMS=SMS
LinkToTestClickToDial=Introduïu un número de telèfon que voleu marcar per provar l'enllaç de crida ClickToDial per a l'usuari <strong>%s</strong>
LinkToTestClickToDial=Introduïu un número de telèfon per a trucar per a mostrar un enllaç per a provar l'URL ClickToDial per a l'usuari <strong>%s</strong>
RefreshPhoneLink=Actualitza l'enllaç
LinkToTest=Enllaç seleccionable per l'usuari <strong>%s</strong> (feu clic al número per provar)
LinkToTest=Enllaç clicable generat per l'usuari <strong>%s</strong> (feu clic al número de telèfon per a provar-lo)
KeepEmptyToUseDefault=Deixa-ho buit per usar el valor per defecte
KeepThisEmptyInMostCases=En la majoria dels casos, pots deixar aquest camp buit.
DefaultLink=Enllaç per defecte
@ -482,7 +482,7 @@ ModuleCompanyCodePanicum=Retorna un codi comptable buit.
ModuleCompanyCodeDigitaria=Retorna un codi comptable compost d'acord amb el nom del tercer. El codi consisteix en un prefix, que pot definir-se, en primera posició, seguit del nombre de caràcters que es defineixi com a codi del tercer.
ModuleCompanyCodeCustomerDigitaria=%s seguit pel nom abreujat del client pel nombre de caràcters: %s pel codi del compte de client
ModuleCompanyCodeSupplierDigitaria=%s seguit pel nom abreujat del proveïdor pel nombre de caràcters: %s pel codi del compte de proveïdor
Use3StepsApproval=Per defecte, les comandes de compra necessiten ser creades i aprovades per 2 usuaris diferents (el primer pas/usuari és per a crear i un altre pas/usuari per aprovar. Noteu que si un usuari te permisos tant per crear com per aprovar, un sol pas/usuari serà suficient). Amb aquesta opció, tens la possibilitat d'introduir un tercer pas/usuari per a l'aprovació, si l'import es superior a un determinat valor (d'aquesta manera són necessaris 3 passos: 1=validació, 2=primera aprovació i 3=segona aprovació si l'import és suficient).<br>Deixa-ho en blanc si només vols un nivell d'aprovació (2 passos); posa un valor encara que sigui molt baix (0,1) si vols una segona aprovació (3 passos).
Use3StepsApproval=Per defecte, les comandes de compra necessiten ser creades i aprovades per 2 usuaris diferents (el primer pas/usuari és per a crear i un altre pas/usuari per a aprovar. Noteu que si un usuari te permisos tant per a crear com per a aprovar, un sol pas/usuari serà suficient). Amb aquesta opció, tens la possibilitat d'introduir un tercer pas/usuari per a l'aprovació, si l'import es superior a un determinat valor (d'aquesta manera són necessaris 3 passos: 1=validació, 2=primera aprovació i 3=segona aprovació si l'import és suficient).<br>Deixa-ho en blanc si només vols un nivell d'aprovació (2 passos); posa un valor encara que sigui molt baix (0,1) si vols una segona aprovació (3 passos).
UseDoubleApproval=Utilitza una aprovació en 3 passos quan l'import (sense impostos) sigui més gran que...
WarningPHPMail=ADVERTÈNCIA: la configuració per enviar correus electrònics des de l'aplicació utilitza la configuració genèrica predeterminada. Sovint és millor configurar els correus electrònics de sortida per utilitzar el servidor de correu electrònic del vostre proveïdor de serveis de correu electrònic en lloc de la configuració predeterminada per diversos motius:
WarningPHPMailA=- Lús del servidor del proveïdor de serveis de correu electrònic augmenta la confiança del vostre correu electrònic, de manera que augmenta l'enviament sense ser marcat com a SPAM
@ -568,7 +568,7 @@ Module70Desc=Gestió de intervencions
Module75Name=Notes de despeses i desplaçaments
Module75Desc=Gestió de les notes de despeses i desplaçaments
Module80Name=Expedicions
Module80Desc=Enviaments i gestió de notes de lliurament
Module80Desc=Gestió denviaments i albarans
Module85Name=Bancs i Efectiu
Module85Desc=Gestió de comptes bancaris o efectiu
Module100Name=Lloc extern
@ -618,7 +618,7 @@ Module1780Name=Etiquetes
Module1780Desc=Crea etiquetes (productes, clients, proveïdors, contactes o socis)
Module2000Name=Editor WYSIWYG
Module2000Desc=Permet editar/formatar els camps de text mitjançant CKEditor (html)
Module2200Name=Multi-preus
Module2200Name=Preus dinàmics
Module2200Desc=Utilitza expressions matemàtiques per a la generació automàtica de preus
Module2300Name=Tasques programades
Module2300Desc=Gestió de tasques programades (àlies cron o taula de crons)
@ -646,7 +646,7 @@ Module5000Desc=Permet gestionar diverses empreses
Module6000Name=Flux de treball
Module6000Desc=Gestió del flux de treball (creació automàtica d'objectes i / o canvi d'estat automàtic)
Module10000Name=Pàgines web
Module10000Desc=Creeu llocs web (públics) amb un editor WYSIWYG. Es tracta dun CMS per a administradors web o desenvolupador (és millor conèixer el llenguatge HTML i CSS). Nhi ha prou amb configurar el servidor web (Apache, Nginx, ...) per assenyalar el directori dedicat a Dolibarr perquè el tingui en línia a Internet amb el seu propi nom de domini.
Module10000Desc=Creeu llocs web (públics) amb un editor WYSIWYG. Es tracta dun CMS per a administradors web o desenvolupador (és millor conèixer el llenguatge HTML i CSS). Nhi ha prou amb configurar el servidor web (Apache, Nginx, ...) per a assenyalar el directori dedicat a Dolibarr perquè el tingui en línia a Internet amb el seu propi nom de domini.
Module20000Name=Gestió de sol·licituds de dies lliures
Module20000Desc=Defineix i fes seguiment de les sol·licituds de dies lliures dels empleats
Module39000Name=Lots de productes
@ -670,11 +670,11 @@ Module54000Desc=Impressió directa (sense obrir els documents) mitjançant la in
Module55000Name=Enquesta o votació
Module55000Desc=Creeu enquestes o vots en línia (com Doodle, Studs, RDVz, etc.)
Module59000Name=Marges
Module59000Desc=Mòdul per gestionar els marges
Module59000Desc=Mòdul per a gestionar marges
Module60000Name=Comissions
Module60000Desc=Mòdul per gestionar les comissions
Module60000Desc=Mòdul per a gestionar comissions
Module62000Name=Incoterms
Module62000Desc=Afegir funcions per gestionar Incoterm
Module62000Desc=Afegeix funcions per a gestionar Incoterms
Module63000Name=Recursos
Module63000Desc=Gestiona els recursos (impressores, cotxes, habitacions...) que pots compartir en esdeveniments
Permission11=Consulta factures de client
@ -1086,7 +1086,7 @@ LabelOnDocuments=Etiqueta sobre documents
LabelOrTranslationKey=Clau de traducció o cadena
ValueOfConstantKey=Valor duna constant de configuració
ConstantIsOn=L'opció %s està activada
NbOfDays=Nº de dies
NbOfDays=Nombre de dies
AtEndOfMonth=A final de mes
CurrentNext=Actual/Següent
Offset=Decàleg
@ -1107,11 +1107,11 @@ Database=Base de dades
DatabaseServer=Host de la base de dades
DatabaseName=Nom de la base de dades
DatabasePort=Port de la base de dades
DatabaseUser=Login de la base de dades
DatabaseUser=Usuari de la base de dades
DatabasePassword=Contrasenya de la base de dades
Tables=Taules
TableName=Nom de la taula
NbOfRecord=Nº de registres
NbOfRecord=Nombre de registres
Host=Servidor
DriverType=Tipus de driver
SummarySystem=Resum de la informació de sistemes Dolibarr
@ -1125,8 +1125,8 @@ MaxSizeList=Longitud màxima per llistats
DefaultMaxSizeList=Longitud màxima per defecte per a les llistes
DefaultMaxSizeShortList=Longitud màxima per defecte en llistes curtes (per exemple, en la fitxa de client)
MessageOfDay=Missatge del dia
MessageLogin=Missatge del login
LoginPage=Pàgina de login
MessageLogin=Missatge en la pàgina d'inici de sessió
LoginPage=Pàgina d'inici de sessió
BackgroundImageLogin=Imatge de fons
PermanentLeftSearchForm=Zona de recerca permanent del menú de l'esquerra
DefaultLanguage=Idioma per defecte
@ -1168,7 +1168,7 @@ Delays_MAIN_DELAY_CUSTOMER_BILLS_UNPAYED=Factura del client no pagada
Delays_MAIN_DELAY_TRANSACTIONS_TO_CONCILIATE=Conciliació bancària pendent
Delays_MAIN_DELAY_MEMBERS=Quota de membre retardada
Delays_MAIN_DELAY_CHEQUES_TO_DEPOSIT=Ingrés de xec no realitzat
Delays_MAIN_DELAY_EXPENSEREPORTS=Informe de despeses per aprovar
Delays_MAIN_DELAY_EXPENSEREPORTS=Informe de despeses per a aprovar
Delays_MAIN_DELAY_HOLIDAYS=Dies lliures a aprovar
SetupDescription1=Abans de començar a utilitzar Dolibarr cal definir alguns paràmetres inicials i habilitar/configurar els mòduls.
SetupDescription2=Les dues seccions següents són obligatòries (les dues primeres entrades al menú Configuració):
@ -1230,9 +1230,9 @@ BackupDesc3=Feu una còpia de seguretat de l'estructura i continguts de la vostr
BackupDescX=La carpeta arxivada haurà de guardar-se en un lloc segur
BackupDescY=L'arxiu de bolcat generat haurà de guardar-se en un lloc segur.
BackupPHPWarning=La còpia de seguretat no pot ser garantida amb aquest mètode. És preferible utilitzar l'anterior
RestoreDesc=Per restaurar una còpia de seguretat de Dolibarr, calen dos passos.
RestoreDesc=Per a restaurar una còpia de seguretat de Dolibarr, calen dos passos.
RestoreDesc2=Restaura el fitxer de còpia de seguretat (fitxer zip, per exemple) del directori "documents" a una nova instal·lació de Dolibarr o en aquest directori de documents actual (<b> %s </b>).
RestoreDesc3=Restaura l'estructura i les dades de la base de dades des d'un fitxer d'emmagatzematge de seguretat a la base de dades de la nova instal·lació de Dolibarr o bé a la base de dades d'aquesta instal·lació actual (<b> %s </b>). Avís, un cop finalitzada la restauració, haureu d'utilitzar un inici de sessió / contrasenya, que existia des de la còpia de seguretat / instal·lació per tornar a connectar-se. <br> Per restaurar una base de dades de còpia de seguretat en aquesta instal·lació actual, podeu seguir aquest assistent.
RestoreDesc3=Restaura l'estructura i les dades de la base de dades des d'un fitxer d'emmagatzematge de seguretat a la base de dades de la nova instal·lació de Dolibarr o bé a la base de dades d'aquesta instal·lació actual (<b> %s </b>). Avís, un cop finalitzada la restauració, haureu d'utilitzar un usuari/contrasenya, que existia en el moment de la còpia de seguretat per a tornar a connectar-se. <br> Per a restaurar una base de dades de còpia de seguretat en aquesta instal·lació actual, podeu seguir aquest assistent.
RestoreMySQL=Importació MySQL
ForcedToByAModule=Aquesta regla està forçada a <b>%s</b> per un dels mòduls activats
ValueIsForcedBySystem=Aquest valor és forçat pel sistema. No es pot canviar.
@ -1501,11 +1501,11 @@ LDAPSetupForVersion3=Servidor LDAP configurat en versió 3
LDAPSetupForVersion2=Servidor LDAP configurat en versió 2
LDAPDolibarrMapping=Mapping Dolibarr
LDAPLdapMapping=Mapping LDAP
LDAPFieldLoginUnix=Login (unix)
LDAPFieldLoginUnix=Nom d'usuari (unix)
LDAPFieldLoginExample=Exemple: uid
LDAPFilterConnection=Filtre de cerca
LDAPFilterConnectionExample=Exemple: & (objectClass = inetOrgPerson)
LDAPFieldLoginSamba=Login (samba, activedirectory)
LDAPFieldLoginSamba=Nom d'usuari (samba, activedirectory)
LDAPFieldLoginSambaExample=Exemple: samaccountname
LDAPFieldFullname=Nom complet
LDAPFieldFullnameExample=Exemple: cn
@ -1598,8 +1598,13 @@ ServiceSetup=Configuració del mòdul Serveis
ProductServiceSetup=Configuració dels mòduls Productes i Serveis
NumberOfProductShowInSelect=Nombre màxim de productes que es mostraran a les llistes de selecció combo (0 = sense límit)
ViewProductDescInFormAbility=Mostra les descripcions dels productes en els formularis (en cas contrari es mostra en una finestra emergent de suggeriments)
DoNotAddProductDescAtAddLines=No afegiu la descripció del producte (de la fitxa de producte) en afegir línies als formularis
OnProductSelectAddProductDesc=Com s'utilitza la descripció dels productes quan s'afegeix un producte com a línia d'un document
AutoFillFormFieldBeforeSubmit=Empleneu automàticament el camp dentrada de la descripció amb la descripció del producte
DoNotAutofillButAutoConcat=No empleneu automàticament el camp d'entrada amb la descripció del producte. La descripció del producte es concatenarà automàticament a la descripció introduïda.
DoNotUseDescriptionOfProdut=La descripció del producte mai no sinclourà a la descripció de les línies de documents
MergePropalProductCard=Activeu a la pestanya Fitxers adjunts de productes/serveis una opció per combinar el document PDF del producte amb el PDF del pressupost si el producte/servei es troba en ell
ViewProductDescInThirdpartyLanguageAbility=Mostra les descripcions dels productes en l'idioma del tercer
ViewProductDescInThirdpartyLanguageAbility=Mostra les descripcions dels productes en formularis en l'idioma del tercer (en cas contrari, en l'idioma de l'usuari)
UseSearchToSelectProductTooltip=A més, si teniu un gran nombre de productes (> 100.000), podeu augmentar la velocitat establiint la constant PRODUCT_DONOTSEARCH_ANYWHERE a 1 a Configuració->Altres. La cerca es limitarà a l'inici de la cadena.
UseSearchToSelectProduct=Espereu fins que premeu una tecla abans de carregar el contingut de la llista combinada del producte (això pot augmentar el rendiment si teniu una gran quantitat de productes, però és menys convenient)
SetDefaultBarcodeTypeProducts=Tipus de codi de barres utilitzat per defecte per als productes
@ -1659,8 +1664,8 @@ NotificationEMailFrom=Correu electrònic del remitent (des de) per als correus e
FixedEmailTarget=Destinatari
##### Sendings #####
SendingsSetup=Configuració del mòdul d'enviament
SendingsReceiptModel=Model de rebut de lliurament
SendingsNumberingModules=Mòduls de numeració de notes de lliurament
SendingsReceiptModel=Model de rebut denviament
SendingsNumberingModules=Mòduls de numeració d'enviaments
SendingsAbility=Suport en fulles d'expedició per entregues de clients
NoNeedForDeliveryReceipts=En la majoria dels casos, els fulls d'enviament s'utilitzen tant com a fulls de lliurament de clients (llista de productes a enviar) i fulls rebuts i signats pel client. Per tant, el rebut de lliurament del producte és una característica duplicada i rarament s'activa.
FreeLegalTextOnShippings=Text lliure en els enviaments
@ -1719,7 +1724,7 @@ OptionVatDebitOptionDesc=L'IVA es deu: <br> - en el lliurament de mercaderies (s
OptionPaymentForProductAndServices=Base de caixa de productes i serveis
OptionPaymentForProductAndServicesDesc=L'IVA es deu: <br> - pel pagament de béns <br> - sobre els pagaments per serveis
SummaryOfVatExigibilityUsedByDefault=Durada de l'elegibilitat de l'IVA per defecte d'acord amb l'opció escollida:
OnDelivery=Al lliurament
OnDelivery=En entrega
OnPayment=Al pagament
OnInvoice=A la factura
SupposedToBePaymentDate=Data de pagament utilitzada
@ -1913,8 +1918,8 @@ MailToProject=Projectes
MailToTicket=Tiquets
ByDefaultInList=Mostra per defecte en la vista del llistat
YouUseLastStableVersion=Estàs utilitzant l'última versió estable
TitleExampleForMajorRelease=Exemple de missatge que es pot utilitzar per anunciar aquesta actualització de versió (ets lliure d'utilitzar-ho a les teves webs)
TitleExampleForMaintenanceRelease=Exemple de missatge que es pot utilitzar per anunciar aquesta actualització de manteniment (ets lliure d'utilitzar-ho a les teves webs)
TitleExampleForMajorRelease=Exemple de missatge que podeu utilitzar per a anunciar aquesta actualització de versió (no dubteu a utilitzar-lo als vostres llocs web)
TitleExampleForMaintenanceRelease=Exemple de missatge que podeu utilitzar per a anunciar aquesta versió de manteniment (no dubteu a utilitzar-lo als vostres llocs web)
ExampleOfNewsMessageForMajorRelease=Disponible ERP/CRM Dolibarr %s. La versió %s és una versió major amb un munt de noves característiques, tant per a usuaris com per a desenvolupadors. Es pot descarregar des de la secció de descàrregues del portal https://www.dolibarr.org (subdirectori versions estables). Podeu llegir <a href="https://github.com/Dolibarr/dolibarr/blob/develop/ChangeLog">ChangeLog</a> per veure la llista completa dels canvis.
ExampleOfNewsMessageForMaintenanceRelease=Dolibarr ERP & CRM %s està disponible. La versió %s és una versió de manteniment, de manera que només conté correccions d'errors. Us recomanem que tots els usuaris actualitzeu aquesta versió. Un llançament de manteniment no introdueix novetats ni canvis a la base de dades. Podeu descarregar-lo des de l'àrea de descàrrega del portal https://www.dolibarr.org (subdirectori de les versions estables). Podeu llegir el <a href="https://github.com/Dolibarr/dolibarr/blob/develop/ChangeLog"> ChangeLog </a> per obtenir una llista completa dels canvis.
MultiPriceRuleDesc=Quan l'opció "Diversos nivells de preus per producte/servei" està activada, podeu definir preus diferents (un preu per nivell) per a cada producte. Per a estalviar-vos temps, aquí podeu introduir una regla per calcular automàticament un preu per a cada nivell en funció del preu del primer nivell, de manera que només haureu d'introduir un preu per al primer nivell per a cada producte. Aquesta pàgina està dissenyada per a estalviar-vos temps, però només és útil si els preus de cada nivell són relatius al primer nivell. Podeu ignorar aquesta pàgina en la majoria dels casos.
@ -2069,7 +2074,7 @@ MakeAnonymousPing=Creeu un ping &quot;+1&quot; anònim al servidor de bases Doli
FeatureNotAvailableWithReceptionModule=Funció no disponible quan el mòdul Recepció està habilitat
EmailTemplate=Plantilla per correu electrònic
EMailsWillHaveMessageID=Els correus electrònics tindran una etiqueta "Referències" que coincideix amb aquesta sintaxi
PDF_USE_ALSO_LANGUAGE_CODE=Si voleu que alguns textos del vostre PDF es copiïn en 2 idiomes diferents en el mateix PDF generat, heu destablir aquí aquest segon idioma per a que el PDF generat contingui 2 idiomes diferents a la mateixa pàgina, lescollit en generar el PDF i aquesta (només poques plantilles de PDF admeten això). Mantingueu-lo buit per a 1 idioma per PDF.
PDF_USE_ALSO_LANGUAGE_CODE=Si voleu que alguns textos del vostre PDF es copiïn en 2 idiomes diferents en el mateix PDF generat, heu destablir aquí aquest segon idioma perquè el PDF generat contingui 2 idiomes diferents en la mateixa pàgina, lescollit en generar el PDF i aquesta (només poques plantilles de PDF admeten això). Mantingueu-lo buit per a 1 idioma per PDF.
FafaIconSocialNetworksDesc=Introduïu aquí el codi de la icona de FontAwesome. Si no sabeu què és FontAwesome, podeu utilitzar el llibre genèric dadreces.
FeatureNotAvailableWithReceptionModule=Funció no disponible quan el mòdul Recepció està habilitat
RssNote=Nota: Cada definició del canal RSS proporciona un giny que heu dhabilitar per a tenir-lo disponible al tauler de control

View File

@ -122,7 +122,7 @@ BankChecks=Xec bancari
BankChecksToReceipt=Xecs en espera de l'ingrés
BankChecksToReceiptShort=Xecs en espera de l'ingrés
ShowCheckReceipt=Mostra la remesa d'ingrés de xec
NumberOfCheques=Nº de xec
NumberOfCheques=Núm. de xec
DeleteTransaction=Eliminar registre
ConfirmDeleteTransaction=Esteu segur que voleu suprimir aquest registre?
ThisWillAlsoDeleteBankRecord=Açò eliminarà també els registres bancaris generats

View File

@ -11,7 +11,7 @@ BillsSuppliersUnpaidForCompany=Factures de proveïdors pendents de pagament per
BillsLate=Retard en el pagament
BillsStatistics=Estadístiques factures a clients
BillsStatisticsSuppliers=Estadístiques de Factures de proveïdors
DisabledBecauseDispatchedInBookkeeping=Desactivat perquè la factura s'ha contabilitzat
DisabledBecauseDispatchedInBookkeeping=Desactivat perquè la factura ja s'ha comptabilitzat
DisabledBecauseNotLastInvoice=Desactivat perquè la factura no es pot esborrar. Algunes factures s'han registrat després d'aquesta i això crearia espais buits al comptador.
DisabledBecauseNotErasable=Desactivat perque no es pot eliminar
InvoiceStandard=Factura estàndard
@ -84,7 +84,7 @@ PaymentMode=Forma de pagament
PaymentTypeDC=Dèbit/Crèdit Tarja
PaymentTypePP=PayPal
IdPaymentMode=Forma de pagament (Id)
CodePaymentMode=Payment type (code)
CodePaymentMode=Tipus de pagament (codi)
LabelPaymentMode=Forma de pagament (etiqueta)
PaymentModeShort=Forma de pagament
PaymentTerm=Condicions de pagament
@ -196,7 +196,7 @@ ConfirmClassifyPaidPartiallyReasonDiscountVatDesc=En alguns països, aquesta opc
ConfirmClassifyPaidPartiallyReasonAvoirDesc=Aquesta elecció és l'elecció que s'ha de prendre si les altres no són aplicables
ConfirmClassifyPaidPartiallyReasonBadCustomerDesc=Un <b> client morós </b> és un client que es nega a pagar el seu deute.
ConfirmClassifyPaidPartiallyReasonProductReturnedDesc=Aquesta elecció és possible si el cas de pagament incomplet és arran d'una devolució de part dels productes
ConfirmClassifyPaidPartiallyReasonOtherDesc=Utilitza aquesta opció si totes les altres no et convenen, per exemple en la situació següent:<br>- pagament parcial ja que una partida de productes s'ha tornat<br>- la quantitat reclamada és massa important perquè s'ha oblidat un descompte<br>En tots els casos, la reclamació s'ha de regularitzar mitjançant un abonament.
ConfirmClassifyPaidPartiallyReasonOtherDesc=Utilitza aquesta opció si totes les altres no són adequades, per exemple, en la següent situació: <br>- el pagament no s'ha completat perquè alguns productes es van tornar a enviar<br>- la quantitat reclamada és massa important perquè s'ha oblidat un descompte <br>En tots els casos, s'ha de corregir l'import excessiu en el sistema de comptabilitat mitjançant la creació dun abonament.
ConfirmClassifyAbandonReasonOther=Altres
ConfirmClassifyAbandonReasonOtherDesc=Aquesta elecció serà per a qualsevol altre cas. Per exemple arran de la intenció de crear una factura rectificativa.
ConfirmCustomerPayment=Confirmes aquesta entrada de pagament per a <b>%s</b> %s?
@ -204,8 +204,8 @@ ConfirmSupplierPayment=Confirmes aquesta entrada de pagament per a <b>%s</b> %s?
ConfirmValidatePayment=Estàs segur que vols validar aquest pagament? No es poden fer canvis un cop el pagament s'ha validat.
ValidateBill=Valida la factura
UnvalidateBill=Tornar factura a esborrany
NumberOfBills=Nº de factures
NumberOfBillsByMonth=Nº de factures per mes
NumberOfBills=Nombre de factures
NumberOfBillsByMonth=Nombre de factures per mes
AmountOfBills=Import de les factures
AmountOfBillsHT=Import de factures (net d'impostos)
AmountOfBillsByMonthHT=Import de les factures per mes (Sense IVA)
@ -338,7 +338,7 @@ InvoiceNotChecked=Cap factura pendent està seleccionada
ConfirmCloneInvoice=Vols clonar aquesta factura <b>%s</b>?
DisabledBecauseReplacedInvoice=Acció desactivada perquè és una factura reemplaçada
DescTaxAndDividendsArea=Aquesta àrea presenta un resum de tots els pagaments fets per a despeses especials. Aquí només s'inclouen registres amb pagament durant l'any fixat.
NbOfPayments=Nº de pagaments
NbOfPayments=Nombre de pagaments
SplitDiscount=Dividir el dte. en dos
ConfirmSplitDiscount=Estàs segur que vols dividir aquest descompte de <b>%s</b> %s en 2 descomptes més baixos?
TypeAmountOfEachNewDiscount=Import de l'entrada per a cada una de les dues parts:
@ -396,12 +396,12 @@ PaymentConditionShort60D=60 dies
PaymentCondition60D=60 dies
PaymentConditionShort60DENDMONTH=60 dies final de mes
PaymentCondition60DENDMONTH=En els 60 dies següents a final de mes
PaymentConditionShortPT_DELIVERY=Al lliurament
PaymentConditionPT_DELIVERY=Al lliurament
PaymentConditionShortPT_DELIVERY=Entrega
PaymentConditionPT_DELIVERY=En entrega
PaymentConditionShortPT_ORDER=Comanda
PaymentConditionPT_ORDER=A la recepció de la comanda
PaymentConditionShortPT_5050=50/50
PaymentConditionPT_5050=50%% per avançat, 50%% al lliurament
PaymentConditionPT_5050=50%% per avançat, 50%% a lentrega
PaymentConditionShort10D=10 dies
PaymentCondition10D=10 dies
PaymentConditionShort10DENDMONTH=10 dies final de mes
@ -447,8 +447,8 @@ BIC=BIC/SWIFT
BICNumber=Codi BIC/SWIFT
ExtraInfos=Informacions complementàries
RegulatedOn=Pagar el
ChequeNumber=Xec nº
ChequeOrTransferNumber=Nº Xec/Transferència
ChequeNumber=Número de xec
ChequeOrTransferNumber=Núm. de xec/transferència
ChequeBordereau=Comprova horari
ChequeMaker=Autor xec/transferència
ChequeBank=Banc del xec
@ -478,7 +478,7 @@ MenuCheques=Xecs
MenuChequesReceipts=Remeses de xecs
NewChequeDeposit=Dipòsit nou
ChequesReceipts=Remeses de xecs
ChequesArea=Àrea de ingrés de xecs
ChequesArea=Àrea d'ingressos de xecs
ChequeDeposits=Ingrés de xecs
Cheques=Xecs
DepositId=Id. dipòsit
@ -514,7 +514,7 @@ PDFSpongeDescription=Plantilla PDF de factures Sponge. Una plantilla de factura
PDFCrevetteDescription=Plantilla Crevette per factures PDF. Una plantilla de factura completa per factures de situació.
TerreNumRefModelDesc1=Retorna el nombre sota el format %syymm-nnnn per a les factures i %syymm-nnnn per als abonaments on yy és l'any, mm. el mes i nnnn un comptador seqüencial sense ruptura i sense permanència a 0
MarsNumRefModelDesc1=Retorna el nombre sota el format %syymm-nnnn per a les factures, %syymm-nnnn per a les factures rectificatives, %syymm-nnnn per a les factures de dipòsit i %syymm-nnnn pels abonaments on yy és l'any, mm el mes i nnnn un comptador seqüencial sense ruptura i sense retorn a 0
TerreNumRefModelError=Ja hi ha una factura amb $syymm i no és compatible amb aquest model de seqüència. Elimineu o renómbrela per poder activar aquest mòdul
TerreNumRefModelError=Ja existeix una factura que comença amb $syymm i no és compatible amb aquest model de seqüència. Elimineu-la o canvieu-li el nom per a activar aquest mòdul.
CactusNumRefModelDesc1=Retorna un número amb format %syymm-nnnn per a factures estàndard, %syymm-nnnn per a devolucions i %syymm-nnnn per a factures de dipòsits anticipats on yy es l'any, mm és el mes i nnnn és una seqüència sense ruptura i sense retorn a 0
EarlyClosingReason=Motiu de tancament anticipat
EarlyClosingComment=Nota de tancament anticipat

View File

@ -55,7 +55,7 @@ BoxTitleFunnelOfProspection=Oportunitat embut
FailedToRefreshDataInfoNotUpToDate=No s'ha pogut actualitzar el flux RSS. Última data d'actualització amb èxit: %s
LastRefreshDate=Última data que es va refrescar
NoRecordedBookmarks=No hi ha marcadors personals.
ClickToAdd=Feu clic aquí per afegir.
ClickToAdd=Feu clic aquí per a afegir.
NoRecordedCustomers=Cap client registrat
NoRecordedContacts=Cap contacte registrat
NoActionsToDo=Sense esdeveniments a realitzar

View File

@ -32,7 +32,7 @@ ShowStock=Veure magatzem
DeleteArticle=Feu clic per treure aquest article
FilterRefOrLabelOrBC=Cerca (Ref/Etiq.)
UserNeedPermissionToEditStockToUsePos=Es demana disminuir l'estoc en la creació de la factura, de manera que l'usuari que utilitza el TPV ha de tenir permís per editar l'estoc.
DolibarrReceiptPrinter=Impressora de tickets de Dolibarr
DolibarrReceiptPrinter=Impressora de tiquets de Dolibarr
PointOfSale=Punt de venda
PointOfSaleShort=TPV
CloseBill=Tanca el compte
@ -51,7 +51,7 @@ TheoricalAmount=Import teòric
RealAmount=Import real
CashFence=Tancament de caixa
CashFenceDone=Tancament de caixa realitzat pel període
NbOfInvoices=Nº de factures
NbOfInvoices=Nombre de factures
Paymentnumpad=Tipus de pad per introduir el pagament
Numberspad=Números Pad
BillsCoinsPad=Pad de monedes i bitllets
@ -60,9 +60,9 @@ TakeposNeedsCategories=TakePOS necessita que les categories de productes funcion
OrderNotes=Notes de comanda
CashDeskBankAccountFor=Compte predeterminat a utilitzar per als pagaments
NoPaimementModesDefined=No hi ha cap mode de pagament definit a la configuració de TakePOS
TicketVatGrouped=Agrupar IVA per tipus als tickets/rebuts
AutoPrintTickets=Imprimir automàticament tickets/rebuts
PrintCustomerOnReceipts=Imprimir el client als tickets/rebuts
TicketVatGrouped=Agrupa IVA per tipus als tiquets|rebuts
AutoPrintTickets=Imprimeix automàticament els tiquets|rebuts
PrintCustomerOnReceipts=Imprimeix el client als tiquets|rebuts
EnableBarOrRestaurantFeatures=Habiliteu funcions per a bar o restaurant
ConfirmDeletionOfThisPOSSale=Confirmeu la supressió de la venda actual?
ConfirmDiscardOfThisPOSSale=Voleu descartar aquesta venda actual?

View File

@ -6,7 +6,7 @@ Customers=Clients
Prospect=Client potencial
Prospects=Clients potencials
DeleteAction=Elimina un esdeveniment
NewAction=Nou esdeveniment
NewAction=Esdeveniment nou
AddAction=Crea esdeveniment
AddAnAction=Crea un esdeveniment
AddActionRendezVous=Crear una cita
@ -33,7 +33,7 @@ LastDoneTasks=Últimes %s accions acabades
LastActionsToDo=Les %s més antigues accions no completades
DoneAndToDoActions=Llista d'esdeveniments realitzats o a realitzar
DoneActions=Llista d'esdeveniments realitzats
ToDoActions=Llista d'esdevenimentss incomplets
ToDoActions=Esdeveniments incomplets
SendPropalRef=Enviament del pressupost %s
SendOrderRef=Enviament de la comanda %s
StatusNotApplicable=No aplicable

View File

@ -68,8 +68,8 @@ PhoneShort=Telèfon
Skype=Skype
Call=Trucar
Chat=Xat
PhonePro=Telf. treball
PhonePerso=Telf. particular
PhonePro=Tel. treball
PhonePerso=Tel. personal
PhoneMobile=Mòbil
No_Email=No enviar e-mailings massius
Fax=Fax
@ -286,7 +286,7 @@ HasNoRelativeDiscountFromSupplier=No tens descomptes relatius per defecte d'aque
CompanyHasAbsoluteDiscount=Aquest client té descomptes disponibles (notes de crèdit o bestretes) per <b>%s</b> %s
CompanyHasDownPaymentOrCommercialDiscount=Aquest client té un descompte disponible (comercial, de pagament) per a <b>%s</b>%s
CompanyHasCreditNote=Aquest client encara té abonaments per <b>%s</b> %s
HasNoAbsoluteDiscountFromSupplier=No tens crèdit disponible per descomptar d'aquest proveïdor
HasNoAbsoluteDiscountFromSupplier=No teniu disponible cap crèdit de descompte per aquest proveïdor
HasAbsoluteDiscountFromSupplier=Disposes de descomptes (notes de crèdits o pagaments pendents) per a <b> %s </b> %s d'aquest proveïdor
HasDownPaymentOrCommercialDiscountFromSupplier=Teniu descomptes disponibles (comercials, pagaments inicials) de <b> %s </b> %s d'aquest proveïdor
HasCreditNoteFromSupplier=Teniu notes de crèdit per a <b> %s </b> %s d'aquest proveïdor
@ -398,7 +398,7 @@ ProspectsByStatus=Clients potencials per estat
NoParentCompany=Cap
ExportCardToFormat=Exporta fitxa a format
ContactNotLinkedToCompany=Contacte no vinculat a un tercer
DolibarrLogin=Login usuari
DolibarrLogin=Nom d'usuari de Dolibarr
NoDolibarrAccess=Sense accés d'usuari
ExportDataset_company_1=Tercers (empreses/entitats/persones físiques) i propietats
ExportDataset_company_2=Contactes i propietats

View File

@ -132,7 +132,7 @@ NewCheckDeposit=Ingrés nou
NewCheckDepositOn=Crea remesa per ingressar al compte: %s
NoWaitingChecks=Sense xecs en espera de l'ingrés.
DateChequeReceived=Data recepció del xec
NbOfCheques=Nº de xecs
NbOfCheques=Nombre de xecs
PaySocialContribution=Pagar un impost varis
ConfirmPaySocialContribution=Esteu segur de voler classificar aquest impost varis com a pagat?
DeleteSocialContribution=Elimina un pagament d'impost varis
@ -189,7 +189,7 @@ LT1ReportByQuartersES=Informe per taxa de RE
LT2ReportByQuartersES=Informe per taxa de IRPF
SeeVATReportInInputOutputMode=Veure l'informe <b>%sIVA pagat%s </b> per a un mode de càlcul estàndard
SeeVATReportInDueDebtMode=Veure l'informe <b>%s IVA degut%s </b> per a un mode de càlcul amb l'opció sobre el degut
RulesVATInServices=- Per als serveis, l'informe inclou la normativa de l'IVA rebuts o emesos en base a la data de pagament.
RulesVATInServices=- Per als serveis, l'informe inclou la normativa de l'IVA realment rebuda o emesa en funció de la data de pagament.
RulesVATInProducts=- Per a actius materials, l'informe inclou l'IVA rebut o emès a partir de la data de pagament.
RulesVATDueServices=- Per als serveis, l'informe inclou l'IVA de les factures degudes, pagades o no basant-se en la data d'aquestes factures.
RulesVATDueProducts=- Pel que fa als béns materials, l'informe inclou les factures de l'IVA, segons la data de facturació.
@ -261,7 +261,7 @@ PurchasebyVatrate=Compra per l'impost sobre vendes
LabelToShow=Etiqueta curta
PurchaseTurnover=Volum de compres
PurchaseTurnoverCollected=Volum de compres recollit
RulesPurchaseTurnoverDue=- Inclou les factures degudes al proveïdor tant si són pagaes com si no. <br> - Es basa en la data de factura d'aquestes factures. <br>
RulesPurchaseTurnoverDue=- Inclou les factures pendents del proveïdor, tant si es paguen com si no. <br>- Es basa en la data de factura d'aquestes factures.<br>
RulesPurchaseTurnoverIn=- Inclou tots els pagaments realitzats de les factures de proveïdors. <br> - Es basa en la data de pagament daquestes factures <br>
RulesPurchaseTurnoverTotalPurchaseJournal=Inclou totes les línies de dèbit del diari de compra.
ReportPurchaseTurnover=Volum de compres facturat

View File

@ -1,5 +1,5 @@
# Dolibarr language file - Source file is en_US - ecm
ECMNbOfDocs=Nº de documents en el directori
ECMNbOfDocs=Nombre de documents al directori
ECMSection=Carpeta
ECMSectionManual=Carpeta manual
ECMSectionAuto=Carpeta automàtica

View File

@ -9,7 +9,7 @@ ErrorBadMXDomain=El correu electrònic %s sembla incorrecte (el domini no té ca
ErrorBadUrl=Url %s invàlida
ErrorBadValueForParamNotAString=Valor incorrecte del paràmetre. Acostuma a passar quan falta la traducció.
ErrorRefAlreadyExists=La referència <b> %s </b> ja existeix.
ErrorLoginAlreadyExists=El login %s ja existeix.
ErrorLoginAlreadyExists=El nom d'usuari %s ja existeix.
ErrorGroupAlreadyExists=El grup %s ja existeix.
ErrorRecordNotFound=Registre no trobat
ErrorFailToCopyFile=Error al copiar l'arxiu '<b>%s</b>' a '<b>%s</b>'.
@ -23,7 +23,7 @@ ErrorFailToDeleteDir=Error en eliminar la carpeta '<b>%s</b>'.
ErrorFailToMakeReplacementInto=Failed to make replacement into file '<b>%s</b>'.
ErrorFailToGenerateFile=Failed to generate file '<b>%s</b>'.
ErrorThisContactIsAlreadyDefinedAsThisType=Aquest contacte ja està definit com a contacte per a aquest tipus.
ErrorCashAccountAcceptsOnlyCashMoney=Aquesta compte bancari és de tipus caixa i només accepta el mètode de pagament de tipus <b>espècie</b>.
ErrorCashAccountAcceptsOnlyCashMoney=Aquest compte bancari és un compte d'efectiu, de manera que només accepta pagaments de tipus efectiu.
ErrorFromToAccountsMustDiffers=El compte origen i destinació han de ser diferents.
ErrorBadThirdPartyName=Valor incorrecte per al nom de tercers
ErrorProdIdIsMandatory=El %s es obligatori
@ -61,7 +61,7 @@ ErrorDirAlreadyExists=Ja existeix una carpeta amb aquest nom.
ErrorFileAlreadyExists=Ja existeix un fitxer amb aquest nom.
ErrorPartialFile=Arxiu no rebut íntegrament pel servidor.
ErrorNoTmpDir=Directori temporal de recepció %s inexistent
ErrorUploadBlockedByAddon=Pujada bloquejada per un plugin PHP/Apache.
ErrorUploadBlockedByAddon=Càrrega bloquejada per un connector PHP/Apache.
ErrorFileSizeTooLarge=La mida del fitxer és massa gran.
ErrorFieldTooLong=El camp %s és massa llarg.
ErrorSizeTooLongForIntType=Longitud del camp massa llarg per al tipus int (màxim %s xifres)
@ -79,7 +79,7 @@ ErrorLDAPSetupNotComplete=La configuració Dolibarr-LDAP és incompleta.
ErrorLDAPMakeManualTest=S'ha generat un fitxer .ldif al directori %s. Proveu de carregar-lo manualment des de la línia de comandes per a obtenir més informació sobre els errors.
ErrorCantSaveADoneUserWithZeroPercentage=No es pot desar una acció amb "estat no iniciat" si el camp "fet per" també s'omple.
ErrorRefAlreadyExists=La referència <b> %s </b> ja existeix.
ErrorPleaseTypeBankTransactionReportName=Si us plau, tecleja el nom del extracte bancari on s'informa del registre (format AAAAMM o AAAAMMDD)
ErrorPleaseTypeBankTransactionReportName=Introduïu el nom de lextracte bancari on sha dinformar de lentrada (format AAAAAMM o AAAAAMMDD)
ErrorRecordHasChildren=No s'ha pogut eliminar el registre, ja que té alguns registres fills.
ErrorRecordHasAtLeastOneChildOfType=L'objecte té almenys un fill de tipus %s
ErrorRecordIsUsedCantDelete=No es pot eliminar el registre. Ja s'utilitza o s'inclou en un altre objecte.
@ -175,7 +175,7 @@ ErrorTryToMakeMoveOnProductRequiringBatchData=Error, intentant fer un moviment d
ErrorCantSetReceptionToTotalDoneWithReceptionToApprove=Totes les recepcions han de verificar-se primer (acceptades o denegades) abans per realitzar aquesta acció
ErrorCantSetReceptionToTotalDoneWithReceptionDenied=Totes les recepcions han de verificar-se (acceptades) abans per poder-se realitzar a aquesta acció
ErrorGlobalVariableUpdater0=Petició HTTP fallida amb error '%s'
ErrorGlobalVariableUpdater1=Format JSON '%s' invalid
ErrorGlobalVariableUpdater1=Format JSON no vàlid "%s"
ErrorGlobalVariableUpdater2=Falta el paràmetre '%s'
ErrorGlobalVariableUpdater3=No s'han trobat les dades sol·licitades
ErrorGlobalVariableUpdater4=El client SOAP ha fallat amb l'error '%s'
@ -209,7 +209,7 @@ ErrorModuleFileSeemsToHaveAWrongFormat2=Al ZIP d'un mòdul ha d'haver necessàri
ErrorFilenameDosNotMatchDolibarrPackageRules=El nom de l'arxiu del mòdul (<strong>%s</strong>) no coincideix amb la sintaxi del nom esperat: <strong>%s</strong>
ErrorDuplicateTrigger=Error, nom de disparador %s duplicat. Ja es troba carregat des de %s.
ErrorNoWarehouseDefined=Error, no hi ha magatzems definits.
ErrorBadLinkSourceSetButBadValueForRef=The link you use is not valid. A 'source' for payment is defined, but value for 'ref' is not valid.
ErrorBadLinkSourceSetButBadValueForRef=L'enllaç que utilitzeu no és vàlid. Es defineix una "font" de pagament, però el valor de "ref" no és vàlid.
ErrorTooManyErrorsProcessStopped=Too many errors. Process was stopped.
ErrorMassValidationNotAllowedWhenStockIncreaseOnAction=No és possible la validació massiva quan s'estableix l'opció d'augmentar/disminuir l'estoc en aquesta acció (cal validar-ho un per un per poder definir el magatzem a augmentar/disminuir)
ErrorObjectMustHaveStatusDraftToBeValidated=L'objecte %s ha de tenir l'estat 'Esborrany' per ser validat.
@ -276,7 +276,7 @@ WarningFeatureDisabledWithDisplayOptimizedForBlindNoJs=Funcionalitat deshabilita
WarningPaymentDateLowerThanInvoiceDate=La data de pagament (%s) és anterior a la data (%s) de la factura %s.
WarningTooManyDataPleaseUseMoreFilters=Massa dades (més de %s línies). Utilitza més filtres o indica la constant %s amb un límit superior.
WarningSomeLinesWithNullHourlyRate=Algunes vegades es van registrar per alguns usuaris quan no s'havia definit el seu preu per hora. Es va utilitzar un valor de 0 %s per hora, però això pot resultar una valoració incorrecta del temps dedicat.
WarningYourLoginWasModifiedPleaseLogin=El teu login s'ha modificat. Per seguretat has de fer login amb el nou login abans de la següent acció.
WarningYourLoginWasModifiedPleaseLogin=El vostre nom d'usuari s'ha modificat. Per motius de seguretat, haureu d'iniciar sessió amb el vostre nou nom d'usuari abans de la propera acció.
WarningAnEntryAlreadyExistForTransKey=Ja existeix una entrada per la clau de traducció d'aquest idioma
WarningNumberOfRecipientIsRestrictedInMassAction=Advertència: el nombre de destinataris diferents està limitat a <b> %s </b> quan s'utilitzen les accions massives a les llistes.
WarningDateOfLineMustBeInExpenseReportRange=Advertència, la data de la línia no està dins del rang de l'informe de despeses

View File

@ -118,7 +118,7 @@ EndAtLineNb=Final en el número de línia
ImportFromToLine=Interval límit (Des de - Fins a). Per exemple per a ometre les línies de capçalera.
SetThisValueTo2ToExcludeFirstLine=Per exemple, estableixi aquest valor a 3 per excloure les 2 primeres línies. <br> Si no s'ometen les línies de capçalera, això provocarà diversos errors en la simulació d'importació.
KeepEmptyToGoToEndOfFile=Mantingueu aquest camp buit per a processar totes les línies fins al final del fitxer.
SelectPrimaryColumnsForUpdateAttempt=Seleccioneu les columnes que s'utilitzaran com a clau principal per a una importació UPDATE
SelectPrimaryColumnsForUpdateAttempt=Seleccioneu les columnes que vulgueu utilitzar com a clau principal per a la importació d'ACTUALITZACIÓ
UpdateNotYetSupportedForThisImport=L'actualització no és compatible amb aquest tipus d'importació (només afegir)
NoUpdateAttempt=No s'ha realitzat cap intent d'actualització, només afegir
ImportDataset_user_1=Usuaris (empleats o no) i propietats

View File

@ -22,7 +22,7 @@ UserID=ID d'usuari
UserForApprovalID=Usuari per al ID d'aprovació
UserForApprovalFirstname=Nom de l'usuari d'aprovació
UserForApprovalLastname=Cognom de l'usuari d'aprovació
UserForApprovalLogin=Login de l'usuari d'aprovació
UserForApprovalLogin=Nom d'usuari de lusuari daprovació
DescCP=Descripció
SendRequestCP=Enviar la petició de dies lliures
DelayToRequestCP=Les peticions de dies lliures s'han de realitzar al menys <b>%s dies</b> abans.
@ -127,8 +127,8 @@ NoLeaveWithCounterDefined=No s'han definit els tipus de dies lliures que son nec
GoIntoDictionaryHolidayTypes=Ves a <strong>Inici - Configuració - Diccionaris - Tipus de dies lliures</strong> per configurar els diferents tipus de dies lliures
HolidaySetup=Configuració del mòdul Vacances
HolidaysNumberingModules=Models numerats de sol·licituds de dies lliures
TemplatePDFHolidays=Plantilla de sol · licitud de dies lliures en PDF
TemplatePDFHolidays=Plantilla per a sol·licituds de permisos en PDF
FreeLegalTextOnHolidays=Text gratuït a PDF
WatermarkOnDraftHolidayCards=Marques d'aigua sobre esborranys de sol·licituds de dies lliures
HolidaysToApprove=Vacances per aprovar
HolidaysToApprove=Vacances per a aprovar
NobodyHasPermissionToValidateHolidays=Ningú no té permís per a validar les vacances

View File

@ -89,7 +89,7 @@ GoToUpgradePage=Ves de nou a la pàgina d'actualització
WithNoSlashAtTheEnd=Sense el signe "/" al final
DirectoryRecommendation= <span class="warning"> IMPORTANT </span>: Heu d'utilitzar un directori que es troba fora de les pàgines web (no utilitzeu un subdirector del paràmetre anterior).
LoginAlreadyExists=Ja existeix
DolibarrAdminLogin=Login de l'usuari administrador de Dolibarr
DolibarrAdminLogin=Nom d'usuari dadministrador de Dolibarr
AdminLoginAlreadyExists=El compte d'administrador de Dolibarr '<b> %s </b>' ja existeix. Torneu enrere si voleu crear un altre.
FailedToCreateAdminLogin=No s'ha pogut crear el compte d'administrador de Dolibarr.
WarningRemoveInstallDir=Advertiment, per motius de seguretat, un cop finalitzada la instal·lació o actualització, heu d'afegir un fitxer anomenat <b> install.lock </b> al directori del document Dolibarr per a evitar l'ús accidental / malintencionat de les eines d'instal·lació.
@ -126,8 +126,8 @@ MigrateIsDoneStepByStep=La versió específica (%s) té un buit de diverses vers
CheckThatDatabasenameIsCorrect=Comproveu que el nom de la base de dades "<b> %s </b>" sigui correcte.
IfAlreadyExistsCheckOption=Si el nom és correcte i la base de dades no existeix, heu de seleccionar l'opció "Crear la base de dades"
OpenBaseDir=Paràmetre php openbasedir
YouAskToCreateDatabaseSoRootRequired=Heu marcat el quadre "Crea una base de dades". Per això, heu de proporcionar el login / contrasenya del superusuari (part inferior del formulari).
YouAskToCreateDatabaseUserSoRootRequired=Heu marcat el quadre "Crea propietari de la base de dades". Per això, heu de proporcionar el login / contrasenya del superusuari (part inferior del formulari).
YouAskToCreateDatabaseSoRootRequired=Heu marcat el quadre "Crea una base de dades". Per això, heu de proporcionar el nom d'usuari / contrasenya del superusuari (part inferior del formulari).
YouAskToCreateDatabaseUserSoRootRequired=Heu marcat el quadre "Crea propietari de la base de dades". Per això, heu de proporcionar el nom d'usuari / contrasenya del superusuari (part inferior del formulari).
NextStepMightLastALongTime=El següent pas pot trigar diversos minuts. Després d'haver validat, li agraïm esperi a la completa visualització de la pàgina següent per continuar.
MigrationCustomerOrderShipping=Migració de dades d'enviament de comandes de venda
MigrationShippingDelivery=Actualització de les dades d'enviaments
@ -184,7 +184,7 @@ MigrationReopenedContractsNumber=%s contractes modificats
MigrationReopeningContractsNothingToUpdate=No hi ha contractes tancats per a obrir
MigrationBankTransfertsUpdate=Actualitza l'enllaç entre el registre bancari i la transferència bancària
MigrationBankTransfertsNothingToUpdate=Cap vincle desfasat
MigrationShipmentOrderMatching=Actualitzar rebuts de lliurament
MigrationShipmentOrderMatching=Actualització de rebuts d'enviaments
MigrationDeliveryOrderMatching=Actualitzar rebuts d'entrega
MigrationDeliveryDetail=Actualitzar recepcions
MigrationStockDetail=Actualitza el valor de l'estoc dels productes

View File

@ -48,8 +48,8 @@ UseServicesDurationOnFichinter=Utilitza la durada dels serveis en les intervenci
UseDurationOnFichinter=Oculta el camp de durada dels registres d'intervenció
UseDateWithoutHourOnFichinter=Oculta hores i minuts del camp de dates dels registres d'intervenció
InterventionStatistics=Estadístiques de intervencions
NbOfinterventions=Nº de fitxes d'intervenció
NumberOfInterventionsByMonth=Nº de fitxes d'intervenció per mes (data de validació)
NbOfinterventions=Nombre de fitxers dintervenció
NumberOfInterventionsByMonth=Nombre de fitxes d'intervenció per mes (data de validació)
AmountOfInteventionNotIncludedByDefault=La quantitat d'intervenció no s'inclou de manera predeterminada en els beneficis (en la majoria dels casos, els fulls de temps s'utilitzen per comptar el temps dedicat). Per incloure'ls, afegiu la opció PROJECT_INCLUDE_INTERVENTION_AMOUNT_IN_PROFIT amb el valor 1 a Configuració &rarr; Varis.
InterId=Id. d'intervenció
InterRef=Ref. d'intervenció

View File

@ -50,7 +50,7 @@ ConfirmValidMailing=Vols validar aquest E-Mailing?
ConfirmResetMailing=Advertència, reiniciant el correu electrònic <b> %s </b>, permetrà tornar a enviar aquest correu electrònic en un correu a granel. Estàs segur que vols fer això?
ConfirmDeleteMailing=Esteu segur que voleu suprimir aquesta adreça electrònica?
NbOfUniqueEMails=Nombre de correus electrònics exclusius
NbOfEMails=Nº d'E-mails
NbOfEMails=Nombre de correus electrònics
TotalNbOfDistinctRecipients=Nombre de destinataris únics
NoTargetYet=Cap destinatari definit
NoRecipientEmail=No hi ha cap correu electrònic destinatari per a %s
@ -112,7 +112,7 @@ ConfirmSendingEmailing=Si voleu enviar correus electrònics directament des d'aq
LimitSendingEmailing=Nota: L'enviament de missatges massius de correu electrònic des de la interfície web es realitza diverses vegades per motius de seguretat i temps d'espera, <b> %s </b> als destinataris de cada sessió d'enviament.
TargetsReset=Buidar llista
ToClearAllRecipientsClickHere=Per buidar la llista dels destinataris d'aquest E-Mailing, feu clic al botó
ToAddRecipientsChooseHere=Per afegir destinataris, escolliu els que figuren en les llistes a continuació
ToAddRecipientsChooseHere=Afegiu destinataris escollint entre les llistes
NbOfEMailingsReceived=E-Mailings en massa rebuts
NbOfEMailingsSend=E-mails massius enviats
IdRecord=ID registre
@ -135,7 +135,7 @@ ListOfActiveNotifications=Llista totes les subscripcions actives (destinataris/e
ListOfNotificationsDone=Llista totes les notificacions automàtiques enviades per correu electrònic
MailSendSetupIs=La configuració d'enviament d'e-mail s'ha ajustat a '%s'. Aquest mètode no es pot utilitzar per enviar e-mails massius.
MailSendSetupIs2=Primer heu danar, amb un compte dadministrador, al menú %sInici - Configuració - Correus electrònics%s per canviar el paràmetre <strong>'%s'</strong> per utilitzar el mode '%s'. Amb aquest mode, podeu introduir la configuració del servidor SMTP proporcionat pel vostre proveïdor de serveis d'Internet i utilitzar la funció de correu electrònic massiu.
MailSendSetupIs3=Si te preguntes de com configurar el seu servidor SMTP, pot contactar amb %s.
MailSendSetupIs3=Si teniu cap pregunta sobre com configurar el servidor SMTP, podeu demanar-li a %s.
YouCanAlsoUseSupervisorKeyword=També pot afegir l'etiqueta <strong>__SUPERVISOREMAIL__</strong> per tenir un e-mail enviat pel supervisor a l'usuari (només funciona si un e-mail és definit per aquest supervisor)
NbOfTargetedContacts=Nombre actual de correus electrònics de contactes destinataris
UseFormatFileEmailToTarget=El fitxer importat ha de tenir el format <strong>email;nom;cognom;altre</strong>

View File

@ -84,7 +84,7 @@ FileUploaded=L'arxiu s'ha carregat correctament
FileTransferComplete=El(s) fitxer(s) s'han carregat correctament
FilesDeleted=El(s) fitxer(s) s'han eliminat correctament
FileWasNotUploaded=Un arxiu ha estat seleccionat per adjuntar, però encara no ha estat pujat. Feu clic a "Adjuntar aquest arxiu" per a això.
NbOfEntries=Nº d'entrades
NbOfEntries=Nombre d'entrades
GoToWikiHelpPage=Llegiu l'ajuda en línia (cal tenir accés a Internet)
GoToHelpPage=Consultar l'ajuda
DedicatedPageAvailable=Hi ha una pàgina dajuda dedicada relacionada amb la pantalla actual
@ -522,7 +522,7 @@ Draft=Esborrany
Drafts=Esborranys
StatusInterInvoiced=Facturat
Validated=Validat
ValidatedToProduce=Validat (per produir)
ValidatedToProduce=Validat (per a produir)
Opened=Actiu
OpenAll=Obre (tot)
ClosedAll=Tancat (tot)
@ -554,11 +554,11 @@ Photos=Fotos
AddPhoto=Afegeix una imatge
DeletePicture=Elimina la imatge
ConfirmDeletePicture=Confirmes l'eliminació de la imatge?
Login=Login
Login=Nom d'usuari
LoginEmail=Codi d'usuari (correu electrònic)
LoginOrEmail=Codi d'usuari o correu electrònic
CurrentLogin=Login actual
EnterLoginDetail=Introduir detalls del login
CurrentLogin=Nom d'usuari actual
EnterLoginDetail=Introduïu les dades d'inici de sessió
January=gener
February=febrer
March=març
@ -1062,7 +1062,7 @@ ValidUntil=Vàlid fins
NoRecordedUsers=No hi ha usuaris
ToClose=Per tancar
ToProcess=A processar
ToApprove=Per aprovar
ToApprove=Per a aprovar
GlobalOpenedElemView=Vista global
NoArticlesFoundForTheKeyword=No s'ha trobat cap article per a la paraula clau &quot; <strong>%s</strong> &quot;
NoArticlesFoundForTheCategory=No s'ha trobat cap article per a la categoria
@ -1113,7 +1113,7 @@ OutOfDate=Obsolet
EventReminder=Recordatori d'esdeveniments
UpdateForAllLines=Actualització per a totes les línies
OnHold=Fora de servei
AffectTag=Affect Tag
ConfirmAffectTag=Bulk Tag Affect
ConfirmAffectTagQuestion=Are you sure you want to affect tags to the %s selected record(s)?
CategTypeNotFound=No tag type found for type of records
AffectTag=Afecta l'etiqueta
ConfirmAffectTag=Afecta l'etiqueta massivament
ConfirmAffectTagQuestion=Esteu segur que voleu afectar les etiquetes als registres seleccionats %s?
CategTypeNotFound=No s'ha trobat cap tipus d'etiqueta per al tipus de registres

View File

@ -11,13 +11,13 @@ MembersTickets=Etiquetes de socis
FundationMembers=Socis de l'entitat
ListOfValidatedPublicMembers=Llistat de socis públics validats
ErrorThisMemberIsNotPublic=Aquest soci no és públic
ErrorMemberIsAlreadyLinkedToThisThirdParty=Un altre soci (nom: <b>%s</b>, login: <b>%s</b>) està vinculat al tercer <b>%s</b>. Esborreu l'enllaç existent ja que un tercer només pot estar vinculat a un sol soci (i viceversa).
ErrorMemberIsAlreadyLinkedToThisThirdParty=Un altre soci (nom: <b>%s</b>, nom d'usuari: <b>%s</b>) ja està vinculat al tercer <b>%s</b>. Esborreu l'enllaç existent ja que un tercer només pot estar vinculat a un sol soci (i viceversa).
ErrorUserPermissionAllowsToLinksToItselfOnly=Per raons de seguretat, ha de posseir els drets de modificació de tots els usuaris per poder vincular un soci a un usuari que no sigui vostè mateix.
SetLinkToUser=Vincular a un usuari Dolibarr
SetLinkToThirdParty=Vincular a un tercer Dolibarr
MembersCards=Carnets de socis
MembersList=Llistat de socis
MembersListToValid=Llistat de socis esborrany (per validar)
MembersListToValid=Llistat de socis esborrany (per a validar)
MembersListValid=Llistat de socis validats
MembersListUpToDate=Llista de socis vàlids amb quotes al dia
MembersListNotUpToDate=Llista de socis vàlids amb quotes pendents
@ -34,7 +34,7 @@ EndSubscription=Final d'afiliació
SubscriptionId=ID d'afiliació
WithoutSubscription=Sense afiliació
MemberId=ID de soci
NewMember=Nou soci
NewMember=Soci nou
MemberType=Tipus de soci
MemberTypeId=ID de tipus de soci
MemberTypeLabel=Etiqueta de tipus de soci
@ -54,8 +54,8 @@ MembersStatusResiliated=Socis donats de baixa
MemberStatusNoSubscription=Validat (no cal subscripció)
MemberStatusNoSubscriptionShort=Validat
SubscriptionNotNeeded=No cal subscripció
NewCotisation=Nova aportació
PaymentSubscription=Nou pagament de quota
NewCotisation=Aportació nova
PaymentSubscription=Pagament de quota nou
SubscriptionEndDate=Data final d'afiliació
MembersTypeSetup=Configuració dels tipus de socis
MemberTypeModified=Tipus de soci modificat
@ -63,8 +63,8 @@ DeleteAMemberType=Elimina un tipus de soci
ConfirmDeleteMemberType=Estàs segur de voler eliminar aquest tipus de soci?
MemberTypeDeleted=Tipus de soci eliminat
MemberTypeCanNotBeDeleted=El tipus de soci no es pot eliminar
NewSubscription=Nova afiliació
NewSubscriptionDesc=Utilitzi aquest formulari per registrar-se com un nou soci de l'entitat. Per a una renovació (si ja és soci) poseu-vos en contacte amb l'entitat mitjançant l'e-mail %s.
NewSubscription=Afiliació nova
NewSubscriptionDesc=Aquest formulari us permet registrar la vostra afiliació com a soci nou de l'entitat. Si voleu renovar l'afiliació (si ja sou soci), poseu-vos en contacte amb el gestor de l'entitat per correu electrònic %s.
Subscription=Afiliació
Subscriptions=Afiliacions
SubscriptionLate=En retard
@ -73,7 +73,7 @@ ListOfSubscriptions=Llista d'afiliacions
SendCardByMail=Enviar una targeta per correu electrònic
AddMember=Crea soci
NoTypeDefinedGoToSetup=No s'ha definit cap tipus de soci. Ves al menú "Tipus de socis"
NewMemberType=Nou tipus de soci
NewMemberType=Tipus de soci nou
WelcomeEMail=Correu electrònic de benvinguda
SubscriptionRequired=Subjecte a cotització
DeleteType=Elimina
@ -120,7 +120,7 @@ SendingReminderActionComm=Enviament de recordatori de lesdeveniment de lag
# Topic of email templates
YourMembershipRequestWasReceived=S'ha rebut la vostra subscripció.
YourMembershipWasValidated=S'ha validat la vostra subscripció
YourSubscriptionWasRecorded=S'ha registrat la vostra nova subscripció
YourSubscriptionWasRecorded=S'ha registrat la vostra afiliació nova
SubscriptionReminderEmail=Recordatori de subscripció
YourMembershipWasCanceled=S'ha cancel·lat la vostra pertinença
CardContent=Contingut de la seva fitxa de soci
@ -179,10 +179,10 @@ LatestSubscriptionDate=Data de l'última afiliació
MemberNature=Naturalesa del membre
MembersNature=Naturalesa dels socis
Public=Informació pública
NewMemberbyWeb=S'ha afegit un nou soci. A l'espera d'aprovació
NewMemberForm=Formulari d'inscripció
NewMemberbyWeb=S'ha afegit un soci nou. Esperant l'aprovació
NewMemberForm=Formulari de soci nou
SubscriptionsStatistics=Estadístiques de cotitzacions
NbOfSubscriptions=Nombre de cotitzacions
NbOfSubscriptions=Nombre d'afiliacions
AmountOfSubscriptions=Import de cotitzacions
TurnoverOrBudget=Volum de vendes (empresa) o Pressupost (associació o col.lectiu)
DefaultAmount=Import per defecte cotització

View File

@ -40,7 +40,7 @@ PageForCreateEditView=Pàgina PHP per crear/editar/veure un registre
PageForAgendaTab=Pàgina de PHP per a la pestanya d'esdeveniments
PageForDocumentTab=Pàgina de PHP per a la pestanya de documents
PageForNoteTab=Pàgina de PHP per a la pestanya de notes
PageForContactTab=PHP page for contact tab
PageForContactTab=Pàgina PHP per a la pestanya de contacte
PathToModulePackage=Ruta al zip del paquet del mòdul/aplicació
PathToModuleDocumentation=Camí al fitxer de la documentació del mòdul / aplicació (%s)
SpaceOrSpecialCharAreNotAllowed=Els espais o caràcters especials no estan permesos.
@ -128,7 +128,7 @@ UseSpecificFamily = Utilitzeu una família específica
UseSpecificAuthor = Utilitzeu un autor específic
UseSpecificVersion = Utilitzeu una versió inicial específica
IncludeRefGeneration=La referència de lobjecte sha de generar automàticament
IncludeRefGenerationHelp=Marca-ho si vols incloure codi per gestionar la generació automàtica de la referència
IncludeRefGenerationHelp=Marca-ho si vols incloure codi per a gestionar la generació automàtica de la referència
IncludeDocGeneration=Vull generar alguns documents des de l'objecte
IncludeDocGenerationHelp=Si ho marques, es generarà el codi per afegir una casella "Generar document" al registre.
ShowOnCombobox=Mostra el valor en un combobox
@ -140,4 +140,4 @@ TypeOfFieldsHelp=Tipus de camps: <br> varchar(99), double (24,8), real, text, ht
AsciiToHtmlConverter=Convertidor Ascii a HTML
AsciiToPdfConverter=Convertidor Ascii a PDF
TableNotEmptyDropCanceled=La taula no està buida. S'ha cancel·lat l'eliminació.
ModuleBuilderNotAllowed=The module builder is available but not allowed to your user.
ModuleBuilderNotAllowed=El creador de mòduls està disponible però no permès al vostre usuari.

View File

@ -1,7 +1,7 @@
Mrp=Ordres de fabricació
MOs=Ordres de fabricació
ManufacturingOrder=Ordre de fabricació
MRPDescription=Mòdul per gestionar Ordres de Fabricació o producció (OF).
MRPDescription=Mòdul per a gestionar Ordres de producció i fabricació (OF).
MRPArea=Àrea MRP
MrpSetupPage=Configuració del mòdul MRP
MenuBOM=Llistes de material
@ -34,7 +34,7 @@ ConfirmDeleteBillOfMaterials=Estàs segur que vols suprimir aquesta llista de ma
ConfirmDeleteMo=Esteu segur que voleu suprimir aquesta factura de material?
MenuMRP=Ordres de fabricació
NewMO=Ordre de fabricació nova
QtyToProduce=Quantitat per produir
QtyToProduce=Quantitat a produir
DateStartPlannedMo=Data dinici prevista
DateEndPlannedMo=Data prevista de finalització
KeepEmptyForAsap=Buit significa "Tan aviat com sigui possible"
@ -62,7 +62,7 @@ ConsumeOrProduce=Consumir o Produir
ConsumeAndProduceAll=Consumir i produir tot
Manufactured=Fabricat
TheProductXIsAlreadyTheProductToProduce=El producte a afegir ja és el producte a produir.
ForAQuantityOf=Per produir una quantitat de %s
ForAQuantityOf=Per a produir una quantitat de %s
ConfirmValidateMo=Voleu validar aquesta Ordre de Fabricació?
ConfirmProductionDesc=Fent clic a '%s' validareu el consum i/o la producció per a les quantitats establertes. També sactualitzarà l'estoc i es registrarà els moviments d'estoc.
ProductionForRef=Producció de %s
@ -70,7 +70,7 @@ AutoCloseMO=Tancar automàticament lOrdre de Fabricació si sarriba a les
NoStockChangeOnServices=Sense canvi destoc en serveis
ProductQtyToConsumeByMO=Quantitat de producte que encara es pot consumir amb OP obertes
ProductQtyToProduceByMO=Quantitat de producte que encara es pot produir mitjançant OP obertes
AddNewConsumeLines=Afegiu una línia nova per consumir
AddNewConsumeLines=Afegiu una nova línia per a consumir
ProductsToConsume=Productes a consumir
ProductsToProduce=Productes a produir
UnitCost=Cost unitari

View File

@ -9,7 +9,7 @@ HasAccessToken=S'ha generat un token i s'ha desat en la base de dades local
NewTokenStored=Token rebut i desat
ToCheckDeleteTokenOnProvider=Feu clic aquí per comprovar/eliminar l'autorització desada pel proveïdor OAuth %s
TokenDeleted=Token eliminat
RequestAccess=Clica aquí per demanar/renovar l'accés i rebre un nou token per desar
RequestAccess=Feu clic aquí per a sol·licitar/renovar l'accés i rebre un nou testimoni per a desar
DeleteAccess=Feu clic aquí per a suprimir el testimoni
UseTheFollowingUrlAsRedirectURI=Utilitzeu l'URL següent com a URI de redirecció quan creeu les vostres credencials amb el vostre proveïdor de OAuth:
ListOfSupportedOauthProviders=Introduïu les credencials proporcionades pel vostre proveïdor OAuth2. Només es mostren aquí els proveïdors compatibles OAuth2. Aquests serveis poden ser utilitzats per altres mòduls que necessiten autenticació OAuth2.

View File

@ -19,7 +19,7 @@ SelectedDays=Dies seleccionats
TheBestChoice=Actualment la millor opció és
TheBestChoices=Actualment les millors opcions són
with=amb
OpenSurveyHowTo=Si està d'acord per votar en aquesta enquesta, ha de donar el seu nom, triar els valors que s'ajusten millor per a vostè i validi amb el botó de més al final de la línia.
OpenSurveyHowTo=Si accepteu votar en aquesta enquesta, haureu de donar el vostre nom, escollir els valors que millor sadapten a vosaltres i validar-los amb el botó al final de la línia.
CommentsOfVoters=Comentaris dels votants
ConfirmRemovalOfPoll=Està segur que desitja eliminar aquesta enquesta (i tots els vots)
RemovePoll=Eliminar enquesta
@ -35,7 +35,7 @@ TitleChoice=Títol de l'opció
ExportSpreadsheet=Exportar resultats a un full de càlcul
ExpireDate=Data límit
NbOfSurveys=Nombre d'enquestes
NbOfVoters=Nº de votants
NbOfVoters=Nombre de votants
SurveyResults=Resultats
PollAdminDesc=Està autoritzat per canviar totes les línies de l'enquesta amb el botó "Editar". Pot, també, eliminar una columna o una línia amb %s. També podeu afegir una nova columna amb %s.
5MoreChoices=5 opcions més
@ -58,4 +58,4 @@ MoreChoices=Introdueixi més opcions pels votants
SurveyExpiredInfo=L'enquesta s'ha tancat o el temps de votació s'ha acabat.
EmailSomeoneVoted=%s ha emplenat una línia.\nPot trobar la seva enquesta en l'enllaç:\n%s
ShowSurvey=Mostra l'enquesta
UserMustBeSameThanUserUsedToVote=Per publicar un comentari has d'utilitzar el mateix nom d'usuari que l'utilitzat per votar.
UserMustBeSameThanUserUsedToVote=Per a publicar un comentari, heu d'haver votat i utilitzar el mateix nom d'usuari utilitzat per a votar

View File

@ -37,7 +37,7 @@ StatusOrderOnProcessShort=Comanda
StatusOrderProcessedShort=Processada
StatusOrderDelivered=Entregada
StatusOrderDeliveredShort=Entregada
StatusOrderToBillShort=Emès
StatusOrderToBillShort=Lliurat
StatusOrderApprovedShort=Aprovada
StatusOrderRefusedShort=Rebutjada
StatusOrderToProcessShort=A processar
@ -49,7 +49,7 @@ StatusOrderValidated=Validada
StatusOrderOnProcess=Comanda - En espera de recepció
StatusOrderOnProcessWithValidation=Comanda - A l'espera de rebre o validar
StatusOrderProcessed=Processada
StatusOrderToBill=Emès
StatusOrderToBill=Lliurat
StatusOrderApproved=Aprovada
StatusOrderRefused=Rebutjada
StatusOrderReceivedPartially=Rebuda parcialment
@ -110,7 +110,7 @@ ActionsOnOrder=Esdeveniments sobre la comanda
NoArticleOfTypeProduct=No hi ha cap article del tipus "producte", de manera que no es pot enviar cap article per a aquesta comanda
OrderMode=Mètode de comanda
AuthorRequest=Autor/Sol·licitant
UserWithApproveOrderGrant=Usuaris habilitats per aprovar les comandes
UserWithApproveOrderGrant=Usuaris amb permís "aprovar comandes".
PaymentOrderRef=Pagament comanda %s
ConfirmCloneOrder=Vols clonar aquesta comanda <b>%s</b>?
DispatchSupplierOrder=Recepció de l'ordre de compra %s

View File

@ -77,7 +77,8 @@ Notify_TASK_DELETE=Tasca eliminada
Notify_EXPENSE_REPORT_VALIDATE=Informe de despeses validat (cal aprovar)
Notify_EXPENSE_REPORT_APPROVE=Informe de despeses aprovat
Notify_HOLIDAY_VALIDATE=Sol·licitud de sol licitud validada (cal aprovar)
Notify_HOLIDAY_APPROVE=Deixa la sol · licitud aprovada
Notify_HOLIDAY_APPROVE=Sol·licitud de permís aprovada
Notify_ACTION_CREATE=S'ha afegit l'acció a l'Agenda
SeeModuleSetup=Vegi la configuració del mòdul %s
NbOfAttachedFiles=Número arxius/documents adjunts
TotalSizeOfAttachedFiles=Mida total dels arxius/documents adjunts
@ -119,11 +120,11 @@ ModifiedById=Id de l'usuari que ha fet l'últim canvi
ValidatedById=ID d'usuari que a validat
CanceledById=ID d'usuari que ha cancel·lat
ClosedById=ID d'usuari que a tancat
CreatedByLogin=Login d'usuari que a creat
CreatedByLogin=Usuari que ha creat
ModifiedByLogin=Codi d'usuari que ha fet l'últim canvi
ValidatedByLogin=Login d'usuari que ha validat
CanceledByLogin=Login d'usuari que ha cancel·lat
ClosedByLogin=Login d'usuari que a tancat
ValidatedByLogin=Usuari que ha validat
CanceledByLogin=Usuari que ha cancel·lat
ClosedByLogin=Usuari que ha tancat
FileWasRemoved=L'arxiu %s s'ha eliminat
DirWasRemoved=La carpeta %s s'ha eliminat
FeatureNotYetAvailable=Funcionalitat encara no disponible en aquesta versió
@ -215,6 +216,7 @@ EMailTextExpenseReportValidated=L'informe de despeses %s ha estat validat.
EMailTextExpenseReportApproved=S'ha aprovat l'informe de despeses %s.
EMailTextHolidayValidated=S'ha validat la sol licitud %s.
EMailTextHolidayApproved=S'ha aprovat la sol licitud %s.
EMailTextActionAdded=L'acció %s s'ha afegit a l'agenda.
ImportedWithSet=Lot d'importació (import key)
DolibarrNotification=Notificació automàtica
ResizeDesc=Introduïu l'ample <b>O</b> la nova alçada. La relació es conserva en canviar la mida...
@ -234,7 +236,7 @@ AddFiles=Afegeix arxius
StartUpload=Transferir
CancelUpload=Cancel·lar transferència
FileIsTooBig=L'arxiu és massa gran
PleaseBePatient=Preguem esperi uns instants...
PleaseBePatient=Si us plau sigui pacient...
NewPassword=Contrasenya nova
ResetPassword=Restablir la contrasenya
RequestToResetPasswordReceived=S'ha rebut una sol·licitud per canviar la teva contrasenya.
@ -259,7 +261,7 @@ ContactCreatedByEmailCollector=Contacte / adreça creada pel recollidor de corre
ProjectCreatedByEmailCollector=Projecte creat pel recollidor de correus electrònics MSGID %s
TicketCreatedByEmailCollector=Tiquet creat pel recollidor de correus electrònics MSGID %s
OpeningHoursFormatDesc=Utilitzeu a - per separar lhorari dobertura i tancament. <br> Utilitzeu un espai per introduir diferents intervals. <br> Exemple: 8-12 14-18
PrefixSession=Prefix for session ID
PrefixSession=Prefix per a l'identificador de sessió
##### Export #####
ExportsArea=Àrea d'exportacions

View File

@ -80,7 +80,7 @@ PurchasedAmount=Import comprat
NewPrice=Preu nou
MinPrice=Min. preu de venda
EditSellingPriceLabel=Edita l'etiqueta de preu de venda
CantBeLessThanMinPrice=El preu de venda no ha de ser inferior al mínim per a aquest producte (%s sense IVA). Aquest missatge pot estar causat per un descompte molt gran.
CantBeLessThanMinPrice=El preu de venda no pot ser inferior al mínim permès per a aquest producte (%s sense IVA). Aquest missatge també pot aparèixer si escriviu un descompte massa gran.
ContractStatusClosed=Tancat
ErrorProductAlreadyExists=Un producte amb la referència %s ja existeix.
ErrorProductBadRefOrLabel=El valor de la referència o etiqueta és incorrecte
@ -108,7 +108,7 @@ FillWithLastServiceDates=Emplena les dates de l'última línia de servei
MultiPricesAbility=Segments de preus múltiples per producte / servei (cada client està en un segment de preus)
MultiPricesNumPrices=Nombre de preus
DefaultPriceType=Base de preus per defecte (contra impostos) en afegir preus de venda nous
AssociatedProductsAbility=Activa els kits (conjunt d'altres productes)
AssociatedProductsAbility=Activa els kits (conjunt de diversos productes)
VariantsAbility=Activa les variants (variacions de productes, per exemple, color, mida)
AssociatedProducts=Kits
AssociatedProductsNumber=Nombre de productes que componen aquest kit
@ -138,7 +138,7 @@ QtyMin=Min. quantitat de compra
PriceQtyMin=Preu mínim
PriceQtyMinCurrency=Preu (moneda) per aquesta quantitat (sense descompte)
VATRateForSupplierProduct=Preu de l'IVA (per a aquest proveïdor/product)
DiscountQtyMin=Descompte per aquest quantitat
DiscountQtyMin=Descompte per aquesta quantitat.
NoPriceDefinedForThisSupplier=Sense preu ni quantitat definida per aquest proveïdor / producte
NoSupplierPriceDefinedForThisProduct=No hi ha cap preu / quantitat de proveïdor definit per a aquest producte
PredefinedProductsToSell=Producte predefinit
@ -149,12 +149,12 @@ PredefinedServicesToPurchase=Serveis predefinits per comprar
PredefinedProductsAndServicesToPurchase=Productes / serveis predefinits per comprar
NotPredefinedProducts=Sense productes/serveis predefinits
GenerateThumb=Generar l'etiqueta
ServiceNb=Servei nº %s
ServiceNb=Servei núm. %s
ListProductServiceByPopularity=Llistat de productes/serveis per popularitat
ListProductByPopularity=Llistat de productes/serveis per popularitat
ListServiceByPopularity=Llistat de serveis per popularitat
Finished=Producte fabricat
RowMaterial=Matèria prima
RowMaterial=Matèria primera
ConfirmCloneProduct=Estàs segur que vols clonar el producte o servei <b>%s</b>?
CloneContentProduct=Clona tota la informació principal del producte/servei
ClonePricesProduct=Clonar preus
@ -252,7 +252,7 @@ VariantLabelExample=Exemples: Color, Talla
### composition fabrication
Build=Fabricar
ProductsMultiPrice=Productes i preus per cada nivell de preu
ProductsOrServiceMultiPrice=Preus de client (productes o serveis, multi-preus)
ProductsOrServiceMultiPrice=Preus per als clients (de productes o serveis, multipreus)
ProductSellByQuarterHT=Facturació de productes trimestral abans d'impostos
ServiceSellByQuarterHT=Facturació de serveis trimestral abans d'impostos
Quarter1=1º trimestre
@ -311,10 +311,10 @@ GlobalVariableUpdaterHelpFormat1=El format per a la sol·licitud és {"URL": "ht
UpdateInterval=Interval d'actualització (minuts)
LastUpdated=Última actualització
CorrectlyUpdated=Actualitzat correctament
PropalMergePdfProductActualFile=Els fitxers utilitzats per afegir-se en el PDF Azur són
PropalMergePdfProductActualFile=Els fitxers que sutilitzen per a afegir-se al PDF Azur són
PropalMergePdfProductChooseFile=Selecciona fitxers PDF
IncludingProductWithTag=Inclòs productes/serveis amb etiqueta
DefaultPriceRealPriceMayDependOnCustomer=Preu per defecte, el preu real depén de client
DefaultPriceRealPriceMayDependOnCustomer=Preu predeterminat, el preu real pot dependre del client
WarningSelectOneDocument=Selecciona com a mínim un document
DefaultUnitToShow=Unitat
NbOfQtyInProposals=Qtat. en pressupostos

View File

@ -85,6 +85,7 @@ ProgressCalculated=Progressió calculada
WhichIamLinkedTo=al qual estic vinculat
WhichIamLinkedToProject=que estic vinculat al projecte
Time=Temps
TimeConsumed=Consumit
ListOfTasks=Llistat de tasques
GoToListOfTimeConsumed=Ves al llistat de temps consumit
GanttView=Vista de Gantt
@ -208,7 +209,7 @@ ProjectOverview=Informació general
ManageTasks=Utilitzeu projectes per seguir les tasques i / o informar el temps dedicat (fulls de temps)
ManageOpportunitiesStatus=Utilitza els projectes per seguir oportunitats
ProjectNbProjectByMonth=Nombre de projectes creats per mes
ProjectNbTaskByMonth=Nº de tasques creades per mes
ProjectNbTaskByMonth=Nombre de tasques creades per mes
ProjectOppAmountOfProjectsByMonth=Quantitat de clients potencials per mes
ProjectWeightedOppAmountOfProjectsByMonth=Quantitat ponderada de clients potencials per mes
ProjectOpenedProjectByOppStatus=Projecte obert | lead per l'estat de lead

View File

@ -16,7 +16,7 @@ CONNECTOR_NETWORK_PRINT=Impressora de xarxa
CONNECTOR_FILE_PRINT=Impressora local
CONNECTOR_WINDOWS_PRINT=Impressora local en Windows
CONNECTOR_CUPS_PRINT=Impressora CUPS
CONNECTOR_DUMMY_HELP=Impressora falsa per provar, no fa res
CONNECTOR_DUMMY_HELP=Impressora falsa per a provar, no fa res
CONNECTOR_NETWORK_PRINT_HELP=10.x.x.x:9100
CONNECTOR_FILE_PRINT_HELP=/dev/usb/lp0, /dev/usb/lp1
CONNECTOR_WINDOWS_PRINT_HELP=LPT1, COM1, smb://FooUser:secret@computername/workgroup/Receipt Printer

View File

@ -38,7 +38,7 @@ EnablePublicRecruitmentPages=Activa les pàgines públiques de treballs actius
About = Sobre
RecruitmentAbout = Quant a la contractació
RecruitmentAboutPage = Pàgina quant a la contractació
NbOfEmployeesExpected=Nº previst d'empleats
NbOfEmployeesExpected=Nombre previst d'empleats
JobLabel=Descripció del lloc de treball
WorkPlace=Lloc de treball
DateExpected=Data prevista

View File

@ -133,9 +133,9 @@ CurentlyUsingPhysicalStock=Estoc físic
RuleForStockReplenishment=Regla pels reaprovisionaments d'estoc
SelectProductWithNotNullQty=Seleccioneu com a mínim un producte amb un valor no nul i un proveïdor
AlertOnly= Només alertes
IncludeProductWithUndefinedAlerts = Incloure també estoc negatiu per als productes sense la quantitat desitjada definida, per restaurar-los a 0
WarehouseForStockDecrease=Per la disminució d'estoc s'utilitzara el magatzem <b>%s</b>
WarehouseForStockIncrease=Pe l'increment d'estoc s'utilitzara el magatzem <b>%s</b>
IncludeProductWithUndefinedAlerts = Incloure també estoc negatiu per als productes sense la quantitat desitjada definida, per a restaurar-los a 0
WarehouseForStockDecrease=El magatzem <b>%s</b> sutilitzarà per a disminuir lestoc
WarehouseForStockIncrease=El magatzem <b>%s</b> s'utilitzarà per a augmentar l'estoc
ForThisWarehouse=Per aquest magatzem
ReplenishmentStatusDesc=Aquesta és una llista de tots els productes amb un estoc inferior a l'estoc desitjat (o inferior al valor d'alerta si la casella de selecció "només alerta" està marcada). Amb la casella de selecció, podeu crear comandes de compra per suplir la diferència.
ReplenishmentStatusDescPerWarehouse=Si voleu una reposició basada en la quantitat desitjada definida per magatzem, heu dafegir un filtre al magatzem.

View File

@ -107,7 +107,7 @@ SaveTrip=Valida l'informe de despeses
ConfirmSaveTrip=Estàs segur que vols validar aquest informe de despeses?
NoTripsToExportCSV=No hi ha cap informe de despeses per a exportar en aquest període.
ExpenseReportPayment=Informe de despeses pagades
ExpenseReportsToApprove=Informes de despeses per aprovar
ExpenseReportsToApprove=Informes de despeses per a aprovar
ExpenseReportsToPay=Informes de despeses a pagar
ConfirmCloneExpenseReport=Estàs segur de voler clonar aquest informe de despeses ?
ExpenseReportsIk=Configuració de les despeses de quilometratge

View File

@ -92,12 +92,12 @@ GroupDeleted=Grup %s eliminat
ConfirmCreateContact=Vols crear un compte de Dolibarr per a aquest contacte?
ConfirmCreateLogin=Vols crear un compte de Dolibarr per a aquest soci?
ConfirmCreateThirdParty=Vols crear un tercer per a aquest soci?
LoginToCreate=Login a crear
LoginToCreate=Nom d'usuari a crear
NameToCreate=Nom del tercer a crear
YourRole=Els seus rols
YourQuotaOfUsersIsReached=Ha arribat a la seva quota d'usuaris actius!
NbOfUsers=Nº d'usuaris
NbOfPermissions=Nº de permisos
NbOfUsers=Nombre d'usuaris
NbOfPermissions=Nombre de permisos
DontDowngradeSuperAdmin=Només un superadmin pot degradar un superadmin
HierarchicalResponsible=Supervisor
HierarchicView=Vista jeràrquica

View File

@ -86,7 +86,7 @@ MyContainerTitle=Títol del meu lloc web
AnotherContainer=Així sinclou contingut duna altra pàgina / contenidor (pot ser que tingueu un error aquí si activeu el codi dinàmic perquè pot no existir el subconjunt incrustat)
SorryWebsiteIsCurrentlyOffLine=Ho sentim, actualment aquest lloc web està fora de línia. Per favor com a més endavant ...
WEBSITE_USE_WEBSITE_ACCOUNTS=Activa la taula del compte del lloc web
WEBSITE_USE_WEBSITE_ACCOUNTSTooltip=Activeu la taula per emmagatzemar comptes del lloc web (login/contrasenya) per a cada lloc web de tercers
WEBSITE_USE_WEBSITE_ACCOUNTSTooltip=Activeu la taula per a emmagatzemar comptes de lloc web (nom d'usuari / contrasenya) per a cada lloc web / tercer
YouMustDefineTheHomePage=Primer heu de definir la pàgina d'inici predeterminada
OnlyEditionOfSourceForGrabbedContentFuture=Avís: la creació d'una pàgina web mitjançant la importació d'una pàgina web externa es reserva per a usuaris experimentats. Segons la complexitat de la pàgina d'origen, el resultat de la importació pot diferir de l'original. També si la pàgina font utilitza estils CSS comuns o Javascript en conflicte, pot trencar l'aspecte o les funcions de l'editor del lloc web quan es treballi en aquesta pàgina. Aquest mètode és una manera més ràpida de crear una pàgina, però es recomana crear la vostra pàgina nova des de zero o des duna plantilla de pàgina suggerida. <br> Tingueu en compte també que l'editor en línia pot no funcionar correctament quan s'utilitza en una pàgina creada a partir d'importar una externa.
OnlyEditionOfSourceForGrabbedContent=Només l'edició de codi HTML és possible quan el contingut s'ha capturat d'un lloc extern

View File

@ -23,9 +23,9 @@ RequestStandingOrderTreated=Peticions processades d'ordres de cobrament per domi
RequestPaymentsByBankTransferToTreat=Peticions de transferència bancària a processar
RequestPaymentsByBankTransferTreated=Peticions de transferència bancària processades
NotPossibleForThisStatusOfWithdrawReceiptORLine=Encara no és possible. L'estat de la domiciliació ter que ser 'abonada' abans de poder realitzar devolucions a les seves línies
NbOfInvoiceToWithdraw=Nº de factures de client qualificades que esperen una ordre de domiciliació
NbOfInvoiceToWithdraw=Nombre de factures de client qualificades que esperen una ordre de domiciliació
NbOfInvoiceToWithdrawWithInfo=Número de factures a client en espera de domiciliació per a clients que tenen el número de compte definida
NbOfInvoiceToPayByBankTransfer=Nº de factures de proveïdors qualificats que esperen un pagament per transferència bancària
NbOfInvoiceToPayByBankTransfer=Nombre de factures de proveïdors qualificades que esperen un pagament per transferència
SupplierInvoiceWaitingWithdraw=Factura de venedor en espera de pagament mitjançant transferència bancària
InvoiceWaitingWithdraw=Factura esperant per domiciliació bancària
InvoiceWaitingPaymentByBankTransfer=Factura en espera de transferència bancària
@ -42,7 +42,7 @@ LastWithdrawalReceipt=Últims %s rebuts domiciliats
MakeWithdrawRequest=Fes una sol·licitud de domiciliació
MakeBankTransferOrder=Fes una sol·licitud de transferència
WithdrawRequestsDone=%s domiciliacions registrades
BankTransferRequestsDone=%s credit transfer requests recorded
BankTransferRequestsDone=S'han registrat %s sol·licituds de transferència
ThirdPartyBankCode=Codi bancari de tercers
NoInvoiceCouldBeWithdrawed=Cap factura s'ha carregat amb èxit. Comproveu que els tercers de les factures tenen un IBAN vàlid i que IBAN té un RUM (Referència de mandat exclusiva) amb mode <strong>%s</strong>.
ClassCredited=Classifica com "Abonada"
@ -133,7 +133,7 @@ SEPAFRST=SEPA FRST
ExecutionDate=Data d'execució
CreateForSepa=Crea un fitxer de domiciliació bancària
ICS=Identificador de creditor CI per domiciliació bancària
ICSTransfer=Creditor Identifier CI for bank transfer
ICSTransfer=Identificador de creditor CI per transferència bancària
END_TO_END=Etiqueta XML "EndToEndId" de SEPA - Id. Única assignada per transacció
USTRD=Etiqueta XML de la SEPA "no estructurada"
ADDDAYS=Afegiu dies a la data d'execució
@ -148,4 +148,4 @@ InfoRejectSubject=Rebut de domiciliació bancària rebutjat
InfoRejectMessage=Hola,<br><br>el rebut domiciliat de la factura %s relacionada amb la companyia %s, amb un import de %s ha estat rebutjada pel banc.<br><br>--<br>%s
ModeWarning=No s'ha establert l'opció de treball en real, ens aturarem després d'aquesta simulació
ErrorCompanyHasDuplicateDefaultBAN=Lempresa amb lidentificador %s té més dun compte bancari per defecte. No hi ha manera de saber quin utilitzar.
ErrorICSmissing=Missing ICS in Bank account %s
ErrorICSmissing=Falta ICS al compte bancari %s

View File

@ -1598,8 +1598,13 @@ ServiceSetup=Nastavení modulu služeb
ProductServiceSetup=Nastavení modulů produktů a služeb
NumberOfProductShowInSelect=Maximální počet produktů, které mají být zobrazeny v seznamu výběrových kombinací (0 = žádný limit)
ViewProductDescInFormAbility=Zobrazovat popisy produktů ve formulářích (jinak se zobrazí v popupu popisků)
DoNotAddProductDescAtAddLines=Do not add product description (from product card) on submit add lines on forms
OnProductSelectAddProductDesc=How to use the description of the products when adding a product as a line of a document
AutoFillFormFieldBeforeSubmit=Auto fill the description input field with the description of product
DoNotAutofillButAutoConcat=Do not autofill the input field with description of product. Description of the product will be concatenated to the entered description automatically.
DoNotUseDescriptionOfProdut=Description of the product will never be included into the description of lines of documents
MergePropalProductCard=Aktivovat v servisním / Attached kartě výrobku Soubory možnost sloučit produkt PDF dokument k návrhu PDF Azur-li výrobek / služba je v návrhu
ViewProductDescInThirdpartyLanguageAbility=Zobrazte popisy produktů v jazyce subjektu
ViewProductDescInThirdpartyLanguageAbility=Display products descriptions in forms in the language of the third party (otherwise in the language of the user)
UseSearchToSelectProductTooltip=Také, pokud máte velké množství produktů (> 100 000), můžete zvýšit rychlost nastavením konstantního PRODUCT_DONOTSEARCH_ANYWHERE na 1 v nabídce Setup-> Other. Hledání bude omezeno na začátek řetězce.
UseSearchToSelectProduct=Počkejte, než stisknete klávesu před načtením obsahu seznamu combo produktu (Může se tím zvýšit výkon, pokud máte velké množství produktů, ale je méně vhodný)
SetDefaultBarcodeTypeProducts=Výchozí typ čárového kódu použít pro produkty

View File

@ -78,6 +78,7 @@ Notify_EXPENSE_REPORT_VALIDATE=Zpráva o výdajích ověřena (vyžaduje se schv
Notify_EXPENSE_REPORT_APPROVE=Zpráva o výdajích byla schválena
Notify_HOLIDAY_VALIDATE=Zanechat žádost ověřenou (vyžaduje se schválení)
Notify_HOLIDAY_APPROVE=Zanechat žádost schválenou
Notify_ACTION_CREATE=Added action to Agenda
SeeModuleSetup=Viz nastavení modulu %s
NbOfAttachedFiles=Počet připojených souborů/dokumentů
TotalSizeOfAttachedFiles=Celková velikost připojených souborů/dokumentů
@ -215,6 +216,7 @@ EMailTextExpenseReportValidated=Zpráva o výdajích %s byla ověřena.
EMailTextExpenseReportApproved=Zpráva o výdajích %s byla schválena.
EMailTextHolidayValidated=Oprávnění %s bylo ověřeno.
EMailTextHolidayApproved=Opustit požadavek %s byl schválen.
EMailTextActionAdded=The action %s has been added to the Agenda.
ImportedWithSet=Import souboru dat
DolibarrNotification=Automatické upozornění
ResizeDesc=Zadejte novou šířku <b>nebo</b> novou výšku. Poměry budou uchovávány při změně velikosti ...

View File

@ -108,7 +108,7 @@ FillWithLastServiceDates=Fill with last service line dates
MultiPricesAbility=Více cenových segmentů na produkt / službu (každý zákazník je v jednom cenovém segmentu)
MultiPricesNumPrices=Počet cen
DefaultPriceType=Základ cen za prodlení (s versus bez daně) při přidávání nových prodejních cen
AssociatedProductsAbility=Enable Kits (set of other products)
AssociatedProductsAbility=Enable Kits (set of several products)
VariantsAbility=Enable Variants (variations of products, for example color, size)
AssociatedProducts=Kits
AssociatedProductsNumber=Number of products composing this kit

View File

@ -76,15 +76,16 @@ MyActivities=Moje úkoly / činnosti
MyProjects=Moje projekty
MyProjectsArea=Moje projekty Oblast
DurationEffective=Efektivní doba trvání
ProgressDeclared=Hlášený progres
ProgressDeclared=Declared real progress
TaskProgressSummary=Průběh úkolu
CurentlyOpenedTasks=Aktuálně otevřené úkoly
TheReportedProgressIsLessThanTheCalculatedProgressionByX=Deklarovaný pokrok je menší %s než vypočtená progrese
TheReportedProgressIsMoreThanTheCalculatedProgressionByX=Deklarovaný pokrok je více %s než vypočtená progrese
ProgressCalculated=Vypočítaný progres
TheReportedProgressIsLessThanTheCalculatedProgressionByX=The declared real progress is less %s than the progress on consumption
TheReportedProgressIsMoreThanTheCalculatedProgressionByX=The declared real progress is more %s than the progress on consumption
ProgressCalculated=Progress on consumption
WhichIamLinkedTo=se kterým jsem spojen
WhichIamLinkedToProject=které jsem propojil s projektem
Time=Čas
TimeConsumed=Consumed
ListOfTasks=Seznam úkolů
GoToListOfTimeConsumed=Přejít na seznam času spotřebovaného
GanttView=Gantt View

View File

@ -1598,8 +1598,13 @@ ServiceSetup=Installation af servicemoduler
ProductServiceSetup=Opsætning af Varer/ydelser-modul
NumberOfProductShowInSelect=Maksimalt antal produkter, der skal vises i kombinationsvalglister (0 = ingen grænse)
ViewProductDescInFormAbility=Vis produktbeskrivelser i formularer (ellers vist i en værktøjstip-popup)
DoNotAddProductDescAtAddLines=Tilføj ikke produktbeskrivelse (fra produktkort) på indsend tilføjelseslinjer på formularer
OnProductSelectAddProductDesc=Sådan bruges beskrivelsen af produkterne, når du tilføjer et produkt som en linje i et dokument
AutoFillFormFieldBeforeSubmit=Udfyld automatisk indtastningsfeltet med beskrivelsen af produktet
DoNotAutofillButAutoConcat=Udfyld ikke indtastningsfeltet automatisk med produktbeskrivelse. Produktbeskrivelsen sammenkædes automatisk med den indtastede beskrivelse.
DoNotUseDescriptionOfProdut=Produktbeskrivelse vil aldrig blive inkluderet i beskrivelsen af dokumentlinjer
MergePropalProductCard=Aktivér i produkt / tjeneste Vedhæftede filer fanen en mulighed for at fusionere produkt PDF-dokument til forslag PDF azur hvis produkt / tjeneste er i forslaget
ViewProductDescInThirdpartyLanguageAbility=Vis produktbeskrivelser på tredjeparts sprog
ViewProductDescInThirdpartyLanguageAbility=Vis produktbeskrivelser i formularer på tredjeparts sprog (ellers på brugerens sprog)
UseSearchToSelectProductTooltip=Også hvis du har et stort antal produkter (> 100 000), kan du øge hastigheden ved at indstille konstant PRODUCT_DONOTSEARCH_ANYWHERE til 1 i Setup-> Other. Søgningen er så begrænset til starten af strengen.
UseSearchToSelectProduct=Vent, indtil du trykker på en tast, inden du læser indholdet af produktkombinationslisten (dette kan øge ydeevnen, hvis du har et stort antal produkter, men det er mindre praktisk)
SetDefaultBarcodeTypeProducts=Standard stregkodetype, der skal bruges til varer

View File

@ -78,6 +78,7 @@ Notify_EXPENSE_REPORT_VALIDATE=Udgiftsrapport valideret (godkendelse krævet)
Notify_EXPENSE_REPORT_APPROVE=Udgiftsrapport godkendt
Notify_HOLIDAY_VALIDATE=Anmodning om tilladelse er godkendt (godkendelse kræves)
Notify_HOLIDAY_APPROVE=Anmodning om tilladelse godkendt
Notify_ACTION_CREATE=Føjede handling til dagsorden
SeeModuleSetup=Se opsætning af modul %s
NbOfAttachedFiles=Antal vedhæftede filer / dokumenter
TotalSizeOfAttachedFiles=Samlede størrelse på vedhæftede filer / dokumenter
@ -215,6 +216,7 @@ EMailTextExpenseReportValidated=Udgiftsrapport %s er godkendt.
EMailTextExpenseReportApproved=Udgiftsrapport %s er godkendt.
EMailTextHolidayValidated=Anmodning om orlov/ferie %s er godkendt.
EMailTextHolidayApproved=Anmodning om ferie %s er godkendt.
EMailTextActionAdded=Handlingen %s er føjet til dagsordenen.
ImportedWithSet=Indførsel datasæt
DolibarrNotification=Automatisk anmeldelse
ResizeDesc=Indtast nye bredde <b>OR</b> ny højde. Ratio vil blive holdt i resizing ...

View File

@ -108,7 +108,7 @@ FillWithLastServiceDates=Udfyld med sidste servicelinjedatoer
MultiPricesAbility=Flere prissegmenter pr. Produkt / service (hver kunde er i et prissegment)
MultiPricesNumPrices=Antal priser
DefaultPriceType=Prisgrundlag pr. Standard (med eller uden skat) ved tilføjelse af nye salgspriser
AssociatedProductsAbility=Aktivér sæt (sæt andre produkter)
AssociatedProductsAbility=Aktivér sæt (sæt med flere produkter)
VariantsAbility=Aktiver varianter (variationer af produkter, f.eks. Farve, størrelse)
AssociatedProducts=Sæt
AssociatedProductsNumber=Antal produkter, der udgør dette sæt

View File

@ -76,15 +76,16 @@ MyActivities=Mine opgaver / aktiviteter
MyProjects=Mine projekter
MyProjectsArea=Mine projekter Område
DurationEffective=Effektiv varighed
ProgressDeclared=Erklæret fremskridt
ProgressDeclared=Erklæret reel fremskridt
TaskProgressSummary=Opgave fremskridt
CurentlyOpenedTasks=Aktuelt åbne opgaver
TheReportedProgressIsLessThanTheCalculatedProgressionByX=Den erklærede fremgang er mindre %s end den beregnede progression
TheReportedProgressIsMoreThanTheCalculatedProgressionByX=Den erklærede fremgang er mere %s end den beregnede progression
ProgressCalculated=Beregnede fremskridt
TheReportedProgressIsLessThanTheCalculatedProgressionByX=Den erklærede reelle fremgang er mindre %s end fremskridt med forbrug
TheReportedProgressIsMoreThanTheCalculatedProgressionByX=Den erklærede reelle fremgang er mere %s end fremskridt med forbrug
ProgressCalculated=Fremskridt med hensyn til forbrug
WhichIamLinkedTo=som jeg er knyttet til
WhichIamLinkedToProject=som jeg er knyttet til projektet
Time=Tid
TimeConsumed=Forbruges
ListOfTasks=Liste over opgaver
GoToListOfTimeConsumed=Gå til listen over tid forbrugt
GanttView=Gantt View
@ -211,9 +212,9 @@ ProjectNbProjectByMonth=Antal oprettet projekter pr. Måned
ProjectNbTaskByMonth=Antal oprettet opgaver efter måned
ProjectOppAmountOfProjectsByMonth=Mængden af kundeemner pr. Måned
ProjectWeightedOppAmountOfProjectsByMonth=Vægtet antal kundeemner pr. Måned
ProjectOpenedProjectByOppStatus=Open project|lead by lead status
ProjectsStatistics=Statistics on projects or leads
TasksStatistics=Statistics on tasks of projects or leads
ProjectOpenedProjectByOppStatus=Åbn projekt | ført efter leadstatus
ProjectsStatistics=Statistik over projekter eller kundeemner
TasksStatistics=Statistik over opgaver for projekter eller leads
TaskAssignedToEnterTime=Opgave tildelt. Indtastning af tid på denne opgave skal være muligt.
IdTaskTime=Id opgave tid
YouCanCompleteRef=Hvis du ønsker at afslutte ref med et eller flere suffiks, anbefales det at tilføje et - tegn for at adskille det, så den automatiske nummerering stadig fungerer korrekt til næste projekter. For eksempel %s-MYSUFFIX

View File

@ -128,6 +128,7 @@ SummaryConst=Liste aller Systemeinstellungen
Skin=Oberfläche
DefaultSkin=Standardoberfläche
CompanyCurrency=Firmenwährung
YouHaveXObjectUseSearchOptim=You have %s %s in the database. You should add the constant %s to 1 in Home-Setup-Other. Limit the search to the beginning of strings which makes it possible for the database to use indexes and you should get an immediate response.
WatermarkOnDraftInvoices=Wasserzeichen auf Rechnungsentwürfen (alle, falls leer)
WatermarkOnDraftProposal=Wasserzeichen für Angebotsentwürfe (alle, falls leer)
BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_ORDER=Fragen Sie nach dem Bestimmungsort des Bankkontos der Bestellung
@ -147,6 +148,7 @@ LDAPMembersTypesSynchro=Mitgliedertypen
LDAPSynchronization=LDAP Synchronisierung
LDAPFunctionsNotAvailableOnPHP=LDAP Funktionen nicht verfügbar in Deinem PHP
LDAPFieldFullname=vollständiger Name
ViewProductDescInThirdpartyLanguageAbility=Display products descriptions in forms in the language of the third party (otherwise in the language of the user)
ClickToDialSetup=Click-to-Dial-Moduleinstellungen
MailToSendShipment=Sendungen
MailToSendIntervention=Eingriffe

View File

@ -1,2 +1,5 @@
# Dolibarr language file - Source file is en_US - boxes
BoxCurrentAccounts=Aktueller Saldo
BoxCustomersOrdersPerMonth=Bestellungen pro Monat
BoxLastManualEntries=Last manual entries in accountancy
BoxTitleLastManualEntries=%s latest manual entries

View File

@ -17,6 +17,7 @@ ProductStatusOnBuyShort=Verfügbar
ProductStatusNotOnBuyShort=Veraltet
SellingPriceTTC=Verkaufspreis (brutto)
CantBeLessThanMinPrice=Der aktuelle Verkaufspreis unterschreitet die Preisuntergrenze dieses Produkts (%s ohne MwSt.)
AssociatedProductsAbility=Enable Kits (set of several products)
NoMatchFound=Keine Treffer gefunden
DeleteProduct=Produkt/Service löschen
ConfirmDeleteProduct=Möchten Sie dieses Produkt/Service wirklich löschen?

View File

@ -418,6 +418,7 @@ SendmailOptionNotComplete=Achtung, auf einigen Linux-Systemen, E-Mails von Ihrem
TranslationOverwriteDesc=Sie können Zeichenketten durch Füllen der folgenden Tabelle überschreiben. Wählen Sie Ihre Sprache aus dem "%s" Drop-Down und tragen Sie den Schlüssel in "%s" und Ihre neue Übersetzung in "%s" ein.
NewTranslationStringToShow=Neue Übersetzungen anzeigen
OnlyFollowingModulesAreOpenedToExternalUsers=Hinweis: Nur die folgenden Module sind für externe Nutzer verfügbar (unabhängig von der Berechtigung dieser Benutzer), und das auch nur, wenn die Rechte zugeteilt wurden:
YouHaveXObjectUseSearchOptim=You have %s %s in the database. You should add the constant %s to 1 in Home-Setup-Other. Limit the search to the beginning of strings which makes it possible for the database to use indexes and you should get an immediate response.
GetBarCode=Erhalten Sie einen Barcode
UserMailRequired=E-Mail für neue Benutzer als Pflichtfeld setzen
HRMSetup=HRM Modul Einstellungen
@ -461,6 +462,7 @@ MemcachedNotAvailable=Kein Cache Anwendung gefunden. \nSie können die Leistung
MemcachedModuleAvailableButNotSetup=Module memcached für applicative Cache gefunden, aber Setup-Modul ist nicht vollständig.
MemcachedAvailableAndSetup=Module memcached dedicated to use memcached server is enabled..
ServiceSetup=Leistungen Modul Setup
ViewProductDescInThirdpartyLanguageAbility=Display products descriptions in forms in the language of the third party (otherwise in the language of the user)
SetDefaultBarcodeTypeProducts=Standard-Barcode-Typ für Produkte
SetDefaultBarcodeTypeThirdParties=Standard-Barcode-Typ für Geschäftspartner
UseUnits=Definieren Sie eine Masseinheit für die Menge während der Auftrags-, Auftragsbestätigungs- oder Rechnungszeilen-Ausgabe

View File

@ -38,6 +38,7 @@ ServicesArea=Leistungs-Übersicht
SupplierCard=Anbieterkarte
SetDefaultBarcodeType=Wählen Sie den standardmässigen Barcode-Typ
MultiPricesAbility=Preisstufen pro Produkt / Dienstleistung\n(Kunden werden einem Segment zugewiesen)
AssociatedProductsAbility=Enable Kits (set of several products)
ParentProducts=Übergeordnetes Produkt
ListOfProductsServices=Liste der Produkte und Dienstleistungen
QtyMin=Mindestmenge

View File

@ -18,14 +18,14 @@ DefaultForService=Standard für Leistung
DefaultForProduct=Standard für Produkt
CantSuggest=Kann keines vorschlagen
AccountancySetupDoneFromAccountancyMenu=Die wichtigste Teil der Konfiguration der Buchhaltung aus dem Menü %s wurde erledigt
ConfigAccountingExpert=Configuration of the module accounting (double entry)
ConfigAccountingExpert=Konfiguration des Moduls Buchhaltung (doppelt)
Journalization=Journalisieren
Journals=Journale
JournalFinancial=Finanzjournale
BackToChartofaccounts=Zurück zum Kontenplan
Chartofaccounts=Kontenplan
ChartOfSubaccounts=Chart of individual accounts
ChartOfIndividualAccountsOfSubsidiaryLedger=Chart of individual accounts of the subsidiary ledger
ChartOfSubaccounts=Plan der einzelnen Konten
ChartOfIndividualAccountsOfSubsidiaryLedger=Plan der Einzelkonten des Nebenbuchs
CurrentDedicatedAccountingAccount=Aktuelles dediziertes Konto
AssignDedicatedAccountingAccount=Neues Konto zuweisen
InvoiceLabel=Rechnungsanschrift
@ -35,8 +35,8 @@ OtherInfo=Zusatzinformationen
DeleteCptCategory=Buchhaltungskonto aus Gruppe entfernen
ConfirmDeleteCptCategory=Soll dieses Buchhaltungskonto wirklich aus der Gruppe entfernt werden?
JournalizationInLedgerStatus=Status der Journalisierung
AlreadyInGeneralLedger=Already transferred in accounting journals and ledger
NotYetInGeneralLedger=Not yet transferred in accouting journals and ledger
AlreadyInGeneralLedger=Bereits in Buchhaltungsjournale und Hauptbuch übertragen
NotYetInGeneralLedger=Noch nicht in Buchhaltungsjournale und Hauptbuch übertragen
GroupIsEmptyCheckSetup=Gruppe ist leer, kontrollieren Sie die persönlichen Kontogruppen
DetailByAccount=Detail pro Konto zeigen
AccountWithNonZeroValues=Konto mit Werten != 0
@ -46,9 +46,9 @@ CountriesNotInEEC=Nicht-EU Länder
CountriesInEECExceptMe=EU-Länder außer %s
CountriesExceptMe=Alle Länder außer %s
AccountantFiles=Belegdokumente exportieren
ExportAccountingSourceDocHelp=With this tool, you can export the source events (list and PDFs) that were used to generate your accountancy. To export your journals, use the menu entry %s - %s.
ExportAccountingSourceDocHelp=Mit diesem Tool können Sie die Quellereignisse (Liste und PDFs) exportieren, die zum Generieren Ihrer Buchhaltung verwendet wurden. Verwenden Sie zum Exportieren Ihrer Journale den Menüeintrag %s - %s.
VueByAccountAccounting=Ansicht nach Buchhaltungskonto
VueBySubAccountAccounting=View by accounting subaccount
VueBySubAccountAccounting=Ansicht nach Buchhaltungsunterkonto
MainAccountForCustomersNotDefined=Standardkonto für Kunden im Setup nicht definiert
MainAccountForSuppliersNotDefined=Standardkonto für Lieferanten die nicht im Setup definiert sind
@ -84,7 +84,7 @@ AccountancyAreaDescAnalyze=SCHRITT %s: Vorhandene Transaktionen hinzufügen oder
AccountancyAreaDescClosePeriod=SCHRITT %s: Schließen Sie die Periode, damit wir in Zukunft keine Veränderungen vornehmen können.
TheJournalCodeIsNotDefinedOnSomeBankAccount=A mandatory step in setup has not been completed (accounting code journal not defined for all bank accounts)
TheJournalCodeIsNotDefinedOnSomeBankAccount=Eine erforderliche Einrichtung wurde nicht abgeschlossen. (Kontierungsinformationen fehlen bei einigen Bankkonten)
Selectchartofaccounts=Aktiven Kontenplan wählen
ChangeAndLoad=ändern & laden
Addanaccount=Fügen Sie ein Buchhaltungskonto hinzu
@ -94,8 +94,8 @@ SubledgerAccount=Nebenbuchkonto
SubledgerAccountLabel=Nebenbuchkonto-Bezeichnung
ShowAccountingAccount=Buchhaltungskonten anzeigen
ShowAccountingJournal=Buchhaltungsjournal anzeigen
ShowAccountingAccountInLedger=Show accounting account in ledger
ShowAccountingAccountInJournals=Show accounting account in journals
ShowAccountingAccountInLedger=Buchhaltungskonto im Hauptbuch anzeigen
ShowAccountingAccountInJournals=Buchhaltungskonto in Journalen anzeigen
AccountAccountingSuggest=Buchhaltungskonto Vorschlag
MenuDefaultAccounts=Standardkonten
MenuBankAccounts=Bankkonten
@ -117,7 +117,7 @@ ExpenseReportsVentilation=Spesenabrechnung Zuordnung
CreateMvts=neue Transaktion erstellen
UpdateMvts=Änderung einer Transaktion
ValidTransaction=Transaktion bestätigen
WriteBookKeeping=Register transactions in accounting
WriteBookKeeping=Transaktionen in der Buchhaltung registrieren
Bookkeeping=Hauptbuch
BookkeepingSubAccount=Nebenbuch
AccountBalance=Saldo Sachkonten
@ -145,7 +145,7 @@ NotVentilatedinAccount=Nicht zugeordnet, zu einem Buchhaltungskonto
XLineSuccessfullyBinded=%s Produkte/Leistungen erfolgreich an Buchhaltungskonto zugewiesen
XLineFailedToBeBinded=%s Produkte/Leistungen waren an kein Buchhaltungskonto zugeordnet
ACCOUNTING_LIMIT_LIST_VENTILATION=Maximum number of lines on list and bind page (recommended: 50)
ACCOUNTING_LIMIT_LIST_VENTILATION=Maximale Zeilenanzahl auf Liste und Kontierungsseite (empfohlen: 50)
ACCOUNTING_LIST_SORT_VENTILATION_TODO=Beginnen Sie die Sortierung der Seite "Link zu realisieren“ durch die neuesten Elemente
ACCOUNTING_LIST_SORT_VENTILATION_DONE=Beginnen Sie mit der Sortierung der Seite &quot; Zuordnung erledigt &quot; nach den neuesten Elementen
@ -157,8 +157,8 @@ ACCOUNTING_MANAGE_ZERO=Verwalten der Null am Ende eines Buchhaltungskontos. \nIn
BANK_DISABLE_DIRECT_INPUT=Deaktivieren der direkte Aufzeichnung von Transaktion auf dem Bankkonto
ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL=Entwurfexport für Journal aktivieren
ACCOUNTANCY_COMBO_FOR_AUX=Kombinationsliste für Nebenkonto aktivieren \n(kann langsam sein, wenn Sie viele Geschäftspartner haben)
ACCOUNTING_DATE_START_BINDING=Define a date to start binding & transfer in accountancy. Below this date, the transactions will not be transferred to accounting.
ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=On accountancy transfer, select period show by default
ACCOUNTING_DATE_START_BINDING=Definieren Sie ein Datum, an dem die Bindung und Übertragung in der Buchhaltung beginnen soll. Transaktionen vor diesem Datum werden nicht in die Buchhaltung übertragen.
ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=Bei der Übertragung der Buchhaltung standardmäßig den Zeitraum anzeigen auswählen anzeigen
ACCOUNTING_SELL_JOURNAL=Verkaufsjournal
ACCOUNTING_PURCHASE_JOURNAL=Einkaufsjournal
@ -178,7 +178,7 @@ ACCOUNTING_ACCOUNT_SUSPENSE=Buchhaltungskonto in Wartestellung
DONATION_ACCOUNTINGACCOUNT=Buchhaltungskonto für Spenden
ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=Buchhaltungskonto für Abonnements
ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=Accounting account by default to register customer deposit
ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=Standard-Buchhaltungskonto zur Registrierung der Kundeneinzahlung
ACCOUNTING_PRODUCT_BUY_ACCOUNT=Standard-Buchhaltungskonto für gekaufte Produkte \n(wenn nicht anders im Produktblatt definiert)
ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT=Standardmäßig Buchhaltungskonto für die gekauften Produkte in der EU (wird verwendet, wenn nicht im Produktblatt definiert)
@ -199,8 +199,8 @@ Docdate=Datum
Docref=Referenz
LabelAccount=Konto-Beschriftung
LabelOperation=Bezeichnung der Operation
Sens=Direction
AccountingDirectionHelp=For an accounting account of a customer, use Credit to record a payment you received<br>For an accounting account of a supplier, use Debit to record a payment you make
Sens=Richtung
AccountingDirectionHelp=Verwenden Sie für ein Buchhaltungskonto eines Kunden «Guthaben», um eine Zahlung zu erfassen, die Sie erhalten haben. <br> Verwenden Sie für ein Buchhaltungskonto eines Lieferanten «Debit», um eine von Ihnen geleistete Zahlung zu erfassen
LetteringCode=Beschriftungscode
Lettering=Beschriftung
Codejournal=Journal
@ -208,24 +208,24 @@ JournalLabel=Journal-Bezeichnung
NumPiece=Teilenummer
TransactionNumShort=Anz. Buchungen
AccountingCategory=Personalisierte Gruppen
GroupByAccountAccounting=Group by general ledger account
GroupBySubAccountAccounting=Group by subledger account
GroupByAccountAccounting=Gruppieren nach Hauptbuchkonto
GroupBySubAccountAccounting=Gruppieren nach Nebenbuchkonto
AccountingAccountGroupsDesc=Hier können Kontengruppen definiert werden. Diese werden für personaliserte Buchhaltungsreports verwendet.
ByAccounts=Pro Konto
ByPredefinedAccountGroups=Pro vordefinierten Gruppen
ByPersonalizedAccountGroups=Pro persönlichen Gruppierung
ByYear=pro Jahr
NotMatch=undefiniert
DeleteMvt=Delete some operation lines from accounting
DeleteMvt=Einige Operationszeilen aus der Buchhaltung löschen
DelMonth=Monat zum Löschen
DelYear=Jahr zu entfernen
DelJournal=Journal zu entfernen
ConfirmDeleteMvt=This will delete all operation lines of the accounting for the year/month and/or for a specific journal (At least one criterion is required). You will have to reuse the feature '%s' to have the deleted record back in the ledger.
ConfirmDeleteMvtPartial=This will delete the transaction from the accounting (all operation lines related to the same transaction will be deleted)
ConfirmDeleteMvt=Dadurch werden alle Vorgangszeilen der Buchhaltung für das Jahr / den Monat und / oder für ein bestimmtes Journal gelöscht (mindestens ein Kriterium ist erforderlich). Sie müssen die Funktion '%s' erneut verwenden, um den gelöschten Datensatz wieder im Hauptbuch zu haben.
ConfirmDeleteMvtPartial=Dadurch wird die Transaktion aus der Buchhaltung gelöscht (alle mit derselben Transaktion verknüpften Vorgangszeilen werden gelöscht).
FinanceJournal=Finanzjournal
ExpenseReportsJournal=Spesenabrechnungsjournal
DescFinanceJournal=Finanzjournal inklusive aller Arten von Zahlungen mit Bankkonto
DescJournalOnlyBindedVisible=This is a view of record that are bound to an accounting account and can be recorded into the Journals and Ledger.
DescJournalOnlyBindedVisible=Dies ist eine Ansicht von Aufzeichnungen, die an ein Buchhaltungskonto gebunden sind und in den Journalen und im Hauptbuch erfasst werden können.
VATAccountNotDefined=Steuerkonto nicht definiert
ThirdpartyAccountNotDefined=Konto für Geschäftspartner nicht definiert
ProductAccountNotDefined=Konto für Produkt nicht definiert
@ -251,7 +251,7 @@ PaymentsNotLinkedToProduct=Zahlung ist keinem Produkt oder Dienstleistung zugewi
OpeningBalance=Eröffnungsbilanz
ShowOpeningBalance=Eröffnungsbilanz anzeigen
HideOpeningBalance=Eröffnungsbilanz ausblenden
ShowSubtotalByGroup=Show subtotal by level
ShowSubtotalByGroup=Zwischensumme nach Ebene anzeigen
Pcgtype=Kontenklasse
PcgtypeDesc=Kontengruppen werden für einige Buchhaltungsberichte als vordefinierte Filter- und Gruppierungskriterien verwendet. Beispielsweise werden "EINKOMMEN" oder "AUSGABEN" als Gruppen für die Buchhaltung von Produktkonten verwendet, um die Ausgaben- / Einnahmenrechnung zu erstellen.
@ -274,11 +274,11 @@ DescVentilExpenseReport=Kontieren Sie hier in der Liste Spesenabrechnungszeilen
DescVentilExpenseReportMore=Wenn Sie beim Buchhaltungskonto den Typen Spesenabrechnungpositionen eingestellt haben, wird die Applikation alle Kontierungen zwischen den Spesenabrechnungspositionen und dem Buchhaltungskonto von Ihrem Kontenrahmen verwenden, durch einen einzigen Klick auf die Schaltfläche <strong> "%s" </strong>. Wenn kein Konto definiert wurde unter Stammdaten / Gebührenarten oder wenn Sie einige Zeilen nicht zu irgendeinem automatischen Konto gebunden haben, müssen Sie die Zuordnung manuell aus dem Menü "<strong> %s </strong>“ machen.
DescVentilDoneExpenseReport=Hier finden Sie die Liste der Aufwendungsposten und ihr Gebühren Buchhaltungskonto
Closure=Annual closure
Closure=Jahresabschluss
DescClosure=Informieren Sie sich hier über die Anzahl der Bewegungen pro Monat, die nicht validiert sind und die bereits in den Geschäftsjahren geöffnet sind.
OverviewOfMovementsNotValidated=Schritt 1 / Bewegungsübersicht nicht validiert. \n(Notwendig, um ein Geschäftsjahr abzuschließen.)
AllMovementsWereRecordedAsValidated=All movements were recorded as validated
NotAllMovementsCouldBeRecordedAsValidated=Not all movements could be recorded as validated
AllMovementsWereRecordedAsValidated=Alle Bewegungen wurden als validiert aufgezeichnet
NotAllMovementsCouldBeRecordedAsValidated=Nicht alle Bewegungen konnten als validiert aufgezeichnet werden
ValidateMovements=Bewegungen validieren
DescValidateMovements=Jegliche Änderung oder Löschung des Schreibens, Beschriftens und Löschens ist untersagt. Alle Eingaben für eine Übung müssen validiert werden, da sonst ein Abschluss nicht möglich ist
@ -298,10 +298,10 @@ Accounted=im Hauptbuch erfasst
NotYetAccounted=noch nicht im Hauptbuch erfasst
ShowTutorial=Tutorial anzeigen
NotReconciled=nicht ausgeglichen
WarningRecordWithoutSubledgerAreExcluded=Warning, all operations without subledger account defined are filtered and excluded from this view
WarningRecordWithoutSubledgerAreExcluded=Achtung, alle Vorgänge ohne definiertes Nebenbuchkonto werden gefiltert und von dieser Ansicht ausgeschlossen
## Admin
BindingOptions=Binding options
BindingOptions=Verbindungsoptionen
ApplyMassCategories=Massenaktualisierung der Kategorien
AddAccountFromBookKeepingWithNoCategories=Verfügbares Konto noch nicht in der personalisierten Gruppe
CategoryDeleted=Die Gruppe für das Buchhaltungskonto wurde entfernt
@ -321,9 +321,9 @@ ErrorAccountingJournalIsAlreadyUse=Dieses Journal wird bereits verwendet
AccountingAccountForSalesTaxAreDefinedInto=Hinweis: Buchaltungskonten für Steuern sind im Menü <b>%s</b> - <b>%s</b> definiert
NumberOfAccountancyEntries=Anzahl der Einträge
NumberOfAccountancyMovements=Anzahl der Bewegungen
ACCOUNTING_DISABLE_BINDING_ON_SALES=Disable binding & transfer in accountancy on sales (customer invoices will not be taken into account in accounting)
ACCOUNTING_DISABLE_BINDING_ON_PURCHASES=Disable binding & transfer in accountancy on purchases (vendor invoices will not be taken into account in accounting)
ACCOUNTING_DISABLE_BINDING_ON_EXPENSEREPORTS=Disable binding & transfer in accountancy on expense reports (expense reports will not be taken into account in accounting)
ACCOUNTING_DISABLE_BINDING_ON_SALES=Deaktivieren Sie die Bindung und Übertragung in der Buchhaltung bei Verkäufen (Kundenrechnungen werden in der Buchhaltung nicht berücksichtigt).
ACCOUNTING_DISABLE_BINDING_ON_PURCHASES=Deaktivieren Sie die Bindung und Übertragung in der Buchhaltung bei Einkäufen (Lieferantenrechnungen werden in der Buchhaltung nicht berücksichtigt).
ACCOUNTING_DISABLE_BINDING_ON_EXPENSEREPORTS=Deaktivieren Sie die Bindung und Übertragung in der Buchhaltung für Spesenabrechnungen (Spesenabrechnungen werden bei der Buchhaltung nicht berücksichtigt).
## Export
ExportDraftJournal=Entwurfsjournal exportieren
@ -343,11 +343,11 @@ Modelcsv_LDCompta10=Export für LD Compta (v10 und höher)
Modelcsv_openconcerto=Export für OpenConcerto (Test)
Modelcsv_configurable=konfigurierbarer CSV-Export
Modelcsv_FEC=Export nach FEC
Modelcsv_FEC2=Export FEC (With dates generation writing / document reversed)
Modelcsv_FEC2=Export FEC (Mit Datumsgenerierung schriftlich / Dokument umgekehrt)
Modelcsv_Sage50_Swiss=Export für Sage 50 (Schweiz)
Modelcsv_winfic=Exportiere Winfic - eWinfic - WinSis Compta
Modelcsv_Gestinumv3=Export for Gestinum (v3)
Modelcsv_Gestinumv5Export for Gestinum (v5)
Modelcsv_Gestinumv3=Export für Gestinum (v3)
Modelcsv_Gestinumv5Export für Gestinum (v5)
ChartofaccountsId=Kontenplan ID
## Tools - Init accounting account on product / service

View File

@ -56,8 +56,8 @@ GUISetup=Benutzeroberfläche
SetupArea=Einstellungen
UploadNewTemplate=Neue Druckvorlage(n) hochladen
FormToTestFileUploadForm=Formular für das Testen von Datei-Uplads (je nach Konfiguration)
ModuleMustBeEnabled=The module/application <b>%s</b> must be enabled
ModuleIsEnabled=The module/application <b>%s</b> has been enabled
ModuleMustBeEnabled=Das Modul / die Anwendung <b> %s </b> muss aktiviert sein
ModuleIsEnabled=Das Modul / die Anwendung <b> %s </b> wurde aktiviert
IfModuleEnabled=Anmerkung: Ist nur wirksam wenn Modul <b>%s</b> aktiviert ist
RemoveLock=Sie müssen die Datei <b>%s</b> entfernen oder umbennen, falls vorhanden, um die Benutzung des Installations-/Update-Tools zu erlauben.
RestoreLock=Stellen Sie die Datei <b>%s</b> mit ausschließlicher Leseberechtigung wieder her, um die Benutzung des Installations-/Update-Tools zu deaktivieren.
@ -154,8 +154,8 @@ SystemToolsAreaDesc=In diesem Bereich finden Sie die Verwaltungsfunktionen. Verw
Purge=Bereinigen
PurgeAreaDesc=Auf dieser Seite können Sie alle von Dolibarr erzeugten oder gespeicherten Dateien (temporäre Dateien oder alle Dateien im Verzeichnis <b>%s</b> ) löschen. Die Verwendung dieser Funktion ist in der Regel nicht erforderlich. Es wird als Workaround für Benutzer bereitgestellt, deren Dolibarr von einem Anbieter gehostet wird, der keine Berechtigungen zum löschen von Dateien anbietet, die vom Webserver erzeugt wurden.
PurgeDeleteLogFile=Löschen der Protokolldateien, einschließlich <b>%s</b>, die für das Syslog-Modul definiert wurden (kein Risiko Daten zu verlieren)
PurgeDeleteTemporaryFiles=Delete all log and temporary files (no risk of losing data). Note: Deletion of temporary files is done only if the temp directory was created more than 24 hours ago.
PurgeDeleteTemporaryFilesShort=Delete log and temporary files
PurgeDeleteTemporaryFiles=Alle Protokoll- und temporären Dateien löschen (kein Risiko, Daten zu verlieren). Hinweis: Das Löschen temporärer Dateien erfolgt nur, wenn das temporäre Verzeichnis vor mehr als 24 Stunden erstellt wurde.
PurgeDeleteTemporaryFilesShort=Protokoll- und temporäre Dateien löschen
PurgeDeleteAllFilesInDocumentsDir=Alle Dateien im Verzeichnis: <b>%s</b> löschen: <br>Dadurch werden alle erzeugten Dokumente löschen, die sich auf verknüpfte (Dritte, Rechnungen usw....), Dateien, die in das ECM Modul hochgeladen wurden, Datenbank, Backup, Dumps und temporäre Dateien beziehen.
PurgeRunNow=Jetzt bereinigen
PurgeNothingToDelete=Keine zu löschenden Verzeichnisse oder Dateien
@ -257,7 +257,7 @@ ReferencedPreferredPartners=Bevorzugte Partner
OtherResources=Weitere Ressourcen
ExternalResources=Externe Ressourcen
SocialNetworks=Soziale Netzwerke
SocialNetworkId=Social Network ID
SocialNetworkId=ID des sozialen Netzwerks
ForDocumentationSeeWiki=Für Benutzer-und Entwickler-Dokumentationen und FAQs<br>werfen Sie bitte einen Blick auf die Dolibarr-Wiki: <br> <a href="%s" target="_blank"><b> %s</b></a>
ForAnswersSeeForum=Für alle anderen Fragen können Sie das Dolibarr-Forum <br> <a href="%s" target="_blank"><b> %s</b></a> benutzen.
HelpCenterDesc1=In diesem Bereich finden Sie eine Übersicht an verfügbaren Quellen, bei denen Sie im Fall von Problemen und Fragen Unterstützung bekommen können.
@ -377,7 +377,7 @@ ExamplesWithCurrentSetup=Beispiele mit der aktuellen Systemkonfiguration
ListOfDirectories=Liste der OpenDocument-Vorlagenverzeichnisse
ListOfDirectoriesForModelGenODT=Liste der Verzeichnisse mit Vorlagendateien im OpenDocument-Format.<br><br>Fügen Sie hier den vollständigen Pfad der Verzeichnisse ein.<br>Trennen Sie jedes Verzeichnis mit einem Zeilenumbruch.<br>Verzeichnisse des ECM-Moduls fügen Sie z.B. so ein <b>DOL_DATA_ROOT/ecm/yourdirectoryname</b>.<br><br> Dateien in diesen Verzeichnissen müssen mit <b>.odt</b> oder <b>.ods</b> enden.
NumberOfModelFilesFound=Anzahl der in diesen Verzeichnissen gefundenen .odt/.ods-Dokumentvorlagen
ExampleOfDirectoriesForModelGen=Examples of syntax:<br>c:\\myapp\\mydocumentdir\\mysubdir<br>/home/myapp/mydocumentdir/mysubdir<br>DOL_DATA_ROOT/ecm/ecmdir
ExampleOfDirectoriesForModelGen=Beispiele für die Syntax: <br> c:\\myapp\\mydocumentdir\\mysubdir <br> /home/myapp/mydocumentdir/mysubdir <br> DOL_DATA_ROOT/ecm/ecmdir
FollowingSubstitutionKeysCanBeUsed=<br>Lesen Sie die Wiki Dokumentation um zu wissen, wie Sie Ihre odt Dokumentenvorlage erstellen, bevor Sie diese in den Kategorien speichern:
FullListOnOnlineDocumentation=https://wiki.dolibarr.org/index.php/Create_an_ODT_document_template
FirstnameNamePosition=Reihenfolge von Vor- und Nachname
@ -408,7 +408,7 @@ UrlGenerationParameters=Parameter zum Sichern von URLs
SecurityTokenIsUnique=Verwenden Sie einen eindeutigen Sicherheitsschlüssel für jede URL
EnterRefToBuildUrl=Geben Sie eine Referenz für das Objekt %s ein
GetSecuredUrl=Holen der berechneten URL
ButtonHideUnauthorized=Hide unauthorized action buttons also for internal users (just greyed otherwise)
ButtonHideUnauthorized=Verstecke nicht autorisierte Aktionsschaltflächen auch für interne Benutzer (ansonsten nur grau)
OldVATRates=Alter Umsatzsteuer-Satz
NewVATRates=Neuer Umsatzsteuer-Satz
PriceBaseTypeToChange=Ändern Sie den Basispreis definierte nach
@ -444,7 +444,7 @@ ExtrafieldParamHelpPassword=Wenn Sie dieses Feld leer lassen, wird dieser Wert u
ExtrafieldParamHelpselect=Die Liste der Werte muss aus Zeilen mit dem Format Schlüssel, Wert bestehen (wobei Schlüssel nicht '0' sein darf) <br><br> zum Beispiel: <br> 1, value1 <br> 2, value2 <br> Code3, Wert3 <br> ... <br><br> Damit die Liste von einer anderen ergänzenden Attributliste abhängt: <br> 1, value1 | options_ <i>parent_list_code</i> : parent_key <br> 2, value2 | options_ <i>parent_list_code</i> : parent_key <br><br> Um die Liste von einer anderen Liste abhängig zu machen: <br> 1, value1 | <i>parent_list_code</i> : parent_key <br> 2, value2 | <i>parent_list_code</i> : parent_key
ExtrafieldParamHelpcheckbox=Die Liste der Werte muss aus Zeilen mit dem Format Schlüssel, Wert bestehen (wobei Schlüssel nicht '0' sein darf) <br><br> zum Beispiel: <br> 1, value1 <br> 2, value2 <br> 3, value3 <br> ...
ExtrafieldParamHelpradio=Die Liste der Werte muss aus Zeilen mit dem Format Schlüssel, Wert bestehen (wobei Schlüssel nicht '0' sein darf) <br><br> zum Beispiel: <br> 1, value1 <br> 2, value2 <br> 3, value3 <br> ...
ExtrafieldParamHelpsellist=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filter<br>Example: c_typent:libelle:id::filter<br><br>- id_field is necessarly a primary int key<br>- filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter which is the current id of current object<br>To use a SELECT into the filter use the keyword $SEL$ to bypass anti-injection protection.<br>if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelpsellist=Die Liste der Werte stammt aus einer Tabelle <br> Syntax: table_name:label_field:id_field::filter <br> Beispiel: c_typent:libelle:id::filter <br><br> - id_field ist notwendigerweise ein primärer int-Schlüssel <br> - Filter kann ein einfacher Test sein (z. B. aktiv = 1), um nur den aktiven Wert anzuzeigen <br> Sie können $ID$ auch in Filtern verwenden, bei denen es sich um die aktuelle ID des aktuellen Objekts handelt <br> Verwenden Sie $SEL$, um ein SELECT im Filter durchzuführen <br> Wenn Sie nach Extrafeldern filtern möchten, verwenden Sie die Syntax extra.fieldcode = ... (wobei field code der Code des Extrafelds ist) <br><br> Damit die Liste von einer anderen ergänzenden Attributliste abhängt: <br> c_typent:libelle:id:options_ <i>parent_list_code</i> |parent_column:filter <br><br> Um die Liste von einer anderen Liste abhängig zu machen: <br> c_typent:libelle:id: <i>parent_list_code</i> |parent_column:filter
ExtrafieldParamHelpchkbxlst=Die Liste der Werte stammt aus einer Tabelle <br> Syntax: table_name: label_field: id_field :: filter <br> Beispiel: c_typent: libelle: id :: filter <br><br> Filter kann ein einfacher Test sein (z. B. aktiv = 1), um nur den aktiven Wert anzuzeigen <br> Sie können $ ID $ auch in Filtern verwenden, bei denen es sich um die aktuelle ID des aktuellen Objekts handelt <br> Verwenden Sie $ SEL $, um ein SELECT im Filter durchzuführen <br> Wenn Sie nach Extrafeldern filtern möchten, verwenden Sie die Syntax extra.fieldcode = ... (wobei field code der Code des Extrafelds ist) <br><br> Damit die Liste von einer anderen ergänzenden Attributliste abhängt: <br> c_typent: libelle: id: options_ <i>parent_list_code</i> | parent_column: filter <br><br> Um die Liste von einer anderen Liste abhängig zu machen: <br> c_typent: libelle: id: <i>parent_list_code</i> | parent_column: filter
ExtrafieldParamHelplink=Die Parameter müssen ObjectName: Classpath <br> sein. Syntax: ObjectName: Classpath
ExtrafieldParamHelpSeparator=Für ein einfaches Trennzeichen leer lassen <br> Setzen Sie diesen Wert für ein ausblendendes Trennzeichen auf 1 (standardmäßig für eine neue Sitzung geöffnet, der Status wird für jede Benutzersitzung beibehalten) <br> Setzen Sie diesen Wert für ein ausblendendes Trennzeichen auf 2 (standardmäßig für ausgeblendet) neue Sitzung, dann bleibt der Status für jede Benutzersitzung erhalten)
@ -490,7 +490,7 @@ WarningPHPMailB=- Bei einigen E-Mail-Dienstanbietern (wie Yahoo) können Sie kei
WarningPHPMailC=- Interessant ist auch die Verwendung des SMTP-Servers Ihres eigenen E-Mail-Dienstanbieters zum Senden von E-Mails, sodass alle von der Anwendung gesendeten E-Mails auch in dem Verzeichnis "Gesendet" Ihrer Mailbox gespeichert werden.
WarningPHPMailD=Wenn die Methode 'PHP Mail' wirklich die Methode ist, die Sie verwenden möchten, können Sie diese Warnung entfernen, indem Sie die Konstante MAIN_HIDE_WARNING_TO_ENCOURAGE_SMTP_SETUP unter Start - Einstellungen - Erweiterte Einstellungen zu 1 hinzufügen.
WarningPHPMail2=Wenn Ihr E-Mail-SMTP-Anbieter den E-Mail-Client auf einige IP-Adressen beschränken muss (sehr selten), dann ist dies die IP-Adresse des Mail User Agent (MUA) für ihr Dolibarr-System: <strong>%s</strong>.
WarningPHPMailSPF=If the domain name in your sender email address is protected by a SPF record (ask you domain name registar), you must add the following IPs in the SPF record of the DNS of your domain: <strong>%s</strong>.
WarningPHPMailSPF=Wenn der Domainname in Ihrer Absender-E-Mail-Adresse durch einen SPF-Eintrag geschützt ist (beim Registrar des Domainnamens zu erfragen), müssen dem SPF-Eintrag des DNS Ihrer Domain die folgenden IP-Adressen hinzufügt werden: <strong> %s </strong>.
ClickToShowDescription=Klicke um die Beschreibung zu sehen
DependsOn=Diese Modul benötigt folgenden Module
RequiredBy=Diese Modul ist für folgende Module notwendig
@ -556,9 +556,9 @@ Module54Desc=Verwaltung von Verträgen (Dienstleistungen oder wiederkehrende Abo
Module55Name=Barcodes
Module55Desc=Barcode-Verwaltung
Module56Name=Zahlung per Überweisung
Module56Desc=Management of payment of suppliers by Credit Transfer orders. It includes generation of SEPA file for European countries.
Module56Desc=Verwaltung der Zahlung von Lieferanten durch Überweisungsaufträge. Es beinhaltet die Erstellung von SEPA-Dateien für europäische Länder.
Module57Name=Zahlungen per Lastschrifteinzug
Module57Desc=Management of Direct Debit orders. It includes generation of SEPA file for European countries.
Module57Desc=Verwaltung von Lastschriftaufträgen. Es beinhaltet die Erstellung von SEPA-Dateien für europäische Länder.
Module58Name=ClickToDial
Module58Desc=ClickToDial-Integration
Module60Name=Etiketten
@ -601,7 +601,7 @@ Module520Name=Kredite / Darlehen
Module520Desc=Verwaltung von Darlehen
Module600Name=Benachrichtigungen über Geschäftsereignisse
Module600Desc=E-Mail-Benachrichtigungen senden, die durch ein Geschäftsereignis ausgelöst werden: pro Benutzer (Einrichtung definiert für jeden Benutzer), pro Drittanbieter-Kontakte (Einrichtung definiert für jeden Drittanbieter) oder durch bestimmte E-Mails.
Module600Long=Beachten Sie, dass dieses Modul E-Mails in Echtzeit sendet, wenn ein bestimmtes Geschäftsereignis stattfindet. Wenn Sie nach einer Funktion zum Senden von e-Mail-Erinnerungen für Agenda-Ereignisse suchen, gehen Sie in die Einrichtung den dem Modul Agenda.
Module600Long=Beachten Sie, dass dieses Modul E-Mails in Echtzeit versendet, wenn ein bestimmtes Geschäftsereignis stattfindet. Wenn Sie nach einer Funktion zum Senden von e-Mail-Erinnerungen für Agenda-Ereignisse suchen, gehen Sie in die Einstellungen des Modul Agenda.
Module610Name=Produktvarianten
Module610Desc=Erlaubt das Erstellen von Produktvarianten, basierend auf Merkmalen (Farbe, Grösse, ...)
Module700Name=Spenden
@ -730,7 +730,7 @@ Permission95=Buchhaltung einsehen
Permission101=Auslieferungen einsehen
Permission102=Auslieferungen erstellen/bearbeiten
Permission104=Auslieferungen freigeben
Permission105=Send sendings by email
Permission105=Sende Sendungen per E-Mail
Permission106=Auslieferungen exportieren
Permission109=Sendungen löschen
Permission111=Finanzkonten einsehen
@ -838,10 +838,10 @@ Permission402=Rabatte erstellen/bearbeiten
Permission403=Rabatte freigeben
Permission404=Rabatte löschen
Permission430=Debug Bar nutzen
Permission511=Read payments of salaries (yours and subordinates)
Permission511=Zahlungen von Gehältern (Ihre und Untergebene) lesen
Permission512=Lohnzahlungen anlegen / ändern
Permission514=Lohn-/Gehaltszahlungen löschen
Permission517=Read payments of salaries of everybody
Permission517= Gehaltszahlungen von allen lesen
Permission519=Löhne exportieren
Permission520=Darlehen anzeigen
Permission522=Darlehen erstellen/bearbeiten
@ -853,10 +853,10 @@ Permission532=Leistungen erstellen/bearbeiten
Permission534=Leistungen löschen
Permission536=Versteckte Leistungen einsehen/verwalten
Permission538=Leistungen exportieren
Permission561=Read payment orders by credit transfer
Permission562=Create/modify payment order by credit transfer
Permission563=Send/Transmit payment order by credit transfer
Permission564=Record Debits/Rejections of credit transfer
Permission561=Zahlungsaufträge per Überweisung lesen
Permission562=Zahlungsauftrag per Überweisung erstellen / ändern
Permission563=Zahlungsauftrag per Überweisung senden / übertragen
Permission564=Belastungen / Ablehnungen der Überweisung erfassen
Permission601=Aufkleber lesen
Permission602=Erstellen / Ändern von Aufklebern
Permission609=Aufkleber löschen
@ -1184,7 +1184,7 @@ InfoWebServer=Über Ihren Webserver
InfoDatabase=Über Ihre Datenbank
InfoPHP=Über PHP
InfoPerf=Leistungs-Informationen
InfoSecurity=About Security
InfoSecurity=Über Sicherheit
BrowserName=Browsername
BrowserOS=Betriebssystem des Browsers
ListOfSecurityEvents=Liste der sicherheitsrelevanten Ereignisse
@ -1316,7 +1316,7 @@ PHPModuleLoaded=PHP Komponente %s ist geladen
PreloadOPCode=Vorgeladener OPCode wird verwendet
AddRefInList=Anzeigen der Info-Liste mit Kunden- / Lieferantenreferenz (Auswahlliste oder Combobox) und die meisten Hyperlinks. <br> Drittanbieter werden mit dem Namensformat "CC12345 - SC45678 - The Big Company corp." anstelle von "The Big Company corp" angezeigt.
AddAdressInList=Anzeigen der Info-Liste mit Kunden- / Lieferantenadressen (Auswahlliste oder Kombinationsfeld) <br> Dritte werden mit dem Namensformat "The Big Company Corp. - 21 jump street 123456 Big Town - USA" anstelle von "The Big Company Corp." angezeigt.
AddEmailPhoneTownInContactList=Display Contact email (or phones if not defined) and town info list (select list or combobox)<br>Contacts will appear with a name format of "Dupond Durand - dupond.durand@email.com - Paris" or "Dupond Durand - 06 07 59 65 66 - Paris" instead of "Dupond Durand".
AddEmailPhoneTownInContactList=Kontakt-E-Mail (oder Telefone, falls nicht definiert) und Stadtinfo-Liste (Auswahlliste oder Combobox) anzeigen <br> Kontakte werden mit dem Namensformat "Dupond Durand - dupond.durand@email.com - Paris" oder "Dupond Durand - 06 07" angezeigt 59 65 66 - Paris "statt" Dupond Durand ".
AskForPreferredShippingMethod=Nach der bevorzugten Versandart für Drittanbieter fragen.
FieldEdition=Bearbeitung von Feld %s
FillThisOnlyIfRequired=Beispiel: +2 (nur ausfüllen, wenn Sie Probleme mit der Zeitzone haben)
@ -1423,7 +1423,7 @@ AdherentMailRequired=Für das Anlegen eines neuen Mitglieds ist eine E-Mail-Adre
MemberSendInformationByMailByDefault=Das Kontrollkästchen für den automatischen Versand einer E-Mail-Bestätigung an Mitglieder (bei Freigabe oder neuem Abonnement) ist standardmäßig aktiviert
VisitorCanChooseItsPaymentMode=Der Besucher kann aus verschiedenen Zahlungsmethoden auswählen
MEMBER_REMINDER_EMAIL=Aktivieren Sie die automatische Erinnerung <b> per E-Mail </b> an abgelaufene Abonnements. Hinweis: Das Modul <strong> %s </strong> muss aktiviert und ordnungsgemäß eingerichtet sein, damit Erinnerungen gesendet werden können.
MembersDocModules=Document templates for documents generated from member record
MembersDocModules=Dokumentvorlagen für Dokumente, die aus dem Mitgliedsdatensatz generiert wurden
##### LDAP setup #####
LDAPSetup=LDAP-Einstellungen
LDAPGlobalParameters=Globale LDAP-Parameter
@ -1566,9 +1566,9 @@ LDAPDescValues=Die Beispielwerte für <b>OpenLDAP</b> verfügen über folgende M
ForANonAnonymousAccess=Für einen authentifizierten Zugang (z.B. für Schreibzugriff)
PerfDolibarr=Leistungs-Einstellungen/Optimierungsreport
YouMayFindPerfAdviceHere=Auf dieser Seite finden Sie einige Überprüfungen oder Hinweise zur Leistung.
NotInstalled=Not installed.
NotSlowedDownByThis=Not slowed down by this.
NotRiskOfLeakWithThis=Not risk of leak with this.
NotInstalled=Nicht installiert.
NotSlowedDownByThis=Nicht dadurch verlangsamt.
NotRiskOfLeakWithThis=Hiermit keine Verlustgefahr.
ApplicativeCache=geeigneter Cache
MemcachedNotAvailable=Kein Cache Anwendung gefunden. \nSie können die Leistung durch die Installation des Cache-Server Memcached und die Aktivierung des Moduls Anwendungscache<br>hier mehr Informationen <a href="http://wiki.dolibarr.org/index.php/Module_MemCached_EN">http://wiki.dolibarr.org/index.php/Module_MemCached_EN</a>.<br>\nverbessern.\nBeachten Sie, dass viele Billig-Provider keine solche Cache-Server in ihrer Infrastruktur anbieten.
MemcachedModuleAvailableButNotSetup=Module memcached für geeigneten Cache gefunden, aber Setup-Modul ist nicht vollständig.
@ -1598,8 +1598,13 @@ ServiceSetup=Modul Leistungen - Einstellungen
ProductServiceSetup=Produkte und Leistungen Module Einstellungen
NumberOfProductShowInSelect=Max. Anzahl der Produkte in Dropdownlisten (0=kein Limit)
ViewProductDescInFormAbility=Anzeige der Produktbeschreibungen in Formularen (sonst als ToolTip- Popup)
DoNotAddProductDescAtAddLines=Fügen Sie beim absenden keine Produktbeschreibung (von der Produktkarte) füge Zeilen an die Formulare\n
OnProductSelectAddProductDesc=So verwenden Sie die Produktbeschreibung, wenn Sie ein Produkt als Dokumentzeile hinzufügen
AutoFillFormFieldBeforeSubmit=Das Eingabefeld für die Beschreibung automatisch mit der Produktbeschreibung füllen
DoNotAutofillButAutoConcat=Füllen Sie das Eingabefeld nicht automatisch mit der Produktbeschreibung aus. Die Produktbeschreibung wird automatisch mit der eingegebenen Beschreibung verkettet.
DoNotUseDescriptionOfProdut=Die Produktbeschreibung wird niemals in die Beschreibung der Dokumentenzeilen aufgenommen
MergePropalProductCard=Aktivieren einer Option unter Produkte/Leistungen Registerkarte verknüpfte Dateien, um Produkt-PDF-Dokumente um Angebots PDF azur zusammenzuführen, wenn Produkte/Leistungen in dem Angebot sind.
ViewProductDescInThirdpartyLanguageAbility=Anzeige der Produktbeschreibungen in der Sprache des Partners
ViewProductDescInThirdpartyLanguageAbility=Anzeige von Produktbeschreibungen in Formularen in der Sprache des Partners (sonst in der Sprache des Benutzer)
UseSearchToSelectProductTooltip=Wenn Sie eine große Anzahl von Produkten (> 100.000) haben, können Sie die Geschwindigkeit verbessern, indem Sie in Einstellungen -> Andere die Konstante PRODUCT_DONOTSEARCH_ANYWHERE auf 1 setzen. Die Suche startet dann am Beginn der Zeichenkette.
UseSearchToSelectProduct=Warte auf Tastendruck, bevor der Inhalt der Produkt-Combo-Liste geladen wird (Dies kann die Leistung verbessern, wenn Sie eine große Anzahl von Produkten haben).
SetDefaultBarcodeTypeProducts=Standard-Code-Typ für Produkte
@ -1674,7 +1679,7 @@ AdvancedEditor=Erweiterter Editor
ActivateFCKeditor=FCKEditor aktivieren für:
FCKeditorForCompany=WYSIWIG Erstellung/Bearbeitung der Partnerinformationen und Notizen
FCKeditorForProduct=WYSIWIG Erstellung/Bearbeitung von Produkt-/Serviceinformationen und Notizen
FCKeditorForProductDetails=WYSIWIG creation/edition of products details lines for all entities (proposals, orders, invoices, etc...). <span class="warning">Warning: Using this option for this case is seriously not recommended as it can create problems with special characters and page formatting when building PDF files.</span>
FCKeditorForProductDetails=WYSIWIG Erstellung / Ausgabe von Produkt-Detailzeilen für alle Dokumente (Vorschläge, Bestellungen, Rechnungen usw.). <span class="warning"> Warnung: Die Verwendung dieser Option für diesen Fall wird nicht empfohlen, da dies beim Erstellen von PDF-Dateien zu Problemen mit Sonderzeichen und Seitenformatierung führen kann. </span>
FCKeditorForMailing= WYSIWIG Erstellung/Bearbeitung von E-Mails
FCKeditorForUserSignature=WYSIWIG Erstellung/Bearbeitung von Benutzer-Signaturen
FCKeditorForMail=WYSIWYG-Erstellung/Bearbeitung für alle E-Mails (außer Werkzeuge->eMailing)
@ -1691,7 +1696,7 @@ NotTopTreeMenuPersonalized=Personalisierte Menüs die nicht mit dem Top-Menü ve
NewMenu=Neues Menü
MenuHandler=Menü-Handler
MenuModule=Quellmodul
HideUnauthorizedMenu=Hide unauthorized menus also for internal users (just greyed otherwise)
HideUnauthorizedMenu=Nicht autorisierte Menüs auch für interne Benutzer ausblenden (sonst nur grau)
DetailId=Menü ID
DetailMenuHandler=Menü-Handler für die Anzeige des neuen Menüs
DetailMenuModule=Modulname falls Menüeintrag aus einem Modul stimmt
@ -1740,10 +1745,10 @@ AGENDA_USE_EVENT_TYPE_DEFAULT=Diesen Standardwert automatisch als Ereignistyp im
AGENDA_DEFAULT_FILTER_TYPE=Diesen Ereignisstatus automatisch in den Suchfilter für die Agenda-Ansicht übernehmen
AGENDA_DEFAULT_FILTER_STATUS=Diesen Ereignisstatus automatisch in den Suchfilter für die Agenda-Ansicht übernehmen
AGENDA_DEFAULT_VIEW=Welche Standardansicht soll geöffnet werden, wenn das Menü 'Agenda' geöffnet wird
AGENDA_REMINDER_BROWSER=Enable event reminder <b>on user's browser</b> (When remind date is reached, a popup is shown by the browser. Each user can disable such notifications from its browser notification setup).
AGENDA_REMINDER_BROWSER=Aktiviere die Ereigniserinnerung <b> im Browser des Benutzers. </b> (Wenn das Erinnerungsdatum erreicht ist, wird vom Browser ein Popup angezeigt. Jeder Benutzer kann solche Benachrichtigungen in seinem Browser-Benachrichtigungs-Setup deaktivieren.)
AGENDA_REMINDER_BROWSER_SOUND=Aktiviere Tonbenachrichtigung
AGENDA_REMINDER_EMAIL=Enable event reminder <b>by emails</b> (remind option/delay can be defined on each event).
AGENDA_REMINDER_EMAIL_NOTE=Note: The frequency of the task %s must be enough to be sure that the remind are sent at the correct moment.
AGENDA_REMINDER_EMAIL=Aktiviere die Ereigniserinnerung <b> per E-Mail </b> (Erinnerungsoption / Verzögerung kann für jedes Ereignis definiert werden).
AGENDA_REMINDER_EMAIL_NOTE=Hinweis: Die Häufigkeit der Aufgabe %s muss ausreichen, um sicherzustellen, dass die Erinnerung zum richtigen Zeitpunkt gesendet wird.
AGENDA_SHOW_LINKED_OBJECT=Verknüpfte Objekte in Agenda anzeigen
##### Clicktodial #####
ClickToDialSetup=Click-to-Dial Moduleinstellungen
@ -1985,12 +1990,12 @@ EMailHost=Hostname des IMAP-Servers
MailboxSourceDirectory=Quellverzechnis des eMail-Kontos
MailboxTargetDirectory=Zielverzechnis des eMail-Kontos
EmailcollectorOperations=Aktivitäten, die der eMail-Collector ausführen soll
EmailcollectorOperationsDesc=Operations are executed from top to bottom order
EmailcollectorOperationsDesc=Operationen werden von oben nach unten ausgeführt
MaxEmailCollectPerCollect=Maximale Anzahl an einzusammelnden E-Mails je Collect-Vorgang
CollectNow=Jetzt abrufen
ConfirmCloneEmailCollector=Sind Sie sicher, dass Sie den eMail-Collektor %s duplizieren möchten?
DateLastCollectResult=Date of latest collect try
DateLastcollectResultOk=Date of latest collect success
DateLastCollectResult=Datum des letzten eMail-Collect-Versuchs
DateLastcollectResultOk=Datum des letzten, erfolgreichen eMail-Collect
LastResult=Letztes Ergebnis
EmailCollectorConfirmCollectTitle=eMail-Collect-Bestätigung
EmailCollectorConfirmCollect=Möchten Sie den Einsammelvorgang für diesen eMail-Collector starten?
@ -2008,7 +2013,7 @@ WithDolTrackingID=Nachricht einer Unterhaltung die durch eine erste von Dolibarr
WithoutDolTrackingID=Nachricht einer Unterhaltung die NICHT durch eine erste von Dolibarr gesendete E-Mail initiiert wurde
WithDolTrackingIDInMsgId=Nachricht von Dolibarr gesendet
WithoutDolTrackingIDInMsgId=Nachricht NICHT von Dolibarr gesendet
CreateCandidature=Create job application
CreateCandidature=Stellen-Bewerbung erstellen
FormatZip=PLZ
MainMenuCode=Menüpunktcode (Hauptmenü)
ECMAutoTree=Automatischen ECM-Baum anzeigen
@ -2086,7 +2091,7 @@ CountryIfSpecificToOneCountry=Land (falls spezifisch für ein bestimmtes Land)
YouMayFindSecurityAdviceHere=Hier finden Sie Sicherheitshinweise
ModuleActivatedMayExposeInformation=Dieses Modul kann vertrauliche Daten verfügbar machen. Wenn Sie es nicht benötigen, deaktivieren Sie es.
ModuleActivatedDoNotUseInProduction=Ein für die Entwicklung entwickeltes Modul wurde aktiviert. Aktivieren Sie es nicht in einer Produktionsumgebung.
CombinationsSeparator=Separator character for product combinations
SeeLinkToOnlineDocumentation=See link to online documention on top menu for examples
SHOW_SUBPRODUCT_REF_IN_PDF=If the feature "%s" of module <b>%s</b> is used, show details of subproducts of a kit on PDF.
AskThisIDToYourBank=Contact your bank to get this ID
CombinationsSeparator=Trennzeichen für Produktkombinationen
SeeLinkToOnlineDocumentation=Beispiele finden Sie unter dem Link zur Online-Dokumentation im oberen Menü
SHOW_SUBPRODUCT_REF_IN_PDF=Wenn die Funktion "%s" des Moduls <b> %s </b> verwendet wird, werden Details zu Unterprodukten eines Satzes als PDF angezeigt.
AskThisIDToYourBank=Wenden Sie sich an Ihre Bank, um diese ID zu erhalten

View File

@ -3,7 +3,7 @@ IdAgenda=Ereignis-ID
Actions=Ereignisse
Agenda=Terminplan
TMenuAgenda=Terminplanung
Agendas=Tagesordnungen
Agendas=Terminpläne
LocalAgenda=interne Kalender
ActionsOwnedBy=Ereignis stammt von
ActionsOwnedByShort=Eigentümer
@ -33,7 +33,7 @@ ViewPerType=Anzeige pro Typ
AutoActions= Automatische Befüllung der Tagesordnung
AgendaAutoActionDesc= Hier können Sie Ereignisse definieren, die Dolibarr automatisch in der Agenda erstellen soll. Wenn nichts markiert ist, werden nur manuelle Aktionen in die Protokolle aufgenommen und in der Agenda angezeigt. Die automatische Verfolgung von Geschäftsaktionen an Objekten (Validierung, Statusänderung) wird nicht gespeichert.
AgendaSetupOtherDesc= Diese Seite bietet Optionen, um den Export Ihrer Dolibarr-Ereignisse in einen externen Kalender (Thunderbird, Google Calendar usw.) zu ermöglichen.
AgendaExtSitesDesc=Diese Seite erlaubt Ihnen externe Kalender zu konfigurieren.
AgendaExtSitesDesc=Diese Seite erlaubt es, externe Kalenderquellen zu definieren, um deren Termine in der Dolibarr-Terminplanung zu sehen.
ActionsEvents=Veranstaltungen zur automatischen Übernahme in die Agenda
EventRemindersByEmailNotEnabled=Aufgaben-/Terminerinnerungen via E-Mail sind in den Einstellungen des Moduls %s nicht aktiviert.
##### Agenda event labels #####
@ -166,4 +166,4 @@ TimeType=Erinnerungsdauer
ReminderType=Erinnerungstyp
AddReminder=Erstellt eine automatische Erinnerungsbenachrichtigung für dieses Ereignis
ErrorReminderActionCommCreation=Fehler beim Erstellen der Erinnerungsbenachrichtigung für dieses Ereignis
BrowserPush=Browser Popup Notification
BrowserPush=Browser-Popup-Benachrichtigung

Some files were not shown because too many files have changed in this diff Show More