From 41bb01339ad1b640fbce1efc62086077a13cf79b Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 25 Jul 2022 12:09:27 +0200 Subject: [PATCH 01/12] Fix warning --- htdocs/admin/usergroup.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/admin/usergroup.php b/htdocs/admin/usergroup.php index 709b60068f7..b23a35442ef 100644 --- a/htdocs/admin/usergroup.php +++ b/htdocs/admin/usergroup.php @@ -58,7 +58,7 @@ if ($action == 'set_default') { } elseif ($action == 'del_default') { $ret = delDocumentModel($value, $type); if ($ret > 0) { - if ($conf->global->USERGROUP_ADDON_PDF_ODT == "$value") { + if (getDolGlobalString('USERGROUP_ADDON_PDF_ODT') == "$value") { dolibarr_del_const($db, 'USERGROUP_ADDON_PDF_ODT', $conf->entity); } } @@ -202,7 +202,7 @@ foreach ($dirmodels as $reldir) { // Defaut print ''; - if ($conf->global->USERGROUP_ADDON_PDF == $name) { + if (getDolGlobalString('USERGROUP_ADDON_PDF') == $name) { print img_picto($langs->trans("Default"), 'on'); } else { print 'scandir).'&label='.urlencode($module->name).'" alt="'.$langs->trans("Default").'">'.img_picto($langs->trans("Disabled"), 'off').''; From d307e5b0225ebbc1d75bdc51a6e2093c333bf323 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 25 Jul 2022 13:12:08 +0200 Subject: [PATCH 02/12] Debug v16 --- htdocs/ftp/admin/ftpclient.php | 68 ++++++++++++++++++---------------- htdocs/ftp/index.php | 19 ++++++---- htdocs/main.inc.php | 2 +- 3 files changed, 48 insertions(+), 41 deletions(-) diff --git a/htdocs/ftp/admin/ftpclient.php b/htdocs/ftp/admin/ftpclient.php index b62424eb2fe..c3d5509aa36 100644 --- a/htdocs/ftp/admin/ftpclient.php +++ b/htdocs/ftp/admin/ftpclient.php @@ -1,5 +1,5 @@ +/* Copyright (C) 2004-2022 Laurent Destailleur * Copyright (C) 2011 Juanjo Menent * * This program is free software; you can redistribute it and/or modify @@ -27,17 +27,17 @@ require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php'; $langs->loadLangs(array("admin", "other")); -// Security check -if (!$user->admin) { - accessforbidden(); -} - $def = array(); $lastftpentry = 0; $action = GETPOST('action', 'aZ09'); $entry = GETPOST('numero_entry', 'alpha'); +// Security check +if (!$user->admin) { + accessforbidden(); +} + /* * Action @@ -49,8 +49,9 @@ $sql .= " WHERE name like 'FTP_SERVER_%'"; $result = $db->query($sql); if ($result) { $obj = $db->fetch_object($result); + $reg = array(); preg_match('/([0-9]+)$/i', $obj->name, $reg); - if ($reg[1]) { + if (!empty($reg[1])) { $lastftpentry = $reg[1]; } } else { @@ -63,12 +64,12 @@ if ($action == 'add' || GETPOST('modify', 'alpha')) { $error = 0; - if (!GETPOST("$ftp_name", 'alpha')) { + if (!GETPOST($ftp_name, 'alpha')) { $error = 1; setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Label")), null, 'errors'); } - if (!GETPOST("$ftp_server", 'alpha')) { + if (!GETPOST($ftp_server, 'alpha')) { $error = 1; setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Server")), null, 'errors'); } @@ -170,37 +171,37 @@ if (!function_exists('ftp_connect')) { print ''.$langs->trans("Example").''; print ''; - print ''; + print ''; print ''.$langs->trans("Label").''; print ''; print 'My FTP access'; print ''; - print ''; + print ''; print ''.$langs->trans("Server").''; print ''; print 'localhost'; print ''; - print ''; + print ''; print ''.$langs->trans("Port").''; print ''; print '21 for pure non crypted FTP or if option FTP_CONNECT_WITH_SSL (See Home-Setup-Other) is on (FTPS)
22 if option FTP_CONNECT_WITH_SFTP (See Home-Setup-Other) is on (SFTP)'; print ''; - print ''; + print ''; print ''.$langs->trans("User").''; print ''; print 'myftplogin'; print ''; - print ''; + print ''; print ''.$langs->trans("Password").''; print ''; print 'myftppassword'; print ''; - print ''; + print ''; print ''.$langs->trans("FTPPassiveMode").''; $defaultpassive = GETPOST("FTP_PASSIVE_".($lastftpentry + 1)); if (!GETPOSTISSET("FTP_PASSIVE_".($lastftpentry + 1))) { @@ -213,11 +214,13 @@ if (!function_exists('ftp_connect')) { print ''; ?> -
">
+
+ ">
'; + print '
'; ?>
@@ -242,10 +245,12 @@ if (!function_exists('ftp_connect')) { $idrss = $reg[0]; //print "x".join(',',$reg)."=".$obj->name."=".$idrss; - print "
"; + print '
'; + print ''; print ''; print ''; + print '
'; print ''."\n"; print ''; @@ -262,51 +267,50 @@ if (!function_exists('ftp_connect')) { print ''; print ""; - print ""; + print ""; print ""; print ''; print ""; - print ""; + print ""; print ""; print ''; print ""; - print ""; + print ""; print ""; print ''; print ""; - print ""; + print ""; print ""; print ''; print ""; - print ""; + print ""; print ""; print ''; print ""; - print ''; - print ""; - - print ""; - print ""; + print ''; print ""; print '
".$langs->trans("Name")."global->$keyforname."\" size=\"64\">
".$langs->trans("Server")."global->$keyforserver."\" size=\"64\">
".$langs->trans("Port")."global->$keyforport."\" size=\"64\">
".$langs->trans("User")."global->$keyforuser."\" size=\"24\">
".$langs->trans("Password")."global->$keyforpassword."\" size=\"24\">
".$langs->trans("FTPPassiveMode")."'.$form->selectyesno('FTP_PASSIVE_'.$idrss, $conf->global->$keyforpassive, 1).'
"; - print "trans("Modify")."\">"; - print "   "; - print "trans("Delete")."\">"; - print "'.$form->selectyesno('FTP_PASSIVE_'.$idrss, getDolGlobalString($keyforpassive), 1).'
'; + print '
'; + + print '
'; + print ''; + print "   "; + print ''; + print ''; print ""; - print '
'; + print '

'; $i++; } diff --git a/htdocs/ftp/index.php b/htdocs/ftp/index.php index 8b4b7bf31c4..626703d4b68 100644 --- a/htdocs/ftp/index.php +++ b/htdocs/ftp/index.php @@ -74,14 +74,15 @@ $s_ftp_port = 'FTP_PORT_'.$numero_ftp; $s_ftp_user = 'FTP_USER_'.$numero_ftp; $s_ftp_password = 'FTP_PASSWORD_'.$numero_ftp; $s_ftp_passive = 'FTP_PASSIVE_'.$numero_ftp; -$ftp_name = $conf->global->$s_ftp_name; -$ftp_server = $conf->global->$s_ftp_server; -$ftp_port = $conf->global->$s_ftp_port; if (empty($ftp_port)) { +$ftp_name = getDolGlobalString($s_ftp_name); +$ftp_server = getDolGlobalString($s_ftp_server); +$ftp_port = getDolGlobalString($s_ftp_port); +if (empty($ftp_port)) { $ftp_port = 21; } -$ftp_user = $conf->global->$s_ftp_user; -$ftp_password = $conf->global->$s_ftp_password; -$ftp_passive = $conf->global->$s_ftp_passive; +$ftp_user = getDolGlobalString($s_ftp_user); +$ftp_password = getDolGlobalString($s_ftp_password); +$ftp_passive = getDolGlobalString($s_ftp_passive); // For result on connection $ok = 0; @@ -696,7 +697,9 @@ function dol_ftp_connect($ftp_server, $ftp_port, $ftp_user, $ftp_password, $sect global $langs, $conf; $ok = 1; + $error = 0; $conn_id = null; + $newsectioniso = ''; $mesg=""; if (!is_numeric($ftp_port)) { @@ -707,7 +710,7 @@ function dol_ftp_connect($ftp_server, $ftp_port, $ftp_user, $ftp_password, $sect if ($ok) { $connecttimeout = (empty($conf->global->FTP_CONNECT_TIMEOUT) ? 40 : $conf->global->FTP_CONNECT_TIMEOUT); if (!empty($conf->global->FTP_CONNECT_WITH_SFTP)) { - dol_syslog('Try to connect with ssh2_ftp'); + dol_syslog('Try to connect with ssh2_connect'); $tmp_conn_id = ssh2_connect($ftp_server, $ftp_port); } elseif (!empty($conf->global->FTP_CONNECT_WITH_SSL)) { dol_syslog('Try to connect with ftp_ssl_connect'); @@ -716,7 +719,7 @@ function dol_ftp_connect($ftp_server, $ftp_port, $ftp_user, $ftp_password, $sect dol_syslog('Try to connect with ftp_connect'); $conn_id = ftp_connect($ftp_server, $ftp_port, $connecttimeout); } - if ($conn_id || $tmp_conn_id) { + if (!empty($conn_id) || !empty($tmp_conn_id)) { if ($ftp_user) { if (!empty($conf->global->FTP_CONNECT_WITH_SFTP)) { dol_syslog('Try to authenticate with ssh2_auth_password'); diff --git a/htdocs/main.inc.php b/htdocs/main.inc.php index d8baf0883c5..091c6fb1266 100644 --- a/htdocs/main.inc.php +++ b/htdocs/main.inc.php @@ -573,7 +573,7 @@ if ((!defined('NOCSRFCHECK') && empty($dolibarr_nocsrfcheck) && getDolGlobalInt( $sessiontokenforthisurl = (empty($_SESSION['token']) ? '' : $_SESSION['token']); // TODO Get the sessiontokenforthisurl into an array of session token (one array per base URL so we can use the CSRF per page and we keep ability for several tabs per url in a browser) if (GETPOSTISSET('token') && GETPOST('token') != 'notrequired' && GETPOST('token', 'alpha') != $sessiontokenforthisurl) { - dol_syslog("--- Access to ".(empty($_SERVER["REQUEST_METHOD"]) ? '' : $_SERVER["REQUEST_METHOD"].' ').$_SERVER["PHP_SELF"]." refused by CSRF protection (invalid token), so we disable POST and some GET parameters - referer=".$_SERVER['HTTP_REFERER'].", action=".GETPOST('action', 'aZ09').", _GET|POST['token']=".GETPOST('token', 'alpha'), LOG_WARNING); + dol_syslog("--- Access to ".(empty($_SERVER["REQUEST_METHOD"]) ? '' : $_SERVER["REQUEST_METHOD"].' ').$_SERVER["PHP_SELF"]." refused by CSRF protection (invalid token), so we disable POST and some GET parameters - referer=".(empty($_SERVER['HTTP_REFERER'])?'':$_SERVER['HTTP_REFERER']).", action=".GETPOST('action', 'aZ09').", _GET|POST['token']=".GETPOST('token', 'alpha'), LOG_WARNING); //dol_syslog("_SESSION['token']=".$sessiontokenforthisurl, LOG_DEBUG); // Do not output anything on standard output because this create problems when using the BACK button on browsers. So we just set a message into session. setEventMessages('SecurityTokenHasExpiredSoActionHasBeenCanceledPleaseRetry', null, 'warnings'); From aaee8ff0cabdb5261977836a21efc4983d67e54e Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 25 Jul 2022 18:03:07 +0200 Subject: [PATCH 03/12] Debug v16 --- htdocs/comm/card.php | 2 +- htdocs/core/class/html.form.class.php | 3 ++- htdocs/core/lib/functions.lib.php | 2 +- htdocs/societe/price.php | 10 ++++++---- htdocs/theme/eldy/global.inc.php | 7 ++++++- htdocs/theme/md/style.css.php | 4 ++++ 6 files changed, 20 insertions(+), 8 deletions(-) diff --git a/htdocs/comm/card.php b/htdocs/comm/card.php index 57f2662bcfc..173ee8a6510 100644 --- a/htdocs/comm/card.php +++ b/htdocs/comm/card.php @@ -1035,7 +1035,7 @@ if ($object->id > 0) { $sql .= " WHERE e.fk_soc = s.rowid AND s.rowid = ".((int) $object->id); $sql .= " AND e.entity IN (".getEntity('expedition').")"; $sql .= ' GROUP BY e.rowid'; - $sql .= ', e.ref'; + $sql .= ', e.ref, e.entity'; $sql .= ', e.date_creation'; $sql .= ', e.fk_statut'; $sql .= ', s.nom'; diff --git a/htdocs/core/class/html.form.class.php b/htdocs/core/class/html.form.class.php index 9568ec25828..50858391da3 100644 --- a/htdocs/core/class/html.form.class.php +++ b/htdocs/core/class/html.form.class.php @@ -9375,7 +9375,8 @@ class Form $ret .= ''; // gravatar need md5 hash } else { if ($nophoto == 'company') { - $ret .= '
'.img_picto('', 'company').'
'; + $ret .= '
'.img_picto('', 'company').'
'; + $ret .= '
'; } else { $ret .= ''; } diff --git a/htdocs/core/lib/functions.lib.php b/htdocs/core/lib/functions.lib.php index 9b75313d73d..8a9196c9729 100644 --- a/htdocs/core/lib/functions.lib.php +++ b/htdocs/core/lib/functions.lib.php @@ -2196,7 +2196,7 @@ function dol_banner_tab($object, $paramid, $morehtml = '', $shownav = 1, $fieldi } if ($showbarcode) { - $morehtmlleft .= '
'.$form->showbarcode($object, 100, 'photoref').'
'; + $morehtmlleft .= '
'.$form->showbarcode($object, 100, 'photoref valignmiddle').'
'; } if ($object->element == 'societe') { diff --git a/htdocs/societe/price.php b/htdocs/societe/price.php index 897a372dc27..314fb663631 100644 --- a/htdocs/societe/price.php +++ b/htdocs/societe/price.php @@ -543,6 +543,7 @@ if (!empty($conf->global->PRODUIT_CUSTOMER_PRICES)) { print ''; print ''; + print '
'; print ''; print ''; @@ -562,14 +563,14 @@ if (!empty($conf->global->PRODUIT_CUSTOMER_PRICES)) { if (count($prodcustprice->lines) > 0 || $search_prod) { print ''; - print ''; - print ''; + print ''; + print ''; print ''; print ''; print ''; print ''; - print ''; - print ''; + print ''; + print ''; print ''; print ''; print ''; @@ -633,6 +634,7 @@ if (!empty($conf->global->PRODUIT_CUSTOMER_PRICES)) { } print "
"; + print '
'; print ""; } diff --git a/htdocs/theme/eldy/global.inc.php b/htdocs/theme/eldy/global.inc.php index ba67bf5fdcf..6a2ce22fa68 100644 --- a/htdocs/theme/eldy/global.inc.php +++ b/htdocs/theme/eldy/global.inc.php @@ -2396,6 +2396,10 @@ div.photoref { vertical-align:middle; text-align:center; } +.difforspanimgright { + display: table-cell; + padding-right: 10px; +} img.photorefnoborder { padding: 2px; height: 48px; @@ -4713,9 +4717,10 @@ label.radioprivate { /* margin-bottom: 2px; margin-top: 2px; */ } -div.divphotoref > img.photowithmargin, div.divphotoref > a > .photowithmargin { /* Margin right for photo not inside a div.photoref frame only */ +div.divphotoref > div > .photowithmargin, div.divphotoref > img.photowithmargin, div.divphotoref > a > .photowithmargin { /* Margin right for photo not inside a div.photoref frame only */ margin-right: 15px; } + .photowithborder { border: 1px solid #f0f0f0; } diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php index a710e8417ec..03e9565db21 100644 --- a/htdocs/theme/md/style.css.php +++ b/htdocs/theme/md/style.css.php @@ -2403,6 +2403,10 @@ img.photoref, div.photoref { width: 80px; object-fit: contain; } +.difforspanimgright { + display: table-cell; + padding-right: 10px; +} img.photokanban, div.photokanban { padding: 0; From bd0d9322139cc9536b7b5f16ba2331b82656134d Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 25 Jul 2022 18:37:55 +0200 Subject: [PATCH 04/12] Protection when a category has a parent that is category with other type --- htdocs/categories/class/categorie.class.php | 5 +++-- htdocs/societe/card.php | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/htdocs/categories/class/categorie.class.php b/htdocs/categories/class/categorie.class.php index dad25199566..010d6da644f 100644 --- a/htdocs/categories/class/categorie.class.php +++ b/htdocs/categories/class/categorie.class.php @@ -1215,9 +1215,10 @@ class Categorie extends CommonObject while ((empty($protection) || $i < $protection) && !empty($this->motherof[$cursor_categ])) { //print '  cursor_categ='.$cursor_categ.' i='.$i.' '.$this->motherof[$cursor_categ].'
'."\n"; $this->cats[$id_categ]['fullpath'] = '_'.$this->motherof[$cursor_categ].$this->cats[$id_categ]['fullpath']; - $this->cats[$id_categ]['fulllabel'] = $this->cats[$this->motherof[$cursor_categ]]['label'].' >> '.$this->cats[$id_categ]['fulllabel']; + $this->cats[$id_categ]['fulllabel'] = (empty($this->cats[$this->motherof[$cursor_categ]]) ? 'NotFound' : $this->cats[$this->motherof[$cursor_categ]]['label']).' >> '.$this->cats[$id_categ]['fulllabel']; //print '  Result for id_categ='.$id_categ.' : '.$this->cats[$id_categ]['fullpath'].' '.$this->cats[$id_categ]['fulllabel'].'
'."\n"; - $i++; $cursor_categ = $this->motherof[$cursor_categ]; + $i++; + $cursor_categ = $this->motherof[$cursor_categ]; } //print 'Result for id_categ='.$id_categ.' : '.$this->cats[$id_categ]['fullpath'].'
'."\n"; diff --git a/htdocs/societe/card.php b/htdocs/societe/card.php index 93540eb097c..ce53f60507a 100644 --- a/htdocs/societe/card.php +++ b/htdocs/societe/card.php @@ -2518,7 +2518,7 @@ if (is_object($objcanvas) && $objcanvas->displayCanvasExists($action)) { $maxfilesizearray = getMaxFileSizeArray(); $maxmin = $maxfilesizearray['maxmin']; if ($maxmin > 0) { - $texte .= ''; // MAX_FILE_SIZE must precede the field type=file + print ''; // MAX_FILE_SIZE must precede the field type=file } print ''; print ''; From 66c27139e18b1a26664295714d7d9dc8c0771b76 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 25 Jul 2022 18:45:02 +0200 Subject: [PATCH 05/12] Fix php8 --- htdocs/categories/class/categorie.class.php | 2 +- htdocs/categories/viewcat.php | 8 +++----- htdocs/cron/class/cronjob.class.php | 11 +++++------ htdocs/product/class/productcustomerprice.class.php | 6 +++--- htdocs/public/cron/cron_run_jobs_by_url.php | 2 +- scripts/cron/cron_run_jobs.php | 2 +- 6 files changed, 14 insertions(+), 17 deletions(-) diff --git a/htdocs/categories/class/categorie.class.php b/htdocs/categories/class/categorie.class.php index 010d6da644f..bcfa5c541fd 100644 --- a/htdocs/categories/class/categorie.class.php +++ b/htdocs/categories/class/categorie.class.php @@ -827,7 +827,7 @@ class Categorie extends CommonObject /** * Return list of fetched instance of elements having this category * - * @param string $type Type of category ('customer', 'supplier', 'contact', 'product', 'member', 'knowledge_management' ...) + * @param string $type Type of category ('customer', 'supplier', 'contact', 'product', 'member', 'knowledge_management', ...) * @param int $onlyids Return only ids of objects (consume less memory) * @param int $limit Limit * @param int $offset Offset diff --git a/htdocs/categories/viewcat.php b/htdocs/categories/viewcat.php index 238329a3486..7e8a1252095 100644 --- a/htdocs/categories/viewcat.php +++ b/htdocs/categories/viewcat.php @@ -381,7 +381,7 @@ if ($cats < 0) { $fulltree = $categstatic->get_full_arbo($type, $object->id, 1); // Load possible missing includes - if ($conf->global->CATEGORY_SHOW_COUNTS) { + if (getDolGlobalString('CATEGORY_SHOW_COUNTS')) { if ($type == Categorie::TYPE_MEMBER) { require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php'; } @@ -407,11 +407,9 @@ if ($cats < 0) { $desc = dol_htmlcleanlastbr($val['description']); $counter = ''; - if ($conf->global->CATEGORY_SHOW_COUNTS) { + if (getDolGlobalString('CATEGORY_SHOW_COUNTS')) { // we need only a count of the elements, so it is enough to consume only the id's from the database - $elements = $type == Categorie::TYPE_ACCOUNT - ? $categstatic->getObjectsInCateg("account", 1) // Categorie::TYPE_ACCOUNT is "bank_account" instead of "account" - : $categstatic->getObjectsInCateg($type, 1); + $elements = $categstatic->getObjectsInCateg($type, 1); $counter = "".(is_array($elements) ? count($elements) : '0').""; } diff --git a/htdocs/cron/class/cronjob.class.php b/htdocs/cron/class/cronjob.class.php index 744ac1834aa..a84fa3109df 100644 --- a/htdocs/cron/class/cronjob.class.php +++ b/htdocs/cron/class/cronjob.class.php @@ -487,9 +487,9 @@ class Cronjob extends CommonObject } } - // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps /** - * Load object in memory from the database + * Load list of cron jobs in a memory array from the database + * @TODO Use object CronJob and not CronJobLine. * * @param string $sortorder sort order * @param string $sortfield sort field @@ -500,11 +500,8 @@ class Cronjob extends CommonObject * @param int $processing Processing or not * @return int <0 if KO, >0 if OK */ - public function fetch_all($sortorder = 'DESC', $sortfield = 't.rowid', $limit = 0, $offset = 0, $status = 1, $filter = '', $processing = -1) + public function fetchAll($sortorder = 'DESC', $sortfield = 't.rowid', $limit = 0, $offset = 0, $status = 1, $filter = '', $processing = -1) { - // phpcs:enable - global $langs; - $this->lines = array(); $sql = "SELECT"; @@ -1471,6 +1468,8 @@ class Cronjobline */ public $id; + public $entity; + /** * @var string Ref */ diff --git a/htdocs/product/class/productcustomerprice.class.php b/htdocs/product/class/productcustomerprice.class.php index 0166c7f2017..ed003d85667 100644 --- a/htdocs/product/class/productcustomerprice.class.php +++ b/htdocs/product/class/productcustomerprice.class.php @@ -797,9 +797,9 @@ class Productcustomerprice extends CommonObject /** * Force update price on child companies so child company has same prices than parent. * - * @param User $user that modifies - * @param int $forceupdateaffiliate update price on each soc child - * @return int <0 if KO, 0 = action disabled, >0 if OK + * @param User $user User that modifies + * @param int $forceupdateaffiliate update price on each soc child + * @return int <0 if KO, 0 = action disabled, >0 if OK */ public function setPriceOnAffiliateThirdparty($user, $forceupdateaffiliate) { diff --git a/htdocs/public/cron/cron_run_jobs_by_url.php b/htdocs/public/cron/cron_run_jobs_by_url.php index fea2a2d7f82..fa81b8d8bd7 100644 --- a/htdocs/public/cron/cron_run_jobs_by_url.php +++ b/htdocs/public/cron/cron_run_jobs_by_url.php @@ -135,7 +135,7 @@ if (!empty($id)) { $filter['t.rowid'] = $id; } -$result = $object->fetch_all('ASC,ASC,ASC', 't.priority,t.entity,t.rowid', 0, 0, 1, $filter, 0); +$result = $object->fetchAll('ASC,ASC,ASC', 't.priority,t.entity,t.rowid', 0, 0, 1, $filter, 0); if ($result < 0) { echo "Error: ".$object->error; dol_syslog("cron_run_jobs.php fetch Error".$object->error, LOG_ERR); diff --git a/scripts/cron/cron_run_jobs.php b/scripts/cron/cron_run_jobs.php index 820db6746ee..ee866203665 100755 --- a/scripts/cron/cron_run_jobs.php +++ b/scripts/cron/cron_run_jobs.php @@ -178,7 +178,7 @@ if (!empty($id)) { $filter['t.rowid'] = $id; } -$result = $object->fetch_all('ASC,ASC,ASC', 't.priority,t.entity,t.rowid', 0, 0, 1, $filter, 0); +$result = $object->fetchAll('ASC,ASC,ASC', 't.priority,t.entity,t.rowid', 0, 0, 1, $filter, 0); if ($result < 0) { echo "Error: ".$object->error; dol_syslog("cron_run_jobs.php fetch Error ".$object->error, LOG_ERR); From 4d58058697ffa4070a66345adb4e899bfebb0fea Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Tue, 26 Jul 2022 10:01:08 +0200 Subject: [PATCH 06/12] Fix separator --- htdocs/langs/es_HN/main.lang | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/langs/es_HN/main.lang b/htdocs/langs/es_HN/main.lang index 0d6b013ca18..2e691473326 100644 --- a/htdocs/langs/es_HN/main.lang +++ b/htdocs/langs/es_HN/main.lang @@ -3,7 +3,7 @@ DIRECTION=ltr FONTFORPDF=helvetica FONTSIZEFORPDF=10 SeparatorDecimal=. -SeparatorThousand=None +SeparatorThousand=, FormatDateShort=%m/%d/%Y FormatDateShortInput=%m/%d/%Y FormatDateShortJava=MM/dd/yyyy From 20be7b71c56ec7c1a9be3adc59fb1f200585e03f Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Tue, 26 Jul 2022 10:12:40 +0200 Subject: [PATCH 07/12] Doc --- htdocs/holiday/class/holiday.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/holiday/class/holiday.class.php b/htdocs/holiday/class/holiday.class.php index 5e0f12d98a8..8b522b93ec1 100644 --- a/htdocs/holiday/class/holiday.class.php +++ b/htdocs/holiday/class/holiday.class.php @@ -1442,7 +1442,7 @@ class Holiday extends CommonObject } /** - * Return value of a conf parameterfor leave module + * Return value of a conf parameter for leave module * TODO Move this into llx_const table * * @param string $name Name of parameter From d0e74fbbebd9782232f301756f1eb57e73924a32 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Tue, 26 Jul 2022 10:54:03 +0200 Subject: [PATCH 08/12] Sync transifex --- .../deplacement/class/deplacement.class.php | 46 +- htdocs/core/lib/functions.lib.php | 4 +- htdocs/core/lib/project.lib.php | 14 +- .../class/expensereport.class.php | 4 + htdocs/langs/ar_IQ/projects.lang | 2 + htdocs/langs/ar_SA/holiday.lang | 10 + htdocs/langs/ar_SA/hrm.lang | 30 +- htdocs/langs/ar_SA/install.lang | 6 +- htdocs/langs/ar_SA/main.lang | 18 +- htdocs/langs/ar_SA/members.lang | 16 +- htdocs/langs/ar_SA/stocks.lang | 48 +- htdocs/langs/bg_BG/holiday.lang | 10 + htdocs/langs/bg_BG/hrm.lang | 30 +- htdocs/langs/bg_BG/install.lang | 6 +- htdocs/langs/bg_BG/main.lang | 18 +- htdocs/langs/bg_BG/members.lang | 16 +- htdocs/langs/bg_BG/projects.lang | 3 +- htdocs/langs/bg_BG/stocks.lang | 48 +- htdocs/langs/bn_BD/install.lang | 6 +- htdocs/langs/bn_BD/stocks.lang | 48 +- htdocs/langs/bs_BA/categories.lang | 6 +- htdocs/langs/bs_BA/holiday.lang | 10 + htdocs/langs/bs_BA/hrm.lang | 30 +- htdocs/langs/bs_BA/install.lang | 6 +- htdocs/langs/bs_BA/members.lang | 22 +- htdocs/langs/bs_BA/stocks.lang | 48 +- htdocs/langs/ca_ES/accountancy.lang | 10 +- htdocs/langs/ca_ES/holiday.lang | 10 + htdocs/langs/ca_ES/hrm.lang | 9 +- htdocs/langs/ca_ES/install.lang | 6 +- htdocs/langs/ca_ES/main.lang | 8 +- htdocs/langs/ca_ES/members.lang | 16 +- htdocs/langs/ca_ES/projects.lang | 3 +- htdocs/langs/ca_ES/stocks.lang | 56 +- htdocs/langs/cs_CZ/holiday.lang | 10 + htdocs/langs/cs_CZ/hrm.lang | 30 +- htdocs/langs/cs_CZ/install.lang | 6 +- htdocs/langs/cs_CZ/main.lang | 18 +- htdocs/langs/cs_CZ/members.lang | 16 +- htdocs/langs/cs_CZ/projects.lang | 3 +- htdocs/langs/cs_CZ/stocks.lang | 48 +- htdocs/langs/cy_GB/accountancy.lang | 10 +- htdocs/langs/cy_GB/hrm.lang | 9 +- htdocs/langs/cy_GB/install.lang | 6 +- htdocs/langs/cy_GB/main.lang | 8 +- htdocs/langs/cy_GB/members.lang | 16 +- htdocs/langs/cy_GB/projects.lang | 3 +- htdocs/langs/da_DK/accountancy.lang | 10 +- htdocs/langs/da_DK/admin.lang | 991 +++---- htdocs/langs/da_DK/agenda.lang | 1 + htdocs/langs/da_DK/boxes.lang | 3 +- htdocs/langs/da_DK/cashdesk.lang | 7 + htdocs/langs/da_DK/holiday.lang | 140 +- htdocs/langs/da_DK/hrm.lang | 79 +- htdocs/langs/da_DK/install.lang | 12 +- htdocs/langs/da_DK/languages.lang | 9 +- htdocs/langs/da_DK/mails.lang | 1 + htdocs/langs/da_DK/main.lang | 283 +- htdocs/langs/da_DK/members.lang | 14 +- htdocs/langs/da_DK/modulebuilder.lang | 3 + htdocs/langs/da_DK/orders.lang | 1 + htdocs/langs/da_DK/paypal.lang | 3 +- htdocs/langs/da_DK/projects.lang | 3 +- htdocs/langs/da_DK/stocks.lang | 48 +- htdocs/langs/da_DK/suppliers.lang | 8 + htdocs/langs/da_DK/ticket.lang | 4 +- htdocs/langs/de_AT/admin.lang | 1 - htdocs/langs/de_CH/accountancy.lang | 16 +- htdocs/langs/de_CH/admin.lang | 10 - htdocs/langs/de_CH/boxes.lang | 3 - htdocs/langs/de_CH/errors.lang | 1 - htdocs/langs/de_CH/holiday.lang | 3 + htdocs/langs/de_CH/hrm.lang | 3 +- htdocs/langs/de_CH/main.lang | 2 - htdocs/langs/de_CH/members.lang | 5 +- htdocs/langs/de_CH/projects.lang | 6 - htdocs/langs/de_CH/stocks.lang | 6 + htdocs/langs/de_DE/accountancy.lang | 228 +- htdocs/langs/de_DE/admin.lang | 281 +- htdocs/langs/de_DE/agenda.lang | 9 +- htdocs/langs/de_DE/boxes.lang | 15 +- htdocs/langs/de_DE/cashdesk.lang | 33 +- htdocs/langs/de_DE/errors.lang | 37 +- htdocs/langs/de_DE/eventorganization.lang | 16 +- htdocs/langs/de_DE/holiday.lang | 12 +- htdocs/langs/de_DE/hrm.lang | 19 +- htdocs/langs/de_DE/install.lang | 4 +- htdocs/langs/de_DE/interventions.lang | 8 +- htdocs/langs/de_DE/languages.lang | 3 + htdocs/langs/de_DE/mails.lang | 7 +- htdocs/langs/de_DE/main.lang | 55 +- htdocs/langs/de_DE/members.lang | 54 +- htdocs/langs/de_DE/modulebuilder.lang | 9 +- htdocs/langs/de_DE/orders.lang | 11 +- htdocs/langs/de_DE/paypal.lang | 5 +- htdocs/langs/de_DE/products.lang | 42 +- htdocs/langs/de_DE/projects.lang | 79 +- htdocs/langs/de_DE/sendings.lang | 24 +- htdocs/langs/de_DE/stocks.lang | 67 +- htdocs/langs/de_DE/suppliers.lang | 3 +- htdocs/langs/de_DE/ticket.lang | 22 +- htdocs/langs/el_CY/members.lang | 3 + htdocs/langs/el_CY/projects.lang | 2 + htdocs/langs/el_GR/accountancy.lang | 32 +- htdocs/langs/el_GR/admin.lang | 223 +- htdocs/langs/el_GR/agenda.lang | 169 +- htdocs/langs/el_GR/blockedlog.lang | 58 +- htdocs/langs/el_GR/boxes.lang | 121 +- htdocs/langs/el_GR/cashdesk.lang | 7 + htdocs/langs/el_GR/commercial.lang | 54 +- htdocs/langs/el_GR/companies.lang | 67 +- htdocs/langs/el_GR/compta.lang | 43 +- htdocs/langs/el_GR/dict.lang | 226 +- htdocs/langs/el_GR/errors.lang | 19 +- htdocs/langs/el_GR/holiday.lang | 10 + htdocs/langs/el_GR/hrm.lang | 11 +- htdocs/langs/el_GR/install.lang | 6 +- htdocs/langs/el_GR/intracommreport.lang | 14 +- htdocs/langs/el_GR/languages.lang | 3 + htdocs/langs/el_GR/loan.lang | 40 +- htdocs/langs/el_GR/mails.lang | 57 +- htdocs/langs/el_GR/main.lang | 141 +- htdocs/langs/el_GR/members.lang | 12 +- htdocs/langs/el_GR/modulebuilder.lang | 7 +- htdocs/langs/el_GR/oauth.lang | 52 +- htdocs/langs/el_GR/orders.lang | 1 + htdocs/langs/el_GR/paypal.lang | 27 +- htdocs/langs/el_GR/projects.lang | 3 +- htdocs/langs/el_GR/stocks.lang | 43 + htdocs/langs/el_GR/supplier_proposal.lang | 66 +- htdocs/langs/el_GR/suppliers.lang | 1 + htdocs/langs/el_GR/ticket.lang | 4 +- htdocs/langs/en_AE/members.lang | 3 + htdocs/langs/en_AE/projects.lang | 2 + htdocs/langs/en_AU/members.lang | 3 + htdocs/langs/en_AU/projects.lang | 2 + htdocs/langs/en_CA/members.lang | 3 + htdocs/langs/en_CA/projects.lang | 2 + htdocs/langs/en_GB/members.lang | 3 + htdocs/langs/en_GB/other.lang | 3 + htdocs/langs/en_GB/projects.lang | 2 + htdocs/langs/en_IN/members.lang | 3 + htdocs/langs/en_SG/members.lang | 3 + htdocs/langs/en_SG/projects.lang | 2 + htdocs/langs/en_ZA/members.lang | 3 + htdocs/langs/en_ZA/projects.lang | 2 + htdocs/langs/es_AR/hrm.lang | 1 - htdocs/langs/es_AR/members.lang | 4 +- htdocs/langs/es_BO/members.lang | 3 + htdocs/langs/es_BO/projects.lang | 2 + htdocs/langs/es_CL/hrm.lang | 2 +- htdocs/langs/es_CL/install.lang | 1 - htdocs/langs/es_CL/members.lang | 3 +- htdocs/langs/es_CL/oauth.lang | 2 - htdocs/langs/es_CL/projects.lang | 1 + htdocs/langs/es_CO/accountancy.lang | 3 + htdocs/langs/es_CO/holiday.lang | 2 + htdocs/langs/es_CO/hrm.lang | 1 - htdocs/langs/es_CO/install.lang | 1 - htdocs/langs/es_CO/mails.lang | 1 - htdocs/langs/es_CO/members.lang | 5 +- htdocs/langs/es_CO/oauth.lang | 2 - htdocs/langs/es_CO/projects.lang | 2 +- htdocs/langs/es_CO/receptions.lang | 1 - htdocs/langs/es_DO/members.lang | 3 + htdocs/langs/es_DO/projects.lang | 2 + htdocs/langs/es_EC/hrm.lang | 3 +- htdocs/langs/es_EC/install.lang | 1 - htdocs/langs/es_EC/main.lang | 2 + htdocs/langs/es_EC/members.lang | 4 +- htdocs/langs/es_EC/oauth.lang | 2 - htdocs/langs/es_EC/projects.lang | 2 +- htdocs/langs/es_EC/stocks.lang | 2 +- htdocs/langs/es_ES/accountancy.lang | 48 +- htdocs/langs/es_ES/admin.lang | 127 +- htdocs/langs/es_ES/agenda.lang | 5 +- htdocs/langs/es_ES/boxes.lang | 3 +- htdocs/langs/es_ES/cashdesk.lang | 15 +- htdocs/langs/es_ES/holiday.lang | 14 +- htdocs/langs/es_ES/hrm.lang | 16 +- htdocs/langs/es_ES/install.lang | 6 +- htdocs/langs/es_ES/languages.lang | 11 +- htdocs/langs/es_ES/mails.lang | 3 +- htdocs/langs/es_ES/main.lang | 23 +- htdocs/langs/es_ES/members.lang | 20 +- htdocs/langs/es_ES/modulebuilder.lang | 29 +- htdocs/langs/es_ES/orders.lang | 5 + htdocs/langs/es_ES/projects.lang | 15 +- htdocs/langs/es_ES/stocks.lang | 48 +- htdocs/langs/es_ES/suppliers.lang | 8 + htdocs/langs/es_ES/ticket.lang | 28 +- htdocs/langs/es_GT/members.lang | 3 + htdocs/langs/es_GT/projects.lang | 2 + htdocs/langs/es_HN/main.lang | 19 +- htdocs/langs/es_HN/members.lang | 3 + htdocs/langs/es_HN/projects.lang | 2 + htdocs/langs/es_MX/install.lang | 1 - htdocs/langs/es_MX/members.lang | 2 + htdocs/langs/es_MX/oauth.lang | 2 - htdocs/langs/es_MX/stocks.lang | 1 + htdocs/langs/es_PA/members.lang | 3 + htdocs/langs/es_PA/projects.lang | 2 + htdocs/langs/es_PE/members.lang | 3 + htdocs/langs/es_PY/members.lang | 3 + htdocs/langs/es_PY/projects.lang | 2 + htdocs/langs/es_US/members.lang | 3 + htdocs/langs/es_US/projects.lang | 2 + htdocs/langs/es_UY/members.lang | 3 + htdocs/langs/es_UY/projects.lang | 2 + htdocs/langs/es_VE/members.lang | 2 + htdocs/langs/es_VE/projects.lang | 2 + htdocs/langs/et_EE/holiday.lang | 10 + htdocs/langs/et_EE/install.lang | 12 +- htdocs/langs/et_EE/members.lang | 16 +- htdocs/langs/et_EE/stocks.lang | 48 +- htdocs/langs/eu_ES/holiday.lang | 10 + htdocs/langs/fa_IR/holiday.lang | 10 + htdocs/langs/fa_IR/hrm.lang | 30 +- htdocs/langs/fa_IR/install.lang | 6 +- htdocs/langs/fa_IR/main.lang | 18 +- htdocs/langs/fa_IR/members.lang | 16 +- htdocs/langs/fa_IR/projects.lang | 3 +- htdocs/langs/fa_IR/stocks.lang | 48 +- htdocs/langs/fi_FI/hrm.lang | 30 +- htdocs/langs/fi_FI/install.lang | 6 +- htdocs/langs/fi_FI/main.lang | 18 +- htdocs/langs/fi_FI/members.lang | 16 +- htdocs/langs/fi_FI/stocks.lang | 48 +- htdocs/langs/fr_CA/hrm.lang | 2 +- htdocs/langs/fr_CA/install.lang | 1 + htdocs/langs/fr_CA/members.lang | 1 - htdocs/langs/fr_CA/projects.lang | 1 - htdocs/langs/fr_CA/stocks.lang | 1 - htdocs/langs/fr_FR/accountancy.lang | 14 +- htdocs/langs/fr_FR/admin.lang | 107 +- htdocs/langs/fr_FR/holiday.lang | 14 +- htdocs/langs/fr_FR/hrm.lang | 3 +- htdocs/langs/fr_FR/install.lang | 10 +- htdocs/langs/fr_FR/main.lang | 7 +- htdocs/langs/fr_FR/members.lang | 20 +- htdocs/langs/fr_FR/projects.lang | 17 +- htdocs/langs/fr_FR/stocks.lang | 76 +- htdocs/langs/fr_FR/ticket.lang | 28 +- htdocs/langs/gl_ES/accountancy.lang | 10 +- htdocs/langs/gl_ES/admin.lang | 31 +- htdocs/langs/gl_ES/agenda.lang | 1 + htdocs/langs/gl_ES/boxes.lang | 3 +- htdocs/langs/gl_ES/cashdesk.lang | 7 + htdocs/langs/gl_ES/holiday.lang | 10 + htdocs/langs/gl_ES/hrm.lang | 9 +- htdocs/langs/gl_ES/install.lang | 6 +- htdocs/langs/gl_ES/languages.lang | 9 + htdocs/langs/gl_ES/mails.lang | 1 + htdocs/langs/gl_ES/main.lang | 3 + htdocs/langs/gl_ES/members.lang | 14 +- htdocs/langs/gl_ES/modulebuilder.lang | 3 + htdocs/langs/gl_ES/orders.lang | 1 + htdocs/langs/gl_ES/paypal.lang | 3 +- htdocs/langs/gl_ES/projects.lang | 3 +- htdocs/langs/gl_ES/stocks.lang | 48 +- htdocs/langs/gl_ES/suppliers.lang | 8 + htdocs/langs/gl_ES/ticket.lang | 4 +- htdocs/langs/he_IL/holiday.lang | 10 + htdocs/langs/hr_HR/accountancy.lang | 10 +- htdocs/langs/hr_HR/holiday.lang | 10 + htdocs/langs/hr_HR/hrm.lang | 9 +- htdocs/langs/hr_HR/install.lang | 6 +- htdocs/langs/hr_HR/main.lang | 8 +- htdocs/langs/hr_HR/members.lang | 16 +- htdocs/langs/hr_HR/projects.lang | 3 +- htdocs/langs/hr_HR/stocks.lang | 43 + htdocs/langs/hu_HU/accountancy.lang | 10 +- htdocs/langs/hu_HU/holiday.lang | 10 + htdocs/langs/hu_HU/hrm.lang | 9 +- htdocs/langs/hu_HU/install.lang | 6 +- htdocs/langs/hu_HU/main.lang | 5 +- htdocs/langs/hu_HU/members.lang | 14 +- htdocs/langs/hu_HU/projects.lang | 3 +- htdocs/langs/hu_HU/stocks.lang | 43 + htdocs/langs/hu_HU/ticket.lang | 4 +- htdocs/langs/id_ID/holiday.lang | 10 + htdocs/langs/id_ID/hrm.lang | 44 +- htdocs/langs/id_ID/install.lang | 6 +- htdocs/langs/id_ID/main.lang | 18 +- htdocs/langs/id_ID/members.lang | 16 +- htdocs/langs/id_ID/projects.lang | 3 +- htdocs/langs/id_ID/stocks.lang | 48 +- htdocs/langs/is_IS/holiday.lang | 10 + htdocs/langs/is_IS/install.lang | 12 +- htdocs/langs/is_IS/members.lang | 16 +- htdocs/langs/is_IS/stocks.lang | 48 +- htdocs/langs/it_IT/accountancy.lang | 10 +- htdocs/langs/it_IT/agenda.lang | 3 + htdocs/langs/it_IT/boxes.lang | 3 +- htdocs/langs/it_IT/categories.lang | 2 + htdocs/langs/it_IT/contracts.lang | 3 + htdocs/langs/it_IT/holiday.lang | 10 + htdocs/langs/it_IT/hrm.lang | 18 +- htdocs/langs/it_IT/install.lang | 6 +- htdocs/langs/it_IT/mails.lang | 1 + htdocs/langs/it_IT/main.lang | 18 +- htdocs/langs/it_IT/members.lang | 16 +- htdocs/langs/it_IT/other.lang | 25 +- htdocs/langs/it_IT/paypal.lang | 1 + htdocs/langs/it_IT/productbatch.lang | 1 + htdocs/langs/it_IT/projects.lang | 7 +- htdocs/langs/it_IT/stocks.lang | 48 +- htdocs/langs/it_IT/users.lang | 8 +- htdocs/langs/it_IT/withdrawals.lang | 3 + htdocs/langs/ja_JP/accountancy.lang | 10 +- htdocs/langs/ja_JP/admin.lang | 33 +- htdocs/langs/ja_JP/agenda.lang | 1 + htdocs/langs/ja_JP/boxes.lang | 1 + htdocs/langs/ja_JP/cashdesk.lang | 7 + htdocs/langs/ja_JP/holiday.lang | 10 + htdocs/langs/ja_JP/hrm.lang | 9 +- htdocs/langs/ja_JP/install.lang | 6 +- htdocs/langs/ja_JP/languages.lang | 3 + htdocs/langs/ja_JP/mails.lang | 1 + htdocs/langs/ja_JP/main.lang | 7 +- htdocs/langs/ja_JP/members.lang | 14 +- htdocs/langs/ja_JP/modulebuilder.lang | 3 + htdocs/langs/ja_JP/orders.lang | 1 + htdocs/langs/ja_JP/paypal.lang | 1 + htdocs/langs/ja_JP/projects.lang | 3 +- htdocs/langs/ja_JP/stocks.lang | 43 + htdocs/langs/ja_JP/suppliers.lang | 1 + htdocs/langs/ja_JP/ticket.lang | 4 +- htdocs/langs/kk_KZ/hrm.lang | 30 +- htdocs/langs/kk_KZ/install.lang | 6 +- htdocs/langs/kk_KZ/main.lang | 18 +- htdocs/langs/kk_KZ/members.lang | 16 +- htdocs/langs/kk_KZ/projects.lang | 3 +- htdocs/langs/km_KH/holiday.lang | 10 + htdocs/langs/kn_IN/holiday.lang | 10 + htdocs/langs/ko_KR/holiday.lang | 10 + htdocs/langs/ko_KR/members.lang | 22 +- htdocs/langs/lo_LA/hrm.lang | 30 +- htdocs/langs/lo_LA/install.lang | 6 +- htdocs/langs/lo_LA/main.lang | 18 +- htdocs/langs/lo_LA/members.lang | 16 +- htdocs/langs/lo_LA/projects.lang | 3 +- htdocs/langs/lt_LT/holiday.lang | 10 + htdocs/langs/lt_LT/install.lang | 12 +- htdocs/langs/lt_LT/members.lang | 16 +- htdocs/langs/lt_LT/stocks.lang | 48 +- htdocs/langs/lv_LV/accountancy.lang | 10 +- htdocs/langs/lv_LV/admin.lang | 57 +- htdocs/langs/lv_LV/agenda.lang | 1 + htdocs/langs/lv_LV/banks.lang | 4 +- htdocs/langs/lv_LV/boxes.lang | 3 +- htdocs/langs/lv_LV/cashdesk.lang | 15 +- htdocs/langs/lv_LV/categories.lang | 1 + htdocs/langs/lv_LV/companies.lang | 15 +- htdocs/langs/lv_LV/compta.lang | 1 + htdocs/langs/lv_LV/errors.lang | 21 +- htdocs/langs/lv_LV/exports.lang | 17 +- htdocs/langs/lv_LV/holiday.lang | 14 +- htdocs/langs/lv_LV/hrm.lang | 9 +- htdocs/langs/lv_LV/install.lang | 6 +- htdocs/langs/lv_LV/languages.lang | 9 + htdocs/langs/lv_LV/mails.lang | 1 + htdocs/langs/lv_LV/main.lang | 11 +- htdocs/langs/lv_LV/members.lang | 18 +- htdocs/langs/lv_LV/modulebuilder.lang | 13 +- htdocs/langs/lv_LV/mrp.lang | 6 +- htdocs/langs/lv_LV/oauth.lang | 14 +- htdocs/langs/lv_LV/orders.lang | 1 + htdocs/langs/lv_LV/other.lang | 23 +- htdocs/langs/lv_LV/paypal.lang | 1 + htdocs/langs/lv_LV/products.lang | 2 +- htdocs/langs/lv_LV/projects.lang | 15 +- htdocs/langs/lv_LV/receiptprinter.lang | 6 +- htdocs/langs/lv_LV/stocks.lang | 52 +- htdocs/langs/lv_LV/suppliers.lang | 8 + htdocs/langs/lv_LV/ticket.lang | 8 +- htdocs/langs/mk_MK/hrm.lang | 30 +- htdocs/langs/ms_MY/accountancy.lang | 460 ++++ htdocs/langs/ms_MY/admin.lang | 2288 +++++++++++++++++ htdocs/langs/ms_MY/agenda.lang | 177 ++ htdocs/langs/ms_MY/assets.lang | 186 ++ htdocs/langs/ms_MY/banks.lang | 187 ++ htdocs/langs/ms_MY/bills.lang | 623 +++++ htdocs/langs/ms_MY/blockedlog.lang | 57 + htdocs/langs/ms_MY/bookmarks.lang | 22 + htdocs/langs/ms_MY/boxes.lang | 121 + htdocs/langs/ms_MY/cashdesk.lang | 145 ++ htdocs/langs/ms_MY/categories.lang | 102 + htdocs/langs/ms_MY/commercial.lang | 81 + htdocs/langs/ms_MY/companies.lang | 500 ++++ htdocs/langs/ms_MY/compta.lang | 303 +++ htdocs/langs/ms_MY/contracts.lang | 107 + htdocs/langs/ms_MY/cron.lang | 93 + htdocs/langs/ms_MY/deliveries.lang | 33 + htdocs/langs/ms_MY/dict.lang | 359 +++ htdocs/langs/ms_MY/donations.lang | 35 + htdocs/langs/ms_MY/ecm.lang | 49 + htdocs/langs/ms_MY/errors.lang | 347 +++ htdocs/langs/ms_MY/eventorganization.lang | 169 ++ htdocs/langs/ms_MY/exports.lang | 145 ++ htdocs/langs/ms_MY/help.lang | 23 + htdocs/langs/ms_MY/holiday.lang | 149 ++ htdocs/langs/ms_MY/hrm.lang | 91 + htdocs/langs/ms_MY/install.lang | 215 ++ htdocs/langs/ms_MY/interventions.lang | 70 + htdocs/langs/ms_MY/intracommreport.lang | 40 + htdocs/langs/ms_MY/knowledgemanagement.lang | 54 + htdocs/langs/ms_MY/languages.lang | 123 + htdocs/langs/ms_MY/ldap.lang | 31 + htdocs/langs/ms_MY/link.lang | 11 + htdocs/langs/ms_MY/loan.lang | 34 + htdocs/langs/ms_MY/mailmanspip.lang | 27 + htdocs/langs/ms_MY/mails.lang | 181 ++ htdocs/langs/ms_MY/main.lang | 1182 +++++++++ htdocs/langs/ms_MY/margins.lang | 45 + htdocs/langs/ms_MY/members.lang | 230 ++ htdocs/langs/ms_MY/modulebuilder.lang | 158 ++ htdocs/langs/ms_MY/mrp.lang | 114 + htdocs/langs/ms_MY/multicurrency.lang | 38 + htdocs/langs/ms_MY/oauth.lang | 36 + htdocs/langs/ms_MY/opensurvey.lang | 63 + htdocs/langs/ms_MY/orders.lang | 201 ++ htdocs/langs/ms_MY/other.lang | 327 +++ htdocs/langs/ms_MY/partnership.lang | 94 + htdocs/langs/ms_MY/paybox.lang | 30 + htdocs/langs/ms_MY/paypal.lang | 37 + htdocs/langs/ms_MY/printing.lang | 54 + htdocs/langs/ms_MY/productbatch.lang | 46 + htdocs/langs/ms_MY/products.lang | 429 ++++ htdocs/langs/ms_MY/projects.lang | 297 +++ htdocs/langs/ms_MY/propal.lang | 113 + htdocs/langs/ms_MY/receiptprinter.lang | 84 + htdocs/langs/ms_MY/receptions.lang | 53 + htdocs/langs/ms_MY/recruitment.lang | 78 + htdocs/langs/ms_MY/resource.lang | 39 + htdocs/langs/ms_MY/salaries.lang | 27 + htdocs/langs/ms_MY/sendings.lang | 76 + htdocs/langs/ms_MY/sms.lang | 51 + htdocs/langs/ms_MY/stocks.lang | 317 +++ htdocs/langs/ms_MY/stripe.lang | 71 + htdocs/langs/ms_MY/supplier_proposal.lang | 58 + htdocs/langs/ms_MY/suppliers.lang | 57 + htdocs/langs/ms_MY/ticket.lang | 352 +++ htdocs/langs/ms_MY/trips.lang | 150 ++ htdocs/langs/ms_MY/users.lang | 130 + htdocs/langs/ms_MY/website.lang | 147 ++ htdocs/langs/ms_MY/withdrawals.lang | 159 ++ htdocs/langs/ms_MY/workflow.lang | 36 + htdocs/langs/ms_MY/zapier.lang | 21 + htdocs/langs/nb_NO/accountancy.lang | 10 +- htdocs/langs/nb_NO/holiday.lang | 10 + htdocs/langs/nb_NO/hrm.lang | 9 +- htdocs/langs/nb_NO/install.lang | 6 +- htdocs/langs/nb_NO/main.lang | 7 +- htdocs/langs/nb_NO/members.lang | 14 +- htdocs/langs/nb_NO/projects.lang | 3 +- htdocs/langs/nb_NO/stocks.lang | 43 + htdocs/langs/nb_NO/ticket.lang | 4 +- htdocs/langs/nl_BE/hrm.lang | 1 - htdocs/langs/nl_BE/main.lang | 1 + htdocs/langs/nl_BE/members.lang | 11 + htdocs/langs/nl_NL/accountancy.lang | 48 +- htdocs/langs/nl_NL/holiday.lang | 20 +- htdocs/langs/nl_NL/hrm.lang | 126 +- htdocs/langs/nl_NL/install.lang | 6 +- htdocs/langs/nl_NL/main.lang | 34 +- htdocs/langs/nl_NL/members.lang | 22 +- htdocs/langs/nl_NL/projects.lang | 29 +- htdocs/langs/nl_NL/stocks.lang | 98 +- htdocs/langs/nl_NL/ticket.lang | 72 +- htdocs/langs/pl_PL/holiday.lang | 10 + htdocs/langs/pl_PL/hrm.lang | 30 +- htdocs/langs/pl_PL/install.lang | 6 +- htdocs/langs/pl_PL/main.lang | 18 +- htdocs/langs/pl_PL/members.lang | 16 +- htdocs/langs/pl_PL/projects.lang | 3 +- htdocs/langs/pl_PL/stocks.lang | 48 +- htdocs/langs/pt_AO/projects.lang | 2 + htdocs/langs/pt_BR/hrm.lang | 2 +- htdocs/langs/pt_BR/install.lang | 1 - htdocs/langs/pt_BR/intracommreport.lang | 5 + htdocs/langs/pt_BR/main.lang | 41 +- htdocs/langs/pt_BR/members.lang | 1 - htdocs/langs/pt_BR/oauth.lang | 2 - htdocs/langs/pt_BR/projects.lang | 2 +- htdocs/langs/pt_BR/stocks.lang | 2 + htdocs/langs/pt_MZ/accountancy.lang | 235 ++ htdocs/langs/pt_MZ/agenda.lang | 140 + htdocs/langs/pt_MZ/assets.lang | 6 + htdocs/langs/pt_MZ/banks.lang | 5 + htdocs/langs/pt_MZ/bills.lang | 405 +++ htdocs/langs/pt_MZ/blockedlog.lang | 29 + htdocs/langs/pt_MZ/bookmarks.lang | 11 + htdocs/langs/pt_MZ/boxes.lang | 98 + htdocs/langs/pt_MZ/cashdesk.lang | 92 + htdocs/langs/pt_MZ/categories.lang | 90 + htdocs/langs/pt_MZ/commercial.lang | 62 + htdocs/langs/pt_MZ/companies.lang | 273 ++ htdocs/langs/pt_MZ/compta.lang | 174 ++ htdocs/langs/pt_MZ/contracts.lang | 5 + htdocs/langs/pt_MZ/cron.lang | 54 + htdocs/langs/pt_MZ/deliveries.lang | 25 + htdocs/langs/pt_MZ/dict.lang | 110 + htdocs/langs/pt_MZ/donations.lang | 25 + htdocs/langs/pt_MZ/ecm.lang | 37 + htdocs/langs/pt_MZ/errors.lang | 183 ++ htdocs/langs/pt_MZ/eventorganization.lang | 8 + htdocs/langs/pt_MZ/help.lang | 13 + htdocs/langs/pt_MZ/holiday.lang | 7 + htdocs/langs/pt_MZ/hrm.lang | 8 + htdocs/langs/pt_MZ/interventions.lang | 53 + htdocs/langs/pt_MZ/languages.lang | 2 + htdocs/langs/pt_MZ/ldap.lang | 13 + htdocs/langs/pt_MZ/link.lang | 10 + htdocs/langs/pt_MZ/loan.lang | 24 + htdocs/langs/pt_MZ/mailmanspip.lang | 25 + htdocs/langs/pt_MZ/mails.lang | 4 + htdocs/langs/pt_MZ/main.lang | 580 ++++- htdocs/langs/pt_MZ/margins.lang | 26 + htdocs/langs/pt_MZ/members.lang | 5 + htdocs/langs/pt_MZ/modulebuilder.lang | 57 + htdocs/langs/pt_MZ/mrp.lang | 4 + htdocs/langs/pt_MZ/multicurrency.lang | 16 + htdocs/langs/pt_MZ/oauth.lang | 22 + htdocs/langs/pt_MZ/opensurvey.lang | 48 + htdocs/langs/pt_MZ/orders.lang | 22 + htdocs/langs/pt_MZ/other.lang | 3 + htdocs/langs/pt_MZ/partnership.lang | 3 + htdocs/langs/pt_MZ/paybox.lang | 23 + htdocs/langs/pt_MZ/paypal.lang | 29 + htdocs/langs/pt_MZ/productbatch.lang | 40 + htdocs/langs/pt_MZ/projects.lang | 11 + htdocs/langs/pt_MZ/propal.lang | 8 + htdocs/langs/pt_MZ/receptions.lang | 5 + htdocs/langs/pt_MZ/recruitment.lang | 3 + htdocs/langs/pt_MZ/resource.lang | 18 + htdocs/langs/pt_MZ/salaries.lang | 17 + htdocs/langs/pt_MZ/sendings.lang | 6 + htdocs/langs/pt_MZ/sms.lang | 3 + htdocs/langs/pt_MZ/stocks.lang | 9 + htdocs/langs/pt_MZ/supplier_proposal.lang | 7 + htdocs/langs/pt_MZ/suppliers.lang | 5 + htdocs/langs/pt_MZ/ticket.lang | 6 + htdocs/langs/pt_MZ/trips.lang | 5 + htdocs/langs/pt_MZ/users.lang | 6 + htdocs/langs/pt_MZ/website.lang | 88 + htdocs/langs/pt_MZ/withdrawals.lang | 4 + htdocs/langs/pt_MZ/workflow.lang | 12 + htdocs/langs/pt_MZ/zapier.lang | 5 + htdocs/langs/pt_PT/holiday.lang | 10 + htdocs/langs/pt_PT/hrm.lang | 30 +- htdocs/langs/pt_PT/install.lang | 6 +- htdocs/langs/pt_PT/main.lang | 18 +- htdocs/langs/pt_PT/members.lang | 16 +- htdocs/langs/pt_PT/stocks.lang | 48 +- htdocs/langs/ro_RO/accountancy.lang | 10 +- htdocs/langs/ro_RO/admin.lang | 31 +- htdocs/langs/ro_RO/agenda.lang | 1 + htdocs/langs/ro_RO/boxes.lang | 3 +- htdocs/langs/ro_RO/cashdesk.lang | 7 + htdocs/langs/ro_RO/holiday.lang | 10 + htdocs/langs/ro_RO/hrm.lang | 9 +- htdocs/langs/ro_RO/install.lang | 6 +- htdocs/langs/ro_RO/languages.lang | 9 + htdocs/langs/ro_RO/mails.lang | 1 + htdocs/langs/ro_RO/main.lang | 3 + htdocs/langs/ro_RO/members.lang | 14 +- htdocs/langs/ro_RO/modulebuilder.lang | 3 + htdocs/langs/ro_RO/orders.lang | 1 + htdocs/langs/ro_RO/paypal.lang | 47 +- htdocs/langs/ro_RO/projects.lang | 3 +- htdocs/langs/ro_RO/stocks.lang | 48 +- htdocs/langs/ro_RO/suppliers.lang | 8 + htdocs/langs/ro_RO/ticket.lang | 4 +- htdocs/langs/ru_RU/accountancy.lang | 10 +- htdocs/langs/ru_RU/holiday.lang | 18 +- htdocs/langs/ru_RU/hrm.lang | 9 +- htdocs/langs/ru_RU/install.lang | 6 +- htdocs/langs/ru_RU/main.lang | 7 +- htdocs/langs/ru_RU/members.lang | 14 +- htdocs/langs/ru_RU/projects.lang | 3 +- htdocs/langs/ru_RU/stocks.lang | 43 + htdocs/langs/ru_RU/ticket.lang | 4 +- htdocs/langs/sk_SK/holiday.lang | 10 + htdocs/langs/sk_SK/install.lang | 6 +- htdocs/langs/sk_SK/members.lang | 16 +- htdocs/langs/sk_SK/stocks.lang | 48 +- htdocs/langs/sl_SI/holiday.lang | 10 + htdocs/langs/sl_SI/install.lang | 12 +- htdocs/langs/sl_SI/members.lang | 16 +- htdocs/langs/sl_SI/stocks.lang | 48 +- htdocs/langs/sr_RS/holiday.lang | 10 + htdocs/langs/sr_RS/hrm.lang | 30 +- htdocs/langs/sr_RS/install.lang | 12 +- htdocs/langs/sr_RS/members.lang | 16 +- htdocs/langs/sr_RS/stocks.lang | 48 +- htdocs/langs/sv_SE/holiday.lang | 10 + htdocs/langs/sv_SE/hrm.lang | 30 +- htdocs/langs/sv_SE/install.lang | 6 +- htdocs/langs/sv_SE/main.lang | 18 +- htdocs/langs/sv_SE/members.lang | 16 +- htdocs/langs/sv_SE/projects.lang | 3 +- htdocs/langs/sv_SE/stocks.lang | 48 +- htdocs/langs/ta_IN/accountancy.lang | 10 +- htdocs/langs/ta_IN/hrm.lang | 18 +- htdocs/langs/ta_IN/install.lang | 6 +- htdocs/langs/ta_IN/main.lang | 20 +- htdocs/langs/ta_IN/members.lang | 16 +- htdocs/langs/ta_IN/projects.lang | 3 +- htdocs/langs/tg_TJ/hrm.lang | 30 +- htdocs/langs/tg_TJ/install.lang | 6 +- htdocs/langs/tg_TJ/main.lang | 18 +- htdocs/langs/tg_TJ/members.lang | 16 +- htdocs/langs/tg_TJ/projects.lang | 3 +- htdocs/langs/th_TH/holiday.lang | 10 + htdocs/langs/th_TH/install.lang | 6 +- htdocs/langs/th_TH/members.lang | 16 +- htdocs/langs/th_TH/stocks.lang | 48 +- htdocs/langs/tr_TR/holiday.lang | 10 + htdocs/langs/tr_TR/hrm.lang | 30 +- htdocs/langs/tr_TR/install.lang | 6 +- htdocs/langs/tr_TR/main.lang | 18 +- htdocs/langs/tr_TR/members.lang | 16 +- htdocs/langs/tr_TR/stocks.lang | 48 +- htdocs/langs/uk_UA/accountancy.lang | 10 +- htdocs/langs/uk_UA/hrm.lang | 9 +- htdocs/langs/uk_UA/install.lang | 6 +- htdocs/langs/uk_UA/main.lang | 8 +- htdocs/langs/uk_UA/members.lang | 16 +- htdocs/langs/uk_UA/projects.lang | 3 +- htdocs/langs/uk_UA/ticket.lang | 6 +- htdocs/langs/ur_PK/accountancy.lang | 10 +- htdocs/langs/ur_PK/hrm.lang | 18 +- htdocs/langs/ur_PK/install.lang | 6 +- htdocs/langs/ur_PK/main.lang | 18 +- htdocs/langs/ur_PK/members.lang | 16 +- htdocs/langs/ur_PK/projects.lang | 3 +- htdocs/langs/uz_UZ/accountancy.lang | 10 +- htdocs/langs/uz_UZ/hrm.lang | 9 +- htdocs/langs/uz_UZ/install.lang | 6 +- htdocs/langs/uz_UZ/main.lang | 7 +- htdocs/langs/uz_UZ/members.lang | 14 +- htdocs/langs/uz_UZ/projects.lang | 3 +- htdocs/langs/uz_UZ/ticket.lang | 4 +- htdocs/langs/vi_VN/holiday.lang | 10 + htdocs/langs/vi_VN/hrm.lang | 30 +- htdocs/langs/vi_VN/install.lang | 6 +- htdocs/langs/vi_VN/main.lang | 26 +- htdocs/langs/vi_VN/members.lang | 16 +- htdocs/langs/vi_VN/projects.lang | 3 +- htdocs/langs/vi_VN/stocks.lang | 48 +- htdocs/langs/zh_CN/holiday.lang | 10 + htdocs/langs/zh_CN/hrm.lang | 30 +- htdocs/langs/zh_CN/install.lang | 6 +- htdocs/langs/zh_CN/main.lang | 18 +- htdocs/langs/zh_CN/members.lang | 16 +- htdocs/langs/zh_CN/stocks.lang | 48 +- htdocs/langs/zh_TW/accountancy.lang | 10 +- htdocs/langs/zh_TW/hrm.lang | 9 +- htdocs/langs/zh_TW/install.lang | 6 +- htdocs/langs/zh_TW/main.lang | 6 + htdocs/langs/zh_TW/members.lang | 16 +- htdocs/langs/zh_TW/projects.lang | 3 +- htdocs/langs/zh_TW/stocks.lang | 43 + htdocs/langs/zh_TW/ticket.lang | 6 +- htdocs/projet/tasks.php | 24 +- htdocs/projet/tasks/list.php | 7 +- htdocs/projet/tasks/task.php | 4 +- 668 files changed, 23498 insertions(+), 3350 deletions(-) create mode 100644 htdocs/langs/ar_IQ/projects.lang create mode 100644 htdocs/langs/el_CY/members.lang create mode 100644 htdocs/langs/el_CY/projects.lang create mode 100644 htdocs/langs/en_AE/members.lang create mode 100644 htdocs/langs/en_AE/projects.lang create mode 100644 htdocs/langs/en_AU/members.lang create mode 100644 htdocs/langs/en_AU/projects.lang create mode 100644 htdocs/langs/en_CA/members.lang create mode 100644 htdocs/langs/en_CA/projects.lang create mode 100644 htdocs/langs/en_GB/members.lang create mode 100644 htdocs/langs/en_GB/other.lang create mode 100644 htdocs/langs/en_GB/projects.lang create mode 100644 htdocs/langs/en_IN/members.lang create mode 100644 htdocs/langs/en_SG/members.lang create mode 100644 htdocs/langs/en_SG/projects.lang create mode 100644 htdocs/langs/en_ZA/members.lang create mode 100644 htdocs/langs/en_ZA/projects.lang create mode 100644 htdocs/langs/es_BO/members.lang create mode 100644 htdocs/langs/es_BO/projects.lang create mode 100644 htdocs/langs/es_DO/members.lang create mode 100644 htdocs/langs/es_DO/projects.lang create mode 100644 htdocs/langs/es_GT/members.lang create mode 100644 htdocs/langs/es_GT/projects.lang create mode 100644 htdocs/langs/es_HN/members.lang create mode 100644 htdocs/langs/es_HN/projects.lang create mode 100644 htdocs/langs/es_PA/members.lang create mode 100644 htdocs/langs/es_PA/projects.lang create mode 100644 htdocs/langs/es_PE/members.lang create mode 100644 htdocs/langs/es_PY/members.lang create mode 100644 htdocs/langs/es_PY/projects.lang create mode 100644 htdocs/langs/es_US/members.lang create mode 100644 htdocs/langs/es_US/projects.lang create mode 100644 htdocs/langs/es_UY/members.lang create mode 100644 htdocs/langs/es_UY/projects.lang create mode 100644 htdocs/langs/es_VE/projects.lang create mode 100644 htdocs/langs/ms_MY/accountancy.lang create mode 100644 htdocs/langs/ms_MY/admin.lang create mode 100644 htdocs/langs/ms_MY/agenda.lang create mode 100644 htdocs/langs/ms_MY/assets.lang create mode 100644 htdocs/langs/ms_MY/banks.lang create mode 100644 htdocs/langs/ms_MY/bills.lang create mode 100644 htdocs/langs/ms_MY/blockedlog.lang create mode 100644 htdocs/langs/ms_MY/bookmarks.lang create mode 100644 htdocs/langs/ms_MY/boxes.lang create mode 100644 htdocs/langs/ms_MY/cashdesk.lang create mode 100644 htdocs/langs/ms_MY/categories.lang create mode 100644 htdocs/langs/ms_MY/commercial.lang create mode 100644 htdocs/langs/ms_MY/companies.lang create mode 100644 htdocs/langs/ms_MY/compta.lang create mode 100644 htdocs/langs/ms_MY/contracts.lang create mode 100644 htdocs/langs/ms_MY/cron.lang create mode 100644 htdocs/langs/ms_MY/deliveries.lang create mode 100644 htdocs/langs/ms_MY/dict.lang create mode 100644 htdocs/langs/ms_MY/donations.lang create mode 100644 htdocs/langs/ms_MY/ecm.lang create mode 100644 htdocs/langs/ms_MY/errors.lang create mode 100644 htdocs/langs/ms_MY/eventorganization.lang create mode 100644 htdocs/langs/ms_MY/exports.lang create mode 100644 htdocs/langs/ms_MY/help.lang create mode 100644 htdocs/langs/ms_MY/holiday.lang create mode 100644 htdocs/langs/ms_MY/hrm.lang create mode 100644 htdocs/langs/ms_MY/install.lang create mode 100644 htdocs/langs/ms_MY/interventions.lang create mode 100644 htdocs/langs/ms_MY/intracommreport.lang create mode 100644 htdocs/langs/ms_MY/knowledgemanagement.lang create mode 100644 htdocs/langs/ms_MY/languages.lang create mode 100644 htdocs/langs/ms_MY/ldap.lang create mode 100644 htdocs/langs/ms_MY/link.lang create mode 100644 htdocs/langs/ms_MY/loan.lang create mode 100644 htdocs/langs/ms_MY/mailmanspip.lang create mode 100644 htdocs/langs/ms_MY/mails.lang create mode 100644 htdocs/langs/ms_MY/main.lang create mode 100644 htdocs/langs/ms_MY/margins.lang create mode 100644 htdocs/langs/ms_MY/members.lang create mode 100644 htdocs/langs/ms_MY/modulebuilder.lang create mode 100644 htdocs/langs/ms_MY/mrp.lang create mode 100644 htdocs/langs/ms_MY/multicurrency.lang create mode 100644 htdocs/langs/ms_MY/oauth.lang create mode 100644 htdocs/langs/ms_MY/opensurvey.lang create mode 100644 htdocs/langs/ms_MY/orders.lang create mode 100644 htdocs/langs/ms_MY/other.lang create mode 100644 htdocs/langs/ms_MY/partnership.lang create mode 100644 htdocs/langs/ms_MY/paybox.lang create mode 100644 htdocs/langs/ms_MY/paypal.lang create mode 100644 htdocs/langs/ms_MY/printing.lang create mode 100644 htdocs/langs/ms_MY/productbatch.lang create mode 100644 htdocs/langs/ms_MY/products.lang create mode 100644 htdocs/langs/ms_MY/projects.lang create mode 100644 htdocs/langs/ms_MY/propal.lang create mode 100644 htdocs/langs/ms_MY/receiptprinter.lang create mode 100644 htdocs/langs/ms_MY/receptions.lang create mode 100644 htdocs/langs/ms_MY/recruitment.lang create mode 100644 htdocs/langs/ms_MY/resource.lang create mode 100644 htdocs/langs/ms_MY/salaries.lang create mode 100644 htdocs/langs/ms_MY/sendings.lang create mode 100644 htdocs/langs/ms_MY/sms.lang create mode 100644 htdocs/langs/ms_MY/stocks.lang create mode 100644 htdocs/langs/ms_MY/stripe.lang create mode 100644 htdocs/langs/ms_MY/supplier_proposal.lang create mode 100644 htdocs/langs/ms_MY/suppliers.lang create mode 100644 htdocs/langs/ms_MY/ticket.lang create mode 100644 htdocs/langs/ms_MY/trips.lang create mode 100644 htdocs/langs/ms_MY/users.lang create mode 100644 htdocs/langs/ms_MY/website.lang create mode 100644 htdocs/langs/ms_MY/withdrawals.lang create mode 100644 htdocs/langs/ms_MY/workflow.lang create mode 100644 htdocs/langs/ms_MY/zapier.lang create mode 100644 htdocs/langs/pt_AO/projects.lang create mode 100644 htdocs/langs/pt_BR/intracommreport.lang create mode 100644 htdocs/langs/pt_MZ/accountancy.lang create mode 100644 htdocs/langs/pt_MZ/agenda.lang create mode 100644 htdocs/langs/pt_MZ/assets.lang create mode 100644 htdocs/langs/pt_MZ/banks.lang create mode 100644 htdocs/langs/pt_MZ/bills.lang create mode 100644 htdocs/langs/pt_MZ/blockedlog.lang create mode 100644 htdocs/langs/pt_MZ/bookmarks.lang create mode 100644 htdocs/langs/pt_MZ/boxes.lang create mode 100644 htdocs/langs/pt_MZ/cashdesk.lang create mode 100644 htdocs/langs/pt_MZ/categories.lang create mode 100644 htdocs/langs/pt_MZ/commercial.lang create mode 100644 htdocs/langs/pt_MZ/companies.lang create mode 100644 htdocs/langs/pt_MZ/compta.lang create mode 100644 htdocs/langs/pt_MZ/contracts.lang create mode 100644 htdocs/langs/pt_MZ/cron.lang create mode 100644 htdocs/langs/pt_MZ/deliveries.lang create mode 100644 htdocs/langs/pt_MZ/dict.lang create mode 100644 htdocs/langs/pt_MZ/donations.lang create mode 100644 htdocs/langs/pt_MZ/ecm.lang create mode 100644 htdocs/langs/pt_MZ/errors.lang create mode 100644 htdocs/langs/pt_MZ/eventorganization.lang create mode 100644 htdocs/langs/pt_MZ/help.lang create mode 100644 htdocs/langs/pt_MZ/holiday.lang create mode 100644 htdocs/langs/pt_MZ/hrm.lang create mode 100644 htdocs/langs/pt_MZ/interventions.lang create mode 100644 htdocs/langs/pt_MZ/languages.lang create mode 100644 htdocs/langs/pt_MZ/ldap.lang create mode 100644 htdocs/langs/pt_MZ/link.lang create mode 100644 htdocs/langs/pt_MZ/loan.lang create mode 100644 htdocs/langs/pt_MZ/mailmanspip.lang create mode 100644 htdocs/langs/pt_MZ/mails.lang create mode 100644 htdocs/langs/pt_MZ/margins.lang create mode 100644 htdocs/langs/pt_MZ/members.lang create mode 100644 htdocs/langs/pt_MZ/modulebuilder.lang create mode 100644 htdocs/langs/pt_MZ/mrp.lang create mode 100644 htdocs/langs/pt_MZ/multicurrency.lang create mode 100644 htdocs/langs/pt_MZ/oauth.lang create mode 100644 htdocs/langs/pt_MZ/opensurvey.lang create mode 100644 htdocs/langs/pt_MZ/orders.lang create mode 100644 htdocs/langs/pt_MZ/other.lang create mode 100644 htdocs/langs/pt_MZ/partnership.lang create mode 100644 htdocs/langs/pt_MZ/paybox.lang create mode 100644 htdocs/langs/pt_MZ/paypal.lang create mode 100644 htdocs/langs/pt_MZ/productbatch.lang create mode 100644 htdocs/langs/pt_MZ/projects.lang create mode 100644 htdocs/langs/pt_MZ/propal.lang create mode 100644 htdocs/langs/pt_MZ/receptions.lang create mode 100644 htdocs/langs/pt_MZ/recruitment.lang create mode 100644 htdocs/langs/pt_MZ/resource.lang create mode 100644 htdocs/langs/pt_MZ/salaries.lang create mode 100644 htdocs/langs/pt_MZ/sendings.lang create mode 100644 htdocs/langs/pt_MZ/sms.lang create mode 100644 htdocs/langs/pt_MZ/stocks.lang create mode 100644 htdocs/langs/pt_MZ/supplier_proposal.lang create mode 100644 htdocs/langs/pt_MZ/suppliers.lang create mode 100644 htdocs/langs/pt_MZ/ticket.lang create mode 100644 htdocs/langs/pt_MZ/trips.lang create mode 100644 htdocs/langs/pt_MZ/users.lang create mode 100644 htdocs/langs/pt_MZ/website.lang create mode 100644 htdocs/langs/pt_MZ/withdrawals.lang create mode 100644 htdocs/langs/pt_MZ/workflow.lang create mode 100644 htdocs/langs/pt_MZ/zapier.lang diff --git a/htdocs/compta/deplacement/class/deplacement.class.php b/htdocs/compta/deplacement/class/deplacement.class.php index 226c4bc350e..fa812a14c3d 100644 --- a/htdocs/compta/deplacement/class/deplacement.class.php +++ b/htdocs/compta/deplacement/class/deplacement.class.php @@ -100,6 +100,8 @@ class Deplacement extends CommonObject public $statuts = array(); public $statuts_short = array(); + public $statuts_logo = array(); + /** * Draft status @@ -127,6 +129,7 @@ class Deplacement extends CommonObject $this->statuts_short = array(0 => 'Draft', 1 => 'Validated', 2 => 'Refunded'); $this->statuts = array(0 => 'Draft', 1 => 'Validated', 2 => 'Refunded'); + $this->statuts_logo = array(0 => 'status0', 1=>'status4', 2 => 'status1', 4 => 'status6', 5 => 'status4', 6 => 'status6', 99 => 'status5'); } /** @@ -358,43 +361,12 @@ class Deplacement extends CommonObject // phpcs:enable global $langs; - if ($mode == 0) { - return $langs->trans($this->statuts[$status]); - } elseif ($mode == 1) { - return $langs->trans($this->statuts_short[$status]); - } elseif ($mode == 2) { - if ($status == 0) { - return img_picto($langs->trans($this->statuts_short[$status]), 'statut0').' '.$langs->trans($this->statuts_short[$status]); - } elseif ($status == 1) { - return img_picto($langs->trans($this->statuts_short[$status]), 'statut4').' '.$langs->trans($this->statuts_short[$status]); - } elseif ($status == 2) { - return img_picto($langs->trans($this->statuts_short[$status]), 'statut6').' '.$langs->trans($this->statuts_short[$status]); - } - } elseif ($mode == 3) { - if ($status == 0 && !empty($this->statuts_short[$status])) { - return img_picto($langs->trans($this->statuts_short[$status]), 'statut0'); - } elseif ($status == 1 && !empty($this->statuts_short[$status])) { - return img_picto($langs->trans($this->statuts_short[$status]), 'statut4'); - } elseif ($status == 2 && !empty($this->statuts_short[$status])) { - return img_picto($langs->trans($this->statuts_short[$status]), 'statut6'); - } - } elseif ($mode == 4) { - if ($status == 0 && !empty($this->statuts_short[$status])) { - return img_picto($langs->trans($this->statuts_short[$status]), 'statut0').' '.$langs->trans($this->statuts[$status]); - } elseif ($status == 1 && !empty($this->statuts_short[$status])) { - return img_picto($langs->trans($this->statuts_short[$status]), 'statut4').' '.$langs->trans($this->statuts[$status]); - } elseif ($status == 2 && !empty($this->statuts_short[$status])) { - return img_picto($langs->trans($this->statuts_short[$status]), 'statut6').' '.$langs->trans($this->statuts[$status]); - } - } elseif ($mode == 5) { - if ($status == 0 && !empty($this->statuts_short[$status])) { - return $langs->trans($this->statuts_short[$status]).' '.img_picto($langs->trans($this->statuts_short[$status]), 'statut0'); - } elseif ($status == 1 && !empty($this->statuts_short[$status])) { - return $langs->trans($this->statuts_short[$status]).' '.img_picto($langs->trans($this->statuts_short[$status]), 'statut4'); - } elseif ($status == 2 && !empty($this->statuts_short[$status])) { - return $langs->trans($this->statuts_short[$status]).' '.img_picto($langs->trans($this->statuts_short[$status]), 'statut6'); - } - } + $labelStatus = $langs->transnoentitiesnoconv($this->statuts[$status]); + $labelStatusShort = $langs->transnoentitiesnoconv($this->statuts_short[$status]); + + $statusType = $this->statuts_logo[$status]; + + return dolGetStatus($labelStatus, $labelStatusShort, '', $statusType, $mode); } /** diff --git a/htdocs/core/lib/functions.lib.php b/htdocs/core/lib/functions.lib.php index 8a9196c9729..2db4f20ca8d 100644 --- a/htdocs/core/lib/functions.lib.php +++ b/htdocs/core/lib/functions.lib.php @@ -4987,7 +4987,7 @@ function dol_print_error_email($prefixcode, $errormessage = '', $errormessages = * @param string $field Field to use for new sorting * @param string $begin ("" by defaut) * @param string $moreparam Add more parameters on sort url links ("" by default) - * @param string $moreattrib Options of attribute td ("" by defaut, example: 'align="center"') + * @param string $moreattrib Options of attribute td ("" by defaut) * @param string $sortfield Current field used to sort * @param string $sortorder Current sort order * @param string $prefix Prefix for css. Use space after prefix to add your own CSS tag. @@ -5009,7 +5009,7 @@ function print_liste_field_titre($name, $file = "", $field = "", $begin = "", $m * @param string $field Field to use for new sorting. Empty if this field is not sortable. Example "t.abc" or "t.abc,t.def" * @param string $begin ("" by defaut) * @param string $moreparam Add more parameters on sort url links ("" by default) - * @param string $moreattrib Add more attributes on th ("" by defaut, example: 'align="center"'). To add more css class, use param $prefix. + * @param string $moreattrib Add more attributes on th ("" by defaut). To add more css class, use param $prefix. * @param string $sortfield Current field used to sort (Ex: 'd.datep,d.id') * @param string $sortorder Current sort order (Ex: 'asc,desc') * @param string $prefix Prefix for css. Use space after prefix to add your own CSS tag, for example 'mycss '. diff --git a/htdocs/core/lib/project.lib.php b/htdocs/core/lib/project.lib.php index 273922ff615..776d0f0776f 100644 --- a/htdocs/core/lib/project.lib.php +++ b/htdocs/core/lib/project.lib.php @@ -824,10 +824,13 @@ function projectLinesa(&$inc, $parent, &$lines, &$level, $var, $showproject, &$t } } + // Budget task if (count($arrayfields) > 0 && !empty($arrayfields['t.budget_amount']['checked'])) { print ''; - print price($lines[$i]->budget_amount, 0, $langs, 1, 0, 0, $conf->currency); - $total_budget_amount += $lines[$i]->budget_amount; + if ($lines[$i]->budget_amount) { + print ''.price($lines[$i]->budget_amount, 0, $langs, 1, 0, 0, $conf->currency).''; + $total_budget_amount += $lines[$i]->budget_amount; + } print ''; } @@ -982,7 +985,7 @@ function projectLinesa(&$inc, $parent, &$lines, &$level, $var, $showproject, &$t } - // resume + // Progress if (count($arrayfields) > 0 && !empty($arrayfields['t.progress_summary']['checked'])) { print ''; if ($total_projectlinesa_planned) { @@ -1008,9 +1011,12 @@ function projectLinesa(&$inc, $parent, &$lines, &$level, $var, $showproject, &$t } } + // Budget task if (count($arrayfields) > 0 && !empty($arrayfields['t.budget_amount']['checked'])) { print ''; - print price($total_budget_amount, 0, $langs, 1, 0, 0, $conf->currency); + if (strcmp($total_budget_amount, '')) { + print price($total_budget_amount, 0, $langs, 1, 0, 0, $conf->currency); + } print ''; } diff --git a/htdocs/expensereport/class/expensereport.class.php b/htdocs/expensereport/class/expensereport.class.php index da93c26ceaa..ca8f1698767 100644 --- a/htdocs/expensereport/class/expensereport.class.php +++ b/htdocs/expensereport/class/expensereport.class.php @@ -129,6 +129,10 @@ class ExpenseReport extends CommonObject public $localtax1; // for backward compatibility (real field should be total_localtax1 defined into CommonObject) public $localtax2; // for backward compatibility (real field should be total_localtax2 defined into CommonObject) + public $statuts = array(); + public $statuts_short = array(); + public $statuts_logo; + /** * Draft status diff --git a/htdocs/langs/ar_IQ/projects.lang b/htdocs/langs/ar_IQ/projects.lang new file mode 100644 index 00000000000..f5f817beac1 --- /dev/null +++ b/htdocs/langs/ar_IQ/projects.lang @@ -0,0 +1,2 @@ +# Dolibarr language file - Source file is en_US - projects +ServiceToUseOnLines=Service to use on lines by default diff --git a/htdocs/langs/ar_SA/holiday.lang b/htdocs/langs/ar_SA/holiday.lang index accadd28e1b..23b596c9a54 100644 --- a/htdocs/langs/ar_SA/holiday.lang +++ b/htdocs/langs/ar_SA/holiday.lang @@ -4,6 +4,7 @@ Holidays=الاجازات CPTitreMenu=الاجازات MenuReportMonth=البيان الشهري MenuAddCP=طلب إجازة جديدة +MenuCollectiveAddCP=New collective leave request NotActiveModCP=You must enable the module Leave to view this page. AddCP=تقديم طلب إجازة DateDebCP=تاريخ البدء @@ -79,6 +80,8 @@ MotifCP=سبب UserCP=مستخدم ErrorAddEventToUserCP=حدث خطأ أثناء إضافة إجازة استثنائية. AddEventToUserOkCP=تم الانتهاء من إضافة إجازة استثنائية. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=وبالنظر إلى سجلات التغيير LogCP=Log of all updates made to "Balance of Leave" ActionByCP=Updated by @@ -86,6 +89,13 @@ UserUpdateCP=Updated for PrevSoldeCP=الرصيد السابق NewSoldeCP=توازن جديد alreadyCPexist=وقد تم بالفعل طلب إجازة في هذه الفترة. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=المجموعات +users=المستخدمين +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Beginning day of leave request LastDayOfHoliday=Ending day of leave request BoxTitleLastLeaveRequests=Latest %s modified leave requests diff --git a/htdocs/langs/ar_SA/hrm.lang b/htdocs/langs/ar_SA/hrm.lang index abe66f93b30..045d3740497 100644 --- a/htdocs/langs/ar_SA/hrm.lang +++ b/htdocs/langs/ar_SA/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=فتح المؤسسة CloseEtablishment=إغلاق المؤسسة # Dictionary DictionaryPublicHolidays=الإجازات - الإجازات عامة -DictionaryDepartment=إدارة الموارد البشرية - قائمة القسم +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=إدارة الموارد البشرية - المسميات الوظيفية # Module Employees=الموظفين @@ -20,13 +20,14 @@ Employee=الموظف NewEmployee=موظف جديد ListOfEmployees=قائمة الموظفين HrmSetup=HRM وحدة الإعداد -HRM_MAXRANK=Maximum rank for a skill +SkillsManagement=Skills management +HRM_MAXRANK=Maximum number of levels to rank a skill HRM_DEFAULT_SKILL_DESCRIPTION=Default description of ranks when skill is created deplacement=Shift DateEval=Evaluation date JobCard=Job card -Job=وظيفة -Jobs=Jobs +JobPosition=وظيفة +JobsPosition=Jobs NewSkill=New Skill SkillType=Skill type Skilldets=List of ranks for this skill @@ -47,9 +48,8 @@ ConfirmValidateEvaluation=Are you sure you want to validate this evaluation with EvaluationCard=Evaluation card RequiredRank=Required rank for this job EmployeeRank=Employee rank for this skill -Position=المنصب -Positions=Positions -PositionCard=Position card +EmployeePosition=Employee position +EmployeePositions=Employee positions EmployeesInThisPosition=Employees in this position group1ToCompare=Usergroup to analyze group2ToCompare=Second usergroup for comparison @@ -70,12 +70,22 @@ RequiredSkills=Required skills for this job UserRank=User Rank SkillList=Skill list SaveRank=Save rank -knowHow=Know how -HowToBe=How to be -knowledge=Knowledge +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=Abandonment comment DateLastEval=Date last evaluation NoEval=No evaluation done for this employee HowManyUserWithThisMaxNote=Number of users with this rank HighestRank=Highest rank SkillComparison=Skill comparison +ActionsOnJob=Events on this job +VacantPosition=job vacancy +VacantCheckboxHelper=Checking this option will show unfilled positions (job vacancy) +SaveAddSkill = Skill(s) added +SaveLevelSkill = Skill(s) level saved +DeleteSkill = Skill removed +SkillsExtraFields=Attributs supplémentaires (Compétences) +JobsExtraFields=Attributs supplémentaires (Emplois) +EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/ar_SA/install.lang b/htdocs/langs/ar_SA/install.lang index d4fd487c0a1..d89a4c6c5a5 100644 --- a/htdocs/langs/ar_SA/install.lang +++ b/htdocs/langs/ar_SA/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=Configuration file %s is not writable. Check permis ConfFileIsWritable=ملف الإعداد %s قابل للكتابة. ConfFileMustBeAFileNotADir=Configuration file %s must be a file, not a directory. ConfFileReload=Reloading parameters from configuration file. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=يدعم هذا الـ PHP وظائف POST و GET. PHPSupportPOSTGETKo=It's possible your PHP setup does not support variables POST and/or GET. Check the parameter variables_order in php.ini. PHPSupportSessions=يدعم هذا الـ PHP ميزة الجلسات الزمنية. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=قد تكون لديكم مطبوعة خاطئة ق ErrorFailedToCreateDatabase=فشل إنشاء قاعدة بيانات '٪ ق. ErrorFailedToConnectToDatabase=فشل في الاتصال بقاعدة البيانات '٪ ق. ErrorDatabaseVersionTooLow=إصدار قاعدة البيانات (s%) قديمة جدا. مطلوب نسخة s% أو أعلى -ErrorPHPVersionTooLow=PHP نسخة قديمة جدا. النسخة ٪ ق هو مطلوب. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Connection to server successful but database '%s' not found. ErrorDatabaseAlreadyExists=قاعدة البيانات '٪ ق' موجود بالفعل. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=If the database does not exist, go back and check option "Create database". IfDatabaseExistsGoBackAndCheckCreate=إذا كانت قاعدة البيانات موجود بالفعل ، من العودة وإلغاء "إنشاء قاعدة بيانات" الخيار. WarningBrowserTooOld=Version of browser is too old. Upgrading your browser to a recent version of Firefox, Chrome or Opera is highly recommended. diff --git a/htdocs/langs/ar_SA/main.lang b/htdocs/langs/ar_SA/main.lang index 274db74a867..b294e248133 100644 --- a/htdocs/langs/ar_SA/main.lang +++ b/htdocs/langs/ar_SA/main.lang @@ -244,6 +244,7 @@ Designation=الوصف DescriptionOfLine=وصف البند DateOfLine=تاريخ البند DurationOfLine=مدة البند +ParentLine=Parent line ID Model=قالب المستند DefaultModel=قالب المستند الافتراضي Action=حدث @@ -344,7 +345,7 @@ KiloBytes=كيلو بايت MegaBytes=ميغابايت GigaBytes=غيغا بايت TeraBytes=تيرابايت -UserAuthor=Ceated by +UserAuthor=تم الإنشاء بواسطة UserModif=Updated by b=بايت Kb=كيلوبايت @@ -517,6 +518,7 @@ or=أو Other=آخر Others=آخرون OtherInformations=معلومات أخرى +Workflow=سير العمل Quantity=كمية Qty=الكمية ChangedBy=تغيير من قبل @@ -619,6 +621,7 @@ MonthVeryShort11=11 MonthVeryShort12=12 AttachedFiles=الملفات والمستندات المرفقة JoinMainDoc=ضم إلى المستند الرئيسي +JoinMainDocOrLastGenerated=Send the main document or the last generated one if not found DateFormatYYYYMM=YYYY-MM DateFormatYYYYMMDD=YYYY-MM-DD DateFormatYYYYMMDDHHMM=YYYY-MM-DD HH: SS @@ -709,6 +712,7 @@ FeatureDisabled=ميزة معطلة MoveBox=نقل البريمج Offered=معروض NotEnoughPermissions=ليس لديك إذن بهذا الإجراء +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=اسم الجلسة Method=الطريقة Receive=استقبال @@ -798,6 +802,7 @@ URLPhoto=عنوان URL للصورة | الشعار SetLinkToAnotherThirdParty=ربط بطرف ثالث آخر LinkTo=ربط مع او بـ LinkToProposal=ربط مع العرض +LinkToExpedition= Link to expedition LinkToOrder=ربط مع الامر LinkToInvoice=ربط مع الفاتورة LinkToTemplateInvoice=ربط مع قالب الفاتورة @@ -1164,3 +1169,14 @@ NotClosedYet=Not yet closed ClearSignature=Reset signature CanceledHidden=Canceled hidden CanceledShown=Canceled shown +Terminate=تعطيل +Terminated=Terminated +AddLineOnPosition=Add line on position (at the end if empty) +ConfirmAllocateCommercial=Assign sales representative confirmation +ConfirmAllocateCommercialQuestion=Are you sure you want to assign the %s selected record(s)? +CommercialsAffected=Sales representatives affected +CommercialAffected=Sales representative affected +YourMessage=Your message +YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. +UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/ar_SA/members.lang b/htdocs/langs/ar_SA/members.lang index 0470a41fd96..0d94e92eb9c 100644 --- a/htdocs/langs/ar_SA/members.lang +++ b/htdocs/langs/ar_SA/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=End date of membership EndSubscription=End of membership SubscriptionId=Contribution ID WithoutSubscription=Without contribution -MemberId=عضو المعرف +MemberId=Member Id +MemberRef=Member Ref NewMember=عضو جديد MemberType=عضو نوع MemberTypeId=عضو نوع معرف @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Member type can not be deleted NewSubscription=مساهمة جديدة NewSubscriptionDesc=هذا النموذج يسمح لك لتسجيل الاشتراك الخاص بك كعضو جديد من الأساس. إذا كنت ترغب في تجديد الاشتراك (إذا كان بالفعل عضوا)، يرجى الاتصال مؤسسة المجلس بدلا من %s البريد الإلكتروني. Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=مدة +GetMembershipButtonLabel=Get membership Subscriptions=Contributions SubscriptionLate=متأخر SubscriptionNotReceived=Contribution never received @@ -135,7 +142,7 @@ CardContent=مضمون البطاقة الخاصة بك عضوا # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=We want to let you know that your membership request was received.

ThisIsContentOfYourMembershipWasValidated=We want to let you know that your membership was validated with the following information:

-ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=We want to let you know that your subscription is about to expire or has already expired (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). We hope you will renew it.

ThisIsContentOfYourCard=This is a summary of the information we have about you. Please contact us if anything is incorrect.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Subject of the notification email received in case of auto-inscription of a guest @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=دوران (لشركة) أو الميزانية (على أساس) DefaultAmount=Default amount of contribution -CanEditAmount=Visitor can choose/edit amount of its contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=القفز على صفحة الدفع عبر الانترنت المتكاملة ByProperties=By nature MembersStatisticsByProperties=Members statistics by nature @@ -218,3 +226,5 @@ XExternalUserCreated=%s external user(s) created ForceMemberNature=Force member nature (Individual or Corporation) CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/ar_SA/stocks.lang b/htdocs/langs/ar_SA/stocks.lang index 5d2fbc0d6c9..18ba99173fc 100644 --- a/htdocs/langs/ar_SA/stocks.lang +++ b/htdocs/langs/ar_SA/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Stock limit for alert and desired optimal stock cor ProductStockWarehouseUpdated=Stock limit for alert and desired optimal stock correctly updated ProductStockWarehouseDeleted=Stock limit for alert and desired optimal stock correctly deleted AddNewProductStockWarehouse=Set new limit for alert and desired optimal stock -AddStockLocationLine=Decrease quantity then click to add another warehouse for this product +AddStockLocationLine=Decrease quantity then click to split the line InventoryDate=Inventory date Inventories=Inventories NewInventory=New inventory @@ -254,7 +254,7 @@ ReOpen=إعادة فتح ConfirmFinish=Do you confirm the closing of the inventory ? This will generate all stock movements to update your stock to the real qty you entered into the inventory. ObjectNotFound=%s not found MakeMovementsAndClose=Generate movements and close -AutofillWithExpected=Replace real quantity with expected quantity +AutofillWithExpected=Fill real quantity with expected quantity ShowAllBatchByDefault=By default, show batch details on product "stock" tab CollapseBatchDetailHelp=You can set batch detail default display in stocks module configuration ErrorWrongBarcodemode=Unknown Barcode mode @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Product with barcode does not exist WarehouseId=Warehouse ID WarehouseRef=Warehouse Ref SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ToStart=يبدأ InventoryStartedShort=بدأ ErrorOnElementsInventory=Operation canceled for the following reason: ErrorCantFindCodeInInventory=Can't find the following code in inventory QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requested barcode. You can close the Scanner tool. StockChangeDisabled=Change on stock disabled NoWarehouseDefinedForTerminal=No warehouse defined for terminal +ClearQtys=Clear all quantities +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=الإعدادات +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/bg_BG/holiday.lang b/htdocs/langs/bg_BG/holiday.lang index 1262acd3b8a..6ff05bbae9f 100644 --- a/htdocs/langs/bg_BG/holiday.lang +++ b/htdocs/langs/bg_BG/holiday.lang @@ -4,6 +4,7 @@ Holidays=Отпуски CPTitreMenu=Отпуски MenuReportMonth=Месечно извлечение MenuAddCP=Нова молба за отпуск +MenuCollectiveAddCP=New collective leave request NotActiveModCP=Необходимо е да активирате модула 'Отпуски', за да видите тази страница. AddCP=Кандидатстване за отпуск DateDebCP=Начална дата @@ -79,6 +80,8 @@ MotifCP=Причина UserCP=Потребител ErrorAddEventToUserCP=Възникна грешка при добавяне на извънреден отпуск. AddEventToUserOkCP=Добавянето на извънредния отпуск е завършено. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=История на промените LogCP=Log of all updates made to "Balance of Leave" ActionByCP=Updated by @@ -86,6 +89,13 @@ UserUpdateCP=Updated for PrevSoldeCP=Предишен баланс NewSoldeCP=Нов баланс alreadyCPexist=Вече е създадена молба за отпуск в този период. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Групи +users=Потребители +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Beginning day of leave request LastDayOfHoliday=Ending day of leave request BoxTitleLastLeaveRequests=Молби за отпуск: %s последно променени diff --git a/htdocs/langs/bg_BG/hrm.lang b/htdocs/langs/bg_BG/hrm.lang index 48d26235d01..8848dbbfafd 100644 --- a/htdocs/langs/bg_BG/hrm.lang +++ b/htdocs/langs/bg_BG/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Отваряне на обект CloseEtablishment=Затваряне на обект # Dictionary DictionaryPublicHolidays=Leave - Public holidays -DictionaryDepartment=ЧР - Списък с отдели +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=ЧР - Длъжности # Module Employees=Служители @@ -20,13 +20,14 @@ Employee=Служител NewEmployee=Нов служител ListOfEmployees=Списък на служителите HrmSetup=Настройка на модула ЧР -HRM_MAXRANK=Maximum rank for a skill +SkillsManagement=Skills management +HRM_MAXRANK=Maximum number of levels to rank a skill HRM_DEFAULT_SKILL_DESCRIPTION=Default description of ranks when skill is created deplacement=Shift DateEval=Evaluation date JobCard=Job card -Job=Задача -Jobs=Jobs +JobPosition=Задача +JobsPosition=Jobs NewSkill=New Skill SkillType=Skill type Skilldets=List of ranks for this skill @@ -47,9 +48,8 @@ ConfirmValidateEvaluation=Are you sure you want to validate this evaluation with EvaluationCard=Evaluation card RequiredRank=Required rank for this job EmployeeRank=Employee rank for this skill -Position=Позиция -Positions=Positions -PositionCard=Position card +EmployeePosition=Employee position +EmployeePositions=Employee positions EmployeesInThisPosition=Employees in this position group1ToCompare=Usergroup to analyze group2ToCompare=Second usergroup for comparison @@ -70,12 +70,22 @@ RequiredSkills=Required skills for this job UserRank=User Rank SkillList=Skill list SaveRank=Save rank -knowHow=Know how -HowToBe=How to be -knowledge=Knowledge +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=Abandonment comment DateLastEval=Date last evaluation NoEval=No evaluation done for this employee HowManyUserWithThisMaxNote=Number of users with this rank HighestRank=Highest rank SkillComparison=Skill comparison +ActionsOnJob=Events on this job +VacantPosition=job vacancy +VacantCheckboxHelper=Checking this option will show unfilled positions (job vacancy) +SaveAddSkill = Skill(s) added +SaveLevelSkill = Skill(s) level saved +DeleteSkill = Skill removed +SkillsExtraFields=Attributs supplémentaires (Compétences) +JobsExtraFields=Attributs supplémentaires (Emplois) +EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/bg_BG/install.lang b/htdocs/langs/bg_BG/install.lang index aa4b3c754b7..d058e9ff73f 100644 --- a/htdocs/langs/bg_BG/install.lang +++ b/htdocs/langs/bg_BG/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=Конфигурационният файл %s н ConfFileIsWritable=Конфигурационният файл %s е презаписваем. ConfFileMustBeAFileNotADir=Конфигурационният файл %s трябва да е файл, а не директория. ConfFileReload=Презареждане на параметри от конфигурационен файл. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=PHP поддържа променливи POST и GET. PHPSupportPOSTGETKo=Възможно е вашата настройка на PHP да не поддържа променливи POST и/или GET. Проверете параметъра variables_order в php.ini. PHPSupportSessions=PHP поддържа сесии. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Може да сте въвели грешна ст ErrorFailedToCreateDatabase=Неуспешно създаване на база данни '%s'. ErrorFailedToConnectToDatabase=Неуспешно свързване към базата данни '%s' ErrorDatabaseVersionTooLow=Версията на базата данни (%s) е твърде стара. Изисква се версия %s или по-нова. -ErrorPHPVersionTooLow=Версията на PHP е твърде стара. Изисква се версия %s. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Връзката със сървъра е успешна, но не е намерена база данни '%s'. ErrorDatabaseAlreadyExists=База данни '%s' вече съществува. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=Ако базата данни не съществува, върнете се и проверете опцията "Създаване на база данни". IfDatabaseExistsGoBackAndCheckCreate=Ако базата данни вече съществува, върнете се обратно и махнете отметката на "Създаване на база данни". WarningBrowserTooOld=Версията на браузъра е твърде стара. Препоръчва се надграждане на браузъра ви до текуща версия на Firefox, Chrome или Opera. diff --git a/htdocs/langs/bg_BG/main.lang b/htdocs/langs/bg_BG/main.lang index 1cfcc08a9e9..78822836149 100644 --- a/htdocs/langs/bg_BG/main.lang +++ b/htdocs/langs/bg_BG/main.lang @@ -244,6 +244,7 @@ Designation=Описание DescriptionOfLine=Описание на реда DateOfLine=Дата на реда DurationOfLine=Продължителност на реда +ParentLine=Parent line ID Model=Шаблон за документ DefaultModel=Шаблон на документ по подразбиране Action=Събитие @@ -344,7 +345,7 @@ KiloBytes=Килобайта MegaBytes=Мегабайта GigaBytes=Гигабайта TeraBytes=Терабайта -UserAuthor=Ceated by +UserAuthor=Създаден от UserModif=Updated by b=б. Kb=Кб @@ -517,6 +518,7 @@ or=или Other=Друг Others=Други OtherInformations=Друга информация +Workflow=Работен процес Quantity=Количество Qty=Кол. ChangedBy=Променено от @@ -619,6 +621,7 @@ MonthVeryShort11=Н MonthVeryShort12=Д AttachedFiles=Прикачени файлове и документи JoinMainDoc=Присъединете към основния документ +JoinMainDocOrLastGenerated=Send the main document or the last generated one if not found DateFormatYYYYMM=YYYY-MM DateFormatYYYYMMDD=YYYY-MM-DD DateFormatYYYYMMDDHHMM=YYYY-MM-DD HH:SS @@ -709,6 +712,7 @@ FeatureDisabled=Функцията е изключена MoveBox=Преместване на джаджа Offered=100% NotEnoughPermissions=Вие нямате разрешение за това действие +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=Име на сесия Method=Метод Receive=Получаване @@ -798,6 +802,7 @@ URLPhoto=URL адрес на снимка / лого SetLinkToAnotherThirdParty=Връзка към друг контрагент LinkTo=Връзка към LinkToProposal=Връзка към предложение +LinkToExpedition= Link to expedition LinkToOrder=Връзка към поръчка LinkToInvoice=Връзка към фактура LinkToTemplateInvoice=Връзка към шаблонна фактура @@ -1164,3 +1169,14 @@ NotClosedYet=Not yet closed ClearSignature=Reset signature CanceledHidden=Canceled hidden CanceledShown=Canceled shown +Terminate=Прекратяване +Terminated=Деактивиран +AddLineOnPosition=Add line on position (at the end if empty) +ConfirmAllocateCommercial=Assign sales representative confirmation +ConfirmAllocateCommercialQuestion=Are you sure you want to assign the %s selected record(s)? +CommercialsAffected=Sales representatives affected +CommercialAffected=Sales representative affected +YourMessage=Your message +YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. +UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/bg_BG/members.lang b/htdocs/langs/bg_BG/members.lang index 0be073a7051..6d1d7ef8651 100644 --- a/htdocs/langs/bg_BG/members.lang +++ b/htdocs/langs/bg_BG/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=End date of membership EndSubscription=End of membership SubscriptionId=Contribution ID WithoutSubscription=Without contribution -MemberId=Идентификатор на член +MemberId=Member Id +MemberRef=Member Ref NewMember=Нов член MemberType=Тип член MemberTypeId=Идентификатор за тип на член @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Типът член не може да бъде изт NewSubscription=Нова вноска NewSubscriptionDesc=Този формуляр позволява да регистрирате вашия абонамент като за нов член на организацията. Ако искате да подновите вашият абонамент (ако вече сте член), моля свържете се вместо това с ръководството на организация, чрез имейл %s. Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Продължителност +GetMembershipButtonLabel=Get membership Subscriptions=Contributions SubscriptionLate=Закъснял SubscriptionNotReceived=Contribution never received @@ -135,7 +142,7 @@ CardContent=Съдържание на вашата членска карта # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=Искаме да ви уведомим, че вашата молба за членство е получена.

ThisIsContentOfYourMembershipWasValidated=Искаме да ви уведомим, че вашето членство е валидирано със следната информация:

-ThisIsContentOfYourSubscriptionWasRecorded=Искаме да ви уведомим, че вашият нов абонамент е регистриран.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=Искаме да ви уведомим, че вашият абонамент ще изтече или вече е изтекъл (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Надяваме се, че ще го подновите.

ThisIsContentOfYourCard=Това е обобщение на информацията, която имаме за вас. Моля, свържете се с нас, ако има нещо некоректно.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Тема на известяващ имейл, получен в случай на автоматично вписване на гост @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=Оборот (за фирма) или бюджет (за организация) DefaultAmount=Default amount of contribution -CanEditAmount=Visitor can choose/edit amount of its contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Прехвърляне към интегрираната страница за плащане онлайн ByProperties=По произход MembersStatisticsByProperties=Статистика за членове по произход @@ -218,3 +226,5 @@ XExternalUserCreated=%s external user(s) created ForceMemberNature=Force member nature (Individual or Corporation) CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/bg_BG/projects.lang b/htdocs/langs/bg_BG/projects.lang index c8da54cf865..1bdb1e36483 100644 --- a/htdocs/langs/bg_BG/projects.lang +++ b/htdocs/langs/bg_BG/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=Фактурирано отделено време TimeSpentForIntervention=Отделено време TimeSpentForInvoice=Отделено време OneLinePerUser=Един ред на потребител -ServiceToUseOnLines=Услуга за използване по редовете +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=Фактура %s е генерирана въз основа на отделеното време по проекта InterventionGeneratedFromTimeSpent=Intervention %s has been generated from time spent on project ProjectBillTimeDescription=Маркирайте, ако въвеждате график на задачите в проекта и планирате да генерирате фактура(и) за клиента от графика на задачите в проекта (не маркирайте, ако планирате да създадете фактура, която не се основава на въведеният график на задачите). Забележка: За да генерирате фактура, отидете в раздела "Отделено време" на проекта и изберете редовете, които да включите. @@ -294,3 +294,4 @@ EnablePublicLeadForm=Enable the public form for contact NewLeadbyWeb=Your message or request has been recorded. We will answer or contact your soon. NewLeadForm=New contact form LeadFromPublicForm=Online lead from public form +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/bg_BG/stocks.lang b/htdocs/langs/bg_BG/stocks.lang index fff80ee9a68..d26b4f76633 100644 --- a/htdocs/langs/bg_BG/stocks.lang +++ b/htdocs/langs/bg_BG/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Минималното количество за п ProductStockWarehouseUpdated=Минималното количество за предупреждение и желаните оптимални наличности са правилно актуализирани ProductStockWarehouseDeleted=Минималното количество за предупреждение и желаните оптимални наличности са правилно изтрити AddNewProductStockWarehouse=Определяне на ново минимално количество за предупреждение и желана оптимална наличност -AddStockLocationLine=Намалете количеството, след което кликнете, за да добавите друг склад за този продукт +AddStockLocationLine=Decrease quantity then click to split the line InventoryDate=Дата на инвентаризация Inventories=Инвентаризации NewInventory=Нова инвентаризация @@ -254,7 +254,7 @@ ReOpen=Повторно отваряне ConfirmFinish=Do you confirm the closing of the inventory ? This will generate all stock movements to update your stock to the real qty you entered into the inventory. ObjectNotFound=%s not found MakeMovementsAndClose=Generate movements and close -AutofillWithExpected=Replace real quantity with expected quantity +AutofillWithExpected=Fill real quantity with expected quantity ShowAllBatchByDefault=By default, show batch details on product "stock" tab CollapseBatchDetailHelp=You can set batch detail default display in stocks module configuration ErrorWrongBarcodemode=Unknown Barcode mode @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Product with barcode does not exist WarehouseId=Warehouse ID WarehouseRef=Warehouse Ref SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ToStart=Начало InventoryStartedShort=Започнати ErrorOnElementsInventory=Operation canceled for the following reason: ErrorCantFindCodeInInventory=Can't find the following code in inventory QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requested barcode. You can close the Scanner tool. StockChangeDisabled=Change on stock disabled NoWarehouseDefinedForTerminal=No warehouse defined for terminal +ClearQtys=Clear all quantities +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=Настройки +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/bn_BD/install.lang b/htdocs/langs/bn_BD/install.lang index 9d76ad15d43..6aee82bacec 100644 --- a/htdocs/langs/bn_BD/install.lang +++ b/htdocs/langs/bn_BD/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=Configuration file %s is not writable. Check permis ConfFileIsWritable=Configuration file %s is writable. ConfFileMustBeAFileNotADir=Configuration file %s must be a file, not a directory. ConfFileReload=Reloading parameters from configuration file. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=This PHP supports variables POST and GET. PHPSupportPOSTGETKo=It's possible your PHP setup does not support variables POST and/or GET. Check the parameter variables_order in php.ini. PHPSupportSessions=This PHP supports sessions. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=You may have typed a wrong value for parameter '%s'. ErrorFailedToCreateDatabase=Failed to create database '%s'. ErrorFailedToConnectToDatabase=Failed to connect to database '%s'. ErrorDatabaseVersionTooLow=Database version (%s) too old. Version %s or higher is required. -ErrorPHPVersionTooLow=PHP version too old. Version %s is required. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Connection to server successful but database '%s' not found. ErrorDatabaseAlreadyExists=Database '%s' already exists. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=If the database does not exist, go back and check option "Create database". IfDatabaseExistsGoBackAndCheckCreate=If database already exists, go back and uncheck "Create database" option. WarningBrowserTooOld=Version of browser is too old. Upgrading your browser to a recent version of Firefox, Chrome or Opera is highly recommended. diff --git a/htdocs/langs/bn_BD/stocks.lang b/htdocs/langs/bn_BD/stocks.lang index 599c9649b18..7137edcf576 100644 --- a/htdocs/langs/bn_BD/stocks.lang +++ b/htdocs/langs/bn_BD/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Stock limit for alert and desired optimal stock cor ProductStockWarehouseUpdated=Stock limit for alert and desired optimal stock correctly updated ProductStockWarehouseDeleted=Stock limit for alert and desired optimal stock correctly deleted AddNewProductStockWarehouse=Set new limit for alert and desired optimal stock -AddStockLocationLine=Decrease quantity then click to add another warehouse for this product +AddStockLocationLine=Decrease quantity then click to split the line InventoryDate=Inventory date Inventories=Inventories NewInventory=New inventory @@ -254,7 +254,7 @@ ReOpen=Reopen ConfirmFinish=Do you confirm the closing of the inventory ? This will generate all stock movements to update your stock to the real qty you entered into the inventory. ObjectNotFound=%s not found MakeMovementsAndClose=Generate movements and close -AutofillWithExpected=Replace real quantity with expected quantity +AutofillWithExpected=Fill real quantity with expected quantity ShowAllBatchByDefault=By default, show batch details on product "stock" tab CollapseBatchDetailHelp=You can set batch detail default display in stocks module configuration ErrorWrongBarcodemode=Unknown Barcode mode @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Product with barcode does not exist WarehouseId=Warehouse ID WarehouseRef=Warehouse Ref SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ToStart=Start InventoryStartedShort=Started ErrorOnElementsInventory=Operation canceled for the following reason: ErrorCantFindCodeInInventory=Can't find the following code in inventory QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requested barcode. You can close the Scanner tool. StockChangeDisabled=Change on stock disabled NoWarehouseDefinedForTerminal=No warehouse defined for terminal +ClearQtys=Clear all quantities +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=Settings +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/bs_BA/categories.lang b/htdocs/langs/bs_BA/categories.lang index 9134cd1112d..09651c44c1f 100644 --- a/htdocs/langs/bs_BA/categories.lang +++ b/htdocs/langs/bs_BA/categories.lang @@ -3,7 +3,7 @@ Rubrique=Tag/Category Rubriques=Tags/Categories RubriquesTransactions=Tags/Categories of transactions categories=tags/categories -NoCategoryYet=No tag/category of this type has been created +NoCategoryYet=kreirano In=U AddIn=Dodaj u modify=izmijeniti @@ -42,7 +42,7 @@ MemberHasNoCategory=This member is not in any tags/categories ContactHasNoCategory=This contact is not in any tags/categories ProjectHasNoCategory=This project is not in any tags/categories ClassifyInCategory=Add to tag/category -NotCategorized=Without tag/category +NotCategorized=Bez oznake/kategorije CategoryExistsAtSameLevel=Već postoji kategorija sa ovom referencom ContentsVisibleByAllShort=Sadržaj vidljiv svima ContentsNotVisibleByAllShort=Sadržaj nije vidljiv svima @@ -90,10 +90,12 @@ CategorieRecursivHelp=If option is on, when you add a product into a subcategory AddProductServiceIntoCategory=Add the following product/service AddCustomerIntoCategory=Assign category to customer AddSupplierIntoCategory=Assign category to supplier +AssignCategoryTo=Assign category to ShowCategory=Show tag/category ByDefaultInList=By default in list ChooseCategory=Choose category StocksCategoriesArea=Warehouse Categories +TicketsCategoriesArea=Tickets Categories ActionCommCategoriesArea=Event Categories WebsitePagesCategoriesArea=Page-Container Categories KnowledgemanagementsCategoriesArea=KM article Categories diff --git a/htdocs/langs/bs_BA/holiday.lang b/htdocs/langs/bs_BA/holiday.lang index 76dc1b6154c..2d8c4f5e679 100644 --- a/htdocs/langs/bs_BA/holiday.lang +++ b/htdocs/langs/bs_BA/holiday.lang @@ -4,6 +4,7 @@ Holidays=Leave CPTitreMenu=Leave MenuReportMonth=Mjesečni izvještaj MenuAddCP=New leave request +MenuCollectiveAddCP=New collective leave request NotActiveModCP=You must enable the module Leave to view this page. AddCP=Make a leave request DateDebCP=Datum početka @@ -79,6 +80,8 @@ MotifCP=Razlog UserCP=Korisnik ErrorAddEventToUserCP=Došlo je do greške prilikom dodavanja izuzetnog odsustva. AddEventToUserOkCP=Dodavanje izuzetno odsustva je kopmletirano. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=View change logs LogCP=Log of all updates made to "Balance of Leave" ActionByCP=Updated by @@ -86,6 +89,13 @@ UserUpdateCP=Updated for PrevSoldeCP=Prethodno stanje NewSoldeCP=Novo stanje alreadyCPexist=A leave request has already been done on this period. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Grupe +users=Korisnici +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Beginning day of leave request LastDayOfHoliday=Ending day of leave request BoxTitleLastLeaveRequests=Latest %s modified leave requests diff --git a/htdocs/langs/bs_BA/hrm.lang b/htdocs/langs/bs_BA/hrm.lang index 1e104221bc4..e7fb5192894 100644 --- a/htdocs/langs/bs_BA/hrm.lang +++ b/htdocs/langs/bs_BA/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Open establishment CloseEtablishment=Close establishment # Dictionary DictionaryPublicHolidays=Leave - Public holidays -DictionaryDepartment=HRM - Department list +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM - Job positions # Module Employees=Employees @@ -20,13 +20,14 @@ Employee=Zaposlenik NewEmployee=New employee ListOfEmployees=List of employees HrmSetup=HRM module setup -HRM_MAXRANK=Maximum rank for a skill +SkillsManagement=Skills management +HRM_MAXRANK=Maximum number of levels to rank a skill HRM_DEFAULT_SKILL_DESCRIPTION=Default description of ranks when skill is created deplacement=Shift DateEval=Evaluation date JobCard=Job card -Job=Job -Jobs=Jobs +JobPosition=Job +JobsPosition=Jobs NewSkill=New Skill SkillType=Skill type Skilldets=List of ranks for this skill @@ -47,9 +48,8 @@ ConfirmValidateEvaluation=Are you sure you want to validate this evaluation with EvaluationCard=Evaluation card RequiredRank=Required rank for this job EmployeeRank=Employee rank for this skill -Position=Pozicija -Positions=Positions -PositionCard=Position card +EmployeePosition=Employee position +EmployeePositions=Employee positions EmployeesInThisPosition=Employees in this position group1ToCompare=Usergroup to analyze group2ToCompare=Second usergroup for comparison @@ -70,12 +70,22 @@ RequiredSkills=Required skills for this job UserRank=User Rank SkillList=Skill list SaveRank=Save rank -knowHow=Know how -HowToBe=How to be -knowledge=Knowledge +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=Abandonment comment DateLastEval=Date last evaluation NoEval=No evaluation done for this employee HowManyUserWithThisMaxNote=Number of users with this rank HighestRank=Highest rank SkillComparison=Skill comparison +ActionsOnJob=Events on this job +VacantPosition=job vacancy +VacantCheckboxHelper=Checking this option will show unfilled positions (job vacancy) +SaveAddSkill = Skill(s) added +SaveLevelSkill = Skill(s) level saved +DeleteSkill = Skill removed +SkillsExtraFields=Attributs supplémentaires (Compétences) +JobsExtraFields=Attributs supplémentaires (Emplois) +EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/bs_BA/install.lang b/htdocs/langs/bs_BA/install.lang index 42302ea3b5d..ad77b76a54f 100644 --- a/htdocs/langs/bs_BA/install.lang +++ b/htdocs/langs/bs_BA/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=Configuration file %s is not writable. Check permis ConfFileIsWritable=Konfiguracijska datoteka %s je slobodna za pisanje. ConfFileMustBeAFileNotADir=Configuration file %s must be a file, not a directory. ConfFileReload=Reloading parameters from configuration file. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=Ovaj PHP podržava varijable POST i GET. PHPSupportPOSTGETKo=It's possible your PHP setup does not support variables POST and/or GET. Check the parameter variables_order in php.ini. PHPSupportSessions=Ovaj PHP podržava sesije. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=You may have typed a wrong value for parameter '%s'. ErrorFailedToCreateDatabase=Failed to create database '%s'. ErrorFailedToConnectToDatabase=Failed to connect to database '%s'. ErrorDatabaseVersionTooLow=Database version (%s) too old. Version %s or higher is required. -ErrorPHPVersionTooLow=PHP version too old. Version %s is required. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Connection to server successful but database '%s' not found. ErrorDatabaseAlreadyExists=Database '%s' already exists. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=If the database does not exist, go back and check option "Create database". IfDatabaseExistsGoBackAndCheckCreate=If database already exists, go back and uncheck "Create database" option. WarningBrowserTooOld=Version of browser is too old. Upgrading your browser to a recent version of Firefox, Chrome or Opera is highly recommended. diff --git a/htdocs/langs/bs_BA/members.lang b/htdocs/langs/bs_BA/members.lang index dd10392002d..a26793b0dc2 100644 --- a/htdocs/langs/bs_BA/members.lang +++ b/htdocs/langs/bs_BA/members.lang @@ -15,7 +15,7 @@ ErrorMemberIsAlreadyLinkedToThisThirdParty=Another member (name: %s, logi ErrorUserPermissionAllowsToLinksToItselfOnly=For security reasons, you must be granted permissions to edit all users to be able to link a member to a user that is not yours. SetLinkToUser=Link to a Dolibarr user SetLinkToThirdParty=Link to a Dolibarr third party -MembersCards=Business cards for members +MembersCards=Generation of cards for members MembersList=List of members MembersListToValid=List of draft members (to be validated) MembersListValid=List of valid members @@ -35,7 +35,8 @@ DateEndSubscription=End date of membership EndSubscription=End of membership SubscriptionId=Contribution ID WithoutSubscription=Without contribution -MemberId=Member id +MemberId=Member Id +MemberRef=Member Ref NewMember=New member MemberType=Member type MemberTypeId=Member type id @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Member type can not be deleted NewSubscription=New contribution NewSubscriptionDesc=This form allows you to record your subscription as a new member of the foundation. If you want to renew your subscription (if already a member), please contact foundation board instead by email %s. Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Trajanje +GetMembershipButtonLabel=Get membership Subscriptions=Contributions SubscriptionLate=Kasno SubscriptionNotReceived=Contribution never received @@ -135,7 +142,7 @@ CardContent=Content of your member card # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=We want to let you know that your membership request was received.

ThisIsContentOfYourMembershipWasValidated=We want to let you know that your membership was validated with the following information:

-ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=We want to let you know that your subscription is about to expire or has already expired (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). We hope you will renew it.

ThisIsContentOfYourCard=This is a summary of the information we have about you. Please contact us if anything is incorrect.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Subject of the notification email received in case of auto-inscription of a guest @@ -159,11 +166,11 @@ HTPasswordExport=htpassword file generation NoThirdPartyAssociatedToMember=No third party associated with this member MembersAndSubscriptions=Members and Contributions MoreActions=Complementary action on recording -MoreActionsOnSubscription=Complementary action, suggested by default when recording a contribution +MoreActionsOnSubscription=Complementary action suggested by default when recording a contribution, also done automatially on online payment of a contribution MoreActionBankDirect=Create a direct entry on bank account MoreActionBankViaInvoice=Create an invoice, and a payment on bank account MoreActionInvoiceOnly=Create an invoice with no payment -LinkToGeneratedPages=Generate visit cards +LinkToGeneratedPages=Generation of business cards or address sheets LinkToGeneratedPagesDesc=This screen allows you to generate PDF files with business cards for all your members or a particular member. DocForAllMembersCards=Generate business cards for all members DocForOneMemberCards=Generate business cards for a particular member @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=Turnover (for a company) or Budget (for a foundation) DefaultAmount=Default amount of contribution -CanEditAmount=Visitor can choose/edit amount of its contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Jump on integrated online payment page ByProperties=By nature MembersStatisticsByProperties=Members statistics by nature @@ -218,3 +226,5 @@ XExternalUserCreated=%s external user(s) created ForceMemberNature=Force member nature (Individual or Corporation) CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/bs_BA/stocks.lang b/htdocs/langs/bs_BA/stocks.lang index f9911423073..f78217716f8 100644 --- a/htdocs/langs/bs_BA/stocks.lang +++ b/htdocs/langs/bs_BA/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Stock limit for alert and desired optimal stock cor ProductStockWarehouseUpdated=Stock limit for alert and desired optimal stock correctly updated ProductStockWarehouseDeleted=Stock limit for alert and desired optimal stock correctly deleted AddNewProductStockWarehouse=Set new limit for alert and desired optimal stock -AddStockLocationLine=Decrease quantity then click to add another warehouse for this product +AddStockLocationLine=Decrease quantity then click to split the line InventoryDate=Inventory date Inventories=Inventories NewInventory=New inventory @@ -254,7 +254,7 @@ ReOpen=Reopen ConfirmFinish=Do you confirm the closing of the inventory ? This will generate all stock movements to update your stock to the real qty you entered into the inventory. ObjectNotFound=%s not found MakeMovementsAndClose=Generate movements and close -AutofillWithExpected=Replace real quantity with expected quantity +AutofillWithExpected=Fill real quantity with expected quantity ShowAllBatchByDefault=By default, show batch details on product "stock" tab CollapseBatchDetailHelp=You can set batch detail default display in stocks module configuration ErrorWrongBarcodemode=Unknown Barcode mode @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Product with barcode does not exist WarehouseId=Warehouse ID WarehouseRef=Warehouse Ref SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ToStart=Start InventoryStartedShort=Započeto ErrorOnElementsInventory=Operation canceled for the following reason: ErrorCantFindCodeInInventory=Can't find the following code in inventory QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requested barcode. You can close the Scanner tool. StockChangeDisabled=Change on stock disabled NoWarehouseDefinedForTerminal=No warehouse defined for terminal +ClearQtys=Clear all quantities +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=Settings +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/ca_ES/accountancy.lang b/htdocs/langs/ca_ES/accountancy.lang index 725c5501a4a..62b32f8b0cb 100644 --- a/htdocs/langs/ca_ES/accountancy.lang +++ b/htdocs/langs/ca_ES/accountancy.lang @@ -48,8 +48,9 @@ CountriesNotInEEC=Països no integrats a la CEE CountriesInEECExceptMe=Països a la CEE excepte %s CountriesExceptMe=Tots els països, excepte %s AccountantFiles=Exporta documents d'origen -ExportAccountingSourceDocHelp=Amb aquesta eina, podeu exportar els esdeveniments d'origen (llista en CSV i PDF) que s'utilitzen per a generar la vostra comptabilitat. +ExportAccountingSourceDocHelp=With this tool, you can search and export the source events that are used to generate your accountancy.
The exported ZIP file will contain the lists of requested items in CSV, as well as their attached files in their original format (PDF, ODT, DOCX...). ExportAccountingSourceDocHelp2=Per a exportar els vostres diaris, utilitzeu l'entrada de menú %s - %s. +ExportAccountingProjectHelp=Specify a project if you need an accounting report only for a specific project. Expense reports and loan payments are not included in project reports. VueByAccountAccounting=Veure per compte comptable VueBySubAccountAccounting=Veure-ho per subcomptes comptables @@ -161,7 +162,7 @@ BANK_DISABLE_DIRECT_INPUT=Desactiva el registre directe de transaccions al compt ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL=Habilita l'exportació d'esborrany en el diari ACCOUNTANCY_COMBO_FOR_AUX=Activa la llista combinada per a un compte subsidiari (pot ser lent si tens molts tercers, trenca la capacitat de cerca en una part del valor) ACCOUNTING_DATE_START_BINDING=Definiu una data per a començar la vinculació i transferència a la comptabilitat. Per sota d’aquesta data, les transaccions no es transferiran a la comptabilitat. -ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=En el cas de transferència de comptabilitat, seleccioneu el període a mostrar per defecte +ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=On accountancy transfer, what is the period selected by default ACCOUNTING_SELL_JOURNAL=Diari de venda ACCOUNTING_PURCHASE_JOURNAL=Diari de compra @@ -182,7 +183,7 @@ DONATION_ACCOUNTINGACCOUNT=Compte comptable per a registrar les donacions ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=Compte comptable per a registrar les donacions ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=Compte comptable per defecte per a registrar el dipòsit del client -UseAuxiliaryAccountOnCustomerDeposit=Use sub-accounts on customer deposit lines +UseAuxiliaryAccountOnCustomerDeposit=Store customer account as individual account in subsidiary ledger for lines of down payments (if disabled, individual account for down payment lines will remain empty) ACCOUNTING_PRODUCT_BUY_ACCOUNT=Compte comptable per defecte per als productes comprats (utilitzat si no es defineix en el producte) ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT=Compte de comptabilitat per defecte dels productes comprats a la CEE (utilitzat si no està definit a la taula de productes) @@ -332,7 +333,7 @@ ACCOUNTING_DISABLE_BINDING_ON_EXPENSEREPORTS=Desactiva la vinculació i transfer ## Export NotifiedExportDate=Marca les línies exportades com a Exportades (per a modificar una línia, hauràs de suprimir tota la transacció i tornar-la a transferir a la comptabilitat) -NotifiedValidationDate=Validar i bloquejar les entrades exportades (el mateix efecte que la funció "Tancament", la modificació i la supressió de les línies DEFINITIVAMENT no seran possibles) +NotifiedValidationDate=Validate and Lock the exported entries (same effect than the "%s" feature, modification and deletion of the lines will DEFINITELY not be possible) DateValidationAndLock=Validació de data i bloqueig ConfirmExportFile=Confirmació de la generació del fitxer d'exportació comptable? ExportDraftJournal=Exporta els esborranys del llibre @@ -427,6 +428,7 @@ SorryThisModuleIsNotCompatibleWithTheExperimentalFeatureOfSituationInvoices=Ho s AccountancyErrorMismatchLetterCode=Mismatch in reconcile code AccountancyErrorMismatchBalanceAmount=The balance (%s) is not equal to 0 AccountancyErrorLetteringBookkeeping=Errors have occurred concerning the transactions: %s +ErrorAccountNumberAlreadyExists=The accounting number %s already exists ## Import ImportAccountingEntries=Entrades de comptabilitat diff --git a/htdocs/langs/ca_ES/holiday.lang b/htdocs/langs/ca_ES/holiday.lang index 845ee3ffe97..0d6db8eade0 100644 --- a/htdocs/langs/ca_ES/holiday.lang +++ b/htdocs/langs/ca_ES/holiday.lang @@ -4,6 +4,7 @@ Holidays=Dies lliures CPTitreMenu=Dies lliures MenuReportMonth=Estat mensual MenuAddCP=Sol·licitud nova de permís +MenuCollectiveAddCP=New collective leave request NotActiveModCP=Ha d'activar el mòdul Dies lliures retribuïts per veure aquesta pàgina AddCP=Realitzar una petició de dies lliures DateDebCP=Data inici @@ -79,6 +80,8 @@ MotifCP=Motiu UserCP=Usuari ErrorAddEventToUserCP=S'ha produït un error en l'assignació del permís excepcional. AddEventToUserOkCP=S'ha afegit el permís excepcional. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=Veure registre de canvis LogCP=Registre de totes les actualitzacions realitzades a "Saldo de permisos" ActionByCP=Actualitzat per @@ -86,6 +89,13 @@ UserUpdateCP=Actualitzat per a PrevSoldeCP=Saldo anterior NewSoldeCP=Saldo nou alreadyCPexist=En aquest període ja s’ha fet una sol·licitud de dia lliure. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Grups +users=Usuaris +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Primer dia de sol·licitud de permís LastDayOfHoliday=Últim del dia de sol·licitud de permís BoxTitleLastLeaveRequests=Últimes %s peticions de dies lliures modificades diff --git a/htdocs/langs/ca_ES/hrm.lang b/htdocs/langs/ca_ES/hrm.lang index b62f4fc76ca..953d140b6d1 100644 --- a/htdocs/langs/ca_ES/hrm.lang +++ b/htdocs/langs/ca_ES/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Obre l'establiment CloseEtablishment=Tanca l'establiment # Dictionary DictionaryPublicHolidays=Permís - Dies festius -DictionaryDepartment=HRM - Llistat de departament +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM: llocs de treball # Module Employees=Empleats @@ -70,9 +70,9 @@ RequiredSkills=Competències necessàries per a aquesta feina UserRank=Rank d'usuari SkillList=Llista d'habilitats SaveRank=Guardar rang -knowHow=Saber com -HowToBe=Com ser -knowledge=Coneixement +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=Comentari d'abandonament DateLastEval=Data darrera avaluació NoEval=No s'ha fet cap avaluació per a aquest empleat @@ -88,3 +88,4 @@ DeleteSkill = S'ha eliminat l'habilitat SkillsExtraFields=Atributs addicionals (Competències) JobsExtraFields=Atributs addicionals (Empleats) EvaluationsExtraFields=Atributs addicionals (avaluacions) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/ca_ES/install.lang b/htdocs/langs/ca_ES/install.lang index 4ce60465f89..d4443f1a0e4 100644 --- a/htdocs/langs/ca_ES/install.lang +++ b/htdocs/langs/ca_ES/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=L'arxiu de configuració %s no és modificable. Com ConfFileIsWritable=L'arxiu %s és modificable. ConfFileMustBeAFileNotADir=El fitxer de configuració %s ha de ser un fitxer, no un directori. ConfFileReload=Actualització dels paràmetres del fitxer de configuració. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=Aquest PHP suporta bé les variables POST i GET. PHPSupportPOSTGETKo=És possible que aquest PHP no suport les variables POST i/o GET. Comproveu el paràmetre variables_order del php.ini. PHPSupportSessions=Aquest PHP suporta sessions @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Ha indicat potser un valor incorrecte per al paràme ErrorFailedToCreateDatabase=Error en crear la base de dades '%s'. ErrorFailedToConnectToDatabase=Error de connexió a la base de dades '%s'. ErrorDatabaseVersionTooLow=La versió de la base de dades (%s) és massa antiga. Cal la versió %s o superior. -ErrorPHPVersionTooLow=Versió del PHP massa antiga. Es requereix versió %s o superior. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=S'ha trobat una connexió amb el servidor però la base de dades '%s' no s'ha trobat. ErrorDatabaseAlreadyExists=La base de dades '%s' ja existeix. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=Si la base de dades no existeix, torneu enrere i marqueu l'opció "Crea una base de dades". IfDatabaseExistsGoBackAndCheckCreate=Si la base de dades ja existeix, torneu enrere i desmarqueu l'opció "Crea una base de dades". WarningBrowserTooOld=La versió del navegador és massa antiga. És molt recomanable actualitzar el vostre navegador a una versió recent de Firefox, Chrome o Opera. diff --git a/htdocs/langs/ca_ES/main.lang b/htdocs/langs/ca_ES/main.lang index 8db057d02bf..7f97599b141 100644 --- a/htdocs/langs/ca_ES/main.lang +++ b/htdocs/langs/ca_ES/main.lang @@ -345,7 +345,7 @@ KiloBytes=Kilobytes MegaBytes=Megabytes GigaBytes=Gigabytes TeraBytes=Terabytes -UserAuthor=Enganyat per +UserAuthor=Creat per UserModif=Actualitzat per b=b. Kb=Kb @@ -712,6 +712,7 @@ FeatureDisabled=Funció desactivada MoveBox=Mou el panell Offered=Oferta NotEnoughPermissions=No té autorització per aquesta acció +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=Nom sesió Method=Mètode Receive=Recepció @@ -801,6 +802,7 @@ URLPhoto=Url de la foto/logo SetLinkToAnotherThirdParty=Enllaça amb un altre tercer LinkTo=Enllaça a LinkToProposal=Enllaça a pressupost +LinkToExpedition= Link to expedition LinkToOrder=Enllaça a comanda LinkToInvoice=Enllaça a factura LinkToTemplateInvoice=Enllaçar a plantilla de factura @@ -1174,3 +1176,7 @@ ConfirmAllocateCommercial=Assigna la confirmació del representant de vendes ConfirmAllocateCommercialQuestion=Esteu segur que voleu assignar els registres seleccionats (%s)? CommercialsAffected=Representants comercials afectats CommercialAffected=Representant de vendes afectat +YourMessage=Your message +YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. +UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/ca_ES/members.lang b/htdocs/langs/ca_ES/members.lang index cfcdb3e30e9..5339699d6a8 100644 --- a/htdocs/langs/ca_ES/members.lang +++ b/htdocs/langs/ca_ES/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=Data de finalització de la subscripció EndSubscription=Fi de la pertinença SubscriptionId=Identificador de contribució WithoutSubscription=Sense aportació -MemberId=ID de soci +MemberId=Member Id +MemberRef=Member Ref NewMember=Soci nou MemberType=Tipus de soci MemberTypeId=ID de tipus de soci @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=El tipus de soci no es pot eliminar NewSubscription=Aportació 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=Contribució +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Duració +GetMembershipButtonLabel=Get membership Subscriptions=Aportacions SubscriptionLate=En retard SubscriptionNotReceived=No s’ha rebut cap contribució @@ -135,7 +142,7 @@ CardContent=Contingut de la seva fitxa de soci # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=Volem informar-li que s'ha rebut la vostra sol·licitud de subscripció.

ThisIsContentOfYourMembershipWasValidated=Volem informar-vos que la vostra subscripció s'ha validat amb la informació següent:

-ThisIsContentOfYourSubscriptionWasRecorded=Volem informar-vos que s'ha registrat la vostra nova subscripció.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=Volem informar-vos que la vostra subscripció està a punt d'expirar o que ja ha caducat (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Esperem que la renovisqueu.

ThisIsContentOfYourCard=Aquest és un resum de la informació que tenim sobre vostè. Poseu-vos en contacte amb nosaltres si hi ha alguna cosa incorrecta.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Assumpte del correu electrònic de notificació rebut en cas d'inscripció automàtica d'un convidat @@ -198,7 +205,8 @@ NbOfSubscriptions=Nombre de contribucions AmountOfSubscriptions=Import recaptat de les contribucions TurnoverOrBudget=Volum de vendes (empresa) o Pressupost (associació o col.lectiu) DefaultAmount=Import per defecte de la contribució -CanEditAmount=El visitant pot triar / editar l'import de la seva contribució +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Anar a la pàgina integrada de pagament en línia ByProperties=Per naturalesa MembersStatisticsByProperties=Estadístiques dels membres per naturalesa @@ -218,3 +226,5 @@ XExternalUserCreated=%s creats (s) usuaris externs ForceMemberNature=Naturalesa del membre de la força (individual o corporació) CreateDolibarrLoginDesc=La creació d'un inici de sessió d'usuari per als membres els permet connectar-se a l'aplicació. En funció de les autoritzacions concedides, podran, per exemple, consultar o modificar el seu fitxer ells mateixos. CreateDolibarrThirdPartyDesc=Un tercer és l'entitat jurídica que s'utilitzarà a la factura si decidiu generar factura per a cada contribució. El podreu crear més endavant durant el procés de gravació de la contribució. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/ca_ES/projects.lang b/htdocs/langs/ca_ES/projects.lang index bfc56d0ed07..da2ced7042e 100644 --- a/htdocs/langs/ca_ES/projects.lang +++ b/htdocs/langs/ca_ES/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=Temps de facturació facturat TimeSpentForIntervention=Temps dedicat TimeSpentForInvoice=Temps dedicat OneLinePerUser=Una línia per usuari -ServiceToUseOnLines=Servei d'ús a les línies +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=La factura %s s'ha generat a partir del temps dedicat al projecte InterventionGeneratedFromTimeSpent=La intervenció %s s'ha generat a partir del temps dedicat al projecte ProjectBillTimeDescription=Comproveu si heu introduït el full de temps en les tasques del projecte I teniu previst generar factures des del full de temps per a facturar al client del projecte (no comproveu si voleu crear la factura que no es basa en els fulls de temps introduïts). Nota: Per a generar la factura, aneu a la pestanya "Temps introduït" del projecte i seleccioneu les línies que cal incloure. @@ -294,3 +294,4 @@ EnablePublicLeadForm=Enable the public form for contact NewLeadbyWeb=Your message or request has been recorded. We will answer or contact your soon. NewLeadForm=New contact form LeadFromPublicForm=Online lead from public form +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/ca_ES/stocks.lang b/htdocs/langs/ca_ES/stocks.lang index 0e591c8dd1f..08e0a1f9b02 100644 --- a/htdocs/langs/ca_ES/stocks.lang +++ b/htdocs/langs/ca_ES/stocks.lang @@ -74,7 +74,7 @@ QtyDispatchedShort=Quant. rebuda QtyToDispatchShort=Quant. a enviar OrderDispatch=Articles rebuts RuleForStockManagementDecrease=Tria la regla per reduir l'estoc automàtic (la disminució manual sempre és possible, fins i tot si s'activa una regla de disminució automàtica) -RuleForStockManagementIncrease=Tria la regla per augmentar l'estoc automàtic (l'augment manual sempre és possible, fins i tot si s'activa una regla d'augment automàtic) +RuleForStockManagementIncrease=Trieu la regla per a l'augment automàtic d'estocs (l'augment manual sempre és possible, fins i tot si una regla d'augment automàtic està activada) DeStockOnBill=Disminueix els estocs real en la validació de la factura/abonament de client DeStockOnValidateOrder=Disminueix els estocs reals en la validació de comandes de client DeStockOnShipment=Disminueix l'estoc real al validar l'enviament @@ -151,9 +151,9 @@ RecordMovement=Registre de transferència ReceivingForSameOrder=Recepcions d'aquesta comanda StockMovementRecorded=Moviments d'estoc registrat RuleForStockAvailability=Regles de requeriment d'estoc -StockMustBeEnoughForInvoice=El nivell d'estoc ha de ser suficient per afegir el producte/servei a la factura (la comprovació es fa sobre l'estoc real actual quan s'afegeix una línia a la factura sigui quina sigui la regla del canvi automàtic d'estoc) -StockMustBeEnoughForOrder=El nivell d'estoc ha de ser suficient per afegir el producte/servei a la comanda (la comprovació es fa sobre l'estoc real actual quan s'afegeix una línia a la comanda sigui quina sigui la regla del canvi automàtic d'estoc) -StockMustBeEnoughForShipment= El nivell d'estoc ha de ser suficient per afegir el producte/servei a l'enviament (la comprovació es fa sobre l'estoc real actual quan s'afegeix una línia a l'enviament sigui quina sigui la regla del canvi automàtic d'estoc) +StockMustBeEnoughForInvoice=El nivell d'estoc ha de ser suficient per a afegir el producte/servei a la factura (la comprovació es fa sobre l'estoc real actual quan s'afegeix una línia a la factura sigui quina sigui la regla del canvi automàtic d'estoc) +StockMustBeEnoughForOrder=El nivell d'estoc ha de ser suficient per a afegir el producte/servei a la comanda (la comprovació es fa sobre l'estoc real actual quan s'afegeix una línia a la comanda sigui quina sigui la regla del canvi automàtic d'estoc) +StockMustBeEnoughForShipment= El nivell d'estoc ha de ser suficient per a afegir el producte/servei a l'enviament (la comprovació es fa sobre l'estoc real actual quan s'afegeix una línia a l'enviament sigui quina sigui la regla del canvi automàtic d'estoc) MovementLabel=Etiqueta del moviment TypeMovement=Direcció de moviment DateMovement=Data de moviment @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Estoc límit per llançar una alerta i estoc òptim ProductStockWarehouseUpdated=Estoc límit per llançar una alerta i estoc òptim desitjat actualitzats correctament ProductStockWarehouseDeleted=S'ha eliminat correctament el límit d'estoc per alerta i l'estoc òptim desitjat. AddNewProductStockWarehouse=Posar nou estoc límit per alertar i nou estoc òptim desitjat -AddStockLocationLine=Decrementa quantitat i a continuació fes clic per afegir un altre magatzem per aquest producte +AddStockLocationLine=Disminuïu la quantitat i feu clic per a dividir la línia InventoryDate=Data d'inventari Inventories=Inventaris NewInventory=Inventari nou @@ -254,7 +254,7 @@ ReOpen=Reobrir ConfirmFinish=Confirmeu el tancament de l'inventari? Això generarà tots els moviments d'estoc per a actualitzar el vostre estoc a la quantitat real que heu introduït a l'inventari. ObjectNotFound=no s'ha trobat %s MakeMovementsAndClose=Generar moviments i tancar -AutofillWithExpected=Substituïu la quantitat real per la quantitat esperada +AutofillWithExpected=Ompliu la quantitat real amb la quantitat esperada ShowAllBatchByDefault=Per defecte, mostreu els detalls del lot a la pestanya "existències" del producte CollapseBatchDetailHelp=Podeu configurar la visualització predeterminada del detall del lot a la configuració del mòdul d'existències ErrorWrongBarcodemode=Mode de codi de barres desconegut @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=El producte amb codi de barres no existeix WarehouseId=Identificador de magatzem WarehouseRef=Magatzem Ref SaveQtyFirst=Deseu primer les quantitats reals inventariades, abans de demanar la creació del moviment d'existències. +ToStart=Comença InventoryStartedShort=Començada ErrorOnElementsInventory=Operació cancel·lada pel motiu següent: ErrorCantFindCodeInInventory=No es pot trobar el codi següent a l'inventari QtyWasAddedToTheScannedBarcode=Èxit!! La quantitat s'ha afegit a tots els codis de barres sol·licitats. Podeu tancar l'eina Escàner. StockChangeDisabled=Canvi d'estoc desactivat NoWarehouseDefinedForTerminal=No s'ha definit cap magatzem per a la terminal +ClearQtys=Netegeu totes les quantitats +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=Configuració +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/cs_CZ/holiday.lang b/htdocs/langs/cs_CZ/holiday.lang index a295166d4a6..892464b07c8 100644 --- a/htdocs/langs/cs_CZ/holiday.lang +++ b/htdocs/langs/cs_CZ/holiday.lang @@ -4,6 +4,7 @@ Holidays=Listy CPTitreMenu=Dovolená MenuReportMonth=Měsíční výkaz MenuAddCP=Nová žádost o dovolenou +MenuCollectiveAddCP=New collective leave request NotActiveModCP=Chcete-li zobrazit tuto stránku, musíte povolit modul Nechat. AddCP=Požádejte o dovolenou DateDebCP=Datum zahájení @@ -79,6 +80,8 @@ MotifCP=Důvod UserCP=Uživatel ErrorAddEventToUserCP=Došlo k chybě při přidávání požadavku na výjimečnou dovolenou. AddEventToUserOkCP=Přidání výjimečné dovolené bylo dokončeno. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=Zobrazení protokolů změn LogCP=Log of all updates made to "Balance of Leave" ActionByCP=Updated by @@ -86,6 +89,13 @@ UserUpdateCP=Updated for PrevSoldeCP=Předchozí zůstatek NewSoldeCP=Nový zůstatek alreadyCPexist=Žádost o dovolenou pro toto období již byla provedena. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Skupiny +users=Uživatelé +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Beginning day of leave request LastDayOfHoliday=Ending day of leave request BoxTitleLastLeaveRequests=Nejnovější %s upravené žádosti o dovolenou diff --git a/htdocs/langs/cs_CZ/hrm.lang b/htdocs/langs/cs_CZ/hrm.lang index 36ecad205fc..6d03052933b 100644 --- a/htdocs/langs/cs_CZ/hrm.lang +++ b/htdocs/langs/cs_CZ/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Otevřít zařízení CloseEtablishment=Zavřít zařízení # Dictionary DictionaryPublicHolidays=Leave - Public holidays -DictionaryDepartment=HRM - Seznam oddělení +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM - Pracovní pozice # Module Employees=Zaměstnanci @@ -20,13 +20,14 @@ Employee=Zaměstnanec NewEmployee=Nový zaměstnanec ListOfEmployees=List of employees HrmSetup=setup HRM Modul -HRM_MAXRANK=Maximum rank for a skill +SkillsManagement=Skills management +HRM_MAXRANK=Maximum number of levels to rank a skill HRM_DEFAULT_SKILL_DESCRIPTION=Default description of ranks when skill is created deplacement=Shift DateEval=Evaluation date JobCard=Job card -Job=Práce -Jobs=Jobs +JobPosition=Práce +JobsPosition=Jobs NewSkill=New Skill SkillType=Skill type Skilldets=List of ranks for this skill @@ -47,9 +48,8 @@ ConfirmValidateEvaluation=Are you sure you want to validate this evaluation with EvaluationCard=Evaluation card RequiredRank=Required rank for this job EmployeeRank=Employee rank for this skill -Position=Pozice -Positions=Positions -PositionCard=Position card +EmployeePosition=Employee position +EmployeePositions=Employee positions EmployeesInThisPosition=Employees in this position group1ToCompare=Usergroup to analyze group2ToCompare=Second usergroup for comparison @@ -70,12 +70,22 @@ RequiredSkills=Required skills for this job UserRank=User Rank SkillList=Skill list SaveRank=Save rank -knowHow=Know how -HowToBe=How to be -knowledge=Knowledge +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=Abandonment comment DateLastEval=Date last evaluation NoEval=No evaluation done for this employee HowManyUserWithThisMaxNote=Number of users with this rank HighestRank=Highest rank SkillComparison=Skill comparison +ActionsOnJob=Events on this job +VacantPosition=job vacancy +VacantCheckboxHelper=Checking this option will show unfilled positions (job vacancy) +SaveAddSkill = Skill(s) added +SaveLevelSkill = Skill(s) level saved +DeleteSkill = Skill removed +SkillsExtraFields=Attributs supplémentaires (Compétences) +JobsExtraFields=Attributs supplémentaires (Emplois) +EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/cs_CZ/install.lang b/htdocs/langs/cs_CZ/install.lang index 5dae32075f4..7723af4ffbd 100644 --- a/htdocs/langs/cs_CZ/install.lang +++ b/htdocs/langs/cs_CZ/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=Konfigurační soubor %s není zapisovatelný. Zk ConfFileIsWritable=Konfigurační soubor %s je zapisovatelný. ConfFileMustBeAFileNotADir=Konfigurační soubor %s musí být soubor, nikoli adresář. ConfFileReload=Znovu načíst parametry z konfiguračního souboru. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=Tato PHP instalace podporuje proměnné POST a GET. PHPSupportPOSTGETKo=Je možné, že vaše instalace PHP nepodporuje proměnné POST a/nebo GET. Zkontrolujte parametr variables_order ve Vašem php.ini. PHPSupportSessions=Tato PHP instalace podporuje relace. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Možná jste zadali nesprávnou hodnotu pro parametr ErrorFailedToCreateDatabase=Nepodařilo se vytvořit databázi '%s'. ErrorFailedToConnectToDatabase=Nepodařilo se připojit k databázi '%s'. ErrorDatabaseVersionTooLow=Verze databáze (%s) je příliš stará a vetchá. Je potřeba omladit na verzi databáze alespoň %s. -ErrorPHPVersionTooLow=Tato verze PHP je příliš stará. Verze %s je potřeba. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Připojení k serveru bylo úspěšné, ale databáze '%s' nebyla nalezena. ErrorDatabaseAlreadyExists=Databáze '%s' již existuje. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=Pokud databáze neexistuje, vraťte se zpět a zaškrtněte volbu "Vytvořit databázi". IfDatabaseExistsGoBackAndCheckCreate=Pokud databáze již existuje, vraťte se zpět a zrušte zaškrtnutí políčka "Vytvořit databázi". WarningBrowserTooOld=Verze prohlížeče je příliš stará. Aktualizujte prohlížeč na nejnovější verzi. Doporučujeme aplikace Firefox, Chrome nebo Opera. diff --git a/htdocs/langs/cs_CZ/main.lang b/htdocs/langs/cs_CZ/main.lang index 6b8b2ce6f07..3c96294a8fa 100644 --- a/htdocs/langs/cs_CZ/main.lang +++ b/htdocs/langs/cs_CZ/main.lang @@ -244,6 +244,7 @@ Designation=Popis DescriptionOfLine=Popis řádku DateOfLine=Datum řádku DurationOfLine=Doba trvání řádku +ParentLine=Parent line ID Model=doc šablona DefaultModel=Výchozí šablona doc Action=Událost @@ -344,7 +345,7 @@ KiloBytes=Kilobajty MegaBytes=Megabyte GigaBytes=Gigabyte TeraBytes=Terabajtů -UserAuthor=Ceated by +UserAuthor=Vytvořil UserModif=Updated by b=b. Kb=Kb @@ -517,6 +518,7 @@ or=nebo Other=Ostatní Others=Ostatní OtherInformations=Jiná informace +Workflow=Workflow Quantity=Množství Qty=Množství ChangedBy=Změnil @@ -619,6 +621,7 @@ MonthVeryShort11=N MonthVeryShort12=D AttachedFiles=Přiložené soubory a dokumenty JoinMainDoc=Připojte se k hlavnímu dokumentu +JoinMainDocOrLastGenerated=Send the main document or the last generated one if not found DateFormatYYYYMM=YYYY-MM DateFormatYYYYMMDD=YYYY-MM-DD DateFormatYYYYMMDDHHMM=YYYY-MM-DD HH: SS @@ -709,6 +712,7 @@ FeatureDisabled=Funkce vypnuta MoveBox=Přesun widgetu Offered=Nabízené NotEnoughPermissions=Nemáte oprávnění pro tuto akci +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=Název relace Method=Metoda Receive=Přijmout @@ -798,6 +802,7 @@ URLPhoto=URL obrázku/loga SetLinkToAnotherThirdParty=Odkaz na jiný subjekt LinkTo=odkaz na LinkToProposal=Odkaz na návrh +LinkToExpedition= Link to expedition LinkToOrder=Odkaz na objednávku LinkToInvoice=Odkaz na fakturu LinkToTemplateInvoice=Odkaz na fakturu šablony @@ -1164,3 +1169,14 @@ NotClosedYet=Not yet closed ClearSignature=Reset signature CanceledHidden=Canceled hidden CanceledShown=Canceled shown +Terminate=přerušit +Terminated=ukončený +AddLineOnPosition=Add line on position (at the end if empty) +ConfirmAllocateCommercial=Assign sales representative confirmation +ConfirmAllocateCommercialQuestion=Are you sure you want to assign the %s selected record(s)? +CommercialsAffected=Sales representatives affected +CommercialAffected=Sales representative affected +YourMessage=Your message +YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. +UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/cs_CZ/members.lang b/htdocs/langs/cs_CZ/members.lang index fb676cc5c93..a779222460d 100644 --- a/htdocs/langs/cs_CZ/members.lang +++ b/htdocs/langs/cs_CZ/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=End date of membership EndSubscription=End of membership SubscriptionId=Contribution ID WithoutSubscription=Without contribution -MemberId=ID člena +MemberId=Member Id +MemberRef=Member Ref NewMember=Nový člen MemberType=Členské typ MemberTypeId=Členské typ id @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Typ člena nelze smazat NewSubscription=Nový příspěvek NewSubscriptionDesc=Tento formulář umožňuje zaznamenat vaše předplatné jako nový člen nadace. Chcete-li obnovit předplatné (pokud je již členem), kontaktujte nadační místo místo e-mailem %s. Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Trvání +GetMembershipButtonLabel=Get membership Subscriptions=Contributions SubscriptionLate=Pozdě SubscriptionNotReceived=Contribution never received @@ -135,7 +142,7 @@ CardContent=Obsah Vaší členské karty # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=Chceme vám oznámit, že vaše žádost o členství byla přijata.

ThisIsContentOfYourMembershipWasValidated=Chtěli bychom vás informovat, že vaše členství bylo ověřeno s následujícími informacemi:

-ThisIsContentOfYourSubscriptionWasRecorded=Chceme vám oznámit, že vaše nové předplatné bylo zaznamenáno.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=Chceme vám oznámit, že vaše předplatné má brzy skončit nebo již uplynula (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Doufáme, že jej obnovíte.

ThisIsContentOfYourCard=Toto je shrnutí informací, které máme o vás. Pokud něco není správné, kontaktujte nás.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Předmět oznámení o přijetí v případě automatického zapisování hosta @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=Obrat (pro firmu), nebo rozpočet (pro nadaci) DefaultAmount=Default amount of contribution -CanEditAmount=Visitor can choose/edit amount of its contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Přejít na integrované on-line platební stránky ByProperties=Od přírody MembersStatisticsByProperties=Statistika členů podle charakteru @@ -218,3 +226,5 @@ XExternalUserCreated=%s external user(s) created ForceMemberNature=Force member nature (Individual or Corporation) CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/cs_CZ/projects.lang b/htdocs/langs/cs_CZ/projects.lang index d175d94ba51..7e0a5f329be 100644 --- a/htdocs/langs/cs_CZ/projects.lang +++ b/htdocs/langs/cs_CZ/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=Čas strávený účtováním TimeSpentForIntervention=Strávený čas TimeSpentForInvoice=Strávený čas OneLinePerUser=Jeden řádek na uživatele -ServiceToUseOnLines=Služba pro použití na tratích +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=Faktura %s byla vygenerována z času stráveného na projektu InterventionGeneratedFromTimeSpent=Intervention %s has been generated from time spent on project ProjectBillTimeDescription=Zkontrolujte, zda zadáváte časový rozvrh úkolů projektu A máte v úmyslu vygenerovat faktury z časového rozvrhu, abyste fakturovali zákazníkovi projektu (nekontrolujte, zda máte v úmyslu vytvořit fakturu, která není založena na zadaných časových rozvrzích). Poznámka: Chcete-li vygenerovat fakturu, přejděte na kartu „Čas strávený“ projektu a vyberte řádky, které chcete zahrnout. @@ -294,3 +294,4 @@ EnablePublicLeadForm=Enable the public form for contact NewLeadbyWeb=Your message or request has been recorded. We will answer or contact your soon. NewLeadForm=New contact form LeadFromPublicForm=Online lead from public form +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/cs_CZ/stocks.lang b/htdocs/langs/cs_CZ/stocks.lang index a6f36bf31fe..9592bd4fe29 100644 --- a/htdocs/langs/cs_CZ/stocks.lang +++ b/htdocs/langs/cs_CZ/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Limit zásob pro výstrahu a požadovanou optimáln ProductStockWarehouseUpdated=Limit zásob pro výstrahu a požadovanou optimální zásobu byl správně aktualizován ProductStockWarehouseDeleted=Limit zásob pro výstrahu a požadovanou optimální zásobu jsou správně odstraněny AddNewProductStockWarehouse=Nastavit nový limit pro pohotovosti a požadovanou optimální zásoby -AddStockLocationLine=Snižte množství a klikněte na tlačítko Přidat další sklad pro tento produkt +AddStockLocationLine=Decrease quantity then click to split the line InventoryDate=Datum inventáře Inventories=Zásoby NewInventory=Nový inventář @@ -254,7 +254,7 @@ ReOpen=Znovu otevřeno ConfirmFinish=Do you confirm the closing of the inventory ? This will generate all stock movements to update your stock to the real qty you entered into the inventory. ObjectNotFound=%s not found MakeMovementsAndClose=Generate movements and close -AutofillWithExpected=Replace real quantity with expected quantity +AutofillWithExpected=Fill real quantity with expected quantity ShowAllBatchByDefault=By default, show batch details on product "stock" tab CollapseBatchDetailHelp=You can set batch detail default display in stocks module configuration ErrorWrongBarcodemode=Unknown Barcode mode @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Product with barcode does not exist WarehouseId=Warehouse ID WarehouseRef=Warehouse Ref SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ToStart=Start InventoryStartedShort=Začínáme ErrorOnElementsInventory=Operation canceled for the following reason: ErrorCantFindCodeInInventory=Can't find the following code in inventory QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requested barcode. You can close the Scanner tool. StockChangeDisabled=Change on stock disabled NoWarehouseDefinedForTerminal=No warehouse defined for terminal +ClearQtys=Clear all quantities +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=Nastavení +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/cy_GB/accountancy.lang b/htdocs/langs/cy_GB/accountancy.lang index 9f202fe0a9b..7ee1fd821b4 100644 --- a/htdocs/langs/cy_GB/accountancy.lang +++ b/htdocs/langs/cy_GB/accountancy.lang @@ -48,8 +48,9 @@ CountriesNotInEEC=Gwledydd nad ydynt yn y CEE CountriesInEECExceptMe=Gwledydd yn EEC ac eithrio %s CountriesExceptMe=Pob gwlad ac eithrio %s AccountantFiles=Allforio dogfennau ffynhonnell -ExportAccountingSourceDocHelp=Gyda'r offeryn hwn, gallwch allforio'r digwyddiadau ffynhonnell (rhestr mewn CSV a PDFs) a ddefnyddir i gynhyrchu eich cyfrifyddiaeth. +ExportAccountingSourceDocHelp=With this tool, you can search and export the source events that are used to generate your accountancy.
The exported ZIP file will contain the lists of requested items in CSV, as well as their attached files in their original format (PDF, ODT, DOCX...). ExportAccountingSourceDocHelp2=I allforio eich dyddlyfrau, defnyddiwch y cofnod dewislen %s - %s. +ExportAccountingProjectHelp=Specify a project if you need an accounting report only for a specific project. Expense reports and loan payments are not included in project reports. VueByAccountAccounting=Gweld yn ôl cyfrif cyfrifeg VueBySubAccountAccounting=Gweld trwy isgyfrif cyfrifo @@ -161,7 +162,7 @@ BANK_DISABLE_DIRECT_INPUT=Analluogi cofnodi trafodion yn uniongyrchol yn y cyfri ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL=Galluogi allforio drafft ar y dyddlyfr ACCOUNTANCY_COMBO_FOR_AUX=Galluogi rhestr combo ar gyfer cyfrif atodol (gall fod yn araf os oes gennych lawer o drydydd parti, torri'r gallu i chwilio ar ran o werth) ACCOUNTING_DATE_START_BINDING=Diffinio dyddiad i ddechrau rhwymo a throsglwyddo mewn cyfrifyddiaeth. O dan y dyddiad hwn, ni fydd y trafodion yn cael eu trosglwyddo i gyfrifeg. -ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=Wrth drosglwyddo cyfrifyddiaeth, dewiswch y cyfnod dangos yn ddiofyn +ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=On accountancy transfer, what is the period selected by default ACCOUNTING_SELL_JOURNAL=Gwerthu dyddlyfr ACCOUNTING_PURCHASE_JOURNAL=Dyddiadur prynu @@ -182,7 +183,7 @@ DONATION_ACCOUNTINGACCOUNT=Cyfrif cyfrifo i gofrestru rhoddion ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=Cyfrif cyfrif i gofrestru tanysgrifiadau ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=Cyfrif cyfrifo yn ddiofyn i gofrestru blaendal cwsmer -UseAuxiliaryAccountOnCustomerDeposit=Use sub-accounts on customer deposit lines +UseAuxiliaryAccountOnCustomerDeposit=Store customer account as individual account in subsidiary ledger for lines of down payments (if disabled, individual account for down payment lines will remain empty) ACCOUNTING_PRODUCT_BUY_ACCOUNT=Cyfrif cyfrifo yn ddiofyn ar gyfer y cynhyrchion a brynwyd (a ddefnyddir os nad yw wedi'i ddiffinio yn y daflen cynnyrch) ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT=Cyfrif cyfrifo yn ddiofyn ar gyfer y cynhyrchion a brynwyd yn EEC (a ddefnyddir os nad yw wedi'i ddiffinio yn y daflen cynnyrch) @@ -332,7 +333,7 @@ ACCOUNTING_DISABLE_BINDING_ON_EXPENSEREPORTS=Analluogi rhwymo a throsglwyddo cyf ## Export NotifiedExportDate=Baner llinellau wedi'u hallforio fel Allforiwyd (i addasu llinell, bydd angen i chi ddileu'r trafodiad cyfan a'i ail-drosglwyddo i gyfrifeg) -NotifiedValidationDate=Dilysu a chloi'r cofnodion a allforiwyd (yr un effaith â'r nodwedd "Cau", YN BENDERFYNOL ni fydd addasu a dileu'r llinellau yn bosibl) +NotifiedValidationDate=Validate and Lock the exported entries (same effect than the "%s" feature, modification and deletion of the lines will DEFINITELY not be possible) DateValidationAndLock=Dyddiad dilysu a chlo ConfirmExportFile=Cadarnhad o gynhyrchu'r ffeil allforio cyfrifo ? ExportDraftJournal=Allforio cyfnodolyn drafft @@ -427,6 +428,7 @@ SorryThisModuleIsNotCompatibleWithTheExperimentalFeatureOfSituationInvoices=Mae' AccountancyErrorMismatchLetterCode=Mismatch in reconcile code AccountancyErrorMismatchBalanceAmount=The balance (%s) is not equal to 0 AccountancyErrorLetteringBookkeeping=Errors have occurred concerning the transactions: %s +ErrorAccountNumberAlreadyExists=The accounting number %s already exists ## Import ImportAccountingEntries=Cofnodion cyfrifeg diff --git a/htdocs/langs/cy_GB/hrm.lang b/htdocs/langs/cy_GB/hrm.lang index 60bffa170b3..a2119f4a432 100644 --- a/htdocs/langs/cy_GB/hrm.lang +++ b/htdocs/langs/cy_GB/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Sefydliad agored CloseEtablishment=Sefydliad agos # Dictionary DictionaryPublicHolidays=Gadael - Gwyliau cyhoeddus -DictionaryDepartment=HRM - Rhestr adrannau +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=RhAD - Swyddi # Module Employees=Gweithwyr @@ -70,9 +70,9 @@ RequiredSkills=Sgiliau gofynnol ar gyfer y swydd hon UserRank=Safle Defnyddiwr SkillList=Rhestr sgiliau SaveRank=Cadw rheng -knowHow=Gwybod sut -HowToBe=Sut i fod -knowledge=Gwybodaeth +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=Sylw gadael DateLastEval=Dyddiad y gwerthusiad diwethaf NoEval=Dim gwerthusiad wedi'i wneud ar gyfer y gweithiwr hwn @@ -88,3 +88,4 @@ DeleteSkill = Skill removed SkillsExtraFields=Attributs supplémentaires (Compétences) JobsExtraFields=Attributs supplémentaires (Emplois) EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/cy_GB/install.lang b/htdocs/langs/cy_GB/install.lang index 1369d751769..d2ad4f7b112 100644 --- a/htdocs/langs/cy_GB/install.lang +++ b/htdocs/langs/cy_GB/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=Nid yw ffeil ffurfweddu %s yn ysgrifenadwy. Gwiri ConfFileIsWritable=Mae ffeil ffurfweddu %s yn ysgrifenadwy. ConfFileMustBeAFileNotADir=Rhaid i ffeil ffurfweddu %s fod yn ffeil, nid cyfeiriadur. ConfFileReload=Ail-lwytho paramedrau o ffeil ffurfweddu. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=Mae'r PHP hwn yn cefnogi newidynnau POST a GET. PHPSupportPOSTGETKo=Mae'n bosibl nad yw eich gosodiad PHP yn cefnogi newidynnau POST a/neu GET. Gwiriwch y paramedr variables_order yn php.ini. PHPSupportSessions=Mae'r PHP hwn yn cefnogi sesiynau. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Efallai eich bod wedi teipio gwerth anghywir ar gyfe ErrorFailedToCreateDatabase=Wedi methu creu cronfa ddata '%s'. ErrorFailedToConnectToDatabase=Wedi methu cysylltu â chronfa ddata '%s'. ErrorDatabaseVersionTooLow=Fersiwn cronfa ddata (%s) yn rhy hen. Mae angen fersiwn %s neu uwch. -ErrorPHPVersionTooLow=Fersiwn PHP yn rhy hen. Mae angen fersiwn %s. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Cysylltiad i'r gweinydd yn llwyddiannus ond ni chanfuwyd cronfa ddata '%s'. ErrorDatabaseAlreadyExists=Mae cronfa ddata '%s' eisoes yn bodoli. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=Os nad yw'r gronfa ddata yn bodoli, ewch yn ôl a gwiriwch yr opsiwn "Creu cronfa ddata". IfDatabaseExistsGoBackAndCheckCreate=Os oes cronfa ddata eisoes yn bodoli, ewch yn ôl a dad-diciwch yr opsiwn "Creu cronfa ddata". WarningBrowserTooOld=Fersiwn y porwr yn rhy hen. Argymhellir yn gryf eich bod yn uwchraddio'ch porwr i fersiwn diweddar o Firefox, Chrome neu Opera. diff --git a/htdocs/langs/cy_GB/main.lang b/htdocs/langs/cy_GB/main.lang index d6c76458644..d1564b719da 100644 --- a/htdocs/langs/cy_GB/main.lang +++ b/htdocs/langs/cy_GB/main.lang @@ -345,7 +345,7 @@ KiloBytes=Cilobytes MegaBytes=Megabeit GigaBytes=Gigabeit TeraBytes=Terabytes -UserAuthor=Wedi ei gado gan +UserAuthor=Created by UserModif=Diweddarwyd gan b=b. Kb=Kb @@ -712,6 +712,7 @@ FeatureDisabled=Nodwedd wedi'i hanalluogi MoveBox=Symud teclyn Offered=Cynigiwyd NotEnoughPermissions=Nid oes gennych ganiatâd ar gyfer y weithred hon +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=Enw'r sesiwn Method=Dull Receive=Derbyn @@ -801,6 +802,7 @@ URLPhoto=URL y llun / logo SetLinkToAnotherThirdParty=Cyswllt i drydydd parti arall LinkTo=Dolen i LinkToProposal=Dolen i'r cynnig +LinkToExpedition= Link to expedition LinkToOrder=Dolen i archeb LinkToInvoice=Dolen i'r anfoneb LinkToTemplateInvoice=Dolen i anfoneb templed @@ -1174,3 +1176,7 @@ ConfirmAllocateCommercial=Assign sales representative confirmation ConfirmAllocateCommercialQuestion=Are you sure you want to assign the %s selected record(s)? CommercialsAffected=Sales representatives affected CommercialAffected=Sales representative affected +YourMessage=Your message +YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. +UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/cy_GB/members.lang b/htdocs/langs/cy_GB/members.lang index 6ab25d88d17..45526b3900a 100644 --- a/htdocs/langs/cy_GB/members.lang +++ b/htdocs/langs/cy_GB/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=Dyddiad gorffen aelodaeth EndSubscription=Diwedd aelodaeth SubscriptionId=ID y cyfraniad WithoutSubscription=Heb gyfraniad -MemberId=ID aelod +MemberId=Member Id +MemberRef=Member Ref NewMember=Aelod newydd MemberType=Math o aelod MemberTypeId=ID math aelod @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Ni ellir dileu'r math o aelod NewSubscription=Cyfraniad newydd NewSubscriptionDesc=Mae'r ffurflen hon yn caniatáu ichi gofnodi'ch tanysgrifiad fel aelod newydd o'r sefydliad. Os ydych am adnewyddu eich tanysgrifiad (os ydych eisoes yn aelod), cysylltwch â'r bwrdd sylfaen yn lle hynny trwy e-bost %s. Subscription=Cyfraniad +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Duration +GetMembershipButtonLabel=Get membership Subscriptions=Cyfraniadau SubscriptionLate=Hwyr SubscriptionNotReceived=Ni dderbyniwyd cyfraniad erioed @@ -135,7 +142,7 @@ CardContent=Cynnwys eich cerdyn aelod # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=Rydym am roi gwybod ichi fod eich cais am aelodaeth wedi’i dderbyn.

ThisIsContentOfYourMembershipWasValidated=Rydym am roi gwybod ichi fod eich aelodaeth wedi'i dilysu gyda'r wybodaeth ganlynol:

-ThisIsContentOfYourSubscriptionWasRecorded=Rydym am roi gwybod ichi fod eich tanysgrifiad newydd wedi'i recordio.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=Rydym am roi gwybod i chi fod eich tanysgrifiad ar fin dod i ben neu wedi dod i ben yn barod (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Gobeithiwn y byddwch yn ei adnewyddu.

ThisIsContentOfYourCard=Dyma grynodeb o'r wybodaeth sydd gennym amdanoch chi. Cysylltwch â ni os oes unrhyw beth yn anghywir.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Testun yr e-bost hysbysu a dderbyniwyd rhag ofn y bydd gwestai yn arysgrif yn awtomatig @@ -198,7 +205,8 @@ NbOfSubscriptions=Nifer y cyfraniadau AmountOfSubscriptions=Swm a gasglwyd o gyfraniadau TurnoverOrBudget=Trosiant (ar gyfer cwmni) neu Gyllideb (ar gyfer sylfaen) DefaultAmount=Swm y cyfraniad rhagosodedig -CanEditAmount=Gall yr ymwelydd ddewis/golygu swm ei gyfraniad +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Neidiwch ar dudalen talu ar-lein integredig ByProperties=Wrth natur MembersStatisticsByProperties=Ystadegau aelodau yn ôl natur @@ -218,3 +226,5 @@ XExternalUserCreated=%s defnyddiwr(wyr) allanol wedi'u creu ForceMemberNature=Natur aelod o'r heddlu (Unigol neu Gorfforaeth) CreateDolibarrLoginDesc=Mae creu mewngofnodi defnyddiwr ar gyfer aelodau yn caniatáu iddynt gysylltu â'r rhaglen. Yn dibynnu ar yr awdurdodiadau a roddir, byddant yn gallu, er enghraifft, ymgynghori neu addasu eu ffeil eu hunain. CreateDolibarrThirdPartyDesc=Trydydd parti yw’r endid cyfreithiol a ddefnyddir ar yr anfoneb os penderfynwch gynhyrchu anfoneb ar gyfer pob cyfraniad. Byddwch yn gallu ei greu yn ddiweddarach yn ystod y broses o gofnodi'r cyfraniad. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/cy_GB/projects.lang b/htdocs/langs/cy_GB/projects.lang index 5988835ab94..bb35d3425f3 100644 --- a/htdocs/langs/cy_GB/projects.lang +++ b/htdocs/langs/cy_GB/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=Amser a dreuliwyd wedi'i bilio TimeSpentForIntervention=Amser a dreulir TimeSpentForInvoice=Amser a dreulir OneLinePerUser=Un llinell i bob defnyddiwr -ServiceToUseOnLines=Gwasanaeth i'w ddefnyddio ar linellau +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=Mae anfoneb %s wedi'i chynhyrchu o'r amser a dreuliwyd ar y prosiect InterventionGeneratedFromTimeSpent=Mae ymyrraeth %s wedi'i gynhyrchu o'r amser a dreuliwyd ar y prosiect ProjectBillTimeDescription=Gwiriwch a ydych chi'n nodi taflen amser ar dasgau'r prosiect A'ch bod yn bwriadu cynhyrchu anfoneb(au) o'r daflen amser i filio cwsmer y prosiect (peidiwch â gwirio a ydych yn bwriadu creu anfoneb nad yw'n seiliedig ar daflenni amser a gofnodwyd). Nodyn: I gynhyrchu anfoneb, ewch ar y tab 'Amser a dreuliwyd' o'r prosiect a dewiswch linellau i'w cynnwys. @@ -294,3 +294,4 @@ EnablePublicLeadForm=Enable the public form for contact NewLeadbyWeb=Your message or request has been recorded. We will answer or contact your soon. NewLeadForm=New contact form LeadFromPublicForm=Online lead from public form +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/da_DK/accountancy.lang b/htdocs/langs/da_DK/accountancy.lang index ece1941f065..1184122c481 100644 --- a/htdocs/langs/da_DK/accountancy.lang +++ b/htdocs/langs/da_DK/accountancy.lang @@ -48,8 +48,9 @@ CountriesNotInEEC=Lande ikke i EU CountriesInEECExceptMe=Lande i EU undtagen %s CountriesExceptMe=Alle lande undtagen %s AccountantFiles=Eksporter kildedokumenter -ExportAccountingSourceDocHelp=Med dette værktøj kan du eksportere de kildebegivenheder (liste i CSV og PDF'er), der bruges til at generere dit regnskab. +ExportAccountingSourceDocHelp=Med dette værktøj kan du søge og eksportere de kildebegivenheder, der bruges til at generere dit regnskab.
Den eksporterede ZIP-fil vil indeholde lister over ønskede elementer i CSV, såvel som deres vedhæftede filer i deres originale format (PDF, ODT, DOCX...). ExportAccountingSourceDocHelp2=For at eksportere dine tidsskrifter skal du bruge menuindgangen %s - %s. +ExportAccountingProjectHelp=Angiv et projekt, hvis du kun har brug for en regnskabsrapport for et specifikt projekt. Udgiftsrapporter og lånebetalinger indgår ikke i projektrapporter. VueByAccountAccounting=Vis efter regnskabskonto VueBySubAccountAccounting=Vis efter regnskabsmæssig underkonto @@ -161,7 +162,7 @@ BANK_DISABLE_DIRECT_INPUT=Deaktiver direkte registrering af transaktionen på ba ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL=Aktivér udkast til eksport på Journal ACCOUNTANCY_COMBO_FOR_AUX=Aktivér kombinationsliste for datterselskabskonto (kan være langsom, hvis du har mange tredjeparter, bryder evnen til at søge på en del af værdien) ACCOUNTING_DATE_START_BINDING=Definer en dato for start af binding og overførsel i regnskab. Under denne dato overføres transaktionerne ikke til regnskab. -ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=Ved regnskabsoverførsel skal du vælge periode som standard +ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=Ved regnskabsoverførsel, hvilken periode er valgt som standard ACCOUNTING_SELL_JOURNAL=Salgskladde ACCOUNTING_PURCHASE_JOURNAL=Indkøbskladde @@ -182,7 +183,7 @@ DONATION_ACCOUNTINGACCOUNT=Regnskabskonto til registrering af donationer ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=Regnskabskonto for at registrere abonnementer ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=Regnskabskonto er som standard for at registrere kundeindbetaling -UseAuxiliaryAccountOnCustomerDeposit=Brug underkonti på kundeindskudslinjer +UseAuxiliaryAccountOnCustomerDeposit=Gem kundekonto som individuel konto i hovedbog for linjer med forudbetalinger (hvis den er deaktiveret, forbliver individuel konto for forudbetalingslinjer tomme) ACCOUNTING_PRODUCT_BUY_ACCOUNT=Regnskabskonto som standard for de købte produkter (bruges hvis ikke defineret i produktarket) ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT=Regnskabskonto som standard for de købte produkter i EØF (brugt, hvis ikke defineret i produktarket) @@ -332,7 +333,7 @@ ACCOUNTING_DISABLE_BINDING_ON_EXPENSEREPORTS=Deaktiver binding og overførsel i ## Export NotifiedExportDate=Flag eksporterede linjer som eksporteret (for at ændre en linje skal du slette hele transaktionen og overføre den til regnskab igen) -NotifiedValidationDate=Valider og lås de eksporterede poster (samme effekt som "Closure"-funktionen, ændring og sletning af linjerne vil DEFINITIVT ikke være mulig) +NotifiedValidationDate=Valider og lås de eksporterede indgange (samme effekt som "%s"-funktionen, ændring og sletning af linjerne vil DEFINITIVT ikke være mulig) DateValidationAndLock=Datovalidering og lås ConfirmExportFile=Bekræftelse af genereringen af den regnskabsmæssige eksportfil? ExportDraftJournal=Eksporter udkast til kladde @@ -427,6 +428,7 @@ SorryThisModuleIsNotCompatibleWithTheExperimentalFeatureOfSituationInvoices=Bekl AccountancyErrorMismatchLetterCode=Uoverensstemmelse i afstemningskode AccountancyErrorMismatchBalanceAmount=Saldoen (%s) er ikke lig med 0 AccountancyErrorLetteringBookkeeping=Der er opstået fejl vedrørende transaktionerne: %s +ErrorAccountNumberAlreadyExists=Kontonummeret %s findes allerede ## Import ImportAccountingEntries=Regnskabsposter diff --git a/htdocs/langs/da_DK/admin.lang b/htdocs/langs/da_DK/admin.lang index 12e2cc42a07..b4d7f3fa11d 100644 --- a/htdocs/langs/da_DK/admin.lang +++ b/htdocs/langs/da_DK/admin.lang @@ -1,9 +1,9 @@ # Dolibarr language file - Source file is en_US - admin BoldRefAndPeriodOnPDF=Udskriv reference og periode for vare i PDF BoldLabelOnPDF=Udskriv vare etiket med fed skrift i PDF -Foundation=Fundament +Foundation=Grundlag Version=Version -Publisher=Forlægger +Publisher=Udgiver VersionProgram=Program version VersionLastInstall=Første installerede version VersionLastUpgrade=Seneste opgraderede version @@ -49,7 +49,7 @@ HostCharset=Værts tegnsæt ClientCharset=Klient tegnsæt ClientSortingCharset=Klient sortering WarningModuleNotActive=Modul %s skal være aktiveret -WarningOnlyPermissionOfActivatedModules=Kun tilladelser relateret til aktiverede moduler vises her. Du kan aktivere andre moduler på siden Hjem - Opsætning - Moduler/Applikationer. +WarningOnlyPermissionOfActivatedModules=Kun rettigheder relateret til aktiverede moduler vises her. Du kan aktivere andre moduler på siden Hjem->Opsætning->Moduler/Applikationer. DolibarrSetup=Dolibarr installer eller opgrader InternalUser=Intern bruger ExternalUser=Ekstern bruger @@ -78,8 +78,8 @@ ErrorReservedTypeSystemSystemAuto=Værdien 'system' og 'systemauto' for type er ErrorCodeCantContainZero=Koden må ikke indeholde værdien 0 DisableJavascript=Deaktiver JavaScript og Ajax funktioner DisableJavascriptNote=Bemærk: Kun til test- eller fejlretningsformål. For optimering for blinde eller tekstbrowsere foretrækker du måske at bruge opsætningen på brugerprofilen -UseSearchToSelectCompanyTooltip=Også hvis du har et stort antal tredjeparter (> 100.000), kan du øge hastigheden ved at sætte konstant COMPANY_DONOTSEARCH_ANYWHERE til 1 i Hjem - Opsætning - Øvrig opsætning. Søgning vil derefter være begrænset til starten af strengen. -UseSearchToSelectContactTooltip=Også hvis du har et stort antal tredjeparter (> 100.000), kan du øge hastigheden ved at sætte konstant CONTACT_DONOTSEARCH_ANYWHERE til 1 i Hjem - Opsætning - Øvrig opsætning. Søgning vil derefter være begrænset til starten af strengen. +UseSearchToSelectCompanyTooltip=Også hvis du har et stort antal tredjeparter (> 100.000), kan du øge hastigheden ved at sætte konstant COMPANY_DONOTSEARCH_ANYWHERE til 1 i Hjem->Opsætning->Øvrig opsætning. Søgning vil derefter være begrænset til starten af strengen. +UseSearchToSelectContactTooltip=Også hvis du har et stort antal tredjeparter (> 100.000), kan du øge hastigheden ved at sætte konstant CONTACT_DONOTSEARCH_ANYWHERE til 1 i Hjem->Opsætning->Øvrig opsætning. Søgning vil derefter være begrænset til starten af strengen. DelaiedFullListToSelectCompany=Vent, indtil der trykkes på en tast, før du indlæser indholdet af kombinationslisten for tredjeparter.
Dette kan øge ydeevnen, hvis du har et stort antal tredjeparter, men det er mindre bekvemt. DelaiedFullListToSelectContact=Vent, indtil der trykkes på en tast, før du indlæser indholdet af kombinationslisten for kontakter.
Dette kan øge ydeevnen, hvis du har et stort antal kontakter, men det er mindre bekvemt. NumberOfKeyToSearch=Antal tegn, der skal udløse søgning: %s @@ -111,7 +111,7 @@ NoMaxSizeByPHPLimit=Bemærk: Der er ikke sat nogen grænse i din PHP-konfigurati MaxSizeForUploadedFiles=Maksimal størrelse for uploadede filer (0 for at forhindre enhver upload) UseCaptchaCode=Brug grafisk kode (CAPTCHA) på login-siden AntiVirusCommand=Fuld sti til antivirus kommando -AntiVirusCommandExample=Eksempel på ClamAv Daemon (kræver clamav-daemon): /usr/bin/clamdscan
Eksempel på ClamWin (meget meget langsom): C:\\Program Files (x86)\\\\ClamWin\\bin\\clamscan.exe +AntiVirusCommandExample=Eksempel på ClamAv Daemon (kræver clamav-daemon): /usr/bin/clamdscan
Eksempel på ClamWin (meget meget langsom): C:\\Program Files (x86)\\ClamWin\\bin\\clamscan.exe AntiVirusParam= Flere parametre på kommandolinjen AntiVirusParamExample=Eksempel på ClamAv Daemon: --fdpass
Example for ClamWin: --database = "C: \\ Program Files (x86) \\ ClamWin \\ lib" ComptaSetup=Opsætning af regnskabsmodul @@ -244,7 +244,7 @@ ActivatableOn=Aktiverbar til SourceFile=Kildefil AvailableOnlyIfJavascriptAndAjaxNotDisabled=Kun tilgængelig, hvis JavaScript ikke er deaktiveret Required=Påkrævet -UsedOnlyWithTypeOption=Bruges kun af en eller anden dagsorden mulighed +UsedOnlyWithTypeOption=Bruges kun af nogle dagsorden muligheder Security=Sikkerhed Passwords=Adgangskoder DoNotStoreClearPassword=Krypter adgangskoder gemt i databasen (IKKE som almindelig tekst). Det anbefales kraftigt at aktivere denne mulighed. @@ -591,7 +591,7 @@ Module80Desc=Forsendelser og følgeseddel styring Module85Name=Banker og kontanter Module85Desc=Styring af bank- eller kassekonti Module100Name=Eksternt websted -Module100Desc=Tilføj et link til et eksternt websted som et hovedmenu ikon. Hjemmesiden vises i en ramme under topmenuen. +Module100Desc=Tilføj et link til et eksternt websted som et hovedmenuikon. Webstedet vises i en ramme under topmenuen. Module105Name=Mailman og SPIP Module105Desc=Mailman eller SPIP interface til medlemsmodul Module200Name=LDAP @@ -666,10 +666,10 @@ Module5000Name=Multi-virksomhed Module5000Desc=Giver dig mulighed for at administrere flere virksomheder Module6000Name=Workflow mellem moduler Module6000Desc=Workflow styring mellem forskellige moduler (automatisk oprettelse af objekt og/eller automatisk statusændring) -Module10000Name=Hjemmesider -Module10000Desc=Opret websteder (offentlige) med en WYSIWYG-editor. Dette er en webmaster eller udviklerorienteret CMS (det er bedre at kende HTML og CSS sprog). Bare opsæt din webserver (Apache, Nginx, ...) for at pege på det dedikerede Dolibarr-bibliotek for at have det online på internettet med dit eget domænenavn. -Module20000Name=Orlovs styring -Module20000Desc=Opret og spor medarbejdernes orlovsanmodninger +Module10000Name=Websteder +Module10000Desc=Opret websteder (offentlige) med en WYSIWYG-editor. Dette er et webmaster- eller udviklerorienteret CMS (det er bedre at kende HTML- og CSS-sprog). Du skal bare opsætte din webserver (Apache, Nginx, ...) til at pege på den dedikerede Dolibarr-mappe for at have den online på internettet med dit eget domænenavn. +Module20000Name=Fraværsregistrering +Module20000Desc=Opret og spor medarbejdernes fraværsanmodninger Module39000Name=Varepartier Module39000Desc=Partier, serienumre, håndtering af Bedst før/Sidste anvendelsesdato for varer Module40000Name=Multivaluta @@ -1068,7 +1068,7 @@ DictionaryMeasuringUnits=Måleenheder DictionarySocialNetworks=Sociale netværk DictionaryProspectStatus=Mulighedsstatus for virksomheder DictionaryProspectContactStatus=Mulighedsstatus for kontakter -DictionaryHolidayTypes=Orlov - Typer af orlov +DictionaryHolidayTypes=Fravær - Typer af fravær DictionaryOpportunityStatus=Mulighedsstatus for projekt/mulighed DictionaryExpenseTaxCat=Udgiftsrapport - Transportkategorier DictionaryExpenseTaxRange=Udgiftsrapport - Interval efter transportkategori @@ -1160,8 +1160,8 @@ SummaryConst=Liste over alle Dolibarr opsætningsparametre MenuCompanySetup=Virksomhed/Organisation DefaultMenuManager= Standard menu styrer DefaultMenuSmartphoneManager=Smartphone menu styrer -Skin=Overflade tema -DefaultSkin=Standard overflade tema +Skin=Skin tema +DefaultSkin=Standard skin tema MaxSizeList=Maksimal længde for liste DefaultMaxSizeList=Standard maks. længde for lister DefaultMaxSizeShortList=Standard maksimal længde for korte lister (dvs. i kundekort) @@ -1234,7 +1234,7 @@ InfoSecurity=Om Sikkerhed BrowserName=Browsernavn BrowserOS=Browser OS ListOfSecurityEvents=Liste over Dolibarr sikkerhedshændelser -SecurityEventsPurged=Sikkerhedshændelser renset +SecurityEventsPurged=Sikkerhedshændelser ryddet LogEventDesc=Aktiver logning for specifikke sikkerhedshændelser. Administratorer loggen via menuen %s - %s . Advarsel, denne funktion kan generere en stor mængde data i databasen. AreaForAdminOnly=Opsætningsparametre kan kun indstilles af administratorbrugere. SystemInfoDesc=Systemoplysninger er diverse tekniske oplysninger, du får i skrivebeskyttet tilstand og kun synlige for administratorer. @@ -1288,7 +1288,7 @@ WeekStartOnDay=Ugens første dag RunningUpdateProcessMayBeRequired=Det ser ud til at være nødvendigt at køre opgraderingsprocessen (programversion %s adskiller sig fra databaseversion %s) YouMustRunCommandFromCommandLineAfterLoginToUser=Du skal køre denne kommando fra kommandolinjen efter login til en shell med brugeren %s, eller du skal tilføje -W-indstillingen i slutningen af kommandolinjen for at give %s adgangskodeen YourPHPDoesNotHaveSSLSupport=SSL funktioner er ikke tilgængelige i din PHP -DownloadMoreSkins=Flere overflader at downloade +DownloadMoreSkins=Flere skins at downloade SimpleNumRefModelDesc=Returnerer referencenummeret i formatet %syymm-nnnn hvor yy er året, mm er måneden og nnnn er et sekventielt auto-inkrementerende tal uden nulstilling SimpleNumRefNoDateModelDesc=Returnerer referencenummeret i formatet %s-nnnn hvor nnnn er et sekventielt auto-inkrementerende tal uden nulstilling ShowProfIdInAddress=Vis professionelt ID ved adresser @@ -1548,22 +1548,22 @@ LDAPTestSearch= Test LDAP søgning LDAPSynchroOK=Synkroniseringstest gennemført LDAPSynchroKO=Mislykket synkroniseringstest LDAPSynchroKOMayBePermissions=Mislykket synkroniseringstest. Kontroller, at forbindelsen til serveren er korrekt konfigureret og tillader LDAP opdateringer -LDAPTCPConnectOK=TCP connect to LDAP server successful (Server=%s, Port=TCP forbindelse til LDAP-serveren vellykket (Server= %s, Port= %s) -LDAPTCPConnectKO=TCP connect to LDAP server failed (Server=%s, Port=TCP forbindelse til LDAP-serveren mislykkedes (Server= %s, Port= %s) -LDAPBindOK=Forbind / godkend til LDAP-server succesfuldt (Server = %s, Port = %s, Admin = %s, Password = %s) -LDAPBindKO=Forbind / godkend til LDAP-server mislykkedes (Server = %s, Port = %s, Admin = %s, Password = %s) -LDAPSetupForVersion3=LDAP-server er konfigureret til version 3 -LDAPSetupForVersion2=LDAP-server er konfigureret til version 2 +LDAPTCPConnectOK=TCP forbindelse til LDAP server lykkedes (Server=%s, Port=%s) +LDAPTCPConnectKO=TCP forbindelse til LDAP server mislykkedes (Server=%s, Port=%s) +LDAPBindOK=Forbinde/godkendelse til LDAP server lykkedes (Server=%s, Port=%s, Admin=%s, Password=%s) +LDAPBindKO=Forbindelse/godkendelse til LDAP server mislykkedes (Server=%s, Port=%s, Admin=%s, Password=%s) +LDAPSetupForVersion3=LDAP server konfigureret til version 3 +LDAPSetupForVersion2=LDAP server konfigureret til version 2 LDAPDolibarrMapping=Dolibarr Mapping LDAPLdapMapping=LDAP Mapping -LDAPFieldLoginUnix=Login (Unix) +LDAPFieldLoginUnix=Login (unix) LDAPFieldLoginExample=Eksempel: uid LDAPFilterConnection=Søgefilter -LDAPFilterConnectionExample=Eksempel: & (objectClass = inetOrgPerson) -LDAPGroupFilterExample=Eksempel: & (objectClass = groupOfUsers) +LDAPFilterConnectionExample=Eksempel: &(objectClass=inetOrgPerson) +LDAPGroupFilterExample=Eksempel: &(objectClass=groupOfUsers) LDAPFieldLoginSamba=Login (samba, activedirectory) -LDAPFieldLoginSambaExample=Eksempel: Samaccountnavn -LDAPFieldFullname=Fornavn Navn +LDAPFieldLoginSambaExample=Eksempel: samaccountname +LDAPFieldFullname=Fulde navn LDAPFieldFullnameExample=Eksempel: cn LDAPFieldPasswordNotCrypted=Adgangskode er ikke krypteret LDAPFieldPasswordCrypted=Adgangskode er krypteret @@ -1573,17 +1573,17 @@ LDAPFieldName=Navn LDAPFieldNameExample=Eksempel: sn LDAPFieldFirstName=Fornavn LDAPFieldFirstNameExample=Eksempel: givenName -LDAPFieldMail=E-mail-adresse +LDAPFieldMail=E-mail adresse LDAPFieldMailExample=Eksempel: mail -LDAPFieldPhone=Professional telefonnummer +LDAPFieldPhone=Firma telefonnummer LDAPFieldPhoneExample=Eksempel: telefonnummer -LDAPFieldHomePhone=Personlige telefonnummer -LDAPFieldHomePhoneExample=Eksempel: Homephone +LDAPFieldHomePhone=Privat telefonnummer +LDAPFieldHomePhoneExample=Eksempel: hjemmetelefon LDAPFieldMobile=Mobiltelefon LDAPFieldMobileExample=Eksempel: mobil -LDAPFieldFax=Faxnummer -LDAPFieldFaxExample=Eksempel: telefaxnummer -LDAPFieldAddress=Street +LDAPFieldFax=Fax nummer +LDAPFieldFaxExample=Eksempel: faxnummer +LDAPFieldAddress=Gade LDAPFieldAddressExample=Eksempel: gade LDAPFieldZip=Postnummer LDAPFieldZipExample=Eksempel: postnummer @@ -1594,631 +1594,635 @@ LDAPFieldDescription=Beskrivelse LDAPFieldDescriptionExample=Eksempel: beskrivelse LDAPFieldNotePublic=Offentlig note LDAPFieldNotePublicExample=Eksempel: publicnote -LDAPFieldGroupMembers= Gruppens medlemmer +LDAPFieldGroupMembers= Gruppemedlemmer LDAPFieldGroupMembersExample= Eksempel: uniqueMember LDAPFieldBirthdate=Fødselsdato LDAPFieldCompany=Firma LDAPFieldCompanyExample=Eksempel: o LDAPFieldSid=SID -LDAPFieldSidExample=Eksempel: objektside -LDAPFieldEndLastSubscription=Dato for tilmelding udgangen +LDAPFieldSidExample=Eksempel: objectsid +LDAPFieldEndLastSubscription=Dato for ophør af abonnement LDAPFieldTitle=Stilling LDAPFieldTitleExample=Eksempel: titel LDAPFieldGroupid=Gruppe id -LDAPFieldGroupidExample=Eksempel: gid nummer +LDAPFieldGroupidExample=Eksempel: gidnumber LDAPFieldUserid=Bruger ID LDAPFieldUseridExample=Eksempel: uidnumber -LDAPFieldHomedirectory=Hjem bibliotek -LDAPFieldHomedirectoryExample=Eksempel: hjemmeledelse -LDAPFieldHomedirectoryprefix=Hjemmekatalog præfiks -LDAPSetupNotComplete=LDAP-opsætning ikke komplet (gå på andre faner) -LDAPNoUserOrPasswordProvidedAccessIsReadOnly=Ingen administrator eller adgangskode angivet. LDAP-adgang vil være anonym og kun med læsning. -LDAPDescContact=Denne side giver dig mulighed for at definere LDAP attributter navn i LDAP træ for hver data findes på Dolibarr kontakter. -LDAPDescUsers=Denne side giver dig mulighed for at definere LDAP attributter navn i LDAP træ for hver data findes på Dolibarr brugere. -LDAPDescGroups=Denne side giver dig mulighed for at definere LDAP attributter navn i LDAP træ for hver data findes på Dolibarr grupper. -LDAPDescMembers=Denne side giver dig mulighed for at definere LDAP attributter navn i LDAP træ for hver data findes på Dolibarr medlemmer modul. -LDAPDescMembersTypes=Denne side giver dig mulighed for at definere LDAP attributter navn i LDAP-træet for hver data, der findes på Dolibarr medlemmer typer. -LDAPDescValues=Eksempel værdier er konstrueret til OpenLDAP med følgende lastes skemaer: core.schema, cosine.schema, inetorgperson.schema). Hvis du bruger thoose værdier og OpenLDAP, ændre din LDAP konfigurationsfil slapd.conf at få alle thoose skemaer indlæses. -ForANonAnonymousAccess=For en autentificeret adgang (for en skriveadgangen for eksempel) -PerfDolibarr=Prestationsopsætning / optimeringsrapport -YouMayFindPerfAdviceHere=Denne side giver nogle checks eller råd vedrørende performance. +LDAPFieldHomedirectory=Hjemmemappe +LDAPFieldHomedirectoryExample=Eksempel: homedirectory +LDAPFieldHomedirectoryprefix=Hjemmemappe præfiks +LDAPSetupNotComplete=LDAP opsætning ikke fuldført (gå til andre faner) +LDAPNoUserOrPasswordProvidedAccessIsReadOnly=Ingen administrator eller adgangskode angivet. LDAP adgang vil være anonym og i skrivebeskyttet tilstand. +LDAPDescContact=Denne side giver dig mulighed for at definere LDAP attributternes navn i LDAP træet for hver data, der findes på Dolibarr kontakter. +LDAPDescUsers=Denne side giver dig mulighed for at definere LDAP attributnavnet i LDAP træet for hver data, der findes på Dolibarr brugere. +LDAPDescGroups=Denne side giver dig mulighed for at definere LDAP attributnavnet i LDAP træet for hver data, der findes på Dolibarr grupper. +LDAPDescMembers=Denne side giver dig mulighed for at definere LDAP attributnavnet i LDAP træet for hver data, der findes på Dolibarr medlemsmodul. +LDAPDescMembersTypes=Denne side giver dig mulighed for at definere LDAP attributnavnet i LDAP træet for hver data, der findes på Dolibarr medlemstyper. +LDAPDescValues=Eksempelværdier er designet til OpenLDAP med følgende indlæste skemaer: core.schema, cosine.schema, inetorgperson.schema). Hvis du bruger disse værdier og OpenLDAP, skal du ændre din LDAP konfigurationsfil slapd.conf for at få alle disse skemaer indlæst. +ForANonAnonymousAccess=For en godkendt adgang (for en skriveadgang for eksempel) +PerfDolibarr=Ydeevne opsætning/optimeringsrapport +YouMayFindPerfAdviceHere=Denne side giver nogle kontroller eller råd relateret til ydeevne. NotInstalled=Ikke installeret. -NotSlowedDownByThis=Ikke bremset af dette. -NotRiskOfLeakWithThis=Ikke risiko for lækage med dette. +NotSlowedDownByThis=Ikke forsinket af dette. +NotRiskOfLeakWithThis=Ikke risiko for læk med dette. ApplicativeCache=Applikationsbuffer -MemcachedNotAvailable=Ingen applikationsbuffer fundet. Du kan forbedre ydeevnen ved at installere en cache-server Memcached og et modul, der kan bruge denne cache-server.
Mere information her http: //wiki.dolibarr.org/index.php/Module_MemCached_EN .
Bemærk, at en masse web hosting udbyder ikke giver sådan cache server. -MemcachedModuleAvailableButNotSetup=Modul memcached for applikationscache fundet, men opsætning af modul er ikke komplet. -MemcachedAvailableAndSetup=Modul memcached dedikeret til brug memcached server er aktiveret. -OPCodeCache=OPCode cache -NoOPCodeCacheFound=Ingen OPCode cache fundet. Måske bruger du en OPCode cache andet end XCache eller eAccelerator (god), eller måske har du ikke OPCode cache (meget dårlig). -HTTPCacheStaticResources=HTTP-cache for statiske ressourcer (css, img, javascript) -FilesOfTypeCached=Filer af typen %s caches af HTTP-serveren -FilesOfTypeNotCached=Filer af typen %s caches ikke af HTTP-serveren -FilesOfTypeCompressed=Filer af typen %s komprimeres af HTTP-serveren -FilesOfTypeNotCompressed=Filer af typen %s komprimeres ikke af HTTP-serveren -CacheByServer=Cache af server -CacheByServerDesc=For eksempel ved hjælp af Apache-direktivet "ExpiresByType image / gif A2592000" -CacheByClient=Cache via browser -CompressionOfResources=Kompression af HTTP-reaktioner -CompressionOfResourcesDesc=For eksempel ved hjælp af Apache-direktivet "AddOutputFilterByType DEFLATE" -TestNotPossibleWithCurrentBrowsers=En sådan automatisk detektering er ikke mulig med de aktuelle browsere -DefaultValuesDesc=Her kan du definere den standardværdi, du vil bruge, når du opretter en ny post, og / eller standardfiltre eller sorteringsrækkefølgen, når du registrerer optegnelser. +MemcachedNotAvailable=Ingen applikationsbuffer fundet. Du kan forbedre ydeevnen ved at installere en cache server Memcached og et modul, der kan bruge denne cacheserver.
Mere information her http://wiki.dolibarr.org/index.php/Module_MemCached_EN.
Bemærk, at mange webhostingudbydere ikke leverer en sådan cache server. +MemcachedModuleAvailableButNotSetup=Modul memcached for applikationsbuffer fundet, men opsætningen af modulet er ikke færdig. +MemcachedAvailableAndSetup=Modul memcached dedikeret til at bruge memcached server er aktiveret. +OPCodeCache=OPCode buffer +NoOPCodeCacheFound=Ingen OPCode buffer fundet. Måske bruger du en anden OPCode buffer end XCache eller eAccelerator (god), eller måske har du ikke OPCode buffer (meget dårlig). +HTTPCacheStaticResources=HTTP buffer til statiske ressourcer (css, img, javascript) +FilesOfTypeCached=Filer af typen %s buffer gemmes af HTTP serveren +FilesOfTypeNotCached=Filer af typen %s buffer gemmes ikke af HTTP serveren +FilesOfTypeCompressed=Filer af typen %s komprimeres af HTTP serveren +FilesOfTypeNotCompressed=Filer af typen %s komprimeres ikke af HTTP serveren +CacheByServer=Buffer af server +CacheByServerDesc=For eksempel ved at bruge Apache direktivet "ExpiresByType image/gif A2592000" +CacheByClient=Buffer via browser +CompressionOfResources=Komprimering af HTTP svar +CompressionOfResourcesDesc=For eksempel ved at bruge Apache direktivet "AddOutputFilterByType DEFLATE" +TestNotPossibleWithCurrentBrowsers=En sådan automatisk registrering er ikke mulig med nuværende browsere +DefaultValuesDesc=Her kan du definere den standardværdi, du ønsker at bruge, når du opretter en ny post, og/eller standardfiltre eller sorteringsrækkefølgen, når du angiver poster. DefaultCreateForm=Standardværdier (til brug på formularer) DefaultSearchFilters=Standard søgefiltre -DefaultSortOrder=Standard sorteringsordrer -DefaultFocus=Standardfokusfelter -DefaultMandatory=Obligatoriske formularer +DefaultSortOrder=Standard sorteringsrækkefølger +DefaultFocus=Standard fokusfelter +DefaultMandatory=Obligatoriske formularfelter ##### Products ##### ProductSetup=Opsætning af varemodul -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 varelinjer (ellers vis beskrivelse i en værktøjstip -popup) -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 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 -SetDefaultBarcodeTypeThirdParties=Default stregkode type bruge til tredjemand -UseUnits=Definer en måleenhed for mængde under bestilling, forslag eller faktura linjer udgave -ProductCodeChecker= Modul til generering af varekode og kontrol (vare eller ydelse) -ProductOtherConf= Vare/ydelse-konfiguration +ServiceSetup=Opsætning af ydelsesmodul +ProductServiceSetup=Opsætning af produkt- og ydelsesmoduler +NumberOfProductShowInSelect=Maksimalt antal varer, der skal vises i kombinationslister (0=ingen grænse) +ViewProductDescInFormAbility=Vis varebeskrivelser i linjer med varer (ellers vis beskrivelse i et popup vindue med værktøjstip) +OnProductSelectAddProductDesc=Sådan bruger du beskrivelsen af produkterne, når du tilføjer et produkt som en linje i et dokument +AutoFillFormFieldBeforeSubmit=Udfyld automatisk beskrivelsesindtastningsfeltet med beskrivelsen af varen +DoNotAutofillButAutoConcat=Udfyld ikke indtastningsfeltet med en beskrivelse af varen. Beskrivelse af varen vil automatisk blive sammenkædet med den indtastede beskrivelse. +DoNotUseDescriptionOfProdut=Beskrivelse af varen vil aldrig indgå i beskrivelsen af linjer i dokumenter +MergePropalProductCard=Aktiver i fanen Varer/ydelser Vedhæftede filer en mulighed for at flette vare PDF dokument til forslag PDF azur, hvis varer/ydelse er i forslaget +ViewProductDescInThirdpartyLanguageAbility=Vis produktbeskrivelser i formularer på tredjepartens sprog (ellers på brugerens sprog) +UseSearchToSelectProductTooltip=Også hvis du har et stort antal produkter (> 100.000), kan du øge hastigheden ved at sætte konstanten PRODUCT_DONOTSEARCH_ANYWHERE til 1 i Hjem - Opsætning - Anden opsætning. Søgning vil derefter være begrænset til starten af strengen. +UseSearchToSelectProduct=Vent, indtil du trykker på en tast, før du indlæser indholdet af vare kombinationslisten (dette kan øge ydeevnen, hvis du har et stort antal produkter, men det er mindre bekvemt) +SetDefaultBarcodeTypeProducts=Standard stregkodetype til brug for varer +SetDefaultBarcodeTypeThirdParties=Standard stregkodetype til brug for tredjeparter +UseUnits=Definer en måleenhed for mængde under ordre-, tilbuds- eller fakturalinjer +ProductCodeChecker= Modul til generering og kontrol af varekode (vare eller ydelse) +ProductOtherConf= Vare/ydelses konfiguration IsNotADir=er ikke en mappe! ##### Syslog ##### -SyslogSetup=Log-modul opsætning +SyslogSetup=Opsætning af logmodul SyslogOutput=Log output -SyslogFacility=Facility +SyslogFacility=Facilitet SyslogLevel=Niveau SyslogFilename=Filnavn og sti -YouCanUseDOL_DATA_ROOT=Du kan bruge DOL_DATA_ROOT / dolibarr.log for en logfil i Dolibarr "dokumenter" mappen. Du kan indstille en anden vej til at gemme denne fil. -ErrorUnknownSyslogConstant=Konstant %s er ikke en kendt syslog konstant -OnlyWindowsLOG_USER=På Windows understøttes kun LOG_USER-faciliteten -CompressSyslogs=Komprimering og backup af fejlfindingslogfiler (genereret af modul Log til fejlfinding) -SyslogFileNumberOfSaves=Antal sikkerhedskopilogfiler, der skal gemmes -ConfigureCleaningCronjobToSetFrequencyOfSaves=Konfigurer rengøringsplanlagt job for at indstille log backupfrekvens +YouCanUseDOL_DATA_ROOT=Du kan bruge DOL_DATA_ROOT/dolibarr.log til en logfil i Dolibarr "dokumenter" mappen. Du kan indstille en anden sti til at gemme denne fil. +ErrorUnknownSyslogConstant=Konstant %s er ikke en kendt Syslog konstant +OnlyWindowsLOG_USER=På Windows understøttes kun LOG_USER-funktionen +CompressSyslogs=Komprimering og backup af debug logfiler (genereret af modul Log for debug) +SyslogFileNumberOfSaves=Antal backup logfiler, der skal opbevares +ConfigureCleaningCronjobToSetFrequencyOfSaves=Konfigurer det planlagte oprydningsjob for at indstille hyppigheden af log backup ##### Donations ##### -DonationsSetup=Indstilling af donationsmodul -DonationsReceiptModel=Skabelon for donationen modtagelse +DonationsSetup=Opsætning af donationsmodul +DonationsReceiptModel=Skabelon for donationskvittering ##### Barcode ##### BarcodeSetup=Stregkode opsætning -PaperFormatModule=Print format modul -BarcodeEncodeModule=Barcode encoding type +PaperFormatModule=Udskriftsformatmodul +BarcodeEncodeModule=Stregkode kodningstype CodeBarGenerator=Stregkode generator ChooseABarCode=Ingen generator defineret -FormatNotSupportedByGenerator=Format, der ikke understøttes af denne generator -BarcodeDescEAN8=Barcode typeidentifikationsmærker EAN8 -BarcodeDescEAN13=Barcode typeidentifikationsmærker EAN13 -BarcodeDescUPC=Barcode typeidentifikationsmærker UPC -BarcodeDescISBN=Barcode typeidentifikationsmærker ISBN -BarcodeDescC39=Barcode af type C39 -BarcodeDescC128=Barcode af type C128 +FormatNotSupportedByGenerator=Formatet understøttes ikke af denne generator +BarcodeDescEAN8=Stregkode af typen EAN8 +BarcodeDescEAN13=Stregkode af typen EAN13 +BarcodeDescUPC=Stregkode af typen UPC +BarcodeDescISBN=Stregkode af typen ISBN +BarcodeDescC39=Stregkode af type C39 +BarcodeDescC128=Stregkode af typen C128 BarcodeDescDATAMATRIX=Stregkode af typen Datamatrix -BarcodeDescQRCODE=Stregkode af typen QR-kode -GenbarcodeLocation=Barcode generation kommandolinje værktøj (bruges af intern motor til nogle stregkode typer). Skal være kompatibel med "genbarcode".
For eksempel: / usr / local / bin / genbarcode +BarcodeDescQRCODE=Stregkode af typen QR kode +GenbarcodeLocation=Kommandolinje værktøj til generering af stregkoder (bruges af intern motor til nogle stregkodetyper). Skal være kompatibel med "genbarcode".
For eksempel: /usr/local/bin/genbarcode BarcodeInternalEngine=Intern motor -BarCodeNumberManager=Manager til automatisk definere stregkode numre +BarCodeNumberManager=Styrer til automatisk at definere stregkodenumre ##### Prelevements ##### -WithdrawalsSetup=Opsætning af modul Direkte debiteringer +WithdrawalsSetup=Opsætning af modul Direct Debit payments ##### ExternalRSS ##### -ExternalRSSSetup=Ekstern import af RSS-import -NewRSS=Ny RSS Feed -RSSUrl=RSS-URL +ExternalRSSSetup=Ekstern RSS import opsætning +NewRSS=Nyt RSS-feed +RSSUrl=RSS URL RSSUrlExample=Et interessant RSS-feed ##### Mailing ##### -MailingSetup=Opsætning af EMail-modul -MailingEMailFrom=Afsender email (Fra) til e-mails sendt via e-mail modul -MailingEMailError=Return Email (Fejl til) for e-mails med fejl -MailingDelay=Sekunder for at vente efter at sende næste besked +MailingSetup=Opsætning af e-mailmodul +MailingEMailFrom=Afsender e-mail (Fra) for e-mails sendt med e-mail-modul +MailingEMailError=Returnerings e-mail (fejl-til) for e-mails med fejl +MailingDelay=Sekunder at vente efter afsendelse af næste besked ##### Notification ##### -NotificationSetup=Opsætning af e-mail-meddelelsesmodul -NotificationEMailFrom=Afsender-e-mail (Fra) for e-mails, der sendes af meddelelsesmodulet +NotificationSetup=Opsætning af e-mail meddelelsesmodul +NotificationEMailFrom=Afsender-e-mail (Fra) for e-mails sendt af meddelelsesmodulet FixedEmailTarget=Modtager -NotificationDisableConfirmMessageContact=Skjul listen over modtagere (abonnerer som kontakt) af meddelelser i bekræftelsesmeddelelsen -NotificationDisableConfirmMessageUser=Skjul listen over modtagere (abonnerer som bruger) af meddelelser i bekræftelsesmeddelelsen -NotificationDisableConfirmMessageFix=Skjul listen over modtagere (tilmeldt som global e-mail) af meddelelser i bekræftelsesmeddelelsen +NotificationDisableConfirmMessageContact=Skjul listen over modtagere (abonnerer som kontakt) af meddelelser i bekræftelses meddelelsen +NotificationDisableConfirmMessageUser=Skjul listen over modtagere (abonnerer som bruger) af meddelelser i bekræftelses meddelelsen +NotificationDisableConfirmMessageFix=Skjul listen over modtagere (tilmeldt som global e-mail) af meddelelser i bekræftelses meddelelsen ##### Sendings ##### SendingsSetup=Opsætning af forsendelsesmodul -SendingsReceiptModel=Afsendelse modtagelsen model -SendingsNumberingModules=Forsendelses nummererings format -SendingsAbility=Support forsendelsesark til kundeleverancer -NoNeedForDeliveryReceipts=I de fleste tilfælde anvendes forsendelsesark både som ark til kundeleverancer (liste over produkter, der skal sendes) og ark, der modtages og underskrives af kunden. Kvitteringen for produktleverancer er derfor en duplikeret funktion og aktiveres sjældent. +SendingsReceiptModel=Forsendelseskvitteringsmodel +SendingsNumberingModules=Forsendelsnummererings moduler +SendingsAbility=Support følgeseddel til kundeleverancer +NoNeedForDeliveryReceipts=I de fleste tilfælde bruges følgesedler både som plukliste til kundeleverancer (liste over varer, der skal sendes) og dokument der modtages og underskrives af kunden. Derfor er kvitteringen for vareleverancer en duplikeret funktion og er sjældent aktiveret. FreeLegalTextOnShippings=Fritekst på forsendelser ##### Deliveries ##### -DeliveryOrderNumberingModules=Varelevering nummererings format -DeliveryOrderModel=Model for kvitteringsnumre for varelevering -DeliveriesOrderAbility=Tilbyd kvitteringer for varelevering -FreeLegalTextOnDeliveryReceipts=Fritekst på leveringskvitteringer +DeliveryOrderNumberingModules=Følgeseddelsnummereringsmodul +DeliveryOrderModel=Følgeseddelmodel +DeliveriesOrderAbility=Understøt følgesedler +FreeLegalTextOnDeliveryReceipts=Fritekst på følgesedler ##### FCKeditor ##### -AdvancedEditor=Avanceret tekstredigeringsværktøj -ActivateFCKeditor=Aktivér FCKeditor for: -FCKeditorForNotePublic=WYSIWIG oprettelse/udgave af feltet "offentlige noter" af elementer -FCKeditorForNotePrivate=WYSIWIG oprettelse/udgave af feltet "private notes" af elementer -FCKeditorForCompany=WYSIWIG oprettelse/udgave af feltbeskrivelsen af elementer (undtagen produkter/tjenester) -FCKeditorForProduct=WYSIWIG oprettelse/udgave af feltbeskrivelsen af produkter/tjenester -FCKeditorForProductDetails=WYSIWIG oprettelse / udgave af produkt detaljers linjer for alle enheder (forslag, ordrer, fakturaer osv ...). Advarsel: Brug af denne indstilling til denne sag anbefales ikke, da det kan skabe problemer med specialtegn og sideformatering, når du bygger PDF-filer. -FCKeditorForMailing= WYSIWIG oprettelsen / udgave af postforsendelser -FCKeditorForUserSignature=WYSIWIG oprettelse / udgave af bruger signatur -FCKeditorForMail=WYSIWIG oprettelse / udgave for al mail (undtagen Værktøjer-> eMailing) -FCKeditorForTicket=WYSIWIG oprettelse / udgave af billetter +AdvancedEditor=Avanceret editor +ActivateFCKeditor=Aktiver avanceret editor for: +FCKeditorForNotePublic=WYSIWYG oprettelse/redigering af feltet "offentlige noter" på elementer +FCKeditorForNotePrivate=WYSIWYG oprettelse/redigering af feltet "private noter" på elementer +FCKeditorForCompany=WYSIWYG oprettelse/redigering af feltbeskrivelsen på elementer (undtagen varer/ydelser) +FCKeditorForProduct=WYSIWYG oprettelse/redigering af feltbeskrivelsen på varer/ydelser +FCKeditorForProductDetails=WYSIWYG oprettelse/redigering af produktdetalje linjer for alle enheder (tilbud, ordrer, fakturaer osv...). Advarsel: Brug af denne mulighed anbefales ikke, da det kan skabe problemer med specialtegn og sideformatering, når du genererer PDF-filer. +FCKeditorForMailing= WYSIWYG oprettelse/redigering af masse e-mails (Værktøjer->e-mailing) +FCKeditorForUserSignature=WYSIWYG oprettelse/redigering af brugersignatur +FCKeditorForMail=WYSIWYG oprettelse/redigering af al e-mail (undtagen Værktøjer->eMailing) +FCKeditorForTicket=WYSIWYG oprettelse/redigering af opgaver ##### Stock ##### StockSetup=Opsætning af lagermodul -IfYouUsePointOfSaleCheckModule=Hvis du bruger standardmodulet (POS) som standard eller et eksternt modul, kan denne opsætning ignoreres af dit POS-modul. De fleste POS-moduler er som standard designet til at oprette en faktura med det samme og reducere lager uanset valgmulighederne her. Så hvis du har brug for eller ikke har et lagerfald, når du registrerer et salg fra din POS, skal du også kontrollere din POS-modulopsætning. +IfYouUsePointOfSaleCheckModule=Hvis du bruger Point of Sale-modulet (POS), der leveres som standard, eller et eksternt modul, kan denne opsætning blive ignoreret af dit POS-modul. De fleste POS-moduler er som standard designet til at oprette en faktura med det samme og reducere lagerbeholdningen uanset mulighederne her. Så hvis du har brug for eller ikke at have en lagernedgang, når du registrerer et salg fra din POS, så tjek også din POS-modulopsætning. ##### Menu ##### MenuDeleted=Menu slettet Menu=Menu Menus=Menuer -TreeMenuPersonalized=Tilpassede menuer +TreeMenuPersonalized=Personlige menuer NotTopTreeMenuPersonalized=Personlige menuer, der ikke er knyttet til en topmenuindgang NewMenu=Ny menu -MenuHandler=Menu handling +MenuHandler=Menuhandler MenuModule=Kilde modul -HideUnauthorizedMenu=Skjul uautoriserede menuer også for interne brugere (bare gråtonet ellers) -DetailId=Id menuen -DetailMenuHandler=Menu handling, hvor der viser ny menu -DetailMenuModule=Modul navn, hvis menuen indrejse kommer fra et modul -DetailType=Type menuen (øverst eller til venstre) -DetailTitre=Menu etiket eller etiket-kode til oversættelse -DetailUrl=Webadresse, hvor menuen sender dig (Absolut URL link eller eksternt link med http://) -DetailEnabled=Betingelse for at vise eller ikke indrejse +HideUnauthorizedMenu=Skjul uautoriserede menuer også for interne brugere (ellers gråmarkerede) +DetailId=ID menu +DetailMenuHandler=Menuhandler hvor den nye menu skal vises +DetailMenuModule=Modulnavn, hvis menuindgangen kommer fra et modul +DetailType=Menutype (øverst eller venstre) +DetailTitre=Menuetiket eller etiketkode til oversættelse +DetailUrl=URL, hvor menuen sender dig (Absolut URL-link eller eksternt link med http://) +DetailEnabled=Betingelse for at vise eller ingen adgang DetailRight=Betingelse for at vise uautoriserede grå menuer -DetailLangs=Lang filnavn for etiketten kode oversættelse -DetailUser=Praktikant / Eksterne / Alle +DetailLangs=Lang filnavn til etiketkodeoversættelse +DetailUser=Intern / Ekstern / Alle Target=Mål DetailTarget=Mål for links (_blank top åbner et nyt vindue) -DetailLevel=Niveau (-1: top menu, 0: header menuen> 0 menu og sub-menuen) -ModifMenu=Menu ændre -DeleteMenu=Slet menuen indrejse -ConfirmDeleteMenu=Er du sikker på, at du vil slette menuindgangen %s ? -FailedToInitializeMenu=Kunne ikke initialisere menuen +DetailLevel=Niveau (-1:topmenu, 0:hovedmenu, >0 menu og undermenu) +ModifMenu=Menuskift +DeleteMenu=Slet menupunkt +ConfirmDeleteMenu=Er du sikker på, at du vil slette menupunkt %s? +FailedToInitializeMenu=Menuen kunne ikke initialiseres ##### Tax ##### -TaxSetup=Opsætning af modul til skatter/afgifter. -OptionVatMode=Moms skyldig -OptionVATDefault=Standardbasis +TaxSetup=Opsætning af modul for afgifter, skatter og udbytte +OptionVatMode=skyldig moms +OptionVATDefault=Standard grundlag OptionVATDebitOption=Periodiseringsgrundlag -OptionVatDefaultDesc=Moms skyldes:
- ved levering af varer (baseret på faktura dato)
- på betalinger for tjenester -OptionVatDebitOptionDesc=Moms skyldes:
- ved levering af varer (baseret på faktura dato)
- på faktura (debet) for tjenester -OptionPaymentForProductAndServices=Kontantgrundlag for produkter og tjenesteydelser -OptionPaymentForProductAndServicesDesc=Moms skyldes:
- ved betaling for varer
- på betalinger for tjenesteydelser -SummaryOfVatExigibilityUsedByDefault=Tid for momsberettigelse som standard i henhold til den valgte mulighed: -OnDelivery=Om levering -OnPayment=Om betaling -OnInvoice=På fakturaen -SupposedToBePaymentDate=Betaling dato bruges, hvis leveringsdato ikke kendt -SupposedToBeInvoiceDate=Faktura, som anvendes dato +OptionVatDefaultDesc=Der skal betales moms:
- ved levering af varer (baseret på fakturadato)
- på betalinger for tjenesteydelser +OptionVatDebitOptionDesc=Der skal betales moms:
- ved levering af varer (baseret på fakturadato)
- på faktura (debet) for tjenesteydelser +OptionPaymentForProductAndServices=Kassegrundlag for produkter og ydelser +OptionPaymentForProductAndServicesDesc=Der skal betales moms:
- på betaling for varer
- på betalinger for tjenesteydelser +SummaryOfVatExigibilityUsedByDefault=Tidspunkt for momsberettigelse som standard i henhold til den valgte mulighed: +OnDelivery=Ved levering +OnPayment=Ved betaling +OnInvoice=Ved fakturering +SupposedToBePaymentDate=Betalingsdato brugt +SupposedToBeInvoiceDate=Fakturadato brugt Buy=Købe Sell=Sælge -InvoiceDateUsed=Faktura, som anvendes dato -YourCompanyDoesNotUseVAT=Dit firma er blevet defineret til ikke at bruge moms (Hjem - Opsætning - Firma / Organisation), så der er ingen momsindstillinger til opsætning. +InvoiceDateUsed=Fakturadato brugt +YourCompanyDoesNotUseVAT=Din virksomhed er blevet defineret til ikke at bruge moms (Hjem - Opsætning - Virksomhed/Organisation), så der er ingen momsmuligheder at sætte op. AccountancyCode=Regnskabskode AccountancyCodeSell=Salgskonto. kode -AccountancyCodeBuy=Indkøbskonto. kode +AccountancyCodeBuy=Købskonto. kode CREATE_NEW_VAT_WITHOUT_AUTO_PAYMENT=Hold afkrydsningsfeltet "Opret automatisk betalingen" tomt som standard, når du opretter en ny skat ##### Agenda ##### -AgendaSetup=Opsætning af modul for begivenheder og tidsplan -PasswordTogetVCalExport=Nøglen til at tillade eksport link +AgendaSetup=Opsætning af modul for tidsplan og begivenheder +PasswordTogetVCalExport=Nøgle til at godkende eksportlink SecurityKey = Sikkerhedsnøgle -PastDelayVCalExport=Må ikke eksportere begivenhed ældre end -AGENDA_USE_EVENT_TYPE=Brug begivenhedstyper (styret i menuopsætning -> Ordbøger -> Type agendahændelser) -AGENDA_USE_EVENT_TYPE_DEFAULT=Indstil denne standardværdi automatisk for type begivenhed i begivenhedsoprettelsesformular -AGENDA_DEFAULT_FILTER_TYPE=Indstil denne type begivenhed automatisk i søgefilter i dagsordblik -AGENDA_DEFAULT_FILTER_STATUS=Indstil denne status automatisk for begivenheder i søgefilter i dagsordblik -AGENDA_DEFAULT_VIEW=Hvilken visning vil du åbne som standard, når du vælger menu Agenda -AGENDA_REMINDER_BROWSER=Aktivér påmindelse om begivenhed i brugerens browser (Når påmindelsesdato er nået, vises en popup af browseren. Hver bruger kan deaktivere sådanne underretninger fra sin browseropsætning). -AGENDA_REMINDER_BROWSER_SOUND=Aktivér lydmeddelelse -AGENDA_REMINDER_EMAIL=Aktiver påmindelse om begivenhed via e-mails (påmindelsesmulighed / forsinkelse kan defineres for hver begivenhed). -AGENDA_REMINDER_EMAIL_NOTE=Bemærk: Hyppigheden af det planlagte job %s skal være tilstrækkelig til at være sikker på, at påmindelsen sendes på det rigtige tidspunkt. -AGENDA_SHOW_LINKED_OBJECT=Vis linkede objekter i tidsplanvisning +PastDelayVCalExport=Eksporter ikke begivenhed ældre end +AGENDA_USE_EVENT_TYPE=Brug begivenhedstyper (administreret i menuen Opsætning -> Ordbøger -> Tidsplan begivenheds typer) +AGENDA_USE_EVENT_TYPE_DEFAULT=Indstil automatisk denne standardværdi for begivenhedstype i begivenhedsoprettelsesformularen +AGENDA_DEFAULT_FILTER_TYPE=Indstil automatisk denne type begivenhed i søgefilteret i dagsordensvisningen +AGENDA_DEFAULT_FILTER_STATUS=Indstil automatisk denne status for begivenheder i søgefilteret i dagsordensvisningen +AGENDA_DEFAULT_VIEW=Hvilken visning vil du som standard åbne, når du vælger menu Tidsplan +AGENDA_REMINDER_BROWSER=Aktiver hændelsespåmindelse på brugerens browser (Når påmindelsesdatoen er nået, vises en pop op af browseren. Hver bruger kan deaktivere sådanne meddelelser fra sin browsermeddelelsesopsætning). +AGENDA_REMINDER_BROWSER_SOUND=Aktiver lydmeddelelse +AGENDA_REMINDER_EMAIL=Aktiver begivenhedspåmindelse via e-mails (påmindelsesmulighed/forsinkelse kan defineres for hver begivenhed). +AGENDA_REMINDER_EMAIL_NOTE=Bemærk: Hyppigheden af det planlagte job %s skal være nok til at være sikker på, at påmindelsen sendes på det rigtige tidspunkt. +AGENDA_SHOW_LINKED_OBJECT=Vis linket objekt i tidsplanvisning ##### Clicktodial ##### -ClickToDialSetup=Opsætning af Klik-for-at-ringe-modulet +ClickToDialSetup=Opsætning af Click To Dial modulet ClickToDialUrlDesc=Url kaldes, når man klikke på telefon billed. I URL kan du bruge tags
__ PHONETO __ , der vil blive erstattet med telefonnummeret til den person, der skal ringe
__ PHONEFROM __ , der vil blive erstattet med telefonnummeret til opkaldet person (din)
__ LOGIN __ , der vil blive erstattet med clicktodial login (defineret på brugerkort)
__ PASS __ , der vil blive erstattet med clicktodial adgangskode (defineret på bruger kort). ClickToDialDesc=Dette modul ændrer telefonnumre, når du bruger en stationær computer, til klikbare links. Et klik ringer op til nummeret. Dette kan bruges til at starte telefonopkaldet, når du bruger en blød telefon på skrivebordet eller når du f.eks. Bruger et CTI-system baseret på SIP-protokol. Bemærk: Når du bruger en smartphone, er telefonnumre altid klikbare. ClickToDialUseTelLink=Brug kun et link "tel:" på telefonnumre ClickToDialUseTelLinkDesc=Brug denne metode, hvis dine brugere har en softphone eller en softwaregrænseflade, installeret på den samme computer som browseren og kaldes, når du klikker på et link, der starter med "tel:" i din browser. Hvis du har brug for et link, der starter med "slurk:" eller en fuld serverløsning (ikke behov for lokal softwareinstallation), skal du indstille dette til "Nej" og udfylde det næste felt. ##### Point Of Sale (CashDesk) ##### CashDesk=Point of Sale -CashDeskSetup=Opsætning af Point of Sales-modul +CashDeskSetup=Opsætning af Point of Sales modulet CashDeskThirdPartyForSell=Standard generisk tredjepart til brug for salg -CashDeskBankAccountForSell=Cash konto til brug for sælger -CashDeskBankAccountForCheque=Standardkonto, der skal bruges til at modtage betalinger pr. Check -CashDeskBankAccountForCB=Konto til at bruge til at modtage kontant betaling ved kreditkort -CashDeskBankAccountForSumup=Standard bankkonto, der skal bruges til at modtage betalinger via SumUp -CashDeskDoNotDecreaseStock=Deaktiver lagerbeholdningen, når et salg er udført fra Point of Sale (hvis "nej", lagernedgang er udført for hvert salg udført fra POS, uanset optionen i modul lager). -CashDeskIdWareHouse=Force og begrænse lageret til brug for lagernedgang -StockDecreaseForPointOfSaleDisabled=Lagernedgang fra salgssted deaktiveret -StockDecreaseForPointOfSaleDisabledbyBatch=Lagernedgang i POS er ikke kompatibel med modul Serial / Lot management (aktuelt aktiv), så lagernedgang er deaktiveret. -CashDeskYouDidNotDisableStockDecease=Du har ikke deaktiveret lagernedgang, når du sælger fra Point of Sale. Derfor er et lager påkrævet. -CashDeskForceDecreaseStockLabel=Lager nedjusteret for batch produkter var tvunget. -CashDeskForceDecreaseStockDesc=Reducer først med de ældste best før og sidste salgs-datoer. -CashDeskReaderKeyCodeForEnter=tastekode for "Enter" defineret i stregkodelæser (Eksempel: 13) +CashDeskBankAccountForSell=Standardkonto, der skal bruges til at modtage kontante betalinger +CashDeskBankAccountForCheque=Standardkonto, der skal bruges til at modtage betalinger med check +CashDeskBankAccountForCB=Standardkonto, der skal bruges til at modtage betalinger med kreditkort +CashDeskBankAccountForSumup=Standard bankkonto, der skal bruges til at modtage betalinger med SumUp +CashDeskDoNotDecreaseStock=Deaktiver lagerreduktion, når et salg udføres fra Point of Sale (hvis "nej", foretages lagerreduktion for hvert salg foretaget fra POS, uanset den indstilling, der er indstillet i modulet Lager). +CashDeskIdWareHouse=Tving og begræns lageret til brug for lagerreduktion +StockDecreaseForPointOfSaleDisabled=Lagereduktion fra Point of Sale deaktiveret +StockDecreaseForPointOfSaleDisabledbyBatch=Lagerreduktion i POS er ikke kompatibel med modul Seriel/Lot-styring (aktuelt aktiv), så lagerreduktion er deaktiveret. +CashDeskYouDidNotDisableStockDecease=Du deaktiverede ikke lagerreduktion, da du foretog et salg fra Point of Sale. Derfor er et lager påkrævet. +CashDeskForceDecreaseStockLabel=Lagerreduktion for batchprodukter blev tvunget til. +CashDeskForceDecreaseStockDesc=Reducer først med de ældste Bedst før/Sidste anvendelses datoer. +CashDeskReaderKeyCodeForEnter=Karakterkode for "Enter" defineret i stregkodelæser (eksempel: 13) ##### Bookmark ##### -BookmarkSetup=Bogmærke modul opsætning -BookmarkDesc=Dette modul giver dig mulighed for at styre bogmærker. Du kan også tilføje genveje til Dolibarr-sider eller eksterne websteder på din venstre menu. -NbOfBoomarkToShow=Maksimalt antal bogmærker til at vise i venstre menu +BookmarkSetup=Opsætning af bogmærkemodul +BookmarkDesc=Dette modul giver dig mulighed for at administrere bogmærker. Du kan også tilføje genveje til alle Dolibarr sider eller eksterne websteder i din venstre menu. +NbOfBoomarkToShow=Maksimalt antal bogmærker, der kan vises i venstre menu ##### WebServices ##### -WebServicesSetup=Webservices modul opsætning -WebServicesDesc=Ved at aktivere dette modul Dolibarr blive en web service-server til at give diverse web-tjenester. -WSDLCanBeDownloadedHere=WSDL deskriptor sagsakter forudsat serviceses kan downloade det her -EndPointIs=SOAP-klienter skal sende deres anmodninger til Dolibarr-slutpunktet tilgængeligt på URL +WebServicesSetup=Opsætning af webservicemodul +WebServicesDesc=Ved at aktivere dette modul bliver Dolibarr en webserver til at levere diverse webtjenester. +WSDLCanBeDownloadedHere=WSDL beskrivelsesfil for leverede tjenester kan downloades her +EndPointIs=SOAP klienter skal sende deres anmodninger til Dolibarr endpoint, der er tilgængeligt på URL ##### API #### -ApiSetup=Indstilling af API-modul +ApiSetup=Opsætning af API modul ApiDesc=Ved at aktivere dette modul bliver Dolibarr en REST-server til at levere diverse webtjenester. -ApiProductionMode=Aktivér produktionsfunktion (dette aktiverer brug af en cache for servicehåndtering) +ApiProductionMode=Aktiver produktionstilstand (dette vil aktivere brugen af en cache til administration af tjenester) ApiExporerIs=Du kan udforske og teste API'erne på URL -OnlyActiveElementsAreExposed=Kun elementer fra aktiverede moduler er udsat +OnlyActiveElementsAreExposed=Kun elementer fra aktiverede moduler eksponeres ApiKey=Nøgle til API -WarningAPIExplorerDisabled=API-udforskeren er blevet deaktiveret. API-explorer er ikke forpligtet til at levere API-tjenester. Det er et værktøj for udvikleren at finde / test REST API'er. Hvis du har brug for dette værktøj, skal du gå i setup af modul API REST for at aktivere det. +WarningAPIExplorerDisabled=API Explorer er blevet deaktiveret. API Explorer er ikke påkrævet for at levere API-tjenester. Det er et værktøj for udviklere til at finde/teste REST API'er. Hvis du har brug for dette værktøj, skal du gå ind i opsætningen af modulet API REST for at aktivere det. ##### Bank ##### BankSetupModule=Opsætning af bankmodul FreeLegalTextOnChequeReceipts=Fritekst på check kvitteringer -BankOrderShow=Vis rækkefølgen af ​​bankkonti for lande, der anvender "detaljeret bank nummer" -BankOrderGlobal=General -BankOrderGlobalDesc=General display for +BankOrderShow=Vis rækkefølgen af bankkonti for lande ved hjælp af "detaljeret banknummer" +BankOrderGlobal=Generel +BankOrderGlobalDesc=Generel visningsrækkefølge BankOrderES=Spansk -BankOrderESDesc=Spansk display for -ChequeReceiptsNumberingModule=Kontrol kvittering nummererings format +BankOrderESDesc=Spansk visningsrækkefølge +ChequeReceiptsNumberingModule=Kvitterings nummereringsmodul ##### Multicompany ##### -MultiCompanySetup=Opsætning af multi-selskabsmodul +MultiCompanySetup=Opsætning af Multi-virksomhed modul ##### Suppliers ##### -SuppliersSetup=Opsætning af sælgermodul -SuppliersCommandModel=Komplet skabelon for indkøbsordre -SuppliersCommandModelMuscadet=Komplet skabelon med indkøbsordre (gammel implementering af cornas skabelon) -SuppliersInvoiceModel=Komplet skabelon til leverandørfaktura -SuppliersInvoiceNumberingModel=Leverandør fakturaer nummerering modeller -IfSetToYesDontForgetPermission=Hvis det er indstillet til en ikke-nullværdi, skal du ikke glemme at give tilladelser til grupper eller brugere, der har tilladelse til den anden godkendelse +SuppliersSetup=Opsætning af leverandørmodul +SuppliersCommandModel=Komplet skabelon for købsordre +SuppliersCommandModelMuscadet=Komplet skabelon af købsordre (gammel implementering af cornas skabelon) +SuppliersInvoiceModel=Komplet skabelon for leverandørfaktura +SuppliersInvoiceNumberingModel=Leverandørfakturaer nummereringsmodeller +IfSetToYesDontForgetPermission=Glem ikke at give rettigheder til grupper eller brugere, der er autoriseret for den anden godkendelse, hvis sat til en ikke-nul værdi ##### GeoIPMaxmind ##### -GeoIPMaxmindSetup=Opsætning af GeoIP Maxmind-modul -PathToGeoIPMaxmindCountryDataFile=Sti til fil, der indeholder Maxmind ip til land oversættelse.
Eksempler:
/usr/local/share/GeoIP/GeoIP.dat
/usr/share/GeoIP/GeoIP.dat
/usr/share/GeoIP/GeoLite2-Country.mmdb -NoteOnPathLocation=Bemærk, at din ip til land datafil skal være inde en mappe din PHP kan læse (Check din PHP open_basedir setup og filsystem tilladelser). -YouCanDownloadFreeDatFileTo=Du kan downloade en gratis demo version af Maxmind GeoIP land fil på %s. -YouCanDownloadAdvancedDatFileTo=Du kan også downloade en mere komplet version, med opdateringer på den Maxmind GeoIP land fil på %s. +GeoIPMaxmindSetup=Opsætning af GeoIP Maxmind modul +PathToGeoIPMaxmindCountryDataFile=Sti til fil, der indeholder Maxmind ip til land oversættelse.
Eksempler:
/usr/local/share/GeoIP/GeoIP.dat
/usr/share/GeoIP/GeoIP.dat
/usr/share/GeoIP/GeoLite2-Country.mmdb +NoteOnPathLocation=Bemærk, at din ip til lande-datafil skal være i en mappe, som din PHP kan læse (kontroller din PHP open_basedir opsætning og filsystemrettigheder). +YouCanDownloadFreeDatFileTo=Du kan downloade en gratis demoversion af Maxmind GeoIP landefilen på %s. +YouCanDownloadAdvancedDatFileTo=Du kan også downloade en mere komplet version med opdateringer, af Maxmind GeoIP landefilen på %s. TestGeoIPResult=Test af en konvertering IP -> land ##### Projects ##### -ProjectsNumberingModules=Projekt nummererings format +ProjectsNumberingModules=Projekt nummereringsmodul ProjectsSetup=Opsætning af projektmodul -ProjectsModelModule=Projekt rapport dokument model -TasksNumberingModules=Opgave nummererings format -TaskModelModule=Opgaver rapporterer dokumentmodel -UseSearchToSelectProject=Vent, indtil der trykkes på en tast, inden du læser indholdet på projektkombinationslisten.
Dette kan forbedre ydeevnen, hvis du har et stort antal projekter, men det er mindre praktisk. +ProjectsModelModule=Projektrapporter dokumentmodel +TasksNumberingModules=Opgavenummereringsmodul +TaskModelModule=Opgaverapporter dokumentmodel +UseSearchToSelectProject=Vent, indtil der trykkes på en tast, før du indlæser indholdet af projektkombinationslisten.
Dette kan forbedre ydeevnen, hvis du har et stort antal projekter, men det er mindre praktisk. ##### ECM (GED) ##### ##### Fiscal Year ##### AccountingPeriods=Regnskabsperioder AccountingPeriodCard=Regnskabsperiode NewFiscalYear=Ny regnskabsperiode -OpenFiscalYear=Åbent regnskabsperiode -CloseFiscalYear=Luk regnskabsperiode -DeleteFiscalYear=Slet regnskabsperiode +OpenFiscalYear=Åbning af regnskabsperiode +CloseFiscalYear=Lukning af regnskabsperiode +DeleteFiscalYear=Sletning af regnskabsperiode ConfirmDeleteFiscalYear=Er du sikker på at slette denne regnskabsperiode? ShowFiscalYear=Vis regnskabsperiode AlwaysEditable=Kan altid redigeres -MAIN_APPLICATION_TITLE=Force synligt navn på ansøgning (advarsel: Indstilling af dit eget navn her kan bryde autofil login-funktionen, når du bruger DoliDroid mobilapplikation) -NbMajMin=Mindste antal store bogstaver -NbNumMin=Mindste antal numeriske tegn -NbSpeMin=Mindste antal specialtegn -NbIteConsecutive=Maksimum antal gentagne samme tegn -NoAmbiCaracAutoGeneration=Brug ikke tvetydige tegn ("1", "l", "i", "|", "0", "O") til automatisk generering -SalariesSetup=Opsætning af lønnings modul +MAIN_APPLICATION_TITLE=Tving synligt navn på applikationen (advarsel: Hvis du indstiller dit eget navn her, kan det ødelægge autofill-loginfunktionen, når du bruger DoliDroid mobilapplikationen) +NbMajMin=Minimum antal store bogstaver +NbNumMin=Minimum antal numeriske tegn +NbSpeMin=Minimum antal specialtegn +NbIteConsecutive=Maksimalt antal gentagende af samme tegn +NoAmbiCaracAutoGeneration=Brug ikke tvetydige tegn ("1","l","i","|","0","O") til automatisk generering +SalariesSetup=Opsætning af lønmodul SortOrder=Sorteringsrækkefølge Format=Format -TypePaymentDesc=0: Kunde betalingstype, 1: Leverandør betalingstype, 2: Både kunder og leverandører betalingstype +TypePaymentDesc=0:Kundebetalingstype, 1:Leverandørbetalingstype, 2:Både kunde- og leverandørerbetalingstype IncludePath=Inkluder sti (defineret i variabel %s) -ExpenseReportsSetup=Opsætning af modul Expense Reports -TemplatePDFExpenseReports=Dokumentskabeloner til at generere regningsrapportdokument -ExpenseReportsRulesSetup=Opsætning af modul Expense Reports - Regler -ExpenseReportNumberingModules=Udgiftsrapport nummererings format -NoModueToManageStockIncrease=Intet modul, der er i stand til at styre automatisk lagerforhøjelse, er blevet aktiveret. Lagerforøgelse vil kun ske ved manuel indlæsning. -YouMayFindNotificationsFeaturesIntoModuleNotification=Du kan finde muligheder for e-mail-meddelelser ved at aktivere og konfigurere modulet "Meddelelse". +ExpenseReportsSetup=Opsætning af Udgiftsrapportmodul +TemplatePDFExpenseReports=Dokumentskabeloner til at generere udgiftsrapportdokument +ExpenseReportsRulesSetup=Opsætning af Udgiftsrapportmodul - Regler +ExpenseReportNumberingModules=Udgiftsrapport nummereringsmodul +NoModueToManageStockIncrease=Intet modul, der kan håndtere automatisk lagerforøgelse, er blevet aktiveret. Lagerforøgelse vil kun ske ved manuel input. +YouMayFindNotificationsFeaturesIntoModuleNotification=Du kan finde muligheder for e-mail-notifikationer ved at aktivere og konfigurere modulet "Meddelelser om forretningsbegivenheder". TemplatesForNotifications=Skabeloner til meddelelser -ListOfNotificationsPerUser=Liste over automatiske underretninger pr. Bruger * -ListOfNotificationsPerUserOrContact=Liste over mulige automatiske underretninger (ved forretningsbegivenhed) tilgængelig per bruger * eller pr. Kontakt ** +ListOfNotificationsPerUser=Liste over automatiske meddelelser pr. bruger* +ListOfNotificationsPerUserOrContact=Liste over mulige automatiske meddelelser (ved forretningsbegivenhed) tilgængelig pr. bruger* eller pr. kontakt** ListOfFixedNotifications=Liste over automatiske faste meddelelser -GoOntoUserCardToAddMore=Gå til fanen "Notifikationer" for en bruger for at tilføje eller fjerne underretninger for brugere -GoOntoContactCardToAddMore=Gå til fanen "Underretninger" fra en tredjepart for at tilføje eller fjerne underretninger for kontakter / adresser +GoOntoUserCardToAddMore=Gå til fanen "Underretninger" for en bruger for at tilføje eller fjerne notifikationer for brugere +GoOntoContactCardToAddMore=Gå til fanen "Underretninger" fra en tredjepart for at tilføje eller fjerne notifikationer for kontakter/adresser Threshold=Grænseværdi -BackupDumpWizard=Guiden til at oprette databasedump(Backup)-filen -BackupZipWizard=Guiden til at oprette arkivet med arkiv for dokumenter -SomethingMakeInstallFromWebNotPossible=Installation af eksternt modul er ikke muligt fra webgrænsefladen af ​​følgende årsag: -SomethingMakeInstallFromWebNotPossible2=Af denne grund er proces til opgradering beskrevet her en manuel proces, som kun en privilegeret bruger kan udføre. -InstallModuleFromWebHasBeenDisabledByFile=Installation af eksternt modul fra applikation er blevet deaktiveret af din administrator. Du skal bede ham om at fjerne filen %s for at tillade denne funktion. -ConfFileMustContainCustom=Installation eller opbygning af et eksternt modul fra applikationen skal gemme modulfilerne i mappen %s . Hvis du vil have denne mappe behandlet af Dolibarr, skal du konfigurere din conf / conf.php for at tilføje de to direktelinjer:
$ dolibarr_main_url_root_alt = '/ custom';
$ dolibarr_main_document_root_alt = '%s /custom'; -HighlightLinesOnMouseHover=Fremhæv tabel linjer, når musen flytter passerer over -HighlightLinesColor=Fremhæv farve på linjen, når musen passerer (brug 'ffffff' til intet højdepunkt) -HighlightLinesChecked=Fremhæv farve på linjen, når den er markeret (brug 'ffffff' til ikke at fremhæve) +BackupDumpWizard=Guiden til at oprette database-backupfilen +BackupZipWizard=Guiden til at opbygge arkivet af dokumenter +SomethingMakeInstallFromWebNotPossible=Installation af eksternt modul er ikke mulig fra webgrænsefladen af følgende årsag: +SomethingMakeInstallFromWebNotPossible2=Af denne grund er processen til opgradering beskrevet her en manuel proces, som kun en privilegeret bruger kan udføre. +InstallModuleFromWebHasBeenDisabledByFile=Installation af eksternt modul fra applikationen er blevet deaktiveret af din administrator. Du skal bede ham om at fjerne filen %s for at tillade denne funktion. +ConfFileMustContainCustom=Installation eller opbygning af et eksternt modul fra applikationen skal gemme modulfilerne i mappen %s. For at få denne mappe behandlet af Dolibarr, skal du konfigurere din conf/conf.php for at tilføje de 2 direktivlinjer:
$dolibarr_main_url_root_alt='/custom';
$dolibarr_main_document_root_alt='%s/custom'; +HighlightLinesOnMouseHover=Fremhæv tabellinjer, når musen bevæges over +HighlightLinesColor=Fremhæv farven på linjen, når musen bevæges over (brug 'ffffff' for ingen fremhævelse) +HighlightLinesChecked=Fremhæv farven på linjen, når den er markeret (brug 'ffffff' for ingen fremhævelse) UseBorderOnTable=Vis venstre-højre grænser på tabeller BtnActionColor=Farve på handlingsknappen TextBtnActionColor=Tekstfarve på handlingsknappen TextTitleColor=Tekstfarve på sidetitel -LinkColor=Farve af links -PressF5AfterChangingThis=Tryk på CTRL + F5 på tastaturet eller ryd din browserens cache efter at have ændret denne værdi for at få den effektiv -NotSupportedByAllThemes=Vil arbejde med kerne temaer, kan ikke understøttes af eksterne temaer +LinkColor=Farve på links +PressF5AfterChangingThis=Tryk på CTRL+F5 på tastaturet eller ryd din browsers cache efter at have ændret denne værdi for at få den til at virke +NotSupportedByAllThemes=Virker med kernetemaer, understøttes muligvis ikke af eksterne temaer BackgroundColor=Baggrundsfarve -TopMenuBackgroundColor=Baggrundsfarve til topmenuen -TopMenuDisableImages=Skjul billeder i topmenuen +TopMenuBackgroundColor=Baggrundsfarve til topmenu +TopMenuDisableImages=Ikon eller tekst i topmenuen LeftMenuBackgroundColor=Baggrundsfarve til venstre menu -BackgroundTableTitleColor=Baggrundsfarve til tabel titel linje -BackgroundTableTitleTextColor=Tekstfarve til tabel titellinje -BackgroundTableTitleTextlinkColor=Tekstfarve til linklinjens tabel titel -BackgroundTableLineOddColor=Baggrundsfarve til ulige bord linjer -BackgroundTableLineEvenColor=Baggrundsfarve til lige bordlinier -MinimumNoticePeriod=Mindste opsigelsesperiode (din anmodning om orlov skal ske inden denne forsinkelse) -NbAddedAutomatically=Antal dage, der tilføjes til tællere af brugere (automatisk) hver måned -EnterAnyCode=Dette felt indeholder en reference til identifikation af linjen. Indtast en hvilken som helst værdi efter eget valg, men uden specialtegn. -Enter0or1=Tryk 0 eller 1 -UnicodeCurrency=Indtast her mellem seler, liste over byte nummer, der repræsenterer valutasymbolet. For eksempel: for $, indtast [36] - for Brasilien real R $ [82,36] - for €, indtast [8364] -ColorFormat=RGB-farven er i HEX-format, fx: FF0000 -PictoHelp=Ikonnavn i format:
- image.png for en billedfil i den aktuelle temamappe
- image.png@module, hvis filen er i mappen /img/ af et modul
- fa-xxx for en FontAwesomepicto fa-x
- fonwtawesome_xxx_fa_color_size for et FontAwesome fa-xxx-billede (med præfiks, farve og størrelse indstillet) -PositionIntoComboList=Linjens placering i kombinationslister -SellTaxRate=salgs moms ssats -RecuperableOnly=Ja for moms "Ikke opfattet, men genoprettelig" dedikeret til nogle stater i Frankrig. Hold værdi til "Nej" i alle andre tilfælde. -UrlTrackingDesc=Hvis udbyderen eller transporttjenesten tilbyder en side eller et websted for at kontrollere status for dine forsendelser, kan du indtaste det her. Du kan bruge tasten {TRACKID} i URL-parametrene, så systemet vil erstatte det med det sporingsnummer, som brugeren indtastede på forsendelseskortet. -OpportunityPercent=Når du opretter en mulighed, vil du definere en anslået mængde projekt/mulighed. Ifølge mulighedens status kan dette beløb multipliceres med denne sats for at vurdere et samlet beløb, som alle dine muligheder kan generere. Værdien er en procentdel (mellem 0 og 100). -TemplateForElement=Denne mailskabelon er relateret til hvilken type objekt? En e -mail -skabelon er kun tilgængelig, når du bruger knappen "Send e -mail" fra det relaterede objekt. -TypeOfTemplate=Type skabelon -TemplateIsVisibleByOwnerOnly=Skabelon er kun synlig for ejeren +BackgroundTableTitleColor=Baggrundsfarve for tabeltitellinje +BackgroundTableTitleTextColor=Tekstfarve til tabeltitellinje +BackgroundTableTitleTextlinkColor=Tekstfarve for linklinje i tabeltitel +BackgroundTableLineOddColor=Baggrundsfarve til ulige tabellinjer +BackgroundTableLineEvenColor=Baggrundsfarve til lige tabellinjer +MinimumNoticePeriod=Minimum varselsfrist (din anmodning om orlov skal ske inden denne forsinkelse) +NbAddedAutomatically=Antal dage tilføjet til brugertællere (automatisk) hver måned +EnterAnyCode=Dette felt indeholder en reference til at identificere linjen. Indtast en værdi efter eget valg, men uden specialtegn. +Enter0or1=Indtast 0 eller 1 +UnicodeCurrency=Indtast her mellem firkantede parenteser, liste over byte nummer, der repræsenterer valutasymbolet. For eksempel: for $, indtast [36] - for Brasiliansk real R$ [82,36] - for €, indtast [8364] +ColorFormat=RGB-farven er i HEX-format, f.eks.: FF0000 +PictoHelp=Ikonnavn i format:
- image.png for en billedfil i den aktuelle temamappe
- image.png@module, hvis filen er i mappen /img/ fra modul
- fa-xxx for en FontAwesome fa-xxx picto
- fontawesome_xxx_fa_color_size for et FontAwesome fa-xxx-billede (med præfiks, farve og størrelse indstillet) +PositionIntoComboList=Placering af linje i kombinationslister +SellTaxRate=momssats +RecuperableOnly=Ja for moms "Ikke opfattet, men kan tilbagebetales" dedikeret til en tilstand i Frankrig. Hold værdien til "Nej" i alle andre tilfælde. +UrlTrackingDesc=Hvis udbyderen eller transporttjenesten tilbyder en side eller et websted for at kontrollere status for dine forsendelser, kan du indtaste det her. Du kan bruge nøglen {TRACKID} i URL-parametrene, så systemet erstatter den med det sporingsnummer, som brugeren indtastede på forsendelseskortet. +OpportunityPercent=Når du opretter et kundeemne, vil du definere en estimeret mængde projekt/lead. I henhold til status for kundeemnet kan dette beløb ganges med denne sats for at evaluere et samlet beløb, som alle dine kundeemner kan generere. Værdien er en procentdel (mellem 0 og 100). +TemplateForElement=Denne mailskabelon er relateret til hvilken type objekt? En e-mail-skabelon er kun tilgængelig, når du bruger knappen "Send e-mail" fra det relaterede objekt. +TypeOfTemplate=Skabelontype +TemplateIsVisibleByOwnerOnly=Skabelonen er kun synlig for ejeren VisibleEverywhere=Synlig overalt -VisibleNowhere=Synlig ingen steder -FixTZ=TimeZone fix -FillFixTZOnlyIfRequired=Eksempel: +2 (kun udfyld hvis der opstår problem) -ExpectedChecksum=Forventet checksum -CurrentChecksum=Nuværende checksum +VisibleNowhere=Synlig intetsteds +FixTZ=TimeZone korrektion +FillFixTZOnlyIfRequired=Eksempel: +2 (udfyld kun, hvis der er problemer) +ExpectedChecksum=Forventet kontrolsum +CurrentChecksum=Nuværende kontrolsum ExpectedSize=Forventet størrelse CurrentSize=Nuværende størrelse -ForcedConstants=Påkrævede konstante værdier -MailToSendProposal=Kundeforslag +ForcedConstants=Nødvendige konstante værdier +MailToSendProposal=Kundetilbud MailToSendOrder=Salgsordrer MailToSendInvoice=Kundefakturaer MailToSendShipment=Forsendelser -MailToSendIntervention=Interventioner -MailToSendSupplierRequestForQuotation=Anmodning om citat +MailToSendIntervention=interventioner +MailToSendSupplierRequestForQuotation=Anmodning om tilbud MailToSendSupplierOrder=Indkøbsordre MailToSendSupplierInvoice=Leverandørfakturaer MailToSendContract=Kontrakter MailToSendReception=Modtagelse -MailToThirdparty=Tredjepart +MailToThirdparty=Tredje partier MailToMember=Medlemmer MailToUser=Brugere MailToProject=Projekter MailToTicket=Opgaver -ByDefaultInList=Vis som standard i listevisning +ByDefaultInList=Vis som standard på listevisning YouUseLastStableVersion=Du bruger den seneste stabile version -TitleExampleForMajorRelease=Eksempel på besked, du kan bruge til at annoncere denne store udgivelse (brug det gratis at bruge det på dine websteder) -TitleExampleForMaintenanceRelease=Eksempel på besked, du kan bruge til at annoncere denne vedligeholdelsesudgivelse (lad det være gratis at bruge det på dine websteder) -ExampleOfNewsMessageForMajorRelease=Dolibarr ERP & CRM %s er tilgængelig. Version %s er en stor udgivelse med mange nye funktioner til både brugere og udviklere. Du kan downloade det fra downloadområdet på https://www.dolibarr.org portal (underkatalog Stable versioner). Du kan læse ChangeLog for en komplet liste over ændringer. -ExampleOfNewsMessageForMaintenanceRelease=Dolibarr ERP & CRM %s er tilgængelig. Version %s er en vedligeholdelsesversion, der indeholder kun fejlrettelser. Vi anbefaler alle brugere at opgradere til denne version. En vedligeholdelsesfrigivelse introducerer ikke nye funktioner eller ændringer i databasen. Du kan hente den fra downloadområdet på https://www.dolibarr.org portal (underkatalog Stable versioner). Du kan læse ChangeLog for en komplet liste over ændringer. -MultiPriceRuleDesc=Når valgmuligheden "Flere prisniveauer pr. Produkt / service" er aktiveret, kan du definere forskellige priser (et pr. Prisniveau) for hvert produkt. For at spare tid, kan du her angive en regel for at autokalulere en pris for hvert niveau baseret på prisen på første niveau, så du skal kun angive en pris for første niveau for hvert produkt. Denne side er designet til at spare dig tid, men er kun nyttig, hvis dine priser for hvert niveau er i forhold til første niveau. Du kan ignorere denne side i de fleste tilfælde. -ModelModulesProduct=Skabeloner til produktdokumenter -WarehouseModelModules=Skabeloner til dokumenter på lager -ToGenerateCodeDefineAutomaticRuleFirst=For at kunne generere koder automatisk skal du først definere en manager for at definere stregkodenummeret automatisk. -SeeSubstitutionVars=Se * note for liste over mulige substitutionsvariabler -SeeChangeLog=Se ChangeLog-fil (kun engelsk) +TitleExampleForMajorRelease=Eksempel på besked, du kan bruge til at annoncere denne større udgivelse (du er velkommen til at bruge den på dine websteder) +TitleExampleForMaintenanceRelease=Eksempel på besked, du kan bruge til at annoncere denne vedligeholdelsesudgivelse (du er velkommen til at bruge den på dine websteder) +ExampleOfNewsMessageForMajorRelease=Dolibarr ERP & CRM %s er tilgængelig. Version %s er en stor udgivelse med en masse nye funktioner til både brugere og udviklere. Du kan downloade det fra downloadområdet på https://www.dolibarr.org-portalen (underkatalog Stabile versioner). Du kan læse ChangeLog for en komplet liste over ændringer. +ExampleOfNewsMessageForMaintenanceRelease=Dolibarr ERP & CRM %s er tilgængelig. Version %s er en vedligeholdelsesversion, så indeholder kun fejlrettelser. Vi anbefaler alle brugere at opgradere til denne version. En vedligeholdelsesudgivelse introducerer ikke nye funktioner eller ændringer i databasen. Du kan downloade det fra downloadområdet på https://www.dolibarr.org-portalen (underkatalog Stabile versioner). Du kan læse ChangeLog for en komplet liste over ændringer. +MultiPriceRuleDesc=Når indstillingen "Flere niveauer af priser pr. vare/ydelse" er aktiveret, kan du definere forskellige priser (én pr. prisniveau) for hvert vare. For at spare tid, kan du her indtaste en regel for automatisk at beregne en pris for hvert niveau baseret på prisen på det første niveau, så du skal kun indtaste en pris for det første niveau for hvert produkt. Denne side er designet til at spare dig tid, men er kun nyttig, hvis dine priser for hvert niveau er i forhold til første niveau. Du kan ignorere denne side i de fleste tilfælde. +ModelModulesProduct=Skabeloner til varedokumenter +WarehouseModelModules=Skabeloner til lagerdokumenter +ToGenerateCodeDefineAutomaticRuleFirst=For at kunne generere koder automatisk, skal du først definere en program til automatisk at definere stregkodenummeret. +SeeSubstitutionVars=Se * note for en liste over mulige substitutionsvariabler +SeeChangeLog=Se ChangeLog-fil (kun på engelsk) AllPublishers=Alle udgivere -UnknownPublishers=Ukendte forlag +UnknownPublishers=Ukendte udgivere AddRemoveTabs=Tilføj eller fjern faner AddDataTables=Tilføj objekttabeller -AddDictionaries=Tilføj ordbøger -AddData=Tilføj objekter eller ordbøger data +AddDictionaries=Tilføj ordbogstabeller +AddData=Tilføj objekter eller ordbogsdata AddBoxes=Tilføj widgets AddSheduledJobs=Tilføj planlagte job -AddHooks=Tilføj kroge -AddTriggers=Tilføj udløsere +AddHooks=Tilføj Hooks +AddTriggers=Tilføj triggere AddMenus=Tilføj menuer -AddPermissions=Tilføj tilladelser +AddPermissions=Tilføj rettigheder AddExportProfiles=Tilføj eksportprofiler AddImportProfiles=Tilføj importprofiler AddOtherPagesOrServices=Tilføj andre sider eller tjenester -AddModels=Tilføj dokument eller nummereringsskabeloner +AddModels=Tilføj dokument- eller nummereringsskabeloner AddSubstitutions=Tilføj nøglesubstitutioner -DetectionNotPossible=Detektion er ikke muligt -UrlToGetKeyToUseAPIs=Url for at få token til at bruge API (når token er blevet modtaget, gemmes den i databasens brugertabel og skal anvendes ved hvert API-opkald) +DetectionNotPossible=Detektion ikke mulig +UrlToGetKeyToUseAPIs=Url for at få token til at bruge API (når token er modtaget, gemmes det i databasebrugertabellen og skal angives ved hvert API-kald) ListOfAvailableAPIs=Liste over tilgængelige API'er -activateModuleDependNotSatisfied=Modul "%s" afhænger af modulet "%s", der mangler, så modulet "%1$s" fungerer muligvis ikke korrekt. Venligst installer modul "%2$s" eller deaktiver modul "%1$s" hvis du vil være sikker fra enhver overraskelse -CommandIsNotInsideAllowedCommands=Kommandoen du forsøger at køre er ikke på listen over tilladte kommandoer defineret i parameter $ dolibarr_main_restrict_os_commands i filen conf.php . +activateModuleDependNotSatisfied=Modul "%s" afhænger af modul "%s", som mangler, så modulet "%1$s" fungerer muligvis ikke korrekt. Installer venligst modulet "%2$s" eller deaktiver modulet "%1$s", hvis du vil være sikker på overraskelser +CommandIsNotInsideAllowedCommands=Kommandoen du forsøger at køre er ikke på listen over tilladte kommandoer defineret i parameter $dolibarr_main_restrict_os_commands i filen conf.php. LandingPage=Destinationsside -SamePriceAlsoForSharedCompanies=Hvis du bruger et multimediemodul med valget "Single price", vil prisen også være den samme for alle virksomheder, hvis produkterne deles mellem miljøer -ModuleEnabledAdminMustCheckRights=Modulet er blevet aktiveret. Tilladelser til aktiverede modul(er) blev kun givet til admin brugere. Du kan muligvis give tilladelse til andre brugere eller grupper manuelt, hvis det er nødvendigt. -UserHasNoPermissions=Denne bruger har ingen tilladelser defineret -TypeCdr=Brug "Ingen", hvis betalingsdatoen er faktura dato plus et delta i dage (delta er feltet "%s")
Brug "Ved slutningen af ​​måneden", hvis, efter deltaet, skal datoen hæves for at nå frem til slutningen af ​​måneden (+ en valgfri "%s" i dage)
Brug "Nuværende / Næste" for at have betalingsfristen den første Nth af måneden efter deltaet (delta er feltet "%s", N er gemt i feltet "%s") -BaseCurrency=Referencens valuta af virksomheden (gå i setup af firma for at ændre dette) -WarningNoteModuleInvoiceForFrenchLaw=Dette modul %s er i overensstemmelse med franske love (Loi Finance 2016). -WarningNoteModulePOSForFrenchLaw=Dette modul %s er i overensstemmelse med franske love (Loi Finance 2016), fordi modul Non Reversible Logs automatisk aktiveres. -WarningInstallationMayBecomeNotCompliantWithLaw=Du forsøger at installere modul %s, der er et eksternt modul. Aktivering af et eksternt modul betyder, at du har tillid til udgiveren af ​​det pågældende modul, og at du er sikker på, at dette modul ikke har negativ indflydelse på din applikations adfærd og er i overensstemmelse med lovene i dit land (%s). Hvis modulet introducerer en ulovlig funktion, bliver du ansvarlig for brugen af ​​ulovlig software. -MAIN_PDF_MARGIN_LEFT=Venstre margin på PDF -MAIN_PDF_MARGIN_RIGHT=Højre margin på PDF -MAIN_PDF_MARGIN_TOP=Top margin på PDF +SamePriceAlsoForSharedCompanies=Bruger du et multivirksomhed modul, med valget "Enkelt pris", vil prisen også være den samme for alle virksomheder, hvis produkter deles mellem miljøer +ModuleEnabledAdminMustCheckRights=Modulet er blevet aktiveret. Rettigheder til aktiverede modul(er) blev kun givet til administratorbrugere. Du skal muligvis give rettigheder til andre brugere eller grupper manuelt, hvis det er nødvendigt. +UserHasNoPermissions=Denne bruger har ingen rettigheder defineret +TypeCdr=Brug "Ingen", hvis betalingsdatoen er fakturadato plus et delta i dage (delta er feltet "%s")
Brug "Ved slutningen af måneden", hvis datoen efter delta skal øges for at nå slutningen måned (+ et valgfrit "%s" i dage)
Brug "Nuværende/Næste" for at få betalingsterminsdatoen til at være den første N'te i måneden efter delta (delta er feltet "%s", N gemmes i feltet "%s") +BaseCurrency=Virksomhedens referencevaluta (gå ind i virksomhedens opsætning for at ændre dette) +WarningNoteModuleInvoiceForFrenchLaw=Dette modul %s er i overensstemmelse med fransk lovgivning (Loi Finance 2016). +WarningNoteModulePOSForFrenchLaw=Dette modul %s er i overensstemmelse med fransk lovgivning (Loi Finance 2016), fordi modulet Non Reversible Logs automatisk aktiveres. +WarningInstallationMayBecomeNotCompliantWithLaw=Du forsøger at installere modul %s, som er et eksternt modul. Aktivering af et eksternt modul betyder, at du har tillid til udgiveren af dette modul, og at du er sikker på, at dette modul ikke har en negativ indvirkning på din applikations virkemåde og er i overensstemmelse med lovene i dit land (%s). Hvis modulet introducerer en ulovlig funktion, bliver du ansvarlig for brugen af ulovlig software. +MAIN_PDF_MARGIN_LEFT=Venstre margen på PDF +MAIN_PDF_MARGIN_RIGHT=Højre margen på PDF +MAIN_PDF_MARGIN_TOP=Topmargen på PDF MAIN_PDF_MARGIN_BOTTOM=Bundmargen på PDF MAIN_DOCUMENTS_LOGO_HEIGHT=Højde for logo på PDF MAIN_GENERATE_PROPOSALS_WITH_PICTURE=Tilføj kolonne til billede på forslagslinjer -MAIN_DOCUMENTS_WITH_PICTURE_WIDTH=Kolonnens bredde, hvis der tilføjes et billede på linjer -MAIN_PDF_NO_SENDER_FRAME=Skjul grænser på afsenderadresseramme -MAIN_PDF_NO_RECIPENT_FRAME=Skjul grænser for modtageradresseramme +MAIN_DOCUMENTS_WITH_PICTURE_WIDTH=Spaltens bredde, hvis et billede tilføjes på linjer +MAIN_PDF_NO_SENDER_FRAME=Skjul kanter på afsenderadresserammen +MAIN_PDF_NO_RECIPENT_FRAME=Skjul kanter på receptadresserammen MAIN_PDF_HIDE_CUSTOMER_CODE=Skjul kundekode -MAIN_PDF_HIDE_SENDER_NAME=Skjul afsender/firmanavn i adresseblok +MAIN_PDF_HIDE_SENDER_NAME=Skjul afsender/virksomhedsnavn i adresseblok PROPOSAL_PDF_HIDE_PAYMENTTERM=Skjul betalingsbetingelser -PROPOSAL_PDF_HIDE_PAYMENTMODE=Skjul betalingsmetode -MAIN_PDF_PROPAL_USE_ELECTRONIC_SIGNING=Tilføj elektronisk login i PDF -NothingToSetup=Der kræves ingen specifik opsætning for dette modul. +PROPOSAL_PDF_HIDE_PAYMENTMODE=Skjul betalingsmåde +MAIN_PDF_PROPAL_USE_ELECTRONIC_SIGNING=Tilføj elektronisk log i PDF +NothingToSetup=Der kræves ingen specifik opsætning af dette modul. SetToYesIfGroupIsComputationOfOtherGroups=Indstil dette til ja, hvis denne gruppe er en beregning af andre grupper -EnterCalculationRuleIfPreviousFieldIsYes=Indtast beregningsregel, hvis det forrige felt blev indstillet til Ja.
For eksempel:
CODEGRP1 + CODEGRP2 +EnterCalculationRuleIfPreviousFieldIsYes=Indtast beregningsregel, hvis forrige felt var sat til Ja.
For eksempel:
CODEGRP1+CODEGRP2 SeveralLangugeVariatFound=Flere sprogvarianter fundet RemoveSpecialChars=Fjern specialtegn -COMPANY_AQUARIUM_CLEAN_REGEX=Regex filter til ren værdi (COMPANY_AQUARIUM_CLEAN_REGEX) -COMPANY_DIGITARIA_CLEAN_REGEX=Regex-filter til ren værdi (COMPANY_DIGITARIA_CLEAN_REGEX) -COMPANY_DIGITARIA_UNIQUE_CODE=Duplikat ikke tilladt -GDPRContact=Databeskyttelsesansvarlig (DPO, Data Privacy eller GDPR-kontakt) -GDPRContactDesc=Hvis du opbevarer personoplysninger i dit informationssystem, kan du her navngive den kontaktperson, der er ansvarlig for den generelle databeskyttelsesforordning +COMPANY_AQUARIUM_CLEAN_REGEX=Regex-filter for at rense værdi (COMPANY_AQUARIUM_CLEAN_REGEX) +COMPANY_DIGITARIA_CLEAN_REGEX=Regex-filter for at rense værdi (COMPANY_DIGITARIA_CLEAN_REGEX) +COMPANY_DIGITARIA_UNIQUE_CODE=Duplikat er ikke tilladt +GDPRContact=Databeskyttelsesansvarlig (DPO, databeskyttelse eller GDPR-kontakt) +GDPRContactDesc=Hvis du opbevarer personoplysninger i dit informationssystem, kan du her navngive den kontaktperson, der er ansvarlig for GDPR HelpOnTooltip=Hjælpetekst til at vise på værktøjstip -HelpOnTooltipDesc=Indsæt tekst eller en oversættelsessnøgle her for at teksten skal vises i et værktøjstip, når dette felt vises i en formular -YouCanDeleteFileOnServerWith=Du kan slette denne fil på serveren med kommandolinje:
%s -ChartLoaded=Kort over konto indlæst -SocialNetworkSetup=Opsætning af modul Sociale netværk -EnableFeatureFor=Aktivér funktioner til %s -VATIsUsedIsOff=Bemærk: Muligheden for at bruge salgsafgift eller moms er blevet indstillet til Fra i menuen %s - %s, så Salgsskat eller moms anvendes altid 0 for salg. +HelpOnTooltipDesc=Indsæt tekst eller en oversættelsesnøgle her, så teksten vises i et værktøjstip, når dette felt vises i en formular +YouCanDeleteFileOnServerWith=Du kan slette denne fil på serveren med kommandolinjen:
%s +ChartLoaded=Kontoplan indlæst +SocialNetworkSetup=Opsætning af Sociale netværk modul +EnableFeatureFor=Aktiver funktioner til %s +VATIsUsedIsOff=Bemærk: Muligheden for at bruge moms er sat til Off i menuen %s - %s, så moms sats vil altid være 0 for salg. SwapSenderAndRecipientOnPDF=Skift afsender- og modtageradresseposition på PDF-dokumenter -FeatureSupportedOnTextFieldsOnly=Advarsel, funktion understøttet kun i tekstfelter og kombinationslister. Også en URL-parameterhandling = Opret eller handling = redigering skal indstilles ELLER sidenavnet skal slutte med 'new.php' for at udløse denne funktion. -EmailCollector=Email samler -EmailCollectorDescription=Tilføj et planlagt job og en opsætningsside for at scanne jævnligt emailkasser (ved hjælp af IMAP-protokollen) og optag e-mails, der er modtaget i din ansøgning, på det rigtige sted og / eller lav nogle poster automatisk (som muligheder). -NewEmailCollector=Ny Email Collector -EMailHost=Vært af e-mail-IMAP-server -MailboxSourceDirectory=Postkasse kilde bibliotek -MailboxTargetDirectory=Postkasse målkatalog -EmailcollectorOperations=Operationer at gøre af samleren -EmailcollectorOperationsDesc=Opgaver udføres fra øverste til nederste ordre -MaxEmailCollectPerCollect=Maks antal Emails indsamlet pr. Samling -CollectNow=Indsamle nu -ConfirmCloneEmailCollector=Er du sikker på, at du vil klone e-mail-samleren %s? -DateLastCollectResult=Dato for seneste indsamlingsforsøg -DateLastcollectResultOk=Dato for seneste succes med indsamling +FeatureSupportedOnTextFieldsOnly=Advarsel, funktion understøttet kun på tekstfelter og kombinationslister. Også en URL-parameter action=create eller action=edit skal indstilles ELLER sidenavn skal slutte med 'new.php' for at udløse denne funktion. +EmailCollector=E-mail samler +EmailCollectors=E-mail samlere +EmailCollectorDescription=Tilføj et planlagt job og en opsætningsside for at scanne regelmæssigt e-mail-bokse (ved hjælp af IMAP protokol) og registrere e-mails modtaget i dit program, på det rigtige sted og/eller oprette nogle poster automatisk (såsom kundeemner). +NewEmailCollector=Ny e-mail samler +EMailHost=Vært for e-mail IMAP-server +MailboxSourceDirectory=Postkassens kildemappe +MailboxTargetDirectory=Postkassens målmappe +EmailcollectorOperations=Operationer, der skal udføres af samler +EmailcollectorOperationsDesc=Operationer udføres fra top til bund +MaxEmailCollectPerCollect=Maks. antal indsamlede e-mails pr. indsamling +CollectNow=Indsaml nu +ConfirmCloneEmailCollector=Er du sikker på, at du vil klone e-mail samleren %s? +DateLastCollectResult=Dato for seneste opsamlingsforsøg +DateLastcollectResultOk=Dato for seneste gennemførte indindsamling LastResult=Seneste resultat -EmailCollectorHideMailHeaders=Inkluder ikke indholdet af e-mail-headeren i det gemte indhold af indsamlede e-mails -EmailCollectorHideMailHeadersHelp=Når det er aktiveret, tilføjes e-mail-headers ikke i slutningen af e-mail-indholdet, der er gemt som begivenheder. -EmailCollectorConfirmCollectTitle=Email samle bekræftelse +EmailCollectorHideMailHeaders=Inkluder ikke indholdet af e-mail headeren i det gemte indhold af indsamlede e-mails +EmailCollectorHideMailHeadersHelp=Når dette er aktiveret, tilføjes e-mail headers ikke i slutningen af e-mail indholdet, der er gemt som en begivenheds hændelser. +EmailCollectorConfirmCollectTitle=E-mail samler bekræftelse EmailCollectorConfirmCollect=Vil du køre denne samler nu? -EmailCollectorExampleToCollectTicketRequestsDesc=Saml e-mails, der matcher nogle regler, og opret automatisk en billet (modulbillet skal være aktiveret) med e-mail-oplysningerne. Du kan bruge denne samler, hvis du yder støtte via e-mail, så din billetanmodning bliver automatisk genereret. Aktiver også Collect_Responses for at indsamle svar fra din klient direkte på billetvisningen (du skal svare fra Dolibarr). -EmailCollectorExampleToCollectTicketRequests=Eksempel på indsamling af billetanmodningen (kun første besked) -EmailCollectorExampleToCollectAnswersFromExternalEmailSoftwareDesc=Scan din postkasse "Sendt" mappe for at finde e-mails, der blev sendt som svar på en anden e-mail direkte fra din e-mail-software og ikke fra Dolibarr. Hvis en sådan e-mail findes, registreres svaret i Dolibarr -EmailCollectorExampleToCollectAnswersFromExternalEmailSoftware=Eksempel på indsamling af e-mail-svar sendt fra en ekstern e-mail-software -EmailCollectorExampleToCollectDolibarrAnswersDesc=Saml alle e-mails, der er et svar på en e-mail sendt fra din ansøgning. En begivenhed (Module Agenda skal være aktiveret) med e-mail-svaret vil blive optaget på det gode sted. For eksempel, hvis du sender et kommercielt forslag, ordre, faktura eller besked om en billet via e-mail fra applikationen, og din kunde besvarer din e-mail, vil systemet automatisk fange svaret og tilføje det i din ERP. +EmailCollectorExampleToCollectTicketRequestsDesc=Saml e-mails, der matcher nogle regler, og opret automatisk en opgave (opgave modulet skal være aktiveret) med e-mail oplysningerne. Du kan bruge denne samler, hvis du yder support via e-mail, så din opgaveanmodning bliver automatisk genereret. Aktiver også Collect_Responses for at indsamle svar fra din klient direkte på opgavevisningen (du skal svare fra Dolibarr). +EmailCollectorExampleToCollectTicketRequests=Eksempel på indsamling af opgaveanmodningen (kun første besked) +EmailCollectorExampleToCollectAnswersFromExternalEmailSoftwareDesc=Scan din postkasse "Sendt" mappe for at finde e-mails, der blev sendt som svar på en anden e-mail direkte fra dit e-mail program og ikke fra Dolibarr. Hvis en sådan e-mail findes, registreres svaret i Dolibarr +EmailCollectorExampleToCollectAnswersFromExternalEmailSoftware=Eksempel på indsamling af e-mail svar sendt fra et ekstern e-mail program +EmailCollectorExampleToCollectDolibarrAnswersDesc=Saml alle e-mails, der er et svar på en e-mail sendt fra dit program. En begivenhed (Modulet Tidsplan skal være aktiveret) med e-mail svaret vil blive optaget på det rigtige sted. For eksempel, hvis du sender et tilbud, ordre, faktura eller besked om en opgave via e-mail fra programmet, og modtageren besvarer din e-mail, vil systemet automatisk fange svaret og tilføje det i din ERP. EmailCollectorExampleToCollectDolibarrAnswers=Eksempel, der samler alle indgående beskeder som svar på beskeder sendt fra Dolibarr' -EmailCollectorExampleToCollectLeadsDesc=Saml e-mails, der matcher nogle regler, og opret automatisk et kundeemne (modulprojekt skal være aktiveret) med e-mail-oplysningerne. Du kan bruge denne samler, hvis du vil følge dit lead ved hjælp af modulet Projekt (1 lead = 1 projekt), så dine leads bliver automatisk genereret. Hvis indsamleren Collect_Responses også er aktiveret, når du sender en e-mail fra dine kundeemner, forslag eller ethvert andet objekt, kan du også se svar fra dine kunder eller partnere direkte på applikationen.
Bemærk: Med dette indledende eksempel genereres titlen på kundeemnet inklusive e-mailen. Hvis tredjeparten ikke kan findes i databasen (ny kunde), vil leadet blive knyttet til tredjeparten med ID 1. -EmailCollectorExampleToCollectLeads=Eksempel på indsamling af kundeemner -EmailCollectorExampleToCollectJobCandidaturesDesc=Saml e-mails, der ansøger om jobtilbud (Modulrekruttering skal være aktiveret). Du kan fuldføre denne samler, hvis du automatisk vil oprette en kandidatur til en jobanmodning. Bemærk: Med dette indledende eksempel genereres titlen på kandidaturen inklusive e-mailen. -EmailCollectorExampleToCollectJobCandidatures=Eksempel på indsamling af jobkandidater modtaget på e-mail -NoNewEmailToProcess=Ingen ny email (matchende filtre), der skal behandles -NothingProcessed=Intet gjort -XEmailsDoneYActionsDone=%s e-mails kvalificerede, %s e-mails er behandlet (for %s-registrering / handlinger udført) +EmailCollectorExampleToCollectLeadsDesc=Indsaml e-mails, der matcher nogle regler, og opret automatisk et kundeemne (modulprojekt skal være aktiveret) med e-mail-oplysningerne. Du kan bruge denne samler, hvis du vil følge dit lead ved hjælp af modulet Projekt (1 lead = 1 projekt), så dine leads bliver automatisk genereret. Hvis samleren Collect_Responses også er aktiveret, når du sender en e-mail fra dine kundeemner, forslag eller ethvert andet objekt, kan du også se svar fra dine kunder eller partnere direkte i applikationen.
Bemærk: Med dette indledende eksempel genereres titlen på kundeemnet inklusive e-mailen. Hvis tredjeparten ikke kan findes i databasen (ny kunde), vil kundeemnet blive knyttet til tredjeparten med ID 1. +EmailCollectorExampleToCollectLeads=Eksempel på samling af kundeemner +EmailCollectorExampleToCollectJobCandidaturesDesc=Saml e-mails, der ansøger om jobtilbud (Rekrutterings modulet skal være aktiveret). Du kan fuldføre denne samler, hvis du automatisk vil oprette et kandidatur til en jobansøgning. Bemærk: Med dette indledende eksempel genereres titlen på kandidaturen inklusive e-mailen. +EmailCollectorExampleToCollectJobCandidatures=Eksempel på indsamling af jobkandidater modtaget via e-mail +NoNewEmailToProcess=Ingen ny e-mail (matchende filtre) at behandle +NothingProcessed=Intet udført +XEmailsDoneYActionsDone=%s e-mails prækvalificeret, %s e-mails behandlet med succes (for %s registrering/handlinger udført) RecordEvent=Optag en begivenhed i dagsordenen (med typen E-mail sendt eller modtaget) -CreateLeadAndThirdParty=Opret et mulighed (og en tredjepart om nødvendigt) -CreateTicketAndThirdParty=Opret en billet (linket til en tredjepart, hvis tredjeparten blev indlæst af en tidligere handling eller blev gættet fra en tracker i e-mail-headeren, uden tredjemand ellers) -CodeLastResult=Latest result code +CreateLeadAndThirdParty=Opret et kundeemne (og en tredjepart om nødvendigt) +CreateTicketAndThirdParty=Opret en billet (linket til en tredjepart, hvis tredjeparten blev indlæst af en tidligere handling eller blev gættet fra en tracker i e-mail headeren, uden tredjemand ellers) +CodeLastResult=Seneste resultatkode NbOfEmailsInInbox=Antal e-mails i kildekataloget -LoadThirdPartyFromName=Indlæs tredjeparts søgning på %s (kun belastning) -LoadThirdPartyFromNameOrCreate=Indlæs tredjepartssøgning på %s (opret hvis ikke fundet) -AttachJoinedDocumentsToObject=Gem vedhæftede filer i objektdokumenter, hvis der findes en ref for et objekt i e-mail-emnet. -WithDolTrackingID=Besked fra en samtale startet af en første e-mail sendt fra Dolibarr -WithoutDolTrackingID=Besked fra en samtale startet af en første e-mail, der IKKE blev sendt fra Dolibarr +LoadThirdPartyFromName=Indlæs tredjepartssøgning på %s (kun indlæsning) +LoadThirdPartyFromNameOrCreate=Indlæs tredjepartssøgning på %s (opret, hvis den ikke findes) +AttachJoinedDocumentsToObject=Gem vedhæftede filer i objektdokumenter, hvis der findes en ref af et objekt i e-mail emnet. +WithDolTrackingID=Besked fra en samtale initieret af en første e-mail sendt fra Dolibarr +WithoutDolTrackingID=Besked fra en samtale initieret af en første e-mail IKKE sendt fra Dolibarr WithDolTrackingIDInMsgId=Besked sendt fra Dolibarr WithoutDolTrackingIDInMsgId=Besked IKKE sendt fra Dolibarr CreateCandidature=Opret jobansøgning -FormatZip=Zip -MainMenuCode=Menu indtastningskode (hovedmenu) +FormatZip=ZIP +MainMenuCode=Menuindgangskode (hovedmenu) ECMAutoTree=Vis automatisk ECM-træ -OperationParamDesc=Definer de regler, der skal bruges til at udtrække eller angive værdier.
Eksempel på operationer, der skal udtrække et navn fra e-mailens emne:
name=EXTRACT:SUBJECT:Besked fra virksomheden ([^\n] *)
eksempel til operationer, der skaber objekter:
objproperty1 = SET: værdien til sæt
objproperty2 = SET: en værdi inklusive værdi af __objproperty1__
objproperty3 = SETIFEMPTY: værdi anvendes, hvis objproperty3 ikke allerede defineret
objproperty4 = EKSTRAKT: HEADER :X-Myheaderkey:\\s*([^\\s]*)
options_myextrafield1=EXTRACT:SUBJECT:([^\n]*)
object.objproperty5=EXTRACT:BODY(Mit firmanavn er\\s(Mit firmanavn er\\s: [^\\s]*)

Brug en ; char som separator for at udtrække eller indstille flere egenskaber. +OperationParamDesc=Definer de regler, der skal bruges til at udtrække eller angive værdier.
Eksempel på operationer, der skal udtrække et navn fra e-mailens emne:
name=EXTRACT:SUBJECT:Besked fra virksomheden ([^\\n]*)
Eksempel på handlinger, der opretter objekter:
objproperty1=SET:værdien der skal indstilles
objproperty2=SET:en værdi inklusive værdien af __objproperty1__
objproperty3=SETIFEMPTY:værdi, der bruges, hvis objproperty3 ikke allerede er defineret
objproperty4=EXTRACT:HEADER:X-Myheaderkey:\\s*([^\\s]*)
options_myextrafield1=EXTRACT:SUBJECT:([^\n]*)
object.objproperty5=EXTRACT:BODY:Mit firmanavn er\\s([^\\s]*)

Brug en ; karakter som separator for at udtrække eller indstille flere egenskaber. OpeningHours=Åbningstider -OpeningHoursDesc=Indtast her firmaets almindelige åbningstider. -ResourceSetup=Konfiguration af ressource modul -UseSearchToSelectResource=Brug en søgeformular til at vælge en ressource (i stedet for en rullemenu). -DisabledResourceLinkUser=Deaktiver funktion for at forbinde en ressource til brugere -DisabledResourceLinkContact=Deaktiver funktion for at forbinde en ressource til kontakter -EnableResourceUsedInEventCheck=Forbyd brug af den samme ressource på samme tid i dagsordenen -ConfirmUnactivation=Bekræft modul reset -OnMobileOnly=Kun på lille skærm (smartphone) -DisableProspectCustomerType=Deaktiver tredjepartstypen "Prospekt + Kunder" (så tredjepart skal være "Prospekt" eller "Kunder", men kan ikke være begge) -MAIN_OPTIMIZEFORTEXTBROWSER=Forenkle brugergrænsefladen til blindperson -MAIN_OPTIMIZEFORTEXTBROWSERDesc=Aktivér denne indstilling, hvis du er blind person, eller hvis du bruger programmet fra en tekstbrowser som Lynx eller Links. -MAIN_OPTIMIZEFORCOLORBLIND=Skift interfacefarve til farveblind person -MAIN_OPTIMIZEFORCOLORBLINDDesc=Aktivér denne indstilling, hvis du er en farveblind person, i nogle tilfælde ændrer grænsefladen farveopsætning for at øge kontrasten. -Protanopia=Protanopi +OpeningHoursDesc=Indtast her din virksomheds almindelige åbningstider. +ResourceSetup=Opsætning af ressourcemodul +UseSearchToSelectResource=Brug en søgeformular til at vælge en ressource (i stedet for en rulleliste). +DisabledResourceLinkUser=Deaktiver funktion at knytte en ressource til brugere +DisabledResourceLinkContact=Deaktiver funktion at knytte en ressource til kontakter +EnableResourceUsedInEventCheck=Forbyd brugen af den samme ressource på samme tid i dagsordenen +ConfirmUnactivation=Bekræft modulnulstilling +OnMobileOnly=Kun på lille skærm (smartphone). +DisableProspectCustomerType=Deaktiver "Kundeemne + Kunde" tredjepartstype (så tredjepart skal være "Kundeemne" eller "Kunde", men kan ikke være begge dele) +MAIN_OPTIMIZEFORTEXTBROWSER=Forenklet grænseflade for blinde +MAIN_OPTIMIZEFORTEXTBROWSERDesc=Aktiver denne mulighed, hvis du er en blind person, eller hvis du bruger programmet fra en tekstbrowser som Lynx eller Links. +MAIN_OPTIMIZEFORCOLORBLIND=Skift interfaces farve for farveblind person +MAIN_OPTIMIZEFORCOLORBLINDDesc=Aktiver denne mulighed, hvis du er en farveblind person, i nogle tilfælde vil grænsefladen ændre farveopsætningen for at øge kontrasten. +Protanopia=Protanopia Deuteranopes=Deuteranopes Tritanopes=Tritanopes -ThisValueCanOverwrittenOnUserLevel=Denne værdi kan overskrives af hver bruger fra sin brugerside - fanebladet '%s' -DefaultCustomerType=Standard tredjepartstype til "Ny kunde" oprettelsesformular -ABankAccountMustBeDefinedOnPaymentModeSetup=Bemærk: Bankkontoen skal defineres i modulet i hver betalingsmetode (Paypal, Stripe, ...) for at denne funktion skal fungere. -RootCategoryForProductsToSell=Rodkategori af produkter, der skal sælges -RootCategoryForProductsToSellDesc=Hvis det er defineret, er det kun produkter inden for denne kategori eller underordnede i denne kategori, der er tilgængelige i salgsstedet -DebugBar=Debug Bar -DebugBarDesc=Værktøjslinje, der leveres med en masse værktøjer til at forenkle fejlfinding -DebugBarSetup=DebugBar-opsætning +ThisValueCanOverwrittenOnUserLevel=Denne værdi kan overskrives af den enkelte bruger fra dennes brugerside - fanen '%s' +DefaultCustomerType=Standard tredjepartstype for oprettelsesformularen "Ny kunde". +ABankAccountMustBeDefinedOnPaymentModeSetup=Bemærk: Bankkontoen skal være defineret på modulet for hver betalingsmåde (Paypal, Stripe, ...) for at få denne funktion til at virke. +RootCategoryForProductsToSell=Rod kategori af produkter til salg +RootCategoryForProductsToSellDesc=Hvis defineret, vil kun produkter inden for denne kategori eller underkategori i denne kategori være tilgængelige i Point Of Sale +DebugBar=Fejlfindingsbjælke +DebugBarDesc=Værktøjslinje, der kommer med en masse værktøjer til at forenkle fejlfinding +DebugBarSetup=Opsætning af Fejlfindingsbjælke GeneralOptions=Generelle indstillinger LogsLinesNumber=Antal linjer, der skal vises på fanen logfiler -UseDebugBar=Brug fejlfindingslinjen -DEBUGBAR_LOGS_LINES_NUMBER=Antal sidste loglinjer, der skal holdes i konsollen -WarningValueHigherSlowsDramaticalyOutput=Advarsel, højere værdier bremser dramatisk output -ModuleActivated=Modul %s er aktiveret og forsinker grænsefladen +UseDebugBar=Brug Fejlfindingsbjælken +DEBUGBAR_LOGS_LINES_NUMBER=Antal nyeste loglinjer, der skal opbevares i konsollen +WarningValueHigherSlowsDramaticalyOutput=Advarsel, højere værdier sløver output dramatisk +ModuleActivated=Modul %s er aktiveret og gør grænsefladen langsommere ModuleActivatedWithTooHighLogLevel=Modul %s er aktiveret med et for højt logningsniveau (prøv at bruge et lavere niveau for bedre ydeevne og sikkerhed) -ModuleSyslogActivatedButLevelNotTooVerbose=Modul %s er aktiveret, og logniveau (%s) er korrekt (ikke for detaljeret) +ModuleSyslogActivatedButLevelNotTooVerbose=Modul %s er aktiveret, og logniveau (%s) er korrekt (ikke for udførligt) IfYouAreOnAProductionSetThis=Hvis du er i et produktionsmiljø, skal du indstille denne egenskab til %s. AntivirusEnabledOnUpload=Antivirus aktiveret på uploadede filer -SomeFilesOrDirInRootAreWritable=Nogle filer eller mapper er ikke i en skrivebeskyttet tilstand +SomeFilesOrDirInRootAreWritable=Nogle filer eller mapper er ikke i skrivebeskyttet tilstand EXPORTS_SHARE_MODELS=Eksportmodeller deles med alle -ExportSetup=Opsætning af modul Eksport -ImportSetup=Opsætning af modul til import -InstanceUniqueID=Forekomstets unikke ID +ExportSetup=Opsætning af Eksportmodul +ImportSetup=Opsætning af Importmodul +InstanceUniqueID=Unikt ID for instansen SmallerThan=Mindre end LargerThan=Større end -IfTrackingIDFoundEventWillBeLinked=Bemærk, at hvis et sporings-id for et objekt findes i e-mailen, eller hvis e-mailen er et svar fra en e-mail-område, der er indsamlet og linket til et objekt, vil den oprettede begivenhed automatisk blive linket til det kendte relaterede objekt. -WithGMailYouCanCreateADedicatedPassword=Hvis du aktiverer valideringen af 2 trin med en GMail konto, anbefales det at oprette en dedikeret anden adgangskode til applikationen i stedet for at bruge dit eget kontos kodeord fra https://myaccount.google.com/. -EmailCollectorTargetDir=Det kan være en ønsket opførsel at flytte e-mailen til et andet tag/bibliotek, når den blev behandlet med succes. Angiv blot navnet på kataloget her for at bruge denne funktion (Brug IKKE specialtegn i navnet). Bemærk, at du også skal bruge en læse/skrive logind konto. -EmailCollectorLoadThirdPartyHelp=Du kan bruge denne handling til at bruge e-mail-indholdet til at finde og indlæse en eksisterende tredjepart i din database. Den fundne (eller oprettede) tredjepart vil blive brugt til følgende handlinger, der har brug for det.
For eksempel, hvis du vil oprette en tredjepart med et navn udtrukket fra en streng 'Navn: navn at finde' til stede i brødteksten, skal du bruge afsenderens e-mail som e-mail, du kan indstille parameterfeltet sådan:
'email= HEADER:^Fra:(.*);navn=EXTRACT:BODY:Name:\\s([^\\s]*);client=SET:2;'
+IfTrackingIDFoundEventWillBeLinked=Bemærk, at hvis et sporings-id for et objekt findes i e-mail, eller hvis e-mailen er et svar på en e-mail, der er indsamlet og knyttet til et objekt, vil den oprettede hændelse automatisk blive knyttet til det kendte relaterede objekt. +WithGMailYouCanCreateADedicatedPassword=Med en Gmail-konto, hvis du aktiverede 2-trins validering, anbefales det at oprette en dedikeret anden adgangskode til applikationen i stedet for at bruge din egen kontoadgangskode fra https://myaccount.google.com/. +EmailCollectorTargetDir=Det kan være en ønsket adfærd at flytte e-mailen til et anden tag/mappe, når den er blevet behandlet med succes. Indstil blot navnet på mappen her for at bruge denne funktion (brug IKKE specialtegn i navnet). Bemærk, at du også skal bruge en login-konto med læse/skrive rettigheder. +EmailCollectorLoadThirdPartyHelp=Du kan bruge denne handling til at bruge e-mail-indholdet til at finde og indlæse en eksisterende tredjepart i din database. Den fundne (eller oprettede) tredjepart vil blive brugt til følgende handlinger, der har brug for det.
For eksempel, hvis du vil oprette en tredjepart med et navn udtrukket fra en streng 'Navn: navn at finde' til stede i brødteksten, skal du bruge afsenderens e-mail som e-mail, du kan indstille parameterfeltet sådan:
'email=HEADER:^From:(.*);name=EXTRACT:BODY:Name:\\s([^\\s]*);client=SET:2;'
EndPointFor=Slutpunkt for %s: %s -DeleteEmailCollector=Slet e-mail-indsamler -ConfirmDeleteEmailCollector=Er du sikker på, at du vil slette denne e-mail-indsamler? -RecipientEmailsWillBeReplacedWithThisValue=Modtager-e-mails erstattes altid med denne værdi +DeleteEmailCollector=Slet e-mail-samler +ConfirmDeleteEmailCollector=Er du sikker på, at du vil slette denne e-mail-samler? +RecipientEmailsWillBeReplacedWithThisValue=Modtagers e-mails vil altid blive erstattet med denne værdi AtLeastOneDefaultBankAccountMandatory=Der skal defineres mindst 1 standardbankkonto RESTRICT_ON_IP=Tillad kun API-adgang til bestemte klient-IP'er (jokertegn ikke tilladt, brug mellemrum mellem værdier). Tom betyder, at alle kunder har adgang. IPListExample=127.0.0.1 192.168.0.2 [::1] BaseOnSabeDavVersion=Baseret på biblioteket SabreDAV version NotAPublicIp=Ikke en offentlig IP -MakeAnonymousPing=Lav en anonym Ping '+1' til Dolibarr foundation-serveren (udføres kun 1 gang efter installationen) for at lade fundamentet tælle antallet af Dolibarr-installation. -FeatureNotAvailableWithReceptionModule=Funktion ikke tilgængelig, når modulmodtagelse er aktiveret +MakeAnonymousPing=Lav et anonymt Ping '+1' til Dolibarr Foundation-serveren (kun udført 1 gang efter installationen) for at tillade Foundation at tælle antallet af Dolibarr-installationer. +FeatureNotAvailableWithReceptionModule=Funktionen er ikke tilgængelig, når Modtagelsesmodulet er aktiveret EmailTemplate=Skabelon til e-mail EMailsWillHaveMessageID=E-mails har et mærke 'Referencer', der matcher denne syntaks PDF_SHOW_PROJECT=Vis projekt på dokument -ShowProjectLabel=Projektmærke -PDF_USE_ALSO_LANGUAGE_CODE=Hvis du vil have nogle tekster i din PDF kopieret på 2 forskellige sprog i den samme genererede PDF, skal du indstille her dette andet sprog, så genereret PDF indeholder 2 forskellige sprog på samme side, det, der er valgt, når du genererer PDF og denne ( kun få PDF-skabeloner understøtter dette). Hold tomt i 1 sprog pr. PDF. -PDF_USE_A=Lav PDF -dokumenter med format PDF/A i stedet for PDF -format som standard -FafaIconSocialNetworksDesc=Indtast her koden for et FontAwesome-ikon. Hvis du ikke ved, hvad der er FontAwesome, kan du bruge den generiske værdi fa-adressebog. -RssNote=Bemærk: Hver RSS-feed-definition indeholder en widget, som du skal aktivere for at have den tilgængelig i instrumentbrættet\n  +ShowProjectLabel=Projektetiket +PDF_INCLUDE_ALIAS_IN_THIRDPARTY_NAME=Inkluder alias i tredjepartsnavn +THIRDPARTY_ALIAS=Navn tredjepart - Alias tredjepart +ALIAS_THIRDPARTY=Alias tredjepart - Navngiv tredjepart +PDF_USE_ALSO_LANGUAGE_CODE=Hvis du vil have nogle tekster i din PDF duplikeret på 2 forskellige sprog i den samme genererede PDF, skal du her indstille dette andet sprog, så genereret PDF vil indeholde 2 forskellige sprog på samme side, det der blev valgt ved generering af PDF og dette (kun få PDF-skabeloner understøtter dette). Hold tom for et sprog pr. PDF. +PDF_USE_A=Generer PDF-dokumenter med formatet PDF/A i stedet for standardformatet PDF +FafaIconSocialNetworksDesc=Indtast her koden for et FontAwesome-ikon. Hvis du ikke ved, hvad FontAwesome er, kan du bruge den generiske værdi fa-address-book. +RssNote=Bemærk: Hver RSS-feeddefinition giver en widget, som du skal aktivere for at have den tilgængelig på dashboardet JumpToBoxes=Gå til Opsætning -> Widgets -MeasuringUnitTypeDesc=Brug her en værdi som "størrelse", "overflade", "volumen", "vægt", "tid" -MeasuringScaleDesc=Skalaen er antallet af steder, du skal flytte decimaldelen for at matche standardreferenceenheden. For "tid" -enhedstype er det antallet af sekunder. Værdier mellem 80 og 99 er reserverede værdier. +MeasuringUnitTypeDesc=Brug her en værdi som "størrelse", "overflade", "volume", "vægt", "tid" +MeasuringScaleDesc=Skalaen er det antal steder, du skal flytte decimaldelen for at matche standardreferenceenheden. For "tids" enhedstype er det antallet af sekunder. Værdier mellem 80 og 99 er reserverede værdier. TemplateAdded=Skabelon tilføjet -TemplateUpdated=Skabelonen opdateret -TemplateDeleted=Skabelonen blev slettet -MailToSendEventPush=E-mail om påmindelse om begivenhed +TemplateUpdated=Skabelonen er opdateret +TemplateDeleted=Skabelonen er slettet +MailToSendEventPush=E-mail med påmindelse om begivenhed SwitchThisForABetterSecurity=Det anbefales at skifte denne værdi til %s for mere sikkerhed DictionaryProductNature= Produktets art -CountryIfSpecificToOneCountry=Land (hvis det er specifikt for et givet land) +CountryIfSpecificToOneCountry=Land (hvis specifikt for et givet land) YouMayFindSecurityAdviceHere=Du kan finde sikkerhedsrådgivning her -ModuleActivatedMayExposeInformation=Denne PHP-udvidelse kan udsætte følsomme data. Hvis du ikke har brug for det, skal du deaktivere det. -ModuleActivatedDoNotUseInProduction=Et modul designet til udviklingen er blevet aktiveret. Aktivér det ikke i et produktionsmiljø. -CombinationsSeparator=Separatorkarakter til produktkombinationer +ModuleActivatedMayExposeInformation=Denne PHP-udvidelse kan afsløre følsomme data. Hvis du ikke har brug for den, skal du deaktivere den. +ModuleActivatedDoNotUseInProduction=Et modul designet til udviklingen er blevet aktiveret. Aktiver det ikke i et produktionsmiljø. +CombinationsSeparator=Skilletegn for produktkombinationer SeeLinkToOnlineDocumentation=Se link til online dokumentation i topmenuen for eksempler -SHOW_SUBPRODUCT_REF_IN_PDF=Hvis funktionen "%s" i modul %s bruges, skal du vise detaljer om delprodukter af et sæt på PDF. +SHOW_SUBPRODUCT_REF_IN_PDF=Hvis funktionen "%s" i modulet %s bruges, vises detaljer om delprodukter af et sæt i PDF. AskThisIDToYourBank=Kontakt din bank for at få dette ID -AdvancedModeOnly=Tilladelse er kun tilgængelig i udvidet tilladelsestilstand -ConfFileIsReadableOrWritableByAnyUsers=Conf-filen kan læses eller skrives af alle brugere. Giv kun tilladelse til webserverbrugere og -grupper. +AdvancedModeOnly=Tilladelse er kun tilgængelig i avanceret tilladelsestilstand +ConfFileIsReadableOrWritableByAnyUsers=Conf-filen kan læses eller skrives af alle brugere. Giv kun tilladelsen til webserver service bruger og gruppe. MailToSendEventOrganization=Begivenhedsorganisation MailToPartnership=Partnerskab -AGENDA_EVENT_DEFAULT_STATUS=Standardhændelsesstatus, når du opretter en begivenhed fra formularen -YouShouldDisablePHPFunctions=Du skal deaktivere PHP-funktioner -IfCLINotRequiredYouShouldDisablePHPFunctions=Bortset fra hvis du har brug for at køre systemkommandoer i brugerdefineret kode, skal du deaktivere PHP-funktioner -PHPFunctionsRequiredForCLI=Til shell-formål (som planlagt jobbackup eller kørsel af et anitivurs-program) skal du beholde PHP-funktioner -NoWritableFilesFoundIntoRootDir=Ingen skrivbare filer eller mapper til de almindelige programmer blev fundet i din rodkatalog (God) +AGENDA_EVENT_DEFAULT_STATUS=Standard hændelsesstatus ved oprettelse af en hændelse fra formularen +YouShouldDisablePHPFunctions=Du bør deaktivere PHP-funktioner +IfCLINotRequiredYouShouldDisablePHPFunctions=Undtagen hvis du har brug for at køre systemkommandoer i brugerdefineret kode, skal du deaktivere PHP-funktioner +PHPFunctionsRequiredForCLI=Til shell-formål (som planlagt jobbackup eller kørsel af et antitivurs-program), skal du beholde PHP-funktioner +NoWritableFilesFoundIntoRootDir=Der blev ikke fundet nogen skrivbare filer eller mapper for de almindelige programmer i din rodmappe (godt) RecommendedValueIs=Anbefalet: %s -Recommended=Anbefalet +Recommended=Anbefalede NotRecommended=Ikke anbefalet ARestrictedPath=Nogle begrænsede veje CheckForModuleUpdate=Se efter opdateringer til eksterne moduler -CheckForModuleUpdateHelp=Denne handling opretter forbindelse til redaktører for eksterne moduler for at kontrollere, om en ny version er tilgængelig. +CheckForModuleUpdateHelp=Denne handling vil oprette forbindelse til redaktører af eksterne moduler for at kontrollere om en ny version er tilgængelig. ModuleUpdateAvailable=En opdatering er tilgængelig NoExternalModuleWithUpdate=Ingen opdateringer fundet for eksterne moduler -SwaggerDescriptionFile=Swagger API beskrivelsesfil (f.eks. Til brug med redoc) -YouEnableDeprecatedWSAPIsUseRESTAPIsInstead=Du aktiverede forældet WS API. Du skal bruge REST API i stedet. -RandomlySelectedIfSeveral=Valgt tilfældigt, hvis der er flere billeder tilgængelige -DatabasePasswordObfuscated=Databaseadgangskode er tilsløret i conf-fil -DatabasePasswordNotObfuscated=Databaseadgangskode er IKKE tilsløret i conf-fil +SwaggerDescriptionFile=Swagger API beskrivelsesfil (til brug med for eksempel redoc) +YouEnableDeprecatedWSAPIsUseRESTAPIsInstead=Du har aktiveret forældet WS API. Du bør bruge REST API i stedet. +RandomlySelectedIfSeveral=Tilfældigt valgt, hvis flere billeder er tilgængelige +DatabasePasswordObfuscated=Databaseadgangskode er tilsløret i conf-filen +DatabasePasswordNotObfuscated=Databaseadgangskoden er IKKE sløret i conf-filen APIsAreNotEnabled=API-moduler er ikke aktiveret YouShouldSetThisToOff=Du skal indstille dette til 0 eller fra -InstallAndUpgradeLockedBy=Installer og opgraderinger låses af filen %s +InstallAndUpgradeLockedBy=Installation og opgraderinger er låst af filen %s OldImplementation=Gammel implementering -PDF_SHOW_LINK_TO_ONLINE_PAYMENT=Hvis nogle online betalingsmoduler er aktiveret (Paypal, Stripe, ...), skal du tilføje et link i PDF'en for at foretage online betalingen +PDF_SHOW_LINK_TO_ONLINE_PAYMENT=Hvis nogle online betalingsmoduler er aktiveret (Paypal, Stripe, ...), skal du tilføje et link i PDF'en for at foretage onlinebetalingen DashboardDisableGlobal=Deaktiver globalt alle tommelfingre på åbne objekter -BoxstatsDisableGlobal=Deaktiver fuldstændig boksstatistik -DashboardDisableBlocks=Tommelfingre af åbne objekter (til behandling eller for sent) på hoveddashboardet -DashboardDisableBlockAgenda=Deaktiver tommelfingeren for dagsordenen +BoxstatsDisableGlobal=Deaktiver fuldstændig boksstatistikker +DashboardDisableBlocks=Tommelfinger af åbne objekter (til at behandle eller sent) på det primære dashboard +DashboardDisableBlockAgenda=Deaktiver tommelfingeren for dagsorden DashboardDisableBlockProject=Deaktiver tommelfingeren for projekter DashboardDisableBlockCustomer=Deaktiver tommelfingeren for kunder DashboardDisableBlockSupplier=Deaktiver tommelfingeren for leverandører @@ -2227,12 +2231,12 @@ DashboardDisableBlockTicket=Deaktiver tommelfingeren for billetter DashboardDisableBlockBank=Deaktiver tommelfingeren for banker DashboardDisableBlockAdherent=Deaktiver tommelfingeren for medlemskaber DashboardDisableBlockExpenseReport=Deaktiver tommelfingeren for udgiftsrapporter -DashboardDisableBlockHoliday=Deaktiver tommelfingeren for blade -EnabledCondition=Betingelse for at få feltet aktiveret (hvis det ikke er aktiveret, er synligheden altid deaktiveret) +DashboardDisableBlockHoliday=Deaktiver tommelfingeren for fravær +EnabledCondition=Betingelse for at have felt aktiveret (hvis ikke aktiveret, vil synlighed altid være slået fra) IfYouUseASecondTaxYouMustSetYouUseTheMainTax=Hvis du vil bruge en anden moms, skal du også aktivere den første moms IfYouUseAThirdTaxYouMustSetYouUseTheMainTax=Hvis du vil bruge en tredje moms, skal du også aktivere den første moms LanguageAndPresentation=Sprog og præsentation -SkinAndColors=Hud og farver +SkinAndColors=Skins og farver IfYouUseASecondTaxYouMustSetYouUseTheMainTax=Hvis du vil bruge en anden moms, skal du også aktivere den første moms IfYouUseAThirdTaxYouMustSetYouUseTheMainTax=Hvis du vil bruge en tredje moms, skal du også aktivere den første moms PDF_USE_1A=Generer PDF med PDF/A-1b-format @@ -2240,26 +2244,45 @@ MissingTranslationForConfKey = Manglende oversættelse for %s NativeModules=Native moduler NoDeployedModulesFoundWithThisSearchCriteria=Ingen moduler fundet til disse søgekriterier API_DISABLE_COMPRESSION=Deaktiver komprimering af API-svar -EachTerminalHasItsOwnCounter=Hver terminal bruger sin egen tæller. -FillAndSaveAccountIdAndSecret=Udfyld og gem først konto-id og hemmeligkode +EachTerminalHasItsOwnCounter=Hver terminal bruger sin egen kasse. +FillAndSaveAccountIdAndSecret=Udfyld og gem først konto-id og hemmelighed PreviousHash=Tidligere hash LateWarningAfter="Sen" advarsel efter TemplateforBusinessCards=Skabelon til visitkort i forskellig størrelse InventorySetup= Lageropsætning ExportUseLowMemoryMode=Brug en tilstand med lav hukommelse -ExportUseLowMemoryModeHelp=Brug tilstanden med lav hukommelse til at udføre exec af dumpet (komprimering sker gennem et rør i stedet for ind i PHP-hukommelsen). Denne metode tillader ikke at kontrollere, at filen er fuldført, og fejlmeddelelsen kan ikke rapporteres, hvis den mislykkes. +ExportUseLowMemoryModeHelp=Brug tilstanden med lav hukommelse til at udføre exec af dumpet (komprimering sker gennem en pipe i stedet for i PHP-hukommelsen). Denne metode tillader ikke at kontrollere, at filen er fuldført, og fejlmeddelelsen kan ikke rapporteres, hvis den mislykkes. + +ModuleWebhookName = Webhook +ModuleWebhookDesc = Interface til at fange dolibarr-udløsere og sende det til en URL +WebhookSetup = Webhook opsætning +Settings = Indstillinger +WebhookSetupPage = Webhook opsætningsside ShowQuickAddLink=Vis en knap for hurtigt at tilføje et element i menuen øverst til højre + HashForPing=Hash brugt til ping -ReadOnlyMode=Er instans i "Skrivebeskyttet"-tilstand -DEBUGBAR_USE_LOG_FILE=Brug filen dolibarr.log til at fange logfiler -UsingLogFileShowAllRecordOfSubrequestButIsSlower=Brug filen dolibarr.log til at fange Logs i stedet for at fange live memory. Det giver mulighed for at fange alle logfiler i stedet for kun log af den aktuelle proces (så inklusive den af ajax underanmodningssider), men vil gøre din instans meget meget langsom. Ikke anbefalet. +ReadOnlyMode=Er instansen i "Skrivebeskyttet"-tilstand +DEBUGBAR_USE_LOG_FILE=Brug filen dolibarr.log til at samle logfiler +UsingLogFileShowAllRecordOfSubrequestButIsSlower=Brug filen dolibarr.log til at samle Logs i stedet for at bruge memory. Det giver mulighed for at samle alle logfiler i stedet for kun log af den aktuelle proces (så inklusive den af ajax underanmodningssider), men vil gøre din instans meget meget langsom. Ikke anbefalet. FixedOrPercent=Fast (brug søgeord 'fast') eller procent (brug søgeord 'procent') -DefaultOpportunityStatus=Standardmulighedsstatus (første status, når kundeemne oprettes) +DefaultOpportunityStatus=Standard mulighedsstatus (første status, når kundeemne oprettes) + IconAndText=Ikon og tekst TextOnly=Kun tekst -IconOnlyAllTextsOnHover=Kun ikon - Alle tekster vises under ikonet på musehovedmenulinjen -IconOnlyTextOnHover=Kun ikon - Teksten til ikonet vises under ikonet, når du holder musen over ikonet -IconOnly=Kun ikon - Kun tekst på værktøjstip +IconOnlyAllTextsOnHover=Kun ikon - Alle tekster vises under ikonet når musen føres over menubaren +IconOnlyTextOnHover=Kun ikon - Teksten til ikonet vises under ikonet, når musen føres over ikonet +IconOnly=Kun ikon - Kun tekst som værktøjstip INVOICE_ADD_ZATCA_QR_CODE=Vis ZATCA QR-koden på fakturaer INVOICE_ADD_ZATCA_QR_CODEMore=Nogle arabiske lande har brug for denne QR-kode på deres fakturaer +INVOICE_ADD_SWISS_QR_CODE=Vis den schweiziske QR-Bill-kode på fakturaer UrlSocialNetworksDesc=URL-link til socialt netværk. Brug {socialid} til den variable del, der indeholder det sociale netværks-id. +IfThisCategoryIsChildOfAnother=Hvis denne kategori er en under kategori af en anden +DarkThemeMode=Mørkt tematilstand +AlwaysDisabled=Altid deaktiveret +AccordingToBrowser=Ifølge browser +AlwaysEnabled=Altid aktiveret +DoesNotWorkWithAllThemes=Fungerer ikke med alle temaer +NoName=Intet navn +ShowAdvancedOptions= Vis avancerede muligheder +HideAdvancedoptions= Skjul avancerede muligheder +CIDLookupURL=Modulet bringer en URL, der kan bruges af et eksternt værktøj til at hente navnet på en tredjepart eller kontakt fra dens telefonnummer. URL der skal bruges er: diff --git a/htdocs/langs/da_DK/agenda.lang b/htdocs/langs/da_DK/agenda.lang index a46930e3574..329a898952e 100644 --- a/htdocs/langs/da_DK/agenda.lang +++ b/htdocs/langs/da_DK/agenda.lang @@ -57,6 +57,7 @@ MemberValidatedInDolibarr=Medlem %s bekræftet MemberModifiedInDolibarr=Medlem %s ændret MemberResiliatedInDolibarr=Medlem %s afsluttet MemberDeletedInDolibarr=Medlem %s slettet +MemberExcludedInDolibarr=Medlem %s udelukket MemberSubscriptionAddedInDolibarr=Abonnement %s for medlem %s tilføjet MemberSubscriptionModifiedInDolibarr=Abonnement %s for medlem %s ændret MemberSubscriptionDeletedInDolibarr=Abonnement %s for medlem %s slettet diff --git a/htdocs/langs/da_DK/boxes.lang b/htdocs/langs/da_DK/boxes.lang index d8e1da69fce..10e70a7e8fd 100644 --- a/htdocs/langs/da_DK/boxes.lang +++ b/htdocs/langs/da_DK/boxes.lang @@ -23,7 +23,7 @@ BoxLastMembersSubscriptions=Seneste medlemsabonnementer BoxFicheInter=Latest interventions BoxCurrentAccounts=Open accounts balance BoxTitleMemberNextBirthdays=Fødselsdage i denne måned (medlemmer) -BoxTitleMembersByType=Medlemmer efter type +BoxTitleMembersByType=Medlemmer efter type og status BoxTitleMembersSubscriptionsByYear=Medlemmer Abonnementer efter år BoxTitleLastRssInfos=Latest %s news from %s BoxTitleLastProducts=Produkter / tjenester: sidst %s ændret @@ -46,6 +46,7 @@ BoxMyLastBookmarks=Bogmærker: seneste %s BoxOldestExpiredServices=Ældste aktive udløbne tjenester BoxLastExpiredServices=Latest %s oldest contacts with active expired services BoxTitleLastActionsToDo=Latest %s actions to do +BoxTitleOldestActionsToDo=Ældste %s hændelse, der ikke skal fuldføres BoxTitleLastContracts=Seneste %s kontrakter, der blev ændret BoxTitleLastModifiedDonations=Seneste %s donationer, som blev ændret BoxTitleLastModifiedExpenses=Seneste %s udgiftsrapporter, der blev ændret diff --git a/htdocs/langs/da_DK/cashdesk.lang b/htdocs/langs/da_DK/cashdesk.lang index d47a023d3bd..04d28519b7c 100644 --- a/htdocs/langs/da_DK/cashdesk.lang +++ b/htdocs/langs/da_DK/cashdesk.lang @@ -136,3 +136,10 @@ PrintWithoutDetails=Udskriv uden detaljer YearNotDefined=År er ikke defineret TakeposBarcodeRuleToInsertProduct=Stregkoderegel til at indsætte produkt TakeposBarcodeRuleToInsertProductDesc=Regel for at udtrække produktreferencen + en mængde fra en scannet stregkode.
Hvis tom (standardværdi), vil applikationen bruge den fulde stregkode, der er scannet til at finde produktet.

Hvis defineret, skal syntaks være:
ref: NB + qu: NB + qd: NB + andre: NB
hvor NB er antallet af tegn til at bruge til at udtrække data fra det scannede stregkode med:
  • ref : produkt henvisning
  • qu : mængde til sæt ved isætning item (enheder)
  • qd : mængde til sæt ved isætning punkt (decimaler)
  • andre : andre tegn
+AlreadyPrinted=Allerede udskrevet +HideCategories=Skjul kategorier +HideStockOnLine=Skjul lager på nettet +ShowOnlyProductInStock=Vis produkterne på lager +ShowCategoryDescription=Vis kategoribeskrivelse +ShowProductReference=Vis reference for produkter +UsePriceHT=Brug pris ekskl. afgifter og ikke pris inkl. skatter diff --git a/htdocs/langs/da_DK/holiday.lang b/htdocs/langs/da_DK/holiday.lang index 2c3f51239f5..f58b3cfa950 100644 --- a/htdocs/langs/da_DK/holiday.lang +++ b/htdocs/langs/da_DK/holiday.lang @@ -1,108 +1,118 @@ # Dolibarr language file - Source file is en_US - holiday HRM=HRM -Holidays=Forlade -CPTitreMenu=Forlade -MenuReportMonth=Monthly statement -MenuAddCP=New leave request -NotActiveModCP=Du skal aktivere modulet Forlad for at se denne side. -AddCP=Make a leave request +Holidays=Ferie/Fravær +CPTitreMenu=Ferie/Fravær +MenuReportMonth=Månedlig opgørelse +MenuAddCP=Ny forespørgsel +MenuCollectiveAddCP=Ny kollektiv fraværssanmodning +NotActiveModCP=Du skal aktivere modulet Ferie/Fravær for at se denne side. +AddCP=Lav en forespørgsel DateDebCP=Startdato DateFinCP=Slutdato DraftCP=Udkast til -ToReviewCP=Awaiting approval +ToReviewCP=Afventer godkendelse ApprovedCP=Godkendt CancelCP=Aflyst -RefuseCP=Afviste +RefuseCP=Afvist ValidatorCP=Godkender -ListeCP=Liste over orlov -Leave=Leave request -LeaveId=Forlad ID -ReviewedByCP=Will be reviewed by +ListeCP=Liste over fravær +Leave=Fravær forespørgsel +LeaveId=Fravær ID +ReviewedByCP=Vil blive godkendt af UserID=bruger ID UserForApprovalID=Bruger til godkendelses-id UserForApprovalFirstname=Fornavn af godkendelsesbruger UserForApprovalLastname=Efternavn af godkendelsesbruger UserForApprovalLogin=Login af godkendelse bruger DescCP=Beskrivelse -SendRequestCP=Create leave request -DelayToRequestCP=Leave requests must be made at least %s day(s) before them. -MenuConfCP=Udgiftsbalance -SoldeCPUser=Forlad saldo (i dage) %s -ErrorEndDateCP=You must select an end date greater than the start date. +SendRequestCP=Lav fravær forespørgsel +DelayToRequestCP=Fravær forespørgsler skal laves mindst %s dag(e) før. +MenuConfCP=Opgørelse +SoldeCPUser=Fraværssaldo (i dage) %s +ErrorEndDateCP=Du skal vælge en slutdato efter startdato ErrorSQLCreateCP=An SQL error occurred during the creation: ErrorIDFicheCP=An error has occurred, the leave request does not exist. -ReturnCP=Return to previous page -ErrorUserViewCP=You are not authorized to read this leave request. +ReturnCP=Vend tilbage til foregående side +ErrorUserViewCP=Du er ikke autoriseret til at se denne fraværsforespørgsel. InfosWorkflowCP=Information Workflow -RequestByCP=Requested by -TitreRequestCP=Leave request -TypeOfLeaveId=Type orlov ID -TypeOfLeaveCode=Type orlovskode -TypeOfLeaveLabel=Orlovsetikettype -NbUseDaysCP=Antal brugte orlovsdage +RequestByCP=Forespurgt af +TitreRequestCP=Fravær forespørgsel +TypeOfLeaveId=Type af fravær ID +TypeOfLeaveCode=Type af fraværskode +TypeOfLeaveLabel=Fraværsetikettype +NbUseDaysCP=Antal brugte fraværsdage NbUseDaysCPHelp=Beregningen tager højde for ikke-arbejdsdage og helligdage defineret i ordbogen. -NbUseDaysCPShort=Feriedage -NbUseDaysCPShortInMonth=Feriedage i måned +NbUseDaysCPShort=Fraværsdage +NbUseDaysCPShortInMonth=Fraværsdage i måned DayIsANonWorkingDay=%s er en ikke-arbejdsdag DateStartInMonth=Startdato i måned DateEndInMonth=Slutdato i måned EditCP=Redigér DeleteCP=Slet -ActionRefuseCP=Refuse +ActionRefuseCP=Afvis ActionCancelCP=Annuller StatutCP=Status -TitleDeleteCP=Delete the leave request -ConfirmDeleteCP=Confirm the deletion of this leave request? -ErrorCantDeleteCP=Error you don't have the right to delete this leave request. -CantCreateCP=You don't have the right to make leave requests. -InvalidValidatorCP=Du skal vælge godkenderen til din orlovsanmodning. -NoDateDebut=You must select a start date. -NoDateFin=You must select an end date. -ErrorDureeCP=Your leave request does not contain working day. -TitleValidCP=Approve the leave request -ConfirmValidCP=Are you sure you want to approve the leave request? -DateValidCP=Date approved -TitleToValidCP=Send leave request -ConfirmToValidCP=Are you sure you want to send the leave request? -TitleRefuseCP=Refuse the leave request -ConfirmRefuseCP=Are you sure you want to refuse the leave request? -NoMotifRefuseCP=You must choose a reason for refusing the request. -TitleCancelCP=Cancel the leave request -ConfirmCancelCP=Are you sure you want to cancel the leave request? -DetailRefusCP=Reason for refusal -DateRefusCP=Date of refusal -DateCancelCP=Date of cancellation -DefineEventUserCP=Assign an exceptional leave for a user -addEventToUserCP=Assign leave -NotTheAssignedApprover=Du er ikke den tildelte godkendende +TitleDeleteCP=Slet denne forespørgsel +ConfirmDeleteCP=Bekræft sletning af denne forespørgsel? +ErrorCantDeleteCP=Fejl, du har ikke rettigheder til at slette denne forespørgsel. +CantCreateCP=Du har ikke rettigheder til at lave denne forespørgsel. +InvalidValidatorCP=Du skal vælge godkenderen til din fraværsforespørgsel. +NoDateDebut=Du skal vælge en startdato. +NoDateFin=Du skal vælge en slutdato. +ErrorDureeCP=Din forespørgsel indeholder ikke en arbejdsdag. +TitleValidCP=Godkend forespørgsel +ConfirmValidCP=Er du sikker på at du vil godkende fraværsforespørgslen? +DateValidCP=Dato godkendt +TitleToValidCP=Send forespørgsel +ConfirmToValidCP=Er du sikker på at du vil sende forespørgslen? +TitleRefuseCP=Afvis forespørgsel +ConfirmRefuseCP=Er du sikker på at du vil afvise fraværsforespørgslen? +NoMotifRefuseCP=Du skal vælge en grund til at afvise forespørgslen. +TitleCancelCP=Annuller forespørgsel +ConfirmCancelCP=Er du sikker på at du vil annullere fraværsforespørgselen? +DetailRefusCP=Grund for afvisning +DateRefusCP=Dato for afvisning +DateCancelCP=Dato for annullering +DefineEventUserCP=Tildel ekstraordinær fravær til en bruger +addEventToUserCP=Tildel fravær +NotTheAssignedApprover=Du er ikke den tildelte godkender MotifCP=Årsag UserCP=Bruger ErrorAddEventToUserCP=An error occurred while adding the exceptional leave. AddEventToUserOkCP=The addition of the exceptional leave has been completed. +ErrorFieldRequiredUserOrGroup="Gruppe"-feltet eller "bruger"-feltet skal udfyldes +fusionGroupsUsers=Gruppefeltet og brugerfeltet vil blive flettet MenuLogCP=View change logs -LogCP=Log over alle opdateringer til "Status af Feriedage" +LogCP=Log over alle opdateringer til "Status af Fraværsdage" ActionByCP=Opdateret af UserUpdateCP=Opdateret til -PrevSoldeCP=Previous Balance -NewSoldeCP=New Balance +PrevSoldeCP=Foregående Balance +NewSoldeCP=Ny Balance alreadyCPexist=A leave request has already been done on this period. +UseralreadyCPexist=Der er allerede lavet en fraværssanmodning på denne periode for %s. +groups=Grupper +users=Brugere +AutoSendMail=Automatisk forsendelse +NewHolidayForGroup=Ny kollektiv fraværssanmodning +SendRequestCollectiveCP=Send kollektiv fraværssanmodning +AutoValidationOnCreate=Automatisk validering FirstDayOfHoliday=Begyndelsesdag for orlovsanmodning LastDayOfHoliday=Afslutningsdag for orlovsanmodning BoxTitleLastLeaveRequests=Latest %s modified leave requests HolidaysMonthlyUpdate=Monthly update ManualUpdate=Manual update -HolidaysCancelation=Leave request cancelation -EmployeeLastname=Employee last name -EmployeeFirstname=Employee first name +HolidaysCancelation=Fraværs anmodning annullering +EmployeeLastname=Medarbejderens efternavn +EmployeeFirstname=Medarbejderens fornavn TypeWasDisabledOrRemoved=Leave type (id %s) was disabled or removed LastHolidays=Seneste %s forlade anmodninger -AllHolidays=Alle anmodninger om orlov +AllHolidays=Alle anmodninger om fravær HalfDay=Halv dag -NotTheAssignedApprover=Du er ikke den tildelte godkendende -LEAVE_PAID=Betalt ferie -LEAVE_SICK=Sygeorlov -LEAVE_OTHER=Anden orlov -LEAVE_PAID_FR=Betalt ferie +NotTheAssignedApprover=Du er ikke den tildelte godkender +LEAVE_PAID=Betalt fravær +LEAVE_SICK=Sygefravær +LEAVE_OTHER=Anden fravær +LEAVE_PAID_FR=Betalt fravær ## Configuration du Module ## LastUpdateCP=Sidste automatiske opdatering af orlovstildeling MonthOfLastMonthlyUpdate=Måned med sidste automatiske opdatering af orlovstildeling @@ -125,7 +135,7 @@ HolidaysCanceledBody=Your leave request for %s to %s has been canceled. FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.
0: Not followed by a counter. NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter GoIntoDictionaryHolidayTypes=Gå ind i Hjem - Opsætning - Ordbøger - Typen af ​​orlov for at opsætte de forskellige typer blade. -HolidaySetup=Opsætning af modul Forlad +HolidaySetup=Opsætning af fraværsmodul HolidaysNumberingModules=Nummereringsmodeller til orlovsanmodninger TemplatePDFHolidays=Skabelon til Ferie anmodninger PDF FreeLegalTextOnHolidays=Fri tekst på PDF diff --git a/htdocs/langs/da_DK/hrm.lang b/htdocs/langs/da_DK/hrm.lang index 6ef881a462b..4b8bc9518ec 100644 --- a/htdocs/langs/da_DK/hrm.lang +++ b/htdocs/langs/da_DK/hrm.lang @@ -2,41 +2,41 @@ # Admin -HRM_EMAIL_EXTERNAL_SERVICE=Email for at forhindre HRM ekstern service -Establishments=Virksomheder -Establishment=Etablering -NewEstablishment=Ny virksomhed -DeleteEstablishment=Slet virksomhed -ConfirmDeleteEstablishment=Er du sikker på, at du ønsker at slette denne virksomhed? -OpenEtablishment=Åbent oprettelse -CloseEtablishment=Luk etablissement +HRM_EMAIL_EXTERNAL_SERVICE=E-mail for at forhindre HRM ekstern service +Establishments=Foretagender +Establishment=Foretagende +NewEstablishment=Nyt Foretagende +DeleteEstablishment=Slet Foretagende +ConfirmDeleteEstablishment=Er du sikker på, at du ønsker at slette dette foretagende? +OpenEtablishment=Åben foretagende +CloseEtablishment=Luk foretagende # Dictionary -DictionaryPublicHolidays=Forlad - Offentlig Helligdage -DictionaryDepartment=HRM - Afdelingsliste -DictionaryFunction=HRM - Job stillinger +DictionaryPublicHolidays=Fravær - Helligdage +DictionaryDepartment=HRM - Organisationsenhed +DictionaryFunction=HRM - Jobstillinger # Module Employees=Medarbejdere -Employee=Employee +Employee=Medarbejder NewEmployee=Ny medarbejder ListOfEmployees=Liste over medarbejdere HrmSetup=Opsætning af HRM-modul -SkillsManagement=Ledelse af færdigheder +SkillsManagement=Uddannelsesstyring HRM_MAXRANK=Maksimalt antal niveauer for at rangere en færdighed -HRM_DEFAULT_SKILL_DESCRIPTION=Standardbeskrivelse af rækker, når færdighed oprettes +HRM_DEFAULT_SKILL_DESCRIPTION=Standardbeskrivelse af rækker, når færdighed er oprettet deplacement=Flytte DateEval=Evalueringsdato JobCard=Jobkort JobPosition=Job JobsPosition=Jobs -NewSkill=Ny kunnen +NewSkill=Ny færdighed SkillType=Færdighedstype -Skilldets=Liste over rækker for denne færdighed +Skilldets=Liste over stillinger for denne færdighed Skilldet=Færdighedsniveau rank=Rang -ErrNoSkillSelected=Ingen færdigheder valgt +ErrNoSkillSelected=Ingen færdighed valgt ErrSkillAlreadyAdded=Denne færdighed er allerede på listen SkillHasNoLines=Denne færdighed har ingen linjer -skill=Evne +skill=Færdighed Skills=Færdigheder SkillCard=Færdighedskort EmployeeSkillsUpdated=Medarbejdernes færdigheder er blevet opdateret (se fanen "Færdigheder" på medarbejderkortet) @@ -44,9 +44,9 @@ Eval=Evaluering Evals=Evalueringer NewEval=Ny evaluering ValidateEvaluation=Valider evaluering -ConfirmValidateEvaluation=Er du sikker på, at du vil validere denne evaluering med reference %s ? +ConfirmValidateEvaluation=Er du sikker på, at du vil validere denne evaluering med referencen %s? EvaluationCard=Evalueringskort -RequiredRank=Påkrævet rangering for dette job +RequiredRank=Påkrævet rang for dette job EmployeeRank=Medarbejderrangering for denne færdighed EmployeePosition=Medarbejder stilling EmployeePositions=Medarbejder stillinger @@ -56,35 +56,36 @@ group2ToCompare=Anden brugergruppe til sammenligning OrJobToCompare=Sammenlign med krav til jobkompetencer difference=Forskel CompetenceAcquiredByOneOrMore=Kompetence erhvervet af en eller flere brugere, men ikke efterspurgt af den anden komparator -MaxlevelGreaterThan=Maks. Niveau større end det ønskede -MaxLevelEqualTo=Max niveau svarende til det krav -MaxLevelLowerThan=Maks. Niveau lavere end den efterspørgsel -MaxlevelGreaterThanShort=Medarbejderniveau større end det anmodede -MaxLevelEqualToShort=Medarbejderniveau er lig med den efterspørgsel -MaxLevelLowerThanShort=Medarbejderniveau lavere end den efterspørgsel +MaxlevelGreaterThan=Maks. niveau større end det anmodede +MaxLevelEqualTo=Max niveau svarende til denne efterspørgsel +MaxLevelLowerThan=Max niveau lavere end dette krav +MaxlevelGreaterThanShort=Medarbejderniveau højere end det efterspurgte +MaxLevelEqualToShort=Medarbejderniveau svarer til den efterspurgte +MaxLevelLowerThanShort=Medarbejderniveau lavere end efterspurgt SkillNotAcquired=Færdighed ikke erhvervet af alle brugere og anmodet af den anden komparator -legend=Legend +legend=Legende TypeSkill=Færdighedstype AddSkill=Tilføj færdigheder til jobbet -RequiredSkills=Påkrævede færdigheder til dette job +RequiredSkills=Nødvendige færdigheder til dette job UserRank=Brugerrangering SkillList=Færdighedsliste SaveRank=Gem rang -knowHow=Vide hvordan -HowToBe=Sådan skal du være -knowledge=Viden -AbandonmentComment=Opgivelseskommentar -DateLastEval=Dato sidste vurdering -NoEval=Der er ikke foretaget nogen evaluering for denne medarbejder +TypeKnowHow=Viden +TypeHowToBe=Sådan skal du være +TypeKnowledge=Viden +AbandonmentComment=Afslagskommentar +DateLastEval=Dato sidste evaluering +NoEval=Ingen evaluering udført for denne medarbejder HowManyUserWithThisMaxNote=Antal brugere med denne rang HighestRank=Højeste rang -SkillComparison=Færdigheds sammenligning +SkillComparison=Færdighedssammenligning ActionsOnJob=Begivenheder på dette job VacantPosition=ledig stilling VacantCheckboxHelper=Hvis du afkrydser denne mulighed, vises ubesatte stillinger (ledig stilling) -SaveAddSkill = Færdighed(er) tilføjet +SaveAddSkill = Færdigheder tilføjet SaveLevelSkill = Færdighedsniveauet er gemt DeleteSkill = Færdighed fjernet -SkillsExtraFields=Supplerende attributter (kompetencer) -JobsExtraFields=Attributs supplementaires (Emplois) -EvaluationsExtraFields=Supplerende attributter (evalueringer) +SkillsExtraFields=Yderligere attributter (færdigheder) +JobsExtraFields=Yderligere attributter (job) +EvaluationsExtraFields=Yderligere attributter (vurderinger) +NeedBusinessTravels=Har brug for forretningsrejser diff --git a/htdocs/langs/da_DK/install.lang b/htdocs/langs/da_DK/install.lang index cb9a8b70b60..6077d483ff3 100644 --- a/htdocs/langs/da_DK/install.lang +++ b/htdocs/langs/da_DK/install.lang @@ -1,5 +1,5 @@ # Dolibarr language file - Source file is en_US - install -InstallEasy=Bare følg instruktionerne trin for trin. +InstallEasy=Følg instruktionerne trin for trin. MiscellaneousChecks=Forudsætningskontrol ConfFileExists=Konfigurationsfilen %s findes. ConfFileDoesNotExistsAndCouldNotBeCreated=Konfigurationsfilen %s eksisterer ikke og kunne ikke oprettes! @@ -8,7 +8,7 @@ ConfFileIsNotWritable=Konfigurationsfilen %s er ikke skrivbar. Kontroller ConfFileIsWritable=Konfigurationsfilen %s er skrivbar. ConfFileMustBeAFileNotADir=Konfigurationsfil %sskal være en fil, ikke en mappe. ConfFileReload=Genindlæser parametre fra konfigurationsfil. -NoReadableConfFileSoStartInstall=Konfigurationsfilen conf/conf.php eksisterer ikke eller kan ikke genskabes. Vi kører installationsprocessen for at prøve at initialisere den. +NoReadableConfFileSoStartInstall=Konfigurationsfilen conf/conf.php eksisterer ikke eller kan ikke læses. Vi kører installationsprocessen for at prøve at initialisere den. PHPSupportPOSTGETOk=Denne PHP understøtter variablerne POST og GET. PHPSupportPOSTGETKo=Det er muligt, at din PHP-opsætning ikke understøtter variablerne POST og/eller GET. Tjek parameteren variables_order i php.ini. PHPSupportSessions=Denne PHP understøtter sessioner. @@ -24,11 +24,13 @@ ErrorWrongValueForParameter=Du har muligvis indtastet en forkert værdi for para ErrorFailedToCreateDatabase=Kunne ikke oprette databasen '%s'. ErrorFailedToConnectToDatabase=Kunne ikke oprette forbindelse til databasen '%s'. ErrorDatabaseVersionTooLow=Databaseversionen (%s) er for gammel. Version %s eller nyere er påkrævet. -ErrorPHPVersionTooLow=PHP-versionen er for gammel. Version %s er påkrævet. +ErrorPHPVersionTooLow=PHP-versionen er for gammel. Version %s eller nyere er påkrævet. +ErrorPHPVersionTooHigh=PHP-versionen er for høj. Version %s eller lavere er påkrævet. ErrorConnectedButDatabaseNotFound=Forbindelsen til serveren lykkedes, men databasen '%s' blev ikke fundet. ErrorDatabaseAlreadyExists=Databasen '%s' eksisterer allerede. +ErrorNoMigrationFilesFoundForParameters=Der blev ikke fundet nogen migreringsfil for de valgte versioner IfDatabaseNotExistsGoBackAndUncheckCreate=Hvis databasen ikke eksisterer, skal du gå tilbage og markere "Opret database". -IfDatabaseExistsGoBackAndCheckCreate=Hvis database findes allerede, gå tilbage og fjern markeringen "Opret database" valgmulighed. +IfDatabaseExistsGoBackAndCheckCreate=Hvis databasen allerede eksisterer, skal du gå tilbage og fjerne markeringen i "Opret database". WarningBrowserTooOld=Versionen af browseren er for gammel. Det anbefales at opgradere din browser til en nyere version af Firefox, Chrome eller Opera. PHPVersion=PHP version License=Bruger licens @@ -94,7 +96,7 @@ DataMigration=Databasemigration (data) DatabaseMigration=Databasemigration (struktur + nogle data) ProcessMigrateScript=Scriptbehandling ChooseYourSetupMode=Vælg din opsætningstilstand og klik på "Start"... -FreshInstall=Frisk installation +FreshInstall=Ny installation FreshInstallDesc=Brug denne tilstand, hvis dette er din første installation. Hvis ikke, kan denne tilstand reparere en ufuldstændig tidligere installation. Hvis du vil opgradere din version, skal du vælge "Opgrader"-tilstand. Upgrade=Opgrader UpgradeDesc=Brug denne tilstand, hvis du har erstattet gamle Dolibarr-filer med filer fra en nyere version. Dette vil opgradere din database og data. diff --git a/htdocs/langs/da_DK/languages.lang b/htdocs/langs/da_DK/languages.lang index 1de5070ace1..927728f488c 100644 --- a/htdocs/langs/da_DK/languages.lang +++ b/htdocs/langs/da_DK/languages.lang @@ -13,6 +13,7 @@ Language_az_AZ=Aserbajdsjansk Language_bn_BD=Bengali Language_bn_IN=Bengali (Indien) Language_bg_BG=Bulgarsk +Language_bo_CN=tibetansk Language_bs_BA=Bosnisk Language_ca_ES=Catalansk Language_cs_CZ=Tjekkisk @@ -39,6 +40,7 @@ Language_es_AR=Spansk (Argentina) Language_es_BO=Spanish (Bolivia) Language_es_CL=Spanish (Chile) Language_es_CO=Spanish (Colombia) +Language_es_CR=Spansk (Costa Rica) Language_es_DO=Spanish (Dominican Republic) Language_es_EC=Spanish (Ecuador) Language_es_GT=Spansk (Guatemala) @@ -93,6 +95,7 @@ Language_nl_BE=Hollandsk (Belgien) Language_nl_NL=Hollandske Language_pl_PL=Polsk Language_pt_AO=Portugisisk (Angola) +Language_pt_MZ=Portugisisk (Mozambique) Language_pt_BR=Portugisisk (Brasilien) Language_pt_PT=Portugisisk Language_ro_MD=Rumænsk (Moldavien) @@ -115,6 +118,6 @@ Language_ur_PK=Urdu Language_uz_UZ=Usbekisk Language_vi_VN=Vietnamesisk Language_zh_CN=Kinesisk -Language_zh_TW=Kinesisk (traditionelt) -Language_zh_HK=Kinesisk (Hong Kong) -Language_bh_MY=Malay +Language_zh_TW=Kinesisk (traditionel) +Language_zh_HK=Kinesisk (Hongkong) +Language_bh_MY=Malaysisk diff --git a/htdocs/langs/da_DK/mails.lang b/htdocs/langs/da_DK/mails.lang index 37e4da3b26b..4bdc2bca9ee 100644 --- a/htdocs/langs/da_DK/mails.lang +++ b/htdocs/langs/da_DK/mails.lang @@ -178,3 +178,4 @@ IsAnAnswer=Er et svar på en indledende e-mail RecordCreatedByEmailCollector=Post oprettet af Email Collector %s fra e-mail %s DefaultBlacklistMailingStatus=Standardværdi for feltet '%s' ved oprettelse af en ny kontaktperson DefaultStatusEmptyMandatory=Tom men obligatorisk +WarningLimitSendByDay=ADVARSEL: Opsætningen eller kontrakten for din instans begrænser dit antal e-mails pr. dag til %s. Forsøg på at sende mere kan resultere i, at din instans bliver langsommere eller suspenderet. Kontakt venligst din support, hvis du har brug for en højere kvote. diff --git a/htdocs/langs/da_DK/main.lang b/htdocs/langs/da_DK/main.lang index 22e8731d12a..6441973b285 100644 --- a/htdocs/langs/da_DK/main.lang +++ b/htdocs/langs/da_DK/main.lang @@ -8,13 +8,13 @@ FONTFORPDF=helvetica FONTSIZEFORPDF=10 SeparatorDecimal=, SeparatorThousand=. -FormatDateShort=%d/%m/%Y -FormatDateShortInput=%d/%m/%Y +FormatDateShort=%d-%m-%Y +FormatDateShortInput=%d-%m-%Y FormatDateShortJava=dd/MM/yyyy FormatDateShortJavaInput=dd/MM/yyyy FormatDateShortJQuery=dd/mm/yy FormatDateShortJQueryInput=dd/mm/yy -FormatHourShortJQuery=TT:MM +FormatHourShortJQuery=HH:mm FormatHourShort=%H:%M FormatHourShortDuration=%H:%M FormatDateTextShort=%d %b %Y @@ -23,9 +23,9 @@ FormatDateHourShort=%d/%m/%Y %H:%M FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p FormatDateHourTextShort=%d %b %Y %H:%M FormatDateHourText=%d %B %Y %H:%M -DatabaseConnection=Database forbindelse -NoTemplateDefined=Ingen skabelon til rådighed for denne e-mail-type -AvailableVariables=Tilgængelige substitutionsvariable +DatabaseConnection=Databaseforbindelse +NoTemplateDefined=Ingen skabelon tilgængelig for denne e-mailtype +AvailableVariables=Tilgængelige substitutionsvariabler NoTranslation=Ingen oversættelse Translation=Oversættelse CurrentTimeZone=Tidszone PHP (server) @@ -50,26 +50,26 @@ ErrorLogoFileNotFound=Logofilen '%s' blev ikke fundet ErrorGoToGlobalSetup=Gå til 'Virksomhed/Organisation' opsætning for at rette dette ErrorGoToModuleSetup=Gå til Modulopsætning for at rette dette ErrorFailedToSendMail=Kunne ikke sende post (afsender=%s, modtager=%s) -ErrorFileNotUploaded=Filen blev ikke uploadet. Tjek, at størrelsen ikke overstiger det tilladte maksimum, at der er ledig plads på disken, og at der ikke allerede er en fil med samme navn i denne mappe. +ErrorFileNotUploaded=Filen blev ikke uploadet. Kontroller, at størrelsen ikke overstiger det tilladte maksimum, at der er ledig plads på disken, og at der ikke allerede er en fil med samme navn i denne mappe. ErrorInternalErrorDetected=Fejl opdaget ErrorWrongHostParameter=Forkert værtsparameter -ErrorYourCountryIsNotDefined=Dit land er ikke defineret. Gå til Hjem-Indstillinger-Rediger og send formularen igen. -ErrorRecordIsUsedByChild=Kunne ikke slette denne post. Denne post bruges af mindst en børnepost. +ErrorYourCountryIsNotDefined=Dit land er ikke defineret. Gå til Hjem-Opsætning-Ordbøger og tilføj det til Lande og send formularen igen. +ErrorRecordIsUsedByChild=Kunne ikke slette denne post. Denne post bruges af mindst én underordnet post. ErrorWrongValue=Forkert værdi ErrorWrongValueForParameterX=Forkert værdi for parameter %s -ErrorNoRequestInError=Ingen anmodning ved fejl +ErrorNoRequestInError=Ingen anmodning ved en fejl ErrorServiceUnavailableTryLater=Tjenesten er ikke tilgængelig i øjeblikket. Prøv igen senere. -ErrorDuplicateField=Dobbelt værdi i et unikt område -ErrorSomeErrorWereFoundRollbackIsDone=Nogle fejl blev fundet. Ændringer er blevet rullet tilbage. -ErrorConfigParameterNotDefined=Parameter %s er ikke defineret i Dolibarr konfigurationsfilen conf.php . -ErrorCantLoadUserFromDolibarrDatabase=Kunne ikke finde bruger %s i Dolibarr database. -ErrorNoVATRateDefinedForSellerCountry=Fejl, der ikke momssatser defineret for land ' %s'. -ErrorNoSocialContributionForSellerCountry=Fejl, ingen type af skatter/afgifter defineret for landet '%s'. -ErrorFailedToSaveFile=Fejl, kunne ikke gemme filen. -ErrorCannotAddThisParentWarehouse=Du prøver at tilføje et forælderlager, som allerede er et barn i et eksisterende lager +ErrorDuplicateField=Dubleret værdi i et unikt felt +ErrorSomeErrorWereFoundRollbackIsDone=Der blev fundet nogle fejl. Ændringer er blevet rullet tilbage. +ErrorConfigParameterNotDefined=Parameteren %s er ikke defineret i Dolibarr-konfigurationsfilenconf.php. +ErrorCantLoadUserFromDolibarrDatabase=Kunne ikke finde brugeren %s i Dolibarr-databasen. +ErrorNoVATRateDefinedForSellerCountry=Fejl, ingen momssatser defineret for landet '%s'. +ErrorNoSocialContributionForSellerCountry=Fejl, ingen skatter/afgifter defineret for landet '%s'. +ErrorFailedToSaveFile=Fejl, filen kunne ikke gemmes. +ErrorCannotAddThisParentWarehouse=Du forsøger at tilføje et overordnet lager, som allerede er et underordnet lager af et eksisterende lager FieldCannotBeNegative=Feltet "%s" kan ikke være negativt MaxNbOfRecordPerPage=Maks. antal poster pr. side -NotAuthorized=Du har ikke tilladelse til at gøre det. +NotAuthorized=Det er du ikke autoriseret til at gøre det. SetDate=Indstil dato SelectDate=Vælg en dato SeeAlso=Se også %s @@ -80,53 +80,53 @@ Apply=Ansøge BackgroundColorByDefault=Standard baggrundsfarve FileRenamed=Filen blev omdøbt FileGenerated=Filen blev genereret -FileSaved=Filen er blevet gemt +FileSaved=Filen blev gemt FileUploaded=Filen blev uploadet -FileTransferComplete=Fil (er) uploadet succesfuldt -FilesDeleted=Fil(er), der er slettet korrekt -FileWasNotUploaded=En fil er valgt som vedhæng, men endnu ikke uploadet. Klik på "Vedhæft fil" for dette. -NbOfEntries=Antal indgange -GoToWikiHelpPage=Læs online hjælp (Adgang til Internettet er nødvendig) +FileTransferComplete=Fil(er) blev uploadet +FilesDeleted=Fil(er) blev slettet +FileWasNotUploaded=En fil er valgt til vedhæftning, men den er endnu ikke uploadet. Klik på "Vedhæft fil" for dette. +NbOfEntries=Antal poster +GoToWikiHelpPage=Læs online hjælp (internetadgang nødvendig) GoToHelpPage=Læs hjælp DedicatedPageAvailable=Dedikeret hjælpeside relateret til din nuværende skærm HomePage=Hjemmeside -RecordSaved=Data gemt +RecordSaved=Post gemt RecordDeleted=Post slettet -RecordGenerated=Data genereret -LevelOfFeature=Niveau funktionsliste +RecordGenerated=Post genereret +LevelOfFeature=Niveau af funktioner NotDefined=Ikke defineret -DolibarrInHttpAuthenticationSoPasswordUseless=Dolibarr authentication mode er sat til %s i konfigurationsfilen conf.php.
Dette betyder, at adgangskoden databasen er ekstern i forhold til Dolibarr, så ændrer dette felt har ingen effekt. +DolibarrInHttpAuthenticationSoPasswordUseless=Dolibarr-godkendelsestilstand er indstillet til %s i konfigurationsfilen conf.php.
Dette betyder, at adgangskodedatabasen er ekstern i forhold til Dolibarr, så ændring af dette felt har muligvis ingen effekt. Administrator=Administrator -Undefined=Undefineret -PasswordForgotten=Har du glemt dit kodeord ? +Undefined=Udefineret +PasswordForgotten=Glemt adgangskode? NoAccount=Ingen konto? SeeAbove=Se ovenfor HomeArea=Hjem LastConnexion=Sidste login PreviousConnexion=Forrige login PreviousValue=Tidligere værdi -ConnectedOnMultiCompany=Forbind til enhed +ConnectedOnMultiCompany=Forbundet til enhed ConnectedSince=Forbundet siden -AuthenticationMode=Autentificerings tilstand -RequestedUrl=Angivne URL +AuthenticationMode=Autentificeringstilstand +RequestedUrl=Anmodet URL DatabaseTypeManager=Database type opsætning -RequestLastAccessInError=Seneste database adgang forspørelses fejl -ReturnCodeLastAccessInError=Retur kode for seneste fejl i database forspørgelse -InformationLastAccessInError=Information efter seneste database adgang anmodning fejl +RequestLastAccessInError=Seneste anmodning om databaseadgang fejlede +ReturnCodeLastAccessInError=Returkode for seneste databaseadgangsfejl +InformationLastAccessInError=Oplysninger om seneste databaseadgangsfejl DolibarrHasDetectedError=Dolibarr har opdaget en teknisk fejl -YouCanSetOptionDolibarrMainProdToZero=Du kan læse logfil eller sæt indstillingen $ dolibarr_main_prod til '0' i din config-fil for at få flere oplysninger. +YouCanSetOptionDolibarrMainProdToZero=Du kan læse logfilen eller indstille muligheden $dolibarr_main_prod til '0' i din konfigurationsfil for at få mere information. InformationToHelpDiagnose=Disse oplysninger kan være nyttige til diagnostiske formål (du kan indstille $dolibarr_main_prod til '1' for at skjule følsomme oplysninger) MoreInformation=Mere information -TechnicalInformation=Tekniske oplysninger -TechnicalID=Teknisk id +TechnicalInformation=Teknisk information +TechnicalID=Teknisk ID LineID=Linje ID -NotePublic=Note (offentlige) +NotePublic=Note (offentlig) NotePrivate=Note (privat) -PrecisionUnitIsLimitedToXDecimals=Dolibarr blev setup at begrænse præcision på enhedspriser til %s decimaler. +PrecisionUnitIsLimitedToXDecimals=Dolibarr blev sat op til at begrænse nøjagtigheden af enhedspriser til %s decimaler. DoTest=Test ToFilter=Filter NoFilter=Intet filter -WarningYouHaveAtLeastOneTaskLate=Advarsel, du har mindst et element, der har overskredet tolerancetiden. +WarningYouHaveAtLeastOneTaskLate=Advarsel, du har mindst ét element, der har overskredet tolerancetiden. yes=ja Yes=Ja no=nej @@ -141,48 +141,48 @@ Always=Altid Never=Aldrig Under=under Period=Periode -PeriodEndDate=Slutdato for perioden -SelectedPeriod=Udvalgt periode +PeriodEndDate=Slutdato for periode +SelectedPeriod=Valgt periode PreviousPeriod=Tidligere periode -Activate=Aktivér +Activate=Aktiver Activated=Aktiveret Closed=Lukket Closed2=Lukket NotClosed=Ikke lukket Enabled=Aktiveret Enable=Aktiver -Deprecated=Underkendt -Disable=Deaktivere +Deprecated=Forældet +Disable=Deaktiver Disabled=Deaktiveret -Add=Tilføj +Add=Tilføje AddLink=Tilføj link RemoveLink=Fjern link -AddToDraft=Tilføj til udkast +AddToDraft=Tilføj til kladde Update=Opdatering Close=Luk -CloseAs=Sæt status til +CloseAs=Indstil status til CloseBox=Fjern widget fra dit dashboard Confirm=Bekræft -ConfirmSendCardByMail=Vil du virkelig sende indholdet af dette kort pr. Mail til %s ? +ConfirmSendCardByMail=Vil du virkelig sende indholdet af dette kort med post til %s? Delete=Slet Remove=Fjerne -Resiliate=Afslutte -Cancel=Annuller +Resiliate=Deaktiver +Cancel=Afbestille Modify=Ret -Edit=Redigér -Validate=Godkend -ValidateAndApprove=Bekræfte og godkende -ToValidate=Skal godkendes -NotValidated=Ikke godkendt -Save=Gem +Edit=Redigere +Validate=Valider +ValidateAndApprove=Valider og godkend +ToValidate=At validere +NotValidated=Ikke valideret +Save=Gemme SaveAs=Gem som SaveAndStay=Gem og bliv -SaveAndNew=Gem og nyt +SaveAndNew=Gem og ny TestConnection=Test forbindelse ToClone=Klon -ConfirmCloneAsk=Er du sikker på, at du vil klone objektet%s? +ConfirmCloneAsk=Er du sikker på, at du vil klone objektet %s? ConfirmClone=Vælg de data, du vil klone: -NoCloneOptionsSpecified=Ingen data at klone defineret. +NoCloneOptionsSpecified=Ingen data, der skal klones, er defineret. Of=af Go=Gå Run=Kør @@ -192,21 +192,21 @@ Hide=Skjule ShowCardHere=Vis kort Search=Søgning SearchOf=Søg -SearchMenuShortCut=Ctrl + shift + f -QuickAdd=Tilføj hurtigt -QuickAddMenuShortCut=Ctrl + shift + l +SearchMenuShortCut=Ctrl + Shift + f +QuickAdd=Hurtig tilføjelse +QuickAddMenuShortCut=Ctrl + Shift + l Valid=Gyldig -Approve=Godkend -Disapprove=Afvist +Approve=Godkende +Disapprove=Afvis ReOpen=Genåbne Upload=Upload ToLink=Link Select=Vælg SelectAll=Vælg alle Choose=Vælge -Resize=Tilpasse størrelsen -ResizeOrCrop=Tilpasse størrelsen eller Beskær -Recenter=Recenter +Resize=Tilpas størrelsen +ResizeOrCrop=Tilpas størrelsen eller Beskær +Recenter=Beskæring Author=Forfatter User=Bruger Users=Brugere @@ -214,17 +214,17 @@ Group=Gruppe Groups=Grupper UserGroup=Brugergruppe UserGroups=Brugergrupper -NoUserGroupDefined=Ingen brugergruppe definéret -Password=Kodeord -PasswordRetype=Gentag dit kodeord -NoteSomeFeaturesAreDisabled=Bemærk, at en masse funktioner / moduler er slået fra i denne demonstration. +NoUserGroupDefined=Ingen brugergruppe defineret +Password=Adgangskode +PasswordRetype=Indtast din adgangskode igen +NoteSomeFeaturesAreDisabled=Bemærk, at mange funktioner/moduler er deaktiveret i denne demonstration. Name=Navn -NameSlashCompany=Navn / firma +NameSlashCompany=Navn/virksomhed Person=Person Parameter=Parameter Parameters=Parametre Value=Værdi -PersonalValue=Personlige værdi +PersonalValue=Personlig værdi NewObject=Ny %s NewValue=Ny værdi OldValue=Gammel værdi %s @@ -232,10 +232,10 @@ CurrentValue=Nuværende værdi Code=Kode Type=Type Language=Sprog -MultiLanguage=Multi-sprog -Note=Nota +MultiLanguage=Flersproget +Note=Note Title=Titel -Label=Label +Label=Etiket RefOrLabel=Ref. eller etiket Info=Log Family=Familie @@ -245,64 +245,64 @@ DescriptionOfLine=Beskrivelse af linje DateOfLine=Dato for linje DurationOfLine=Linjens varighed ParentLine=Overordnet linje-id -Model=Skabelon +Model=Dokument skabelon DefaultModel=Standard dokument skabelon Action=Begivenhed About=Om -Number=Antal -NumberByMonth=Samlede rapporter pr. Måned +Number=Nummer +NumberByMonth=Samlede rapporter pr. måned AmountByMonth=Beløb efter måned Numero=Nummer Limit=Grænseværdi Limits=Grænseværdier Logout=Log ud -NoLogoutProcessWithAuthMode=Ingen applikations afbrydelses funktion med autentificeringstilstand %s -Connection=Log ind +NoLogoutProcessWithAuthMode=Ingen anvendelig afbrydelsesfunktion med godkendelsestilstand %s +Connection=Log på Setup=Opsætning -Alert=Alarm -MenuWarnings=Indberetninger +Alert=Advarsel +MenuWarnings=Advarsler Previous=Forrige Next=Næste Cards=Kort Card=Kort Now=Nu HourStart=Start time -Deadline=Deadline +Deadline=Tidsfrist Date=Dato -DateAndHour=Dato og tid +DateAndHour=Dato og klokkeslæt DateToday=Dags dato DateReference=Referencedato DateStart=Startdato DateEnd=Slutdato -DateCreation=Lavet dato -DateCreationShort=Creat. dato +DateCreation=Oprettelsesdato +DateCreationShort=Opret. dato IPCreation=Oprettelse IP -DateModification=Ændringsdatoen -DateModificationShort=Modif. dato -IPModification=Ændring IP -DateLastModification=Seneste ændring dato -DateValidation=Bekræftelsesdato -DateSigning=Underskrivelsesdato -DateClosing=Udløbsdato -DateDue=Forfaldsdag +DateModification=Ændringsdato +DateModificationShort=Ænd. dato +IPModification=Ændrings IP +DateLastModification=Seneste ændringsdato +DateValidation=Valideringsdato +DateSigning=Underskriftsdato +DateClosing=Lukkedato +DateDue=Forfaldsdato DateValue=Valørdato DateValueShort=Valørdato -DateOperation=Operation dato -DateOperationShort=Opret. Dato -DateLimit=Grænse dato -DateRequest=Anmodning dato -DateProcess=Proces dato +DateOperation=Driftsdato +DateOperationShort=Dr. dato +DateLimit=Sidste frist +DateRequest=Anmodningsdato +DateProcess=Behandlingsdato DateBuild=Rapport genereret den -DatePayment=Dato for betaling +DatePayment=Betalingsdato DateApprove=Godkendelsesdato -DateApprove2=Godkendelse af dato (Anden godkendelse) +DateApprove2=Godkendelsesdato (anden godkendelse) RegistrationDate=Registrerings dato -UserCreation=Oprettelsesbruger -UserModification=Modifikation bruger -UserValidation=Bruger som bekræftet -UserCreationShort=Opret. bruger -UserModificationShort=Modif. bruger -UserValidationShort=Gyldig. bruger +UserCreation=Oprettet af +UserModification=Ændret af +UserValidation=Valideret af +UserCreationShort=Opret. af +UserModificationShort=Ænd. af +UserValidationShort=Valid. af DurationYear=år DurationMonth=måned DurationWeek=uge @@ -318,7 +318,7 @@ WeekShort=Uge Day=Dag Hour=Time Minute=Minut -Second=Anden +Second=Sekund Years=År Months=Måneder Days=Dage @@ -332,20 +332,20 @@ Yesterday=I går Tomorrow=I morgen Morning=Morgen Afternoon=Eftermiddag -Quadri=Kvatal -MonthOfDay=Måned fra den dato +Quadri=Kvartal +MonthOfDay=Dagens måned DaysOfWeek=Ugedage HourShort=T MinuteShort=min -Rate=Hyppighed -CurrencyRate=Valuta omregningskurs -UseLocalTax=Incl. Moms +Rate=Sats +CurrencyRate=Valutaomregningskurs +UseLocalTax=Inkluder moms Bytes=Bytes KiloBytes=Kilobyte MegaBytes=Megabyte GigaBytes=Gigabyte TeraBytes=Terabyte -UserAuthor=Afsluttet af +UserAuthor=Lavet af UserModif=Opdateret af b=b. Kb=Kb @@ -354,52 +354,52 @@ Gb=Gb Tb=Tb Cut=Klip Copy=Kopier -Paste=Klister +Paste=Indsæt Default=Standard -DefaultValue=Standardværdi -DefaultValues=Standardværdier / filtre / sortering +DefaultValue=Standard værdi +DefaultValues=Standardværdier/filtre/sortering Price=Pris PriceCurrency=Pris (valuta) UnitPrice=Enhedspris UnitPriceHT=Enhedspris (ekskl.) -UnitPriceHTCurrency=Enhedspris (ekskl.) (Valuta) +UnitPriceHTCurrency=Enhedspris (ekskl.) (valuta) UnitPriceTTC=Enhedspris PriceU=Salgspris PriceUHT=Pris (netto) PriceUHTCurrency=U.P (netto) (valuta) PriceUTTC=Brutto (inkl. moms) Amount=Beløb -AmountInvoice=Fakturabeløbet -AmountInvoiced=Beløb faktureres -AmountInvoicedHT=Faktureret beløb (ekskl. Moms) +AmountInvoice=Faktura beløb +AmountInvoiced=Faktureret beløb +AmountInvoicedHT=Faktureret beløb (ekskl. moms) AmountInvoicedTTC=Faktureret beløb (inkl. moms) -AmountPayment=Indbetalingsbeløb +AmountPayment=Betalingsbeløb AmountHTShort=Beløb (ekskl.) AmountTTCShort=Beløb (inkl. moms) AmountHT=Beløb (ekskl. moms) AmountTTC=Beløb (inkl. moms) AmountVAT=Momsbeløb MulticurrencyAlreadyPaid=Allerede betalt, original valuta -MulticurrencyRemainderToPay=Manglene betaling , original valuta -MulticurrencyPaymentAmount=Betalingsbeløb, oprindelig valuta +MulticurrencyRemainderToPay=Manglende betaling , original valuta +MulticurrencyPaymentAmount=Betalingsbeløb, original valuta MulticurrencyAmountHT=Beløb (ekskl. moms), original valuta -MulticurrencyAmountTTC=Beløb (inkl. moms), oprindelig valuta -MulticurrencyAmountVAT=Momsbeløb, oprindelige valuta +MulticurrencyAmountTTC=Beløb (inkl. moms), original valuta +MulticurrencyAmountVAT=Momsbeløb, original valuta MulticurrencySubPrice=Beløb subpris multi valuta AmountLT1=Momsbeløb 2 AmountLT2=Momsbeløb 3 AmountLT1ES=Beløb RE AmountLT2ES=Beløb IRPF -AmountTotal=Beløb i alt +AmountTotal=Total beløb AmountAverage=Gennemsnitligt beløb -PriceQtyMinHT=Prismængde min. (ekskl. skat) -PriceQtyMinHTCurrency=Prismængde min. (ekskl. skat) (valuta) -PercentOfOriginalObject=Procent af originalgenstand +PriceQtyMinHT=Pris mængde min. (ekskl. moms) +PriceQtyMinHTCurrency=Pris mængde min. (ekskl. moms) (valuta) +PercentOfOriginalObject=Procent af originalt objekt AmountOrPercent=Beløb eller procent Percentage=Procent -Total=I alt -SubTotal=Sum -TotalHTShort=I alt (u/moms) +Total=Total +SubTotal=Subtotal +TotalHTShort=Total (ekskl.) TotalHT100Short=I alt 100%% (ekskl.) TotalHTShortCurrency=I alt (ekskl. i valuta) TotalTTCShort=I alt (m/moms) @@ -712,6 +712,7 @@ FeatureDisabled=Modul slået fra MoveBox=Flyt box Offered=Fri NotEnoughPermissions=Du har ikke tilladelse til denne handling +UserNotInHierachy=Denne handling er forbeholdt denne brugers supervisorer SessionName=Session navn Method=Metode Receive=Modtag @@ -801,6 +802,7 @@ URLPhoto=Url af foto/logo SetLinkToAnotherThirdParty=Link til en anden tredjepart LinkTo=Link til LinkToProposal=Link til forslag +LinkToExpedition= Link til ekspeditionen LinkToOrder=Link til ordre LinkToInvoice=Link til faktura LinkToTemplateInvoice=Link til skabelonfaktura @@ -829,7 +831,7 @@ ByDay=Dag BySalesRepresentative=Salgsrepræsentant LinkedToSpecificUsers=Linked til en bestemt bruger kontakt NoResults=Ingen resultater -AdminTools=Admin Tools +AdminTools=Admin. værktøjer SystemTools=Systemværktøjer ModulesSystemTools=Modul værktøjer Test=Test @@ -1174,6 +1176,7 @@ ConfirmAllocateCommercial=Tildel salgsrepræsentant bekræftelse ConfirmAllocateCommercialQuestion=Er du sikker på, at du vil tildele den eller de valgte post(er) %s? CommercialsAffected=Salgsrepræsentanter berørt CommercialAffected=Sælger berørt -YourMessage=Vælg besked +YourMessage=Din besked YourMessageHasBeenReceived=Din besked er modtaget. Vi svarer eller kontakter dig hurtigst muligt. UrlToCheck=Url for at tjekke +Automation=Automatisering diff --git a/htdocs/langs/da_DK/members.lang b/htdocs/langs/da_DK/members.lang index 9498d830a2a..76b5c2de431 100644 --- a/htdocs/langs/da_DK/members.lang +++ b/htdocs/langs/da_DK/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=Slutdato for medlemskab EndSubscription=Slutning af medlemskab SubscriptionId=Bidrag -id WithoutSubscription=Uden bidrag -MemberId=Medlem id +MemberId=Medlems ID +MemberRef=Medlems reference NewMember=Nyt medlem MemberType=Medlem type MemberTypeId=Medlem type id @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Medlemstype kan ikke slettes NewSubscription=Nye bidrag NewSubscriptionDesc=Denne form giver dig mulighed for at registrere dit abonnement som nyt medlem af fundamentet. Hvis du ønsker at forny dit abonnement (hvis der allerede er medlem), bedes du kontakte fundament bord i stedet via e-mail %s. Subscription=Bidrag +AnyAmountWithAdvisedAmount=Ethvert beløb med en anbefalet mængde på %s %s +AnyAmountWithoutAdvisedAmount=Ethvert beløb +CanEditAmountShort=Ethvert beløb +CanEditAmountShortForValues=anbefalet, ethvert beløb +MembershipDuration=Varighed +GetMembershipButtonLabel=Få medlemskab Subscriptions=Bidrag SubscriptionLate=Sen SubscriptionNotReceived=Bidrag blev aldrig modtaget @@ -135,7 +142,7 @@ CardContent=Indholdet af din medlem kortet # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=Vi vil gerne fortælle dig, at din anmodning om medlemskab blev modtaget.

ThisIsContentOfYourMembershipWasValidated=Vi vil gerne fortælle dig, at dit medlemskab blev bekræftet med følgende oplysninger:

-ThisIsContentOfYourSubscriptionWasRecorded=Vi vil gerne fortælle dig, at dit nye abonnement blev registreret.

+ThisIsContentOfYourSubscriptionWasRecorded=Vi vil gerne fortælle dig, at dit nye abonnement blev registreret. Vedlagt din faktura her.

ThisIsContentOfSubscriptionReminderEmail=Vi vil fortælle dig, at dit abonnement er ved at udløbe eller allerede er udløbet (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Vi håber, at du fornyer det.

ThisIsContentOfYourCard=Dette er en oversigt over de oplysninger, vi har om dig. Kontakt os, hvis noget er forkert. DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Meddelelse om den e-mail, der er modtaget i tilfælde af automatisk registrering af en gæst @@ -198,7 +205,8 @@ NbOfSubscriptions=Antal bidrag AmountOfSubscriptions=Beløb opkrævet fra bidrag TurnoverOrBudget=Omsætning (for et selskab) eller Budget (en fond) DefaultAmount=Standardbeløb for bidrag -CanEditAmount=Besøgende kan vælge/redigere beløbet for sit bidrag +CanEditAmount=Besøgende kan vælge/redigere beløbet for sit bidrag uanset medlemstype +AmountIsLowerToMinimumNotice=på et samlet forfald af%s MEMBER_NEWFORM_PAYONLINE=Hop på integreret online betaling side ByProperties=Af natur MembersStatisticsByProperties=Medlemsstatistik af natur diff --git a/htdocs/langs/da_DK/modulebuilder.lang b/htdocs/langs/da_DK/modulebuilder.lang index 0f136d2684f..2b54699eae3 100644 --- a/htdocs/langs/da_DK/modulebuilder.lang +++ b/htdocs/langs/da_DK/modulebuilder.lang @@ -1,4 +1,5 @@ # Dolibarr language file - Source file is en_US - loan +IdModule= Modul id ModuleBuilderDesc=Dette værktøj må kun bruges af erfarne brugere eller udviklere. Det giver værktøjer til at bygge eller redigere dit eget modul. Dokumentation for alternativ manuel udvikling er her . EnterNameOfModuleDesc=Indtast navnet på modulet/applikationen, der skal oprettes uden mellemrum. Brug store bogstaver til at adskille ord (for eksempel: MyModule, EcommerceForShop, SyncWithMySystem...) EnterNameOfObjectDesc=Indtast navnet på det objekt, der skal oprettes, uden mellemrum. Brug store bogstaver til at adskille ord (for eksempel: Mit objekt, elev, lærer...). CRUD-klassefilen, men også API-fil, sider til liste/tilføj/rediger/slet objekt og SQL-filer vil blive genereret. @@ -9,6 +10,7 @@ ModuleBuilderDesc4=Et modul registreres som 'redigerbart', når filen % NewModule=Nyt modul NewObjectInModulebuilder=Nyt objekt NewDictionary=Ny ordbog +ModuleName=Modulnavn ModuleKey=Modul nøgle ObjectKey=Objektnøgle DicKey=Ordbogsnøgle @@ -153,3 +155,4 @@ LinkToParentMenu=Forældremenu (fk_xxxxmenu) ListOfTabsEntries=Liste over faneposter TabsDefDesc=Definer her de faner, som dit modul giver TabsDefDescTooltip=Fanerne, der leveres af dit modul/applikation, er defineret i arrayet $this->tabs i modulbeskrivelsesfilen. Du kan redigere denne fil manuelt eller bruge den indlejrede editor. +BadValueForType=Forkert værdi for type %s diff --git a/htdocs/langs/da_DK/orders.lang b/htdocs/langs/da_DK/orders.lang index cb1613fd5a5..f726c1b6bab 100644 --- a/htdocs/langs/da_DK/orders.lang +++ b/htdocs/langs/da_DK/orders.lang @@ -1,4 +1,5 @@ # Dolibarr language file - Source file is en_US - orders +OrderExists=En åben ordre var allerede knyttet til dette tilbud, så ingen anden ordre blev oprettet automatisk OrdersArea=Kundeordrer SuppliersOrdersArea=Indkøbsordreområde OrderCard=Ordreside diff --git a/htdocs/langs/da_DK/paypal.lang b/htdocs/langs/da_DK/paypal.lang index 05951b1aabc..f581744c8d5 100644 --- a/htdocs/langs/da_DK/paypal.lang +++ b/htdocs/langs/da_DK/paypal.lang @@ -1,6 +1,6 @@ # Dolibarr language file - Source file is en_US - paypal PaypalSetup=PayPal-modul opsætning -PaypalDesc=Dette modul tillader betaling med kunder via PayPal. Dette kan bruges til en ad hoc-betaling eller en betaling relateret til en Dolibarr objekt (faktura, ordre, ...) +PaypalDesc=Dette modul tillader betaling fra kunder via PayPal . Dette kan bruges til en ad-hoc betaling eller til en betaling relateret til et Dolibarr objekt (faktura, ordre, ...) PaypalOrCBDoPayment=Betal med PayPal (kort eller PayPal) PaypalDoPayment=Betal med PayPal PAYPAL_API_SANDBOX=Mode test / sandkasse @@ -34,3 +34,4 @@ ARollbackWasPerformedOnPostActions=En tilbagekaldelse blev udført på alle post ValidationOfPaymentFailed=Bekræftelse af betaling er mislykket CardOwner=Kortholder PayPalBalance=Paypal kredit +OnlineSubscriptionPaymentLine=Onlineabonnement opkrævet på %s
Betalt via %s
Oprindelses-IP-adresse: %s
Transaktions-id: %s diff --git a/htdocs/langs/da_DK/projects.lang b/htdocs/langs/da_DK/projects.lang index d4e4a57caa3..f276ce2a59d 100644 --- a/htdocs/langs/da_DK/projects.lang +++ b/htdocs/langs/da_DK/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=Faktureret tid TimeSpentForIntervention=Tid brugt TimeSpentForInvoice=Tid brugt OneLinePerUser=En linje pr. Bruger -ServiceToUseOnLines=Service til brug på linjer +ServiceToUseOnLines=Service til brug på linjer som standard InvoiceGeneratedFromTimeSpent=Faktura %s er genereret fra tidsforbrug til projektet InterventionGeneratedFromTimeSpent=Intervention %s er genereret fra tid brugt på projektet ProjectBillTimeDescription=Tjek om du indtaster timeseddel på opgaver projekt og du planlægger at generere faktura (er) fra timeseddel til regningen kunden af projektet (ikke kontrollere, hvis du planlægger at oprette faktura, der ikke er baseret på indgåede timesedler). Bemærk: For at generere faktura, gå på fanen 'Tidsforbruget' af projektet og vælg linjer til at omfatte. @@ -294,3 +294,4 @@ EnablePublicLeadForm=Aktiver den offentlige kontaktformular NewLeadbyWeb=Din besked eller anmodning er blevet optaget. Vi svarer eller kontakter dig snarest. NewLeadForm=Ny kontaktformular LeadFromPublicForm=Online lead fra offentlig form +ExportAccountingReportButtonLabel=Få rapport diff --git a/htdocs/langs/da_DK/stocks.lang b/htdocs/langs/da_DK/stocks.lang index b3ef7bc27f8..1367640112b 100644 --- a/htdocs/langs/da_DK/stocks.lang +++ b/htdocs/langs/da_DK/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Lagergrænse for alarm og ønsket optimal lager kor ProductStockWarehouseUpdated=Lagergrænse for alarm og ønsket optimal lager korrekt opdateret ProductStockWarehouseDeleted=Lagergrænse for advarsel og ønsket optimal lager slettet korrekt AddNewProductStockWarehouse=Indstil ny grænse for alarm og ønsket optimal lager -AddStockLocationLine=Sænk mængde og klik derefter for at tilføje et andet lager til dette produkt +AddStockLocationLine=Reducer mængden og klik derefter for at opdele linjen InventoryDate=Lagerdato Inventories=Varebeholdninger NewInventory=Ny opgørelse @@ -254,7 +254,7 @@ ReOpen=Genåben ConfirmFinish=Bekræfter du afslutningen af opgørelsen? Dette genererer alle aktiebevægelser for at opdatere din aktie til det rigtige antal, du har indtastet lageret. ObjectNotFound=%s ikke fundet MakeMovementsAndClose=Generer bevægelser og luk -AutofillWithExpected=Erstat reel mængde med forventet mængde +AutofillWithExpected=Fyld den virkelige mængde med den forventede mængde ShowAllBatchByDefault=Vis batchoplysninger som standard på produktfanen "lager" CollapseBatchDetailHelp=Du kan indstille standardvisning af batchdetaljer i lagermodulkonfiguration ErrorWrongBarcodemode=Ukendt stregkode -tilstand @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Produkt med stregkode findes ikke WarehouseId=Lager -ID WarehouseRef=Lager Ref SaveQtyFirst=Gem først de reelle oplagrede mængder, før du beder om oprettelse af lagerbevægelsen. +ToStart=Start InventoryStartedShort=Startet ErrorOnElementsInventory=Operationen blev annulleret af følgende årsag: ErrorCantFindCodeInInventory=Kan ikke finde følgende kode i inventaret QtyWasAddedToTheScannedBarcode=Succes!! Mængden blev tilføjet til alle de ønskede stregkoder. Du kan lukke scannerværktøjet. StockChangeDisabled=Ændring på lager deaktiveret NoWarehouseDefinedForTerminal=Intet lager defineret for terminal +ClearQtys=Ryd alle mængder +ModuleStockTransferName=Avanceret lageroverførsel +ModuleStockTransferDesc=Avanceret styring af lageroverførsel med generering af overførselsark +StockTransferNew=Ny lageroverførsel +StockTransferList=Liste over lageroverførsler +ConfirmValidateStockTransfer=Er du sikker på, at du vil validere denne lageroverførsel med referencen %s? +ConfirmDestock=Reducer lagre med overførsel %s +ConfirmDestockCancel=Annuller reduktion af lagre med overførsel %s +DestockAllProduct=Reducer lagre +DestockAllProductCancel=Annuller reduktion af lagre +ConfirmAddStock=Øg lagrene med overførsel %s +ConfirmAddStockCancel=Annuller forøgelse af lagre med overførsel %s +AddStockAllProduct=Forøgelse af lagre +AddStockAllProductCancel=Annuller forøgelse af lagre +DatePrevueDepart=Planlagt afgangsdato +DateReelleDepart=Reel afgangsdato +DatePrevueArrivee=Planlagt ankomstdato +DateReelleArrivee=Reel ankomstdato +HelpWarehouseStockTransferSource=Hvis dette lager er indstillet, vil kun dette og dets underordnede være tilgængelige som kildelager +HelpWarehouseStockTransferDestination=Hvis dette lager er indstillet, vil kun dette og dets underordnede være tilgængelige som destinationslager +LeadTimeForWarning=Leveringstid før alarm (i dage) +TypeContact_stocktransfer_internal_STFROM=Afsender af lageroverførsel +TypeContact_stocktransfer_internal_STDEST=Modtager af lageroverførsel +TypeContact_stocktransfer_internal_STRESP=Ansvarlig for lageroverførsel +StockTransferSheet=Lageroverførselsark +StockTransferSheetProforma=Proforma lageroverførselsark +StockTransferDecrementation=Reducer afsenderlagre +StockTransferIncrementation=Forøg modtagerlagre +StockTransferDecrementationCancel=Annuller reduktion af afsenderlagre +StockTransferIncrementationCancel=Annuller forøgelse af modtagerlagre +StockStransferDecremented=Afsenderlagre reduceret +StockStransferDecrementedCancel=Reduktion af afsenderlagre annulleret +StockStransferIncremented=Lukket - Lagre overført +StockStransferIncrementedShort=Lagre overført +StockStransferIncrementedShortCancel=Forøgelse af modtagerlagre annulleret +StockTransferNoBatchForProduct=Produkt %s bruger ikke batch, ryd batch online og prøv igen +StockTransferSetup = Konfiguration af lageroverførselsmodul +Settings=Indstillinger +StockTransferSetupPage = Konfigurationsside for lageroverførselsmodul +StockTransferRightRead=Læs lageroverførsler +StockTransferRightCreateUpdate=Opret/opdater lageroverførsler +StockTransferRightDelete=Slet lageroverførsler +BatchNotFound=Parti/serie blev ikke fundet for dette produkt diff --git a/htdocs/langs/da_DK/suppliers.lang b/htdocs/langs/da_DK/suppliers.lang index e59117969e0..2ba450262f1 100644 --- a/htdocs/langs/da_DK/suppliers.lang +++ b/htdocs/langs/da_DK/suppliers.lang @@ -4,6 +4,7 @@ SuppliersInvoice=Leverandørfaktura SupplierInvoices=Leverandør fakturaer ShowSupplierInvoice=Vis leverandørfaktura NewSupplier=Ny sælger +NewSupplierInvoice = Ny leverandørfaktura History=Historie ListOfSuppliers=Liste over leverandører ShowSupplier=Vis sælger @@ -47,3 +48,10 @@ BuyerName=Navn på køber AllProductServicePrices=Alle produkt- / servicepriser AllProductReferencesOfSupplier=Alle henvisninger til leverandør BuyingPriceNumShort=Leverandørpriser +RepeatableSupplierInvoice=Skabelon leverandørfaktura +RepeatableSupplierInvoices=Skabelon leverandørfakturaer +RepeatableSupplierInvoicesList=Skabelon leverandørfakturaer +RecurringSupplierInvoices=Tilbagevendende leverandørfakturaer +ToCreateAPredefinedSupplierInvoice=For at oprette skabelonleverandørfaktura skal du oprette en standardfaktura, og derefter, uden at validere den, klikke på knappen "%s". +GeneratedFromSupplierTemplate=Genereret fra leverandørfaktura skabelon %s +SupplierInvoiceGeneratedFromTemplate=Leverandørfaktura %s Genereret fra leverandørfaktura skabelon %s diff --git a/htdocs/langs/da_DK/ticket.lang b/htdocs/langs/da_DK/ticket.lang index 10733b0a898..1c43340d3d0 100644 --- a/htdocs/langs/da_DK/ticket.lang +++ b/htdocs/langs/da_DK/ticket.lang @@ -90,8 +90,8 @@ TicketPublicAccess=En offentlig grænseflade, der kræver ingen identifikation, TicketSetupDictionaries=Typen af sag, alvorlighed og analytiske koder kan konfigureres fra ordbøger TicketParamModule=Indstilling af modulvariabler TicketParamMail=E-mail opsætning -TicketEmailNotificationFrom=Afsender e-mail for billetsvar -TicketEmailNotificationFromHelp=Afsender e-mail for billetsvar sendt fra Dolibarr +TicketEmailNotificationFrom=Afsender e-mail for besked om svar +TicketEmailNotificationFromHelp=Afsender-e-mail, der skal bruges til at sende meddelelses-e-mailen, når der gives et svar inde i backoffice. For eksempel noreply@example.com TicketEmailNotificationTo=Giv besked om oprettelse af billet til denne e-mailadresse TicketEmailNotificationToHelp=Hvis den er til stede, vil denne e-mailadresse blive underrettet om oprettelse af billet TicketNewEmailBodyLabel=Tekstbesked sendt efter oprettelse af en sag diff --git a/htdocs/langs/de_AT/admin.lang b/htdocs/langs/de_AT/admin.lang index 1bf7b8b8108..54771c2245a 100644 --- a/htdocs/langs/de_AT/admin.lang +++ b/htdocs/langs/de_AT/admin.lang @@ -94,7 +94,6 @@ Permission254=Andere Benutzer löschen oder deaktivieren Permission255=Eigene Benutzereinstellungen setzen/bearbeiten Permission256=Eigenes Passwort ändern Permission271=CA einsehen -Permission272=Rechnungen einsehen Permission273=Rechnungen erstellen Permission292=Festlegen von Berechtigungen für die Tarife Permission311=Services einsehen diff --git a/htdocs/langs/de_CH/accountancy.lang b/htdocs/langs/de_CH/accountancy.lang index 7481246a7a5..766228b7ed4 100644 --- a/htdocs/langs/de_CH/accountancy.lang +++ b/htdocs/langs/de_CH/accountancy.lang @@ -28,6 +28,7 @@ InvoiceLabel=Rechnungsbezeichung OverviewOfAmountOfLinesNotBound=Positionen ohne Verknüpfung zu einem Buchhaltungskonto OverviewOfAmountOfLinesBound=Positionen mit Verknüpfung zu einem Buchhaltungskonto OtherInfo=Weitere Informationen +DeleteCptCategory=Buchhaltungskonto aus Gruppe entfernen ConfirmDeleteCptCategory=Möchten Sie dieses Konto wirklich aus der Kontogruppe entfernen? GroupIsEmptyCheckSetup=Das Feld Gruppe ist leer, bitte prüfe die Einstellungen deiner Kontengruppen. DetailByAccount=Zeige Details nach Konto geordnet @@ -38,7 +39,7 @@ CountriesNotInEEC=Nicht EWR - Staaten CountriesInEECExceptMe=Länder im EWR ausser %s CountriesExceptMe=Alle Staaten, ausser %s AccountantFiles=Geschäftsvorgänge exportieren -ExportAccountingSourceDocHelp=Mit diesem Tool können Sie die Quellereignisse (Liste in CSV und PDFs) exportieren, die zur Erstellung Ihrer Buchhaltung verwendet werden. +ExportAccountingSourceDocHelp=With this tool, you can search and export the source events that are used to generate your accountancy.
The exported ZIP file will contain the lists of requested items in CSV, as well as their attached files in their original format (PDF, ODT, DOCX...). ExportAccountingSourceDocHelp2=Die Journale exportierst du im Menu %s - %s. VueByAccountAccounting=Anzeigen nach Buchhaltungskonto VueBySubAccountAccounting=Anzeigen nach Nebenbuchkonto @@ -78,7 +79,6 @@ ShowAccountingAccountInJournals=Zeige dieses Buchhaltungskonto in den Journalen AccountAccountingSuggest=Vorgeschlagenes Buchhaltungskonto MenuVatAccounts=MWST - Konten MenuExpenseReportAccounts=Spesenabrechnungskonten -MenuLoanAccounts=Darlehenskonten MenuProductsAccounts=Produktkonten MenuAccountancyClosure=Abschluss MenuAccountancyValidationMovements=Kontobewegungen freigeben @@ -124,7 +124,6 @@ BANK_DISABLE_DIRECT_INPUT=Direktbuchung der Transaktion auf dem Bankkonto unterb ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL=Entwurfsexport des Journales erlauben ACCOUNTANCY_COMBO_FOR_AUX=Kombinierte Liste für Nebenbuchkonten aktivieren (das kann bei vielen Geschäftspartnern langsam gehen. Weiter kannst du so nicht nach Teilwerten suchen. ACCOUNTING_DATE_START_BINDING=Eröffnungsdatum der Buchhaltung festlegen. Alle Vorgänge davor werden in der Buchhaltung nicht berücksichtigt. -ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=Standard - Zeitraum auf den Journalisierungsseiten ACCOUNTING_MISCELLANEOUS_JOURNAL=Nebenjournal ACCOUNTING_SOCIAL_JOURNAL=Personaljournal ACCOUNTING_HAS_NEW_JOURNAL=Hat neuen Journaleintrag @@ -134,6 +133,7 @@ ACCOUNTING_CLOSURE_DEFAULT_JOURNAL=Abschlussjournal ACCOUNTING_ACCOUNT_TRANSFER_CASH=Transferkonto Banktransaktionen TransitionalAccount=Durchlaufkonto Bank ACCOUNTING_ACCOUNT_SUSPENSE=Sperrkonto +DONATION_ACCOUNTINGACCOUNT=Buchhaltungskonto für Spenden ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=Buchhaltungskonto für Abonnemente ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=Standardkonto für Kunden - Anzahlungen ACCOUNTING_PRODUCT_BUY_ACCOUNT=Standard - Buchhaltungskonto für gekaufte Produkte\n(Wird verwendet, wenn kein Konto in der Produktdefinition hinterlegt ist) @@ -148,10 +148,10 @@ ACCOUNTING_SERVICE_BUY_EXPORT_ACCOUNT=Standardkonto für importierte Dienstleist ACCOUNTING_SERVICE_SOLD_ACCOUNT=Standard - Buchhaltungskonto für verkaufte Leistungen\n(Wird verwendet, wenn kein Konto in der Leistungsdefinition hinterlegt ist) ACCOUNTING_SERVICE_SOLD_INTRA_ACCOUNT=Standard - Buchhaltungskonto für verkaufte Leistungen in den EWR\n(Wird verwendet, wenn kein Konto in der Leistungsdefinition hinterlegt ist). ACCOUNTING_SERVICE_SOLD_EXPORT_ACCOUNT=Standardkonto für verkaufte Leistungen an nicht EWR - Staaten (sofern nicht anders im Produkt hinterlegt) -LabelAccount=Kontobezeichnung LabelOperation=Vorgangsbezeichnung AccountingDirectionHelp=Verwenden Sie für ein Buchhaltungskonto eines Kunden Guthaben, um eine Zahlung zu erfassen, die Sie erhalten haben.
Verwenden Sie für ein Buchhaltungskonto eines Lieferanten Debit, um eine von Ihnen geleistete Zahlung zu erfassen LetteringCode=Beschriftung +Lettering=Beschriftung JournalLabel=Journalbezeichnung TransactionNumShort=Transaktionsnummer GroupByAccountAccounting=Nach Hauptbuchkonto gruppieren @@ -177,6 +177,7 @@ NewAccountingMvt=Neue Transaktion NumMvts=Nummer der Transaktion ListeMvts=Liste der Kontobewegungen ErrorDebitCredit=Soll und Haben können nicht beide gleichzeitig einen Wert haben. +AddCompteFromBK=Buchhaltungskonten zur Gruppe hinzufügen ReportThirdParty=Liste der Geschäftspartner-Konten DescThirdPartyReport=Liste der Geschäftpartner (Kunden und Lieferanten) mit deren Buchhaltungskonten ListAccounts=Liste der Buchhaltungskonten @@ -203,6 +204,8 @@ DescVentilTodoExpenseReport=Hier verknüpfst du Spesenauslagen mit dem passenden DescVentilExpenseReport=Du siehst die Spesenabrechnungspositionen und den aktuellen Verknüpfungsstatus zu Buchhaltungskonten. DescVentilExpenseReportMore=Wenn du in den Spesenarten Buchhaltungskonten hinterlegt hast, kann ich jene einander automatisch zuordnen. Dafür ist die Schaltfläche "%s" da.\nDort, wo das nicht klappt, kannst du die passenden Buchhaltungskonten via "%s" von Hand zuweisen. DescVentilDoneExpenseReport=Du siehst die Spesenabrechnungspositionen und die damit verknüpften Buchhaltungskonten. +Closure=Jahresabschluss +DescClosure=Consult here the number of movements by month who are not yet validated & locked DescValidateMovements=Für den Abschluss müssen alle Kontobewegungen frei gegeben sein. Danach sind sie nicht mehr änderbar. ValidateHistory=Automatisch verknüpfen ErrorAccountancyCodeIsAlreadyUse=Hoppla, dieses Buchhaltungskonto wird noch verwendet - du kannst es deshalb nicht löschen. @@ -230,6 +233,7 @@ AccountingAccountForSalesTaxAreDefinedInto=Obacht: Das Buchhaltungskonto für d NumberOfAccountancyEntries=Anzahl Einträge NumberOfAccountancyMovements=Anzahl Bewegungen ACCOUNTING_DISABLE_BINDING_ON_SALES=Bindung & Übertragung in der Verkaufsbuchhaltung deaktivieren (Kundenrechnungen werden in der Buchhaltung nicht berücksichtigt) +NotifiedValidationDate=Validate and Lock the exported entries (same effect than the "%s" feature, modification and deletion of the lines will DEFINITELY not be possible) ConfirmExportFile=Bestätigen der Generierung der Buchhaltungsexportdatei ? ExportDraftJournal=Exportiere Entwurfsjournal Modelcsv=Exportformat @@ -259,6 +263,7 @@ OptionModeProductSellDesc=Finde alle Produkte mit einem Buchhaltungskonto für V OptionModeProductSellIntraDesc=Zeige alle Produkte mit einem Buchhaltungskonto für den Export in den EWR OptionModeProductSellExportDesc=Zeige alle Produkte mit einem Buchhaltungskonto für den Export in andere Länder OptionModeProductBuyDesc=Finde alle Produkte mit einem Buchhaltungskonto für Einkäufe. +OptionModeProductBuyIntraDesc=Alle Produkte mit Buchhaltungskonto für Einkäufe in der EWG anzeigen. OptionModeProductBuyExportDesc=Alle Produkte mit Buchhaltungskonto für sonstige Auslandskäufe anzeigen. CleanFixHistory=Lösche alle Kontierungscodes, die im Kontenplan nicht vorkommen, aus allen Positionen CleanHistory=Setzte alle Verknüpfungen für das gewählte Jahr zurück @@ -270,6 +275,8 @@ AccountRemovedFromGroup=Ich hab das Buchhaltungskonto aus der Gruppe entfernt. SaleLocal=Inlandverkauf SaleExport=Exportverkauf SaleEEC=Verkauf im EWR +ForbiddenTransactionAlreadyExported=Unzulässig: Die Transaktion wurde bereits validiert und/oder exportiert. +ForbiddenTransactionAlreadyValidated=Unzulässig: Die Transaktion wurde bereits validiert. Range=Bereich dieses Kontenplanes Calculated=Berechnet ConfirmMassDeleteBookkeepingWriting=Bestätige die Mehrfachlöschung @@ -286,5 +293,6 @@ UseMenuToSetBindindManualy=Nicht verbundenen Positionen, bitte Benutze den Menup ImportAccountingEntries=Buchungen FECFormatJournalCode=Code-Journal (JournalCode) FECFormatReconcilableDate=Übertragbares Datum (DateLet) +DateExport=Datum Export WarningReportNotReliable=Obacht, dieser Bericht basiert nicht auf den Hauptbucheinträgen. Falls dort also noch Änderungen vorgenommen worden sind, wird das nicht übereinstimmen. Bei sauberer Buchführung nimmst du eher die Buchhaltungsberichte. ExpenseReportJournal=Spesenabrechnungsjournal diff --git a/htdocs/langs/de_CH/admin.lang b/htdocs/langs/de_CH/admin.lang index 485fa6f2fe0..cc2f04135c8 100644 --- a/htdocs/langs/de_CH/admin.lang +++ b/htdocs/langs/de_CH/admin.lang @@ -367,9 +367,6 @@ Permission64=Interventionen löschen Permission76=Daten exportieren Permission87=Kundenaufträge abschliessen Permission91=Sozialabgaben, Steuern und Mehrwertsteuer einsehen -Permission121=Mit Benutzer verbundene Geschäftspartner einsehen -Permission122=Mit Benutzer verbundene Geschäftspartner erstellen/bearbeiten -Permission125=Mit Benutzer verbundene Geschäftspartner löschen Permission163=Service/Abonnement in einem Vertrag aktivieren Permission164=Service/Abonnement in einem Vertrag deaktivieren Permission172=Reise- und Spesenabrechnung erstellen/ändern @@ -386,14 +383,11 @@ Permission255=Andere Passwörter ändern Permission273=Ausgabe Rechnungen Permission300=Barcodes auslesen Permission301=Barcodes erzeugen und ändern. -Permission311=Leistungen einsehen Permission331=Lesezeichen einsehen -Permission401=Rabatte einsehen Permission430=PHP Debug Bar verwenden Permission520=Darlehen einsehen Permission525=Darlehens-rechner Permission527=Exportiere Darlehen -Permission531=Leistungen einsehen Permission650=Rechnungen für Rohmaterialien einsehen. Permission651=Rechnungen für Rohmaterialien erzeugen und bearbeiten Permission652=Rechnungen für Rohmaterialien löschen @@ -404,12 +398,10 @@ Permission1123=Partnerofferten freigeben Permission1124=Partnerofferten auslösen Permission1125=Partnerofferten löschen Permission1126=Lieferanten - Preisanfragen schliessen -Permission1182=Lieferantenbestellungen einsehen Permission1185=Lieferantenbestellungen bestätigen Permission1186=Lieferantenbestellungen auslösen Permission1187=Empfangsbestätigung Lieferantenbestellung quittieren Permission1190=Lieferantenbestellungen bestätigen (zweite Bestätigung). -Permission1231=Lieferantenrechnungen einsehen Permission1232=Lieferantenrechnungen erzeugen und bearbeiten Permission1236=Kundenrechnungen, -attribute und -zahlungen exportieren Permission1421=Kundenaufträge mit Attributen exportieren @@ -514,8 +506,6 @@ MemcachedAvailableAndSetup=Module memcached dedicated to use memcached server is ProductSetup=Produktmoduleinstellungen ServiceSetup=Leistungen Modul Setup ProductServiceSetup=Produkte und Leistungen Module Einstellungen -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 ProductCodeChecker=Modul für Produktcode-Erstellung und -Überprüfung (Produkt oder Service) ProductOtherConf=Konfiguration Produkt-/Services diff --git a/htdocs/langs/de_CH/boxes.lang b/htdocs/langs/de_CH/boxes.lang index 95018f3b6c2..7bd9754e4fe 100644 --- a/htdocs/langs/de_CH/boxes.lang +++ b/htdocs/langs/de_CH/boxes.lang @@ -4,11 +4,8 @@ BoxLastRssInfos=RSS - Information BoxLastProducts=%s neueste Produkte/Leistungen BoxProductsAlertStock=Lagerbestandeswarnungen für Produkte BoxLastProductsInContract=%s zuletzt in Verträgen verwendete Produkte/Leistungen -BoxLastSupplierBills=Neueste Lieferantenrechnungen -BoxLastCustomerBills=Neueste Kundenrechnungen BoxOldestUnpaidCustomerBills=Älteste offene Kundenrechnungen BoxOldestUnpaidSupplierBills=Älteste offene Lieferantenrechnungen -BoxLastProposals=Neueste Angebote BoxLastProspects=Zuletzt bearbeitete Leads BoxLastCustomers=Zuletzt bearbeitete Kunden BoxLastSuppliers=Zuletzt bearbeitete Lieferanten diff --git a/htdocs/langs/de_CH/errors.lang b/htdocs/langs/de_CH/errors.lang index 0e1ae0d6668..25e3c165ec5 100644 --- a/htdocs/langs/de_CH/errors.lang +++ b/htdocs/langs/de_CH/errors.lang @@ -21,7 +21,6 @@ ErrorFieldCanNotContainSpecialNorUpperCharacters=Das Feld %s darf keine S ErrorFieldMustHaveXChar=Das Feld %s muss mindestens %s Zeichen haben. ErrorCantSaveADoneUserWithZeroPercentage=Ereignisse können nicht mit Status "Nicht begonnen" gespeichert werden, wenn das Feld "Erledigt durch" schon ausgefüllt ist. ErrorPleaseTypeBankTransactionReportName=Gib hier den Bankkontoauszug im Format YYYYMM oder YYYYMMDD an, in den du diesen Eintrag eintragen willst. -ErrorProdIdAlreadyExist=%s wurde bereits einem Geschäftspartner zugewiesen ErrorForbidden3=Es scheint keine ordnungsgemässe Authentifizierung für das System vorzuliegen. Bitte werfen Sie einen Blick auf die Systemdokumentation um die entsprechenden Authentifizierungsoptionen zu verwalten (htaccess, mod_auth oder andere...) ErrorBadValueForCode=Unzulässiger Code-Wert. Versuchen Sie es mit einem anderen Wert erneut... ErrorWarehouseRequiredIntoShipmentLine=Warenlager ist auf der Lieferzeile erforderlich. diff --git a/htdocs/langs/de_CH/holiday.lang b/htdocs/langs/de_CH/holiday.lang index 15c991cf42b..019dba5d057 100644 --- a/htdocs/langs/de_CH/holiday.lang +++ b/htdocs/langs/de_CH/holiday.lang @@ -8,7 +8,9 @@ AddCP=Ferienantrag einreichen DateDebCP=Ferienbeginn DateFinCP=Ferienende ToReviewCP=Genehmigung ausstehend +ApprovedCP=genehmigt CancelCP=widerrufen +RefuseCP=abgelehnt Leave=Ferienantrag LeaveId=Ferien ID ReviewedByCP=Wird genehmigt von @@ -52,6 +54,7 @@ NotTheAssignedApprover=Du bist nicht der zugewiesene Genehmiger. UserCP=Benutzer ErrorAddEventToUserCP=Ein Fehler ist beim Erstellen der Sonderferien aufgetreten. AddEventToUserOkCP=Das Hinzufügen der Sonderferien wurde abgeschlossen. +PrevSoldeCP=Vorherige Übersicht alreadyCPexist=Ein Ferienantrag wurde für diese Periode bereits erstellt. BoxTitleLastLeaveRequests=Die %s zuletzt bearbeiteten Ferienanträge HolidaysCancelation=Stornierte Ferienanträge diff --git a/htdocs/langs/de_CH/hrm.lang b/htdocs/langs/de_CH/hrm.lang index cd212704e9a..17176eec0be 100644 --- a/htdocs/langs/de_CH/hrm.lang +++ b/htdocs/langs/de_CH/hrm.lang @@ -7,6 +7,5 @@ DeleteEstablishment=Betrieb löschen ConfirmDeleteEstablishment=Willst du diesen Betrieb wirklich löschen? OpenEtablishment=Betrieb wählen CloseEtablishment=Betrieb schliessen -DictionaryDepartment=Personalverwaltung - Abteilungsliste Employee=Mitarbeiter -NewEmployee=Neuer Mitarbeiter +HrmSetup=HRM Modul Einstellungen diff --git a/htdocs/langs/de_CH/main.lang b/htdocs/langs/de_CH/main.lang index faee978ff15..2d6cc56c9dd 100644 --- a/htdocs/langs/de_CH/main.lang +++ b/htdocs/langs/de_CH/main.lang @@ -180,7 +180,6 @@ DolibarrWorkBoard=Offene Aktionen NoOpenedElementToProcess=Keine offenen Aktionen Categories=Suchwörter/Kategorien Category=Stichwort / Kategorie -FromDate=Von FromLocation=Von OtherInformations=Weitere Informationen Refused=zurückgewiesen @@ -202,7 +201,6 @@ JoinMainDoc=Führe das Hauptdokument zusammen. Keyword=Stichwort Origin=Herkunft AmountInCurrency=Betrag in %s -NbOfThirdParties=Anzahl der Geschäftspartner NbOfObjectReferers=Anzahl verknüpfter Objekte Referers=Verknüpfte Objekte Uncheck=nicht gewählt diff --git a/htdocs/langs/de_CH/members.lang b/htdocs/langs/de_CH/members.lang index 5f8582fe105..5cce97590f2 100644 --- a/htdocs/langs/de_CH/members.lang +++ b/htdocs/langs/de_CH/members.lang @@ -11,12 +11,12 @@ SetLinkToThirdParty=Verknüpfung zu Dolibarr Partner MembersList=Mitgliederliste MembersListToValid=Liste der zu verifizierenden Mitglieder MembersListValid=Liste der verifizierten Mitglieder -MemberId=Mitgliedernummer MemberType=Mitgliederart MembersTypes=Mitgliederarten MemberStatusDraft=Entwürfe (benötigen Bestätigung) MemberStatusNoSubscriptionShort=Bestätigt SubscriptionEndDate=Enddatum des Abonnements +NewSubscription=Neuer Beitrag NewSubscriptionDesc=Mit diesem Formular können Sie Ihr Abonnement als neues Mitglied der Stiftung registrieren. Wenn Sie Ihr Abonnement verlängern möchten (falls Sie bereits Mitglied sind), wenden Sie sich stattdessen per E-Mail an den Stiftungsrat. %s. NewMemberType=Neue Mitgliederart WelcomeEMail=Begrüssungs-E-Mail @@ -28,7 +28,7 @@ SendingEmailOnAutoSubscription=E-Mail bei automatischer Registrierung senden CardContent=Inhalt Ihrer Mitgliederkarte ThisIsContentOfYourMembershipRequestWasReceived=Wir möchten Sie darüber informieren, dass Ihre Mitgliedschaftsanfrage eingegangen ist.

ThisIsContentOfYourMembershipWasValidated=Wir möchten Sie darüber informieren, dass Ihre Mitgliedschaft mit den folgenden Informationen bestätigt wurde:

-ThisIsContentOfYourSubscriptionWasRecorded=Wir möchten Sie darüber informieren, dass Ihr neues Abonnement erfasst wurde.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=Wir möchten Sie darüber informieren, dass Ihr Abonnement in Kürze abläuft oder bereits abgelaufen ist (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Wir hoffen, dass Sie es erneuern.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Betreff der Benachrichtigungs-E-Mail bei automatischer Anmeldung eines Gastes DescADHERENT_AUTOREGISTER_NOTIF_MAIL=Inhalt der Benachrichtigungs-E-Mail, bei automatischer Anmeldung eines Gastes @@ -42,3 +42,4 @@ MembersStatisticsByTown=Mitgliederstatistik nach Ort MembersStatisticsByRegion=Mitgliederstatistik nach Region NoValidatedMemberYet=Keine verifizierten Mitglieder gefunden NewMemberbyWeb=Neues Mitglied wurde hinzugefügt. Warten auf Genehmigung +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type diff --git a/htdocs/langs/de_CH/projects.lang b/htdocs/langs/de_CH/projects.lang index 186a12000a5..96bb51653c7 100644 --- a/htdocs/langs/de_CH/projects.lang +++ b/htdocs/langs/de_CH/projects.lang @@ -1,20 +1,14 @@ # Dolibarr language file - Source file is en_US - projects ProjectRef=Chance ProjectsArea=Projektbereiche -AllProjects=Alle Projekte TasksOnProjectsPublicDesc=Diese Ansicht zeigt alle Projektaufgaben, die Sie Lesenberechtigt sind. ProjectsPublicTaskDesc=Diese Ansicht ist beschränkt auf Projekt und Aufgaben bei welchen Sie über Leserechte verfügen. TasksOnProjectsDesc=Es werden alle Projekteaufgaben aller Projekte angezeigt (Ihre Berechtigungen berechtigen Sie alles zu sehen). OnlyOpenedProject=Nur offene Projekte sind sichtbar. (Projekte im Entwurf- oder Geschlossenstatus sind nicht sichtbar) -NewProject=Neues Projekt -OpenedProjects=Offene Projekte -OpenedTasks=Offene Aufgaben ShowProject=Zeige Projekt SetProject=Projekt setzen TimeSpentByYou=Dein Zeitaufwand -MyTimeSpent=Mein Zeitaufwand TaskDescription=Aufgaben-Beschreibung -NewTask=Neue Aufgabe MyProjectsArea=Mein Projektbereich GoToListOfTimeConsumed=Zur Stundenaufwandsliste wechseln ChildOfProjectTask=Kindelement von Projekt/Aufgabe diff --git a/htdocs/langs/de_CH/stocks.lang b/htdocs/langs/de_CH/stocks.lang index f3010e3fa44..007e58b9928 100644 --- a/htdocs/langs/de_CH/stocks.lang +++ b/htdocs/langs/de_CH/stocks.lang @@ -1,5 +1,6 @@ # Dolibarr language file - Source file is en_US - stocks WarehouseCard=Warenlagerkarte +StocksArea=Warenlager - Übersicht NumberOfProducts=Anzahl der Produkte CorrectStock=Lagerbestand anpassen TransferStock=Lagerumbuchung @@ -14,7 +15,10 @@ StockLimitShort=Alarmschwelle StockLimit=Sicherungsbestand für autom. Benachrichtigung RealStock=Realer Lagerbestand VirtualStock=Theoretisches Warenlager +EstimatedStockValueShort=Eingangsmenge +EstimatedStockValue=Einkaufspreis DesiredStockDesc=Dieser Bestand wird für die Nachbestellfunktion verwendet. +StockToBuy=zu bestellen UseVirtualStock=theoretisches Warenlager verwenden UsePhysicalStock=Physisches Warenlager verwenden CurentlyUsingVirtualStock=Theoretisches Warenlager @@ -26,6 +30,8 @@ InventoryCodeShort=Inv. / Mov. Kode NoPendingReceptionOnSupplierOrder=Keine ausstehenden Lieferungen auf dieser Lieferantenbestellung ThisSerialAlreadyExistWithDifferentDate=Diese Charge- / Seriennummer (%s) ist bereits vorhanden, jedoch mit unterschiedlichen Haltbarkeits- oder Verfallsdatum. \n(Gefunden: %s Erfasst: %s) UseDispatchStatus=Auslieferungs - Status (frei gegeben / zurückgewiesen) für Lieferantenbestellungen führen. +inventoryTitle=Inventar +inventoryValidate=Bestätigt inventoryDraft=Läuft inventoryOnDate=Inventar ReOpen=entwerfen diff --git a/htdocs/langs/de_DE/accountancy.lang b/htdocs/langs/de_DE/accountancy.lang index 1e4c9679867..cbe947a41e2 100644 --- a/htdocs/langs/de_DE/accountancy.lang +++ b/htdocs/langs/de_DE/accountancy.lang @@ -31,11 +31,11 @@ ChartOfIndividualAccountsOfSubsidiaryLedger=Plan der Einzelkonten des Nebenbuchs CurrentDedicatedAccountingAccount=Aktuelles dediziertes Konto AssignDedicatedAccountingAccount=Neues Konto zuweisen InvoiceLabel=Rechnungsanschrift -OverviewOfAmountOfLinesNotBound=Übersicht über die Anzahl der nicht an ein Buchhaltungskonto zugeordneten Zeilen -OverviewOfAmountOfLinesBound=Übersicht über die Anzahl der bereits an ein Buchhaltungskonto zugeordneten Zeilen +OverviewOfAmountOfLinesNotBound=Übersicht über die Anzahl der noch nicht kontierten Positionen +OverviewOfAmountOfLinesBound=Übersicht über die Anzahl der bereits kontierten Positionen OtherInfo=Zusatzinformationen -DeleteCptCategory=Buchhaltungskonto aus Gruppe entfernen -ConfirmDeleteCptCategory=Soll dieses Buchhaltungskonto wirklich aus der Gruppe entfernt werden? +DeleteCptCategory=Buchungskonto aus Gruppe entfernen +ConfirmDeleteCptCategory=Soll dieses Buchungskonto wirklich aus der Gruppe entfernt werden? JournalizationInLedgerStatus=Status der Journalisierung AlreadyInGeneralLedger=Bereits in Buchhaltungsjournale und Hauptbuch übertragen NotYetInGeneralLedger=Noch nicht in Buchhaltungsjournale und Hauptbuch übertragen @@ -48,8 +48,9 @@ CountriesNotInEEC=Nicht-EU Länder CountriesInEECExceptMe=EU-Länder außer %s CountriesExceptMe=Alle Länder außer %s AccountantFiles=Belegdokumente exportieren -ExportAccountingSourceDocHelp=Mit diesem Tool können Sie die Quellereignisse (CSV-Liste und PDFs) exportieren, die zur Erstellung Ihrer Buchhaltung verwendet werden. +ExportAccountingSourceDocHelp=Mit diesem Tool können Sie die Quellereignisse suchen und exportieren, die zum Erstellen Ihrer Buchhaltung verwendet werden.
Die exportierte ZIP-Datei enthält die Listen der angeforderten Buchhaltungsdaten im CSV-Format sowie die zugehörigen Dokumente im Originalformat (PDF, ODT, DOCX...). ExportAccountingSourceDocHelp2=Um Ihre Journale zu exportieren, verwenden Sie den Menüeintrag %s - %s. +ExportAccountingProjectHelp=Geben Sie ein Projekt an, wenn Sie einen Buchhaltungsbericht nur für ein bestimmtes Projekt benötigen. Spesenabrechnungen und Darlehenszahlungen sind in den Projektberichten nicht enthalten. VueByAccountAccounting=Ansicht nach Buchungskonto VueBySubAccountAccounting=Ansicht nach Buchhaltungsunterkonto @@ -67,21 +68,21 @@ AccountancyAreaDescActionFreq=Diese Schritte sind regelmäßig durchzuführen AccountancyAreaDescJournalSetup=SCHRITT %s: Liste der Buchhaltungsjournale überprüfen und nach Bedarf anpassen im Menü %s AccountancyAreaDescChartModel=SCHRITT %s: Prüfen, ob der benötigte Kontenrahmen vorhanden und aktiviert ist – konfigurierbar im Menü %s -AccountancyAreaDescChart=SCHRITT %s: Wähle und/oder ergänze einen Kontenplan im Menü %s. +AccountancyAreaDescChart=SCHRITT %s: Wählen und ergänzen Sie einen Kontenplan im Menü %s. AccountancyAreaDescVat=SCHRITT %s: Festlegen des Buchhaltungskontos für jeden Steuersatz über den Menüpunkt %s. AccountancyAreaDescDefault=SCHRITT %s: Standardkonten über das Menü %s konfigurieren. AccountancyAreaDescExpenseReport=SCHRITT %s: Festlegung der Standardbuchhaltungskonten für die verschiedenen Arten der Spesenabrechnung. Verwenden Sie dazu den Menüeintrag %s. -AccountancyAreaDescSal=SCHRITT %s: Buchhaltungskonto für Lohnzahlungen definieren. Kann im Menü %s geändert werden. +AccountancyAreaDescSal=SCHRITT %s: Buchungskonto für Gehaltszahlungen definieren. Kann im Menü %s geändert werden. AccountancyAreaDescContrib=SCHRITT %s: Legen Sie Standardbuchhaltungskonten für Steuern (Sonderausgaben) fest. Verwenden Sie dazu den Menüeintrag %s. -AccountancyAreaDescDonation=SCHRITT %s: Definition der Buchhaltungskonten für Spenden. Kann im Menü %s geändert werden. +AccountancyAreaDescDonation=SCHRITT %s: Definition der Buchungskonten für Spenden. Kann im Menü %s geändert werden. AccountancyAreaDescSubscription=SCHRITT %s: Definieren Sie die Standardabrechnungskonten für Mitgliederabonnements. Verwenden Sie dazu den Menüeintrag %s. -AccountancyAreaDescMisc=SCHRITT %s: Buchhaltungskonto für nicht zugeordnete Buchungen definieren. Kann im Menü %s geändert werden. -AccountancyAreaDescLoan=SCHRITT %s: Definitiond der Buchhaltungskonten für Darlehenszahlungen. Kann im Menü %s geändert werden. -AccountancyAreaDescBank=SCHRITT %s: Festlegen der Buchhaltungskonten für Banken und Zahlungsdienstleister über den Menüpunkt %s. -AccountancyAreaDescProd=SCHRITT %s: Festlegen der Buchhaltungskonten für Ihre Produkte und Leistungen über den Menüpunkt %s. +AccountancyAreaDescMisc=SCHRITT %s: Buchungskonto für nicht zugeordnete Buchungen definieren. Kann im Menü %s geändert werden. +AccountancyAreaDescLoan=SCHRITT %s: Definition der Buchungskonten für Darlehenszahlungen. Kann im Menü %s geändert werden. +AccountancyAreaDescBank=SCHRITT %s: Festlegen der Buchungskonten für Banken und Zahlungsdienstleister über den Menüpunkt %s. +AccountancyAreaDescProd=SCHRITT %s: Festlegen der Buchungskonten für Ihre Produkte und Leistungen über den Menüpunkt %s. -AccountancyAreaDescBind=SCHRITT %s: Kontrolle, dass die Zuweisung zwischen bestehenden Buchungszeilen in %s und entsprechenden Buchungskonten erfolgt ist, damit die Übernahme der Buchungen ins Hauptbuch mit einem Klick erfolgen kann. Dies wird im Menüpunkt %s vorgenommen. +AccountancyAreaDescBind=SCHRITT %s: Prüfen, ob die Kontierung aller Positionen aus %s erfolgt ist, damit die Übernahme der Buchungen ins Hauptbuch mit einem Klick erfolgen kann. Dies erfolgt im Menüpunkt %s. AccountancyAreaDescWriteRecords=SCHRITT %s: Übernehmen Sie die Buchungen in das Hauptbuch. Dazu gehen Sie ins Menü %s, und klicken Sie auf die Schaltfläche %s AccountancyAreaDescAnalyze=SCHRITT %s: Transaktionen hinzufügen oder bearbeiten sowie Berichte und Exporte generieren. @@ -89,34 +90,34 @@ AccountancyAreaDescClosePeriod=SCHRITT %s: Schließen Sie die Periode, damit wir 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 +ChangeAndLoad=Ändern & laden +Addanaccount=Fügen Sie ein Buchungskonto hinzu AccountAccounting=Buchungskonto AccountAccountingShort=Konto SubledgerAccount=Nebenbuchkonto SubledgerAccountLabel=Nebenbuchkonto-Bezeichnung -ShowAccountingAccount=Buchhaltungskonten anzeigen +ShowAccountingAccount=Buchungskonto anzeigen ShowAccountingJournal=Buchhaltungsjournal anzeigen -ShowAccountingAccountInLedger=Buchhaltungskonto im Hauptbuch anzeigen -ShowAccountingAccountInJournals=Buchhaltungskonto in Journalen anzeigen +ShowAccountingAccountInLedger=Buchungskonto im Hauptbuch anzeigen +ShowAccountingAccountInJournals=Buchungskonto in Journalen anzeigen AccountAccountingSuggest=Vorgeschlagenes Buchungskonto MenuDefaultAccounts=Standardkonten MenuBankAccounts=Bankkonten MenuVatAccounts=Umsatzsteuerkonten MenuTaxAccounts=Steuerkonten MenuExpenseReportAccounts=Spesenkonten -MenuLoanAccounts=Darlehens-Konten +MenuLoanAccounts=Darlehenskonten MenuProductsAccounts=Produkterlöskonten MenuClosureAccounts=Abschlusskonten -MenuAccountancyClosure=Jahresabschluss +MenuAccountancyClosure=Festschreibung MenuAccountancyValidationMovements=Buchungen freigeben ProductsBinding=Produktkonten TransferInAccounting=Übernahme in die Buchhaltung RegistrationInAccounting=Erfassung in der Buchhaltung -Binding=Zu Konten zuordnen -CustomersVentilation=Kundenrechnungen zuordnen -SuppliersVentilation=Lieferantenrechnungen zuordnen -ExpenseReportsVentilation=Spesenabrechnungen zuordnen +Binding=Kontieren +CustomersVentilation=Kundenrechnungen kontieren +SuppliersVentilation=Lieferantenrechnungen kontieren +ExpenseReportsVentilation=Spesenabrechnungen kontieren CreateMvts=neue Transaktion erstellen UpdateMvts=Änderung einer Transaktion ValidTransaction=Transaktion bestätigen @@ -127,86 +128,86 @@ AccountBalance=Summen und Salden ObjectsRef=Quellreferenz CAHTF=Gesamtbetrag Lieferant vor Steuern TotalExpenseReport=Gesamtausgaben Spesenabrechnung -InvoiceLines=Rechnungszeilen verbinden -InvoiceLinesDone=verbundene Rechnungszeilen +InvoiceLines=Rechnungspositionen kontieren +InvoiceLinesDone=Kontierte Rechnungspositionen ExpenseReportLines=Noch nicht zugeordnete Zeilen aus Spesenabrechnungen -ExpenseReportLinesDone=Zugeordnete Zeilen aus Spesenabrechnungen -IntoAccount=Buchungskonto zuordnen +ExpenseReportLinesDone=Kontierte Positionen aus Spesenabrechnungen +IntoAccount=Position kontieren TotalForAccount=Buchungskonto Summe -Ventilate=zuordnen +Ventilate=Kontieren LineId=Zeilen-ID Processing=Bearbeitung EndProcessing=Prozess beendet -SelectedLines=ausgewählte Zeilen +SelectedLines=Ausgewählte Zeilen Lineofinvoice=Rechnungszeile LineOfExpenseReport=Zeilen der Spesenabrechnung -NoAccountSelected=Kein Buchhaltungskonto ausgewählt -VentilatedinAccount=erfolgreich dem Buchhaltungskonto zugeordnet -NotVentilatedinAccount=Nicht zugeordnet, zu einem Buchhaltungskonto -XLineSuccessfullyBinded=%s Produkte/Leistungen erfolgreich an Buchhaltungskonto zugewiesen -XLineFailedToBeBinded=%s Produkte/Leistungen waren an kein Buchhaltungskonto zugeordnet +NoAccountSelected=Kein Buchungskonto ausgewählt +VentilatedinAccount=Kontierung erfolgreich +NotVentilatedinAccount=Nicht kontiert +XLineSuccessfullyBinded=%s Produkte/Leistungen erfolgreich kontiert +XLineFailedToBeBinded=%s Produkte/Leistungen waren nicht kontiert ACCOUNTING_LIMIT_LIST_VENTILATION=Maximale Zeilenanzahl auf Liste und Kontierungsseite (empfohlen: 50) -ACCOUNTING_LIST_SORT_VENTILATION_TODO=Standardsortierung der Elemente auf der Seite "Konten zuordnen“: neueste zuerst +ACCOUNTING_LIST_SORT_VENTILATION_TODO=Standardsortierung der Elemente auf der Seite "Zu kontieren“: neueste zuerst ACCOUNTING_LIST_SORT_VENTILATION_DONE=Sortierung auf der Seite "Zuordnung abgeschlossen" beginnend mit den neuesten Elementen ACCOUNTING_LENGTH_DESCRIPTION=Länge für die Anzeige der Beschreibung von Produkten und Leistungen in Listen (optimal = 50) ACCOUNTING_LENGTH_DESCRIPTION_ACCOUNT=Länge für die Anzeige der Kontenbezeichnungen für Produkte und Leistungen in den Listen (optimal = 50) ACCOUNTING_LENGTH_GACCOUNT=Länge der Kontonummern der Buchhaltung (Wenn dieser Wert auf 6 gesetzt ist, wird Konto '706' als '706000' am Bildschirm angezeigt) ACCOUNTING_LENGTH_AACCOUNT=Länge der Geschäftspartner Nebenkonten in der Buchhaltung \n(Wenn Sie hier den Wert 6 einstellen, wird das Konto "401" auf dem Bildschirm als "401000" angezeigt.) -ACCOUNTING_MANAGE_ZERO=Verwalten der Null am Ende eines Buchhaltungskontos. \nIn einigen Ländern notwendig (z.B. Schweiz). \nStandardmäßig deaktiviert. \nWenn ausgeschaltet, können die folgenden zwei Parameter konfigurieren werden, um virtuelle Nullen anzuhängen +ACCOUNTING_MANAGE_ZERO=Beibehalten der Nullen am Ende eines Buchungskontos ("1200"). \nIn manchen Ländern notwendig (z.B. Deutschland, Schweiz). \nStandardmäßig deaktiviert. \nWenn ausgeschaltet, können die folgenden zwei Parameter konfigurieren werden, um virtuelle Nullen anzuhängen. 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=Combo-Liste für Nebenkonto aktivieren (kann langsam sein, wenn Sie viele Geschäftspartner haben; verhindert die Suche nach Teilwerten) 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_DEFAULT_PERIOD_ON_TRANSFER=Welcher Zeitraum ist beim Buchhaltungstransfer standardmäßig ausgewählt? ACCOUNTING_SELL_JOURNAL=Verkaufsjournal ACCOUNTING_PURCHASE_JOURNAL=Einkaufsjournal -ACCOUNTING_MISCELLANEOUS_JOURNAL=Journal für Sonstiges +ACCOUNTING_MISCELLANEOUS_JOURNAL=Variajournal ACCOUNTING_EXPENSEREPORT_JOURNAL=Spesenabrechnungsjournal -ACCOUNTING_SOCIAL_JOURNAL=Sozialabgaben-Journal -ACCOUNTING_HAS_NEW_JOURNAL=Journal für Eröffnungsbuchungen +ACCOUNTING_SOCIAL_JOURNAL=Sozialabgabenjournal +ACCOUNTING_HAS_NEW_JOURNAL=Eröffnungsjournal ACCOUNTING_RESULT_PROFIT=Ergebnisabrechnungskonto (Gewinn) ACCOUNTING_RESULT_LOSS=Ergebnisabrechnungskonto (Verlust) -ACCOUNTING_CLOSURE_DEFAULT_JOURNAL=Abschluss-Journal +ACCOUNTING_CLOSURE_DEFAULT_JOURNAL=Journal für Abschlussbuchungen ACCOUNTING_ACCOUNT_TRANSFER_CASH=Buchhaltung Konto der Überweisung TransitionalAccount=Überweisungskonto -ACCOUNTING_ACCOUNT_SUSPENSE=Buchhaltungskonto in Wartestellung -DONATION_ACCOUNTINGACCOUNT=Buchhaltungskonto für Spenden +ACCOUNTING_ACCOUNT_SUSPENSE=Verrechnungskonto/Zwischenkonto +DONATION_ACCOUNTINGACCOUNT=Buchungskonto für Spenden ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=Buchungskonto für Abonnements -ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=Standard-Buchhaltungskonto zur Registrierung der Kundeneinzahlung -UseAuxiliaryAccountOnCustomerDeposit=Für Kundenzahlungen Unterkonten verwenden +ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=Standard-Buchungskonto zur Registrierung der Kundeneinzahlung +UseAuxiliaryAccountOnCustomerDeposit=Debitorenkonto als Einzelkonto im Nebenbuch für Anzahlungspositionen hinterlegen (bei Deaktivierung bleibt Einzelkonto für Anzahlungspositionen leer) -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) -ACCOUNTING_PRODUCT_BUY_EXPORT_ACCOUNT=Standardmäßig Buchhaltungskonto für die gekauften und aus der EU importierten Produkte (wird verwendet, wenn nicht im Produktblatt definiert) -ACCOUNTING_PRODUCT_SOLD_ACCOUNT=Standard-Buchhaltungskonto für die verkauften Produkte (wenn nicht anders im Produktblatt definiert) -ACCOUNTING_PRODUCT_SOLD_INTRA_ACCOUNT=Standard-Buchhaltungskonto für in die EU verkaufte Produkte \n(wird verwendet, wenn nicht im Produktblatt definiert) -ACCOUNTING_PRODUCT_SOLD_EXPORT_ACCOUNT=Standard-Buchhaltungskonto für ausserhalb der EU verkaufte Produkte [EXPORT] \n(wird verwendet, wenn nicht im Produktblatt definiert) +ACCOUNTING_PRODUCT_BUY_ACCOUNT=Standard-Buchungskonto für gekaufte Produkte \n(wenn nicht anders im Produktblatt definiert) +ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT=Standard-Buchungskonto für gekaufte Produkte in der EWG (wird verwendet, wenn nicht im Produktblatt definiert) +ACCOUNTING_PRODUCT_BUY_EXPORT_ACCOUNT=Standard-Buchungskonto für gekaufte und aus der EWG importierte Produkte (wird verwendet, wenn nicht im Produktblatt definiert) +ACCOUNTING_PRODUCT_SOLD_ACCOUNT=Standard-Buchungskonto für die verkauften Produkte (wenn nicht anders im Produktblatt definiert) +ACCOUNTING_PRODUCT_SOLD_INTRA_ACCOUNT=Standard-Buchungskonto für in die EWG verkaufte Produkte \n(wird verwendet, wenn nicht im Produktblatt definiert) +ACCOUNTING_PRODUCT_SOLD_EXPORT_ACCOUNT=Standard-Buchungskonto für außerhalb der EWG verkaufte Produkte [EXPORT] \n(wird verwendet, wenn nicht im Produktblatt definiert) -ACCOUNTING_SERVICE_BUY_ACCOUNT=Standard-Buchhaltungskonto für die gekauften Leistungen (wenn nicht anders im Produktblatt definiert) -ACCOUNTING_SERVICE_BUY_INTRA_ACCOUNT=Standardmäßig Buchhaltungskonto für die gekauften Dienstleistungen in der EU (wird verwendet, wenn nicht im Leistungsblatt definiert) -ACCOUNTING_SERVICE_BUY_EXPORT_ACCOUNT=Standardmäßig Buchhaltungskonto für die gekauften und aus der EU importierten Dienstleistungen (wird verwendet, wenn nicht im Leistungsblatt definiert) -ACCOUNTING_SERVICE_SOLD_ACCOUNT=Standard-Buchhaltungskonto für die verkauften Leistungen (wenn nicht anders im Produktblatt definiert) -ACCOUNTING_SERVICE_SOLD_INTRA_ACCOUNT=Standard-Buchhaltungskonto für in die EU verkaufte Dienstleistungen \n(wird verwendet, wenn nicht im Produktblatt definiert) -ACCOUNTING_SERVICE_SOLD_EXPORT_ACCOUNT=Standard-Buchhaltungskonto für ausserhalb der EU verkaufte Dienstleistungen [EXPORT] \n(wird verwendet, wenn nicht im Produktblatt definiert) +ACCOUNTING_SERVICE_BUY_ACCOUNT=Standard-Buchungskonto für die gekauften Leistungen (wenn nicht anders im Produktblatt definiert) +ACCOUNTING_SERVICE_BUY_INTRA_ACCOUNT=Standardmäßig Buchungskonto für eingekaufte Dienstleistungen in der EWG (wird verwendet, wenn nicht im Leistungsblatt definiert) +ACCOUNTING_SERVICE_BUY_EXPORT_ACCOUNT=Standardmäßig Buchungskonto für die gekauften und aus der EWG importierten Dienstleistungen (wird verwendet, wenn nicht im Leistungsblatt definiert) +ACCOUNTING_SERVICE_SOLD_ACCOUNT=Standard-Buchungskonto für die verkauften Leistungen (wenn nicht anders im Produktblatt definiert) +ACCOUNTING_SERVICE_SOLD_INTRA_ACCOUNT=Standard-Buchungskonto für in die EWG verkaufte Dienstleistungen \n(wird verwendet, wenn nicht im Produktblatt definiert) +ACCOUNTING_SERVICE_SOLD_EXPORT_ACCOUNT=Standard-Buchungskonto für außerhalb der EWG verkaufte Dienstleistungen [EXPORT] \n(wird verwendet, wenn nicht im Produktblatt definiert) Doctype=Dokumententyp Docdate=Datum Docref=Referenz -LabelAccount=Konto-Beschriftung +LabelAccount=Kontobezeichnung LabelOperation=Buchungstext Sens=Richtung -AccountingDirectionHelp=Verwenden Sie für ein Buchhaltungskonto eines Kunden "Haben", um eine Zahlung zu erfassen, die Sie erhalten haben.
Verwenden Sie für ein Buchhaltungskonto eines Lieferanten "Soll", um eine von Ihnen geleistete Zahlung zu erfassen -LetteringCode=Beschriftungscode -Lettering=Beschriftung +AccountingDirectionHelp=Verwenden Sie für ein Buchungskonto eines Kunden "Haben", um eine Zahlung zu erfassen, die Sie erhalten haben.
Verwenden Sie für ein Buchungskonto eines Lieferanten "Soll", um eine von Ihnen geleistete Zahlung zu erfassen +LetteringCode=Code zum Kontenabgleich +Lettering=Kontenabgleich Codejournal=Journal JournalLabel=Journal-Bezeichnung NumPiece=Teilenummer @@ -216,9 +217,9 @@ 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 +ByPredefinedAccountGroups=Vordefinierte Gruppierung +ByPersonalizedAccountGroups=Benutzerdefinierte Gruppierung +ByYear=Pro Jahr NotMatch=undefiniert DeleteMvt=Zeilen aus der Buchhaltung löschen DelMonth=Monat zum Löschen @@ -229,7 +230,7 @@ ConfirmDeleteMvtPartial=Hierdurch wird die Transaktion aus der Buchhaltung gelö FinanceJournal=Finanzjournal ExpenseReportsJournal=Spesenabrechnungsjournal DescFinanceJournal=Finanzjournal inklusive aller Arten von Zahlungen mit Bankkonto -DescJournalOnlyBindedVisible=Dies ist eine Ansicht von Datensätzen, denen ein Buchhaltungskonto zugeordnet ist und die in den Journalen und im Hauptbuch erfasst werden können. +DescJournalOnlyBindedVisible=Dies ist eine Ansicht von Datensätzen, denen ein Buchungskonto zugeordnet ist und die 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 @@ -241,82 +242,82 @@ NewAccountingMvt=Erstelle Transaktion NumMvts=Transaktionsnummer ListeMvts=Liste der Buchungen ErrorDebitCredit=Soll und Haben können nicht gleichzeitig eingegeben werden -AddCompteFromBK=Buchhaltungskonten zur Gruppe hinzufügen +AddCompteFromBK=Buchungskonten zur Gruppe hinzufügen ReportThirdParty=Geschäftspartner-Konto anzeigen -DescThirdPartyReport=Kontieren Sie hier die Liste der Kunden und Lieferanten zu Ihrem Buchhaltungs-Konten -ListAccounts=Liste der Abrechnungskonten +DescThirdPartyReport=Liste der Geschäftspartner (Kunden und Lieferanten) und deren Buchungskonten +ListAccounts=Liste der Buchungskonten UnknownAccountForThirdparty=Unbekanntes Geschäftspartner-Konto. Wir werden %s verwenden. UnknownAccountForThirdpartyBlocking=unbekanntes Geschäftspartner-Konto, fortfahren nicht möglich ThirdpartyAccountNotDefinedOrThirdPartyUnknown=Nebenbuchkonto nicht definiert oder Geschäftspartner oder Benutzer unbekannt. Wir verwenden %s ThirdpartyAccountNotDefinedOrThirdPartyUnknownSubledgerIgnored=Geschäftspartner unbekannt und Nebenbuch nicht in der Zahlung definiert. Wir werden den Nebenbuchkontowert leer lassen. ThirdpartyAccountNotDefinedOrThirdPartyUnknownBlocking=Nebenbuchkonto nicht definiert oder Geschäftspartner oder Benutzer unbekannt. Nicht behebbarer Fehler. UnknownAccountForThirdpartyAndWaitingAccountNotDefinedBlocking=Unbekanntes Geschäftspartner-Konto und wartendes Konto nicht definiert. Fehler beim Blockieren -PaymentsNotLinkedToProduct=Zahlung ist keinem Produkt oder Dienstleistung zugewisen +PaymentsNotLinkedToProduct=Zahlung ist keinem Produkt / keiner Leistung zugeordnet OpeningBalance=Eröffnungsbilanz ShowOpeningBalance=Eröffnungsbilanz anzeigen HideOpeningBalance=Eröffnungsbilanz ausblenden 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. +PcgtypeDesc=Kontengruppen werden für einige Buchhaltungsberichte als vordefinierte Filter- und Gruppierungskriterien verwendet. Beispielsweise werden "Aufwand" oder "Ertrag" als Gruppen für die Buchungskonten von Produkten genutzt, um die Ausgaben-/Einnahmenrechnung zu erstellen. Reconcilable=ausgleichsfähig TotalVente=Gesamtumsatz vor Steuern TotalMarge=Gesamtumsatzrendite -DescVentilCustomer=Übersicht der Positionen aus Kundenrechnungen mit und ohne zugeordneten Buchhaltungskonten -DescVentilMore=Wenn in den Produkten und Leistungen die Buchhaltungskonten des Kontenplans hinterlegt sind, können die Rechnungspositionen automatisch jenen Konten zugeordnet werden. Dazu dient die Schaltfläche "%s".\nWo das nicht möglich ist, können die Rechnungspositionen via "%s" von Hand zugewiesen werden. -DescVentilDoneCustomer=Kontieren Sie hier die Liste der Kundenrechnungszeilen zu einem Buchhaltungs-Konto -DescVentilTodoCustomer=Kontiere nicht bereits kontierte Rechnungspositionen mit einem Buchhaltung Erlös-Konto -ChangeAccount=Ändere das Artikel Buchhaltungskonto für die ausgewählten Zeilen mit dem folgenden Buchhaltungskonto: +DescVentilCustomer=Übersicht der kontierten und unkontierten Positionen aus Kundenrechnungen +DescVentilMore=Wenn in den Produkten und Leistungen die entsprechenden Buchungskonten des Kontenplans hinterlegt sind, können die Rechnungspositionen automatisch jenen Konten zugeordnet werden. Dazu dient die Schaltfläche "%s".\nWo das nicht möglich ist, können die Rechnungspositionen via "%s" von Hand zugewiesen werden. +DescVentilDoneCustomer=Liste der Positionen der Kundenrechnungen und die Buchungskonten der Produkte +DescVentilTodoCustomer=Nicht bereits kontierte Rechnungspositionen mit einem Erlös-Konto der Buchhaltung kontieren +ChangeAccount=Buchungskonto für Produkte/Leistungen für die ausgewählten Positionen in das folgende Buchungskonto ändern: Vide=- DescVentilSupplier=Übersicht der unkontierten und kontierten Positionen aus Lieferantenrechnungen (nur Datensätze, die noch nicht in die Buchhaltung übertragen wurden, sind sichtbar). -DescVentilDoneSupplier=Konsultieren Sie hier die Liste der Kreditorenrechnungszeilen und deren Buchhaltungskonto +DescVentilDoneSupplier=Sehen Sie hier die Liste der Lieferanten-/Kreditoren-Rechnungspositionen und deren Buchungskonten DescVentilTodoExpenseReport=Unkontierte Positionen der Spesenabrechnung kontieren -DescVentilExpenseReport=Übersicht der Ausgabenpositionen aus Spesenabrechnungen mit und ohne zugeordnetem Buchhaltungskonto +DescVentilExpenseReport=Übersicht der kontierten und unkontierten Ausgabenpositionen aus Spesenabrechnungen DescVentilExpenseReportMore=Wenn Sie im Modul Buchhaltung Konten für die Spesenabrechnung konfiguriert haben, wird die Kontierungen der Spesenabrechnungspositionen durch einen Klick auf die Schaltfläche "%s" automatisch vorgenommen. Wenn im Buchhaltungsmodul keine Konten für die Spesenabrechnung hinterlegt wurden oder wenn Zeilen nicht automatisch einem Konto zugeordnet werden können, muss die Zuordnung manuell über das Menü "%s“ erfolgen. -DescVentilDoneExpenseReport=Liste der Aufwendungen aus Spesenabrechnungen und ihre zugeordneten Buchhaltungskonten +DescVentilDoneExpenseReport=Liste der Aufwendungen aus Spesenabrechnungen und ihre zugeordneten Buchungskonten -Closure=Jahresabschluss -DescClosure=Informieren Sie sich hier über die Anzahl der Buchungen pro Monat, die noch nicht validiert und festgeschrieben sind. +Closure=Festschreibung +DescClosure=Informieren Sie sich hier über die Anzahl der Buchungen pro Monat, die noch nicht freigegeben und festgeschrieben sind. OverviewOfMovementsNotValidated=Übersicht der noch nicht festgeschriebenen Buchungen -AllMovementsWereRecordedAsValidated=Alle Buchungen wurden als validiert und festgeschrieben aufgezeichnet -NotAllMovementsCouldBeRecordedAsValidated=Nicht alle Buchungen konnten als validiert und festgeschrieben erfasst werden -ValidateMovements=Buchungen festschreiben... +AllMovementsWereRecordedAsValidated=Alle Buchungen wurden als freigegeben und festgeschrieben registriert +NotAllMovementsCouldBeRecordedAsValidated=Nicht alle Buchungen konnten als freigegeben und festgeschrieben registriert werden +ValidateMovements=Buchungen freigeben und festschreiben... DescValidateMovements=Es sind danach keinerlei Änderungen oder Löschungen mehr möglich. Alle Buchungssätze müssen festgeschrieben werden, andernfalls ist kein Abschluss möglich -ValidateHistory=Automatisch zuordnen +ValidateHistory=Automatisch kontieren AutomaticBindingDone=Automatische Zuordnungen durchgeführt (%s) - Automatische Zuordnung für einige Datensätze nicht möglich (%s) -ErrorAccountancyCodeIsAlreadyUse=Fehler, Sie können dieses Buchhaltungskonto nicht löschen, da es benutzt wird. +ErrorAccountancyCodeIsAlreadyUse=Fehler, Sie können dieses Buchungskonto nicht löschen, da es benutzt wird. MvtNotCorrectlyBalanced=Buchungssalden nicht ausgeglichen. Soll = %s & Haben = %s Balancing=Abschluss FicheVentilation=Zuordnungs Karte GeneralLedgerIsWritten=Transaktionen werden ins Hauptbuch geschrieben GeneralLedgerSomeRecordWasNotRecorded=Einige der Buchungen konnten nicht übernommen werden. Es gab keine Fehler, vermutlich wurden diese Buchungen schon früher übernommen. NoNewRecordSaved=Keine weiteren Datensätze zu übertragen -ListOfProductsWithoutAccountingAccount=Liste der Produkte, die keinem Buchhaltungskonto zugeordnet sind +ListOfProductsWithoutAccountingAccount=Liste der Produkte, die keinem Buchungskonto zugeordnet sind ChangeBinding=Ändern der Zuordnung Accounted=im Hauptbuch erfasst NotYetAccounted=Noch nicht in die Buchhaltung übernommen ShowTutorial=Tutorial anzeigen -NotReconciled=nicht ausgeglichen +NotReconciled=Nicht abgeglichen WarningRecordWithoutSubledgerAreExcluded=Achtung, alle Zeilen ohne definiertes Nebenbuchkonto werden gefiltert und von dieser Ansicht ausgeschlossen -AccountRemovedFromCurrentChartOfAccount= Im aktuellen Kontenplan nicht vorhandenes Buchhaltungskonto +AccountRemovedFromCurrentChartOfAccount=Im aktuellen Kontenplan nicht vorhandenes Buchungskonto ## Admin 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 +CategoryDeleted=Die Gruppe für das Buchungskonto wurde entfernt AccountingJournals=Buchhaltungsjournale AccountingJournal=Buchhaltungsjournal NewAccountingJournal=Neues Buchhaltungsjournal ShowAccountingJournal=Buchhaltungsjournal anzeigen NatureOfJournal=Art des Journals -AccountingJournalType1=Verschiedene Aktionen -AccountingJournalType2=Verkäufe / Umsatz +AccountingJournalType1=Sonstige Buchungen +AccountingJournalType2=Verkäufe/Umsatz AccountingJournalType3=Einkäufe AccountingJournalType4=Bank AccountingJournalType5=Spesenabrechnungen @@ -332,9 +333,9 @@ ACCOUNTING_DISABLE_BINDING_ON_EXPENSEREPORTS=Deaktivieren Sie die Bindung und Ü ## Export NotifiedExportDate=Exportierte Zeilen als exportiert kennzeichnen (um eine Zeile zu ändern, müssen Sie die gesamte Transaktion löschen und erneut in die Buchhaltung übertragen) -NotifiedValidationDate=Festschreiben der exportierten Einträge (gleiche Wirkung wie die "Abschluss"-Funktion, Änderungen und Löschungen der Zeilen sind DEFINITIV NICHT möglich) -DateValidationAndLock=Datum Festschreibung -ConfirmExportFile=Bestätigung der Generierung der Buchhaltungsexportdatei ? +NotifiedValidationDate=Festschreiben der exportierten Einträge (gleiche Wirkung wie die Funktion "%s", Änderungen und Löschungen der Zeilen sind danach DEFINITIV NICHT möglich) +DateValidationAndLock=Festschreibungsdatum +ConfirmExportFile=Exportdatei der Buchhaltung erstellen? ExportDraftJournal=Entwurfsjournal exportieren Modelcsv=Datenformat für den Export Selectmodelcsv=Wählen Sie ein Datenformat für den Export @@ -362,7 +363,7 @@ ChartofaccountsId=Kontenplan ID ## Tools - Init accounting account on product / service InitAccountancy=Rechnungswesen initialisieren -InitAccountancyDesc=Auf dieser Seite kann ein Sachkonto für Artikel und Dienstleistungen vorgegeben werden, wenn noch kein Buchhaltungs-Konto für Ein- und Verkäufe definiert ist. +InitAccountancyDesc=Auf dieser Seite kann ein Buchungskonto für Produkte und Leistungen, für die noch kein Buchungskonto für Ein- und Verkäufe definiert ist, vorgegeben werden. DefaultBindingDesc=Diese Seite kann verwendet werden, um ein Standardkonto festzulegen, das für die Verknüpfung von Transaktionsdatensätzen zu Lohnzahlungen, Spenden, Steuern und USt. verwendet werden soll, wenn kein bestimmtes Konto angegeben wurde. DefaultClosureDesc=Diese Seite kann verwendet werden, um Parameter festzulegen, die für Abrechnungsabschlüsse verwendet werden. Options=Optionen @@ -372,26 +373,26 @@ OptionModeProductSellExport=Modus Verkäufe Export (ausserhalb EU/EWG) OptionModeProductBuy=Modus Einkäufe OptionModeProductBuyIntra=Modus in die EU importierte Einkäufe OptionModeProductBuyExport=Modus aus anderen Staaten importierte Einkäufe -OptionModeProductSellDesc=Alle Produkte mit Buchhaltungskonto für Verkäufe Inland anzeigen. -OptionModeProductSellIntraDesc=Alle Produkte mit Buchhaltungskonto für Verkäufe in EWG anzeigen. -OptionModeProductSellExportDesc=Alle Produkte mit Abrechnungskonto für Verkäufe Ausland anzeigen. -OptionModeProductBuyDesc=Alle Produkte mit Buchhaltungskonto für Einkäufe anzeigen. -OptionModeProductBuyIntraDesc=Alle Produkte mit Buchhaltungskonto für Einkäufe in der EWG anzeigen. -OptionModeProductBuyExportDesc=Alle Produkte mit Buchhaltungskonto für andere ausländische Einkäufe anzeigen. -CleanFixHistory=Zugeordnete Buchhaltungskonten, die im Kontenplan nicht definiert sind, von Positionen entfernen +OptionModeProductSellDesc=Alle Produkte mit Buchungskonto für Verkäufe (Inland) anzeigen. +OptionModeProductSellIntraDesc=Alle Produkte mit Buchungskonto für Verkäufe in der EWG anzeigen. +OptionModeProductSellExportDesc=Alle Produkte mit Buchungskonto für Verkäufe Ausland anzeigen. +OptionModeProductBuyDesc=Alle Produkte mit Buchungskonto für Einkäufe (Inland) anzeigen. +OptionModeProductBuyIntraDesc=Alle Produkte mit Buchungskonto für Einkäufe in der EWG anzeigen. +OptionModeProductBuyExportDesc=Alle Produkte mit Buchungskonto für andere ausländische Einkäufe anzeigen. +CleanFixHistory=Zugeordnete Buchungskonten, die im Kontenplan nicht definiert sind, von Positionen entfernen CleanHistory=Alle Zuordnungen für das ausgewählte Jahr zurücksetzen. PredefinedGroups=Vordefinierte Gruppen WithoutValidAccount=Mit keinem gültigen dedizierten Konto -WithValidAccount=Mit gültigen dedizierten Konto -ValueNotIntoChartOfAccount=Dieser Wert für das Buchhaltungs-Konto existiert nicht im Kontenplan +WithValidAccount=Mit gültigem dedizierten Konto +ValueNotIntoChartOfAccount=Dieser Wert für das Buchungskonto existiert nicht im Kontenplan AccountRemovedFromGroup=Konto aus der Gruppe entfernt SaleLocal=Verkauf Inland SaleExport=Verkauf Export (ausserhalb EWG) SaleEEC=Verkauf in EU/EWG SaleEECWithVAT=Verkauf in der EU mit Mehrwertsteuer (nicht null), und daher anzunehmen ist, dass es sich NICHT um einen innergemeinschaftlichen Verkauf handelt und das vorgeschlagene Konto daher das Standardproduktkonto ist. SaleEECWithoutVATNumber=Verkauf in der EU ohne USt., aber ohne dass die erforderliche USt.-ID des Geschäftspartners hinterlegt ist. Es wird stattdessen auf das Produktkonto für Standardverkäufe zurückgegriffen. Bei Bedarf kann die USt.-ID des Geschäftspartners festgelegt oder die Einstellung für das Produktkonto geändert werden. -ForbiddenTransactionAlreadyExported=Unzulässig: Die Transaktion wurde bereits validiert und/oder exportiert. -ForbiddenTransactionAlreadyValidated=Unzulässig: Die Transaktion wurde bereits validiert. +ForbiddenTransactionAlreadyExported=Unzulässig: Die Transaktion wurde bereits freigegeben und/oder exportiert. +ForbiddenTransactionAlreadyValidated=Unzulässig: Die Transaktion wurde bereits freigegeben. ## Dictionary Range=Bereich von Sachkonten Calculated=berechnet @@ -415,18 +416,19 @@ ConfirmMassDeleteBookkeepingWritingQuestion=Dadurch wird die Transaktion aus der ## Error SomeMandatoryStepsOfSetupWereNotDone=Einige zwingende Einstellungen wurden nicht gemacht, bitte vervollständigen sie die Einrichtung ErrorNoAccountingCategoryForThisCountry=Keine Buchhaltung Kategorie für das Land %s verfügbar (siehe Startseite - Einstellungen - Stammdaten) -ErrorInvoiceContainsLinesNotYetBounded=Sie versuchen einige Rechnungspositionen der Rechnung %s zu journalisieren, aber einige Postionen sind keinem Buchhaltungskonto zugewiesen. Alle Rechnungspositionen dieser Rechnung werden ignoriert. -ErrorInvoiceContainsLinesNotYetBoundedShort=Manche Rechnungspositionen sind keinem Buchhaltungskonto zugewiesen. +ErrorInvoiceContainsLinesNotYetBounded=Sie versuchen einige Rechnungspositionen der Rechnung %s zu journalisieren, aber einige Postionen sind keinem Buchungskonto zugewiesen. Alle Rechnungspositionen dieser Rechnung werden ignoriert. +ErrorInvoiceContainsLinesNotYetBoundedShort=Einige Rechnungspositionen sind unkontiert. ExportNotSupported=Das eingestellte Exportformat wird von deiser Seite nicht unterstützt BookeppingLineAlreayExists=Zeilen sind schon in der Buchhaltung vorhanden NoJournalDefined=Kein Journal definiert -Binded=kontierte Positionen -ToBind=unkontierte Positionen -UseMenuToSetBindindManualy=Zeilen noch nicht zugeordnet, verwende das Menu %s um die Zuordnung manuell durchzuführen +Binded=Kontierte Positionen +ToBind=Unkontierte Positionen +UseMenuToSetBindindManualy=Unkontierte Positionen, das Menu %s verwenden, um die Kontierung manuell durchzuführen SorryThisModuleIsNotCompatibleWithTheExperimentalFeatureOfSituationInvoices=Dieses Modul ist leider nicht mit der experimentellen Funktion von Situationsrechnungen kompatibel AccountancyErrorMismatchLetterCode=Fehlende Übereinstimmung im Code für Abgleich AccountancyErrorMismatchBalanceAmount=Der Saldo (%s) ist ungleich 0 AccountancyErrorLetteringBookkeeping=Bei den Transaktionen sind Fehler aufgetreten: %s +ErrorAccountNumberAlreadyExists=Das Buchungskonto %s existiert bereits ## Import ImportAccountingEntries=Buchaltungseinträge @@ -450,7 +452,7 @@ FECFormatValidateDate=Stückdatum validiert (ValidDate) FECFormatMulticurrencyAmount=Mehrwährungs-Betrag (Montantdevise) FECFormatMulticurrencyCode=Mehrwährungs-Code (Idevise) -DateExport=Datum Export +DateExport=Exportdatum WarningReportNotReliable=Achtung, dieser Bericht basiert nicht auf dem Hauptbuch und enthält keine Transaktionen, die manuell im Hauptbuch geändert wurden. Wenn Ihre Journalisierung aktuell ist, ist die Buchhaltungsansicht genauer. ExpenseReportJournal=Spesenabrechnung Journal InventoryJournal=Inventarjournal diff --git a/htdocs/langs/de_DE/admin.lang b/htdocs/langs/de_DE/admin.lang index b3dfc65582d..abd5e6a7290 100644 --- a/htdocs/langs/de_DE/admin.lang +++ b/htdocs/langs/de_DE/admin.lang @@ -281,7 +281,7 @@ SpaceX=Ausdehnung X SpaceY=Ausdehnung Y FontSize=Schriftgröße Content=Inhalt -ContentForLines=Inhalt, der für jedes Produkt oder jede Dienstleistung angezeigt werden soll (aus der Variablen __LINES__ des Inhalts) +ContentForLines=Inhalt, der für jedes Produkt oder jede Leistung angezeigt werden soll (aus der Variablen __LINES__ des Inhalts) NoticePeriod=Einreichefrist NewByMonth=Neu nach Monat Emails=E-Mail @@ -292,19 +292,19 @@ EMailsSenderProfileDesc=Sie können diesen Bereich leer lassen. Wenn Sie hier E- MAIN_MAIL_SMTP_PORT=SMTP(S)-Port (Standardwert Ihrer php.ini: %s) MAIN_MAIL_SMTP_SERVER=SMTP(S)-Server (Standardwert Ihrer php.ini: %s) MAIN_MAIL_SMTP_PORT_NotAvailableOnLinuxLike=SMTP/SMTPS-Port (nicht in PHP definiert in Unix-Umgebungen) -MAIN_MAIL_SMTP_SERVER_NotAvailableOnLinuxLike=SMTP-Host (nicht in PHP definiert auf Unix-Umgebungen) +MAIN_MAIL_SMTP_SERVER_NotAvailableOnLinuxLike=SMTP-Host (nicht in PHP definiert in Unix-Umgebungen) MAIN_MAIL_EMAIL_FROM=Absender-Adresse für automatisch erstellte E-Mails (Standardwert in php.ini: %s) MAIN_MAIL_ERRORS_TO=Standard-E-Mail-Adresse für Fehlerrückmeldungen (beispielsweise unzustellbare E-Mails) MAIN_MAIL_AUTOCOPY_TO= Blindkopie (BCC) aller gesendeten E-Mails an MAIN_DISABLE_ALL_MAILS=Alle E-Mail-Funktionen deaktivieren (für Test- oder Demonstrationszwecke) MAIN_MAIL_FORCE_SENDTO=Sende alle E-Mails an den folgenden anstatt an die tatsächlichen Empfänger (für Testzwecke) MAIN_MAIL_ENABLED_USER_DEST_SELECT=E-Mail-Adressen von Mitarbeitern (falls definiert) beim Schreiben einer neuen E-Mail in der Liste vordefinierten Empfänger vorschlagen -MAIN_MAIL_SENDMODE=E-Mail Sendemethode +MAIN_MAIL_SENDMODE=Sendemethode für E-Mails MAIN_MAIL_SMTPS_ID=SMTP-Benutzer (falls der Server eine Authentifizierung benötigt) MAIN_MAIL_SMTPS_PW=SMTP-Passwort (falls der Server eine Authentifizierung benötigt) MAIN_MAIL_EMAIL_TLS=TLS (SSL) Verschlüsselung verwenden MAIN_MAIL_EMAIL_STARTTLS=TLS (STARTTLS) Verschlüsselung verwenden -MAIN_MAIL_EMAIL_SMTP_ALLOW_SELF_SIGNED=Autorisieren der automatischen Signaturen der Zertifikate +MAIN_MAIL_EMAIL_SMTP_ALLOW_SELF_SIGNED=Selbst-signierte Zertifikate erlauben MAIN_MAIL_EMAIL_DKIM_ENABLED=Verwende DKIM um die E-Mail Signatur zu erstellen MAIN_MAIL_EMAIL_DKIM_DOMAIN=E-Mail Domain für die Verwendung mit DKIM MAIN_MAIL_EMAIL_DKIM_SELECTOR=Name des DKIM-Selektors @@ -312,10 +312,10 @@ MAIN_MAIL_EMAIL_DKIM_PRIVATE_KEY=Privater Schlüssel für die DKIM-Signatur MAIN_DISABLE_ALL_SMS=alle SMS-Funktionen abschalten (für Test- oder Demozwecke) MAIN_SMS_SENDMODE=Methode zum Versenden von SMS MAIN_MAIL_SMS_FROM=Standard Versandrufnummer der SMS-Funktion -MAIN_MAIL_DEFAULT_FROMTYPE=Standard Absenderadresse für manuelles Senden (Benutzer- oder Unternehmens-Adresse) +MAIN_MAIL_DEFAULT_FROMTYPE=Standard-Absenderadresse für manuelles Senden (Benutzer- oder Unternehmens-Adresse) UserEmail=E-Mail des Benutzers CompanyEmail=Unternehmens-E-Mail -FeatureNotAvailableOnLinux=Diese Funktion ist auf Unix-Umgebungen nicht verfügbar. Testen Sie Ihr sendmail Programm lokal. +FeatureNotAvailableOnLinux=Diese Funktion ist in Unix-Umgebungen nicht verfügbar. Testen Sie Ihr sendmail Programm lokal. FixOnTransifex=Die Übersetzung in der Online-Übersetzungs-Plattform des Projektes korrigieren SubmitTranslation=Wenn die Übersetzung für diese Sprache nicht vollständig ist oder Sie Fehler finden, können Sie dies korrigieren, indem Sie Dateien im Verzeichnis langs/%s bearbeiten und Ihre Änderung an www.transifex.com/dolibarr-association/dolibarr/ senden. SubmitTranslationENUS=Ist die Übersetzung für diese Sprache nicht vollständig oder fehlerhaft, kann das durch editieren der Dateien im Verzeichnis langs/%s korrigiert werden und modifizierte Dateien sollen auch auf dolibarr.org/forum gepostet oder, als Entwickler, mit einer PR auf github.com/Dolibarr/dolibarr bekanntgeben werden @@ -378,7 +378,7 @@ UMask=UMask-Parameter für neue Dateien auf Unix/Linux/BSD-Dateisystemen. UMaskExplanation=Über diesen Parameter können Sie die standardmäßigen Dateiberechtigungen für vom System erzeugte/verwaltete Inhalte festlegen.
Erforderlich ist ein Oktalwert (0666 bedeutet z.B. Lesen und Schreiben für alle).
Auf Windows-Umgebungen haben diese Einstellungen keinen Effekt. SeeWikiForAllTeam=Werfen Sie einen Blick auf die Wiki-Seite für eine vollständige Liste aller Mitwirkenden und deren Organisationen UseACacheDelay= Verzögerung für den Export der Cache-Antwort in Sekunden (0 oder leer für kein Caching) -DisableLinkToHelpCenter=Link " Brauche Hilfe oder Support " auf der Login-Seite ausblenden +DisableLinkToHelpCenter=Link "Brauche Hilfe oder Support" auf der Login-Seite ausblenden DisableLinkToHelp=Link zur Online-Hilfe "%s" ausblenden AddCRIfTooLong=Bitte beachten Sie, dass kein automatischer Zeilenumbruch erfolgt und zu langer Text nicht angezeigt wird. Falls benötigt, fügen Sie Zeilenumbrüche bitte manuell ein. ConfirmPurge=Sind Sie sicher, dass Sie diese Bereinigung durchführen möchten?
dadurch werden alle Ihre Datendateien dauerhaft gelöscht, ohne dass Sie sie wiederherstellen können (ECM-Dateien, angehängte Dateien....). @@ -450,7 +450,7 @@ ExtrafieldCheckBox=Kontrollkästchen / Dropdownliste (mehrere Optionen auswählb ExtrafieldCheckBoxFromList=Kontrollkästchen / Dropdownliste aus DB-Tabelle (mehrere Optionen auswählbar) ExtrafieldLink=Verknüpftes Objekt ComputedFormula=Berechnetes Feld -ComputedFormulaDesc=Sie können hier eine Formel mit anderen Eigenschaften des Objekts oder beliebigen PHP-Code eingeben, um einen dynamisch berechneten Wert zu erhalten. Sie können alle PHP-kompatiblen Formeln verwenden, einschließlich "?" Bedingungsoperator und folgendes globales Objekt: $ db, $ conf, $ langs, $ mysoc, $ user, $ object .
WARNUNG : Möglicherweise sind nur einige Eigenschaften von $ object verfügbar. Wenn Sie Eigenschaften benötigen, die nicht geladen sind, holen Sie sich das Objekt einfach wie im zweiten Beispiel in Ihre Formel.
Wenn Sie ein berechnetes Feld verwenden, können Sie keinen Wert über die Schnittstelle eingeben. Wenn ein Syntaxfehler vorliegt, gibt die Formel möglicherweise nichts zurück.

Beispiel für die Formel:
$ object-> id < 10 ? round($object-> id / 2, 2): ($ object-> id + 2 * $ user-> id) * (int) substr ($ mysoc-> zip, 1, 2 )

Beispiel zum erneuten Laden des Objekts
(($reloadedobj = new Societe($db)) && ($reloadedobj->fetchNoCompute($obj->id ? $obj->id: ($obj->rowid ? $obj->rowid: $object->id)) > 0)) ? $reloadedobj->array_options['options_extrafieldkey'] * $reloadedobj->capital / 5: '-1'

Anderes Beispiel für eine Formel zum erzwungenen Laden des Objekts und seines übergeordneten Objekts:
(($reloadedobj = new Task($db)) && ($reloadedobj->fetchNoCompute($object->id) > 0) && ($secondloadedobj = new Project($db)) && ($secondloadedobj->fetchNoCompute($reloadedobj->fk_project) > 0)) ? $secondloadedobj->ref: 'Parent project not found' +ComputedFormulaDesc=Sie können hier eine Formel mit anderen Eigenschaften des Objekts oder beliebigen PHP-Code eingeben, um einen dynamisch berechneten Wert zu erhalten. Sie können alle PHP-kompatiblen Formeln verwenden, einschließlich dem "?"-Bedingungsoperator und die folgenden globalen Objekte: $db, $conf, $langs, $mysoc, $user, $object.
WARNUNG: Möglicherweise sind nur einige Eigenschaften von $object verfügbar. Wenn Sie Eigenschaften benötigen, die nicht geladen sind, holen Sie sich das Objekt einfach wie im zweiten Beispiel in Ihre Formel.
Wenn Sie ein berechnetes Feld verwenden, können Sie keinen Wert über die Benutzerschnittstelle eingeben. Wenn ein Syntaxfehler vorliegt, gibt die Formel möglicherweise nichts zurück.

Beispiel für eine Formel:
$object-> id < 10 ? round($object-> id/2, 2): ($object-> id + 2 * $user-> id) * (int) substr ($mysoc-> zip, 1, 2 )

Beispiel für das Laden eines Objekts:
(($reloadedobj = new Societe($db)) && ($reloadedobj->fetchNoCompute($obj->id ? $obj->id: ($obj->rowid ? $obj->rowid: $object->id)) > 0)) ? $reloadedobj->array_options['options_extrafieldkey'] * $reloadedobj->capital / 5: '-1'

Anderes Beispiel für eine Formel zum Laden des Objekts und seines übergeordneten Objekts:
(($reloadedobj = new Task($db)) && ($reloadedobj->fetchNoCompute($object->id) > 0) && ($secondloadedobj = new Project($db)) && ($secondloadedobj->fetchNoCompute($reloadedobj->fk_project) > 0)) ? $secondloadedobj->ref: 'Parent project not found' Computedpersistent=Berechnetes Feld speichern ComputedpersistentDesc=Berechnete Extrafelder werden in der Datenbank gespeichert, dennoch wird ihr Wert nur dann neu berechnet wenn sich das Objekt zu diesem Feld ändert. Falls das berechnete Feld von anderen Objekten oder globalen Daten abhängt, kann sein Wert falsch sein! ExtrafieldParamHelpPassword=Wenn Sie dieses Feld leer lassen, wird dieser Wert unverschlüsselt gespeichert (das Feld darf nur mit einem Stern auf dem Bildschirm ausgeblendet werden).
Stellen Sie 'auto'; ein, um die Standardverschlüsselungsregel zum Speichern des Kennworts in der Datenbank zu verwenden (dann ist der gelesene Wert nur der Hash, keine Möglichkeit, den ursprünglichen Wert abzurufen). @@ -474,7 +474,7 @@ SetAsDefault=Als Standard setzen ValueOverwrittenByUserSetup=Achtung, dieser Wert kann durch den Benutzer überschrieben werden (jeder kann seine eigene ClickToDial-URL setzen) ExternalModule=Externes Modul InstalledInto=Installiert in Verzeichnis %s -BarcodeInitForThirdparties=alle Barcodes für Geschäftspartner initialisieren +BarcodeInitForThirdparties=Alle Barcodes für Geschäftspartner initialisieren BarcodeInitForProductsOrServices=Alle Barcodes für Produkte oder Services initialisieren oder zurücksetzen CurrentlyNWithoutBarCode=Zur Zeit gibt es %s Datensätze in %s %s ohne Barcode. InitEmptyBarCode=Startwert für die nächsten %s leeren Datensätze @@ -491,7 +491,7 @@ DisplayCompanyInfoAndManagers=Firmenanschrift und Managernamen anzeigen EnableAndSetupModuleCron=Wenn diese wiederkehrende Rechnung automatisch generiert werden soll, muss das Modul *%s* aktiviert und korrekt eingerichtet sein. Andernfalls muss die Rechnungserstellung manuell aus dieser Vorlage mit der Schaltfläche * Erstellen * erfolgen. Beachten Sie, dass Sie die manuelle Generierung auch dann sicher starten können, wenn Sie die automatische Generierung aktiviert haben. Die Erstellung von Duplikaten für denselben Zeitraum ist nicht möglich. ModuleCompanyCodeCustomerAquarium=%s gefolgt von Kundennummer für eine Kundenkontonummer ModuleCompanyCodeSupplierAquarium=%s gefolgt vom Lieferantenpartnercode für eine Lieferantenkontonummer -ModuleCompanyCodePanicum=leeren Kontierungscode zurückgeben +ModuleCompanyCodePanicum=Leeren Kontierungscode zurückgeben ModuleCompanyCodeDigitaria=Gibt einen zusammengesetzten Buchungscode gemäß dem Namen des Geschäftspartners zurück. Der Code besteht aus einem Präfix, das an der ersten Position definiert werden kann, gefolgt von der Anzahl der Zeichen, die im Code des Drittanbieters definiert sind. ModuleCompanyCodeCustomerDigitaria=%s, gefolgt vom abgeschnittenen Kundennamen und der Anzahl der Zeichen: %s für den Kundenbuchhaltungscode. ModuleCompanyCodeSupplierDigitaria=%s, gefolgt vom verkürzten Lieferantennamen und der Anzahl der Zeichen: %s für den Lieferantenbuchhaltungscode. @@ -563,7 +563,7 @@ Module43Desc=Ein Tool für Entwickler, das eine Debug-Leiste in Ihrem Browser hi Module49Name=Bearbeiter Module49Desc=Editorverwaltung Module50Name=Produkte -Module50Desc=Produktverwaltung +Module50Desc=Verwaltung von Produkten Module51Name=Massen-Mailings Module51Desc=Verwaltung von Postwurf-/Massensendungen Module52Name=Lagerverwaltung @@ -719,7 +719,7 @@ Permission36=Projekte/Leistungen exportieren Permission38=Produkte exportieren Permission39=Minimalpreis ignorieren Permission41=Projekte und Aufgaben einsehen (gemeinsame Projekte und Projekte, bei denen ich Ansprechpartner bin). -Permission42=Projekte erstellen/ändern (gemeinsame Projekte und Projekte, bei denen ich Ansprechpartner bin). Kann den Projekten und Aufgaben auch Benutzer zuweisen +Permission42=Projekte erstellen/bearbeiten (gemeinsame Projekte und Projekte, bei denen ich Ansprechpartner bin). Kann den Projekten und Aufgaben auch Benutzer zuweisen Permission44=Projekte löschen (gemeinsame Projekte und Projekte, bei denen ich Ansprechpartner bin) Permission45=Projekte exportieren Permission61=Serviceaufträge einsehen @@ -733,7 +733,7 @@ Permission71=Mitglieder einsehen Permission72=Mitglieder erstellen/bearbeiten Permission74=Mitglieder löschen Permission75=Erstellen Typen von Mitgliedschaft -Permission76=Daten Export +Permission76=Datenexport Permission78=Abonnements einsehen Permission79=Abonnements erstellen/bearbeiten Permission81=Kundenaufträge einsehen @@ -748,33 +748,33 @@ Permission92=Sozialabgaben, Steuern und Mehrwertsteuer erstellen/bearbeiten Permission93=Sozialabgaben, Steuern und Mehrwertsteuer löschen Permission94=Sozialabgaben, Steuern und Mehrwertsteuer erstellen/bearbeiten Permission95=Buchhaltung einsehen -Permission101=Auslieferungen einsehen -Permission102=Auslieferungen erstellen/bearbeiten -Permission104=Auslieferungen freigeben +Permission101=Lieferungen einsehen +Permission102=Lieferungen erstellen/bearbeiten +Permission104=Lieferungen freigeben Permission105=Sende Sendungen per E-Mail -Permission106=Auslieferungen exportieren +Permission106=Lieferungen exportieren Permission109=Sendungen löschen -Permission111=Finanzkonten einsehen -Permission112=Transaktionen erstellen/ändern/löschen und vergleichen -Permission113=Finanzkonten einrichten (Kategorien von Banktransaktionen erstellen und verwalten) -Permission114=Transaktionen ausgleichen +Permission111=Bankkonten einsehen +Permission112=Transaktionen erstellen/bearbeiten/löschen und vergleichen +Permission113=Bankkonten einrichten (Kategorien von Banktransaktionen erstellen und verwalten) +Permission114=Transaktionen abgleichen Permission115=Transaktionen und Kontoauszüge exportieren Permission116=Transfers zwischen Konten Permission117=Schecks verwalten -Permission121=Mit Benutzer verbundene Partner einsehen -Permission122=Mit Benutzer verbundene Partner erstellen/bearbeiten -Permission125=Mit Benutzer verbundene Partner löschen +Permission121=Mit Benutzer verbundene Geschäftspartner einsehen +Permission122=Mit Benutzer verbundene Geschäftspartner erstellen/bearbeiten +Permission125=Mit Benutzer verbundene Geschäftspartner löschen Permission126=Geschäftspartner exportieren -Permission130=Zahlungsinformationen von Geschäftspartnern erstellen/ändern +Permission130=Zahlungsinformationen von Geschäftspartnern erstellen/bearbeiten Permission141=Alle Projekte und Aufgaben lesen (auch private Projekte, für die ich kein Ansprechpartner bin) -Permission142=Erstellen/Ändern aller Projekte und Aufgaben (auch private Projekte, für die ich kein Ansprechpartner bin) +Permission142=Erstellen/Bearbeiten aller Projekte und Aufgaben (auch private Projekte, für die ich kein Ansprechpartner bin) Permission144=Alle Projekte und Aufgaben löschen (auch private Projekte, für die ich kein Ansprechpartner bin) Permission145=Kann für mich oder meine Hierarchie aufgewendete Zeiten für zugewiesene Aufgaben erfassen (Arbeitszeittabelle) Permission146=Lieferanten einsehen Permission147=Statistiken einsehen -Permission151=Bestellung mit Zahlart Lastschrift +Permission151=Lastschriftaufträge einsehen Permission152=Lastschriftaufträge erstellen/bearbeiten -Permission153=Bestellungen mit Zahlart Lastschrift übertragen +Permission153=Lastschriftaufträge senden/übertragen Permission154=Gutschriften / Ablehnungen von Lastschrift-Zahlungsaufträgen erfassen Permission161=Verträge/Abonnements einsehen Permission162=Verträge/Abonnements erstellen/bearbeiten @@ -782,7 +782,7 @@ Permission163=Leistung/Abonnement in einem Vertrag aktivieren Permission164=Leistung/Abonnement in einem Vertrag deaktivieren Permission165=Verträge/Abonnement löschen Permission167=Verträge exportieren -Permission171=Reise- und Spesenabrechnung einsehen (Eigene und von Untergebenen) +Permission171=Reise- und Spesenabrechnung einsehen (Eigene und die der unterstellten Mitarbeiter) Permission172=Reise- und Spesenabrechnung erstellen/bearbeiten Permission173=Reise- und Spesenabrechnung verwerfen Permission174=Alle Reise- und Spesenabrechnung einsehen @@ -823,7 +823,7 @@ Permission244=Inhalte versteckter Kategorien einsehen Permission251=Andere Benutzer und Gruppen einsehen PermissionAdvanced251=Andere Benutzer einsehen Permission252=Berechtigungen andere Benutzer einsehen -Permission253=erstellen / bearbeiten von Benutzern & Gruppen (inkl. Rechteverwaltung) +Permission253=Benutzer & Gruppen (inkl. Rechteverwaltung) erstellen/bearbeiten PermissionAdvanced253=Andere interne/externe Benutzer und Gruppen erstellen/bearbeiten (inkl. Rechteverwaltung) Permission254=Nur externe Benutzer erstellen/bearbeiten Permission255=Passwörter anderer Benutzer ändern @@ -831,7 +831,7 @@ Permission256=Andere Benutzer löschen oder deaktivieren Permission262=Erweitern Sie den Zugriff auf alle Drittanbieter UND deren Objekte (nicht nur auf Drittanbieter, für die der Benutzer ein Verkaufsvertreter ist).
Nicht wirksam für externe Benutzer (bei Vorschlägen, Bestellungen, Rechnungen, Verträgen usw. immer auf sich selbst beschränkt).
Nicht wirksam für Projekte (nur Regeln zu Projektberechtigungen, Sichtbarkeit und Zuweisung). Permission263=Erweitern Sie den Zugriff auf alle Drittanbieter OHNE ihre Objekte (nicht nur auf Drittanbieter, für die der Benutzer ein Verkaufsvertreter ist).
Nicht wirksam für externe Benutzer (bei Vorschlägen, Bestellungen, Rechnungen, Verträgen usw. immer auf sich selbst beschränkt).
Nicht wirksam für Projekte (nur Regeln zu Projektberechtigungen, Sichtbarkeit und Zuweisung). Permission271=Read CA -Permission272=Rechnungen anzeigen +Permission272=Rechnungen einsehen Permission273=Rechnungen ausstellen Permission281=Kontakte einsehen Permission282=Kontakte erstellen/bearbeiten @@ -843,7 +843,7 @@ Permission293=Kundentarife ändern Permission300=Barcodes anzeigen Permission301=Barcodes erstellen/bearbeiten Permission302=Barcodes löschen -Permission311=Leistungen anzeigen +Permission311=Leistungen einsehen Permission312=Leistung/Abonnement einem Vertrag zuordnen Permission331=Lesezeichen anzeigen Permission332=Lesezeichen erstellen/bearbeiten @@ -857,55 +857,55 @@ Permission352=Gruppenberechtigungen einsehen Permission353=Gruppen erstellen/bearbeiten Permission354=Gruppen löschen oder deaktivieren Permission358=Benutzer exportieren -Permission401=Rabatte anzeigen +Permission401=Rabatte einsehen Permission402=Rabatte erstellen/bearbeiten Permission403=Rabatte freigeben Permission404=Rabatte löschen Permission430=Debug Bar nutzen -Permission511=Leseberechtigung für Gehälter und Zahlungen (eigene und von Untergebenen) -Permission512=Gehälter und Zahlungen erstellen/ändern +Permission511=Leseberechtigung für Gehälter und Zahlungen (eigene und die der unterstellten Mitarbeiter) +Permission512=Gehälter und Zahlungen erstellen/bearbeiten Permission514=Gehälter und Zahlungen löschen Permission517=Leseberechtigung für alle Gehälter und Zahlungen -Permission519=Löhne exportieren +Permission519=Gehälter exportieren Permission520=Darlehen anzeigen Permission522=Darlehen erstellen/bearbeiten Permission524=Lösche Darlehen Permission525=Zugriff auf Darlehensrechner Permission527=Darlehen exportieren -Permission531=Leistungen anzeigen +Permission531=Leistungen einsehen Permission532=Leistungen erstellen/bearbeiten Permission534=Leistungen löschen Permission536=Versteckte Leistungen einsehen/verwalten Permission538=Leistungen exportieren Permission561=Zahlungsaufträge per Überweisung lesen -Permission562=Zahlungsauftrag per Überweisung erstellen / ändern -Permission563=Zahlungsauftrag per Überweisung senden / übertragen +Permission562=Zahlungsauftrag per Überweisung erstellen/bearbeiten +Permission563=Zahlungsauftrag per Überweisung senden/übertragen Permission564=Belastungen / Ablehnungen der Überweisung erfassen -Permission601=Aufkleber lesen -Permission602=Erstellen / Ändern von Aufklebern +Permission601=Aufkleber einsehen +Permission602=Aufkleber erstellen/bearbeiten Permission609=Aufkleber löschen Permission611=Attribute von Varianten lesen Permission612=Attribute von Varianten erstellen/aktualisieren Permission613=Attribute von Varianten löschen -Permission650=Stücklisten anzeigen -Permission651=Stücklisten erstellen / aktualisieren +Permission650=Stücklisten einsehen +Permission651=Stücklisten erstellen/aktualisieren Permission652=Stücklisten löschen -Permission660=Fertigungsauftrag (MO) anzeigen +Permission660=Fertigungsauftrag (MO) einsehen Permission661=Fertigungsauftrag (MO) erstellen/aktualisieren Permission662=Fertigungsauftrag (MO) löschen Permission701=Spenden anzeigen Permission702=Spenden erstellen/bearbeiten Permission703=Spenden löschen -Permission771=Spesenabrechnungen einsehen (eigene und die der Untergebenen) -Permission772=Spesenabrechnungen erstellen/ändern (für Sie und Ihnen unterstellte Mitarbeiter) +Permission771=Spesenabrechnungen einsehen (eigene und die der unterstellten Mitarbeiter) +Permission772=Spesenabrechnungen erstellen/bearbeiten (eigene und die der unterstellten Mitarbeiter) Permission773=Spesenabrechnung löschen Permission775=Spesenabrechnung genehmigen Permission776=Spesenabrechnung bezahlen -Permission777=Lesen Sie alle Spesenabrechnungen (auch die von Ihnen nicht unterstellten Mitarbeitern) -Permission778=Spesenabrechnungen aller erstellen / ändern +Permission777=Alle Spesenabrechnungen einsehen (auch die von nicht unterstellten Mitarbeitern) +Permission778=Spesenabrechnungen aller erstellen/bearbeiten Permission779=Spesenabrechnung exportieren Permission1001=Warenbestände einsehen -Permission1002=Warenlager erstellen/ändern +Permission1002=Warenlager erstellen/bearbeiten Permission1003=Warenlager löschen Permission1004=Lagerbewegungen einsehen Permission1005=Lagerbewegungen erstellen/bearbeiten @@ -914,18 +914,18 @@ Permission1012=Neue Bestandsaufnahme erstellen Permission1014=Bestandsaufnahme freigeben Permission1015=Durchschnittspreis änderbar Permission1016=Bestandsaufnahme löschen -Permission1101=Lieferscheine anzeigen +Permission1101=Lieferscheine einsehen Permission1102=Lieferscheine erstellen/bearbeiten Permission1104=Lieferscheine freigeben Permission1109=Lieferscheine löschen -Permission1121=Lieferantenvorschläge anzeigen -Permission1122=Lieferantenvorschläge erstellen / ändern +Permission1121=Lieferantenangebote einsehen +Permission1122=Lieferantenangebote erstellen/bearbeiten Permission1123=Lieferantenangebote freigeben -Permission1124=Lieferantenvorschläge senden -Permission1125=Lieferantenvorschläge löschen +Permission1124=Lieferantenangebote senden +Permission1125=Lieferantenangebote löschen Permission1126=Schließe Lieferantenpreisanfragen Permission1181=Lieferanten einsehen -Permission1182=Lieferantenbestellungen anzeigen +Permission1182=Lieferantenbestellungen einsehen Permission1183=Lieferantenbestellungen erstellen/bearbeiten Permission1184=Lieferantenbestellungen freigeben Permission1185=Lieferantenbestellungen bestätigen/genehmigen @@ -937,7 +937,7 @@ Permission1190=Lieferantenbestellungen bestätigen (zweite Bestätigung) Permission1191=Exportieren Sie Lieferantenaufträge und deren Attribute Permission1201=Exportresultate einsehen Permission1202=Export erstellen/bearbeiten -Permission1231=Lieferantenrechnungen anzeigen +Permission1231=Lieferantenrechnungen einsehen Permission1232=Lieferantenrechnungen (Eingangsrechnungen) erstellen/bearbeiten Permission1233=Lieferantenrechnungen freigeben Permission1234=Lieferantenrechnungen löschen @@ -951,7 +951,7 @@ Permission1421=Kundenaufträge und Attribute exportieren Permission1521=Dokumente einsehen Permission1522=Dokumente löschen Permission2401=Aktionen (Ereignisse oder Aufgaben) lesen, die mit seinem Benutzerkonto verknüpft sind (wenn Eigentümer des Ereignisses oder gerade zugewiesen) -Permission2402=Aktionen (Ereignisse oder Aufgaben) erstellen / ändern, die mit seinem Benutzerkonto verknüpft sind (wenn Eigentümer des Ereignisses) +Permission2402=Aktionen (Ereignisse oder Aufgaben) erstellen/bearbeiten, die mit seinem Benutzerkonto verknüpft sind (wenn Eigentümer des Ereignisses) Permission2403=Mit seinem Benutzerkonto verknüpfte Aktionen (Ereignisse oder Aufgaben) löschen (wenn Eigentümer des Ereignisses) Permission2411=Ereignisse (Termine/Aufgaben) Anderer einsehen Permission2412=Ereignisse (Termine/Aufgaben) Anderer erstellen/bearbeiten @@ -966,27 +966,27 @@ Permission2802=FTP-Client im Schreibmodus nutzen (Dateien löschen oder hochlade Permission3200=Eingetragene Ereignisse und Fingerprints lesen Permission3301=Neues Module erstellen Permission4001=Kompetenz/Job/Position einsehen -Permission4002=Kompetenz/Job/Position erstellen/ändern +Permission4002=Kompetenz/Job/Position erstellen/bearbeiten Permission4003=Kompetenz/Job/Position löschen Permission4020=Bewertungen einsehen -Permission4021=Erstellen/ändern Sie Ihre Bewertung +Permission4021=Erstellen/bearbeiten Sie Ihre Bewertung Permission4022=Bewertung freigeben Permission4023=Bewertung löschen Permission4030=Siehe Vergleichsmenü Permission4031=Persönliche Daten einsehen Permission4032=Persönliche Daten schreiben -Permission10001=Website-Inhalt anzeigen +Permission10001=Website-Inhalt einsehen Permission10002=Erstelle/Bearbeite Website-Inhalte (HTML und JavaScript) Permission10003=Erstelle/Bearbeite Website-Inhalte (dynamischer PHP-Code). Gefährlich, dies muss auf ausgewählte Entwickler beschränkt werden. Permission10005=Inhalt der Website löschen -Permission20001=Urlaubsanträge einsehen (eigene und die Ihrer Untergeordneten) -Permission20002=Urlaubsanträge anlegen/bearbeiten (eigene und die Ihrer Untergeordneten) +Permission20001=Urlaubsanträge einsehen (eigene und die der unterstellten Mitarbeiter) +Permission20002=Urlaubsanträge anlegen/bearbeiten (eigene und die der unterstellten Mitarbeiter) Permission20003=Lösche Urlaubsanträge -Permission20004=Alle Urlaubsanträge lesen (auch die von Ihnen nicht unterstellten Mitarbeitern) -Permission20005=Urlaubsanträge für alle erstellen/ändern (auch für Ihnen nicht unterstellte Mitarbeiter) +Permission20004=Alle Urlaubsanträge einsehen (auch die von nicht unterstellten Mitarbeitern) +Permission20005=Urlaubsanträge für alle erstellen/bearbeiten (auch die von nicht unterstellten Mitarbeitern) Permission20006=Urlaubsanträge verwalten (Saldo einrichten und aktualisieren) Permission20007=Urlaubsanträge genehmigen -Permission23001=Geplante Aufgaben anzeigen +Permission23001=Geplante Aufgaben einsehen Permission23002=Geplante Aufgaben erstellen/bearbeiten Permission23003=Geplante Aufgabe(n) löschen Permission23004=Geplante Aufgaben ausführen @@ -997,43 +997,43 @@ Permission50153=Zeilen bestellte Verkäufe bearbeiten Permission50201=Transaktionen einsehen Permission50202=Transaktionen importieren Permission50330=Lesen Sie Objekte von Zapier -Permission50331=Objekte von Zapier erstellen / aktualisieren +Permission50331=Objekte von Zapier erstellen/aktualisieren Permission50332=Objekte von Zapier löschen Permission50401=Produkte und Rechnungen mit Sachkonten verbinden -Permission50411=Hauptbuch-Vorgänge lesen +Permission50411=Hauptbuch-Vorgänge einsehen Permission50412=Hauptbuch-Vorgänge schreiben/bearbeiten Permission50414=Hauptbuch-Vorgänge löschen Permission50415=Alle Vorgänge des Jahres und Protokolles im Hauptbuch löschen Permission50418=Exportvorgänge des Hauptbuches -Permission50420=Berichts- und Exportberichte (Umsatz, Bilanz, Journale, Ledger) +Permission50420=Berichte und Berichtsexporte (Umsatz, Bilanz, Journale, Hauptbuch) Permission50430=Geschäftsperioden definieren. Überprüfen Sie Transaktionen und schließen Sie Geschäftsperioden. Permission50440=Kontenplan verwalten, Buchhaltung einrichten -Permission51001=Anlagegüter (Assets) anzeigen -Permission51002=Anlagegüter (Assets) erstellen / aktualisieren +Permission51001=Anlagegüter (Assets) einsehen +Permission51002=Anlagegüter (Assets) erstellen/aktualisieren Permission51003=Anlagegüter (Assets) löschen -Permission51005=Arten von Anlagengüter (Assets) einrichten +Permission51005=Arten von Anlagegütern (Assets) einrichten Permission54001=Drucken Permission55001=Abstimmungen einsehen -Permission55002=Abstimmung erstellen/ändern +Permission55002=Abstimmungen erstellen/bearbeiten Permission59001=Gewinnspanne einsehen Permission59002=Gewinnspanne definieren Permission59003=Lesen aller Benutzer Margen -Permission63001=Ressourcen anzeigen +Permission63001=Ressourcen einsehen Permission63002=Ressource erstellen/bearbeiten Permission63003=Ressource löschen Permission63004=Verbinden von Ressourcen zu Ereignissen Permission64001=Direkt drucken erlauben Permission67000=Drucken von Quittungen erlauben Permission68001=Lesen Sie den Intracomm-Bericht -Permission68002=Intracomm-Bericht erstellen / ändern +Permission68002=Intracomm-Bericht erstellen/bearbeiten Permission68004=Intracomm-Bericht löschen -Permission941601=Quittungen einlesen -Permission941602=Erstellen und ändern von Quittungen -Permission941603=Quittungen bestätigen +Permission941601=Quittungen einsehen +Permission941602=Quittungen erstellen/bearbeiten +Permission941603=Quittungen freigeben Permission941604=Quittungen per E-Mail senden Permission941605=Quittungen exportieren Permission941606=Quittungen löschen -DictionaryCompanyType=Geschäftspartner Arten +DictionaryCompanyType=Geschäftspartner-Arten DictionaryCompanyJuridicalType=Rechtsformen der Geschäftspartner DictionaryProspectLevel=Level für Interessentenstatus - Unternehmen DictionaryProspectContactLevel=Level für Interessentenstatus - Kontakte @@ -1053,14 +1053,14 @@ DictionaryTypeOfContainer=Website - Art der Webseiten/Container DictionaryEcotaxe=Ökosteuern (WEEE) DictionaryPaperFormat=Papierformat DictionaryFormatCards=Kartenformate -DictionaryFees=Spesenabrechnung - Arten von Spesenabrechnungszeilen +DictionaryFees=Spesenabrechnung - Arten von Spesenpositionen DictionarySendingMethods=Versandarten DictionaryStaff=Anzahl der Beschäftigten DictionaryAvailability=Lieferverzug DictionaryOrderMethods=Bestellmethoden DictionarySource=Quelle der Angebote/Aufträge -DictionaryAccountancyCategory=Personalisierte Gruppen für Berichte -DictionaryAccountancysystem=Wähle deinen Kontenplan. +DictionaryAccountancyCategory=Benutzerdefinierte Gruppen für Berichte +DictionaryAccountancysystem=Kontenplan-Modelle DictionaryAccountancyJournal=Buchhaltungsjournale DictionaryEMailTemplates=E-Mail-Vorlagen DictionaryUnits=Einheiten @@ -1188,10 +1188,10 @@ LogoDesc=Standard-Logo des Unternehmens. Das Logo wird in generierten Dokumenten LogoSquarred=Logo (quadratisch) LogoSquarredDesc=Muss ein quadratisches Icon sein (Breite = Höhe). Dieses Logo wird als Favicon oder für Zwecke wie die obere Menüleiste (falls nicht in den Anzeige-Einstellungen deaktiviert) verwendet. DoNotSuggestPaymentMode=Nicht vorschlagen / anzeigen -NoActiveBankAccountDefined=Keine aktiven Finanzkonten definiert +NoActiveBankAccountDefined=Keine aktiven Bankkonten definiert OwnerOfBankAccount=Kontoinhaber %s BankModuleNotActive=Finanzkontenmodul nicht aktiv -ShowBugTrackLink=Den Link " %s " anzeigen +ShowBugTrackLink=Den Link "%s" anzeigen ShowBugTrackLinkDesc=Leer lassen, um diesen Link nicht anzuzeigen, verwenden Sie den Wert 'github' für den Link zum Dolibarr-Projekt oder definieren Sie direkt eine URL 'https://...' Alerts=Benachrichtigungen DelaysOfToleranceBeforeWarning=Anzeige einer Warnmeldung für... @@ -1300,21 +1300,21 @@ MeteoStdModEnabled=Standardmodus aktiviert MeteoPercentageMod=Prozentmodus MeteoPercentageModEnabled=Prozentmodus aktiviert MeteoUseMod=Anklicken um %s zu verwenden -TestLoginToAPI=Testen Sie sich anmelden, um API +TestLoginToAPI=Anmeldung am API testen ProxyDesc=Einige Dolibarr-Funktionen benötigen einen Zugang zum Internet. Hier können die Verbindungsparameter festgelegt werden, z.B. ob ein Proxy-Server erforderlich ist. ExternalAccess=Externer Internet-Zugang -MAIN_PROXY_USE=Proxy-Server benutzen (ansonsten erfolgt der Zugriff in's Internet direkt) -MAIN_PROXY_HOST=Proxyservers: IP-Adresse / DNS-Name +MAIN_PROXY_USE=Proxyserver benutzen (ansonsten erfolgt der Internetzugriff direkt) +MAIN_PROXY_HOST=Proxyserver: IP-Adresse/DNS-Name MAIN_PROXY_PORT=Proxyserver: Port MAIN_PROXY_USER=Proxyserver: Benutzername MAIN_PROXY_PASS=Proxyserver: Passwort DefineHereComplementaryAttributes=Definieren Sie alle ergänzenden Attribute, die hinzugefügt werden sollen: ExtraFields=Ergänzende Attribute -ExtraFieldsLines=Ergänzende Attribute (in den Einzelpositionen) +ExtraFieldsLines=Ergänzende Attribute (zu Positionen/Zeilen) ExtraFieldsLinesRec=Ergänzende Attribute (Positionen in Rechnungsvorlagen) ExtraFieldsSupplierOrdersLines=Ergänzende Attribute (in Auftragspositionen) ExtraFieldsSupplierInvoicesLines=Ergänzende Attribute (in Rechnungspositionen) -ExtraFieldsThirdParties=Ergänzende Attribute (Partner) +ExtraFieldsThirdParties=Ergänzende Attribute (Geschäftspartner) ExtraFieldsContacts=Ergänzende Attribute (Kontakte/Adressen) ExtraFieldsMember=Ergänzende Attribute (Mitglied) ExtraFieldsMemberType=Ergänzende Attribute (Mitglied) @@ -1362,7 +1362,7 @@ YouHaveXObjectUseSearchOptim=Sie haben %s %s in der Datenbank. Sie können in St YouHaveXObjectUseSearchOptimDesc=Beschränkung der Suche auf den Anfang von Zeichenketten. Dadurch kann die Datenbank Indizes verwenden, was die Antwortzeiten deutlich beschleunigt. YouHaveXObjectAndSearchOptimOn=Sie haben %s %s in der Datenbank und die Konstante %s ist in Start-Einstellungen-Erweiterte Einstellungen auf %s gesetzt. BrowserIsOK=Sie verwenden %s als Webbrowser. Dieser ist hinsichtlich Sicherheit und Leistung ausreichend. -BrowserIsKO=Sie verwenden %s als Webbrowser. Dieser ist bekanntlich eine schlechte Wahl wenn es um Sicherheit, Leistung und Zuverlässigkeit geht. Wir empfehlen Firefox, Chrome, Opera oder Safari zu benutzen. +BrowserIsKO=Sie verwenden %s als Webbrowser. Dieser ist bekanntlich eine schlechte Wahl, wenn es um Sicherheit, Leistung und Zuverlässigkeit geht. Wir empfehlen Firefox, Chrome, Opera oder Safari zu benutzen. PHPModuleLoaded=PHP Komponente %s ist geladen PreloadOPCode=Vorgeladener OPCode wird verwendet AddRefInList=Kunden-/Lieferanten-Ref. in Auswahllisten anzeigen.
Geschäftspartner werden mit dem Namensformat "CC12345 - SC45678 - The Big Company corp." angezeigt statt "The Big Company Corp". @@ -1393,7 +1393,7 @@ GroupsDocModules=Dokumentvorlagen für Dokumente, die aus einem Gruppendatensatz HRMSetup=Einstellungen Modul Personal ##### Company setup ##### CompanySetup=Einstellungen Modul Geschäftspartner -CompanyCodeChecker=Nummernvergabe für Partner und Lieferanten +CompanyCodeChecker=Optionen für die automatische Vergabe von Kunden- und Lieferantennummern AccountCodeManager=Optionen für die automatische Generierung von Kunden-/Anbieterkontonummern NotificationsDesc=Für einige Dolibarr-Ereignisse können automatisch E-Mail-Benachrichtigungen gesendet werden,
wobei Empfänger von Benachrichtigungen definiert werden können: NotificationsDescUser=* pro Benutzer, nur ein Benutzer zur gleichen Zeit @@ -1423,7 +1423,7 @@ ForceInvoiceDate=Rechnungsdatum ist zwingend Freigabedatum SuggestedPaymentModesIfNotDefinedInInvoice=Vorgeschlagener, standardmäßiger Zahlungsmodus auf der Rechnung, falls nicht auf der Rechnung definiert SuggestPaymentByRIBOnAccount=Bankkonto für Bezahlung per Überweisung SuggestPaymentByChequeToAddress=Adresse für Zahlung per Scheck -FreeLegalTextOnInvoices=Freier Rechtstext für Rechnungen +FreeLegalTextOnInvoices=Freier Standardtext auf Rechnungen WatermarkOnDraftInvoices=Wasserzeichen auf Rechnungsentwurf (leerlassen wenn keines benötigt wird) PaymentsNumberingModule=Zahlungen Nummerierungs Module SuppliersPayment=Lieferanten Zahlung @@ -1435,7 +1435,7 @@ PropalSetup=Einstellungen Modul Angebote ProposalsNumberingModules=Nummernvergabe für Angebote ProposalsPDFModules=Dokumentenvorlage(n) SuggestedPaymentModesIfNotDefinedInProposal=Vorgeschlagener, standardmäßiger Zahlungsmodus für Angebot, falls nicht im Angebot definiert -FreeLegalTextOnProposal=Freier Rechtstext auf Angeboten +FreeLegalTextOnProposal=Freier Standardtext auf Angeboten WatermarkOnDraftProposal=Wasserzeichen auf Angebotsentwurf (leerlassen wenn keines benötigt wird) BANK_ASK_PAYMENT_BANK_DURING_PROPOSAL=Fragen Sie nach dem Bankkonto bei einem Angebot ##### SupplierProposal ##### @@ -1453,7 +1453,7 @@ SuggestedPaymentModesIfNotDefinedInOrder=Standardmäßig vorgeschlagener Zahlung OrdersSetup=Einstellungen für die Verwaltung von Kundenaufträgen OrdersNumberingModules=Nummernvergabe für Aufträge/Bestellungen OrdersModelModule=Dokumentenvorlage(n) -FreeLegalTextOnOrders=Freier Rechtstext auf Bestellungen +FreeLegalTextOnOrders=Freier Standardtext auf Bestellungen WatermarkOnDraftOrders=Wasserzeichen auf Bestellentwurf (leerlassen wenn keines benötigt wird) ShippableOrderIconInList=In Auftragsliste ein entsprechendes Icon zufügen, wenn der Auftrag versandbereit ist BANK_ASK_PAYMENT_BANK_DURING_ORDER=Fragen Sie nach der Ziel-Bankverbindung @@ -1468,7 +1468,7 @@ ContractsSetup=Vertrags- und Abonnements-Einstellungen ContractsNumberingModules=Nummernvergabe für Verträge und Abonnements TemplatePDFContracts=Dokumentenvorlage(n) FreeLegalTextOnContracts=Freier Text in Verträgen -WatermarkOnDraftContractCards=Wasserzeichen auf Vertragsentwurf (leerlassen wenn keines benötigt wird) +WatermarkOnDraftContractCards=Wasserzeichen auf Entwurf (leerlassen, wenn nicht benötigt) ##### Members ##### MembersSetup=Modul Mitglieder - Einstellungen MemberMainOptions=Haupteinstellungen @@ -1486,7 +1486,7 @@ LDAPUsersSynchro=Benutzer LDAPGroupsSynchro=Gruppen LDAPContactsSynchro=Kontakte LDAPMembersSynchro=Mitglieder -LDAPMembersTypesSynchro=Mitgliedsarten +LDAPMembersTypesSynchro=Mitgliedschaftstypen LDAPSynchronization=LDAP-Synchronisation LDAPFunctionsNotAvailableOnPHP=LDAP-Funktionen sind in Ihrer PHP-Konfiguration nicht verfügbar LDAPToDolibarr=LDAP->Dolibarr @@ -1496,7 +1496,7 @@ LDAPSynchronizeUsers=dolibarr-Benutzer mit LDAP synchronisieren LDAPSynchronizeGroups=dolibarr-Gruppen mit LDAP synchronisieren LDAPSynchronizeContacts=dolibarr-Kontakte mit LDAP synchronisieren LDAPSynchronizeMembers=dolibarr-Stiftungsmitglieder mit LDAP synchronisieren -LDAPSynchronizeMembersTypes=Verwalten der Mitgliedsarten via LDAP +LDAPSynchronizeMembersTypes=Verwalten der Mitgliedschaftstypen via LDAP LDAPPrimaryServer=Primärer LDAP-Server LDAPSecondaryServer=Sekundärer LDAP-Server LDAPServerPort=Server-Port @@ -1520,7 +1520,7 @@ LDAPDnContactActive=Kontaktesynchronisation LDAPDnContactActiveExample=Aktivierte/Deaktivierte Synchronisation LDAPDnMemberActive=Mitgliedersynchronisation LDAPDnMemberActiveExample=Aktivierte/Deaktivierte Synchronisation -LDAPDnMemberTypeActive=Mitgliedsarten Synchronisieren +LDAPDnMemberTypeActive=Mitgliedschaftstypen Synchronisieren LDAPDnMemberTypeActiveExample=Aktivierte/Deaktivierte Synchronisation LDAPContactDn=Dolibarr Kontakte DN LDAPContactDnExample=Vollständige DN (zB: ou=users,dc=society,dc=com) @@ -1528,7 +1528,7 @@ LDAPMemberDn=Dolibarr Mitglieder DN LDAPMemberDnExample=Vollständige DN (zB: ou=members,dc=example,dc=com) LDAPMemberObjectClassList=Liste der objectClass LDAPMemberObjectClassListExample=Liste der objectClass-definierenden Eintragsattribute (z.B.: top,inetOrgPerson oder top,user für ActiveDirectory) -LDAPMemberTypeDn=Dolibarr Mitgliedsarten DN +LDAPMemberTypeDn=Dolibarr Mitgliedschaftstypen DN LDAPMemberTypepDnExample=Komplette DN (z.B.: ou=membertypes,dc=example,dc=com) LDAPMemberTypeObjectClassList=Liste der objectClass LDAPMemberTypeObjectClassListExample=Liste der objectClass-definierenden Eintragsattribute(z.B.: top, groupOfUniqueNames) @@ -1662,8 +1662,8 @@ MergePropalProductCard=Aktivieren einer Option unter Produkte/Leistungen Regist 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 -SetDefaultBarcodeTypeThirdParties=Standard-Code-Typ für Partner +SetDefaultBarcodeTypeProducts=Standard-Barcode-Typ für Produkte +SetDefaultBarcodeTypeThirdParties=Standard-Barcode-Typ für Geschäftspartner UseUnits=Definieren Sie eine Maßeinheit für die Menge während der Auftrags-, Auftragsbestätigungs- oder Rechnungszeilen-Ausgabe ProductCodeChecker= Nummernvergabe für Produkte und Leistungen ProductOtherConf= Weitere Optionen @@ -1721,27 +1721,27 @@ NotificationDisableConfirmMessageContact=Bei Benachrichtigungen die Liste der Em NotificationDisableConfirmMessageUser=Bei Benachrichtigungen die Liste der Empfänger (hinterlegt als Benutzer), die die Benachrichtigung erhalten, nicht anzeigen NotificationDisableConfirmMessageFix=Bei Benachrichtigungen die Liste der Empfänger (hinterlegt als globale E-Mail-Adresse), die die Benachrichtigung erhalten, nicht anzeigen ##### Sendings ##### -SendingsSetup=Einstellungen Modul Versand -SendingsReceiptModel=Versandbelegsvorlage -SendingsNumberingModules=Nummerierungsmodell Auslieferungen +SendingsSetup=Einstellungen Modul Lieferungen +SendingsReceiptModel=Vorlage Versandbeleg (Lieferschein) +SendingsNumberingModules=Numerierungsmodul für Lieferungen SendingsAbility=Unterstützung von Versand-Dokumenten für Kundenlieferungen -NoNeedForDeliveryReceipts=In den meisten Fällen werden Lieferscheine sowohl als Versanddokument (für die Zusammenstellung der Auslieferung), als auch als Zustellscheine, die vom Kunden zu unterschreiben sind, verwendet. Entsprechend sind Empfangsbelege meist eine doppelte und daher nicht verwendete Option. -FreeLegalTextOnShippings=Freier Text auf Lieferungen +NoNeedForDeliveryReceipts=In den meisten Fällen werden Lieferscheine sowohl als Versanddokument (für die Zusammenstellung der Lieferung), als auch als Zustellscheine, die vom Kunden zu unterschreiben sind, verwendet. Entsprechend sind Zustellbestätigungen (Empfangsbelege) meist eine doppelte und daher nicht verwendete Option. +FreeLegalTextOnShippings=Freier Standardtext auf Lieferscheinen ##### Deliveries ##### -DeliveryOrderNumberingModules=Zustellscheinnumerierungs-Module -DeliveryOrderModel=Zustellscheinnumerierung -DeliveriesOrderAbility=Unterstütze Zustellscheine für Produkte -FreeLegalTextOnDeliveryReceipts=Freier Rechtstext auf Empfangsbelegen +DeliveryOrderNumberingModules=Numerierungsschema für Zustellbestätigungen +DeliveryOrderModel=Vorlagen Zustellbestätigung (Empfangsbeleg) +DeliveriesOrderAbility=Unterstütze Zustellbestätigungen (Empfangsbelege) für Produkte +FreeLegalTextOnDeliveryReceipts=Freier Standardtext auf Empfangsbelegen ##### FCKeditor ##### AdvancedEditor=Erweiterter Editor ActivateFCKeditor=FCKEditor aktivieren für: FCKeditorForNotePublic=WYSIWIG Erstellung/Bearbeitung des Feldes "öffentliche Notizen" von Elementen FCKeditorForNotePrivate=WYSIWIG Erstellung/Bearbeitung des Feldes "private Notizen" von Elementen -FCKeditorForCompany=WYSIWIG Erstellung/Bearbeitung der Feldbeschreibung von Elementen (ausgenommen Produkte/Leistungen) -FCKeditorForProduct=WYSIWIG Erstellung/Bearbeitung der Feldbeschreibung Produkte/Leistungen -FCKeditorForProductDetails=WYSIWIG Erstellung / Ausgabe von Produkt-Detailzeilen für alle Dokumente (Vorschläge, Bestellungen, Rechnungen usw.). 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. -FCKeditorForMailing= WYSIWIG Erstellung/Bearbeitung von E-Mails -FCKeditorForUserSignature=WYSIWIG Erstellung/Bearbeitung von Benutzer-Signaturen +FCKeditorForCompany=WYSIWYG Erstellung/Bearbeitung der Feldbeschreibung von Elementen (ausgenommen Produkte/Leistungen) +FCKeditorForProduct=WYSIWYG Erstellung/Bearbeitung der Feldbeschreibung Produkte/Leistungen +FCKeditorForProductDetails=WYSIWYG Erstellung/Ausgabe von Produkt-Detailzeilen für alle Dokumente (Angebote, Aufträge, Rechnungen usw.). Warnung: Die Verwendung dieser Option für diesen Fall wird nicht empfohlen, da dies beim Erstellen von PDF-Dateien zu Problemen mit Sonderzeichen und der Seitenformatierung führen kann. +FCKeditorForMailing= WYSIWYG Erstellung/Bearbeitung von E-Mails +FCKeditorForUserSignature=WYSIWYG Erstellung/Bearbeitung von Benutzer-Signaturen FCKeditorForMail=WYSIWYG-Erstellung/Bearbeitung für alle E-Mails (außer Werkzeuge->eMailing) FCKeditorForTicket=WYSIWYG-Erstellung/Bearbeitung von Tickets ##### Stock ##### @@ -1819,21 +1819,21 @@ ClickToDialDesc=Dieses Modul formatiert Telefonnummern als direkt anklickbare Li ClickToDialUseTelLink=Nur einen Link "Tel:" bei Telefonnummern verwenden ClickToDialUseTelLinkDesc=Verwenden Sie diese Methode, wenn Ihre Benutzer ein Software-Telefon oder ein Interface für ein Telefon auf demselben Computer installiert haben, auf dem der Browser läuft. Dieses Telefon/Interface wird aufgerufen, wenn Sie im Browser auf einen Link klicken, der mit "tel:" beginnt. Wenn Sie einen Link verwenden wollen, der mit "sip:" beginnt, oder wenn Sie eine vollständige Serverlösung nutzen (ohne lokale Software-Installation), wählen Sie hier "Nein" und füllen das nächste Feld aus.\n ##### Point Of Sale (CashDesk) ##### -CashDesk=Kasse +CashDesk=Kassenterminal CashDeskSetup=Kassenmoduleinstellungen -CashDeskThirdPartyForSell=Standardpartner für Kassenverkäufe -CashDeskBankAccountForSell=Standard-Bargeldkonto für Kassenverkäufe (erforderlich) -CashDeskBankAccountForCheque=Standardfinanzkonto für Scheckeinlösungen -CashDeskBankAccountForCB=Finanzkonto für die Einlösung von Bargeldzahlungen via Kreditkarte -CashDeskBankAccountForSumup=Standard-Bankkonto zum Empfangen von Zahlungen von SumUp -CashDeskDoNotDecreaseStock=Deaktiviere Lagerabgangsbuchung wenn ein Verkauf auf einem Point of Sale durchgeführt wird\n (wenn "Nein", wird die Lagerabgangsbuchung immer durchgeführt , auch wann im Modul Produktbestandsverwaltung was anderes ausgewählt wurde). -CashDeskIdWareHouse=Lager für Entnahmen festlegen und und erzwingen +CashDeskThirdPartyForSell=Standard-Geschäftspartner für Kassenverkäufe +CashDeskBankAccountForSell=Standardkonto Kasse für Barzahlungen +CashDeskBankAccountForCheque=Standardkonto für Zahlungen per Scheck +CashDeskBankAccountForCB=Standardkonto für Zahlungen per Kreditkarte +CashDeskBankAccountForSumup=Standardbankkonto zum Empfangen von Zahlungen von SumUp +CashDeskDoNotDecreaseStock=Deaktiviere Lagerabgangsbuchung wenn ein Verkauf an einem Point of Sale erfolgt\n(bei "Nein" wird die Lagerabgangsbuchung immer durchgeführt, auch wenn im Modul 'Lagerverwaltung' eine andere Einstellung gewählt wurde). +CashDeskIdWareHouse=Warenlager für Entnahmen festlegen und erzwingen StockDecreaseForPointOfSaleDisabled=Lagerrückgang bei Verwendung von Point of Sale deaktiviert StockDecreaseForPointOfSaleDisabledbyBatch=Die Bestandsreduzierung am POS ist nicht mit dem Modul Serial / Lot Management (derzeit aktiv) kompatibel, sodass die Bestandsreduzierung deaktiviert ist. CashDeskYouDidNotDisableStockDecease=Sie haben die Reduzierung der Lagerbestände nicht deaktiviert, wenn Sie einen Verkauf auf dem Point of Sale durchführen.\nAuch ist ein Lager/Standort notwendig. CashDeskForceDecreaseStockLabel=Eine Bestandsreduktion für Produktposten wurde erzwungen. CashDeskForceDecreaseStockDesc=Verringern Sie zuerst ausgehend vom ältesten Mindesthaltbarkeitsdatum oder Verbrauchsdatum. -CashDeskReaderKeyCodeForEnter=Schlüsselcode für "Enter" im Barcodeleser definiert (Beispiel: 13) +CashDeskReaderKeyCodeForEnter=Tastencode für "Enter" wie im Barcode-Leser definiert (Beispiel: 13) ##### Bookmark ##### BookmarkSetup=Lesezeichen-Moduleinstellungen BookmarkDesc=Dieses Modul ermöglicht die Verwaltung von Lesezeichen. Außerdem können Sie hiermit Verknüpfungen zu internen und externen Seiten im linken Menü anlegen. @@ -1936,7 +1936,7 @@ PressF5AfterChangingThis=Drücken Sie CTRL+F5 auf der Tastatur oder löschen Sie NotSupportedByAllThemes=Funktioniert mit dem Standard-Designvorlagen: wird möglicherweise nicht von externen Designvorlagen unterstützt BackgroundColor=Hintergrundfarbe TopMenuBackgroundColor=Hintergrundfarbe für Hauptmenü -TopMenuDisableImages=Symbole im oberen Menü ausblenden. +TopMenuDisableImages=Icon oder Text im oberen Menü LeftMenuBackgroundColor=Hintergrundfarbe für Menü Links BackgroundTableTitleColor=Hintergrundfarbe für Titelzeilen in Tabellen BackgroundTableTitleTextColor=Textfarbe der Tabellenüberschrift @@ -1949,7 +1949,7 @@ EnterAnyCode=Dieses Feld enthält eine Referenz zur Identifizierung der Zeile. G Enter0or1=Gib 0 oder 1 ein UnicodeCurrency=Geben Sie hier zwischen geschweiften Klammern die Liste der Bytes ein, die das Währungssymbol darstellen. Zum Beispiel: Geben Sie für $ [36] ein - für brasilianische Real-R $ [82,36] - geben Sie für € [8364] ein ColorFormat=Die RGB Farben sind im Hexformat, zB. FF0000 -PictoHelp=Name für Icon im Format:
- image.png für eine Bilddatei im aktuellen Theme-Verzeichnis
- image.png@module wenn die Datei im Verzeichnis /img/ eines Moduls liegt
- fa-xxx für ein FontAwesome fa-xxx Symbol
- fonwtawesome_xxx_fa_color_size für ein FontAwesome fa-xxx Symbol (mit festgelegtem Präfix, Farbe und Größe) +PictoHelp=Name für Icon im Format:
- image.png für eine Bilddatei im aktuellen Theme-Verzeichnis
- image.png@module wenn die Datei im Verzeichnis /img/ eines Moduls liegt
- fa-xxx für ein FontAwesome fa-xxx Symbol
- fontawesome_xxx_fa_color_size für ein FontAwesome fa-xxx Symbol (mit festgelegtem Präfix, Farbe und Größe) PositionIntoComboList=Zeilenposition in der Combo-Listen SellTaxRate=Umsatzsteuersatz RecuperableOnly=Ja für USt. "Wahrgenommene nicht Erstattungsfähig" für einige Regionen in Frankreich. Nein für alle anderen Fälle. @@ -1988,7 +1988,7 @@ TitleExampleForMajorRelease=Beispielnachricht, die Sie nutzen können, um eine H TitleExampleForMaintenanceRelease=Beispielnachricht, die Sie nutzen können, um ein Wartungsupdate anzukündigen. Sie können diese auf Ihrer Website verwenden. ExampleOfNewsMessageForMajorRelease=Dolibarr ERP & CRM %s ist verfügbar. Version %s ist eine Hauptversion mit vielen neuen Features für Benutzer und Entwickler. Sie können die Version aus dem Download-Bereich des Portals https://www.dolibarr.org laden (Unterverzeichnis "stabile Versionen"). Lesen Sie die komplette Liste der Änderungen. ExampleOfNewsMessageForMaintenanceRelease=Dolibarr ERP & CRM %s ist verfügbar. Version %s ist ein Wartungsupdate, das nur Fehlerbereinigungen enthält. Wir empfehlen allen Benutzern ein Upgrade auf diese Version. Wie bei jedem Wartungsupdate sind keinen neuen Features oder Änderungen in den Datenstrukturen enthalten. Sie können die Version aus dem Downloadbereich des Portals https://www.dolibarr.org laden (Unterverzeichnis "stabile Versionen"). Lesen Sie die komplette Liste der Änderungen im ChangeLog. -MultiPriceRuleDesc=Wenn die Option "Mehrere Preisstufen pro Produkt / Dienstleistung" aktiviert ist, können Sie für jedes Produkt unterschiedliche Preise definieren (einen pro Preisstufe). Um Zeit zu sparen, können Sie hier eine Regel eingeben, um einen Preis für jede Ebene auf der Grundlage des Preises der ersten Ebene automatisch zu berechnen, sodass Sie für jedes Produkt nur einen Preis für die erste Ebene eingeben müssen. Diese Seite soll Ihnen Zeit sparen, ist jedoch nur dann nützlich, wenn Ihre Preise für jedes Level im Verhältnis zum ersten Level stehen. Sie können diese Seite in den meisten Fällen ignorieren. +MultiPriceRuleDesc=Wenn die Option "Mehrere Preisstufen pro Produkt/Leistung" aktiviert ist, können Sie für jedes Produkt unterschiedliche Preise definieren (einen pro Preisstufe). Um Zeit zu sparen, können Sie hier eine Regel eingeben, um einen Preis für jede Preisstufe auf der Grundlage des Preises der ersten Preisstufe automatisch zu berechnen, sodass Sie für jedes Produkt nur einen Preis für die erste Preisstufe eingeben müssen. Diese Seite soll Ihnen Zeit sparen, ist jedoch nur dann nützlich, wenn Ihre Preise für jedes Level im Verhältnis zum ersten Level stehen. Sie können diese Seite in den meisten Fällen ignorieren. ModelModulesProduct=Vorlagen für Produktdokumente WarehouseModelModules=Vorlagen für Lagerdokumente ToGenerateCodeDefineAutomaticRuleFirst=Um Codes automatisch generieren zu können, muß zuerst ein Manager für die automatische Generierung von Barcode-Nummer festgelegt werden. @@ -2059,6 +2059,7 @@ VATIsUsedIsOff=Hinweis: Die Option zur Verwendung von Umsatzsteuer oder Mehrwert SwapSenderAndRecipientOnPDF=Tausche Position der Absender- und Empfängeradresse in PDF-Dokumenten FeatureSupportedOnTextFieldsOnly=Warnung, Funktion wird nur in Textfeldern und Kombinationslisten unterstützt. Außerdem muss ein URL-Parameter action = create oder action = edit festgelegt werden ODER der Seitenname muss mit 'new.php' enden, um diese Funktion auszulösen. EmailCollector=eMail-Collector +EmailCollectors=E-Mail-Kollektoren EmailCollectorDescription=Fügt einen geplanten Auftrag und eine Einrichtungsseite hinzu, um regelmäßig E-Mail-Postfächer (unter Verwendung des IMAP-Protokolls) zu scannen und E-Mails, die in Ihrer Anwendung eingegangen sind, am richtigen Ort aufzuzeichnen und / oder einige Datensätze automatisch zu erstellen (z. B. Leads). NewEmailCollector=Neuer eMail-Colletor EMailHost=Hostname des IMAP-Servers @@ -2073,14 +2074,14 @@ DateLastCollectResult=Datum des letzten eMail-Collect-Versuchs DateLastcollectResultOk=Datum des letzten, erfolgreichen eMail-Collect LastResult=Letztes Ergebnis EmailCollectorHideMailHeaders=Den Inhalt des E-Mail-Headers nicht im gespeicherten Inhalt gesammelter E-Mails einschließen -EmailCollectorHideMailHeadersHelp=Wenn diese Option aktiviert ist, werden E-Mail-Header nicht am Ende des als Ereignis gespeicherten E-Mail-Inhalts hinzugefügt. +EmailCollectorHideMailHeadersHelp=Wenn diese Option aktiviert ist, werden E-Mail-Kopfzeilen nicht am Ende des E-Mail-Inhalts hinzugefügt, der als Agenda-Ereignis gespeichert wird. EmailCollectorConfirmCollectTitle=eMail-Collect-Bestätigung EmailCollectorConfirmCollect=Möchten Sie diesen Collector jetzt ausführen? EmailCollectorExampleToCollectTicketRequestsDesc=Erfassen Sie E-Mails, die bestimmten Regeln entsprechen, und erstellen Sie automatisch ein Ticket (Modul Ticket muss aktiviert sein) mit den E-Mail-Informationen. Sie können diesen Collector verwenden, wenn Sie Unterstützung per E-Mail leisten, so dass aus der Anfrage automatisch ein Ticket generiert wird. Aktivieren Sie auch Collect_Responses, um Antworten Ihrer Kunden direkt in der Ticket-Ansicht zu sammeln (Sie müssen von Dolibarr aus antworten). EmailCollectorExampleToCollectTicketRequests=Beispiel für das Erfassen der Ticket-Anforderung (nur die erste Nachricht) EmailCollectorExampleToCollectAnswersFromExternalEmailSoftwareDesc=Durchsuchen Sie das „Gesendet“-Verzeichnis Ihres Postfachs, um E-Mails zu finden, die als Antwort auf eine andere E-Mail direkt von Ihrer E-Mail-Software und nicht von Dolibarr gesendet wurden. Wird eine solche E-Mail gefunden, wird das Antwortereignis in Dolibarr protokolliert EmailCollectorExampleToCollectAnswersFromExternalEmailSoftware=Beispiel zum Sammeln von E-Mail-Antworten, die von einer externen E-Mail-Software gesendet wurden -EmailCollectorExampleToCollectDolibarrAnswersDesc=Sammeln Sie alle E-Mails, die eine Antwort auf eine von Dolibarr gesendeten E-Mail sind. Ein Ereignis (Modul Ereignisse muss aktiviert sein) mit der E-Mail-Antwort wird aufgezeichnet. Wenn Sie beispielsweise ein Angebot, eine Bestellung, eine Rechnung oder eine Nachricht für ein Ticket per E-Mail aus der Anwendung senden und Ihr Kunde auf Ihre E-Mail antwortet, erfasst das System automatisch die Antwort und fügt sie in Ihrem ERP-System hinzu. +EmailCollectorExampleToCollectDolibarrAnswersDesc=Sammeln Sie alle E-Mails, die eine Antwort auf eine E-Mail sind, die aus Ihrer Anwendung gesendet wurde. Ein Ereignis (Modul Agenda muss aktiviert sein) mit der E-Mail-Antwort wird am zugehörigen Ort erfasst. Wenn Sie beispielsweise ein Angebot, eine Bestellung, eine Rechnung oder eine Nachricht für ein Ticket per E-Mail aus der Anwendung senden und der Empfänger auf Ihre E-Mail antwortet, erfasst das System automatisch die Antwort und fügt sie in Ihrem ERP hinzu. EmailCollectorExampleToCollectDolibarrAnswers=Beispiel für das Sammeln aller eingehenden Nachrichten, die Antworten auf Nachrichten sind, die von Dolibarr gesendet wurden. EmailCollectorExampleToCollectLeadsDesc=Sammeln Sie E-Mails, die bestimmten Regeln entsprechen und erstellen Sie automatisch einen Lead (Modul Projekt muss aktiviert sein) mit den E-Mail-Informationen. Sie können diesen Collector verwenden, wenn Sie Ihren Lead mit dem Modul Projekt (1 Lead = 1 Projekt) verfolgen möchten, um Ihre Leads automatisch zu generieren. Wenn der Collector Collect_Responses ebenfalls aktiviert ist, sehen Sie beim Senden einer E-Mail von Ihren Leads, Angeboten oder anderen Objekten möglicherweise auch die Antworten Ihrer Kunden oder Partner direkt in der Anwendung.
Hinweis: Bei diesem ersten Beispiel wird der Titel des Leads inklusive E-Mail generiert. Wenn der Geschäftspartner nicht in der Datenbank gefunden werden kann (Neukunde), wird der Lead dem Geschäftspartner mit der ID 1 zugeordnet. EmailCollectorExampleToCollectLeads=Beispiel für das Sammeln von Leads @@ -2088,7 +2089,7 @@ EmailCollectorExampleToCollectJobCandidaturesDesc=Sammeln Sie E-Mails, die Bewer EmailCollectorExampleToCollectJobCandidatures=Beispiel für das Sammeln von per E-Mail erhaltenen Stellenbewerbungen NoNewEmailToProcess=Keine neue e-Mail (passende Filter) zum Verarbeiten NothingProcessed=Nicht ausgeführt -XEmailsDoneYActionsDone=%sE-Mail(s) qualifiziert, %s E-Mail(s) erfolgreich verarbeitet (für %s Aufzeichnung(en) / Aktion(en) durchgeführt) +XEmailsDoneYActionsDone=%s E-Mails vorqualifiziert, %s E-Mails erfolgreich verarbeitet (für %s Aufzeichnung(en)/Aktion(en) durchgeführt) RecordEvent=Zeichnen Sie ein Ereignis in der Agenda auf (mit dem Typ der gesendeten oder empfangen E-Mail) CreateLeadAndThirdParty=Erstellen Sie einen Lead (und ggf. einen Geschäftspartner) CreateTicketAndThirdParty=Ticket erstellen (verknüpft mit einem Geschäftspartner, wenn der Geschäftspartner durch einen vorherigen Vorgang geladen oder aus einem Tracker im E-Mail-Header ermittelt wurde, ansonsten ohne Geschäftspartner) @@ -2167,6 +2168,9 @@ EmailTemplate=E-Mail-Vorlage EMailsWillHaveMessageID=E-Mails haben ein Schlagwort "Referenzen", das dieser Syntax entspricht PDF_SHOW_PROJECT=Projekt im Dokument anzeigen ShowProjectLabel=Projektbezeichnung +PDF_INCLUDE_ALIAS_IN_THIRDPARTY_NAME=Den Namen des Geschäftspartners um Alias ergänzen +THIRDPARTY_ALIAS=Name Geschäftspartner - Alias Geschäftspartner +ALIAS_THIRDPARTY=Alias Geschäftspartner - Name Geschäftspartner PDF_USE_ALSO_LANGUAGE_CODE=Wenn Sie möchten, dass einige Texte in Ihrem PDF in 2 verschiedenen Sprachen in demselben generierten PDF dupliziert werden, müssen Sie hier diese zweite Sprache festlegen, damit das generierte PDF zwei verschiedene Sprachen auf derselben Seite enthält, die beim Generieren von PDF ausgewählte und diese (dies wird nur von wenigen PDF-Vorlagen unterstützt). Für 1 Sprache pro PDF leer halten. PDF_USE_A=PDF-Dokumente im Format PDF/A erstellen anstelle des Standardformats PDF FafaIconSocialNetworksDesc=Geben Sie hier den Code für ein FontAwesome-Icon ein. Wenn Sie FontAwesome nicht kennen, können Sie den Standard 'fa-address-book' benutzen. @@ -2248,13 +2252,21 @@ TemplateforBusinessCards=Vorlage für eine Visitenkarte in unterschiedlicher Gr InventorySetup= Bestandsaufnahme einrichten ExportUseLowMemoryMode=Verwenden Sie einen Low-Memory-Modus ExportUseLowMemoryModeHelp=Verwenden Sie den Low-Memory-Modus, um den Dump zu erstellen (die Komprimierung erfolgt durch eine Pipe statt im PHP-Speicher). Mit dieser Methode kann nicht überprüft werden, ob die Datei vollständig ist, und es kann keine Fehlermeldung ausgeben werden, wenn der Vorgang fehlschlägt. + +ModuleWebhookName = Webhook +ModuleWebhookDesc = Schnittstelle zum Abfangen von Dolibarr-Triggern und zum Senden an eine URL +WebhookSetup = Webhook-Einrichtung +Settings = Einstellungen +WebhookSetupPage = Webhook-Einrichtungsseite ShowQuickAddLink=Eine Schaltfläche zum schnellen Hinzufügen eines Elements im oberen rechten Menü anzeigen + HashForPing=Für den Ping verwendeter Hash ReadOnlyMode=Ist eine Instanz im "Read Only"-Modus DEBUGBAR_USE_LOG_FILE=Die Datei dolibarr.log verwenden, um Protokolldaten zu erfassen UsingLogFileShowAllRecordOfSubrequestButIsSlower=Verwenden Sie die Datei dolibarr.log, um Protokolldaten zu erfassen, anstatt sie im Speicher aufzuzeichnen. Dies ermöglicht, alle Protokolldaten aufzuzeichnen, anstatt nur die Protokolldaten des aktuellen Prozesses (also einschließlich der Ajax-Requests auf den Seiten), aber Ihre Instanz wird sehr, sehr langsam. Nicht empfohlen. FixedOrPercent=Absolut (verwenden Sie das Schlüsselwort 'fixed') oder prozentual (verwenden Sie das Schlüsselwort 'percent') DefaultOpportunityStatus=Standard-Opportunity-Status (erster Status, wenn Interessent/Lead erstellt wird) + IconAndText=Icon und Text TextOnly=Nur Text IconOnlyAllTextsOnHover=Nur Icon - Alle Texte erscheinen unter dem Icon, wenn Sie mit der Maus über die Menüleiste fahren @@ -2262,4 +2274,15 @@ IconOnlyTextOnHover=Nur Icon – Der Text des Icons wird angezeigt, wenn Sie mit IconOnly=Nur Icon - Der Text wird als Tooltipp angezeigt INVOICE_ADD_ZATCA_QR_CODE=Den ZATCA-QR-Code auf Rechnungen anzeigen INVOICE_ADD_ZATCA_QR_CODEMore=Einige arabische Länder benötigen diesen QR-Code auf ihren Rechnungen +INVOICE_ADD_SWISS_QR_CODE=Schweizer QR-Rechnungscode auf Rechnungen anzeigen UrlSocialNetworksDesc=URL-Link des sozialen Netzwerks. Verwenden Sie {socialid} für den variablen Teil, der die ID des sozialen Netzwerks enthält. +IfThisCategoryIsChildOfAnother=Wenn diese Kategorie unterhalb einer anderen ist +DarkThemeMode=Dark Theme-Modus +AlwaysDisabled=Immer deaktiviert +AccordingToBrowser=Je nach Browser +AlwaysEnabled=Immer aktiviert +DoesNotWorkWithAllThemes=Funktioniert nicht mit allen Themes +NoName=Kein Name +ShowAdvancedOptions= Erweiterte Optionen anzeigen +HideAdvancedoptions= Erweiterte Optionen ausblenden +CIDLookupURL=Das Modul bringt eine URL mit, die von einem externen Tool verwendet werden kann, um den Namen eines Geschäftspartners oder Kontakts aus seiner Telefonnummer zu ermitteln. Zu verwendende URL ist: diff --git a/htdocs/langs/de_DE/agenda.lang b/htdocs/langs/de_DE/agenda.lang index 7d7dadd51a6..b6977136c3b 100644 --- a/htdocs/langs/de_DE/agenda.lang +++ b/htdocs/langs/de_DE/agenda.lang @@ -57,6 +57,7 @@ MemberValidatedInDolibarr=Mitglied %s freigegeben MemberModifiedInDolibarr=Mitglied %s geändert MemberResiliatedInDolibarr=Mitglied %s aufgehoben MemberDeletedInDolibarr=Mitglied %s gelöscht +MemberExcludedInDolibarr=Mitglied %s ausgeschlossen MemberSubscriptionAddedInDolibarr=Abonnement %s für Mitglied %s hinzugefügt MemberSubscriptionModifiedInDolibarr=Abonnement %s für Mitglied %s geändert MemberSubscriptionDeletedInDolibarr=Abonnement %s für Mitglied %s gelöscht @@ -66,9 +67,9 @@ ShipmentUnClassifyCloseddInDolibarr=Lieferung %s als wiedereröffnet markieren ShipmentBackToDraftInDolibarr=Sendung %s zurück zum Entwurfsstatus ShipmentDeletedInDolibarr=Lieferung %s gelöscht ShipmentCanceledInDolibarr=Sendung %s storniert -ReceptionValidatedInDolibarr=Empfang %s validiert +ReceptionValidatedInDolibarr=Wareneingang %s bestätigt ReceptionClassifyClosedInDolibarr=Wareneingang %s als geschlossen klassifiziert -OrderCreatedInDolibarr= Auftrag %s erstellt +OrderCreatedInDolibarr=Auftrag %s erstellt OrderValidatedInDolibarr=Auftrag %s freigegeben OrderDeliveredInDolibarr=Auftrag %s als geliefert markiert OrderCanceledInDolibarr=Auftrag %s storniert @@ -99,10 +100,10 @@ PRODUCT_DELETEInDolibarr=Produkt %s gelöscht HOLIDAY_CREATEInDolibarr=Urlaubsantrag %s erstellt HOLIDAY_MODIFYInDolibarr=Urlaubsantrag %s bearbeitet HOLIDAY_APPROVEInDolibarr=Urlaubsantrag %s genehmigt -HOLIDAY_VALIDATEInDolibarr=Urlaubsantrag %s validiert +HOLIDAY_VALIDATEInDolibarr=Urlaubsantrag %s freigegeben HOLIDAY_DELETEInDolibarr=Urlaubsantrag %s gelöscht EXPENSE_REPORT_CREATEInDolibarr=Spesenabrechnung %s erstellt -EXPENSE_REPORT_VALIDATEInDolibarr=Ausgabenbericht %s validiert +EXPENSE_REPORT_VALIDATEInDolibarr=Spesenabrechnung %s freigegeben EXPENSE_REPORT_APPROVEInDolibarr=Spesenabrechnung %s genehmigt EXPENSE_REPORT_DELETEInDolibarr=Spesenabrechnung %s gelöscht EXPENSE_REPORT_REFUSEDInDolibarr=Spesenabrechnung %s abgelehnt diff --git a/htdocs/langs/de_DE/boxes.lang b/htdocs/langs/de_DE/boxes.lang index 06a3fabd926..0000105e76c 100644 --- a/htdocs/langs/de_DE/boxes.lang +++ b/htdocs/langs/de_DE/boxes.lang @@ -5,11 +5,11 @@ BoxLastRssInfos=Informationen RSS Feed BoxLastProducts=%s zuletzt bearbeitete Produkte/Leistungen BoxProductsAlertStock=Bestandeswarnungen für Produkte BoxLastProductsInContract=Zuletzt in Verträgen aufgenommene Produkte/Leistungen (maximal %s) -BoxLastSupplierBills=neueste Lieferantenrechnungen -BoxLastCustomerBills=neueste Kundenrechnungen +BoxLastSupplierBills=Neueste Lieferantenrechnungen +BoxLastCustomerBills=Neueste Kundenrechnungen BoxOldestUnpaidCustomerBills=älteste unbezahlte Kundenrechnungen BoxOldestUnpaidSupplierBills=älteste unbezahlte Lieferantenrechnungen -BoxLastProposals=neueste Angebote +BoxLastProposals=Neueste Angebote BoxLastProspects=Zuletzt bearbeitete Interessenten BoxLastCustomers=zuletzt berarbeitete Kunden BoxLastSuppliers=zuletzt bearbeitete Lieferanten @@ -23,7 +23,7 @@ BoxLastMembersSubscriptions=Neueste Mitglieder-Abonnements BoxFicheInter=Neueste Serviceaufträge BoxCurrentAccounts=Saldo offene Konten BoxTitleMemberNextBirthdays=Geburtstage in diesem Monat (Mitglieder) -BoxTitleMembersByType=Mitglieder nach Typ +BoxTitleMembersByType=Mitglieder nach Typ und Status BoxTitleMembersSubscriptionsByYear=Mitgliederabonnements nach Jahr BoxTitleLastRssInfos=%s neueste Neuigkeiten von %s BoxTitleLastProducts=Zuletzt bearbeitete Produkte / Leistungen (maximal %s) @@ -45,7 +45,8 @@ BoxTitleLastModifiedContacts=Zuletzt bearbeitete Kontakte/Adressen (maximal %s) BoxMyLastBookmarks=Meine %s neuesten Lesezeichen BoxOldestExpiredServices=Die ältesten abgelaufenen aktiven Dienste BoxLastExpiredServices=Neueste Verträge mit abgelaufenen Leistungen (maximal %s) -BoxTitleLastActionsToDo=Anstehende Termine / Aufgaben (maximal %s) +BoxTitleLastActionsToDo=Anstehende Termine/Aufgaben (maximal %s) +BoxTitleOldestActionsToDo=Ältestes %s-Ereignis, das nicht abgeschlossen werden soll BoxTitleLastContracts=Zuletzt bearbeitete Verträge (maximal %s) BoxTitleLastModifiedDonations=Letzte %s Spenden, die geändert wurden BoxTitleLastModifiedExpenses=Neueste %s Spesenabrechnungen, die geändert wurden @@ -110,9 +111,9 @@ SuspenseAccountNotDefined=Zwischenkonto ist nicht definiert BoxLastCustomerShipments=Letzte Kundenlieferungen BoxTitleLastCustomerShipments=Neueste %s Kundensendungen NoRecordedShipments=Keine erfasste Kundensendung -BoxCustomersOutstandingBillReached=Kunden mit erreichtem Aussenständen-Limit +BoxCustomersOutstandingBillReached=Kunden mit erreichtem Aussenstände-Limit # Pages -UsersHome=Start Anwender und Gruppen +UsersHome=Start Benutzer und Gruppen MembersHome=Start Mitgliedschaft ThirdpartiesHome=Start Geschäftspartner TicketsHome=Start Tickets diff --git a/htdocs/langs/de_DE/cashdesk.lang b/htdocs/langs/de_DE/cashdesk.lang index c4a7560ca5b..f82782cda61 100644 --- a/htdocs/langs/de_DE/cashdesk.lang +++ b/htdocs/langs/de_DE/cashdesk.lang @@ -33,7 +33,7 @@ DeleteArticle=Klicken, um diesen Artikel zu entfernen FilterRefOrLabelOrBC=Suche (Artikelnr./Name) UserNeedPermissionToEditStockToUsePos=Sie möchten den Lagerbestand bei Rechnungserstellung verringern. Benutzer, die POS verwenden, mussen also die Berechtigung zum Bearbeiten des Lagerbestands erhalten. DolibarrReceiptPrinter=Dolibarr Quittungsdrucker -PointOfSale=Kasse +PointOfSale=Kassenterminal PointOfSaleShort=POS CloseBill=Rechnung schließen Floors=Bereiche / Etagen und Tische @@ -41,7 +41,7 @@ Floor=Bereich / Etage AddTable=Tisch hinzufügen Place=Tisch TakeposConnectorNecesary='TakePOS Connector' erforderlich -OrderPrinters=Fügen Sie eine Schaltfläche hinzu, um die Bestellung ohne Zahlung an bestimmte Drucker zu senden (z.B. um eine Bestellung an eine Küche zu senden). +OrderPrinters=Schaltfläche hinzufügen, um die Bestellung ohne Zahlung an bestimmte Drucker zu senden (z.B. um eine Bestellung an eine Küche zu senden) NotAvailableWithBrowserPrinter=Nicht verfügbar, wenn Drucker für Beleg auf Browser eingestellt ist SearchProduct=Produkt suchen Receipt=globale Druckeinstellungen @@ -49,7 +49,7 @@ Header=Kopfzeile Footer=Fußzeile AmountAtEndOfPeriod=Betrag am Ende der Periode (Tag, Monat oder Jahr) TheoricalAmount=Theoretischer Betrag -RealAmount=tatsächlicher Betrag +RealAmount=Tatsächlicher Betrag CashFence=Kassenschluss CashFenceDone=Kassenschluss für den Zeitraum durchgeführt NbOfInvoices=Anzahl der Rechnungen @@ -59,10 +59,10 @@ BillsCoinsPad=Münzen- und Banknoten-Pad DolistorePosCategory=TakePOS-Module und andere POS-Lösungen für Dolibarr TakeposNeedsCategories=TakePOS benötigt mindestens eine Produktkategorie, um zu funktionieren TakeposNeedsAtLeastOnSubCategoryIntoParentCategory=TakePOS benötigt mindestens 1 Produktkategorie unter der Kategorie %s , um zu funktionieren -OrderNotes=Kann jedem bestellten Artikel einige Notizen hinzufügen -CashDeskBankAccountFor=Standardkonto für Zahlungen in +OrderNotes=Jedem bestellten Artikel können Notizen hinzufügt werden +CashDeskBankAccountFor=Standardkonto für Zahlungen per NoPaimementModesDefined=In der TakePOS-Konfiguration ist kein Zahlungsmodus definiert -TicketVatGrouped=Gruppieren Sie die Mehrwertsteuer nach Steuersatz der Tickets/Quittungen +TicketVatGrouped=Mehrwertsteuer auf Tickets/Quittungen nach Steuersatz gruppieren AutoPrintTickets=Tickets | Quittungen automatisch drucken PrintCustomerOnReceipts=Kunden auf Tickets | Quittungen drucken EnableBarOrRestaurantFeatures=Bar- und Restaurantfunktionen @@ -76,20 +76,20 @@ TerminalSelect=Wählen Sie das Terminal aus, das Sie verwenden möchten: POSTicket=POS Ticket POSTerminal=POS-Terminal POSModule=POS-Modul -BasicPhoneLayout=Verwenden Sie das Basislayout für Telefone +BasicPhoneLayout=Basislayout für Telefone verwenden SetupOfTerminalNotComplete=Die Einrichtung von Terminal %s ist nicht abgeschlossen DirectPayment=Direktzahlung -DirectPaymentButton=Fügen Sie eine Schaltfläche "Direkte Barzahlung" hinzu +DirectPaymentButton=Schaltfläche "Direkte Barzahlung" hinzufügen InvoiceIsAlreadyValidated=Rechnung ist bereits geprüft NoLinesToBill=Keine Zeilen zu berechnen CustomReceipt=Benutzerdefinierte Quittung ReceiptName=Belegname -ProductSupplements=Ergänzungen von Produkten verwalten +ProductSupplements=Ergänzende Zusatzprodukte verwalten SupplementCategory=Ergänzungskategorie ColorTheme=Farbschema Colorful=Farbig HeadBar=Kopfleiste -SortProductField=Feld zum Sortieren von Produkten +SortProductField=Feld, nach dem Produkte sortiert werden Browser=Browser BrowserMethodDescription=Schneller und einfacher Belegdruck. Nur wenige Parameter zum Konfigurieren der Quittung. Drucken via Browser. TakeposConnectorMethodDescription=Externes Modul mit zusätzlichen Funktionen. Möglichkeit zum Drucken aus der Cloud. @@ -99,7 +99,7 @@ ByTerminal=über Terminal TakeposNumpadUsePaymentIcon=Verwenden Sie das Symbol anstelle des Textes auf den Zahlungsschaltflächen des Nummernblocks CashDeskRefNumberingModules=Nummerierungsmodul für POS-Verkäufe CashDeskGenericMaskCodes6 =  Das Tag
{TN} wird zum Hinzufügen der Terminalnummer verwendet -TakeposGroupSameProduct=Gruppieren Sie dieselben Produktlinien +TakeposGroupSameProduct=Einzelpositionen mit denselben Produkten zusammenfassen StartAParallelSale=Starten Sie einen neuen Parallelverkauf SaleStartedAt=Der Verkauf begann bei %s ControlCashOpening=Beim Öffnen der Kasse das Popup „Kasse kontrollieren“ anzeigen @@ -116,11 +116,11 @@ CustomerMenu=Kundenmenü ScanToMenu=Scannen Sie den QR-Code, um das Menü anzuzeigen ScanToOrder=Scannen Sie den QR-Code auf Bestellung Appearance=Aussehen -HideCategoryImages=Kategorie Bilder ausblenden +HideCategoryImages=Bilder für Kategorien ausblenden HideProductImages=Produktbilder ausblenden NumberOfLinesToShow=Anzahl der anzuzeigenden Bildzeilen DefineTablePlan=Tabellenplan definieren -GiftReceiptButton=Fügen Sie eine Schaltfläche "Gutschrift-Quittung" hinzu +GiftReceiptButton=Schaltfläche "Gutschrift-Quittung" hinzufügen GiftReceipt=Gutschrift-Quittung ModuleReceiptPrinterMustBeEnabled=Das Modul Belegdrucker muss zuerst aktiviert worden sein AllowDelayedPayment=Spätere Zahlung zulassen @@ -136,3 +136,10 @@ PrintWithoutDetails=Drucken ohne Details YearNotDefined=Jahr ist nicht definiert TakeposBarcodeRuleToInsertProduct=Barcode-Regel zum Einfügen von Produkten TakeposBarcodeRuleToInsertProductDesc=Regel zum Extrahieren der Produktreferenz + einer Menge aus einem gescannten Barcode.
Wenn leer (Standardwert), verwendet die Anwendung den vollständig gescannten Barcode, um das Produkt zu finden.

Wenn definiert, muss die Syntax lauten:
ref:NB+qu:NB+qd:NB+other:NB
wobei NB die Anzahl der Zeichen ist, die als Daten aus dem gescannten Barcode extrahiert werden, mit:
  • ref : Produkt-Referenz
  • qu : Menge, die beim Einfügen des Artikels gesetzt wird (Einheiten)
  • qd : Menge, die beim Einfügen des Artikels gesetzt wird (Dezimalstellen)
  • other : andere Zeichen
+AlreadyPrinted=Bereits gedruckt +HideCategories=Kategorien ausblenden +HideStockOnLine=Bestand einer Position ausblenden +ShowOnlyProductInStock=Lagerbestände der Produkte anzeigen +ShowCategoryDescription=Kategoriebeschreibung anzeigen +ShowProductReference=Ref.Nr. der Produkte anzeigen +UsePriceHT=Nettopreis und nicht Preis inkl. Steuern verwenden diff --git a/htdocs/langs/de_DE/errors.lang b/htdocs/langs/de_DE/errors.lang index 4e2848c6be9..f0dcb3381c3 100644 --- a/htdocs/langs/de_DE/errors.lang +++ b/htdocs/langs/de_DE/errors.lang @@ -59,7 +59,7 @@ ErrorFeatureNeedJavascript=Diese Funktion erfordert aktiviertes JavaScript. Sie ErrorTopMenuMustHaveAParentWithId0=Ein Menü vom Typ 'Top' kann kein Eltern-Menü sein. Setzen Sie 0 als Eltern-Menü oder wählen Sie ein Menü vom Typ 'Links'. ErrorLeftMenuMustHaveAParentId=Ein Menü vom Typ 'Links' erfordert einen Eltern-Menü ID. ErrorFileNotFound=Datei '%s' konnte nicht gefunden werden (Ungültiger Pfad, falsche Berechtigungen oder der Zugriff wurde durch safemode- oder openbasedir-Parameter eingeschränkt) -ErrorDirNotFound=Verzeichnis %s konnte nicht gefunden werden (Ungültiger Pfad, falsche Berechtigungen oder Zugriff durch safemode- oder openbasedir-Parameter eingeschränkte) +ErrorDirNotFound=Verzeichnis %s konnte nicht gefunden werden (Ungültiger Pfad, falsche Berechtigungen oder Zugriff durch safemode- oder openbasedir-Parameter eingeschränkt) ErrorFunctionNotAvailableInPHP=Die PHP-Funktion %s ist für diese Funktion erforderlich, in dieser PHP-Konfiguration jedoch nicht verfügbar. ErrorDirAlreadyExists=Ein Verzeichnis mit diesem Namen existiert bereits. ErrorFileAlreadyExists=Eine Datei mit diesem Namen existiert bereits. @@ -92,6 +92,7 @@ ErrorModuleRequireJavascript=Diese Funktion erfordert aktiviertes JavaScript. Ak ErrorPasswordsMustMatch=Die eingegebenen Passwörter müssen identisch sein. ErrorContactEMail=Ein technischer Fehler ist aufgetreten. Bitte kontaktieren Sie Ihren Administrator unter der folgenden E-Mail-Adresse %s und fügen Sie den Fehlercode %s in Ihrer Nachricht ein, oder (noch besser) fügen Sie einen Screenshot dieser Seite als Anhang bei. ErrorWrongValueForField=Feld %s (Wert '%s' passt nicht zur Regex-Regel %s) +ErrorHtmlInjectionForField=Feld %s : Der Wert '%s' enthält schädliche Daten, die nicht erlaubt sind ErrorFieldValueNotIn=Feld %s: '%s' ist kein Wert in Feld %s von %s ErrorFieldRefNotIn=Das Feld %s : ' %s ' ist keine %s Referenz ErrorsOnXLines=%s Fehler gefunden @@ -108,7 +109,7 @@ ErrorMaxNumberReachForThisMask=Maximale Anzahl für diese Maske erreicht ErrorCounterMustHaveMoreThan3Digits=Zähler muss mehr als 3 Stellen haben ErrorSelectAtLeastOne=Fehler, bitte mindestens einen Eintrag wählen. ErrorDeleteNotPossibleLineIsConsolidated=Löschen nicht möglich, da der Datensatz mit einer Banktransaktion verbunden ist. -ErrorProdIdAlreadyExist=%s wurde bereits einem Partner zugewiesen +ErrorProdIdAlreadyExist=%s wurde bereits einem Geschäftspartner zugewiesen ErrorFailedToSendPassword=Fehler beim Zusenden des Passworts ErrorFailedToLoadRSSFile=RSS-Feeds welche Fehler erhalten. Versuchen Sie die Konstante 'MAIN_SIMPLEXMLLOAD_DEBUG' hinzufügen, wenn die Fehlermeldungen nicht genügend Informationen enthält. ErrorForbidden=Zugriff verweigert.
Sie haben versucht eine Seite, Bereich oder Funktion aufzurufen die deaktiviert ist oder sie haben keine Berechtigung dazu. @@ -150,10 +151,10 @@ ErrorDateMustBeInFuture=Das Datum muss älter sein als heute ErrorPaymentModeDefinedToWithoutSetup=Eine Zahlungsart wurde auf Typ %s gesetzt, aber das Rechnungsmodul wurde noch nicht konfiguriert dies anzuzeigen. ErrorPHPNeedModule=Fehler, Ihr PHP muss das Modul %s installiert haben um diese Option zu benutzen. ErrorOpenIDSetupNotComplete=Sie haben im Dolibarr Konfigurationsfile eingestellt, dass die Anmeldung mit OpenID möglich ist, aber die URL zum OpenID Service ist noch nicht in %s definiert. -ErrorWarehouseMustDiffers=Quell- und Ziel-Lager müssen unterschiedlich sein +ErrorWarehouseMustDiffers=Ursprungs- und Ziel-Lager müssen unterschiedlich sein ErrorBadFormat=Falsches Format! ErrorMemberNotLinkedToAThirpartyLinkOrCreateFirst=Fehler: Dieses Mitglied ist noch nicht mit einem Partner verbunden. Verknüpfen Sie das Mitglied zuerst mit einem vorhandenen Partner oder legen Sie einen neuen an, bevor Sie ein Abonnement mit Rechnung erstellen. -ErrorThereIsSomeDeliveries=Fehler: Es sind noch Auslieferungen zu diesen Versand vorhanden. Löschen deshalb nicht möglich. +ErrorThereIsSomeDeliveries=Fehler: Es sind noch Lieferungen zu diesen Versand vorhanden. Löschen deshalb nicht möglich. ErrorCantDeletePaymentReconciliated=Eine Zahlung, deren Bank-Transaktion schon abgeglichen wurde, kann nicht gelöscht werden ErrorCantDeletePaymentSharedWithPayedInvoice=Eine Zahlung, die zu mindestens einer als bezahlt markierten Rechnung gehört, kann nicht entfernt werden ErrorPriceExpression1=Zur Konstanten '%s' kann nicht zugewiesen werden @@ -203,9 +204,9 @@ ErrorStockIsNotEnoughToAddProductOnShipment=Nicht genug Bestand von Produkt %s, ErrorStockIsNotEnoughToAddProductOnProposal=Nicht genug Bestand von Produkt %s, um es einem neuen Angebot zuzufügen. ErrorFailedToLoadLoginFileForMode=Konnte Loginschlüssel für Modul '%s' nicht ermitteln. ErrorModuleNotFound=Datei des Modul nicht gefunden. -ErrorFieldAccountNotDefinedForBankLine=Buchhaltungskonto nicht definiert für Quellzeile %s(%s) -ErrorFieldAccountNotDefinedForInvoiceLine=Buchhaltungskonto für Rechnung %s (%s) ist undefiniert -ErrorFieldAccountNotDefinedForLine=Buchhaltungskonto nicht definiert für Zeile (%s) +ErrorFieldAccountNotDefinedForBankLine=Buchungskonto nicht definiert für Quell-Position %s(%s) +ErrorFieldAccountNotDefinedForInvoiceLine=Buchungskonto für Rechnung %s (%s) ist undefiniert +ErrorFieldAccountNotDefinedForLine=Buchungskonto nicht definiert für Position (%s) ErrorBankStatementNameMustFollowRegex=Fehler - Name des Kontoauszugs muss dieser Syntax folgen: %s ErrorPhpMailDelivery=Vergewissern Sie sich, dass Sie nicht zu viele Adressaten nutzen und der Inhalt Ihrer Mail nicht nach Spam aussieht. Bitten Sie Ihren Administrator, die Firewall- und Server-Logs zu prüfen, um detailliertere Informationen zu bekommen. ErrorUserNotAssignedToTask=Benutzer muss der Aufgabe zugeteilt sein, um Zeiten erfassen zu können. @@ -285,8 +286,9 @@ ErrorPaymentInBothCurrency=Fehler, alle Beträge müssen in die gleiche Spalte e ErrorYouTryToPayInvoicesInACurrencyFromBankWithAnotherCurrency=Sie versuchen Rechnungen in der Währung %s von einem Konto mit der Währung %s zu bezahlen ErrorInvoiceLoadThirdParty=Das Geschäftspartner-Objekt für Rechnung „%s“ kann nicht geladen werden ErrorInvoiceLoadThirdPartyKey=Geschäftspartner-Schlüssel "%s" ist für Rechnung "%s" nicht vorhanden -ErrorDeleteLineNotAllowedByObjectStatus=Das Löschen einer Zeile ist aufgrund des tatsächlichen Objektstatus nicht zulässig +ErrorDeleteLineNotAllowedByObjectStatus=Das Löschen von Einzelpositionen ist aufgrund des aktuellen Objektstatus nicht zulässig ErrorAjaxRequestFailed=Anfrage fehlgeschlagen +ErrorThirpdartyOrMemberidIsMandatory=Geschäftspartner oder Mitglied ist für die Partnerschaft verpflichtend # Warnings WarningParamUploadMaxFileSizeHigherThanPostMaxSize=Ihr PHP Parameter upload_max_filesize (%s) ist größer als Parameter post_max_size (%s). Dies ist eine inkonsistente Einstellung. @@ -294,9 +296,9 @@ WarningPasswordSetWithNoAccount=Es wurde ein Passwort für dieses Mitglied verge WarningMandatorySetupNotComplete=Hier klicken, um obligatorische Einstellungen vorzunehmen WarningEnableYourModulesApplications=Hier klicken, um Module/Applikationen freizuschalten WarningSafeModeOnCheckExecDir=Achtung: Der PHP-Option safe_mode ist aktiviert, entsprechend müssen Befehle in einem mit safe_mode_exec_dir gekennzeichneten Verzeichnis ausgeführt werden. -WarningBookmarkAlreadyExists=Ein Favorit mit diesem Titel oder dieser Adresse existiert bereits. +WarningBookmarkAlreadyExists=Ein Favorit mit diesem Titel oder dieser Adresse (URL) existiert bereits. WarningPassIsEmpty=Warnung: Derzeit ist kein Datenbankpasswort gesetzt. Dies ist eine Sicherheitslücke. Konfigurieren Sie schnellstmöglich ein Passwort für den Datenbankzugriff und passen Sie Ihre conf.php entsprechend an. -WarningConfFileMustBeReadOnly=Achtung: Die Konfigurationsdatei (htdocs/conf/conf.php) kann von Ihrem Webserver überschrieben werden. Dies ist eine ernstzunehmende Sicherheitslücke. Ändern Sie den Zugriff schnellstmöglich auf reinen Lesezugriff. Wenn Sie Windows und das FAT-Format für Ihre Festplatte nutzen, seien Sie sich bitte bewusst dass dieses Format keine individuellen Dateiberechtigungen unterstützt und so auch nicht völlig sicher ist, +WarningConfFileMustBeReadOnly=Achtung: Die Konfigurationsdatei (htdocs/conf/conf.php) kann von Ihrem Webserver überschrieben werden. Dies ist eine ernstzunehmende Sicherheitslücke. Ändern Sie den Zugriff schnellstmöglich auf reinen Lesezugriff. Wenn Sie Windows und das FAT-Format für Ihre Festplatte nutzen, seien Sie sich bitte bewusst dass dieses Format keine individuellen Dateiberechtigungen unterstützt und so auch nicht völlig sicher ist. WarningsOnXLines=Warnhinweise in %s Quellzeilen WarningNoDocumentModelActivated=Für das Erstellen von Dokumenten ist keine Vorlage gewählt. Eine Standardvorlage wurde ausgewählt, bis Sie die Moduleinstellungen angepasst haben. WarningLockFileDoesNotExists=Achtung, nach Abschluss der Installation müssen Sie die Installations- und Migrationstools durch Hinzufügen der Datei install.lock im Verzeichnis %s deaktivieren. Die Nichterstellung dieser Datei stellt ein schwerwiegendes Sicherheitsrisiko dar. @@ -321,12 +323,8 @@ WarningCreateSubAccounts=Achtung, Sie können kein Unterkonto direkt erstellen. WarningAvailableOnlyForHTTPSServers=Nur verfügbar, wenn eine HTTPS-gesicherte Verbindung verwendet wird. WarningModuleXDisabledSoYouMayMissEventHere=Das Modul %s wurde nicht aktiviert. Sie können also eine Menge Veranstaltung hier verpassen. WarningPaypalPaymentNotCompatibleWithStrict=Der Wert 'Strict' führt dazu, dass die Online-Zahlungsfunktionen nicht richtig funktionieren. Verwenden Sie stattdessen 'Lax'. +WarningThemeForcedTo=Warnung, das Theme wurde durch die versteckte Konstante MAIN_FORCETHEME auf %s erzwungen -<<<<<<< HEAD -======= -<<<<<<< HEAD -<<<<<<< HEAD ->>>>>>> Branch '15.0' von git@github.com:Dolibarr/dolibarr.git # Validate RequireValidValue = Wert nicht gültig RequireAtLeastXString = Mindestlänge beträgt %s Zeichen @@ -347,12 +345,3 @@ BadSetupOfField = Fehler beim Setup des Feldes BadSetupOfFieldClassNotFoundForValidation = Fehler beim Setup des Feldes: Klasse für Validierung nicht gefunden BadSetupOfFieldFileNotFound = Fehler beim Setup des Feldes: einzubindende Datei nicht gefunden BadSetupOfFieldFetchNotCallable = Fehler beim Setup des Felds: Kann bei der Klasse nicht aufgerufen werden -<<<<<<< HEAD -======= -======= -======= ->>>>>>> Branch '15.0' von git@github.com:Dolibarr/dolibarr.git ->>>>>>> Branch '15.0' von git@github.com:Dolibarr/dolibarr.git -======= ->>>>>>> Branch '15.0' von git@github.com:Dolibarr/dolibarr.git ->>>>>>> Branch '15.0' von git@github.com:Dolibarr/dolibarr.git diff --git a/htdocs/langs/de_DE/eventorganization.lang b/htdocs/langs/de_DE/eventorganization.lang index 44f758a99b1..7e38eb07863 100644 --- a/htdocs/langs/de_DE/eventorganization.lang +++ b/htdocs/langs/de_DE/eventorganization.lang @@ -26,7 +26,7 @@ EventOrganizationDescriptionLong= Verwalten Sie die Organisation einer Veranstal EventOrganizationMenuLeft = Veranstaltungen EventOrganizationConferenceOrBoothMenuLeft = Konferenzbeitrag oder Stand -PaymentEvent=Zahlung einer Veranstaltung +PaymentEvent=Zahlung für eine Veranstaltung # # Admin page @@ -71,8 +71,8 @@ EventOrganizationEmailAskBooth = Anfrage für Stand EventOrganizationEmailBoothPayment = Bezahlung Ihres Standes EventOrganizationEmailRegistrationPayment = Anmeldung zu einer Veranstaltung EventOrganizationMassEmailAttendees = Kommunikation mit den Teilnehmern -EventOrganizationMassEmailSpeakers = Kommunikation mit den Sprechern -ToSpeakers=An Redner +EventOrganizationMassEmailSpeakers = Kommunikation mit den Referenten +ToSpeakers=An Referenten # # Event @@ -81,7 +81,7 @@ AllowUnknownPeopleSuggestConf=Personen erlauben, Konferenzbeiträge vorzuschlage AllowUnknownPeopleSuggestConfHelp=Unbekannten Personen erlauben, einen Konferenzbeitrag vorzuschlagen, den sie halten möchten AllowUnknownPeopleSuggestBooth=Personen erlauben, sich für einen Stand zu bewerben AllowUnknownPeopleSuggestBoothHelp=Unbekannten Personen erlauben, sich für einen Stand zu bewerben -PriceOfRegistration=Buchungskosten für die Teilnahme +PriceOfRegistration=Kosten für die Teilnahme PriceOfRegistrationHelp=Preis für die Anmeldung/Teilnahme an der Veranstaltung PriceOfBooth=Buchungskosten für einen Stand PriceOfBoothHelp=Buchungskosten für einen Stand @@ -90,7 +90,7 @@ ConferenceOrBoothInformation=Informationen zu Konferenzbeitrag oder Stand Attendees=Teilnehmer ListOfAttendeesOfEvent=Teilnehmerliste des Veranstaltungsprojekts DownloadICSLink = ICS-Link herunterladen -EVENTORGANIZATION_SECUREKEY = Seed, um den Schlüssel für die öffentliche Registrierungsseite zu sichern, die zum Vorschlagen eines Vortrags dient +EVENTORGANIZATION_SECUREKEY = Seed, um den Schlüssel für die öffentliche Registrierungsseite zu sichern, die zum Vorschlagen eines Konferenzbeitrags dient SERVICE_BOOTH_LOCATION = Leistung, die für die Rechnungsposition über einen Stand verwendet wird SERVICE_CONFERENCE_ATTENDEE_SUBSCRIPTION = Leistung, die für die Rechnungsposition über eine Teilnahmebuchung einer Veranstaltung verwendet wird NbVotes=Anzahl der Stimmen @@ -120,7 +120,7 @@ ViewAndVote = Vorgeschlagene Veranstaltungen ansehen und abstimmen PublicAttendeeSubscriptionGlobalPage = Öffentlicher Link für die Anmeldung zur Veranstaltung PublicAttendeeSubscriptionPage = Öffentlicher Link für die Anmeldung nur zu dieser Veranstaltung MissingOrBadSecureKey = Der Sicherheitsschlüssel ist ungültig oder fehlt -EvntOrgWelcomeMessage = Mit diesem Formular können Sie sich als neuer Teilnehmer für die Veranstaltung anmelden: %s +EvntOrgWelcomeMessage = Mit diesem Formular können Sie sich als neuer Teilnehmer für die Veranstaltung anmelden: %s EvntOrgDuration = Diese Konferenz beginnt am %s und endet am %s. ConferenceAttendeeFee = Konferenzteilnehmergebühr für die Veranstaltung: '%s' vom %s bis %s. BoothLocationFee = Stand für die Veranstaltung: '%s' vom %s bis %s @@ -160,10 +160,10 @@ Attendee = Teilnehmer PaymentConferenceAttendee = Zahlung für Konferenzteilnehmer PaymentBoothLocation = Zahlung für einen Stand DeleteConferenceOrBoothAttendee=Teilnehmer entfernen -RegistrationAndPaymentWereAlreadyRecorder=Für die E-Mail-Adresse %s wurden bereits eine Anmeldung und eine Zahlung erfasst +RegistrationAndPaymentWereAlreadyRecorder=Für die E-Mail-Adresse %s wurden bereits eine Anmeldung und eine Zahlung erfasst EmailAttendee=Teilnehmer-E-Mail EmailCompanyForInvoice=Firmen-E-Mail (für Rechnung, falls abweichend von der Teilnehmer-E-Mail) ErrorSeveralCompaniesWithEmailContactUs=Es wurden mehrere Unternehmen mit dieser E-Mail-Adresse gefunden, sodass wir Ihre Registrierung nicht automatisch freigeben können. Bitte kontaktieren Sie uns unter %s für eine manuelle Freigabe -ErrorSeveralCompaniesWithNameContactUs=Es wurden mehrere Unternehmen mit diesem Namen gefunden, sodass wir Ihre Registrierung nicht automatisch freigeben können. Bitte kontaktieren Sie uns unter %s für eine manuelle Freigabe +ErrorSeveralCompaniesWithNameContactUs=Es wurden mehrere Unternehmen mit diesem Namen gefunden, so dass wir Ihre Registrierung nicht automatisch freigeben können. Bitte kontaktieren Sie uns unter %s für eine manuelle Freigabe NoPublicActionsAllowedForThisEvent=Für diese Veranstaltung sind keine Aktionen für die Öffentlichkeit zugänglich MaxNbOfAttendees=Maximale Teilnehmerzahl diff --git a/htdocs/langs/de_DE/holiday.lang b/htdocs/langs/de_DE/holiday.lang index 035056fc08b..f47964a2108 100644 --- a/htdocs/langs/de_DE/holiday.lang +++ b/htdocs/langs/de_DE/holiday.lang @@ -4,6 +4,7 @@ Holidays=Urlaub CPTitreMenu=Urlaub MenuReportMonth=Monatsaufstellung MenuAddCP=Neuer Urlaubsantrag +MenuCollectiveAddCP=Neuer Sammelurlaubsantrag NotActiveModCP=Sie müssen das Modul Leave aktivieren, um diese Seite anzuzeigen. AddCP=Neuer Urlaubsantrag DateDebCP=Urlaubsbeginn @@ -79,6 +80,8 @@ MotifCP=Grund UserCP=Mitarbeiter ErrorAddEventToUserCP=Ein Fehler ist beim Erstellen des Sonderurlaubs aufgetreten. AddEventToUserOkCP=Das Hinzufügen des Sonderurlaubs wurde abgeschlossen. +ErrorFieldRequiredUserOrGroup=Das Feld „Gruppe“ oder das Feld „Benutzer“ muss ausgefüllt werden +fusionGroupsUsers=Das Gruppenfeld und das Benutzerfeld werden zusammengeführt MenuLogCP=Zeige Änderungsprotokoll LogCP=Protokoll aller Aktualisierungen von "Urlaubsübersicht" ActionByCP=Geändert von @@ -86,6 +89,13 @@ UserUpdateCP=Aktualisiert für PrevSoldeCP=Vorheriger Saldo NewSoldeCP=Neuer Saldo alreadyCPexist=Für den gewählten Zeitraum wurde bereits ein Urlaubsantrag erstellt. +UseralreadyCPexist=Für %s wurde in diesem Zeitraum bereits ein Urlaubsantrag gestellt. +groups=Gruppen +users=Benutzer +AutoSendMail=Automatischer Versand +NewHolidayForGroup=Neuer Sammelurlaubsantrag +SendRequestCollectiveCP=Sammelurlaubsantrag senden +AutoValidationOnCreate=Automatische Freigabe FirstDayOfHoliday=Erster Tag des Urlaubsantrags LastDayOfHoliday=Letzter Tag des Urlaubsantrags BoxTitleLastLeaveRequests=Zuletzt bearbeitete Urlaubsanträge (maximal %s) @@ -95,7 +105,7 @@ HolidaysCancelation=Urlaubsantrag stornieren EmployeeLastname=Mitarbeiter Nachname EmployeeFirstname=Mitarbeiter Vorname TypeWasDisabledOrRemoved=Urlaubstyp (ID %s) war deaktiviert oder entfernt -LastHolidays=Neuste %s Urlaubsanträge +LastHolidays=Letzte %s Urlaubsanträge AllHolidays=Alle Urlaubsanträge HalfDay=Halber Tag NotTheAssignedApprover=Sie sind nicht der zugeordnete Genehmiger diff --git a/htdocs/langs/de_DE/hrm.lang b/htdocs/langs/de_DE/hrm.lang index df0bf08c2b8..fb647782437 100644 --- a/htdocs/langs/de_DE/hrm.lang +++ b/htdocs/langs/de_DE/hrm.lang @@ -12,12 +12,12 @@ OpenEtablishment=Einrichtung öffnen CloseEtablishment=Einrichtung schliessen # Dictionary DictionaryPublicHolidays=Urlaub - Feiertage -DictionaryDepartment=PV - Abteilungsliste +DictionaryDepartment=HRM - Organisationseinheit DictionaryFunction=HRM - Stellenangebote # Module Employees=Mitarbeiter Employee=Mitarbeiter/in -NewEmployee=neuer Mitarbeiter +NewEmployee=Neuer Mitarbeiter ListOfEmployees=Liste der Mitarbeiter HrmSetup=Personal Modul Einstellungen SkillsManagement=Kompetenzmanagement @@ -46,7 +46,7 @@ NewEval=Neue Bewertung ValidateEvaluation=Bewertung freigeben ConfirmValidateEvaluation=Möchten Sie diese Bewertung mit der Referenz %s wirklich freigeben? EvaluationCard=Bewertungskarte -RequiredRank=Erforderliche Qualifikationsstufe für diesen Job +RequiredRank=Erforderliche Qualifikationsstufe für diese Position EmployeeRank=Qualifikationsstufe des Mitarbeiters für diese Kompetenz EmployeePosition=Mitarbeiterposition EmployeePositions=Stellenübersicht @@ -65,14 +65,14 @@ MaxLevelLowerThanShort=Mitarbeiterniveau niedriger als in der Anforderung SkillNotAcquired=Kompetenz wurde nicht von allen Benutzern erworben, aber im Vergleiche angefragt legend=Legende TypeSkill=Art der Kompetenz -AddSkill=Kompetenzen zum Job hinzufügen -RequiredSkills=Erforderliche Kompetenzen für diesen Job -UserRank=Qualifikationsstufe des Nutzers +AddSkill=Kompetenzen zur Position hinzufügen +RequiredSkills=Erforderliche Kompetenzen für diese Position +UserRank=Qualifikationsstufe des Benutzers SkillList=Liste der Kompetenzen SaveRank=Qualifikationsstufe speichern -knowHow=Fachwissen -HowToBe=Wie ist es -knowledge=Wissen +TypeKnowHow=Fachwissen +TypeHowToBe=Wie ist es +TypeKnowledge=Wissen AbandonmentComment=Kommentar zur Beendigung DateLastEval=Datum letzte Bewertung NoEval=Keine Bewertung für diesen Mitarbeiter vorhanden @@ -88,3 +88,4 @@ DeleteSkill = Kompetenz entfernt SkillsExtraFields=Ergänzende Attribute (Kompetenzen) JobsExtraFields=Ergänzende Attribute (Mitarbeiter) EvaluationsExtraFields=Ergänzende Attribute (Beurteilungen) +NeedBusinessTravels=Geschäftsreisen erforderlich diff --git a/htdocs/langs/de_DE/install.lang b/htdocs/langs/de_DE/install.lang index 8182998d68c..1f815ab5a87 100644 --- a/htdocs/langs/de_DE/install.lang +++ b/htdocs/langs/de_DE/install.lang @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Sie haben einen falschen Wert für den Parameter '%s ErrorFailedToCreateDatabase=Fehler beim Erstellen der Datenbank '%s'. ErrorFailedToConnectToDatabase=Es konnte keine Verbindung zur Datenbank ' %s'. ErrorDatabaseVersionTooLow=Die Version ihrer Datenbank (%s) ist veraltet. Sie benötigen mindestens Version %s . -ErrorPHPVersionTooLow=Ihre PHP-Version ist veraltet. Sie benötigen mindestens Version %s . +ErrorPHPVersionTooLow=PHP-Version zu alt. Version %s oder höher ist erforderlich. +ErrorPHPVersionTooHigh=PHP-Version zu hoch. Version %s oder niedriger ist erforderlich. ErrorConnectedButDatabaseNotFound=Verbindung zum Server erfolgreich, jedoch konnte Datenbank '%s' nicht gefunden werden. ErrorDatabaseAlreadyExists=Eine Datenbank mit dem Namen '%s' existiert bereits. +ErrorNoMigrationFilesFoundForParameters=Für die ausgewählten Versionen wurde keine Migrationsdatei gefunden IfDatabaseNotExistsGoBackAndUncheckCreate=Sollte die Datenbank noch nicht existieren, gehen Sie bitte zurück und aktivieren Sie das Kontrollkästchen "Datenbank erstellen". IfDatabaseExistsGoBackAndCheckCreate=Sollte die Datenbank bereits existieren, gehen Sie bitte zurück und deaktivieren Sie das Kontrollkästchen "Datenbank erstellen". WarningBrowserTooOld=Ihre Browser-Version ist veraltet. Es wird dringend empfohlen auf eine aktuelle Version von Firefox, Chrome oder Opera upzugraden. diff --git a/htdocs/langs/de_DE/interventions.lang b/htdocs/langs/de_DE/interventions.lang index cd4ae3993c3..74d8993e3eb 100644 --- a/htdocs/langs/de_DE/interventions.lang +++ b/htdocs/langs/de_DE/interventions.lang @@ -42,15 +42,15 @@ DraftFichinter=Serviceaufträge im Entwurf LastModifiedInterventions=Zuletzt bearbeitete Serviceaufträge (maximal %s) FichinterToProcess=Zu bearbeitende Serviceaufträge TypeContact_fichinter_external_CUSTOMER=Kundenkontakt zur Weiterverfolgung -PrintProductsOnFichinter=Auch Produktzeilen (nicht nur Leistungen) auf dem Serviceauftragsdokument drucken +PrintProductsOnFichinter=Auch Positionen vom Typ "Produkt" (nicht nur Leistungen) auf dem Serviceauftrag ausgeben PrintProductsOnFichinterDetails=Aus Kundenaufträgen erstellte Serviceaufträge UseServicesDurationOnFichinter=Dauer der Leistung im Serviceauftrag aus dem Auftrag übernehmen -UseDurationOnFichinter=Feld 'Dauer' für Einsatzeinträge nicht anzeigen +UseDurationOnFichinter=Feld 'Dauer' für Einträge im Serviceauftrag nicht anzeigen UseDateWithoutHourOnFichinter=Stunden- und Minutenfelder beim Datum von Einsatzeinträgen nicht anzeigen InterventionStatistics=Statistik Serviceaufträge NbOfinterventions=Anzahl Dokumente für Serviceaufträge NumberOfInterventionsByMonth=Anzahl Dokumente für Serviceaufträge pro Monat (Freigabedatum) -AmountOfInteventionNotIncludedByDefault=Die Anzahl an Einsätzen ist normalerweise nicht im Umsatz enthalten. (In den meisten Fällen werden sie Einsatzstunden separat erfasst) Setzen Sie die globale Option PROJECT_INCLUDE_INTERVENTION_AMOUNT_IN_PROFIT auf 1 damit diese berücksichtigt werden. +AmountOfInteventionNotIncludedByDefault=Der Beitrag der Einsätze ist normalerweise nicht im Umsatz enthalten. (In den meisten Fällen werden die Einsatzstunden separat erfasst). Die globale Option PROJECT_INCLUDE_INTERVENTION_AMOUNT_IN_PROFIT auf 1 setzen, damit diese berücksichtigt werden. InterId=Serviceauftrag ID InterRef=Serviceauftrag Ref. InterDateCreation=Erstellungsdatum Serviceauftrag @@ -64,7 +64,7 @@ InterLineDuration=Serviceauftragsposition Dauer InterLineDesc=Serviceauftragsposition Beschreibung RepeatableIntervention=Vorlage für Serviceauftrag ToCreateAPredefinedIntervention=Für einen vordefinierten oder wiederkehrenden Serviceauftrag erstellen Sie zunächst einen gemeinsamen Serviceauftrag und konvertieren diesen anschließend in eine Vorlage -ConfirmReopenIntervention=Möchten Sie den Serviceauftrag %s wieder öffnen? +ConfirmReopenIntervention=Möchten Sie den Serviceauftrag %s wieder öffnen? GenerateInter=Serviceauftrag erstellen FichinterNoContractLinked=Der Serviceauftrag %s wurde ohne verknüpften Vertrag erstellt. ErrorFicheinterCompanyDoesNotExist=Unternehmen existiert nicht. Serviceauftrag wurde nicht erstellt. diff --git a/htdocs/langs/de_DE/languages.lang b/htdocs/langs/de_DE/languages.lang index fc8916fc331..86cd6d0686a 100644 --- a/htdocs/langs/de_DE/languages.lang +++ b/htdocs/langs/de_DE/languages.lang @@ -13,6 +13,7 @@ Language_az_AZ=Aserbaidschanisch Language_bn_BD=Bengali Language_bn_IN=Bengali (Indien) Language_bg_BG=Bulgarisch +Language_bo_CN=Tibetisch Language_bs_BA=Bosnisch Language_ca_ES=Katalanisch Language_cs_CZ=Tschechisch @@ -39,6 +40,7 @@ Language_es_AR=Spanisch (Argentinien) Language_es_BO=Spanisch (Bolivien) Language_es_CL=Spanisch (Chile) Language_es_CO=Spanisch (Kolumbien) +Language_es_CR=Spanisch (Costa Rica) Language_es_DO=Spanisch (Dominikanische Republik) Language_es_EC=Spanish (Ecuador) Language_es_GT=Spanisch (Guatemala) @@ -93,6 +95,7 @@ Language_nl_BE=Niederländisch (Belgien) Language_nl_NL=Niederländisch Language_pl_PL=Polnisch Language_pt_AO=Portugiesisch (Angola) +Language_pt_MZ=Portugiesisch (Mosambik) Language_pt_BR=Portugiesisch (Brasilien) Language_pt_PT=Portugiesisch (Portugal) Language_ro_MD=Rumänisch (Moldavien) diff --git a/htdocs/langs/de_DE/mails.lang b/htdocs/langs/de_DE/mails.lang index 3db55a432a3..2ecaed7fd36 100644 --- a/htdocs/langs/de_DE/mails.lang +++ b/htdocs/langs/de_DE/mails.lang @@ -43,7 +43,7 @@ MailSuccessfulySent=E-Mail von %s an %s erfolgreich versendet MailingSuccessfullyValidated=E-Mail erfolgreich überprüft MailUnsubcribe=Abmelden MailingStatusNotContact=nicht mehr kontaktieren -MailingStatusReadAndUnsubscribe=nicht mehr kontaktieren +MailingStatusReadAndUnsubscribe=Nicht mehr kontaktieren (gelesen und abgemeldet) ErrorMailRecipientIsEmpty=Das Empfängerfeld ist leer WarningNoEMailsAdded=Keine neuen E-Mail-Adressen für das Hinzufügen zur Empfängerliste ConfirmValidMailing=Möchten Sie diese E-Mail-Kampagne wirklich freigeben? @@ -67,7 +67,7 @@ CloneReceivers=Empfängerliste duplizieren DateLastSend=Datum des letzten Versands DateSending=Versanddatum SentTo=Versendet an %s -MailingStatusRead=gelesen +MailingStatusRead=Gelesen YourMailUnsubcribeOK=Die E-Mail-Adresse %s wurde erfolgreich aus der Mailing-Liste ausgetragen. ActivateCheckReadKey=Schlüssel um die URL für die Funktion der versteckten Lesebestätigung und den "Abmelden"-Link zu generieren EMailSentToNRecipients=E-Mail an %s Empfänger gesendet @@ -128,7 +128,7 @@ NoEmailSentBadSenderOrRecipientEmail=Kein E-Mail gesendet. Ungültige Absender- # Module Notifications Notifications=Benachrichtigungen NotificationsAuto=E-Mail-Benachrichtigungen -NoNotificationsWillBeSent=Für diesen Ereignistyp und dieses Unternehmen sind keine automatischen E-Mail-Benachrichtigungen geplant +NoNotificationsWillBeSent=Für diesen Ereignistyp und dieses Unternehmen sind keine automatischen E-Mail-Benachrichtigungen aktiviert. ANotificationsWillBeSent=1 automatische Benachrichtigung wird per E-Mail gesendet SomeNotificationsWillBeSent=%s automatische Benachrichtigungen werden per E-Mail gesendet AddNewNotification=Abonnieren Sie eine neue automatische E-Mail-Benachrichtigung @@ -178,3 +178,4 @@ IsAnAnswer=Ist eine Antwort auf eine Initial-E-Mail RecordCreatedByEmailCollector=Datensatz, der vom E-Mail-Sammler %s aus der E-Mail %s erstellt wurde DefaultBlacklistMailingStatus=Standardwert für Feld '%s' beim Anlegen eines neuen Kontakts DefaultStatusEmptyMandatory=Leer aber erforderlich +WarningLimitSendByDay=WARNUNG: Die Konfiguration oder der Vertrag Ihrer Instanz begrenzt Ihre Anzahl von E-Mails pro Tag auf %s . Der Versuch mehr zu senden kann dazu führen, dass Ihre Instanz langsamer wird oder ausgesetzt wird. Bitte wenden Sie sich an Ihren Support, wenn Sie ein höheres Kontingent benötigen. diff --git a/htdocs/langs/de_DE/main.lang b/htdocs/langs/de_DE/main.lang index 6cedc718087..83a024ef022 100644 --- a/htdocs/langs/de_DE/main.lang +++ b/htdocs/langs/de_DE/main.lang @@ -201,7 +201,7 @@ Disapprove=Abgelehnt ReOpen=Wiedereröffnen Upload=Upload ToLink=Link -Select=Wählen Sie +Select=Auswählen SelectAll=Alle wählen Choose=Wählen Resize=Skalieren @@ -236,7 +236,7 @@ MultiLanguage=Mehrsprachig Note=Hinweis Title=Bezeichnung Label=Bezeichnung -RefOrLabel=Nr. oder Bezeichnung +RefOrLabel=Ref. oder Bezeichnung Info=Protokoll Family=Kategorie/Gruppe Description=Beschreibung @@ -281,7 +281,7 @@ DateModification=Änderungsdatum DateModificationShort=Änderungsdatum IPModification=Änderungs-IP DateLastModification=Datum letzte Änderung -DateValidation=Freigabedatum +DateValidation=Festschreibungsdatum DateSigning=Unterzeichnungsdatum DateClosing=Schließungsdatum DateDue=Fälligkeitsdatum @@ -293,7 +293,7 @@ DateLimit=Frist DateRequest=Anfragedatum DateProcess=Verarbeite Datum DateBuild=Datum der Berichterstellung -DatePayment=Zahlungsziel +DatePayment=Zahlungsdatum DateApprove=Genehmigungsdatum DateApprove2=Genehmigungsdatum (zweite Genehmigung) RegistrationDate=Registrierungsdatum @@ -345,7 +345,7 @@ KiloBytes=Kilobyte MegaBytes=Megabyte GigaBytes=Gigabyte TeraBytes=Terabyte -UserAuthor=Angelegt von +UserAuthor=Erstellt durch UserModif=Geändert von b=b. Kb=Kb @@ -364,9 +364,9 @@ UnitPrice=Stückpreis UnitPriceHT=Stückpreis (netto) UnitPriceHTCurrency=Stückpreis (netto) (Währung) UnitPriceTTC=Stückpreis (brutto) -PriceU=Stückpr. -PriceUHT=Stückpr. (netto) -PriceUHTCurrency=Stückpr. (netto) (Währung) +PriceU=Einzelpr. +PriceUHT=Einzelpr. (netto) +PriceUHTCurrency=Einzelpr. (netto) (Währung) PriceUTTC=Einzelpr. (inkl. St.) Amount=Betrag AmountInvoice=Rechnungsbetrag @@ -455,7 +455,7 @@ OtherStatistics=Weitere Statistiken Status=Status Favorite=Favorit ShortInfo=Info. -Ref=Ref. +Ref=Ref.Nr. ExternalRef=Externe-ID RefSupplier=Lieferanten-Zeichen RefPayment=Zahlungsref.-Nr. @@ -474,8 +474,8 @@ LatestLinkedEvents=Zuletzt verknüpfte Ereignisse (maximal %s) CompanyFoundation=Firma oder Institution Accountant=Buchhalter ContactsForCompany=Ansprechpartner/Adressen dieses Partners -ContactsAddressesForCompany=Ansprechpartner / Adressen zu diesem Partner -AddressesForCompany=Anschriften zu diesem Partner +ContactsAddressesForCompany=Ansprechpartner/Adressen zu diesem Geschäftspartner +AddressesForCompany=Anschriften dieses Geschäftspartners ActionsOnCompany=Ereignisse zu diesem Geschäftspartner ActionsOnContact=Termine / Ereignisse für diesen Kontakt ActionsOnContract=Ereignisse zu diesem Kontakt @@ -506,11 +506,11 @@ Categories=Kategorien Category=Suchwort/Kategorie By=Durch From=Von -FromDate=von +FromDate=Von FromLocation=von to=An To=An -ToDate=An +ToDate=bis ToLocation=An at=beim and=und @@ -534,7 +534,7 @@ Draft=Entwurf Drafts=Entwürfe StatusInterInvoiced=Berechnet Validated=Freigegeben -ValidatedToProduce=Validiert (zu produzieren) +ValidatedToProduce=Freigegeben (zu produzieren) Opened=Offen OpenAll=Öffnen (Alle) ClosedAll=Schließen (Alle) @@ -548,7 +548,7 @@ Received=Erhalten Paid=Bezahlt Topic=Betreff ByCompanies=Nach Geschäftspartnern -ByUsers=Durch Benutzer +ByUsers=Nach Benutzern Links=Links Link=Link Rejects=Ablehnungen @@ -643,7 +643,7 @@ Example=Beispiel Examples=Beispiele NoExample=Kein Beispiel FindBug=Fehler melden -NbOfThirdParties=Anzahl der Partner +NbOfThirdParties=Anzahl der Geschäftspartner NbOfLines=Anzahl der Positionen NbOfObjects=Anzahl der Objekte NbOfObjectReferers=Anzahl der verknüpften Einträge @@ -682,7 +682,7 @@ CloseWindow=Fenster schließen Response=Antwort Priority=Priorität SendByMail=Per E-Mail versenden -MailSentBy=E-Mail Absender +MailSentBy=E-Mail gesendet von NotSent=nicht gesendet TextUsedInTheMessageBody=E-Mail Text SendAcknowledgementByMail=Bestätigungsmail senden @@ -710,8 +710,9 @@ RecordsGenerated=%s Datensätze generiert AutomaticCode=Automatischer Code FeatureDisabled=Funktion deaktiviert MoveBox=Widget verschieben -Offered=angeboten +Offered=Option NotEnoughPermissions=Ihre Berechtigungen reichen hierfür nicht aus +UserNotInHierachy=Diese Aktion ist den übergeordneten Mitarbeitern dieses Benutzers vorbehalten SessionName=Sitzungsname Method=Methode Receive=Erhalten @@ -763,7 +764,7 @@ FreeLineOfType=Freitextelement, Typ: CloneMainAttributes=Objekt mit Haupteigenschaften duplizieren ReGeneratePDF=PDF neu erstellen PDFMerge=PDFs verbinden -Merge=Verbinden +Merge=Zusammenführen DocumentModelStandardPDF=Standard PDF Vorlage PrintContentArea=Zeige Druckansicht für Seiteninhalt MenuManager=Menüverwaltung @@ -801,6 +802,7 @@ URLPhoto=URL für Foto/Bild SetLinkToAnotherThirdParty=Link zu einem anderen Geschäftspartner LinkTo=Link zu LinkToProposal=Link zu Angebot +LinkToExpedition= Link zur Sendung LinkToOrder=Link zur Bestellung LinkToInvoice=Link zur Rechnung LinkToTemplateInvoice=Link zur Rechnungsvorlage @@ -861,7 +863,7 @@ ShowIntervention=Zeige Serviceauftrag ShowContract=Zeige Vertrag GoIntoSetupToChangeLogo=Gehen Sie zu Start - Einstellungen - Firma/Stiftung um das Logo zu ändern oder gehen Sie in Start -> Einstellungen -> Anzeige um es zu verstecken. Deny=ablehnen -Denied=abgelehnt +Denied=Abgelehnt ListOf=Liste von %s ListOfTemplates=Liste der Vorlagen Gender=Geschlecht @@ -951,8 +953,8 @@ NewLeadOrProject=Neues Projekt / Neuer Lead Rights=Berechtigungen LineNb=Zeilennummer IncotermLabel=Incoterms -TabLetteringCustomer=Kundenbeschriftung -TabLetteringSupplier=Lieferantenbeschriftung +TabLetteringCustomer=Kontenabgleich Kunden +TabLetteringSupplier=Kontenabgleich Lieferanten Monday=Montag Tuesday=Dienstag Wednesday=Mittwoch @@ -1014,7 +1016,7 @@ million=Million billion=Milliarde trillion=Billion quadrillion=Billiarde -SelectMailModel=Wähle E-Mail-Vorlage +SelectMailModel=E-Mail-Vorlage wählen SetRef=Set Ref Select2ResultFoundUseArrows=Einige Ergebnisse gefunden. Nutzen Sie die Pfeiltasten um auszuwählen. Select2NotFound=Kein Ergebnis gefunden @@ -1029,7 +1031,7 @@ SearchIntoContacts=Kontakte SearchIntoMembers=Mitglieder SearchIntoUsers=Benutzer SearchIntoProductsOrServices=Produkte oder Leistungen -SearchIntoBatch=Charge / Seriennr. +SearchIntoBatch=Charge/Seriennr. SearchIntoProjects=Projekte SearchIntoMO=Fertigungsaufträge SearchIntoTasks=Aufgaben @@ -1084,7 +1086,7 @@ ToClose=Zu schließen ToRefuse=Ablehnen ToProcess=Zu bearbeiten ToApprove=Zu genehmigen -GlobalOpenedElemView=Globale Ansicht +GlobalOpenedElemView=Globaler Status NoArticlesFoundForTheKeyword=Kein Artikel zu Schlüssselwort gefunden '%s' NoArticlesFoundForTheCategory=Kein Artikel für Kategorie gefunden ToAcceptRefuse=Zu akzeptieren | abzulehnen @@ -1161,7 +1163,7 @@ ConfirmMassLeaveApproval=Bestätigung der Massen-Urlaubsgenehmigung RecordAproved=Datensatz freigegeben RecordsApproved=%s Datensatz(e) freigegeben Properties=Eigenschaften -hasBeenValidated=%s wurde validiert +hasBeenValidated=%s wurde freigegeben ClientTZ=Zeitzone Kunde (Benutzer) NotClosedYet=Noch nicht geschlossen ClearSignature=Unterschrift löschen @@ -1177,3 +1179,4 @@ CommercialAffected=Betroffene Vertriebsmitarbeiter YourMessage=Ihre Nachricht YourMessageHasBeenReceived=Ihre Nachricht wurde erfasst. Wir werden Ihnen so schnell wie möglich antworten. UrlToCheck=Zu überprüfende URL +Automation=Automatisierung diff --git a/htdocs/langs/de_DE/members.lang b/htdocs/langs/de_DE/members.lang index 4689999d5d5..4eede376c62 100644 --- a/htdocs/langs/de_DE/members.lang +++ b/htdocs/langs/de_DE/members.lang @@ -35,15 +35,16 @@ DateEndSubscription=Enddatum der Mitgliedschaft EndSubscription=Ende der Mitgliedschaft SubscriptionId=Beitrags-ID WithoutSubscription=Ohne Mitgliedsbeitrag -MemberId=Mitglied-ID +MemberId=Mitglieds-Id +MemberRef=Mitglieds-Ref. NewMember=Neues Mitglied -MemberType=Mitgliedsart -MemberTypeId=Mitgliedsart-ID -MemberTypeLabel=Bezeichnung der Mitgliedsart -MembersTypes=Mitgliedsarten +MemberType=Mitgliedschaftstyp +MemberTypeId=Mitgliedschaftstyp-ID +MemberTypeLabel=Bezeichnung des Mitgliedschaftstyps +MembersTypes=Mitgliedschaftstypen MemberStatusDraft=Entwurf (muss noch überprüft werden) MemberStatusDraftShort=Entwurf -MemberStatusActive=Validiert (warten auf Beitragszahlung) +MemberStatusActive=Freigegeben (warten auf Beitragszahlung) MemberStatusActiveShort=Bestätigt MemberStatusActiveLate=Mitgliedsbeitrag fällig MemberStatusActiveLateShort=Abgelaufen @@ -56,29 +57,35 @@ MemberStatusResiliatedShort=Deaktiviert MembersStatusToValid=Freizugebende Mitglieder MembersStatusExcluded=Ausgeschlossene Mitglieder MembersStatusResiliated=Deaktivierte Mitglieder -MemberStatusNoSubscription=Validiert (kein Mitgliedsbeitrag) +MemberStatusNoSubscription=Freigegeben (kein Mitgliedsbeitrag erforderlich) MemberStatusNoSubscriptionShort=Freigegeben SubscriptionNotNeeded=Kein Mitgliedsbeitrag erforderlich NewCotisation=Neuer Beitrag PaymentSubscription=Neue Beitragszahlung SubscriptionEndDate=Ablaufdatum Beitragszahlung -MembersTypeSetup=Mitgliedsarten einrichten -MemberTypeModified=Mitgliedstyp geändert -DeleteAMemberType=Löschen Sie einen Mitgliedstyp -ConfirmDeleteMemberType=Möchten Sie diesen Mitgliedstyp wirklich löschen? -MemberTypeDeleted=Mitgliedstyp gelöscht -MemberTypeCanNotBeDeleted=Mitgliedstyp kann nicht gelöscht werden -NewSubscription=Neuer Beitrag +MembersTypeSetup=Mitgliedschaftstypen einrichten +MemberTypeModified=Mitgliedschaftstyp geändert +DeleteAMemberType=Mitgliedschaftstyp löschen +ConfirmDeleteMemberType=Möchten Sie diesen Mitgliedschaftstyp wirklich löschen? +MemberTypeDeleted=Mitgliedschaftstyp gelöscht +MemberTypeCanNotBeDeleted=Mitgliedschaftstyp kann nicht gelöscht werden +NewSubscription=Neuer Mitgliedsbeitrag NewSubscriptionDesc=Hier können Sie Ihre Mitgliedschaft beantragen und den Beitrag als neues Mitglied festlegen.\nWenn Sie bereits Mitglied sind und eine Beitragszahlung erneuern möchten, kontaktieren Sie uns bitte per E-Mail %s. Subscription=Mitgliedsbeitrag +AnyAmountWithAdvisedAmount=Jeder Betrag mit einem empfohlenen Betrag von %s %s +AnyAmountWithoutAdvisedAmount=Jeder Betrag +CanEditAmountShort=Jeder Betrag +CanEditAmountShortForValues=empfohlen, jeder Betrag +MembershipDuration=Dauer +GetMembershipButtonLabel=Mitgliedschaft erhalten Subscriptions=Mitgliedsbeiträge SubscriptionLate=Verspätet -SubscriptionNotReceived=Beitragszahlung nie erhalten -ListOfSubscriptions=Liste der Beitragszahlungen +SubscriptionNotReceived=Mitgliedsbeitrag nie erhalten +ListOfSubscriptions=Liste der Mitgliedsbeiträge SendCardByMail=Karte per E-Mail versenden AddMember=Mitglied erstellen -NoTypeDefinedGoToSetup=Sie haben noch keine Mitgliedsart definiert.\nSie können dies im linken Menü mit Hilfe des Eintrags Mitgliedsarten --> Neu tun. -NewMemberType=Neue Mitgliedsart +NoTypeDefinedGoToSetup=Sie haben noch keine Mitgliedschaftstyp definiert.\nSie können dies im linken Menü mit Hilfe des Eintrags Mitgliedschaftstypen --> Neu tun. +NewMemberType=Neuer Mitgliedschaftstyp WelcomeEMail=Willkommen per E-Mail SubscriptionRequired=Mitgliedsbeitrag erforderlich DeleteType=Löschen @@ -104,7 +111,7 @@ PublicMemberList=Liste öffentlicher Mitglieder BlankSubscriptionForm=Öffentliches Erfassungsformular BlankSubscriptionFormDesc=Dolibarr kann ihnen eine öffentliche URL/Website zur Verfügung stellen, die es externen Besuchern erlaubt, einen Beitrag zu entrichten. Wenn ein Online-Zahlungsmodul aktiviert ist, kann auch automatisch ein Zahlungsformular bereitgestellt werden. EnablePublicSubscriptionForm=Aktivieren der öffentlichen Webseite mit dem Formular für die Beitragshöhenerklärung (Mitgliedsantrag). -ForceMemberType=Mitgliedsart erzwingen +ForceMemberType=Mitgliedschaftstyp erzwingen ExportDataset_member_1=Mitglieder und Beitragszahlungen ImportDataset_member_1=Mitglieder LastMembersModified=Zuletzt bearbeitete Mitglieder (maximal %s) @@ -135,7 +142,7 @@ CardContent=Inhalt der Mitgliedskarte # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=Wir haben Ihren Mitgliedsantrag erhalten.

ThisIsContentOfYourMembershipWasValidated=Ihr Mitgliedsantrag wurde mit diesem Resultat geprüft:

-ThisIsContentOfYourSubscriptionWasRecorded=Ihr neuer Beitrag wurde erfasst.

+ThisIsContentOfYourSubscriptionWasRecorded=Wir möchten Sie darüber informieren, dass Ihre neue Mitgliedschaft erfasst wurde. Ihre Rechnung finden Sie anbei.

ThisIsContentOfSubscriptionReminderEmail=Wir möchten darauf hinweisen, dass der Beitragszeitraum demnächst abläuft oder schon abgelaufen ist. (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Wir hoffen, Sie erneuern die Zahlung.

ThisIsContentOfYourCard=Dies ist eine Zusammenfassung der Informationen, die wir über Sie haben. Bitte kontaktieren Sie uns, wenn etwas nicht stimmt.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Betreff der Benachrichtigungsmail bei automatischer Registrierung eines Gastes @@ -171,7 +178,7 @@ DocForLabels=Etiketten erstellen (Gewähltes Ausgabeformat: %s) SubscriptionPayment=Beitragszahlung LastSubscriptionDate=Datum der letzten Beitragszahlung LastSubscriptionAmount=Höhe der letzten Beitragszahlung -LastMemberType=Letzter Mitgliedstyp +LastMemberType=Letzter Mitgliedschaftstyp MembersStatisticsByCountries=Mitgliederstatistik nach Staaten MembersStatisticsByState=Mitgliederstatistik nach Bundesländern/Provinzen/Kantonen MembersStatisticsByTown=Mitgliederstatistik nach Städten @@ -189,7 +196,7 @@ MenuMembersStats=Statistik LastMemberDate=Spätestes Mitgliedschaftsdatum LatestSubscriptionDate=Datum der letzten Beitragszahlung MemberNature=Art des Mitglieds -MembersNature=Art der Mitglieder +MembersNature=Mitgliedsart Public=Informationen sind öffentlich NewMemberbyWeb=Neues Mitglied hinzugefügt, wartet auf Genehmigung. NewMemberForm=Formular neues Mitglied @@ -198,7 +205,8 @@ NbOfSubscriptions=Anzahl der Beitragszahlungen AmountOfSubscriptions=Summer der erhaltenen Beitragszahlungen TurnoverOrBudget=Umsatz (Firma) oder Budget (Verein/Stiftung) DefaultAmount=Standardhöhe des Mitgliesbeitrages -CanEditAmount=Der Besucher kann die Höhe seines Beitrags auswählen/bearbeiten +CanEditAmount=Der Besucher kann die Höhe seines Beitrags unabhängig vom Mitgliedstyp auswählen/bearbeiten +AmountIsLowerToMinimumNotice=von einem Gesamtbetrag von %s MEMBER_NEWFORM_PAYONLINE=Zur integrierten Bezahlseite gehen ByProperties=Natürlich MembersStatisticsByProperties=Natürliche Mitgliederstatistiken diff --git a/htdocs/langs/de_DE/modulebuilder.lang b/htdocs/langs/de_DE/modulebuilder.lang index 416a9120606..5a2787acad1 100644 --- a/htdocs/langs/de_DE/modulebuilder.lang +++ b/htdocs/langs/de_DE/modulebuilder.lang @@ -1,4 +1,5 @@ # Dolibarr language file - Source file is en_US - loan +IdModule= Modul-ID ModuleBuilderDesc=Dieses Tool ist für erfahrene Nutzer und Entwickler gedacht. Es stellt Werkzeuge zum Erstellen und bearbeiten von eigenen Modulen zur Verfügung. Eine Dokumentation für eine alternative manuelle Entwicklung (von Modulen) findet sich hier. EnterNameOfModuleDesc=Geben Sie den Namen des zu erstellenden Moduls / der Anwendung ohne Leerzeichen ein. Verwenden Sie Großbuchstaben, um Wörter zu trennen (Beispiel: MyModule, EcommerceForShop, SyncWithMySystem...) EnterNameOfObjectDesc=Geben Sie den Namen des zu erstellenden Objekts ohne Leerzeichen ein. Verwenden Sie Großbuchstaben, um Wörter zu trennen (z. B.: MyObject, Student, Teacher...). Die CRUD-Klassendatei, aber auch die API-Datei, Seiten zum Auflisten/Hinzufügen/Bearbeiten/Löschen von Objekten und SQL-Dateien werden generiert. @@ -9,6 +10,7 @@ ModuleBuilderDesc4=Ein Modul wird als 'editierbar' erkannt, wenn die Datei DoliStore.com verteilen oder verkaufen. +BuildPackageDesc=Sie können ein Zip-Paket Ihrer Anwendung erstellen, um es auf jede Dolibarr-Installation verteilen zu können. Sie können es auch über einem Marktplatz wie DoliStore.com kostenlos verbreiten oder verkaufen. BuildDocumentation=Dokumentation erstellen ModuleIsNotActive=Dieses Modul ist noch nicht aktiviert. Gehe zu %s zum aktivieren oder klicke hier ModuleIsLive=Dieses Modul wurde aktiviert. Jede Änderung kann aktuelle Live-Funktionen beeinträchtigen. DescriptionLong=Lange Beschreibung EditorName=Name des Erstellers -EditorUrl=URL des Editors +EditorUrl=URL des Erstellers DescriptorFile=Deskriptordatei des Moduls ClassFile=Datei für die PHP DAO CRUD-Klasse ApiClassFile=File for PHP API class @@ -88,7 +90,7 @@ ListOfPermissionsDefined=Liste der definierten Berechtigungen SeeExamples=Siehe Beispiele EnabledDesc=Condition to have this field active (Examples: 1 or $conf->global->MYMODULE_MYOPTION) VisibleDesc=Ist das Feld sichtbar? (Beispiele: 0 = Nie sichtbar, 1 = Auf Liste sichtbar und Formulare erstellen / aktualisieren / anzeigen, 2 = Nur auf Liste sichtbar, 3 = Nur auf Formular erstellen / aktualisieren / anzeigen (nicht Liste), 4 = Auf Liste sichtbar und nur sichtbar bei Formular aktualisieren / anzeigen (nicht erstellen), 5 = Nur im Formular für die Listenendansicht sichtbar (nicht erstellen, nicht aktualisieren).

Wenn ein negativer Wert verwendet wird, wird das Feld standardmäßig nicht in der Liste angezeigt, kann jedoch zur Anzeige ausgewählt werden.)

Es kann sich um einen Ausdruck handeln, z. B.:
preg_match('/public/', $_SERVER['PHP_SELF'])?0:1
($user->rights->holiday->define_holiday ? 1 : 0) -DisplayOnPdfDesc=Zeigt dieses Feld in kompatiblen PDF-Dokumenten an. Sie können die Anzeigeposition über das Feld "Position" beeinflussen.
Derzeit bekannte kompatible PDF-Modelle sind: eratosthene (Bestellung), espadon (Lieferung), sponge (Rechnung), cyan (Angebot), cornas (Lieferantenauftrag)

Für Dokument:
0 = nicht anzeigen
1 = anzeigen
2 = anzeigen, wenn nicht leer

Für Belegzeilen:
0 = nicht anzeigen
1 = in Spalte anzeigen
3 = in Beschreibungszeile nach der Beschreibung anzeigen
4 = nur falls nicht leer: in Beschreibungszeile nach der Beschreibung anzeigen +DisplayOnPdfDesc=Zeigt dieses Feld in kompatiblen PDF-Dokumenten an. Sie können die Anzeigeposition über das Feld "Position" beeinflussen.
Derzeit bekannte kompatible PDF-Modelle sind: eratosthene (Bestellung), espadon (Lieferung), sponge (Rechnung), cyan (Angebot), cornas (Lieferantenauftrag)

Für Dokument:
0 = nicht anzeigen
1 = anzeigen
2 = anzeigen, wenn nicht leer

Für Einzelpositionen:
0 = nicht anzeigen
1 = in Spalte anzeigen
3 = in Beschreibungszeile nach der Beschreibung anzeigen
4 = nur falls nicht leer: in Beschreibungszeile nach der Beschreibung anzeigen DisplayOnPdf=Anzeige im PDF IsAMeasureDesc=Kann der Wert des Feldes kumuliert werden, um eine Summe in die Liste aufzunehmen? (Beispiele: 1 oder 0) SearchAllDesc=Wird das Feld verwendet, um eine Suche über das Schnellsuchwerkzeug durchzuführen? (Beispiele: 1 oder 0) @@ -153,3 +155,4 @@ LinkToParentMenu=Übergeordnetes Menü (fk_xxxxmenu) ListOfTabsEntries=Liste der Registerkarteneinträge/Tab-Einträge TabsDefDesc=Definieren Sie hier die von Ihrem Modul bereitgestellten Registerkarten/Tabs TabsDefDescTooltip=Die von Ihrem Modul/Ihrer Anwendung bereitgestellten Registerkarten/Tabs sind im Array $this->tabs in der Moduldeskriptordatei definiert. Sie können diese Datei manuell bearbeiten oder den eingebetteten Editor verwenden. +BadValueForType=Ungültiger Wert für Typ %s diff --git a/htdocs/langs/de_DE/orders.lang b/htdocs/langs/de_DE/orders.lang index 53633e9afe0..7fa65acad2f 100644 --- a/htdocs/langs/de_DE/orders.lang +++ b/htdocs/langs/de_DE/orders.lang @@ -1,7 +1,8 @@ # Dolibarr language file - Source file is en_US - orders +OrderExists=Mit diesem Angebot war bereits eine offener Auftrag verknüpft, so dass keine weiterer Auftrag automatisch erstellt wurde OrdersArea=Übersicht Kundenaufträge SuppliersOrdersArea=Übersicht Lieferantenbestellungen -OrderCard=Bestellung – Übersicht +OrderCard=Auftrag – Übersicht OrderId=Bestell-ID Order=Kundenauftrag PdfOrderTitle=Auftragsbestätigung @@ -62,9 +63,9 @@ QtyOrdered=Bestellmenge ProductQtyInDraft=Produktmenge in Bestellentwurf ProductQtyInDraftOrWaitingApproved=Produktmenge in Bestellentwurf oder Bestellung benötigt Genehmigung, noch nicht bestellt MenuOrdersToBill=Bestellverrechnung -MenuOrdersToBill2=abrechenbare Aufträge +MenuOrdersToBill2=Abrechenbare Aufträge ShipProduct=Produkt versenden -CreateOrder=Bestellung erstellen +CreateOrder=Auftrag erstellen RefuseOrder=Bestellung ablehnen ApproveOrder=Bestellung genehmigen Approve2Order=Genehmige Bestellung (2. Bestätigung) @@ -128,8 +129,8 @@ SupplierOrderReceivedInDolibarr=Lieferantenbestellung %s erhalten %s SupplierOrderSubmitedInDolibarr=Lieferantenbestellung %s versendet SupplierOrderClassifiedBilled=Bestellung %s als verrechnet markieren OtherOrders=zeige weitere Bestellungen dieses Partners -SupplierOrderValidatedAndApproved=Die Lieferantenbestellung ist validiert und genehmigt: %s -SupplierOrderValidated=Lieferantenbestellung ist validiert: %s +SupplierOrderValidatedAndApproved=Die Lieferantenbestellung ist freigegeben und genehmigt: %s +SupplierOrderValidated=Lieferantenbestellung ist freigegeben: %s ##### Types de contacts ##### TypeContact_commande_internal_SALESREPFOLL=Kundenauftrag-Nachbetreuung durch Vertreter TypeContact_commande_internal_SHIPPING=Versand-Nachbetreuung durch Vertreter diff --git a/htdocs/langs/de_DE/paypal.lang b/htdocs/langs/de_DE/paypal.lang index cc1282685a2..7251e796806 100644 --- a/htdocs/langs/de_DE/paypal.lang +++ b/htdocs/langs/de_DE/paypal.lang @@ -1,6 +1,6 @@ # Dolibarr language file - Source file is en_US - paypal PaypalSetup=PayPal Moduleinstellungen -PaypalDesc=Dieses Modul ermöglicht Zahlungen von Kunden über PayPal zu tätigen. Es können ad-hoxc Zahlungen oder Zahlungen zu Vorgängen aus Dolibarr (Rechnungen, Bestellungen ...) erfolgen +PaypalDesc=Dieses Modul ermöglicht die Zahlung durch Kunden über PayPal . Dies kann sowohl für eine allgemeine Zahlung als auch für eine Zahlung im Zusammenhang mit einem Dolibarr-Objekt (Rechnung, Bestellung, ...) verwendet werden. PaypalOrCBDoPayment=Bezahlen mit PayPal (Kreditkarte oder PayPal) PaypalDoPayment=Zahlung mit PayPal PAYPAL_API_SANDBOX=Testmodus/Sandbox @@ -12,7 +12,7 @@ PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Integrierte Zahlung (Kreditkarte + PayPal) ode PaypalModeIntegral=Integriert PaypalModeOnlyPaypal=Nur PayPal ONLINE_PAYMENT_CSS_URL=Optionale URL des CSS-Stylesheet auf Zahlungsseite -ThisIsTransactionId=Die Transaktions ID lautet: %s +ThisIsTransactionId=Die Transaktions-ID lautet: %s PAYPAL_ADD_PAYMENT_URL=URL für Paypal-Zahlungen beim Dokumentenversand per E-Mail hinzufügen. NewOnlinePaymentReceived=Neue Onlinezahlung erhalten NewOnlinePaymentFailed=Neue Onlinezahlung versucht, aber fehlgeschlagen @@ -34,3 +34,4 @@ ARollbackWasPerformedOnPostActions=Bei allen Post-Aktionen wurde ein Rollback du ValidationOfPaymentFailed=Validierung der Paypal-Zahlung gescheitert CardOwner=Karteninhaber PayPalBalance=PayPal-Gutschrift +OnlineSubscriptionPaymentLine=Online-Mitgliedschaft erfasst am %s
Bezahlt über %s
Ursprungs-IP-Adresse: %s
Transaktions-ID: %s diff --git a/htdocs/langs/de_DE/products.lang b/htdocs/langs/de_DE/products.lang index 64dddea615c..0659807bdba 100644 --- a/htdocs/langs/de_DE/products.lang +++ b/htdocs/langs/de_DE/products.lang @@ -31,18 +31,18 @@ ProductOrService=Produkt oder Leistung ProductsAndServices=Produkte und Leistungen ProductsOrServices=Produkte oder Leistungen ProductsPipeServices=Produkte | Leistungen -ProductsOnSale=Produkte zum Verkauf -ProductsOnPurchase=Produkte im Einkauf +ProductsOnSale=Verkäufliche Produkte +ProductsOnPurchase=Beziehbare Produkte ProductsOnSaleOnly=Produkte nur zum Verkauf ProductsOnPurchaseOnly=Produkte nur im Einkauf ProductsNotOnSell=Produkte nicht im Einkauf/Verkauf -ProductsOnSellAndOnBuy=Produkte im Einkauf/Verkauf -ServicesOnSale=Leistungen für den Verkauf -ServicesOnPurchase=Leistungen für den Einkauf +ProductsOnSellAndOnBuy=Produkte im Einkauf und Verkauf +ServicesOnSale=Verkäufliche Leistungen +ServicesOnPurchase=Beziehbare Leistungen ServicesOnSaleOnly=Leistungen nur für den Verkauf ServicesOnPurchaseOnly=Leistungen nur für den Einkauf ServicesNotOnSell=Leistungen weder im Einlauf noch im Verkauf -ServicesOnSellAndOnBuy=Leistungen für Ein- und Verkauf +ServicesOnSellAndOnBuy=Leistungen für Einkauf und Verkauf LastModifiedProductsAndServices=Zuletzt bearbeitete Produkte/Leistungen (maximal %s) LastRecordedProducts=Letzte %s erfasste Produkte/Leistungen LastRecordedServices=Zuletzt bearbeitete Leistungen (maximal %s) @@ -54,17 +54,17 @@ Stocks=Lagerbestände und Lagerort der Produkte Movements=Lagerbewegungen Sell=Verkauf Buy=Kauf -OnSell=Zu verkaufen -OnBuy=Im Einkauf -NotOnSell=Nicht zu verkaufen -ProductStatusOnSell=verkäuflich -ProductStatusNotOnSell=unverkäuflich +OnSell=Verkäuflich +OnBuy=Beziehbar +NotOnSell=Nicht verkäuflich +ProductStatusOnSell=Verkäuflich +ProductStatusNotOnSell=Nicht verkäuflich ProductStatusOnSellShort=Verkäuflich -ProductStatusNotOnSellShort=Unverkäuflich -ProductStatusOnBuy=Im Einkauf -ProductStatusNotOnBuy=Nicht im Einkauf +ProductStatusNotOnSellShort=Nicht verkäuflich +ProductStatusOnBuy=Beziehbar +ProductStatusNotOnBuy=Nicht beziehbar ProductStatusOnBuyShort=Beziehbar -ProductStatusNotOnBuyShort=Unbeziehbar +ProductStatusNotOnBuyShort=Nicht beziehbar UpdateVAT=Aktualisiere Steuer UpdateDefaultPrice=Aktualisiere Standard Preis UpdateLevelPrices=Preise für jede Ebene aktivieren @@ -104,9 +104,9 @@ BarcodeType=Barcode-Typ SetDefaultBarcodeType=Wählen Sie den standardmäßigen Barcode-Typ BarcodeValue=Barcode-Wert NoteNotVisibleOnBill=Anmerkung (nicht sichtbar auf Rechnungen, Angeboten,...) -ServiceLimitedDuration=Ist die Erbringung einer Dienstleistung zeitlich beschränkt: +ServiceLimitedDuration=Ist die Erbringung einer Leistung zeitlich beschränkt: FillWithLastServiceDates=Fülle mit Daten der letzten Servicezeile -MultiPricesAbility=Mehrere Preissegmente pro Produkt / Dienstleistung (jeder Kunde befindet sich in einem Preissegment) +MultiPricesAbility=Mehrere Preissegmente pro Produkt/Leistung (jeder Kunde befindet sich in einem Preissegment) MultiPricesNumPrices=Anzahl Preise DefaultPriceType=Basis der Standardpreise (mit versus ohne Steuern) beim Hinzufügen neuer Verkaufspreise AssociatedProductsAbility=Aktiviere Kits (Sets aus mehreren Produkten) @@ -122,7 +122,7 @@ CategoryFilter=Kategoriefilter ProductToAddSearch=Suche hinzuzufügendes Produkt NoMatchFound=Kein Eintrag gefunden ListOfProductsServices=Liste der Produkte/Leistungen -ProductAssociationList=Liste der Produkte/Leistungen, die Bestandteil dieses Satzes sind +ProductAssociationList=Liste der Produkte/Leistungen, die Bestandteil dieses Sets sind ProductParentList=Liste der Sets mit diesem Produkt als Komponente ErrorAssociationIsFatherOfThis=Eines der ausgewählten Produkte ist Elternteil des aktuellen Produkts DeleteProduct=Produkt/Leistung löschen @@ -159,7 +159,7 @@ ListServiceByPopularity=Liste der Leistungen nach Beliebtheit Finished=Eigenproduktion RowMaterial=Rohmaterial ConfirmCloneProduct=Möchten Sie das Produkt / die Leistung %s wirklich duplizieren? -CloneContentProduct=Klonen Sie alle wichtigen Informationen des Produkts / der Dienstleistung +CloneContentProduct=Duplizieren aller wichtigen Informationen des Produkts / der Leistung ClonePricesProduct=Preise duplizieren CloneCategoriesProduct=Klonen Sie verknüpfte Tags / Kategorien CloneCompositionProduct=Virtuelle Produkte/Leistungen duplizieren @@ -262,7 +262,7 @@ Quarter1=1. Quartal Quarter2=2. Quartal Quarter3=3. Quartal Quarter4=4. Quartal -BarCodePrintsheet=Barcode drucken +BarCodePrintsheet=Barcodes drucken PageToGenerateBarCodeSheets=Mit diesem Tool können Sie Bögen mit Barcode-Aufklebern drucken. Wählen Sie das Format Ihrer Stickerseite, den Barcode-Typ und den Barcode-Wert aus und klicken Sie dann auf die Schaltfläche %s . NumberOfStickers=Anzahl Etiketten pro Seite PrintsheetForOneBarCode=Mehrere Aufkleber pro Barcode drucken @@ -416,7 +416,7 @@ ProductsMergeSuccess=Produkte wurden zusammengeführt ErrorsProductsMerge=Fehler beim Zusammenführen von Produkten SwitchOnSaleStatus=Status Verkauf einschalten SwitchOnPurchaseStatus=Status Einkauf einschalten -StockMouvementExtraFields= Zusatzfelder (Lagerbewegung) +StockMouvementExtraFields= Ergänzende Attribute (Lagerbewegung) InventoryExtraFields= Ergänzende Attribute (Bestandsaufnahme) ScanOrTypeOrCopyPasteYourBarCodes=Fügen Sie die Barcodes durch Scannen, über die Tastatur oder per Copy/Paste ein PuttingPricesUpToDate=Preise mit den aktuell bekannten Preisen aktualisieren diff --git a/htdocs/langs/de_DE/projects.lang b/htdocs/langs/de_DE/projects.lang index 47716ada73a..a1ef2aeba59 100644 --- a/htdocs/langs/de_DE/projects.lang +++ b/htdocs/langs/de_DE/projects.lang @@ -3,13 +3,13 @@ RefProject=Projekt-Nr. ProjectRef=Projekt-Nr. ProjectId=Projekt-ID ProjectLabel=Projektbezeichnung -ProjectsArea=Projekte - Übersicht -ProjectStatus=Projekt Status +ProjectsArea=Projekte – Übersicht +ProjectStatus=Projektstatus SharedProject=Jeder -PrivateProject=Zugewiesene Kontakte +PrivateProject=Zugeordnete Kontakte ProjectsImContactFor=Projekte, für die ich ausdrücklich ein Ansprechpartner bin AllAllowedProjects=Alle Projekte die ich sehen kann (eigene + öffentliche) -AllProjects=alle Projekte +AllProjects=Alle Projekte MyProjectsDesc=Diese Ansicht ist auf die Projekte beschränkt, für die Sie ein Ansprechpartner sind ProjectsPublicDesc=Diese Ansicht zeigt alle Projekte, für die Sie zum Lesen berechtigt sind. TasksOnProjectsPublicDesc=Diese Ansicht zeigt alle Aufgaben der Projekte, die Sie einsehen dürfen. @@ -25,14 +25,14 @@ AllTaskVisibleButEditIfYouAreAssigned=Alle Aufgaben für qualifizierte Projekte OnlyYourTaskAreVisible=Nur Ihnen zugewiesene Aufgaben sind sichtbar. Wenn Sie Zeit für eine Aufgabe eingeben müssen und die Aufgabe hier nicht sichtbar ist, müssen Sie sich die Aufgabe selbst zuweisen. ImportDatasetTasks=Aufgaben der Projekte ProjectCategories=Projektkategorien/Tags -NewProject=neues Projekt +NewProject=Neues Projekt AddProject=Projekt erstellen DeleteAProject=Löschen eines Projekts DeleteATask=Löschen einer Aufgabe ConfirmDeleteAProject=Sind Sie sicher, dass diese Vertragsposition löschen wollen? ConfirmDeleteATask=Sind Sie sicher, dass diese Aufgabe löschen wollen? -OpenedProjects=offene Projekte -OpenedTasks=offene Aufgaben +OpenedProjects=Offene Projekte +OpenedTasks=Offene Aufgaben OpportunitiesStatusForOpenedProjects=Betrag der Leads aus offenen Projekten nach Status OpportunitiesStatusForProjects=Anzahl Kundeninteressen je Projekt nach Status ShowProject=Projekt anzeigen @@ -42,7 +42,7 @@ NoProject=Kein Projekt definiert oder keine Rechte NbOfProjects=Anzahl Projekte NbOfTasks=Anzahl Aufgaben TimeSpent=Zeitaufwand -TimeSpentByYou=eigener Zeitaufwand +TimeSpentByYou=Eigener Zeitaufwand TimeSpentByUser=Zeitaufwand von Benutzer ausgegeben TimesSpent=Zeitaufwände TaskId=Aufgaben-ID @@ -55,7 +55,7 @@ TaskTimeDate=Datum TasksOnOpenedProject=Aufgaben in offenen Projekten WorkloadNotDefined=Arbeitsaufwand nicht definiert NewTimeSpent=Zeitaufwände -MyTimeSpent=mein Zeitaufwand +MyTimeSpent=Mein Zeitaufwand BillTime=Zeitaufwand abrechnen BillTimeShort=Zeit abrechnen TimeToBill=Zeit nicht in Rechnung gestellt @@ -65,7 +65,7 @@ Task=Aufgabe TaskDateStart=Startdatum der Aufgabe TaskDateEnd=Enddatum der Aufgabe TaskDescription=Aufgabenbeschreibung -NewTask=neue Aufgabe +NewTask=Neue Aufgabe AddTask=Aufgabe erstellen AddTimeSpent=Erfasse verwendete Zeit AddHereTimeSpentForDay=Zeitaufwand für diesen Tag/Aufgabe hier erfassen @@ -74,7 +74,7 @@ Activity=Tätigkeit Activities=Aufgaben/Tätigkeiten MyActivities=Meine Aufgaben/Tätigkeiten MyProjects=Meine Projekte -MyProjectsArea=meine Projekte – Übersicht +MyProjectsArea=Meine Projekte – Übersicht DurationEffective=Effektivdauer ProgressDeclared=Erklärte echte Fortschritte TaskProgressSummary=Aufgabenfortschritt @@ -85,26 +85,26 @@ ProgressCalculated=Fortschritt nach Verbrauch WhichIamLinkedTo=mit dem ich verbunden bin WhichIamLinkedToProject=Projekt mit dem ich verbunden bin Time=Zeitaufwand -TimeConsumed=verwendet +TimeConsumed=Verwendet ListOfTasks=Aufgabenliste GoToListOfTimeConsumed=Liste der verwendeten Zeit aufrufen GanttView=Gantt-Diagramm ListWarehouseAssociatedProject=Liste der mit dem Projekt verknüpften Lager -ListProposalsAssociatedProject=Liste der projektbezogenen Angebote -ListOrdersAssociatedProject=Liste der projektbezogenen Kundenaufträge -ListInvoicesAssociatedProject=Liste der projektbezogenen Kundenrechnungen -ListPredefinedInvoicesAssociatedProject=Liste der Kundenvorlagenrechnungen, die sich auf das Projekt beziehen -ListSupplierOrdersAssociatedProject=Liste der Bestellungen im Zusammenhang mit dem Projekt -ListSupplierInvoicesAssociatedProject=Liste der projektbezogenen Lieferantenrechnungen -ListContractAssociatedProject=Liste der projektbezogenen Verträge -ListShippingAssociatedProject=Liste der projektbezogenen Lieferungen -ListFichinterAssociatedProject=Liste der projektbezogenen Serviceaufträge -ListExpenseReportsAssociatedProject=Liste der projektbezogenen Spesenabrechnungen -ListDonationsAssociatedProject=mit dem Projekt verknüpfte Spendenliste -ListVariousPaymentsAssociatedProject=Liste der sonstigen projektbezogenen Zahlungen -ListSalariesAssociatedProject=Liste der projektbezogenen Gehaltszahlungen -ListActionsAssociatedProject=Liste der projektbezogenen Ereignisse -ListMOAssociatedProject=Liste der projektbezogenen Fertigungsaufträge +ListProposalsAssociatedProject=Liste der mit dem Projekt verbundenen Angebote +ListOrdersAssociatedProject=Liste der mit dem Projekt verbundenen Kundenaufträge +ListInvoicesAssociatedProject=Liste der mit dem Projekt verbundenen Kundenrechnungen +ListPredefinedInvoicesAssociatedProject=Liste der mit dem Projekt verbundenen Rechnungsvorlagen für Kundenrechnungen +ListSupplierOrdersAssociatedProject=Liste der mit dem Projekt verbundenen Lieferantenbestellungen +ListSupplierInvoicesAssociatedProject=Liste der mit dem Projekt verbundenen Lieferantenrechnungen +ListContractAssociatedProject=Liste der mit dem Projekt verbundenen Verträge +ListShippingAssociatedProject=Liste der mit dem Projekt verbundenen Lieferungen +ListFichinterAssociatedProject=Liste der mit dem Projekt verbundenen Serviceaufträge +ListExpenseReportsAssociatedProject=Liste der mit dem Projekt verbundenen Spesenabrechnungen +ListDonationsAssociatedProject=Liste der mit dem Projekt verbundenen Spenden +ListVariousPaymentsAssociatedProject=Liste der sonstigen mit dem Projekt verbundenen Zahlungen +ListSalariesAssociatedProject=Liste der mit dem Projekt verbundenen Gehaltszahlungen +ListActionsAssociatedProject=Liste der mit dem Projekt verbundenen Ereignisse +ListMOAssociatedProject=Liste der mit dem Projekt verbundenen Fertigungsaufträge ListTaskTimeUserProject=Liste mit Zeitaufwand der Projektaufgaben ListTaskTimeForTask=Zeitaufwand auf Aufgaben ActivityOnProjectToday=Projektaktivitäten von heute @@ -113,9 +113,9 @@ ActivityOnProjectThisWeek=Projektaktivitäten dieser Woche ActivityOnProjectThisMonth=Projektaktivitäten dieses Monats ActivityOnProjectThisYear=Projektaktivitäten dieses Jahres ChildOfProjectTask=Subelemente des Projekts/Aufgabe -ChildOfTask=Kindelement der Aufgabe -TaskHasChild=Aufgabe hat eine Unteraufgabe -NotOwnerOfProject=Nicht Eigner des privaten Projekts +ChildOfTask=Subelement der Aufgabe +TaskHasChild=Aufgabe hat ein Subelement +NotOwnerOfProject=Nicht Eigner dieses privaten Projekts AffectedTo=Zugewiesen an CantRemoveProject=Dieses Projekt kann nicht entfernt werden, da es von einigen anderen Objekten (Rechnung, Bestellungen oder andere) verwendet wird. Siehe Registerkarte '%s'. ValidateProject=Projekt freigeben @@ -125,7 +125,7 @@ ConfirmCloseAProject=Möchten Sie dieses Projekt wirklich schließen? AlsoCloseAProject=Das Projekt auch schließen (lassen Sie es offen, wenn Sie noch Produktions-Aufgaben laufen haben) ReOpenAProject=Projekt öffnen ConfirmReOpenAProject=Möchten Sie dieses Projekt wirklich wiedereröffnen? -ProjectContact=Kontakte zum Projekt +ProjectContact=Projektkontakte TaskContact=Kontakte zur Aufgabe ActionsOnProject=Projektaktionen YouAreNotContactOfProject=Sie sind diesem privaten Projekt nicht als Kontakt zugeordnet. @@ -154,7 +154,7 @@ ProjectReportDate=Passe Aufgaben-Datum dem neuen Projekt-Startdatum an ErrorShiftTaskDate=Es ist nicht möglich, das Aufgabendatum dem neuen Projektdatum anzupassen ProjectsAndTasksLines=Projekte und Aufgaben ProjectCreatedInDolibarr=Projekt %s erstellt -ProjectValidatedInDolibarr=Projekt %s validiert +ProjectValidatedInDolibarr=Projekt %s freigeben ProjectModifiedInDolibarr=Projekt %s geändert TaskCreatedInDolibarr=Aufgabe %s erstellt TaskModifiedInDolibarr=Aufgabe %s geändert @@ -190,16 +190,16 @@ PlannedWorkload=Geplante Auslastung PlannedWorkloadShort=Arbeitsaufwand ProjectReferers=Verknüpfte Einträge ProjectMustBeValidatedFirst=Projekt muss erst freigegeben werden -MustBeValidatedToBeSigned=%s muss zuerst validiert werden, um auf "unterzeichnet" gesetzt zu werden. +MustBeValidatedToBeSigned=%s muss zuerst freigegeben werden, um auf "unterzeichnet" gesetzt zu werden. FirstAddRessourceToAllocateTime=Weisen Sie einen Benutzer als Kontakt des Projekts zu, um Zeiten zu erfassen InputPerDay=Tagesansicht InputPerWeek=Wochenansicht InputPerMonth=Monatsansicht -InputDetail=Eingabedetail +InputDetail=Eingabe Detail TimeAlreadyRecorded=Zeitaufwand für diese Aufgabe/Tag und Benutzer %s bereits aufgenommen -ProjectsWithThisUserAsContact=Projekte mit diesem Anwender als Kontakt +ProjectsWithThisUserAsContact=Projekte mit diesem Benutzer als Kontakt ProjectsWithThisContact=Projekte mit diesem Kontakt -TasksWithThisUserAsContact=Aufgaben zugeordnet zu diesem Anwender +TasksWithThisUserAsContact=Diesem Benutzer zugeordnete Aufgaben ResourceNotAssignedToProject=Nicht dem Projekt zugeordnet ResourceNotAssignedToTheTask=nicht der Aufgabe zugewiesen NoUserAssignedToTheProject=Diesem Projekt sind keine Benutzer zugeordnet @@ -222,9 +222,9 @@ TasksStatistics=Statistiken zu Aufgaben von Projekten oder Interessenten TaskAssignedToEnterTime=Aufgabe zugewiesen. Eingabe der Zeit zu diese Aufgabe sollte möglich sein. IdTaskTime=ID Zeit Aufgabe YouCanCompleteRef=Wenn die Referenz mit einem Suffix ergänzt werden soll, ist es empfehlenswert, ein Trennstrich '-' zu verwenden, so dass die automatische Numerierung für weitere Projekte funktioniert. Zum Beispiel %s-MYSUFFIX -OpenedProjectsByThirdparties=Offene Projekte nach Partner +OpenedProjectsByThirdparties=Offene Projekte nach Geschäftspartner OnlyOpportunitiesShort=nur Interessenten -OpenedOpportunitiesShort=offene Verkaufschancen +OpenedOpportunitiesShort=Offene Leads NotOpenedOpportunitiesShort=Kein offener Interessent NotAnOpportunityShort=Keine Verkaufsmöglichkeit OpportunityTotalAmount=Gesamtbetrag Leads/Verkaufschancen @@ -259,7 +259,7 @@ TimeSpentInvoiced=Zeitaufwand in Rechnung gestellt TimeSpentForIntervention=Zeitaufwand TimeSpentForInvoice=Zeitaufwand OneLinePerUser=Eine Zeile pro Benutzer -ServiceToUseOnLines=Zeiten über Leistung abrechnen +ServiceToUseOnLines=Standardmäßig in den Einzelpositionen zu verwendende Leistung InvoiceGeneratedFromTimeSpent=Die Rechnung %s wurde aus der für das Projekt aufgewendeten Zeit generiert InterventionGeneratedFromTimeSpent=Der Serviceauftrag %s wurde aus der für das Projekt aufgewendeten Zeit generiert ProjectBillTimeDescription=Auswählen, wenn Arbeitszeiten für Projektaufgaben erfasst UND Rechnungen aus diesen Zeiten erzeugt werden sollen, um mit dem Kunden des Projekts abzurechnen (nicht auswählen, wenn nur Rechnungen erstellt werden sollen, die nicht auf erfassten Arbeitszeiten basieren). Hinweis: Um eine Rechnung zu erstellen, gehen Sie auf die Registerkarte 'Zeitaufwand' des Projekts und wählen die abzurechnenden Zeilen aus. @@ -294,3 +294,4 @@ EnablePublicLeadForm=Öffentliches Kontaktformular aktivieren NewLeadbyWeb=Ihre Nachricht bzw. Anfrage wurde erfasst. Wir werden uns so bald wie möglich mit Ihnen in Verbindung setzen. NewLeadForm=Neues Kontaktformular LeadFromPublicForm=Online-Interessent per öffentlichem Formular +ExportAccountingReportButtonLabel=Bericht erhalten diff --git a/htdocs/langs/de_DE/sendings.lang b/htdocs/langs/de_DE/sendings.lang index bb858a55538..bee31352ea5 100644 --- a/htdocs/langs/de_DE/sendings.lang +++ b/htdocs/langs/de_DE/sendings.lang @@ -1,9 +1,9 @@ # Dolibarr language file - Source file is en_US - sendings -RefSending=Versand-Nr. -Sending=Auslieferung -Sendings=Auslieferungen +RefSending=Lieferungs-Ref. +Sending=Lieferung +Sendings=Lieferungen AllSendings=Alle Lieferungen -Shipment=Versand +Shipment=Lieferung Shipments=Lieferungen ShowSending=Zeige Lieferungen Receivings=Zustellbestätigungen @@ -12,11 +12,11 @@ ListOfSendings=Versandliste SendingMethod=Versandart LastSendings=%s neueste Lieferungen StatisticsOfSendings=Versandstatistik -NbOfSendings=Anzahl Auslieferungen -NumberOfShipmentsByMonth=Anzahl Auslieferungen pro Monat +NbOfSendings=Anzahl Lieferungen +NumberOfShipmentsByMonth=Anzahl Lieferungen pro Monat SendingCard=Lieferung – Übersicht NewSending=Neue Lieferung -CreateShipment=Auslieferung erstellen +CreateShipment=Lieferung erstellen QtyShipped=Liefermenge QtyShippedShort=Gelieferte Menge QtyPreparedOrShipped=Menge vorbereitet oder versendet @@ -25,10 +25,10 @@ QtyToReceive=Menge hinzugekommen QtyReceived=Erhaltene Menge QtyInOtherShipments=Menge in anderen Lieferungen KeepToShip=Noch zu versenden -KeepToShipShort=übrigbleiben +KeepToShipShort=Noch offen OtherSendingsForSameOrder=Weitere Lieferungen zu dieser Bestellung SendingsAndReceivingForSameOrder=Warenerhalt und Versand dieser Bestellung -SendingsToValidate=Freizugebende Auslieferungen +SendingsToValidate=Freizugebende Lieferungen StatusSendingCanceled=Storniert StatusSendingCanceledShort=storniert StatusSendingDraft=Entwurf @@ -50,7 +50,7 @@ StatusReceipt=Der Status des Lieferschein DateReceived=Datum der Zustellung ClassifyReception=Als erhalten markieren SendShippingByEMail=Versand per E-Mail -SendShippingRef=Versendung der Auslieferung %s +SendShippingRef=Versand der Lieferung %s ActionsOnShipping=Hinweis zur Lieferung LinkToTrackYourPackage=Link zur Paket- bzw. Sendungsverfolgung ShipmentCreationIsDoneFromOrder=Im Moment erfolgt die Erstellung einer neuen Lieferung aus dem Datensatz des Kundenauftrags. @@ -65,8 +65,8 @@ ValidateOrderFirstBeforeShipment=Sie müssen den Auftrag erst bestätigen bevor # Sending methods # ModelDocument -DocumentModelTyphon=Vollständig Dokumentvorlage für die Lieferscheine (Logo, ...) -DocumentModelStorm=Vollständigeres Dokumentmodell für Lieferbelege und Kompatibilität mit Extrafeldern (Logo ...) +DocumentModelTyphon=Vollständige Dokumentenvorlage für Zustellbestätigungen (Logo, ...) +DocumentModelStorm=Vollständige Dokumentenvorlage für Zustellbestätigungen, kompatibel mit ergänzenden Attributen (Logo ...) Error_EXPEDITION_ADDON_NUMBER_NotDefined=Konstante EXPEDITION_ADDON_NUMBER nicht definiert SumOfProductVolumes=Summe der Produktvolumen SumOfProductWeights=Summe der Produktgewichte diff --git a/htdocs/langs/de_DE/stocks.lang b/htdocs/langs/de_DE/stocks.lang index 62df4270b03..7da1a65eb67 100644 --- a/htdocs/langs/de_DE/stocks.lang +++ b/htdocs/langs/de_DE/stocks.lang @@ -58,7 +58,7 @@ StockLowerThanLimit=Lagerbestand unterhalb der Mindestbestandsmenge ( %s ) EnhancedValue=Warenwert EnhancedValueOfWarehouses=Lagerwert UserWarehouseAutoCreate=Automatisch ein Lager erstellen wenn ein neuer Benutzer erstellt wird -AllowAddLimitStockByWarehouse=Verwalten Sie zusätzlich zum Wert für den Mindest- und den gewünschten Bestand pro Paar (Produktlager) auch den Wert für den Mindest- und den gewünschten Bestand pro Produkt +AllowAddLimitStockByWarehouse=Verwalten Sie zusätzlich zum Wert für den Mindest- und den gewünschten Bestand pro Zuordnung (Produkt zu Warenlager) auch den Wert für den Mindest- und den gewünschten Bestand pro Produkt RuleForWarehouse=Regel für Lager WarehouseAskWarehouseOnThirparty=Legen Sie ein Lager für Geschäftspartner fest WarehouseAskWarehouseDuringPropal=Ein Lager zu dem Angebot einstellen @@ -88,8 +88,8 @@ OrderStatusNotReadyToDispatch=Auftrag wurde noch nicht oder nicht mehr ein Statu StockDiffPhysicTeoric=Begründung für Differenz zwischen Inventurbestand und Lagerbestand NoPredefinedProductToDispatch=Es erfolgt keine Lagerbestandsänderung da keine vordefinierten Produkte enthalten sind. DispatchVerb=Position(en) verbuchen -StockLimitShort=Grenzwert für Alarm -StockLimit=Mindestbestand vor Warnung +StockLimitShort=Grenzwert für Warnung +StockLimit=Warnung bei Mindestbestand StockLimitDesc=(leer) bedeutet keine Warnung.
0 kann verwendet werden, um eine Warnung auszulösen, sobald der Bestand leer ist. PhysicalStock=Aktueller Lagerbestand RealStock=tatsächlicher Bestand @@ -110,8 +110,8 @@ AverageUnitPricePMPDesc=Den eingegebenen durchschnittlichen Stückpreis mussten SellPriceMin=Verkaufspreis EstimatedStockValueSellShort=Verkaufswert EstimatedStockValueSell=Verkaufswert -EstimatedStockValueShort=Eingangsmenge -EstimatedStockValue=Einkaufspreis +EstimatedStockValueShort=Einkaufswert +EstimatedStockValue=Einkaufswert DeleteAWarehouse=Warenlager löschen ConfirmDeleteWarehouse=Möchten Sie dieses Lager%s wirklich löschen? PersonalStock=Persönlicher Warenbestand %s @@ -121,7 +121,7 @@ SelectWarehouseForStockIncrease=Wählen Sie das Lager für den Wareneingang NoStockAction=Keine Vorratsänderung DesiredStock=Gewünschter Lagerbestand DesiredStockDesc=Dieser Lagerbestand wird von der Nachbestellfunktion verwendet. -StockToBuy=zu bestellen +StockToBuy=Zu bestellen Replenishment=Nachbestellung ReplenishmentOrders=Nachbestellungen VirtualDiffersFromPhysical=Je nach Erhöhung / Verringerung der Lagerbestands-Optionen können sich physische und virtuelle Lagerbestände (physische Lagerbestände + offene Aufträge) unterscheiden @@ -151,8 +151,8 @@ RecordMovement=Umbuchung ReceivingForSameOrder=Verbuchungen zu dieser Bestellung StockMovementRecorded=Lagerbewegungen aufgezeichnet RuleForStockAvailability=Regeln für Bestands-Verfügbarkeit -StockMustBeEnoughForInvoice=Ein ausreichender Lagerbestand ist erforderlich, um Produkte/Leistungen in Rechnung zu stellen. (Die Prüfung gegen den aktuellen tatsächlichen Lagerbestand erfolgt, wenn eine Zeile zur Rechnung hinzugefügt wird, unabhängig von der Regel zur automatischen Lagerbestandsänderung.) -StockMustBeEnoughForOrder=Der Lagerbestand muss ausreichen, um der Bestellung ein Produkt / eine Dienstleistung hinzuzufügen. +StockMustBeEnoughForInvoice=Ein ausreichender Lagerbestand ist erforderlich, um Produkte/Leistungen in Rechnung zu stellen. (Die Prüfung gegen den aktuellen tatsächlichen Lagerbestand erfolgt, wenn eine Position zur Rechnung hinzugefügt wird, unabhängig von der Regel zur automatischen Lagerbestandsänderung.) +StockMustBeEnoughForOrder=Der Lagerbestand muss ausreichen, um dem Auftrag ein Produkt / eine Leistung hinzuzufügen (die Überprüfung erfolgt anhand des aktuellen tatsächlichen Bestands, wenn eine Position zum Auftrag hinzugefügt wird, unabhängig von der Regel für die automatische Bestandsänderung). StockMustBeEnoughForShipment= Ein ausreichender Lagerbestand ist erforderlich, um Produkte/Leistungen zum Versand hinzuzufügen. (Die Prüfung gegen den aktuellen tatsächlichen Lagerbestand erfolgt, wenn eine Zeile zum Versand hinzugefügt wird, unabhängig von der Regel zur automatischen Lagerbestandsänderung.) MovementLabel=Titel der Lagerbewegung TypeMovement=Bewegungsrichtung @@ -167,7 +167,7 @@ MovementCorrectStock=Lagerkorrektur für Produkt %s MovementTransferStock=Umlagerung des Produkts %s in ein anderes Lager InventoryCodeShort=Bewegungs- oder Bestandscode NoPendingReceptionOnSupplierOrder=Kein anstehender Wareneingang aufgrund offener Bestellung -ThisSerialAlreadyExistWithDifferentDate=Diese Charge / Seriennummer (%s) ist bereits vorhanden, jedoch mit unterschiedlichen Haltbarkeits- oder Verfallsdatum. \n(Gefunden: %s Erfasst: %s) +ThisSerialAlreadyExistWithDifferentDate=Diese Charge/Seriennummer (%s) ist bereits vorhanden, jedoch mit unterschiedlichen Haltbarkeits- oder Verfallsdatum. \n(Gefunden: %s Erfasst: %s) OpenAnyMovement=Offen (alle Bewegungen) OpenInternal=Offen (nur interne Bewegungen) UseDispatchStatus=Verwende einen Versandstatus (genehmigen / ablehnen) für Produktzeilen beim Bestelleingang @@ -243,8 +243,8 @@ CurrentStock=Aktueller Lagerbestand InventoryRealQtyHelp=Setze den Wert auf 0, um die Menge zurückzusetzen.
Feld leer lassen oder Zeile entfernen, um unverändert zu lassen UpdateByScaning=Vervollständigen Sie die tatsächliche Menge durch Scannen UpdateByScaningProductBarcode=Update per Scan (Produkt-Barcode) -UpdateByScaningLot=Update per Scan (Charge | serieller Barcode) -DisableStockChangeOfSubProduct=Deaktivieren Sie den Lagerwechsel für alle Unterprodukte dieses Satzes während dieser Bewegung. +UpdateByScaningLot=Update per Scan (Barcode Charge | Seriennr.) +DisableStockChangeOfSubProduct=Deaktivieren Sie den Lagerwechsel für alle Unterprodukte dieses Sets während dieser Bewegung. ImportFromCSV=CSV-Bewegungsliste importieren ChooseFileToImport=Datei hochladen und dann auf das Symbol %s klicken, um die Datei als Quell-Importdatei auszuwählen ... SelectAStockMovementFileToImport=Wählen Sie eine zu importierende Bestandsbewegungs-Datei aus @@ -260,11 +260,12 @@ CollapseBatchDetailHelp=Sie können die Standardanzeige für Chargendetails in d ErrorWrongBarcodemode=Unbekannter Barcode-Modus ProductDoesNotExist=Produkt existiert nicht ErrorSameBatchNumber=Im Inventarblatt wurden mehrere Datensätze zur Chargennummer gefunden. Daher ist unklar, welche erhöht werden soll. -ProductBatchDoesNotExist=Produkt mit Charge/Serie existiert nicht +ProductBatchDoesNotExist=Produkt mit Charge/Seriennr. existiert nicht ProductBarcodeDoesNotExist=Produkt mit Barcode existiert nicht WarehouseId=Lager-ID WarehouseRef=Lager-Ref. SaveQtyFirst=Sichern Sie zuerst die tatsächlich inventarisierten Mengen, bevor Sie die Erstellung der Lagerbewegung anfordern. +ToStart=Start InventoryStartedShort=Begonnen ErrorOnElementsInventory=Vorgang aus folgendem Grund abgebrochen: ErrorCantFindCodeInInventory=Kann den folgenden Code nicht im Bestand finden @@ -272,3 +273,45 @@ QtyWasAddedToTheScannedBarcode=Erfolg! Bei allen angeforderten Barcodes wurde di StockChangeDisabled=Bestandsänderung deaktiviert NoWarehouseDefinedForTerminal=Kein Lager für das Terminal definiert ClearQtys=Alle Mengen löschen +ModuleStockTransferName=Erweiterte Umlagerung +ModuleStockTransferDesc=Erweiterte Verwaltung der Umlagerung mit Erstellung von Umlagerungsbelegen +StockTransferNew=Neue Umlagerung +StockTransferList=Liste der Umlagerungen +ConfirmValidateStockTransfer=Sind Sie sicher, dass Sie diese Umlagerung mit der Referenz %s freigeben möchten? +ConfirmDestock=Bestandsverringerung mit Umlagerung %s +ConfirmDestockCancel=Bestandsverringerung mit Umlagerung %s stornieren +DestockAllProduct=Bestandsverringerung +DestockAllProductCancel=Bestandsverringerung stornieren +ConfirmAddStock=Bestandserhöhung mit Umlagerung %s +ConfirmAddStockCancel=Bestandserhöhung mit Umlagerung %s stornieren +AddStockAllProduct=Bestandserhöhung +AddStockAllProductCancel=Bestandserhöhung stornieren +DatePrevueDepart=Geplantes Ausgangsdatum +DateReelleDepart=Tatsächliches Ausgangsdatum +DatePrevueArrivee=Geplantes Ankunftsdatum +DateReelleArrivee=Tatsächliches Ankunftsdatum +HelpWarehouseStockTransferSource=Wenn dieses Warenlager festgelegt ist, stehen nur es selbst und seine untergeordneten Elemente als Ursprungs-Warenlager zur Verfügung +HelpWarehouseStockTransferDestination=Wenn dieses Warenlager festgelegt ist, stehen nur es selbst und seine untergeordneten Lager als Ziel-Warenlager zur Verfügung +LeadTimeForWarning=Vorlaufzeit bis Warnung (in Tagen) +TypeContact_stocktransfer_internal_STFROM=Absender der Umlagerung +TypeContact_stocktransfer_internal_STDEST=Empfänger der Umlagerung +TypeContact_stocktransfer_internal_STRESP=Verantwortlicher für die Umlagerung +StockTransferSheet=Umlagerungsbeleg +StockTransferSheetProforma=Proforma-Umlagerungsbeleg +StockTransferDecrementation=Bestandsverringerung Ursprungs-Warenlager +StockTransferIncrementation=Bestandserhöhung Ziel-Warenlager +StockTransferDecrementationCancel=Bestandsverringerung der Ursprungs-Warenlager stornieren +StockTransferIncrementationCancel=Bestandserhöhung der Ziel-Warenlager stornieren +StockStransferDecremented=Bestände in Ursprungs-Warenlagern verringert +StockStransferDecrementedCancel=Verringerung der Bestände in Ursprungs-Warenlagern storniert +StockStransferIncremented=Geschlossen - Bestände übertragen +StockStransferIncrementedShort=Bestände übertragen +StockStransferIncrementedShortCancel=Erhöhung der Bestände in Ziel-Warenlagern storniert +StockTransferNoBatchForProduct=Produkt %s verwendet keine Chargen; Chargennr. der Position löschen und erneut versuchen +StockTransferSetup = Einstellungen für das Modul Umlagerungen +Settings=Einstellungen +StockTransferSetupPage = Einstellungsseite für das Modul Umlagerungen +StockTransferRightRead=Umlagerungen einsehen +StockTransferRightCreateUpdate=Umlagerungen erstellen/aktualisieren +StockTransferRightDelete=Umlagerungen löschen +BatchNotFound=Charge/Seriennummer für dieses Produkt nicht gefunden diff --git a/htdocs/langs/de_DE/suppliers.lang b/htdocs/langs/de_DE/suppliers.lang index b30a65f5f82..155cc29ee01 100644 --- a/htdocs/langs/de_DE/suppliers.lang +++ b/htdocs/langs/de_DE/suppliers.lang @@ -3,7 +3,8 @@ Suppliers=Lieferanten SuppliersInvoice=Lieferantenrechnung SupplierInvoices=Lieferantenrechnungen ShowSupplierInvoice=Zeige Lieferantenrechnung -NewSupplier=neuer Lieferant +NewSupplier=Neuer Lieferant +NewSupplierInvoice = Neue Lieferantenrechnung History=Verlauf ListOfSuppliers=Liste der Lieferanten ShowSupplier=zeige Lieferant diff --git a/htdocs/langs/de_DE/ticket.lang b/htdocs/langs/de_DE/ticket.lang index ce7e62342d8..599cd4f9009 100644 --- a/htdocs/langs/de_DE/ticket.lang +++ b/htdocs/langs/de_DE/ticket.lang @@ -19,16 +19,16 @@ # Module56000Name=Tickets -Module56000Desc=Ticketsystem für die Verwaltung von Anträgen oder Vorfällen +Module56000Desc=Ticketsystem für das Issue- und Anfrage-Management -Permission56001=Tickets anzeigen +Permission56001=Tickets einsehen Permission56002=Tickets ändern Permission56003=Tickets löschen Permission56004=Tickets bearbeiten Permission56005=Tickets aller Geschäftspartner anzeigen (nicht gültig für externe Benutzer, diese sehen immer nur die Tickets des eigenen Geschäftspartners) -TicketDictType=Ticket-Typ -TicketDictCategory=Ticket-Kategorien +TicketDictType=Ticket-Anfragearten +TicketDictCategory=Ticket-Themengruppen TicketDictSeverity=Ticket-Dringlichkeiten TicketDictResolution=Ticket-Auflösung @@ -75,7 +75,7 @@ Deleted=Gelöscht Type=Typ Severity=Dringlichkeit TicketGroupIsPublic=Gruppe ist öffentlich -TicketGroupIsPublicDesc=Falls eine Ticket-Gruppe öffentlich ist, wird sie in der öffentlichen Oberfläche zum erstellen eines Tickets sichtbar sein +TicketGroupIsPublicDesc=Falls eine Ticket-Themengruppe öffentlich ist, wird sie in der öffentlichen Oberfläche zum erstellen eines Tickets sichtbar sein # Email templates MailToSendTicketMessage=Um eine E-Mail mit der Ticketmeldung zu senden @@ -86,12 +86,12 @@ MailToSendTicketMessage=Um eine E-Mail mit der Ticketmeldung zu senden TicketSetup=Einrichtung des Ticketmoduls TicketSettings=Einstellungen TicketSetupPage= -TicketPublicAccess=Ein öffentliches Interface ohne Identifizierung ist unter dieser URL verfügbar -TicketSetupDictionaries=Die Ticket-Typen, Dringlichkeiten und Analyse-Codes sind in den Stammdaten konfigurierbar +TicketPublicAccess=Ein öffentliches Interface (Nutzung ohne Identifizierung) ist unter dieser URL abrufbar: +TicketSetupDictionaries=Die Anfragearten, Dringlichkeiten und Analyse-Codes sind in den Stammdaten konfigurierbar TicketParamModule=Modul Variableneinstellungen TicketParamMail=E-Mail Einrichtung -TicketEmailNotificationFrom=Absender-E-Mail für Ticket-Antworten -TicketEmailNotificationFromHelp=Absender-E-Mail für von Dolibarr gesendete Ticket-Antworten +TicketEmailNotificationFrom=Absender-E-Mail für Benachrichtigung bei Antworten +TicketEmailNotificationFromHelp=Absenderadresse zum Senden der Benachrichtigungs-E-Mail, wenn eine Antwort im Backoffice bereitgestellt wird. Zum Beispiel noreply@example.com TicketEmailNotificationTo=Benachrichtigung über die Erstellung eines Tickets an diese E-Mail-Adresse TicketEmailNotificationToHelp=Falls vorhanden, wird diese E-Mail-Adresse bei einer Ticket-Erstellung benachrichtigt TicketNewEmailBodyLabel=Text Mitteilung die gesendet wird, wenn ein Ticket erstellt wurde @@ -132,7 +132,7 @@ TicketsAutoAssignTicket=Den Ersteller automatisch dem Ticket zuweisen TicketsAutoAssignTicketHelp=Wenn ein Ticket erstellt wird, kann der Ersteller automatisch dem Ticket zugewiesen werden. TicketNumberingModules=Ticketnummerierungsmodul TicketsModelModule=Dokumentvorlagen für Tickets -TicketNotifyTiersAtCreation=Partner über Ticketerstellung informieren +TicketNotifyTiersAtCreation=Geschäftspartner über Ticketerstellung informieren TicketsDisableCustomerEmail=E-Mails immer deaktivieren, wenn ein Ticket über die öffentliche Oberfläche erstellt wird TicketsPublicNotificationNewMessage=Sende E-Mails, wenn neue Nachrichten oder Kommentare zum Ticket hinzugefügt wurden TicketsPublicNotificationNewMessageHelp=E-Mail (s) senden, wenn eine neue Nachricht von der öffentlichen Oberfläche hinzugefügt wird (an den zugewiesenen Benutzer oder die Benachrichtigungs-E-Mail an (Update) und / oder die Benachrichtigungs-E-Mail an) @@ -180,7 +180,7 @@ CreatedBy=Erstellt durch NewTicket=Ticket erstellen SubjectAnswerToTicket=Ticketantwort TicketTypeRequest=Anfrageart -TicketCategory=Ticket-Kategorisierung +TicketCategory=Themengruppe SeeTicket=Ticket zeigen TicketMarkedAsRead=Ticket als gelesen markiert TicketReadOn=Gelesen um diff --git a/htdocs/langs/el_CY/members.lang b/htdocs/langs/el_CY/members.lang new file mode 100644 index 00000000000..5f7a2ff4020 --- /dev/null +++ b/htdocs/langs/el_CY/members.lang @@ -0,0 +1,3 @@ +# Dolibarr language file - Source file is en_US - members +ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

+CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type diff --git a/htdocs/langs/el_CY/projects.lang b/htdocs/langs/el_CY/projects.lang new file mode 100644 index 00000000000..f5f817beac1 --- /dev/null +++ b/htdocs/langs/el_CY/projects.lang @@ -0,0 +1,2 @@ +# Dolibarr language file - Source file is en_US - projects +ServiceToUseOnLines=Service to use on lines by default diff --git a/htdocs/langs/el_GR/accountancy.lang b/htdocs/langs/el_GR/accountancy.lang index 620e59ce3a4..f31db9c86f9 100644 --- a/htdocs/langs/el_GR/accountancy.lang +++ b/htdocs/langs/el_GR/accountancy.lang @@ -3,7 +3,7 @@ Accountancy=Λογιστική Accounting=Λογιστική ACCOUNTING_EXPORT_SEPARATORCSV=Διαχωριστικό στηλών για το αρχείο που θα εξαχθεί ACCOUNTING_EXPORT_DATE=Μορφή ημερομηνίας για το αρχείο που θα εξαχθεί -ACCOUNTING_EXPORT_PIECE=Εξαγωγή του αριθμού διακανονισμού +ACCOUNTING_EXPORT_PIECE=Εξαγωγή του αριθμού καταχώρησης ACCOUNTING_EXPORT_GLOBAL_ACCOUNT=Εξαγωγή με καθολικό λογαριασμό ACCOUNTING_EXPORT_LABEL=Εξαγωγή ετικέτας ACCOUNTING_EXPORT_AMOUNT=Εξαγωγή ποσού @@ -48,8 +48,9 @@ CountriesNotInEEC=Χώρες που δεν ανήκουν στην Ε.Ε. CountriesInEECExceptMe=Χώρες στην Ε.Ε. εκτός από %s CountriesExceptMe=Όλες οι χώρες εκτός από %s AccountantFiles=Εξαγωγή εγγράφων προέλευσης -ExportAccountingSourceDocHelp=Με αυτό το εργαλείο, μπορείτε να εξαγάγετε τα συμβάντα (λίστα σε CSV και PDF) που χρησιμοποιούνται για τη δημιουργία της λογιστικής σας. +ExportAccountingSourceDocHelp=Με αυτό το εργαλείο, μπορείτε να αναζητήσετε και να εξαγάγετε τα συμβάντα πηγής που χρησιμοποιούνται για τη δημιουργία της λογιστικής σας.
Το εξαγόμενο αρχείο ZIP θα περιέχει τις λίστες των ζητούμενων στοιχείων σε CSV, καθώς και τα συνημμένα αρχεία τους στην αρχική τους μορφή (PDF, ODT, DOCX...). ExportAccountingSourceDocHelp2=Για να εξαγάγετε τα ημερολόγια σας, χρησιμοποιήστε την καταχώριση μενού %s - %s. +ExportAccountingProjectHelp=Προσδιορίστε ένα έργο εάν χρειάζεστε μια λογιστική αναφορά μόνο για ένα συγκεκριμένο έργο. Οι εκθέσεις δαπανών και οι πληρωμές δανείων δεν περιλαμβάνονται στις αναφορές του έργου. VueByAccountAccounting=Προβολή ανά λογαριασμό λογιστικής VueBySubAccountAccounting=Προβολή ανά λογιστικό υπολογαριασμό @@ -161,7 +162,7 @@ BANK_DISABLE_DIRECT_INPUT=Απενεργοποίηση άμεσης καταγρ ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL=Ενεργοποίηση προσχεδίου εξαγωγής στο ημερολόγιο ACCOUNTANCY_COMBO_FOR_AUX=Ενεργοποίηση σύνθετης λίστας για θυγατρικό λογαριασμό (ενδέχεται να είναι αργή εάν έχετε πολλά τρίτα μέρη, διακοπή της δυνατότητας αναζήτησης σε ένα μέρος της αξίας) ACCOUNTING_DATE_START_BINDING=Καθορίστε ημερομηνία έναρξης δεσμεύσεων & μεταφοράς στη λογιστική. Κάτω από αυτή την ημερομηνία, οι συναλλαγές δεν θα μεταφερθούν στο λογιστικό. -ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=Κατά τη μεταφορά λογιστικού, επιλέξτε εμφάνιση περιόδου από προεπιλογή +ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=Στο λογιστικό έμβασμα, ποια είναι η προεπιλεγμένη περίοδος ACCOUNTING_SELL_JOURNAL=Ημερολόγιο πωλήσεων ACCOUNTING_PURCHASE_JOURNAL=Ημερολόγιο αγορών @@ -182,7 +183,7 @@ DONATION_ACCOUNTINGACCOUNT=Λογαριασμός λογιστικής για τ ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=Λογαριασμός λογιστικής για την εγγραφή συνδρομών ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=Λογιστικός λογαριασμός από προεπιλογή για εγγραφή κατάθεσης πελάτη -UseAuxiliaryAccountOnCustomerDeposit=Χρησιμοποιήστε δευτερεύοντες λογαριασμούς στις γραμμές καταθέσεων πελατών +UseAuxiliaryAccountOnCustomerDeposit=Αποθηκεύστε τον λογαριασμό πελάτη ως ατομικό λογαριασμό στο καθολικό θυγατρικής για γραμμές προκαταβολών (εάν απενεργοποιηθεί, ο ατομικός λογαριασμός για τις γραμμές προκαταβολών θα παραμείνει κενός) ACCOUNTING_PRODUCT_BUY_ACCOUNT=Λογαριασμός λογιστικής από προεπιλογή για τα αγορασμένα προϊόντα (χρησιμοποιείται αν δεν ορίζεται στο φύλλο προϊόντων) ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT=Λογαριασμός από προεπιλογή για τα προϊόντα που αγοράστηκαν στην ΕΟΚ (χρησιμοποιείται αν δεν ορίζεται στο φύλλο προϊόντος) @@ -300,7 +301,7 @@ ListOfProductsWithoutAccountingAccount=Κατάλογος προϊόντων π ChangeBinding=Αλλάξτε τη σύνδεση Accounted=Καταχωρήθηκε στο καθολικό NotYetAccounted=Δεν έχει μεταφερθεί ακόμη στη λογιστική -ShowTutorial=Εμφάνιση εκπαιδευτικού προγράμματος +ShowTutorial=Εμφάνιση Οδηγού NotReconciled=Δεν ταιριάζουν WarningRecordWithoutSubledgerAreExcluded=Προειδοποίηση, όλες οι γραμμές χωρίς καθορισμένο λογαριασμό βοηθητικού καθολικού φιλτράρονται και εξαιρούνται από αυτήν την προβολή AccountRemovedFromCurrentChartOfAccount=Λογαριασμός λογιστικής που δεν υπάρχει στο τρέχον λογιστικό σχέδιο @@ -332,7 +333,7 @@ ACCOUNTING_DISABLE_BINDING_ON_EXPENSEREPORTS=Απενεργοποίηση δέσ ## Export NotifiedExportDate=Επισημάνετε τις εξαγόμενες γραμμές ως Εξαγόμενες (για να τροποποιήσετε μια γραμμή, θα χρειαστεί να διαγράψετε ολόκληρη τη συναλλαγή και να τη μεταφέρετε ξανά στη λογιστική) -NotifiedValidationDate=Επικύρωση και Κλείδωμα των εξαγόμενων καταχωρήσεων (το ίδιο αποτέλεσμα με τη λειτουργία "Κλείσιμο", η τροποποίηση και η διαγραφή των γραμμών ΣΙΓΟΥΡΑ δεν θα είναι δυνατή) +NotifiedValidationDate=Επικύρωση και Κλείδωμα των εξαγόμενων καταχωρήσεων (το ίδιο αποτέλεσμα με τη δυνατότητα "%s", η τροποποίηση και η διαγραφή των γραμμών ΣΙΓΟΥΡΑ δεν θα είναι δυνατή) DateValidationAndLock=Ημερομηνία επικύρωσης και κλειδώματος ConfirmExportFile=Επιβεβαίωση δημιουργίας του λογιστικού αρχείου εξαγωγής ; ExportDraftJournal=Εξαγωγή σχεδίου περιοδικού @@ -350,7 +351,7 @@ Modelcsv_agiris=Εξαγωγή για Agiris Isacompta Modelcsv_LDCompta=Εξαγωγή για LD Compta (v9) (Δοκιμή) Modelcsv_LDCompta10=Εξαγωγή για LD Compta (v10 και άνω) Modelcsv_openconcerto=Εξαγωγή για OpenConcerto (Test) -Modelcsv_configurable=Εξαγωγή CSV εξαγωγής +Modelcsv_configurable=Εξαγωγή CSV με δυνατότητα διαμόρφωσης Modelcsv_FEC=Εξαγωγή FEC Modelcsv_FEC2=Εξαγωγή FEC (Με γραφή δημιουργίας ημερομηνιών/αντιστροφή εγγράφου) Modelcsv_Sage50_Swiss=Εξαγωγή για Sage 50 Ελβετία @@ -361,12 +362,12 @@ Modelcsv_charlemagne=Εξαγωγή για το Aplim Charlemagne ChartofaccountsId=Λογαριασμός Id ## Tools - Init accounting account on product / service -InitAccountancy=Λογιστική αρχής +InitAccountancy=Έναρξη λογιστικής InitAccountancyDesc=Αυτή η σελίδα μπορεί να χρησιμοποιηθεί για την προετοιμασία ενός λογαριασμού λογιστικής σε προϊόντα και υπηρεσίες που δεν έχουν λογιστικό λογαριασμό που καθορίζεται για τις πωλήσεις και τις αγορές. DefaultBindingDesc=Αυτή η σελίδα μπορεί να χρησιμοποιηθεί για τον ορισμό ενός προεπιλεγμένου λογαριασμού που θα χρησιμοποιηθεί για να συνδέσει τις εγγραφές συναλλαγών σχετικά με τους μισθούς πληρωμής, τη δωρεά, τους φόρους και τις δεξαμενές όταν δεν έχει ήδη καθοριστεί συγκεκριμένος λογαριασμός λογιστικής. DefaultClosureDesc=Αυτή η σελίδα μπορεί να χρησιμοποιηθεί για να ορίσετε τις παραμέτρους που χρησιμοποιούνται για τα λογιστικά κλεισίματα. Options=Επιλογές -OptionModeProductSell=Κατάσταση πωλήσεων +OptionModeProductSell=Λειτουργία πωλήσεων OptionModeProductSellIntra=Mode πωλήσεις που εξάγονται στην ΕΟΚ OptionModeProductSellExport=Mode πωλήσεις που εξάγονται σε άλλες χώρες OptionModeProductBuy=Κατάσταση αγορών @@ -379,11 +380,11 @@ OptionModeProductBuyDesc=Εμφάνιση όλων των προϊόντων μ OptionModeProductBuyIntraDesc=Εμφάνιση όλων των προϊόντων με λογιστικό λογαριασμό για αγορές σε ΕΟΚ. OptionModeProductBuyExportDesc=Εμφάνιση όλων των προϊόντων με λογιστικό λογαριασμό για άλλες αγορές στο εξωτερικό. CleanFixHistory=Αφαιρέστε τον κωδικό λογιστικής από γραμμές που δεν υπάρχουν στο λογιστικό σχέδιο -CleanHistory=Επαναφέρετε όλες τις συνδέσεις για το επιλεγμένο έτος +CleanHistory=Επαναφέρετε όλες τις δεσμεύσεις για το επιλεγμένο έτος PredefinedGroups=Προκαθορισμένες ομάδες WithoutValidAccount=Χωρίς έγκυρο αποκλειστικό λογαριασμό WithValidAccount=Με έγκυρο αποκλειστικό λογαριασμό -ValueNotIntoChartOfAccount=Αυτή η αξία του λογαριασμού λογιστικής δεν υπάρχει στο λογαριασμό λογαριασμού +ValueNotIntoChartOfAccount=Αυτή η αξία λογιστικού λογαριασμού δεν υπάρχει στο λογιστικό σχέδιο AccountRemovedFromGroup=Ο λογαριασμός αφαιρέθηκε από την ομάδα SaleLocal=Τοπική πώληση SaleExport=Εξαγωγική πώληση @@ -427,20 +428,21 @@ SorryThisModuleIsNotCompatibleWithTheExperimentalFeatureOfSituationInvoices=Λυ AccountancyErrorMismatchLetterCode=Αναντιστοιχία στον κώδικα συμφιλίωσης AccountancyErrorMismatchBalanceAmount=Το υπόλοιπο (%s) δεν είναι ίσο με 0 AccountancyErrorLetteringBookkeeping=Παρουσιάστηκαν σφάλματα σχετικά με τις συναλλαγές: %s +ErrorAccountNumberAlreadyExists=Ο λογιστικός αριθμός %s υπάρχει ήδη ## Import ImportAccountingEntries=Λογιστικές εγγραφές ImportAccountingEntriesFECFormat=Λογιστικές εγγραφές - Μορφή FEC FECFormatJournalCode=Kώδικας ημερολογίου (JournalCode) FECFormatJournalLabel=Ετικέτα ημερολογίου (JournalLib) -FECFormatEntryNum=Αριθμός τεμαχίου (EcritureNum) -FECFormatEntryDate=Ημερομηνία τεμαχίου (EcritureDate) +FECFormatEntryNum=Αριθμός καταχώρησης (EcritureNum) +FECFormatEntryDate=Ημερομηνία καταχώρησης (EcritureDate) FECFormatGeneralAccountNumber=Γενικός αριθμός λογαριασμού (CompteNum) FECFormatGeneralAccountLabel=Γενική ετικέτα λογαριασμού (CompteLib) FECFormatSubledgerAccountNumber=Αριθμός λογαριασμού Βοηθητικού καθολικού (CompAuxNum) FECFormatSubledgerAccountLabel=Αριθμός λογαριασμού Βοηθητικού καθολικού (CompAuxLib) -FECFormatPieceRef=Αναφορά τεμαχίου (PieceRef) -FECFormatPieceDate=Δημιουργία ημερομηνίας τεμαχίου (PieceDate) +FECFormatPieceRef=Αναφορά καταχώρησης (PieceRef) +FECFormatPieceDate=Δημιουργία ημερομηνίας καταχώρησης (PieceDate) FECFormatLabelOperation=Λειτουργία ετικέτας (EcritureLib) FECFormatDebit=Χρεωστική (Χρεωστική) FECFormatCredit=Πίστωση (Πίστωση) diff --git a/htdocs/langs/el_GR/admin.lang b/htdocs/langs/el_GR/admin.lang index abd84623bbb..804f757c176 100644 --- a/htdocs/langs/el_GR/admin.lang +++ b/htdocs/langs/el_GR/admin.lang @@ -140,7 +140,7 @@ OSTZ=Ζώνη ώρας του λειτουργικού συστήματος το PHPTZ=Ζώνη Ώρας διακομιστή PHP DaylingSavingTime=Η θερινή ώρα (χρήστη) CurrentHour=Ώρα PHP (server) -CurrentSessionTimeOut=Χρονικό όριο περιόδου λειτουργίας τρέχουσας συνοδού +CurrentSessionTimeOut=Λήξη τρέχουσας σύνδεσης YouCanEditPHPTZ=Για να ορίσετε μια διαφορετική ζώνη ώρας PHP (δεν απαιτείται), μπορείτε να προσπαθήσετε να προσθέσετε ένα αρχείο .htaccess με μια γραμμή όπως αυτή "SetEnv TZ Europe / Paris"\n HoursOnThisPageAreOnServerTZ=Προειδοποίηση, σε αντίθεση με άλλες οθόνες, οι ώρες σε αυτήν τη σελίδα δεν βρίσκονται στην τοπική ζώνη ώρας, αλλά στη ζώνη ώρας του διακομιστή. Box=Γραφικό στοιχείο @@ -202,7 +202,7 @@ AddDropTable=Προσθήκη εντολής DROP TABLE ExportStructure=Δομή NameColumn=Ονόματα Στηλών ExtendedInsert=Εκτεταμένη INSERT -NoLockBeforeInsert=Δεν υπάρχουν εντολές κλειδώματος ασφαλείας γύρω από INSERT +NoLockBeforeInsert=No lock commands around INSERT DelayedInsert=Delayed insert EncodeBinariesInHexa=Κωδικοποίηση δυαδικών δεδομένων σε δεκαεξαδική IgnoreDuplicateRecords=Αγνόηση σφαλμάτων διπλότυπων εγγραφών (INSERT IGNORE) @@ -295,7 +295,7 @@ MAIN_MAIL_SMTP_PORT_NotAvailableOnLinuxLike=Θύρα SMTP / SMTPS (Δεν έχε MAIN_MAIL_SMTP_SERVER_NotAvailableOnLinuxLike=SMTP / SMTPS Host (Δεν έχει οριστεί σε PHP σε συστήματα τύπου Unix) MAIN_MAIL_EMAIL_FROM=Email αποστολέα για αυτόματα μηνύματα ηλεκτρονικού ταχυδρομείου (προεπιλεγμένη τιμή στο php.ini: %s ) MAIN_MAIL_ERRORS_TO=Το Email που χρησιμοποιείται για σφάλματα επιστρέφει τα email (με πεδία 'Errors-To' στα απεσταλμένα email) -MAIN_MAIL_AUTOCOPY_TO= Αντιγράψτε (Bcc) όλα τα emails που στάλθηκαν +MAIN_MAIL_AUTOCOPY_TO= Αντιγράψτε (Bcc Κρυφή κοινοποίηση) όλα τα αποσταλμένα email στο MAIN_DISABLE_ALL_MAILS=Απενεργοποιήστε όλες τις αποστολές ηλεκτρονικού ταχυδρομείου (για δοκιμαστικούς σκοπούς ή demos) MAIN_MAIL_FORCE_SENDTO=Στείλτε όλα τα μηνύματα ηλεκτρονικού ταχυδρομείου σε (αντί για πραγματικούς παραλήπτες, για σκοπούς δοκιμής) MAIN_MAIL_ENABLED_USER_DEST_SELECT=Προτείνετε email υπάλληλων σας (εάν έχουν οριστεί) στη λίστα των προκαθορισμένων παραληπτών κατά τη σύνταξη ενός νέου email @@ -450,17 +450,17 @@ ExtrafieldCheckBox=Πλαίσια ελέγχου ExtrafieldCheckBoxFromList=Πλαίσια ελέγχου από τον πίνακα ExtrafieldLink=Σύνδεσμος με ένα αντικείμενο ComputedFormula=Υπολογισμένο πεδίο -ComputedFormulaDesc=Μπορείτε να εισαγάγετε εδώ έναν τύπο χρησιμοποιώντας άλλες ιδιότητες αντικειμένου ή οποιαδήποτε κωδικοποίηση PHP για να λάβετε μια δυναμική υπολογισμένη τιμή. Μπορείτε να χρησιμοποιήσετε οποιονδήποτε τύπο συμβατό με PHP, συμπεριλαμβανομένου του "?" τελεστής συνθηκών και ακόλουθο καθολικό αντικείμενο: $ db, $ conf, $ langs, $ mysoc, $ user, $ object .
ΠΡΟΕΙΔΟΠΟΙΗΣΗ : Μόνο ορισμένες ιδιότητες του αντικειμένου $ ενδέχεται να είναι διαθέσιμες. Εάν χρειάζεστε ιδιότητες που δεν έχουν φορτωθεί, απλώς φέρετε στον εαυτό σας το αντικείμενο στον τύπο σας, όπως στο δεύτερο παράδειγμα.
Η χρήση ενός υπολογισμένου πεδίου σημαίνει ότι δεν μπορείτε να εισαγάγετε στον εαυτό σας καμία τιμή από τη διεπαφή. Επίσης, εάν υπάρχει σφάλμα σύνταξης, ο τύπος ενδέχεται να μην επιστρέψει τίποτα.

Παράδειγμα τύπου:
$ αντικείμενο-> id < 10 ? round($object-> id / 2, 2): ($ αντικείμενο-> id + 2 * $ user-> id) * (int) substr ($ mysoc-> zip, 1, )

Παράδειγμα επαναφόρτωσης αντικειμένου
(($ reloadedobj = new Societe ($ db)) && ($ reloadedobj-> fetchNoCompute ($ obj-> id? $ obj-> id - $ $ > rowid: $ αντικείμενο-> id))> 0)); $ reloadedobj-> array_options ['options_extrafieldkey'] * $ reloadedobj-> capital / 5: '-1'

Άλλο παράδειγμα φόρμουλας για την επιβολή φόρτου του αντικειμένου και του γονικού αντικειμένου:
(($ reloadedobj ) && ($ reloadedobj-> fetchNoCompute ($ object-> id)> 0) && ($ secondloadedobj = new Project ($ db)) && ($ secondloadedobj-> fetchNoCompute ($ reloadedobj-> fk_project)> 0)); $ secondloadedobj-> ref: "Το γονικό έργο δεν βρέθηκε" +ComputedFormulaDesc=Μπορείτε να εισαγάγετε εδώ έναν τύπο χρησιμοποιώντας άλλες ιδιότητες αντικειμένου ή οποιαδήποτε κωδικοποίηση PHP για να λάβετε μια δυναμικά υπολογισμένη τιμή. Μπορείτε να χρησιμοποιήσετε οποιουσδήποτε τύπους συμβατούς με PHP, συμπεριλαμβανομένου του τελεστή συνθήκης "?" και το ακόλουθο καθολικό αντικείμενο: $db, $conf, $langs, $mysoc, $user, $object .
ΠΡΟΕΙΔΟΠΟΙΗΣΗ : Μόνο ορισμένες ιδιότητες του $object ενδέχεται να είναι διαθέσιμες. Εάν χρειάζεστε ιδιότητες που δεν έχουν φορτωθεί, απλώς συμπεριλάβετε το αντικείμενο στον τύπο σας όπως στο δεύτερο παράδειγμα.
Η χρήση ενός υπολογιστικού πεδίου σημαίνει ότι δεν μπορείτε να εισαγάγετε καμία τιμή από τη διεπαφή. Επίσης, εάν υπάρχει συντακτικό σφάλμα, ο τύπος ενδέχεται να μην επιστρέψει τίποτα.

Παράδειγμα τύπου:
$object->id < 10 ? round($object->id / 2, 2): ($object->id + 2 * $user->id) * (int) substr($mysoc->zip, 1, 2)

Παράδειγμα για επαναφόρτωση του αντικειμένου
(($reloadedobj = new Societe($db)) && ($reloadedobj->fetchNoCompute($obj->id ? $obj->id: ($obj->rowid ? $obj->rowid: $object->id)) > 0)) ? $reloadedobj->array_options['options_extrafieldkey'] * $reloadedobj->capital / 5: '-1'

Άλλο παράδειγμα τύπου για την επιβολή φόρτωσης του αντικειμένου και του γονικού του αντικειμένου:
(($reloadedobj = new Task($db)) && ($reloadedobj->fetchNoCompute($object->id) > 0) && ($secondloadedobj = new Project($db)) && ($secondloadedobj->fetchNoCompute($reloadedobj->fk_project) > 0)) ? $secondloadedobj->ref: 'Parent project not found' Computedpersistent=Αποθηκεύστε το υπολογισμένο πεδίο -ComputedpersistentDesc=Τα υπολογισμένα επιπλέον πεδία θα αποθηκευτούν στη βάση δεδομένων, ωστόσο, η τιμή θα υπολογιστεί εκ νέου μόνο όταν αλλάξει το αντικείμενο αυτού του πεδίου. Εάν το υπολογιζόμενο πεδίο εξαρτάται από άλλα αντικείμενα ή παγκόσμια δεδομένα, αυτή η τιμή μπορεί να είναι λάθος! -ExtrafieldParamHelpPassword=Αφήνοντας αυτό το πεδίο κενό σημαίνει ότι αυτή η τιμή θα αποθηκευτεί χωρίς κρυπτογράφηση (το πεδίο πρέπει να κρυφτεί μόνο με το αστέρι στην οθόνη).
Ρυθμίστε 'auto' για να χρησιμοποιήσετε τον προεπιλεγμένο κανόνα κρυπτογράφησης για να αποθηκεύσετε τον κωδικό πρόσβασης στη βάση δεδομένων (τότε η ανάγνωση της τιμής θα είναι μόνο ο κατακερματισμός, κανένας τρόπος για να ανακτήσετε την αρχική τιμή) +ComputedpersistentDesc=Τα υπολογισμένα επιπλέον πεδία θα αποθηκευτούν στη βάση δεδομένων, ωστόσο, η τιμή θα επανυπολογιστεί μόνο όταν αλλάξει το αντικείμενο αυτού του πεδίου. Εάν το υπολογισμένο πεδίο εξαρτάται από άλλα αντικείμενα ή καθολικά δεδομένα, αυτή η τιμή μπορεί να είναι λανθασμένη!! +ExtrafieldParamHelpPassword=Αφήνοντας αυτό το πεδίο κενό σημαίνει ότι αυτή η τιμή θα αποθηκευτεί χωρίς κρυπτογράφηση (το πεδίο πρέπει να είναι κρυμμένο μόνο από αστεράκια στην οθόνη).
Ρυθμίστε σε 'auto' για να χρησιμοποιήσετε τον προεπιλεγμένο κανόνα κρυπτογράφησης και να αποθηκεύσετε τον κωδικό πρόσβασης στη βάση δεδομένων (τότε θα είναι αναγνώσιμο μόνο το hash της τιμής και δεν υπάρχει κανένας τρόπος για να ανακτήσετε την αρχική τιμή) ExtrafieldParamHelpselect=Η λίστα των τιμών πρέπει να είναι γραμμές με βασικό σχήμα, key,value (όπου το key δεν μπορεί να είναι «0»)

για παράδειγμα:
1, value1
2, value2
code3, value3
...

Για να μπορεί η λίστα να ειναι εξαρτώμενη από μια άλλη συμπληρωματική λίστα χαρακτηριστικών:
1, value1 | options_parent_list_code: parent_key
2, value2 | options_parent_list_code: parent_key

Για να μπορεί η λίστα να ειναι εξαρτώμενη από μια άλλη λίστα:
1, value1|parent_list_code:parent_key
2,value2|parent_list_code:parent_key ExtrafieldParamHelpcheckbox=Η λίστα των τιμών πρέπει να είναι γραμμές με βασικό σχήμα, key,value (όπου το key δεν μπορεί να είναι «0»)

για παράδειγμα:
1,value1
2,value2
3, value3
... ExtrafieldParamHelpradio=Η λίστα των τιμών πρέπει να είναι γραμμές με βασικό σχήμα, key,value (όπου το key δεν μπορεί να είναι «0»)

για παράδειγμα:
1,value1
2,value2
3, value3
... ExtrafieldParamHelpsellist=Η λίστα τιμών προέρχεται από έναν πίνακα
Σύνταξη: table_name:label_field:id_field::filtersql
Παράδειγμα: c_typent:libelle:id::filtersql

- id_field ειναι οπωσδήποτε ένα primary int key
- filtersql is a SQL condition.Μπορεί να είναι μια απλή δοκιμή (π.χ. active=1) για να εμφανιστεί μόνο η ενεργή τιμή
Μπορείτε επίσης να χρησιμοποιήσετε το $ID$ στο φίλτρο που είναι το τρέχον αναγνωριστικό του τρέχοντος αντικειμένου
Για να χρησιμοποιήσετε ένα SELECT στο φίλτρο χρησιμοποιήστε τη λέξη-κλειδί $SEL$ για την παράκαμψη προστασίας anti-injection.
εάν θέλετε να φιλτράρετε σε extrafields, χρησιμοποιήστε τη σύνταξη extra.fieldcode=... (όπου ο κωδικός πεδίου είναι ο κωδικός του extrafield)

Για να μπορεί η λίστα να ειναι εξαρτώμενη από μια άλλη συμπληρωματική λίστα χαρακτηριστικών:
c_typent:libelle:id:options_parent_list_code|parent_column: φίλτρο

Για να μπορεί η λίστα να ειναι εξαρτώμενη από μια άλλη:
c_typent: Libelle: id:parent_list_code |parent_column:filter ExtrafieldParamHelpchkbxlst=Η λίστα τιμών προέρχεται από έναν πίνακα
Σύνταξη: table_name:label_field:id_field::filtersql
Παράδειγμα: c_typent:libelle:id::filtersql

το φίλτρο μπορεί να είναι μια απλή δοκιμή (π.χ. active=1) για να εμφανιστεί μόνο η ενεργή τιμή
Μπορείτε επίσης να χρησιμοποιήσετε το $ID$ στο φίλτρο που είναι το τρέχον αναγνωριστικό του τρέχοντος αντικειμένου
Για να κάνετε SELECT στο φίλτρο χρησιμοποιήστε το $SEL$
εάν θέλετε να φιλτράρετε σε extrafields, χρησιμοποιήστε τη σύνταξη extra.fieldcode=... (όπου ο κωδικός πεδίου είναι ο κωδικός του extrafield)

Για να μπορεί η λίστα να ειναι εξαρτώμενη από μια άλλη συμπληρωματική λίστα:
c_typent: Libelle: id: options_ parent_list_code|parent_column:filter

Για να μπορεί η λίστα να ειναι εξαρτώμενη από μια άλλη:
c_typent: libelle:id:parent_list_code|parent_column:filter ExtrafieldParamHelplink=Parameters must be ObjectName:ClasspathSyntax:
ObjectName:Classpath -ExtrafieldParamHelpSeparator=Κρατήστε κενό για έναν απλό διαχωριστή
Ρυθμίστε το σε 1 για έναν διαχωριστή που αναδιπλώνεται (ανοίγει από προεπιλογή για νέα σύνοδο και στη συνέχεια διατηρείται η κατάσταση για κάθε περίοδο λειτουργίας χρήστη)
Ρυθμίστε αυτό σε 2 για ένα πτυσσόμενο διαχωριστικό (συρρικνώνεται από προεπιλογή για νέα συνεδρία, τότε η κατάσταση διατηρείται για κάθε συνεδρία χρήστη) +ExtrafieldParamHelpSeparator=Διατήρηση κενού για ένα απλό διαχωριστικό
Ορίστε το σε 1 για ένα διαχωριστικό που συμπτύσσεται (ανοιχτό από προεπιλογή για νέα περίοδο λειτουργίας, μετά διατηρείται η κατάσταση για κάθε συνεδρία χρήστη)
Ορίστε το σε 2 για ένα διαχωριστικό που συμπτύσσεται (συμπτυγμένο από προεπιλογή και στη συνέχεια για νέα περίοδο λειτουργίας, η κατάσταση διατηρείται για κάθε συνεδρία χρήστη) LibraryToBuildPDF=Βιβλιοθήκη ενεργοποίησης δημιουργίας PDF LocalTaxDesc=Ορισμένες χώρες ενδέχεται να επιβάλλουν δύο ή τρεις φόρους σε κάθε γραμμή τιμολογίων. Εάν συμβαίνει αυτό, επιλέξτε τον τύπο για τον δεύτερο και τον τρίτο φόρο και τον συντελεστή του. Πιθανοί τύποι είναι:
1: επιβάλλεται τοπικός φόρος για προϊόντα και υπηρεσίες χωρίς ΦΠΑ (ο τοπικός φόρος υπολογίζεται στο ποσό χωρίς φόρο)
2: ο τοπικός φόρος ισχύει για προϊόντα και υπηρεσίες συμπεριλαμβανομένου του ΦΠΑ (ο τοπικός φόρος υπολογίζεται στο ποσό + τον κύριο φόρο)
3:Ισχύει τοπικός φόρος σε προϊόντα χωρίς ΦΠΑ (ο τοπικός φόρος υπολογίζεται στο ποσό χωρίς ΦΠΑ)
4: Ισχύει τοπικός φόρος για προϊόντα συμπεριλαμβανομένου ΦΠΑ (ο τοπικός φόρος υπολογίζεται στο ποσό + κύριος ΦΠΑ)
5: Ο τοπικός φόρος ισχύει για υπηρεσίες χωρίς ΦΠΑ (υπολογίζεται ο τοπικός φόρος επί του ποσού χωρίς φόρο)
6: τοπικός φόρος ισχύει για υπηρεσίες συμπεριλαμβανομένου του ΦΠΑ (ο τοπικός φόρος υπολογίζεται στο ποσό + φόρο) SMS=SMS @@ -468,7 +468,7 @@ LinkToTestClickToDial=Εισάγετε έναν τηλεφωνικό αριθμ RefreshPhoneLink=Ανανέωση συνδέσμου LinkToTest=Δημιουργήθηκε σύνδεσμος για τον χρήστη %s (κάντε κλικ στον αριθμό τηλεφώνου για να τον δοκιμάσετε) KeepEmptyToUseDefault=Αφήστε κενό για να χρησιμοποιήσετε την προεπιλεγμένη τιμή -KeepThisEmptyInMostCases=Στις περισσότερες περιπτώσεις, μπορείτε να διατηρήσετε αυτό το πεδίο ελεύθερο. +KeepThisEmptyInMostCases=Στις περισσότερες περιπτώσεις, μπορείτε να αφήσετε αυτό το πεδίο κενό. DefaultLink=Προεπιλεγμένος σύνδεσμος SetAsDefault=Ορισμός ως προεπιλογή ValueOverwrittenByUserSetup=Προσοχή, αυτή η τιμή μπορεί να αντικατασταθεί από επιλογή του χρήστη (ο κάθε χρήστης μπορεί να κάνει τον δικό του σύνδεσμο clicktodial) @@ -486,8 +486,8 @@ EnableFileCache=Ενεργοποιήστε την προσωρινή μνήμη ShowDetailsInPDFPageFoot=Προσθέστε περισσότερες λεπτομέρειες στο υποσέλιδο, όπως διεύθυνση εταιρείας ή ονόματα διαχειριστών (επιπλέον των επαγγελματικών ταυτοτήτων, του εταιρικού κεφαλαίου και του ΑΦΜ). NoDetails=Δεν υπάρχουν επιπλέον λεπτομέρειες στο υποσέλιδο DisplayCompanyInfo=Εμφάνιση διεύθυνσης επιχείρησης -DisplayCompanyManagers=Εμφάνιση ονόματος διαχειριστή -DisplayCompanyInfoAndManagers=Εμφάνιση της διεύθυνσης της εταιρείας και ονόματα διαχειριστή +DisplayCompanyManagers=Εμφάνιση ονόματος διαχειριστών +DisplayCompanyInfoAndManagers=Εμφάνιση διεύθυνσης εταιρείας και ονομάτων διαχειριστών EnableAndSetupModuleCron=Αν θέλετε αυτό το επαναλαμβανόμενο τιμολόγιο να παράγεται αυτόματα, η ενότητα * %s * πρέπει να ενεργοποιηθεί και να ρυθμιστεί σωστά. Διαφορετικά, η δημιουργία τιμολογίων πρέπει να γίνεται χειροκίνητα από αυτό το πρότυπο χρησιμοποιώντας το κουμπί * Δημιουργία *. Λάβετε υπόψη ότι ακόμη και αν έχετε ενεργοποιήσει την αυτόματη παραγωγή, μπορείτε ακόμα να ξεκινήσετε με ασφάλεια τη χειροκίνητη παραγωγή. Η δημιουργία αντιγράφων για την ίδια περίοδο δεν είναι δυνατή. ModuleCompanyCodeCustomerAquarium=%s που ακολουθείται από τον κωδικό πελάτη για έναν κωδικό λογιστικής πελάτη ModuleCompanyCodeSupplierAquarium=%s που ακολουθείται από τον κωδικό προμηθευτή για έναν κωδικό λογιστικής προμηθευτή @@ -516,24 +516,24 @@ AlsoDefaultValuesAreEffectiveForActionCreate=Λάβετε επίσης υπόψ EnableDefaultValues=Ενεργοποιήστε την προσαρμογή των προεπιλεγμένων τιμών EnableOverwriteTranslation=Ενεργοποιήστε τη χρήση αντικατασταθείσας μετάφρασης GoIntoTranslationMenuToChangeThis=Έχει βρεθεί μετάφραση για το κλειδί με αυτόν τον κωδικό. Για να αλλάξετε αυτήν την τιμή, πρέπει να την επεξεργαστείτε από το μενού Αρχική-Ρυθμίσεις-Μετάφραση. -WarningSettingSortOrder=Προειδοποίηση, ο ορισμός μιας προεπιλεγμένης σειράς ταξινόμησης μπορεί να οδηγήσει σε τεχνικό σφάλμα κατά τη μετάβαση στη σελίδα της λίστας εάν το πεδίο είναι άγνωστο πεδίο. Εάν αντιμετωπίσετε ένα τέτοιο σφάλμα, επιστρέψτε σε αυτήν τη σελίδα για να καταργήσετε την προεπιλεγμένη σειρά ταξινόμησης και να επαναφέρετε την προεπιλεγμένη συμπεριφορά. +WarningSettingSortOrder=Προειδοποίηση, ο ορισμός μιας προεπιλεγμένης σειράς ταξινόμησης μπορεί να οδηγήσει σε τεχνικό σφάλμα κατά τη μετάβαση στη σελίδα της λίστας εάν το πεδίο είναι άγνωστο. Εάν αντιμετωπίσετε ένα τέτοιο σφάλμα, επιστρέψτε σε αυτήν τη σελίδα για να καταργήσετε την προεπιλεγμένη σειρά ταξινόμησης και να επαναφέρετε την προεπιλεγμένη συμπεριφορά. Field=Πεδίο ProductDocumentTemplates=Πρότυπα εγγράφων για τη δημιουργία εγγράφου προϊόντος -FreeLegalTextOnExpenseReports=Δωρεάν νομικό κείμενο σχετικά με τις εκθέσεις δαπανών -WatermarkOnDraftExpenseReports=Υδατογράφημα για τις εκθέσεις περί δαπανών -ProjectIsRequiredOnExpenseReports=Το έργο είναι υποχρεωτικό για την εισαγωγή αναφοράς εξόδων +FreeLegalTextOnExpenseReports=Ελεύθερο νομικό κείμενο στις αναφορές δαπανών +WatermarkOnDraftExpenseReports=Υδατογράφημα σε προσχέδια εκθέσεων εξόδων +ProjectIsRequiredOnExpenseReports=Το έργο είναι υποχρεωτικό κατά την εισαγωγή αναφοράς εξόδων PrefillExpenseReportDatesWithCurrentMonth=Προσυμπληρώστε τις ημερομηνίες έναρξης και λήξης της νέας αναφοράς εξόδων με ημερομηνίες έναρξης και λήξης του τρέχοντος μήνα -ForceExpenseReportsLineAmountsIncludingTaxesOnly=Υποχρεώστε την καταχώριση ποσών αναφοράς εξόδων πάντα σε ποσό με φόρους -AttachMainDocByDefault=Ρυθμίστε αυτό στο 1 εάν θέλετε να επισυνάψετε το κύριο έγγραφο σε email από προεπιλογή (αν υπάρχει) +ForceExpenseReportsLineAmountsIncludingTaxesOnly=Υποχρεώστε την καταχώριση ποσών αναφοράς εξόδων πάντα σε ποσό με Φ.Π.Α. +AttachMainDocByDefault=Ορίστε το σε 1 εάν θέλετε να επισυνάψετε το κύριο έγγραφο στο email από προεπιλογή (εάν υπάρχει) FilesAttachedToEmail=Επισυνάψετε το αρχείο -SendEmailsReminders=Αποστολή υπενθυμίσεων της ημερήσιας διάταξης μέσω ηλεκτρονικού ταχυδρομείου +SendEmailsReminders=Στείλτε υπενθυμίσεις ατζέντας μέσω email davDescription=Ρυθμίστε έναν διακομιστή WebDAV -DAVSetup=Ρύθμιση της μονάδας DAV -DAV_ALLOW_PRIVATE_DIR=Ενεργοποίηση του γενικού ιδιωτικού καταλόγου (αποκλειστικός κατάλογος WebDAV που ονομάζεται "ιδιωτικός" - απαιτείται σύνδεση) -DAV_ALLOW_PRIVATE_DIRTooltip=Ο γενικός ιδιωτικός κατάλογος είναι ένας κατάλογος WebDAV ο οποίος μπορεί να έχει πρόσβαση οποιοσδήποτε με την εφαρμογή login / pass. +DAVSetup=Ρύθμιση της ενότητας DAV +DAV_ALLOW_PRIVATE_DIR=Ενεργοποιήστε τον γενικό ιδιωτικό κατάλογο (αποκλειστικός κατάλογος WebDAV με το όνομα "private" - απαιτείται σύνδεση) +DAV_ALLOW_PRIVATE_DIRTooltip=Ο γενικός ιδιωτικός κατάλογος είναι ένας κατάλογος WebDAV στον οποίο μπορεί να έχει πρόσβαση οποιοσδήποτε με τα login / pass της εφαρμογής DAV_ALLOW_PUBLIC_DIR=Ενεργοποίηση του γενικού δημόσιου καταλόγου (αποκλειστικός κατάλογος WebDAV που ονομάζεται "δημόσιο" - δεν απαιτείται σύνδεση) DAV_ALLOW_PUBLIC_DIRTooltip=Ο γενικός δημόσιος κατάλογος είναι ένας κατάλογος WebDAV ο οποίος μπορεί να έχει πρόσβαση οποιοσδήποτε (σε λειτουργία ανάγνωσης και εγγραφής), χωρίς την απαιτούμενη εξουσιοδότηση (λογαριασμός σύνδεσης / κωδικού πρόσβασης). -DAV_ALLOW_ECM_DIR=Ενεργοποίηση του ιδιωτικού καταλόγου DMS / ECM (ριζικός κατάλογος της μονάδας DMS / ECM - απαιτείται σύνδεση) +DAV_ALLOW_ECM_DIR=Ενεργοποίηση του ιδιωτικού καταλόγου DMS / ECM (ριζικός κατάλογος της ενότητας DMS / ECM - απαιτείται σύνδεση) DAV_ALLOW_ECM_DIRTooltip=Ο ριζικός κατάλογος όπου όλα τα αρχεία μεταφορτώνονται με το χέρι κατά τη χρήση της μονάδας DMS / ECM. Ομοίως με την πρόσβαση από τη διεπαφή ιστού, θα χρειαστείτε έγκυρο όνομα σύνδεσης / κωδικό πρόσβασης με δικαιώματα πρόσβασης για πρόσβαση σε αυτήν. # Modules Module0Name=Χρήστες και Ομάδες @@ -550,7 +550,7 @@ Module22Name=Μαζικές αποστολές ηλεκτρονικού ταχυ Module22Desc=Διαχείριση μαζικής αποστολής email Module23Name=Ενέργεια Module23Desc=Παρακολούθηση κατανάλωσης ενέργειας -Module25Name=Πωλήσεις Παραγγελίες +Module25Name=Παραγγελίες Πωλήσεων Module25Desc=Διαχείριση Παραγγελιών Πωλήσεων Module30Name=Τιμολόγια Module30Desc=Διαχείριση τιμολογίων και πιστωτικών σημειώσεων για πελάτες. Διαχείριση τιμολογίων και πιστωτικών σημειώσεων για προμηθευτές @@ -580,7 +580,7 @@ Module57Name=Πληρωμές μέσω πάγιας εντολής Module57Desc=Διαχείριση πληρωμών πάγιας εντολής. Περιλαμβάνει τη δημιουργία αρχείου SEPA για ευρωπαϊκές χώρες. Module58Name=ClickToDial Module58Desc=Ενσωμάτωση συστήματος ClickToDial (Asterisk, ...) -Module60Name=Αυτοκόλλητες ετικέτες +Module60Name=Αυτοκόλλητα Module60Desc=Διαχείριση αυτοκόλλητων ετικετών Module70Name=Παρεμβάσεις Module70Desc=Διαχείριση παρεμβάσεων @@ -718,7 +718,7 @@ Permission34=Διαγραφή προϊόντων Permission36=Έλεγχος/διαχείριση κρυφών προϊόντων Permission38=Εξαγωγή προϊόντων Permission39=Αγνόηση ελάχιστης τιμής -Permission41=Ανάγνωση έργων και εργασιών (κοινόχρηστα έργα και έργα στα οποία είμαι επαφή). +Permission41=Ανάγνωση έργων και εργασιών (κοινά έργα και έργα στα οποία είμαι επαφή). Permission42=Δημιουργία/τροποποίηση έργων (κοινόχρηστα έργα και έργα των οποίων είμαι επαφή). Μπορεί επίσης να αναθέτει χρήστες σε έργα και εργασίες Permission44=Διαγραφή έργων (κοινόχρηστα έργα και έργα στα οποία είμαι επαφή) Permission45=Εξαγωγή έργων @@ -768,7 +768,7 @@ Permission126=Εξαγωγή τρίτων μερών Permission130=Δημιουργία/τροποποίηση στοιχείων πληρωμής τρίτων μερών Permission141=Ανάγνωση όλων των έργων και εργασιών (καθώς και τα ιδιωτικά έργα για τα οποία δεν είμαι επαφή) Permission142=Δημιουργία/τροποποίηση όλων των έργων και εργασιών (καθώς και των ιδιωτικών έργων για τα οποία δεν είμαι επαφή) -Permission144=Διαγραφή όλων των έργων και εργασιών (καθώς και των ιδιωτικών έργων με τα οποία δεν είμαι επαφή) +Permission144=Διαγραφή όλων των έργων και εργασιών (καθώς και των ιδιωτικών έργων για τα οποία δεν είμαι επαφή) Permission145=Μπορεί να εισαγάγει τον χρόνο που καταναλώνεται, για εμένα ή την ιεραρχία μου, σε εργασίες που έχουν ανατεθεί (Φύλλο χρόνου) Permission146=Ανάγνωση παρόχων Permission147=Ανάγνωση στατιστικών στοιχείων @@ -798,26 +798,26 @@ Permission187=Κλείσιμο παραγγελιών αγοράς Permission188=Ακύρωση εντολών αγοράς Permission192=Δημιουργία γραμμών Permission193=Ακύρωση γραμμών -Permission194=Διαβάστε τις γραμμές εύρους ζώνης +Permission194=Ανάγνωση γραμμών εύρους ζώνης Permission202=Δημιουργία συνδέσεων ADSL -Permission203=Παραγγείλετε εντολές σύνδεσης -Permission204=Order connections +Permission203=Εντολές σύνδεσης +Permission204=Εντολές σύνδεσης Permission205=Διαχείριση συνδέσεων -Permission206=Διαβάστε τις συνδέσεις -Permission211=Διαβάστε την τηλεφωνία +Permission206=Ανάγνωση συνδέσεων +Permission211=Ανάγνωση τηλεφωνίας Permission212=Παραγγείλετε γραμμές Permission213=Ενεργοποιήση γραμμής -Permission214=Εγκατάσταση τηλεφωνίας +Permission214=Ρύθμιση τηλεφωνίας Permission215=Εγκατάσταση παρόχου -Permission221=Διαβάστε μηνύματα ηλεκτρονικού ταχυδρομείου -Permission222=Δημιουργία / τροποποίηση μηνυμάτων ηλεκτρονκού ταχυδρομείου (θέμα, παραλήπτες ...) -Permission223=Επικύρωση μηνυμάτων ηλεκτρονκού ταχυδρομείου (επιτρέπει την αποστολή) +Permission221=Ανάγνωση μηνυμάτων ηλεκτρονικού ταχυδρομείου +Permission222=Δημιουργία / τροποποίηση μηνυμάτων ηλεκτρονικού ταχυδρομείου (θέμα, παραλήπτες ...) +Permission223=Επικύρωση μηνυμάτων ηλεκτρονικού ταχυδρομείου (επιτρέπει την αποστολή) Permission229=Διαγραφή μηνυμάτων ηλεκτρονικού ταχυδρομείου Permission237=Προβολή παραληπτών και πληροφοριών Permission238=Χειροκίνητη αποστολή αλληλογραφίας Permission239=Διαγραφή μηνυμάτων ηλεκτρονκού ταχυδρομείου μετά την επικύρωση ή την αποστολή -Permission241=Διαβάστε τις κατηγορίες -Permission242=Δημιουργία / τροποποίηση κατηγοριών +Permission241=Ανάγνωση κατηγοριών +Permission242=Δημιουργία/τροποποίηση κατηγοριών Permission243=Διαγραφή κατηγοριών Permission244=Δείτε τα περιεχόμενα των κρυφών κατηγοριών Permission251=Διαβάστε άλλους χρήστες και ομάδες @@ -826,10 +826,10 @@ Permission252=Διαβάστε τα δικαιώματα άλλων χρηστώ Permission253=Δημιουργία / τροποποίηση άλλων χρηστών, ομάδων και δικαιωμάτων PermissionAdvanced253=Δημιουργία / τροποποίηση εσωτερικών / εξωτερικών χρηστών και αδειών Permission254=Δημιουργία / τροποποίηση μόνο εξωτερικών χρηστών -Permission255=Τροποποιήστε τον κωδικό άλλων χρηστών -Permission256=Διαγράψτε ή απενεργοποιήστε άλλους χρήστες -Permission262=Επέκταση της πρόσβασης σε όλα τα τρίτα μέρη ΚΑΙ τα αντικείμενά τους (όχι μόνο τρίτα μέρη για τα οποία ο χρήστης είναι αντιπρόσωπος πωλήσεων).
Δεν είναι αποτελεσματικό για εξωτερικούς χρήστες (περιορίζονται πάντα στους εαυτούς τους για προτάσεις, παραγγελίες, τιμολόγια, συμβάσεις κ.λπ.).
Δεν ισχύει για έργα (μόνο κανόνες για τις άδειες έργων, την προβολή και τα θέματα ανάθεσης). -Permission263=Επέκταση της πρόσβασης σε όλα τα τρίτα μέρη ΧΩΡΙΣ τα αντικείμενά τους (όχι μόνο τρίτα μέρη για τα οποία ο χρήστης είναι αντιπρόσωπος πωλήσεων).
Δεν είναι αποτελεσματικό για εξωτερικούς χρήστες (περιορίζονται πάντα στους εαυτούς τους για προτάσεις, παραγγελίες, τιμολόγια, συμβάσεις κ.λπ.).
Δεν ισχύει για έργα (μόνο κανόνες για τις άδειες έργων, την προβολή και τα θέματα ανάθεσης). +Permission255=Τροποποίηση κωδικού άλλων χρηστών +Permission256=Διαγραφή ή απενεργοποίηση άλλων χρήστων +Permission262=Επέκταση της πρόσβασης σε όλα τα τρίτα μέρη ΚΑΙ τα αντικείμενά τους (όχι μόνο τρίτα μέρη για τα οποία ο χρήστης είναι αντιπρόσωπος πωλήσεων).
Δεν είναι αποτελεσματικό για εξωτερικούς χρήστες (περιορίζονται πάντα στους εαυτούς τους για προτάσεις, παραγγελίες, τιμολόγια, συμβάσεις κ.λπ.).
Δεν ισχύει για έργα (μόνο σε κανόνες για τις άδειες έργων, την προβολή και τα θέματα ανάθεσης). +Permission263=Επέκταση της πρόσβασης σε όλα τα τρίτα μέρη ΧΩΡΙΣ τα αντικείμενά τους (όχι μόνο τρίτα μέρη για τα οποία ο χρήστης είναι αντιπρόσωπος πωλήσεων).
Δεν είναι αποτελεσματικό για εξωτερικούς χρήστες (περιορίζονται πάντα στους εαυτούς τους για προτάσεις, παραγγελίες, τιμολόγια, συμβάσεις κ.λπ.).
Δεν ισχύει για έργα (μόνο σε κανόνες για τις άδειες έργων, την προβολή και τα θέματα ανάθεσης). Permission271=Read CA Permission272=Διαβάστε τιμολόγια Permission273=Έκδοση τιμολογίων @@ -855,7 +855,7 @@ Permission344=Τροποποιήστε τα δικά του δικαιώματα Permission351=Διαβάστε τις ομάδες Permission352=Διαβάστε τα δικαιώματα ομάδας Permission353=Δημιουργία / τροποποίηση ομάδων -Permission354=Διαγράψτε ή απενεργοποιήστε τις ομάδες +Permission354=Διαγραφή ή απενεργοποίηση ομάδων Permission358=Εξαγωγή χρηστών Permission401=Διαβάστε τις εκπτώσεις Permission402=Δημιουργία / τροποποίηση εκπτώσεων @@ -928,7 +928,7 @@ Permission1181=Διαβάστε προμηθευτές Permission1182=Διαβάστε παραγγελίες αγοράς Permission1183=Δημιουργία / τροποποίηση εντολών αγοράς Permission1184=Επικύρωση εντολών αγοράς -Permission1185=Εγκρίνετε τις παραγγελίες αγοράς +Permission1185=Έγκριση εντολών αγοράς Permission1186=Παραγγείλετε παραγγελίες αγοράς Permission1187=Αναγνώριση παραλαβής εντολών αγοράς Permission1188=Διαγραφή εντολών αγοράς @@ -1078,7 +1078,7 @@ DictionaryAssetDisposalType=Είδος διάθεσης περιουσιακών TypeOfUnit=Τύπος μονάδας SetupSaved=Οι ρυθμίσεις αποθηκεύτηκαν SetupNotSaved=Το πρόγραμμα εγκατάστασης δεν αποθηκεύτηκε -BackToModuleList=Επιστροφή στη λίστα λειτουργιών +BackToModuleList=Επιστροφή στη λίστα Ενοτήτων BackToDictionaryList=Επιστροφή στη λίστα λεξικών TypeOfRevenueStamp=Είδος φορολογικής σφραγίδας VATManagement=Διαχείριση Φορολογίας Πωλήσεων @@ -1146,25 +1146,25 @@ PhpWebLink=Web-Php link Server=Server Database=Βάση Δεδομένων DatabaseServer=Υπολογιστής ΒΔ -DatabaseName=Όνομα ΒΔ -DatabasePort=Θύρα ΒΔ -DatabaseUser=Χρήστης ΒΔ -DatabasePassword=Συνθηματικό ΒΔ +DatabaseName=Όνομα βάσης δεδομένων +DatabasePort=Θύρα βάσης δεδομένων +DatabaseUser=Χρήστης βάσης δεδομένων +DatabasePassword=Κωδικός πρόσβασης βάσης δεδομένων Tables=Πίνακες TableName=Όνομα Πίνακα -NbOfRecord=Αριθ. Εγγραφών +NbOfRecord=Αριθμός Εγγραφών Host=Διακομιστής DriverType=Driver type SummarySystem=Σύνοψη πληροφοριών συστήματος -SummaryConst=Λίστα όλων των παραμέτρων ρύθμισης Dolibarr +SummaryConst=Λίστα όλων των παραμέτρων ρύθμισης του Dolibarr MenuCompanySetup=Εταιρεία / Οργανισμός DefaultMenuManager= Τυπικός διαχειριστής μενού DefaultMenuSmartphoneManager=Διαχειριστής μενού Smartphone Skin=Θέμα -DefaultSkin=Προκαθορισμένο Θέμα -MaxSizeList=Max length for list +DefaultSkin=Βασικό Θέμα +MaxSizeList=Μέγιστο μήκος για λίστα DefaultMaxSizeList=Προεπιλεγμένο μέγιστο μέγεθος για λίστες -DefaultMaxSizeShortList=Προεπιλεγμένο μέγιστο μήκος για σύντομες λίστες (δηλ. Σε κάρτα πελάτη) +DefaultMaxSizeShortList=Προεπιλεγμένο μέγιστο μήκος για σύντομες λίστες (π.χ. Σε κάρτα πελάτη) MessageOfDay=Μήνυμα της ημέρας MessageLogin=Μήνυμα σελίδας εισόδου LoginPage=Σελίδα σύνδεσης @@ -1172,7 +1172,7 @@ BackgroundImageLogin=Εικόνα φόντου PermanentLeftSearchForm=Μόνιμη φόρμα αναζήτησης στο αριστερό μενού DefaultLanguage=Προεπιλεγμένη γλώσσα EnableMultilangInterface=Ενεργοποιήστε την πολυγλωσσική υποστήριξη για συσχετισμούς πελατών ή προμηθευτών -EnableShowLogo=Εμφανίστε το λογότυπο της εταιρείας στο μενού +EnableShowLogo=Εμφάνιση του λογότυπου της εταιρείας στο μενού CompanyInfo=Εταιρεία / Οργανισμός CompanyIds=Ταυτότητα εταιρείας / οργανισμού CompanyName=Όνομα @@ -1183,8 +1183,8 @@ CompanyCountry=Χώρα CompanyCurrency=Βασικό Νόμισμα CompanyObject=Αντικείμενο της εταιρίας IDCountry=Χώρα αναγνώρισης -Logo=Logo -LogoDesc=Κύριο λογότυπο της εταιρείας. Θα χρησιμοποιηθεί στα παραγόμενα έγγραφα (PDF, ...) +Logo=Λογότυπο +LogoDesc=Το λογότυπο της εταιρείας. Θα χρησιμοποιηθεί στα παραγόμενα έγγραφα (PDF, ...) LogoSquarred=Λογότυπο (τετράγωνο) LogoSquarredDesc=Πρέπει να είναι ένα τετράγωνο εικονίδιο (πλάτος = ύψος). Αυτό το λογότυπο θα χρησιμοποιηθεί ως το αγαπημένο εικονίδιο ή άλλη ανάγκη, όπως για την επάνω γραμμή μενού (αν δεν είναι απενεργοποιημένη στην εγκατάσταση απεικόνισης). DoNotSuggestPaymentMode=Χωρίς πρόταση πληρωμής @@ -1214,7 +1214,7 @@ Delays_MAIN_DELAY_EXPENSEREPORTS=Έκθεση εξόδων για έγκριση Delays_MAIN_DELAY_HOLIDAYS=Αφήστε τα αιτήματα για έγκριση SetupDescription1=Πριν ξεκινήσετε τη χρήση του Dolibarr πρέπει να οριστούν ορισμένες αρχικές παράμετροι και να ενεργοποιηθούν / διαμορφωθούν οι ενότητες. SetupDescription2=Οι ακόλουθες δύο ενότητες είναι υποχρεωτικές (οι δύο πρώτες καταχωρίσεις στο μενού Ρύθμιση): -SetupDescription3=  %s -> %s

Βασικές παράμετροι που χρησιμοποιούνται για την προσαρμογή της προεπιλεγμένης συμπεριφοράς της εφαρμογής σας (π.χ. για λειτουργίες που σχετίζονται με τη χώρα). +SetupDescription3=%s ->%s

Βασικές παράμετροι που χρησιμοποιούνται για την προσαρμογή της προεπιλεγμένης συμπεριφοράς της εφαρμογής σας (π.χ. για λειτουργίες που σχετίζονται με τη χώρα). SetupDescription4=  %s -> %s

Αυτό το λογισμικό είναι μια σειρά από πολλές ενότητες / εφαρμογές. Οι ενότητες που σχετίζονται με τις ανάγκες σας πρέπει να ενεργοποιηθούν και να διαμορφωθούν. Οι καταχωρήσεις μενού θα εμφανιστούν με την ενεργοποίηση αυτών των ενοτήτων. SetupDescription5=Άλλες καταχωρίσεις μενού ρυθμίσεων διαχειρίζονται προαιρετικές παραμέτρ SetupDescriptionLink= %s - %s @@ -1227,7 +1227,7 @@ InfoDolibarr=Πληροφορίες Dolibarr InfoBrowser=Πληροφορίες Φυλλομετρητή InfoOS=Πληροφορίες OS InfoWebServer=Πληροφορίες Web Server -InfoDatabase=Πληροφορίες Συστήματος ΒΔ +InfoDatabase=Πληροφορίες Βάσης Δεδομένων InfoPHP=Πληροφορίες PHP InfoPerf=Πληροφορίες επιδόσεων InfoSecurity=Σχετικά με την Ασφάλεια @@ -1279,7 +1279,7 @@ BackupPHPWarning=Δεν είναι εγγυημένη η δημιουργία α RestoreDesc=Για να επαναφέρετε ένα αντίγραφο ασφαλείας Dolibarr, απαιτούνται δύο βήματα. RestoreDesc2=Επαναφέρετε το αρχείο αντιγράφων ασφαλείας (για παράδειγμα, αρχείο zip) του καταλόγου "έγγραφα" σε μια νέα εγκατάσταση Dolibarr ή σε αυτόν τον τρέχοντα κατάλογο εγγράφων ( %s ). RestoreDesc3=Επαναφέρετε τη δομή βάσης δεδομένων και τα δεδομένα από ένα αρχείο εφεδρικών αντιγράφων στη βάση δεδομένων της νέας εγκατάστασης Dolibarr ή στη βάση δεδομένων αυτής της τρέχουσας εγκατάστασης ( %s ). Προειδοποίηση, αφού ολοκληρωθεί η επαναφορά, πρέπει να χρησιμοποιήσετε ένα login / password, που υπήρχε από το χρόνο / εγκατάσταση του backup για να συνδεθείτε ξανά.
Για να επαναφέρετε μια εφεδρική βάση δεδομένων σε αυτήν την τρέχουσα εγκατάσταση, μπορείτε να ακολουθήσετε αυτόν τον βοηθό. -RestoreMySQL=MySQL import +RestoreMySQL=Εισαγωγή MySQL ForcedToByAModule=This rule is forced to %s by an activated module ValueIsForcedBySystem=Αυτή η τιμή είναι κλειδωμένη από το σύστημα. Δεν μπορείς να την αλλάξεις. PreviousDumpFiles=Υπάρχοντα αρχεία αντιγράφων ασφαλείας @@ -1348,7 +1348,7 @@ TotalNumberOfActivatedModules=Ενεργοποιημένες μονάδες: YouMustEnableOneModule=You must at least enable 1 module YouMustEnableTranslationOverwriteBefore=Πρέπει πρώτα να ενεργοποιήσετε την αντικατάσταση μετάφρασης για να επιτρέπεται η αντικατάσταση μιας μετάφρασης ClassNotFoundIntoPathWarning=Η κλάση %s δεν βρέθηκε στη διαδρομή PHP -YesInSummer=Yes in summer +YesInSummer=Ναι το καλοκαίρι OnlyFollowingModulesAreOpenedToExternalUsers=Σημειώστε ότι μόνο οι παρακάτω ενότητες είναι διαθέσιμες σε εξωτερικούς χρήστες (ανεξάρτητα από τα δικαιώματα αυτών των χρηστών) και μόνο αν έχουν εκχωρηθεί δικαιώματα:
SuhosinSessionEncrypt=Session storage encrypted by Suhosin ConditionIsCurrently=Η κατάσταση είναι αυτή τη στιγμή %s @@ -1369,9 +1369,9 @@ AddRefInList=Εμφάνιση κωδικών Πελάτη/Προμηθευτή. AddVatInList=Εμφάνιση του ΑΦΜ Πελάτη/Προμηθευτή σε συνδυαστικές λίστες. AddAdressInList=Εμφάνιση διεύθυνσης Πελάτη/Προμηθευτή σε σύνθετες λίστες.
Τα τρίτα μέρη θα εμφανίζονται με τη μορφή ονόματος "The Big Company corp. - 21 jump street 123456 Big town - USA" αντί για "The Big Company corp". AddEmailPhoneTownInContactList=Εμφάνιση email επαφών (ή τηλέφωνα αν δεν έχουν καθοριστεί) και λίστα πληροφοριών πόλης (επιλογή λίστας ή σύνθετο πλαίσιο)
Οι επαφές θα εμφανιστούν με μια μορφή ονόματος "Dupond Durand - dupond.durand@email.com - Παρίσι" ή "Dupond Durand - 06 07 59 65 66 - Παρίσι» αντί για «Dupond Durand». -AskForPreferredShippingMethod=Ζητήστε την προτιμώμενη μέθοδο αποστολής για τρίτους. +AskForPreferredShippingMethod=Ζητήστε την προτιμώμενη μέθοδο αποστολής για τρίτα μέρη. FieldEdition=Έκδοση στο πεδίο %s -FillThisOnlyIfRequired=Παράδειγμα: +2 (συμπληρώστε μόνο αν ζώνη ώρας αντισταθμίσουν τα προβλήματα για προβλήματα που προέκυψαν) +FillThisOnlyIfRequired=Παράδειγμα: +2 (συμπλήρωση μόνο εάν παρουσιαστούν προβλήματα μετατόπισης ζώνης ώρας) GetBarCode=Πάρτε barcode NumberingModules=Μοντέλα αρίθμησης DocumentModules=Πρότυπα εγγράφων @@ -1401,7 +1401,7 @@ NotificationsDescContact=* ανά επαφές τρίτου μέρους (πελ NotificationsDescGlobal=* ή ορίζοντας καθολικές διευθύνσεις email στη σελίδα εγκατάστασης της μονάδας. ModelModules=Πρότυπα εγγράφων DocumentModelOdt=Δημιουργία εγγράφων από πρότυπα OpenDocument (αρχεία .ODT / .ODS από LibreOffice, OpenOffice, KOffice, TextEdit, ...) -WatermarkOnDraft=Watermark on draft document +WatermarkOnDraft=Υδατογράφημα στο προσχέδιο εγγράφου JSOnPaimentBill=Ενεργοποιήστε τη δυνατότητα να συμπληρώνει αυτόματα τις γραμμές πληρωμής σε έντυπο πληρωμής CompanyIdProfChecker=Κανόνες για τα επαγγελματικά αναγνωριστικά MustBeUnique=Πρέπει να είναι μοναδικό? @@ -1481,13 +1481,13 @@ MEMBER_REMINDER_EMAIL=Ενεργοποιήστε την αυτόματη υπε MembersDocModules=Πρότυπα εγγράφων για έγγραφα που δημιουργούνται από εγγραφή μέλους ##### LDAP setup ##### LDAPSetup=LDAP Setup -LDAPGlobalParameters=Global parameters +LDAPGlobalParameters=Καθολικές παράμετροι LDAPUsersSynchro=Χρήστες LDAPGroupsSynchro=Ομάδες LDAPContactsSynchro=Επαφές LDAPMembersSynchro=Μέλη LDAPMembersTypesSynchro=Τύποι μελών -LDAPSynchronization=LDAP synchronisation +LDAPSynchronization=Συγχρονισμός LDAP LDAPFunctionsNotAvailableOnPHP=LDAP functions are not available on your PHP LDAPToDolibarr=LDAP -> Dolibarr DolibarrToLDAP=Dolibarr -> LDAP @@ -1752,8 +1752,8 @@ MenuDeleted=Το μενού διαγράφηκε Menu=Μενού Menus=Μενού TreeMenuPersonalized=Εξατομικευμένα μενού -NotTopTreeMenuPersonalized=Εξατομικευμένα μενού που δεν συνδέονται με μια καταχώρηση κορυφαίου μενού -NewMenu=New menu +NotTopTreeMenuPersonalized=Εξατομικευμένα μενού που δεν συνδέονται με μια καταχώρηση του επάνω μενού +NewMenu=Νέο μενού MenuHandler=Χειριστής μενού MenuModule=Source module HideUnauthorizedMenu=Απόκρυψη μη εξουσιοδοτημένων μενού και για εσωτερικούς χρήστες (απλώς γκριζαρισμένα διαφορετικά) @@ -1873,7 +1873,7 @@ IfSetToYesDontForgetPermission=Αν είναι ρυθμισμένη σε μη μ GeoIPMaxmindSetup=GeoIP Maxmind module setup PathToGeoIPMaxmindCountryDataFile=Διαδρομή προς αρχείο που περιέχει το Maxmind ip στη μετάφραση χώρας.
Παραδείγματα:
/usr/local/share/GeoIP/GeoIP.dat
/usr/share/GeoIP/GeoIP.dat
/usr/share/GeoIP/GeoLite2-Country.mmdb NoteOnPathLocation=Note that your ip to country data file must be inside a directory your PHP can read (Check your PHP open_basedir setup and filesystem permissions). -YouCanDownloadFreeDatFileTo=You can download a free demo version of the Maxmind GeoIP country file at %s. +YouCanDownloadFreeDatFileTo=Μπορείτε να κάνετε λήψη μιας δωρεάν δοκιμαστικής έκδοσης του αρχείου χώρας Maxmind GeoIP στη διεύθυνση %s. YouCanDownloadAdvancedDatFileTo=Μπορείτε επίσης να κατεβάσετε μια πιο πλήρη έκδοση , με ενημερώσεις, του αρχείου χώρας Maxmind GeoIP στο %s. TestGeoIPResult=Test of a conversion IP -> country ##### Projects ##### @@ -1890,10 +1890,10 @@ AccountingPeriodCard=Λογιστική περίοδος NewFiscalYear=Νέα λογιστική περίοδος OpenFiscalYear=Ανοικτή λογιστική περίοδος CloseFiscalYear=Κλείσιμο λογιστικής περιόδου -DeleteFiscalYear=Διαγραφή περιόδου λογιστικής -ConfirmDeleteFiscalYear=Είστε σίγουροι ότι θα διαγράψετε αυτήν τη λογιστική περίοδο; +DeleteFiscalYear=Διαγραφή λογιστικής περιόδου +ConfirmDeleteFiscalYear=Είστε σίγουροι ότι θέλετε να διαγράψετε αυτήν τη λογιστική περίοδο; ShowFiscalYear=Εμφάνιση λογιστικής περιόδου -AlwaysEditable=Μπορεί πάντα να επεξεργαστεί +AlwaysEditable=Πάντα επεξεργάσιμο MAIN_APPLICATION_TITLE=Αναγκαστικό ορατό όνομα της εφαρμογής (προειδοποίηση: η ρύθμιση του δικού σας ονόματος μπορεί να δημιουργήσει πρόβλημα στη λειτουργία Αυτόματης συμπλήρωσης σύνδεσης όταν χρησιμοποιείτε το DoliDroid εφαρμογή για κινητά) NbMajMin=Ελάχιστος αριθμός κεφαλαίων χαρακτήρων NbNumMin=Ελάχιστος αριθμός αριθμητικών χαρακτήρων @@ -1907,12 +1907,12 @@ TypePaymentDesc=0: Είδος πληρωμής πελάτη, 1: Τύπος πλ IncludePath=Συμπεριλάβετε τη διαδρομή (οριστεί σε μεταβλητή %s) ExpenseReportsSetup=Ρύθμιση εκθέσεων δαπανών ενότητας TemplatePDFExpenseReports=Πρότυπα εγγράφων για τη δημιουργία εγγράφου αναφοράς δαπανών -ExpenseReportsRulesSetup=Ρύθμιση εκθέσεων εξόδων για τους module - Κανόνες -ExpenseReportNumberingModules=Μονάδα αρίθμησης αναφορών εξόδων +ExpenseReportsRulesSetup=Ρύθμιση της ενότητας Αναφορές Εξόδων - Κανόνες +ExpenseReportNumberingModules=Ενότητα αρίθμησης εκθέσεων δαπανών NoModueToManageStockIncrease=Δεν έχει ενεργοποιηθεί καμία ενότητα ικανή να διαχειριστεί την αυτόματη αύξηση των αποθεμάτων. Η αύξηση των αποθεμάτων θα γίνεται μόνο με χειροκίνητη εισαγωγή. YouMayFindNotificationsFeaturesIntoModuleNotification=Μπορείτε να βρείτε επιλογές για ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου ενεργοποιώντας και διαμορφώνοντας την ενότητα "Ειδοποίηση". TemplatesForNotifications=Πρότυπα για ειδοποιήσεις -ListOfNotificationsPerUser=Λίστα αυτόματων ειδοποιήσεων ανά χρήστη * +ListOfNotificationsPerUser=Λίστα αυτόματων ειδοποιήσεων ανά χρήστη* ListOfNotificationsPerUserOrContact=Κατάλογος πιθανών αυτόματων ειδοποιήσεων (σε επιχειρηματικό συμβάν) διαθέσιμων ανά χρήστη * ή ανά επαφή ** ListOfFixedNotifications=Λίστα αυτόματων σταθερών ειδοποιήσεων GoOntoUserCardToAddMore=Μεταβείτε στην καρτέλα "Ειδοποιήσεις" ενός χρήστη για να προσθέσετε ή να καταργήσετε ειδοποιήσεις για χρήστες @@ -1936,7 +1936,7 @@ PressF5AfterChangingThis=Πατήστε CTRL + F5 στο πληκτρολόγι NotSupportedByAllThemes=Θα λειτουργεί με βασικά θέματα, μπορεί να μην υποστηρίζεται από εξωτερικά θέματα BackgroundColor=Χρώμα φόντου TopMenuBackgroundColor=Χρώμα φόντου για το επάνω μενού -TopMenuDisableImages=Απόκρυψη εικόνων στο μενού "Κορυφαία" +TopMenuDisableImages=Εικονίδιο ή Κείμενο στο επάνω μενού LeftMenuBackgroundColor=Χρώμα φόντου για το αριστερό μενού BackgroundTableTitleColor=Χρώμα φόντου για τη γραμμή επικεφαλίδας του πίνακα BackgroundTableTitleTextColor=Χρώμα κειμένου για τη γραμμή τίτλου πίνακα @@ -1949,7 +1949,7 @@ EnterAnyCode=Αυτό το πεδίο περιέχει μια αναφορά γ Enter0or1=Εισαγάγετε 0 ή 1 UnicodeCurrency=Εισαγάγετε εδώ μεταξύ τιράντες, λίστα αριθμού byte που αντιπροσωπεύει το σύμβολο νομίσματος. Για παράδειγμα: για το $, πληκτρολογήστε [36] - για την Βραζιλία, το πραγματικό R $ [82,36] - για €, πληκτρολογήστε [8364] ColorFormat=Το χρώμα RGB είναι σε μορφή HEX, π.χ.: FF0000 -PictoHelp=Όνομα εικονιδίου σε μορφή:
- image.png για ένα αρχείο εικόνας στον τρέχοντα κατάλογο θεμάτων
- image.png@module εάν το αρχείο βρίσκεται στον κατάλογο /img/ μιας ενότητας
- fa-xxx για ένα FontAwesome fa-xxx εικονίδιο
- fonwtawesome_xxx_fa_color_size για ένα FontAwesome fa-xxx εικονίδιο (με πρόθεμα, χρώμα και μέγεθος) +PictoHelp=Όνομα εικονιδίου σε μορφή:
- image.png για ένα αρχείο εικόνας στον τρέχοντα κατάλογο θεμάτων
- image.png@module εάν το αρχείο βρίσκεται στον κατάλογο /img/ μιας ενότητας
- fa-xxx για ένα FontAwesome fa-xxx εικονίδιο
- fontawesome_xxx_fa_color_size για ένα FontAwesome fa-xxx εικονίδιο (με πρόθεμα, χρώμα και μέγεθος) PositionIntoComboList=Θέση γραμμής σε σύνθετο πλαίσιο SellTaxRate=Συντελεστής φόρου επί των πωλήσεων RecuperableOnly=Ναι για ΦΠΑ "Δεν γίνεται αντιληπτό αλλά ανακτήσιμο" αφιερωμένο σε κάποια χώρα στη Γαλλία. Διατηρήστε την τιμή "Όχι" σε όλες τις άλλες περιπτώσεις. @@ -1959,7 +1959,7 @@ TemplateForElement=Αυτό το πρότυπο αλληλογραφίας σχ TypeOfTemplate=Τύπος πρότυπου TemplateIsVisibleByOwnerOnly=Το πρότυπο είναι ορατό μόνο για τον κάτοχο VisibleEverywhere=Ορατό παντού -VisibleNowhere=Ορατό από πουθενά +VisibleNowhere=Μη ορατό FixTZ=TimeZone fix FillFixTZOnlyIfRequired=Παράδειγμα: +2 (συμπληρώστε μόνο αν υπάρχει πρόβλημα) ExpectedChecksum=Αναμενόμενο Checksum @@ -2019,17 +2019,17 @@ CommandIsNotInsideAllowedCommands=Η εντολή που προσπαθείτε LandingPage=Σελίδα στόχος SamePriceAlsoForSharedCompanies=Αν χρησιμοποιείτε μια ενότητα πολλαπλών εταιρειών, με την επιλογή "Ενιαία τιμή", η τιμή θα είναι επίσης ίδια για όλες τις εταιρείες, εάν τα προϊόντα μοιράζονται μεταξύ των περιβαλλόντων ModuleEnabledAdminMustCheckRights=Η μονάδα έχει ενεργοποιηθεί. Οι άδειες για τις ενεργοποιημένες μονάδες δόθηκαν μόνο σε διαχειριστές. Ίσως χρειαστεί να χορηγήσετε δικαιώματα σε άλλους χρήστες ή ομάδες με μη αυτόματο τρόπο, εάν είναι απαραίτητο. -UserHasNoPermissions=Αυτός ο χρήστης δεν έχει οριστεί δικαιώματα +UserHasNoPermissions=Αυτός ο χρήστης δεν έχει καθορισμένα δικαιώματα TypeCdr=Χρησιμοποιήστε το "Κανένας" εάν η ημερομηνία πληρωμής είναι η ημερομηνία του τιμολογίου συν ένα δέλτα σε ημέρες (δέλτα είναι πεδίο "%s")
Χρησιμοποιήστε το "Στο τέλος του μήνα", εάν, μετά το δέλτα, η ημερομηνία πρέπει να αυξηθεί για να φτάσει στο τέλος του μήνα (+ ένα προαιρετικό "%s" σε ημέρες)
Χρησιμοποιήστε το "Τρέχουσα / Επόμενη" για να έχετε την ημερομηνία πληρωμής ως το πρώτο Nth του μήνα μετά το δέλτα (το delta είναι πεδίο "%s", το N αποθηκεύεται στο πεδίο "%s") BaseCurrency=Νόμισμα αναφοράς της εταιρείας (πηγαίνετε σε ρύθμιση της εταιρείας για να το αλλάξετε αυτό) WarningNoteModuleInvoiceForFrenchLaw=Αυτή η ενότητα %s συμμορφώνεται με τους γαλλικούς νόμους (Loi Finance 2016). WarningNoteModulePOSForFrenchLaw=Αυτή η ενότητα %s συμμορφώνεται με τους γαλλικούς νόμους (Loi Finance 2016), επειδή η ενότητα Μη αναστρέψιμες καταγραφές ενεργοποιείται αυτόματα. -WarningInstallationMayBecomeNotCompliantWithLaw=Προσπαθείτε να εγκαταστήσετε την ενότητα %s που είναι μια εξωτερική μονάδα. Η ενεργοποίηση μιας εξωτερικής μονάδας σημαίνει ότι εμπιστεύεστε τον εκδότη της συγκεκριμένης ενότητας και ότι είστε βέβαιοι ότι η ενότητα αυτή δεν επηρεάζει δυσμενώς τη συμπεριφορά της εφαρμογής σας και συμμορφώνεται με τους νόμους της χώρας σας (%s). Εάν η ενότητα εισάγει ένα παράνομο χαρακτηριστικό, είστε υπεύθυνοι για τη χρήση παράνομου λογισμικού. -MAIN_PDF_MARGIN_LEFT=Αριστερό περιθώριο σε PDF +WarningInstallationMayBecomeNotCompliantWithLaw=Προσπαθείτε να εγκαταστήσετε την εξωτερική ενότητα%s . Η ενεργοποίηση μιας εξωτερικής ενότητας σημαίνει ότι εμπιστεύεστε τον εκδότη της συγκεκριμένης ενότητας και ότι είστε βέβαιοι ότι η ενότητα αυτή δεν επηρεάζει δυσμενώς τη συμπεριφορά της εφαρμογής σας και συμμορφώνεται με τους νόμους της χώρας σας (%s). Εάν η ενότητα εισάγει ένα παράνομο χαρακτηριστικό, είστε υπεύθυνοι για τη χρήση αυτού του παράνομου λογισμικού. +MAIN_PDF_MARGIN_LEFT=Αριστερό περιθώριο στο PDF MAIN_PDF_MARGIN_RIGHT=Δεξί περιθώριο στο PDF -MAIN_PDF_MARGIN_TOP=Κορυφή περιθώριο σε PDF -MAIN_PDF_MARGIN_BOTTOM=Κάτω περιθώριο σε PDF -MAIN_DOCUMENTS_LOGO_HEIGHT=Ύψος για το λογότυπο σε PDF +MAIN_PDF_MARGIN_TOP=Πάνω περιθώριο στο PDF +MAIN_PDF_MARGIN_BOTTOM=Κάτω περιθώριο στο PDF +MAIN_DOCUMENTS_LOGO_HEIGHT=Ύψος λογότυπου στο PDF MAIN_GENERATE_PROPOSALS_WITH_PICTURE=Προσθήκη στήλης για εικόνα στις γραμμές προσφορών MAIN_DOCUMENTS_WITH_PICTURE_WIDTH=Το πλάτος της στήλης εάν προστεθεί μια εικόνα σε γραμμές MAIN_PDF_NO_SENDER_FRAME=Απόκρυψη περιγραμμάτων στο πλαίσιο διεύθυνσης αποστολέα @@ -2042,12 +2042,12 @@ MAIN_PDF_PROPAL_USE_ELECTRONIC_SIGNING=Προσθήκη ηλεκτρονικής NothingToSetup=Δεν απαιτείται συγκεκριμένη ρύθμιση για αυτήν την ενότητα. SetToYesIfGroupIsComputationOfOtherGroups=Ορίστε αυτό το ναι αν αυτή η ομάδα είναι ένας υπολογισμός άλλων ομάδων EnterCalculationRuleIfPreviousFieldIsYes=Εισαγάγετε τον κανόνα υπολογισμού εάν το προηγούμενο πεδίο είχε οριστεί σε Ναι.
Για παράδειγμα:
CODEGRP1+CODEGRP2 -SeveralLangugeVariatFound=Πολλές γλωσσικές παραλλαγές βρέθηκαν +SeveralLangugeVariatFound=Βρέθηκαν πολλές παραλλαγές γλώσσας RemoveSpecialChars=Καταργήστε τους ειδικούς χαρακτήρες COMPANY_AQUARIUM_CLEAN_REGEX=Φίλτρο Regex για καθαρισμό τιμής (COMPANY_AQUARIUM_CLEAN_REGEX) COMPANY_DIGITARIA_CLEAN_REGEX=Φίλτρο Regex για καθαρισμό τιμής (COMPANY_DIGITARIA_CLEAN_REGEX) COMPANY_DIGITARIA_UNIQUE_CODE=Διπλότυπο δεν επιτρέπεται -GDPRContact=Υπεύθυνος Προστασίας Δεδομένων (DPO, Προστασία δεδομένων ή επικοινωνία GDPR) +GDPRContact=Υπεύθυνος Προστασίας Δεδομένων (DPO, Προστασία Προσωπικών Δεδομένων ή επαφή GDPR) GDPRContactDesc=Εάν αποθηκεύετε προσωπικά δεδομένα στο Πληροφοριακό σας Σύστημα, μπορείτε να ορίσετε την επαφή που είναι υπεύθυνη για τον Γενικό Κανονισμό Προστασίας Δεδομένων εδώ HelpOnTooltip=Βοήθεια κειμένου για να εμφανιστεί στο tooltip HelpOnTooltipDesc=Βάλτε εδώ ένα κείμενο ή ένα πλήκτρο μετάφρασης για να εμφανιστεί το κείμενο σε μια επεξήγηση όταν το πεδίο εμφανίζεται σε μια φόρμα @@ -2059,6 +2059,7 @@ VATIsUsedIsOff=Σημείωση: Η επιλογή χρήσης Φόρου Πω SwapSenderAndRecipientOnPDF=Αντικαταστήστε τη θέση διευθύνσεων αποστολέα και παραλήπτη σε έγγραφα PDF FeatureSupportedOnTextFieldsOnly=Προειδοποίηση, η δυνατότητα υποστηρίζεται μόνο σε πεδία κειμένου και συνδυαστικές λίστες. Επίσης, πρέπει να οριστεί μια παράμετρος URL action=create ή action=edit Ή το όνομα της σελίδας πρέπει να τελειώνει με 'new.php' για να ενεργοποιηθεί αυτή η δυνατότητα. EmailCollector=Συλλέκτης ηλεκτρονικού ταχυδρομείου +EmailCollectors=Συλλέκτες email EmailCollectorDescription=Προσθέστε μια προγραμματισμένη εργασία και μια σελίδα ρύθμισης για να σαρώσετε τακτικά παράθυρα email (χρησιμοποιώντας το πρωτόκολλο IMAP) και να καταγράψετε τα μηνύματα που έχετε λάβει στην αίτησή σας, στο σωστό μέρος ή / και να δημιουργήσετε αυτόματα τις εγγραφές (όπως οι οδηγοί). NewEmailCollector=Νέος συλλέκτης ηλεκτρονικού ταχυδρομείου EMailHost=Υποδοχή διακομιστή IMAP ηλεκτρονικού ταχυδρομείου @@ -2073,14 +2074,14 @@ DateLastCollectResult=Ημερομηνία τελευταίας προσπάθε DateLastcollectResultOk=Ημερομηνία τελευταίας επιτυχούς είσπραξης LastResult=Τελευταίο αποτέλεσμα EmailCollectorHideMailHeaders=Μην συμπεριλάβετε το περιεχόμενο της κεφαλίδας email στο αποθηκευμένο περιεχόμενο των συλλεγόμενων e-mail -EmailCollectorHideMailHeadersHelp=Όταν είναι ενεργοποιημένο, οι κεφαλίδες e-mail δεν προστίθενται στο τέλος του περιεχομένου email που αποθηκεύεται ως συμβάντα. +EmailCollectorHideMailHeadersHelp=Όταν είναι ενεργοποιημένο, οι κεφαλίδες e-mail δεν προστίθενται στο τέλος του περιεχομένου email που αποθηκεύεται ως συμβάν ατζέντας. EmailCollectorConfirmCollectTitle=Το email συλλέγει επιβεβαίωση EmailCollectorConfirmCollect=Θέλετε να εκτελέσετε αυτόν τον συλλέκτη τώρα; EmailCollectorExampleToCollectTicketRequestsDesc=Συλλέξτε email που ταιριάζουν με ορισμένους κανόνες και δημιουργήστε αυτόματα ένα εισιτήριο (η ενότητα εισιτηρίων πρέπει να είναι ενεργοποιημένη) με τις πληροφορίες email. Μπορείτε να χρησιμοποιήσετε αυτόν τον συλλέκτη εάν παρέχετε κάποια υποστήριξη μέσω email, έτσι το αίτημα εισιτηρίου σας θα δημιουργηθεί αυτόματα. Ενεργοποιήστε επίσης τη Συλλογή_Απαντήσεων για να συλλέξετε απαντήσεις του πελάτη σας απευθείας στην προβολή εισιτηρίων (πρέπει να απαντήσετε μεσα από το Dolibarr). EmailCollectorExampleToCollectTicketRequests=Παράδειγμα συλλογής του αιτήματος εισιτηρίου (μόνο το πρώτο μήνυμα) EmailCollectorExampleToCollectAnswersFromExternalEmailSoftwareDesc=Σαρώστε τον κατάλογο "Απεσταλμένα" του γραμματοκιβωτίου σας για να βρείτε email που στάλθηκαν ως απάντηση άλλου email απευθείας από το λογισμικό email σας και όχι από το Dolibarr. Εάν βρεθεί ένα τέτοιο μήνυμα ηλεκτρονικού ταχυδρομείου, το συμβάν απάντησης καταγράφεται στο Dolibarr EmailCollectorExampleToCollectAnswersFromExternalEmailSoftware=Παράδειγμα συλλογής απαντήσεων ηλεκτρονικού ταχυδρομείου που αποστέλλονται από εξωτερικό λογισμικό ηλεκτρονικού ταχυδρομείου -EmailCollectorExampleToCollectDolibarrAnswersDesc=Συλλέξτε όλα τα μηνύματα ηλεκτρονικού ταχυδρομείου που είναι απάντηση σε ένα email που στάλθηκε από την εφαρμογή σας. Ένα συμβάν (Η ενοτητα Ατζέντα πρέπει να είναι ενεργοποιημένη) με την απάντηση μέσω email θα καταγραφεί στο καλό μέρος. Για παράδειγμα, εάν στείλετε μια εμπορική πρόταση, παραγγελία, τιμολόγιο ή μήνυμα για ένα εισιτήριο μέσω email από την εφαρμογή και ο πελάτης απαντήσει στο email σας, το σύστημα θα καταλάβει αυτόματα την απάντηση και θα την προσθέσει στο ERP σας. +EmailCollectorExampleToCollectDolibarrAnswersDesc=Συλλέξτε όλα τα μηνύματα ηλεκτρονικού ταχυδρομείου που είναι απάντηση σε ένα email που στάλθηκε από την εφαρμογη σας. Ένα συμβάν (Η ενότητα ατζέντα πρέπει να είναι ενεργοποιημένη) με την απάντηση μέσω email θα καταγραφεί. Για παράδειγμα, εάν στείλετε μια εμπορική πρόταση, παραγγελία, τιμολόγιο ή μήνυμα για ένα εισιτήριο μέσω email από την εφαρμογή και ο παραλήπτης απαντήσει στο email σας, το σύστημα θα καταλάβει αυτόματα την απάντηση και θα την προσθέσει στο ERP σας. EmailCollectorExampleToCollectDolibarrAnswers=Παράδειγμα συλλογής όλων των εισερχόμενων μηνυμάτων ως απαντήσεων σε μηνύματα που αποστέλλονται από το Dolibarr' EmailCollectorExampleToCollectLeadsDesc=Συλλέξτε email που ταιριάζουν με ορισμένους κανόνες και δημιουργήστε αυτόματα έναν υποψήφιο πελάτη (η ενότητα Έργο πρέπει να είναι ενεργοποιημένη) με τις πληροφορίες email. Μπορείτε να χρησιμοποιήσετε αυτόν τον συλλέκτη εάν θέλετε να ακολουθήσετε το προβάδισμά σας χρησιμοποιώντας τη μονάδα Project (1 υποψήφιος πελάτης = 1 έργο), έτσι ώστε οι υποψήφιοι πελάτες σας να δημιουργούνται αυτόματα. Εάν ο συλλέκτης Collect_Responses είναι επίσης ενεργοποιημένος, όταν στέλνετε ένα μήνυμα ηλεκτρονικού ταχυδρομείου από τους δυνητικούς πελάτες, τις προτάσεις σας ή οποιοδήποτε άλλο αντικείμενο, ενδέχεται επίσης να δείτε απαντήσεις των πελατών ή των συνεργατών σας απευθείας στην εφαρμογή.
Σημείωση: Με αυτό το αρχικό παράδειγμα, δημιουργείται ο τίτλος του υποψήφιου πελάτη συμπεριλαμβανομένου του email. Εάν το τρίτο μέρος δεν μπορεί να βρεθεί στη βάση δεδομένων (νέος πελάτης), ο υποψήφιος πελάτης θα προσαρτηθεί στο τρίτο μέρος με αναγνωριστικό 1. EmailCollectorExampleToCollectLeads=Παράδειγμα συλλογής προοπτικών @@ -2088,7 +2089,7 @@ EmailCollectorExampleToCollectJobCandidaturesDesc=Συλλέξτε μηνύμα EmailCollectorExampleToCollectJobCandidatures=Παράδειγμα συλλογής υποψηφιοτήτων για θέσεις εργασίας που ελήφθησαν μέσω e-mail NoNewEmailToProcess=Δεν υπάρχει νέο μήνυμα ηλεκτρονικού ταχυδρομείου (φίλτρα που ταιριάζουν) για επεξεργασία NothingProcessed=Τίποτα δεν έγινε -XEmailsDoneYActionsDone=%s τα κατάλληλα μηνύματα ηλεκτρονικού ταχυδρομείου, τα emails %s υποβλήθηκαν σε επιτυχή επεξεργασία (για %s η εγγραφή / οι ενέργειες έγιναν) +XEmailsDoneYActionsDone=%s email που πληρούν τα κριτήρια, %s email επιτυχώς επεξεργασμένα (για %s εγγραφή/ενέργειες που έχουν ολοκληρωθεί) RecordEvent=Καταγραφή ενός συμβάντος στην ατζέντα (με τον τύπο Email αποστολή ή λήψη) CreateLeadAndThirdParty=Δημιουργήστε έναν υποψήφιο πελάτη (και τρίτο μέρος εάν είναι απαραίτητο) CreateTicketAndThirdParty=Δημιουργήστε ένα εισιτήριο (συνδεδεμένο με ενα τρίτο μέρος, εάν το τρίτο μέρος φορτώθηκε από προηγούμενη λειτουργία ή μαντεύτηκε από ένα πρόγραμμα παρακολούθησης στην κεφαλίδα email, χωρίς τρίτο μέρος διαφορετικά) @@ -2106,31 +2107,31 @@ FormatZip=Zip MainMenuCode=Κωδικός εισόδου μενού (mainmenu) ECMAutoTree=Εμφάνιση αυτόματης δομής ECM OperationParamDesc=Καθορίστε τους κανόνες που θα χρησιμοποιηθούν για την εξαγωγή ή τον ορισμό τιμών.
Παράδειγμα για λειτουργίες που χρειάζονται εξαγωγή ονόματος από το θέμα του email:
name=EXTRACT:SUBJECT:Μήνυμα από την εταιρεία ([^\n] *)
Παράδειγμα για λειτουργίες που δημιουργούν αντικείμενα:
objproperty1 = SET: η τιμή για σύνολο
objproperty2 = SET: μια τιμή περιλαμβανομένης αξία των __objproperty1__
objproperty3 = SETIFEMPTY: αξία χρησιμοποιείται αν το objproperty3 δεν έχει ήδη οριστεί
objproperty4 = EXTRACT: HEADER :X-Myheaderkey:\\s*([^\\s]*)
options_myextrafield1=EXTRACT:SUBJECT:([^\n]*)
object.objproperty5=EXTRACT:BODY:M [^\\s]*)

Χρησιμοποιήστε ένα ; char ως διαχωριστικό για εξαγωγή ή ρύθμιση πολλών ιδιοτήτων. -OpeningHours=Ωρες λειτουργίας +OpeningHours=Ώρες λειτουργίας OpeningHoursDesc=Πληκτρολογήστε εδώ τις κανονικές ώρες λειτουργίας της εταιρείας σας. ResourceSetup=Διαμόρφωση της ενότητας πόρων UseSearchToSelectResource=Χρησιμοποιήστε μια φόρμα αναζήτησης για να επιλέξετε έναν πόρο (και όχι μια αναπτυσσόμενη λίστα). DisabledResourceLinkUser=Απενεργοποιήστε τη λειτουργία για να συνδέσετε μια πηγή στους χρήστες DisabledResourceLinkContact=Απενεργοποιήστε τη δυνατότητα σύνδεσης ενός πόρου με τις επαφές EnableResourceUsedInEventCheck=Να απαγορεύεται η χρήση του ίδιου πόρου την ίδια στιγμή στην ατζέντα -ConfirmUnactivation=Επιβεβαιώστε την επαναφορά της μονάδας +ConfirmUnactivation=Επιβεβαιώστε την επαναφορά της ενότητας OnMobileOnly=Σε μικρή οθόνη (smartphone) μόνο DisableProspectCustomerType=Απενεργοποιήστε τον τύπο τρίτου μέρους "Προοπτική + Πελάτης" (άρα το τρίτο μέρος πρέπει να είναι "Προοπτική" ή "Πελάτης", αλλά δεν μπορεί να είναι και τα δύο) -MAIN_OPTIMIZEFORTEXTBROWSER=Απλοποιήστε τη διεπαφή για τυφλό άτομο +MAIN_OPTIMIZEFORTEXTBROWSER=Απλοποιήστε τη διεπαφή για άτομα με προβλήματα όρασης MAIN_OPTIMIZEFORTEXTBROWSERDesc=Ενεργοποιήστε αυτήν την επιλογή εάν είστε τυφλός ή χρησιμοποιείτε την εφαρμογή από ένα πρόγραμμα περιήγησης κειμένου όπως Lynx ή Links. -MAIN_OPTIMIZEFORCOLORBLIND=Αλλάξτε το χρώμα της διεπαφής για τον τυφλό χρώμα -MAIN_OPTIMIZEFORCOLORBLINDDesc=Ενεργοποιήστε αυτή την επιλογή αν είστε τυφλός, σε μερικές περιπτώσεις το περιβάλλον εργασίας θα αλλάξει τη ρύθμιση χρώματος για να αυξηθεί η αντίθεση. +MAIN_OPTIMIZEFORCOLORBLIND=Αλλαγή χρώματος διεπαφής για άτομα με αχρωματοψία +MAIN_OPTIMIZEFORCOLORBLINDDesc=Ενεργοποιήστε αυτήν την επιλογή εάν έχετε αχρωματοψία, σε ορισμένες περιπτώσεις η διεπαφή θα αλλάξει τη ρύθμιση χρώματος για να αυξήσει την αντίθεση. Protanopia=Πρωτανοπία -Deuteranopes=Deuteranopes -Tritanopes=Tritanopes -ThisValueCanOverwrittenOnUserLevel=Αυτή η τιμή μπορεί να αντικατασταθεί από κάθε χρήστη από τη σελίδα χρήστη - η καρτέλα '%s' -DefaultCustomerType=Προεπιλεγμένος τύπος τρίτου μέρους για τη φόρμα δημιουργίας νέου πελάτη +Deuteranopes=Δευτερανωπία +Tritanopes=Τριτανωπία +ThisValueCanOverwrittenOnUserLevel=Αυτή η τιμή μπορεί να αντικατασταθεί από κάθε χρήστη από τη σελίδα του - καρτέλα '%s' +DefaultCustomerType=Προεπιλεγμένος τύπος τρίτου μέρους για τη φόρμα δημιουργίας "Νέου πελάτη" ABankAccountMustBeDefinedOnPaymentModeSetup=Σημείωση: Ο τραπεζικός λογαριασμός πρέπει να οριστεί στη λειτουργική μονάδα κάθε τρόπου πληρωμής (Paypal, Stripe, ...) για να λειτουργήσει αυτό το χαρακτηριστικό. RootCategoryForProductsToSell=Κατηγορία ρίζας των προϊόντων που πωλούνται RootCategoryForProductsToSellDesc=Εάν ορίζεται, μόνο τα προϊόντα εντός αυτής της κατηγορίας ή τα παιδιά αυτής της κατηγορίας θα είναι διαθέσιμα στο σημείο πώλησης DebugBar=Γραμμή εντοπισμού σφαλμάτων -DebugBarDesc=Γραμμή εργαλείων που συνοδεύεται από πολλά εργαλεία για την απλούστευση του εντοπισμού σφαλμάτων -DebugBarSetup=Ρύθμιση DebugBar +DebugBarDesc=Γραμμή εργαλείων με πολλά εργαλεία για την διευκόλυνση σας στον εντοπισμό σφαλμάτων +DebugBarSetup=Ρύθμιση γραμμής εντοπισμού σφαλμάτων GeneralOptions=Γενικές επιλογές LogsLinesNumber=Αριθμός γραμμών που θα εμφανίζονται στην καρτέλα "Αρχεία καταγραφής" UseDebugBar=Χρησιμοποιήστε τη γραμμή εντοπισμού σφαλμάτων @@ -2167,8 +2168,11 @@ EmailTemplate=Πρότυπο email EMailsWillHaveMessageID=Τα μηνύματα ηλεκτρονικού ταχυδρομείου θα έχουν μια ετικέτα "Αναφορές" που ταιριάζουν με αυτή τη σύνταξη PDF_SHOW_PROJECT=Εμφάνιση έργου στο έγγραφο ShowProjectLabel=Ετικέτα έργου +PDF_INCLUDE_ALIAS_IN_THIRDPARTY_NAME=Συμπεριλάβετε διακριτικό τίτλο στην ονομασία τρίτου μέρους +THIRDPARTY_ALIAS=Όνομα τρίτου μέρους - Διακριτικός τίτλος τρίτου μέρους +ALIAS_THIRDPARTY=Διακριτικός τίτλος τρίτου μέρους - Όνομα τρίτου μέρους PDF_USE_ALSO_LANGUAGE_CODE=Εάν θέλετε να αντιγράψετε ορισμένα κείμενα στο PDF σας σε 2 διαφορετικές γλώσσες στο ίδιο δημιουργημένο PDF, πρέπει να ορίσετε εδώ αυτήν τη δεύτερη γλώσσα, ώστε το παραγόμενο PDF να περιέχει 2 διαφορετικές γλώσσες στην ίδια σελίδα, αυτή που επιλέγεται κατά τη δημιουργία PDF και αυτή ( μόνο λίγα πρότυπα PDF το υποστηρίζουν αυτό). Κρατήστε κενό για 1 γλώσσα ανά PDF. -PDF_USE_A=Δημιουργήστε έγγραφα PDF με μορφή PDF/A αντί για προεπιλεγμένη μορφή PDF +PDF_USE_A=Δημιουργήστε έγγραφα PDF με μορφή PDF/A αντί για την προεπιλεγμένη μορφή PDF FafaIconSocialNetworksDesc=Εισαγάγετε εδώ τον κωδικό ενός εικονιδίου FontAwesome. Εάν δεν γνωρίζετε τι είναι το FontAwesome, μπορείτε να χρησιμοποιήσετε τη γενική τιμή fa-address-book. RssNote=Σημείωση: Κάθε ορισμός τροφοδοσίας RSS παρέχει ένα widget που πρέπει να ενεργοποιήσετε για να το έχετε διαθέσιμο στον πίνακα ελέγχου JumpToBoxes=Μετάβαση στη ρύθμιση -> Widgets @@ -2201,7 +2205,7 @@ RecommendedValueIs=Συνιστάται: %s Recommended=Προτεινόμενη NotRecommended=Δεν προτείνεται ARestrictedPath=Κάποια περιορισμένη διαδρομή -CheckForModuleUpdate=Ελέγξτε για ενημερώσεις εξωτερικών μονάδων +CheckForModuleUpdate=Ελέγξτε για ενημερώσεις εξωτερικών ενοτήτων CheckForModuleUpdateHelp=Αυτή η ενέργεια θα συνδεθεί με τους επεξεργαστές εξωτερικών λειτουργικών μονάδων για να ελέγξει εάν είναι διαθέσιμη μια νέα έκδοση. ModuleUpdateAvailable=Υπάρχει διαθέσιμη ενημέρωση NoExternalModuleWithUpdate=Δεν βρέθηκαν ενημερώσεις για εξωτερικές μονάδες @@ -2248,13 +2252,21 @@ TemplateforBusinessCards=Πρότυπο για μια επαγγελματική InventorySetup= Ρύθμιση αποθέματος ExportUseLowMemoryMode=Χρησιμοποιήστε low memory mode ExportUseLowMemoryModeHelp=Χρησιμοποιήστε low memory mode για να εκτελέσετε το exec του dump (η συμπίεση γίνεται μέσω ενός pipe αντί στη μνήμη PHP). Αυτή η μέθοδος δεν επιτρέπει τον έλεγχο ολοκλήρωσης του αρχείου και δεν θα αναφερθεί μήνυμα σφάλματος εάν αποτύχει. + +ModuleWebhookName = Webhook +ModuleWebhookDesc = Διεπαφή για αποστολή σε μια διεύθυνση URL ενεργειών του Dolibarr +WebhookSetup = Ρύθμιση webhook +Settings = Ρυθμίσεις +WebhookSetupPage = Σελίδα ρύθμισης Webhook ShowQuickAddLink=Εμφάνιση ενός κουμπιού για γρήγορη προσθήκη ενός στοιχείου στο επάνω δεξιά μενού + HashForPing=Hash που χρησιμοποιείται για ping ReadOnlyMode=Σε λειτουργία "Μόνο για ανάγνωση". DEBUGBAR_USE_LOG_FILE=Χρησιμοποιήστε το αρχείο dolibarr.log για να παγιδεύσετε αρχεία καταγραφής UsingLogFileShowAllRecordOfSubrequestButIsSlower=Χρησιμοποιήστε το αρχείο dolibarr.log για να παγιδεύσετε τα αρχεία καταγραφής αντί για τη σύλληψη ζωντανής μνήμης. Επιτρέπει τη σύλληψη όλων των αρχείων καταγραφής αντί μόνο του αρχείου καταγραφής της τρέχουσας διαδικασίας (συμπεριλαμβανομένου αυτού των σελίδων υποαιτημάτων ajax), αλλά θα κάνει την παρουσία σας πολύ πολύ αργή. Δεν προτείνεται. FixedOrPercent=Σταθερό (χρησιμοποιήστε λέξη-κλειδί "σταθερό") ή ποσοστό (χρησιμοποιήστε λέξη-κλειδί "ποσοστό") DefaultOpportunityStatus=Προεπιλεγμένη κατάσταση ευκαιρίας (πρώτη κατάσταση όταν δημιουργείται υποψήφιος πελάτης) + IconAndText=Εικονίδιο και κείμενο TextOnly=Μόνο Κείμενο IconOnlyAllTextsOnHover=Μόνο εικονίδιο - Όλα τα κείμενα εμφανίζονται κάτω από το εικονίδιο όταν μετακινείτε το ποντίκι πάνω από το μενού. @@ -2262,4 +2274,15 @@ IconOnlyTextOnHover=Μόνο εικονίδιο - Το κείμενο του ε IconOnly=Μόνο εικονίδιο - Κείμενο μόνο στο αναδυόμενο πλαίσιο επεξήγησης INVOICE_ADD_ZATCA_QR_CODE=Εμφάνιση του κωδικού QR ZATCA στα τιμολόγια INVOICE_ADD_ZATCA_QR_CODEMore=Ορισμένες αραβικές χώρες χρειάζονται αυτόν τον κωδικό QR στα τιμολόγιά τους +INVOICE_ADD_SWISS_QR_CODE=Εμφάνιση του ελβετικού κωδικού QR-Bill στα τιμολόγια UrlSocialNetworksDesc=Σύνδεσμος URL του κοινωνικού δικτύου. Χρησιμοποιήστε το {socialid} για το τμήμα της μεταβλητής που περιέχει το αναγνωριστικό του κοινωνικού δικτύου. +IfThisCategoryIsChildOfAnother=Αν αυτή η κατηγορία είναι θυγατρική μιας άλλης +DarkThemeMode=Λειτουργία σκούρου θέματος(Dark theme) +AlwaysDisabled=Πάντα απενεργοποιημένο +AccordingToBrowser=Ανάλογα με το πρόγραμμα περιήγησης +AlwaysEnabled=Πάντα ενεργοποιημένο +DoesNotWorkWithAllThemes=Δεν ειναι συμβατό με όλα τα θέματα +NoName=Χωρίς Όνομα +ShowAdvancedOptions= Εμφάνιση σύνθετων επιλογών +HideAdvancedoptions= Απόκρυψη σύνθετων επιλογών +CIDLookupURL=Η ενότητα φέρνει μια διεύθυνση URL που μπορεί να χρησιμοποιηθεί από ένα εξωτερικό εργαλείο για τη λήψη του ονόματος ενός τρίτου μέρους ή μιας επαφής από τον αριθμό τηλεφώνου του. Η διεύθυνση URL προς χρήση είναι: diff --git a/htdocs/langs/el_GR/agenda.lang b/htdocs/langs/el_GR/agenda.lang index f24b7153050..b3bfbf927db 100644 --- a/htdocs/langs/el_GR/agenda.lang +++ b/htdocs/langs/el_GR/agenda.lang @@ -1,27 +1,27 @@ # Dolibarr language file - Source file is en_US - agenda -IdAgenda=Αναγνωριστικό συμβάντος +IdAgenda=Αναγνωριστικό ενέργειας Actions=Ενέργειες -Agenda=Ημερολόγιο -TMenuAgenda=Ημερολόγιο -Agendas=Ημερολόγια +Agenda=Ατζέντα +TMenuAgenda=Ατζέντα +Agendas=Ατζέντες LocalAgenda=Προεπιλεγμένο ημερολόγιο -ActionsOwnedBy=Το γεγονός ανήκει -ActionsOwnedByShort=Ιδιοκτήτης -AffectedTo=Ανάθεση σε -Event=Εκδήλωση +ActionsOwnedBy=Ενέργεια χρήστη +ActionsOwnedByShort=Χρήστης +AffectedTo=Ανατεθειμένο σε +Event=Ενέργεια Events=Ενέργειες -EventsNb=Αριθμός γεγονότων -ListOfActions=Λίστα γεγονότων -EventReports=Αναφορές συμβάντων +EventsNb=Αριθμός ενεργειών +ListOfActions=Λίστα ενεργειών +EventReports=Αναφορές ενεργειών Location=Τοποθεσία -ToUserOfGroup=Αντιστοιχισμένο συμβάν σε οποιονδήποτε χρήστη στην ομάδα -EventOnFullDay=Ολοήμερο Γεγονός +ToUserOfGroup=Ενέργεια που ανατέθηκε σε χρήστη της ομάδας +EventOnFullDay=Ολοήμερη ενέργεια MenuToDoActions=Όλες οι ημιτελής ενέργειες -MenuDoneActions=Όλες οι ολοκληρ. ενέργειες -MenuToDoMyActions=Ημιτελής ενέργειες +MenuDoneActions=Όλες οι ολοκληρωμένες ενέργειες +MenuToDoMyActions=Ημιτελείς ενέργειες MenuDoneMyActions=Ολοκληρωμένες ενέργειες -ListOfEvents=Λίστα συμβάντων (προεπιλεγμένο ημερολόγιο) -ActionsAskedBy=Ενέργειες που καταχωρήθηκαν από +ListOfEvents=Λίστα ενεργειών (προεπιλεγμένο ημερολόγιο) +ActionsAskedBy=Ενέργειες που ανατέθηκαν από ActionsToDoBy=Ενέργειες που ανατέθηκαν σε ActionsDoneBy=Ενέργειες που ολοκληρώθηκαν από ActionAssignedTo=Ενέργεια ανατεθειμένη σε @@ -31,11 +31,11 @@ ViewWeek=Προβολή εβδομάδας ViewPerUser=Προβολή ανά χρήστη ViewPerType=Προβολή ανά τύπο AutoActions= Αυτόματη συμπλήρωση ημερολογίου -AgendaAutoActionDesc= Εδώ μπορείτε να ορίσετε τα γεγονότα που θέλετε να δημιουργήσει αυτόματα το Dolibarr στην Ατζέντα. Αν δεν υπάρχει τίποτα, θα συμπεριληφθούν μόνο οι μη αυτόματες ενέργειες στα αρχεία καταγραφής και θα εμφανίζονται στην Ατζέντα. Η αυτόματη παρακολούθηση επιχειρηματικών ενεργειών που πραγματοποιούνται σε αντικείμενα (επικύρωση, αλλαγή κατάστασης) δεν θα αποθηκευτεί. -AgendaSetupOtherDesc= Αυτή η σελίδα παρέχει επιλογές που επιτρέπουν την εξαγωγή των συμβάντων Dolibarr σε ένα εξωτερικό ημερολόγιο (Thunderbird, Google Calendar κ.λπ.) -AgendaExtSitesDesc=Αυτή η σελίδα σας επιτρέπει να ρυθμίσετε εξωτερικά ημερολόγια. -ActionsEvents=Γεγονότα για τα οποία θα δημιουργήσουν εγγραφή στο ημερολόγιο, αυτόματα -EventRemindersByEmailNotEnabled=Οι υπενθυμίσεις συμβάντων μέσω email δεν ενεργοποιήθηκαν στη ρύθμιση της μονάδας %s. +AgendaAutoActionDesc= Εδώ μπορείτε να ορίσετε ενέργειες που θέλετε να δημιουργεί αυτόματα το Dolibarr στην Ατζέντα. Εάν δεν έχει επιλεγεί τίποτα, μόνο οι μη αυτόματες ενέργειες θα περιλαμβάνονται στα αρχεία καταγραφής και θα εμφανίζονται στην Ατζέντα. Η αυτόματη παρακολούθηση των επιχειρηματικών ενεργειών που γίνονται σε αντικείμενα (επικύρωση, αλλαγή κατάστασης) δεν θα αποθηκευτεί. +AgendaSetupOtherDesc= Αυτή η σελίδα παρέχει επιλογές που επιτρέπουν την εξαγωγή των ενεργειών σας στο Dolibarr σε ένα εξωτερικό ημερολόγιο (Thunderbird, Google Calendar κ.λπ.) +AgendaExtSitesDesc=Αυτή η σελίδα σας επιτρέπει να ρυθμίσετε τον συγχρονισμό και την εμφάνιση εξωτερικών ημερολόγιων στην ατζέντα του Dolibarr. +ActionsEvents=Ενέργειες που θα καταγράφουν αυτόματα στην Ατζέντα +EventRemindersByEmailNotEnabled=Οι υπενθυμίσεις ενεργειών μέσω email δεν ενεργοποιήθηκαν στη ρύθμιση της ενότητας %s. ##### Agenda event labels ##### NewCompanyToDolibarr=Το τρίτο μέρος %s δημιουργήθηκε COMPANY_MODIFYInDolibarr=Το τρίτο μέρος %s τροποποιήθηκε @@ -44,48 +44,49 @@ ContractValidatedInDolibarr=Η σύμβαση %s επικυρώθηκε CONTRACT_DELETEInDolibarr=Η σύμβαση %s διαγράφηκε PropalClosedSignedInDolibarr=Η προσφορά %s υπεγράφη PropalClosedRefusedInDolibarr=Η πρόσφορα %s απορρίφθηκε -PropalValidatedInDolibarr=Η πρόταση %s επικυρώθηκε +PropalValidatedInDolibarr=Η προσφορά %s επικυρώθηκε PropalBackToDraftInDolibarr=Επιστροφή της προσφοράς %s σε κατάσταση προσχεδίου PropalClassifiedBilledInDolibarr=Η προσφορά %s ταξινομήθηκε ως τιμολογημένη InvoiceValidatedInDolibarr=Το τιμολόγιο %s επικυρώθηκε -InvoiceValidatedInDolibarrFromPos=Το τιμολόγιο επικυρώθηκε από το POS -InvoiceBackToDraftInDolibarr=Τιμολόγιο %s θα επιστρέψει στην κατάσταση του σχεδίου -InvoiceDeleteDolibarr=Τιμολόγιο %s διαγράφεται +InvoiceValidatedInDolibarrFromPos=Το τιμολόγιο %s επικυρώθηκε από το POS +InvoiceBackToDraftInDolibarr=Επιστροφή του τιμολογίου %s σε κατάσταση προσχεδίου +InvoiceDeleteDolibarr=Το τιμολόγιο %s διαγράφηκε InvoicePaidInDolibarr=Το τιμολόγιο %s άλλαξε σε πληρωμένο InvoiceCanceledInDolibarr=Το τιμολόγιο %s ακυρώθηκε MemberValidatedInDolibarr=Το μέλος %s επικυρώθηκε MemberModifiedInDolibarr=Το μέλος %s τροποποιήθηκε -MemberResiliatedInDolibarr=Το μέλος %s τερματίστηκε +MemberResiliatedInDolibarr=Το μέλος %s διαγράφηκε MemberDeletedInDolibarr=Το μέλος %s διαγράφηκε +MemberExcludedInDolibarr=Το μέλος %sεξαιρέθηκε MemberSubscriptionAddedInDolibarr=Προστέθηκε συνδρομή %s για το μέλος %s MemberSubscriptionModifiedInDolibarr=Η συνδρομή %s για το μέλος %s τροποποιήθηκε MemberSubscriptionDeletedInDolibarr=Η συνδρομή %s για το μέλος %s διαγράφηκε ShipmentValidatedInDolibarr=Η αποστολή %s επικυρώθηκε ShipmentClassifyClosedInDolibarr=Η αποστολή %s ταξινομήθηκε ως τιμολογημένη -ShipmentUnClassifyCloseddInDolibarr=Η αποστολή %s ταξινομήθηκε εκ νέου -ShipmentBackToDraftInDolibarr=Η αποστολή %s επιστρέφει στην κατάσταση του σχεδίου +ShipmentUnClassifyCloseddInDolibarr=Η αποστολή %s ταξινομήθηκε ως ανοικτή ξανά +ShipmentBackToDraftInDolibarr=Επιστροφή της αποστολης %s σε κατάσταση προσχεδίου ShipmentDeletedInDolibarr=Η αποστολή %s διαγράφηκε ShipmentCanceledInDolibarr=Η αποστολή %s ακυρώθηκε -ReceptionValidatedInDolibarr=Η λήψη %s επικυρώθηκε +ReceptionValidatedInDolibarr=Η παραλαβή %s επικυρώθηκε ReceptionClassifyClosedInDolibarr=Η παραλαβή %s ταξινομήθηκε ως κλειστή -OrderCreatedInDolibarr=Παραγγελία %s +OrderCreatedInDolibarr=Η Παραγγελία %s δημιουργήθηκε OrderValidatedInDolibarr=Η παραγγελία %s επικυρώθηκε -OrderDeliveredInDolibarr=Παραγγελία %s κατατάσσεται παραδοτέα -OrderCanceledInDolibarr=Παραγγελία %s ακυρώθηκε -OrderBilledInDolibarr=Παραγγελία %s κατατάσσεται χρεωμένη -OrderApprovedInDolibarr=Παραγγελία %s εγκρίθηκε -OrderRefusedInDolibarr=Παραγγελία %s απορριφθεί -OrderBackToDraftInDolibarr=Παραγγελία %s θα επιστρέψει στην κατάσταση σχέδιο -ProposalSentByEMail=Η εμπορική πρόταση %s στάλθηκε μέσω email +OrderDeliveredInDolibarr=Η παραγγελία %s ταξινομήθηκε ως παραδομένη +OrderCanceledInDolibarr=Η παραγγελία %s ακυρώθηκε +OrderBilledInDolibarr=Η παραγγελία %s ταξινομήθηκε ως τιμολογημένη +OrderApprovedInDolibarr=Η παραγγελία %s εγκρίθηκε +OrderRefusedInDolibarr=Η παραγγελία %s απορρίφθηκε +OrderBackToDraftInDolibarr=Επιστροφή της παραγγελίας %s σε κατάσταση προσχεδίου +ProposalSentByEMail=Η προσφορά %s στάλθηκε μέσω email ContractSentByEMail=Η σύμβαση %s στάλθηκε μέσω email -OrderSentByEMail=Η παραγγελία πωλήσεων %s στάλθηκε με email +OrderSentByEMail=Η παραγγελία πωλήσεων %s στάλθηκε μέσω email InvoiceSentByEMail=Το τιμολόγιο πελάτη %s στάλθηκε μέσω email -SupplierOrderSentByEMail=Παραγγελία αγοράς %s αποστέλλεται μέσω ηλεκτρονικού ταχυδρομείου +SupplierOrderSentByEMail=Η εντολή αγοράς %s στάλθηκε μέσω email ORDER_SUPPLIER_DELETEInDolibarr=Η εντολή αγοράς %s διαγράφηκε -SupplierInvoiceSentByEMail=Τιμολόγιο πωλητή %s αποστέλλεται μέσω ηλεκτρονικού ταχυδρομείου -ShippingSentByEMail=Η αποστολή %s αποστέλλεται μέσω ηλεκτρονικού ταχυδρομείου +SupplierInvoiceSentByEMail=Το τιμολόγιο προμηθευτή %s στάλθηκε μέσω email +ShippingSentByEMail=Η αποστολή %s στάλθηκε μέσω email ShippingValidated= Η αποστολή %s επικυρώθηκε -InterventionSentByEMail=Η παρέμβαση %s στάλθηκε με ηλεκτρονικό ταχυδρομείο +InterventionSentByEMail=Η παρέμβαση %s στάλθηκε μέσω email ProposalDeleted=Η προσφορά διαγράφηκε OrderDeleted=Η παραγγελία διαγράφηκε InvoiceDeleted=Το τιμολόγιο διαγράφηκε @@ -96,81 +97,81 @@ CONTACT_DELETEInDolibarr=Η επαφή %s διαγράφηκε PRODUCT_CREATEInDolibarr=Το προϊόν %s δημιουργήθηκε PRODUCT_MODIFYInDolibarr=Το προϊόν %s τροποποιήθηκε PRODUCT_DELETEInDolibarr=Το προϊόν %s διαγράφηκε -HOLIDAY_CREATEInDolibarr=Αίτηση για άδεια %s δημιουργήθηκε -HOLIDAY_MODIFYInDolibarr=Αίτηση για άδεια %s τροποποιήθηκε -HOLIDAY_APPROVEInDolibarr=Η αίτηση για άδεια %s εγκρίθηκε +HOLIDAY_CREATEInDolibarr=Το αίτημα άδειας %s δημιουργήθηκε +HOLIDAY_MODIFYInDolibarr=Το αίτημα άδειας %s τροποποιήθηκε +HOLIDAY_APPROVEInDolibarr=Το αίτημα άδειας %s εγκρίθηκε HOLIDAY_VALIDATEInDolibarr=Το αίτημα άδειας %s επικυρώθηκε -HOLIDAY_DELETEInDolibarr=Αίτηση άδειας %s διαγράφηκε -EXPENSE_REPORT_CREATEInDolibarr=Αναφορά εξόδων %s δημιουργήθηκε -EXPENSE_REPORT_VALIDATEInDolibarr=Έκθεση δαπανών %s επικυρωθεί -EXPENSE_REPORT_APPROVEInDolibarr=Έκθεση δαπανών %s εγκριθεί -EXPENSE_REPORT_DELETEInDolibarr=Αναφορά εξόδων %s διαγράφηκε -EXPENSE_REPORT_REFUSEDInDolibarr=Η έκθεση δαπανών %s απορρίφθηκε -PROJECT_CREATEInDolibarr=Έργο %s δημιουργήθηκε +HOLIDAY_DELETEInDolibarr=Το αίτημα άδειας %s διαγράφηκε +EXPENSE_REPORT_CREATEInDolibarr=Η αναφορά εξόδων %s δημιουργήθηκε +EXPENSE_REPORT_VALIDATEInDolibarr=Η αναφορά εξόδων %s επικυρώθηκε +EXPENSE_REPORT_APPROVEInDolibarr=Η αναφορά εξόδων %s εγκρίθηκε +EXPENSE_REPORT_DELETEInDolibarr=Η αναφορά εξόδων %s διαγράφηκε +EXPENSE_REPORT_REFUSEDInDolibarr=Η αναφορά εξόδων %s απορρίφθηκε +PROJECT_CREATEInDolibarr=Το έργο %s δημιουργήθηκε PROJECT_MODIFYInDolibarr=Το έργο %s τροποποιήθηκε PROJECT_DELETEInDolibarr=Το έργο %s διαγράφηκε TICKET_CREATEInDolibarr=Το εισιτήριο %s δημιουργήθηκε TICKET_MODIFYInDolibarr=Το εισιτήριο %s τροποποιήθηκε -TICKET_ASSIGNEDInDolibarr=Το εισιτήριο %s εκχωρήθηκε +TICKET_ASSIGNEDInDolibarr=Το εισιτήριο %s ανατέθηκε TICKET_CLOSEInDolibarr=Το εισιτήριο %s έκλεισε TICKET_DELETEInDolibarr=Το εισιτήριο %s διαγράφηκε BOM_VALIDATEInDolibarr=Το BOM επικυρώθηκε -BOM_UNVALIDATEInDolibarr=Το BOM δεν έχει εγκριθεί -BOM_CLOSEInDolibarr=Το BOM είναι απενεργοποιημένο -BOM_REOPENInDolibarr=Ανοίξτε ξανά το BOM +BOM_UNVALIDATEInDolibarr=Το BOM δεν είναι επικυρωμένο +BOM_CLOSEInDolibarr=Το BOM απενεργοποιήθηκε +BOM_REOPENInDolibarr=Το BOM άνοιξε ξανά BOM_DELETEInDolibarr=Το BOM διαγράφηκε MRP_MO_VALIDATEInDolibarr=Το ΜΟ επικυρώθηκε -MRP_MO_UNVALIDATEInDolibarr=Το MO ορίστηκε σε πρόχειρη κατάσταση +MRP_MO_UNVALIDATEInDolibarr=Επιστροφή του MO σε κατάσταση προσχεδίου MRP_MO_PRODUCEDInDolibarr=Το ΜΟ παράχθηκε MRP_MO_DELETEInDolibarr=Το MO διαγράφηκε -MRP_MO_CANCELInDolibarr=MO ακυρώθηκε +MRP_MO_CANCELInDolibarr=Το MO ακυρώθηκε PAIDInDolibarr=%s πληρώθηκε ##### End agenda events ##### AgendaModelModule=Πρότυπα εγγράφων για συμβάν DateActionStart=Ημερομηνία έναρξης DateActionEnd=Ημερομηνία λήξης AgendaUrlOptions1=Μπορείτε ακόμη να προσθέσετε τις ακόλουθες παραμέτρους για να φιλτράρετε τα αποτέλεσμα: -AgendaUrlOptions3=logina=%s να περιορίσει την παραγωγή ενεργειών που ανήκουν στον χρήστη %s. -AgendaUrlOptionsNotAdmin=logina =! %s για να περιορίσετε την έξοδο σε ενέργειες που δεν ανήκουν στον χρήστη %s . -AgendaUrlOptions4=logint = %s για να περιορίσετε την έξοδο σε ενέργειες που έχουν εκχωρηθεί στο χρήστη %s (ιδιοκτήτης και άλλοι). -AgendaUrlOptionsProject=project = __ PROJECT_ID__ για να περιορίσετε την έξοδο σε ενέργειες που σχετίζονται με το έργο __PROJECT_ID__ . +AgendaUrlOptions3= logina= για περιορισμό της εξόδου σε ενέργειες που ανήκουν σε έναν χρήστη %s. +AgendaUrlOptionsNotAdmin= logina=! για περιορισμό της εξόδου σε ενέργειες που δεν ανήκουν στον χρήστη %s. +AgendaUrlOptions4= logint= για περιορισμό της εξόδου σε ενέργειες που έχουν ανατεθεί στον χρήστη %s(ιδιοκτήτης και άλλοι) +AgendaUrlOptionsProject= έργο=__PROJECT_ID__ για περιορισμό της εξόδου σε ενέργειες που συνδέονται με το έργο __PROJECT_ID__ . AgendaUrlOptionsNotAutoEvent=notactiontype = systemauto για την εξαίρεση αυτόματων συμβάντων. -AgendaUrlOptionsIncludeHolidays= includeholidays=1 για να συμπεριλάβει εκδηλώσεις εορτών. +AgendaUrlOptionsIncludeHolidays= includeholidays=1 για να συμπεριληφθούν εκδηλώσεις εορτών. AgendaShowBirthdayEvents=Γενέθλια επαφών AgendaHideBirthdayEvents=Απόκρυψη γενεθλίων των επαφών -Busy=Απασχολ. -ExportDataset_event1=Κατάλογος των εκδηλώσεων -DefaultWorkingDays=Προεπιλογή εργάσιμες ημέρες που κυμαίνονται την εβδομάδα (παράδειγμα: 1-5, 1-6) -DefaultWorkingHours=Προεπιλογή ώρες εργασίας ανά ημέρα (Παράδειγμα: 9-18) +Busy=Απασχολημένος +ExportDataset_event1=Λίστα ενεργειών ατζέντας +DefaultWorkingDays=Εύρος προεπιλεγμένων εργάσιμων ημερών της εβδομάδας (Παράδειγμα: 1-5, 1-6) +DefaultWorkingHours=Προεπιλεγμένες ώρες εργασίας την ημέρα (Παράδειγμα: 9-18) # External Sites ical ExportCal=Εξαγωγή ημερολογίου ExtSites=Εισαγωγή εξωτερικών ημερολογίων -ExtSitesEnableThisTool=Εμφάνιση εξωτερικών ημερολογίων (που ορίζονται στην παγκόσμια ρύθμιση) στην Ατζέντα. Δεν επηρεάζει τα εξωτερικά ημερολόγια που ορίζονται από τους χρήστες. +ExtSitesEnableThisTool=Εμφάνιση εξωτερικών ημερολογίων (που ορίστηκαν στην καθολική ρύθμιση) στην Ατζέντα. Δεν επηρεάζει τα εξωτερικά ημερολόγια που ορίστηκαν από τους χρήστες. ExtSitesNbOfAgenda=Αριθμός ημερολογίων -AgendaExtNb=Αριθμός ημερολογίου. %s +AgendaExtNb=Ημερολόγιο αρ. %s ExtSiteUrlAgenda=URL για να αποκτήσετε πρόσβαση στο .ical αρχείο ExtSiteNoLabel=Χωρίς Περιγραφή VisibleTimeRange=Ορατό χρονικό εύρος -VisibleDaysRange=Ορατό φάσμα ημερών -AddEvent=Δημιουργία συμβάντος +VisibleDaysRange=Εύρος ορατών ημερών +AddEvent=Δημιουργία ενέργειας MyAvailability=Η διαθεσιμότητα μου -ActionType=Τύπος συμβάντος -DateActionBegin=Έναρξη ημερομηνίας του συμβάντος -ConfirmCloneEvent=Είστε σίγουροι πως θέλετε να κλωνοποιήσετε την εκδήλωση %s; -RepeatEvent=Επανάληψη συμβάντος +ActionType=Τύπος ενέργειας +DateActionBegin=Ημερομηνία έναρξης ενέργειας +ConfirmCloneEvent=Είστε σίγουροι πως θέλετε να αντιγράψετε την εκδήλωση %s; +RepeatEvent=Επανάληψη ενέργειας OnceOnly=Μόνο μία φορά -EveryWeek=Εβδομαδιαίο -EveryMonth=Μηνιαίο +EveryWeek=Κάθε εβδομάδα +EveryMonth=Κάθε μήνα DayOfMonth=Ημέρα του Μήνα DayOfWeek=Ημέρα της εβδομάδας -DateStartPlusOne=Έναρξη ημέρας + 1 ώρα -SetAllEventsToTodo=Ρυθμίστε όλα τα συμβάντα για να κάνετε +DateStartPlusOne=Ημερομηνία έναρξης + 1 ώρα +SetAllEventsToTodo=Ορισμός όλων των ενεργειών ως εκκρεμών SetAllEventsToInProgress=Ορίστε όλα τα συμβάντα σε εξέλιξη SetAllEventsToFinished=Ορίστε όλα τα συμβάντα ως ολοκληρωμένα -ReminderTime=Περίοδος υπενθύμισης πριν από την εκδήλωση +ReminderTime=Περίοδος υπενθύμισης πριν από την ενέργεια TimeType=Τύπος διάρκειας ReminderType=Τύπος επανάκλησης -AddReminder=Δημιουργήστε μια αυτόματη ειδοποίηση υπενθύμισης για αυτό το συμβάν -ErrorReminderActionCommCreation=Σφάλμα κατά τη δημιουργία της ειδοποίησης υπενθύμισης για αυτό το συμβάν -BrowserPush=Περιήηση αναδυόμενης ειδοποίησης +AddReminder=Δημιουργήστε μια αυτόματη ειδοποίηση υπενθύμισης για αυτή την ενέργεια +ErrorReminderActionCommCreation=Σφάλμα κατά τη δημιουργία της ειδοποίησης υπενθύμισης για αυτή την ενέργεια +BrowserPush=Αναδυόμενη ειδοποίηση προγράμματος περιήγησης ActiveByDefault=Ενεργοποιημένο από προεπιλογή diff --git a/htdocs/langs/el_GR/blockedlog.lang b/htdocs/langs/el_GR/blockedlog.lang index 319dba5722c..81b964325f0 100644 --- a/htdocs/langs/el_GR/blockedlog.lang +++ b/htdocs/langs/el_GR/blockedlog.lang @@ -7,51 +7,51 @@ CompanyInitialKey=Αρχικό κλειδί εταιρείας (hash of genesis BrowseBlockedLog=Αμετάβλητα αρχεία καταγραφής ShowAllFingerPrintsMightBeTooLong=Εμφάνιση όλων των αρχειοθετημένων αρχείων καταγραφής (μπορεί να είναι μεγάλα) ShowAllFingerPrintsErrorsMightBeTooLong=Εμφάνιση όλων των μη έγκυρων αρχείων καταγραφής (μπορεί να είναι μεγάλα) -DownloadBlockChain=Κατεβάστε τα δακτυλικά αποτυπώματα +DownloadBlockChain=Λήψη Block Chain KoCheckFingerprintValidity=Η αρχειοθετημένη καταχώριση αρχείου καταγραφής δεν είναι έγκυρη. Σημαίνει ότι κάποιος (ένας χάκερ;) έχει τροποποιήσει ορισμένα δεδομένα αυτής της εγγραφής μετά την καταγραφή της, ή έχει διαγράψει την προηγούμενη αρχειοθετημένη εγγραφή (ελέγξτε ότι η γραμμή με το προηγούμενο # υπάρχει) ή έχει τροποποιήσει το άθροισμα ελέγχου(checksum) της προηγούμενης εγγραφής. OkCheckFingerprintValidity=Η αρχειοθετημένη εγγραφή αρχείου καταγραφής είναι έγκυρη. Τα δεδομένα σε αυτή τη γραμμή δεν τροποποιήθηκαν και η καταχώρηση ακολουθεί την προηγούμενη. OkCheckFingerprintValidityButChainIsKo=Το αρχειοθετημένο αρχείο καταγραφής φαίνεται έγκυρο σε σύγκριση με το προηγούμενο, αλλά η αλυσίδα είχε αλλοιωθεί στο παρελθόν. AddedByAuthority=Αποθηκευμένο σε απομακρυσμένη αρχή NotAddedByAuthorityYet=Δεν έχει ακόμη αποθηκευτεί σε απομακρυσμένη αρχή ShowDetails=Εμφάνιση λεπτομερειών αποθήκευσης -logPAYMENT_VARIOUS_CREATE=Η πληρωμή (δεν έχει εκχωρηθεί σε τιμολόγιο) δημιουργήθηκε -logPAYMENT_VARIOUS_MODIFY=Η πληρωμή (δεν έχει εκχωρηθεί σε τιμολόγιο) τροποποιήθηκε -logPAYMENT_VARIOUS_DELETE=Πληρωμή (δεν έχει εκχωρηθεί σε τιμολόγιο) λογική διαγραφή +logPAYMENT_VARIOUS_CREATE=Δημιουργήθηκε η πληρωμή (δεν εκχωρείται σε τιμολόγιο). +logPAYMENT_VARIOUS_MODIFY=Τροποποιήθηκε η πληρωμή (δεν έχει αντιστοιχιστεί σε τιμολόγιο). +logPAYMENT_VARIOUS_DELETE=Λογική διαγραφή πληρωμής (δεν εκχωρείται σε τιμολόγιο). logPAYMENT_ADD_TO_BANK=Η πληρωμή προστέθηκε στην τράπεζα logPAYMENT_CUSTOMER_CREATE=Δημιουργήθηκε πληρωμή πελάτη -logPAYMENT_CUSTOMER_DELETE=Λογική διαγραφή πληρωμής πελατών +logPAYMENT_CUSTOMER_DELETE=Λογική διαγραφή πληρωμής πελάτη logDONATION_PAYMENT_CREATE=Δημιουργήθηκε η πληρωμή δωρεάς -logDONATION_PAYMENT_DELETE=Δωρεά λογική διαγραφή πληρωμής +logDONATION_PAYMENT_DELETE=Λογική διαγραφή πληρωμής δωρεάς logBILL_PAYED=Πληρωμένο τιμολόγιο πελάτη -logBILL_UNPAYED=Το τιμολόγιο πελατών έχει οριστεί ως μη πληρωμένο +logBILL_UNPAYED=Το τιμολόγιο πελάτη ορίστηκε ως απλήρωτο logBILL_VALIDATE=Το τιμολόγιο πελάτη επικυρώθηκε -logBILL_SENTBYMAIL=Τα τιμολόγια πελατών αποστέλλονται ταχυδρομικώς -logBILL_DELETE=Το τιμολόγιο πελατών διαγράφηκε λογικά -logMODULE_RESET=Η μονάδα BlockedLog απενεργοποιήθηκε -logMODULE_SET=Η μονάδα BlockedLog ήταν ενεργοποιημένη -logDON_VALIDATE=Επικύρωση δωρεάς -logDON_MODIFY=Μετατροπή δωρεάς -logDON_DELETE=Δωρεά λογική διαγραφή +logBILL_SENTBYMAIL=Αποστολή τιμολογίου πελάτη μέσω email +logBILL_DELETE=Το τιμολόγιο πελάτη διαγράφηκε λογικά  +logMODULE_RESET=Η ενότητα BlockedLog απενεργοποιήθηκε +logMODULE_SET=Η ενότητα BlockedLog ενεργοποιήθηκε +logDON_VALIDATE=Η δωρεά επικυρώθηκε +logDON_MODIFY=Η δωρεά τροποποιήθηκε +logDON_DELETE=Λογική διαγραφή δωρεάς logMEMBER_SUBSCRIPTION_CREATE=Δημιουργία συνδρομής μέλους logMEMBER_SUBSCRIPTION_MODIFY=Η συνδρομή μέλους τροποποιήθηκε -logMEMBER_SUBSCRIPTION_DELETE=Συνδρομή λογικής διαγραφής μέλους +logMEMBER_SUBSCRIPTION_DELETE=Λογική διαγραφή συνδρομής μέλους logCASHCONTROL_VALIDATE=Καταγραφή κλεισίματος ταμείου -BlockedLogBillDownload=Λήψη τιμολογίου πελατών -BlockedLogBillPreview=Προβολή τιμολογίου πελατών -BlockedlogInfoDialog=Στοιχεία καταγραφής -ListOfTrackedEvents=Λίστα συμβάντων που παρακολουθούνται -Fingerprint=Δακτυλικό αποτύπωμα +BlockedLogBillDownload=Λήψη τιμολογίου πελάτη +BlockedLogBillPreview=Προεπισκόπηση τιμολογίου πελάτη +BlockedlogInfoDialog=Στοιχεία αρχείου καταγραφής +ListOfTrackedEvents=Λίστα συμβάντων υπό ελεγχο +Fingerprint=Fingerprint DownloadLogCSV=Εξαγωγή αρχειοθετημένων αρχείων καταγραφής (CSV) -logDOC_PREVIEW=Προεπισκόπηση ενός επικυρωμένου εγγράφου για εκτύπωση ή λήψη -logDOC_DOWNLOAD=Λήψη επικυρωμένου εγγράφου για εκτύπωση ή αποστολή +logDOC_PREVIEW=Προ επισκόπηση ενός επικυρωμένου εγγράφου για εκτύπωση ή λήψη +logDOC_DOWNLOAD=Λήψη ενός επικυρωμένου εγγράφου για εκτύπωση ή αποστολή DataOfArchivedEvent=Πλήρη δεδομένα αρχειοθετημένου γεγονότος -ImpossibleToReloadObject=Το αρχικό αντικείμενο (πληκτρολογήστε %s, id %s) δεν είναι συνδεδεμένο (ανατρέξτε στη στήλη "Πλήρες αρχείο δεδομένων" για να λάβετε αναλλοίωτα αποθηκευμένα δεδομένα) -BlockedLogAreRequiredByYourCountryLegislation=Μπορείτε να ζητήσετε από τη νομοθεσία της χώρας σας τη λειτουργική μονάδα Unalterable Logs. Η απενεργοποίηση αυτής της ενότητας μπορεί να καταστήσει τυχόν μελλοντικές συναλλαγές άκυρες σε σχέση με το νόμο και τη χρήση νόμιμου λογισμικού, καθώς δεν μπορούν να επικυρωθούν από φορολογικό έλεγχο. -BlockedLogActivatedBecauseRequiredByYourCountryLegislation=Το μη τροποποιημένο τμήμα καταγραφής ενεργοποιήθηκε λόγω της νομοθεσίας της χώρας σας. Η απενεργοποίηση αυτής της ενότητας μπορεί να καταστήσει τυχόν μελλοντικές συναλλαγές άκυρες σε σχέση με το νόμο και τη χρήση νόμιμου λογισμικού, καθώς δεν μπορούν να επικυρωθούν από φορολογικό έλεγχο. -BlockedLogDisableNotAllowedForCountry=Κατάλογος χωρών όπου η χρήση αυτής της λειτουργικής μονάδας είναι υποχρεωτική (απλά για να αποφευχθεί η απενεργοποίηση της μονάδας από λάθος, εάν η χώρα σας βρίσκεται σε αυτή τη λίστα, δεν είναι δυνατή η απενεργοποίηση της ενότητας χωρίς την πρώτη επεξεργασία αυτής της λίστας. κρατήστε ένα κομμάτι στο μη αναστρέψιμο αρχείο καταγραφής). +ImpossibleToReloadObject=Το αρχικό αντικείμενο (τύπος %s, id %s) δεν είναι συνδεδεμένο (δείτε τη στήλη "Πλήρη δεδομένα" για να λάβετε αμετάβλητα αποθηκευμένα δεδομένα) +BlockedLogAreRequiredByYourCountryLegislation=Η ενότητα Αμετάβλητα αρχεία καταγραφής ενδέχεται να απαιτείται από τη νομοθεσία της χώρας σας. Η απενεργοποίηση αυτής της ενότητας μπορεί να καταστήσει άκυρες τυχόν μελλοντικές συναλλαγές σε σχέση με τη νομοθεσία και τη χρήση νομικού λογισμικού, καθώς δεν μπορούν να επικυρωθούν από φορολογικό έλεγχο. +BlockedLogActivatedBecauseRequiredByYourCountryLegislation=Η ενότητα Αμετάβλητα αρχεία καταγραφής ενεργοποιήθηκε λόγω της νομοθεσίας της χώρας σας. Η απενεργοποίηση αυτής της ενότητας μπορεί να καταστήσει άκυρες τυχόν μελλοντικές συναλλαγές σε σχέση με τη νομοθεσία και τη χρήση νομικού λογισμικού, καθώς δεν μπορούν να επικυρωθούν από φορολογικό έλεγχο. +BlockedLogDisableNotAllowedForCountry=Λίστα χωρών όπου η χρήση αυτής της ενότητας είναι υποχρεωτική (απλώς για να αποφευχθεί η κατά λάθος απενεργοποίηση της ενότητας, εάν η χώρα σας βρίσκεται σε αυτήν τη λίστα, η απενεργοποίηση της ενότητας δεν είναι δυνατή χωρίς να επεξεργαστείτε πρώτα αυτήν τη λίστα. Σημειώστε επίσης ότι η ενεργοποίηση/απενεργοποίηση αυτής της ενότητας θα αποθηκευτεί στο αμετάβλητο αρχείο καταγραφής). OnlyNonValid=Μη έγκυρη -TooManyRecordToScanRestrictFilters=Πάρα πολλές εγγραφές για σάρωση / ανάλυση. Περιορίστε τη λίστα με πιο περιοριστικά φίλτρα. -RestrictYearToExport=Περιορίστε μήνα / έτος για εξαγωγή +TooManyRecordToScanRestrictFilters=Πάρα πολλές εγγραφές για σάρωση / ανάλυση. Περιορίστε τη λίστα με τη χρήση φίλτρων. +RestrictYearToExport=Ορισμός μήνα / έτους για εξαγωγή BlockedLogEnabled=Έχει ενεργοποιηθεί το σύστημα για την παρακολούθηση εγγραφών σε μη τροποποιήσημα αρχεία καταγραφής -BlockedLogDisabled=Έχει απενεργοποιηθεί το σύστημα για την παρακολούθηση εγγραφών σε μη τροποποιήσημα αρχεία καταγραφής ύστερα από αρκετή καταγραφή. Αποθηκεύσαμε ένα ειδικό Fingerprint για να παρακολουθούμε την αλυσίδα ως σπασμένη. +BlockedLogDisabled=Έχει απενεργοποιηθεί το σύστημα για την παρακολούθηση εγγραφών σε μη τροποποιήσημα αρχεία καταγραφής αφού έχει γίνει ήδη καταγραφή. Αποθηκεύσαμε ένα ειδικό Fingerprint για να παρακολουθούμε την αλυσίδα ως σπασμένη. BlockedLogDisabledBis=Έχει απενεργοποιηθεί το σύστημα για την παρακολούθηση εγγραφών σε μη τροποποιήσημα αρχεία καταγραφής. Αυτό είναι δυνατόν γιατί καμιά εγγραφή δεν έχει γίνει ακόμα. diff --git a/htdocs/langs/el_GR/boxes.lang b/htdocs/langs/el_GR/boxes.lang index b142b8a6e2d..ffd6309595a 100644 --- a/htdocs/langs/el_GR/boxes.lang +++ b/htdocs/langs/el_GR/boxes.lang @@ -1,19 +1,19 @@ # Dolibarr language file - Source file is en_US - boxes BoxDolibarrStateBoard=Στατιστικά για τα κύρια επιχειρηματικά αντικείμενα στη βάση δεδομένων -BoxLoginInformation=πληροφορίες σύνδεσης +BoxLoginInformation=Πληροφορίες σύνδεσης BoxLastRssInfos=Πληροφορίες RSS BoxLastProducts=Τελευταία %s Προϊόντα / Υπηρεσίες -BoxProductsAlertStock=Ειδοποιήσεις αποθεμάτων για προϊόντα -BoxLastProductsInContract=Τελευταία προϊόντα / υπηρεσίες που συνάπτονται με %s +BoxProductsAlertStock=Ειδοποιήσεις αποθέματος προϊόντων +BoxLastProductsInContract=Τελευταία %s προϊόντα/υπηρεσίες με σύμβαση BoxLastSupplierBills=Τελευταία τιμολόγια προμηθευτή BoxLastCustomerBills=Τελευταία τιμολόγια πελατών BoxOldestUnpaidCustomerBills=Παλαιότερα μη πληρωμένα τιμολόγια πελατών -BoxOldestUnpaidSupplierBills=Παλαιότερα μη πληρωμένα τιμολόγια προμηθευτή +BoxOldestUnpaidSupplierBills=Παλαιότερα μη πληρωμένα τιμολόγια προμηθευτών BoxLastProposals=Τελευταίες εμπορικές προτάσεις BoxLastProspects=Τελευταίες τροποποιημένες προοπτικές -BoxLastCustomers=Πρόσφατα τροποποιημένοι πελάτες -BoxLastSuppliers=Πρόσφατα τροποποιημένοι προμηθευτές -BoxLastCustomerOrders=Τελευταίες παραγγελίες πωλήσεων +BoxLastCustomers=Τελευταίοι τροποποιημένοι πελάτες +BoxLastSuppliers=Τελευταίοι τροποποιημένοι προμηθευτές +BoxLastCustomerOrders=Τελευταίες εντολές πωλήσεων BoxLastActions=Τελευταίες ενέργειες BoxLastContracts=Τελευταία συμβόλαια BoxLastContacts=Τελευταίες επαφές/διευθύνσεις @@ -21,42 +21,43 @@ BoxLastMembers=Τελευταία μέλη BoxLastModifiedMembers=Τελευταία τροποποιημένα μέλη BoxLastMembersSubscriptions=Τελευταίες συνδρομές μελών BoxFicheInter=Τελευταίες παρεμβάσεις -BoxCurrentAccounts=Άνοιξε το ισοζύγιο των λογαριασμών +BoxCurrentAccounts=Ισοζύγιο ανοιχτών λογαριασμών BoxTitleMemberNextBirthdays=Γενέθλια αυτού του μήνα (μέλη) BoxTitleMembersByType=Μέλη ανά τύπο και κατάσταση BoxTitleMembersSubscriptionsByYear=Συνδρομές μελών ανά έτος -BoxTitleLastRssInfos=Τα %s πιο πρόσφατα νέα από %s -BoxTitleLastProducts=Προϊόντα / Υπηρεσίες: τελευταία τροποποίηση %s -BoxTitleProductsAlertStock=Προϊόντα: προειδοποίηση αποθέματος -BoxTitleLastSuppliers=Οι τελευταίοι %s κατέγραψαν προμηθευτές -BoxTitleLastModifiedSuppliers=Προμηθευτές: τελευταία τροποποίηση %s -BoxTitleLastModifiedCustomers=Πελάτες: τελευταία τροποποίηση %s +BoxTitleLastRssInfos=Τα τελευταία %s νέα από %s +BoxTitleLastProducts=Προϊόντα / Υπηρεσίες: τελευταία %s τροποποιημένα +BoxTitleProductsAlertStock=Προϊόντα: ειδοποίηση αποθέματος +BoxTitleLastSuppliers=Τελευταίοι %s καταγεγραμμένοι προμηθευτές +BoxTitleLastModifiedSuppliers=Προμηθευτές: τελευταίοι %s τροποποιημένοι +BoxTitleLastModifiedCustomers=Πελάτες: τελευταίοι %s τροποποιημένοι BoxTitleLastCustomersOrProspects=Τελευταίοι %s πελάτες ή προοπτικές -BoxTitleLastCustomerBills=Τελευταία τιμολόγια πελατών τροποποιημένα %s +BoxTitleLastCustomerBills=Τελευταία %s τροποποιημένα τιμολόγια πελατών BoxTitleLastSupplierBills=Τελευταία %s τροποποιημένα τιμολόγια προμηθευτών -BoxTitleLastModifiedProspects=Προοπτικές: τελευταία τροποποίηση %s +BoxTitleLastModifiedProspects=Προοπτικές: τελευταία %s τροποποιημένη BoxTitleLastModifiedMembers=Τελευταία %s Μέλη -BoxTitleLastFicheInter=Latest %s modified interventions -BoxTitleOldestUnpaidCustomerBills=Τιμολόγια Πελατών: παλαιότερη %s απλήρωτη -BoxTitleOldestUnpaidSupplierBills=Τιμολόγια προμηθευτών: παλαιότερη %s απλήρωτη -BoxTitleCurrentAccounts=Άνοιγμα Λογαριασμών: υπόλοιπα -BoxTitleSupplierOrdersAwaitingReception=Ο προμηθευτής παραγγέλλει αναμονή για λήψη -BoxTitleLastModifiedContacts=Επαφές / διευθύνσεις: τελευταία τροποποίηση %s -BoxMyLastBookmarks=Σελιδοδείκτες: τελευταίες %s +BoxTitleLastFicheInter=Τελευταίες %s τροποποιημένες παρεμβάσεις +BoxTitleOldestUnpaidCustomerBills=Τιμολόγια Πελατών: παλαιότερα %s απλήρωτα +BoxTitleOldestUnpaidSupplierBills=Τιμολόγια προμηθευτών: παλαιότερα %s απλήρωτα +BoxTitleCurrentAccounts=Ανοιχτοί Λογαριασμοί: ισοζύγια +BoxTitleSupplierOrdersAwaitingReception=Παραγγελίες προμηθευτών εν αναμονή παραλαβής +BoxTitleLastModifiedContacts=Επαφές / διευθύνσεις: τελευταίες %s τροποποιημένες +BoxMyLastBookmarks=Σελιδοδείκτες: τελευταίοι %s BoxOldestExpiredServices=Παλαιότερες ενεργές υπηρεσίες που έχουν λήξει -BoxLastExpiredServices=Τελευταίες %s παλαιότερες επαφές με ενεργές υπηρεσίες λήξαν -BoxTitleLastActionsToDo=Τελευταίες %s ενέργειες προς πραγμαοποίηση -BoxTitleLastContracts=Τα πιο πρόσφατα %s συμβόλαια που τροποποιήθηκαν -BoxTitleLastModifiedDonations=Τελευταίες %s δωρεές που τροποποιήθηκαν +BoxLastExpiredServices=Τελευταίες %s παλαιότερες επαφές με ενεργές υπηρεσίες που έληξαν +BoxTitleLastActionsToDo=Τελευταίες %s ενέργειες προς πραγματοποίηση +BoxTitleOldestActionsToDo=Το παλαιότερο %sσυμβάν που δεν ολοκληρώθηκε +BoxTitleLastContracts=Τελευταία %s τροποποιημένα συμβόλαια +BoxTitleLastModifiedDonations=Τελευταίες %s τροποποιημένες δωρεές BoxTitleLastModifiedExpenses=Τελευταίες %s αναφορές εξόδων που τροποποιήθηκαν BoxTitleLatestModifiedBoms=Τελευταία %s BOM που τροποποιήθηκαν BoxTitleLatestModifiedMos=Τελευταίες %s Παραγγελίες Κατασκευής που τροποποιήθηκαν BoxTitleLastOutstandingBillReached=Πελάτες με υπέρβαση του μέγιστου οφειλόμενου BoxGlobalActivity=Η γενική δραστηριότητα για (τιμολόγια, προσφορές, παραγγελίες) BoxGoodCustomers=Καλοί πελάτες -BoxTitleGoodCustomers=%s καλών πελατών +BoxTitleGoodCustomers=%s Καλοί πελάτες BoxScheduledJobs=Προγραμματισμένες εργασίες -BoxTitleFunnelOfProspection=Lead funnel +BoxTitleFunnelOfProspection=Διαδικασία Αξιοποίησης Προοπτικών FailedToRefreshDataInfoNotUpToDate=Αποτυχία ανανέωσης ροής RSS. Τελευταία επιτυχημένη ημερομηνία ανανέωσης: %s LastRefreshDate=Ημερομηνία τελευταίας ανανέωσης NoRecordedBookmarks=Δεν υπάρχουν σελιδοδείκτες που ορίζονται. Κάντε κλικ εδώ για να προσθέσετε σελιδοδείκτες. @@ -64,57 +65,57 @@ ClickToAdd=Πατήστε εδώ για προσθήκη. NoRecordedCustomers=Δεν υπάρχουν καταχωρημένοι πελάτες NoRecordedContacts=Δεν υπάρχουν καταγεγραμμένες επαφές NoActionsToDo=Δεν υπάρχουν ενέργειες που πρέπει να γίνουν -NoRecordedOrders=Δεν έχουν καταγραφεί εντολές πώλησης +NoRecordedOrders=Δεν υπάρχουν καταγεγραμμένες εντολές πωλήσεων NoRecordedProposals=Δεν υπάρχουν καταχωρημένες προσφορές -NoRecordedInvoices=Δεν έχουν καταγραφεί τιμολόγια πελατών -NoUnpaidCustomerBills=Δεν έχουν καταβληθεί τιμολόγια πελατών -NoUnpaidSupplierBills=Δεν έχουν καταβληθεί τιμολόγια προμηθευτή -NoModifiedSupplierBills=Δεν έχουν καταγραφεί τιμολόγια προμηθευτή +NoRecordedInvoices=Δεν υπάρχουν καταγεγραμμένα τιμολόγια πελατών +NoUnpaidCustomerBills=Δεν υπάρχουν απλήρωτα τιμολόγια πελατών +NoUnpaidSupplierBills=Δεν υπάρχουν απλήρωτα τιμολόγια προμηθευτών +NoModifiedSupplierBills=Δεν υπάρχουν καταγεγραμμένα τιμολόγια προμηθευτή NoRecordedProducts=Δεν υπάρχουν καταχωρημένα προϊόντα/υπηρεσίες -NoRecordedProspects=Δεν υπάρχουν προσφορές +NoRecordedProspects=Καμία καταγεγραμμένη προοπτική NoContractedProducts=Δεν υπάρχουν καταχωρημένα συμβόλαια με προϊόντα/υπηρεσίες NoRecordedContracts=Δεν υπάρχουν καταχωρημένα συμβόλαια -NoRecordedInterventions=Δεν καταγράφονται παρεμβάσεις +NoRecordedInterventions=Δεν έχουν καταγραφεί παρεμβάσεις BoxLatestSupplierOrders=Τελευταίες παραγγελίες αγοράς -BoxLatestSupplierOrdersAwaitingReception=Τελευταίες παραγγελίες αγοράς (με εκκρεμότητα λήψης) -NoSupplierOrder=Δεν καταγράφεται εντολή αγοράς +BoxLatestSupplierOrdersAwaitingReception=Τελευταίες παραγγελίες αγοράς (εν αναμονή παραλαβής) +NoSupplierOrder=Καμία καταγεγραμμένη εντολή αγοράς BoxCustomersInvoicesPerMonth=Τιμολόγιο Πελατών ανά μήνα BoxSuppliersInvoicesPerMonth=Τιμολόγια προμηθευτή ανά μήνα BoxCustomersOrdersPerMonth=Παραγγελίες Πωλήσεων ανά μήνα -BoxSuppliersOrdersPerMonth=Παραγγελίες παραγγελίας ανά μήνα +BoxSuppliersOrdersPerMonth=Παραγγελίες προμηθευτών ανά μήνα BoxProposalsPerMonth=Προσφορές ανά μήνα -NoTooLowStockProducts=Κανένα προϊόν δεν βρίσκεται κάτω από το χαμηλό όριο αποθεμάτων -BoxProductDistribution=Προϊόντα / Υπηρεσίες Διανομή +NoTooLowStockProducts=Κανένα προϊόν δεν είναι κάτω από το όριο χαμηλότερου αποθεμάτος +BoxProductDistribution=Διανομή προϊόντων/υπηρεσιών ForObject=Στο %s -BoxTitleLastModifiedSupplierBills=Τιμολόγια προμηθευτή: τροποποιήθηκε τελευταία %s -BoxTitleLatestModifiedSupplierOrders=Παραγγελίες προμηθευτή: τελευταία τροποποιημένη %s -BoxTitleLastModifiedCustomerBills=Τιμολόγια πελατών: τροποποιήθηκε τελευταία %s -BoxTitleLastModifiedCustomerOrders=Παραγγελίες πώλησης: τελευταία τροποποίηση %s -BoxTitleLastModifiedPropals=Τελευταίες τροποποιημένες προτάσεις %s +BoxTitleLastModifiedSupplierBills=Τιμολόγια προμηθευτή: τελευταία %s τροποποιημένα +BoxTitleLatestModifiedSupplierOrders=Παραγγελίες προμηθευτή: τελευταίες %s τροποποιημένες +BoxTitleLastModifiedCustomerBills=Τιμολόγια πελατών: τελευταία %s τροποποίημενα +BoxTitleLastModifiedCustomerOrders=Παραγγελίες πωλήσεων: τελευταίες %sτροποποίημενες +BoxTitleLastModifiedPropals=Τελευταίες %s τροποποιημένες προσφορές BoxTitleLatestModifiedJobPositions=Τελευταίες %s τροποποιημένες θέσεις εργασίας -BoxTitleLatestModifiedCandidatures=Τελευταίες %s τροποποιημένες εφαρμογές εργασίας +BoxTitleLatestModifiedCandidatures=Τελευταίες %s τροποποιημένες αιτήσεις πρόσληψης ForCustomersInvoices=Τιμολόγια Πελάτη ForCustomersOrders=Παραγγελίες πελατών ForProposals=Προσφορές -LastXMonthRolling=Ο τελευταίος κύλινδρος %s μήνα -ChooseBoxToAdd=Προσθέστε widget στον πίνακα ελέγχου -BoxAdded=Το Widget προστέθηκε στον πίνακα ελέγχου σας +LastXMonthRolling=Τελευταίοι %s κυλιόμενοι μήνες +ChooseBoxToAdd=Προσθήκη γραφικού στοιχείου στον πίνακα ελέγχου +BoxAdded=Το γραφικό στοιχείο προστέθηκε στον πίνακα ελέγχου. BoxTitleUserBirthdaysOfMonth=Γενέθλια αυτού του μήνα (χρήστες) BoxLastManualEntries=Τελευταία εγγραφή στη λογιστική που καταχωρήθηκε χειροκίνητα ή χωρίς έγγραφο πηγής BoxTitleLastManualEntries=%s τελευταίες εγγραφές που έχουν εισαχθεί χειροκίνητα ή χωρίς έγγραφο προέλευσης -NoRecordedManualEntries=Δεν καταγράφονται μη καταχωρημένα μητρώα στη λογιστική -BoxSuspenseAccount=Αρίθμηση λογιστικής λειτουργίας με λογαριασμό αναμονής -BoxTitleSuspenseAccount=Αριθμός μη διατεθέντων γραμμών -NumberOfLinesInSuspenseAccount=Αριθμός γραμμής σε λογαριασμό αναμονής -SuspenseAccountNotDefined=Ο λογαριασμός Suspense δεν έχει οριστεί +NoRecordedManualEntries=Καμία καταγραφή χειροκίνητων εγγραφών στη λογιστική +BoxSuspenseAccount=Καταμέτρηση λογιστικής λειτουργίας με μεταβατικό λογαριασμό +BoxTitleSuspenseAccount=Αριθμός μη εκχωρημένων γραμμών +NumberOfLinesInSuspenseAccount=Αριθμός γραμμών στον μεταβατικό λογαριασμό +SuspenseAccountNotDefined=Δεν έχει οριστεί μεταβατικός λογαριασμός BoxLastCustomerShipments=Τελευταίες αποστολές πελάτη BoxTitleLastCustomerShipments=Τελευταίες %s αποστολές πελάτη NoRecordedShipments=Καμία καταγεγραμμένη αποστολή πελάτη BoxCustomersOutstandingBillReached=Πελάτες που έχουν φτάσει το όριο μέγιστου οφειλόμενου # Pages -UsersHome=Αρχικοί χρήστες και ομάδες -MembersHome=Αρχική Συνδρομή -ThirdpartiesHome=Αρχική Τρίτοι -TicketsHome=Αρχικά Εισιτήρια -AccountancyHome=Αρχική Λογιστική +UsersHome=Χρήστες και ομάδες +MembersHome=Μέλη +ThirdpartiesHome=Τρίτα μέρη +TicketsHome=Εισιτήρια +AccountancyHome=Λογιστική ValidatedProjects=Επικυρωμένα έργα diff --git a/htdocs/langs/el_GR/cashdesk.lang b/htdocs/langs/el_GR/cashdesk.lang index 5b554ba8cfa..072938cd9da 100644 --- a/htdocs/langs/el_GR/cashdesk.lang +++ b/htdocs/langs/el_GR/cashdesk.lang @@ -136,3 +136,10 @@ PrintWithoutDetails=Εκτύπωση χωρίς λεπτομέρειες YearNotDefined=Το έτος δεν ορίστηκε TakeposBarcodeRuleToInsertProduct=Κανόνας γραμμικού κώδικα για την εισαγωγή προϊόντος TakeposBarcodeRuleToInsertProductDesc=Κανόνας εξαγωγής αναφοράς προϊόντος + ποσότητας από σαρωμένο γραμμωτό κώδικα.
Εάν είναι κενό (προεπιλεγμένη τιμή), η εφαρμογή θα χρησιμοποιήσει τον πλήρη γραμμωτό κώδικα που έχει σαρωθεί για να βρει το προϊόν.

Αν οριστεί, η σύνταξη πρέπει να είναι:
ref:NB+qu:NB+qd:NB+αλλα:NB
όπου ΝΒ είναι ο αριθμός των χαρακτήρων που θα χρησιμοποιηθεί για την εξαγωγή δεδομένων από το σαρωμένα barcode με:
  • ref: αναφορά προϊόντος
  • qu : ποσότητα κατά την εισαγωγή στοιχείου (μονάδες)
  • qd : ποσότητα κατά την εισαγωγή στοιχείου (δεκαδικά)
  • άλλα : άλλοι χαρακτήρες
+AlreadyPrinted=Ήδη εκτυπωμένο +HideCategories=Απόκρυψη κατηγοριών +HideStockOnLine=Απόκρυψη on line μετοχών +ShowOnlyProductInStock=Εμφάνιση των προϊόντων σε απόθεμα +ShowCategoryDescription=Εμφάνιση περιγραφής κατηγορίας +ShowProductReference=Εμφάνιση αναφοράς προϊόντων +UsePriceHT=Χρήση τιμής χωρίς Φ.Π.Α. και όχι τιμής με Φ.Π.Α. diff --git a/htdocs/langs/el_GR/commercial.lang b/htdocs/langs/el_GR/commercial.lang index 61c4069b15c..1027ac4f0cb 100644 --- a/htdocs/langs/el_GR/commercial.lang +++ b/htdocs/langs/el_GR/commercial.lang @@ -1,6 +1,6 @@ # Dolibarr language file - Source file is en_US - commercial Commercial=Εμπορικό -CommercialArea=Περιοχή Εμπορικού +CommercialArea=Τομέας Εμπορικού Customer=Πελάτης Customers=Πελάτες Prospect=Προοπτική @@ -9,73 +9,73 @@ DeleteAction=Διαγραφή ενός συμβάντος NewAction=Νέο συμβάν AddAction=Δημιουργία συμβάντος AddAnAction=Δημιουργία συμβάντος -AddActionRendezVous=Δημιουργήστε μια εκδήλωση ραντεβού +AddActionRendezVous=Δημιουργία ραντεβού ConfirmDeleteAction=Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το γεγονός; CardAction=Καρτέλα Συμβάντος ActionOnCompany=Σχετιζόμενη επιχείριση ActionOnContact=Σχετιζόμενη επαφή TaskRDVWith=Συνάντηση με %s -ShowTask=Εμφάνιση Εργασίας +ShowTask=Εμφάνιση εργασίας ShowAction=Εμφάνιση Συμβάντος ActionsReport=Αναφορά Ενεργειών -ThirdPartiesOfSaleRepresentative=Στοιχείο με τον αντιπρόσωπο πωλήσεων -SaleRepresentativesOfThirdParty=Εκπρόσωποι πωλήσεων τρίτου μέρους +ThirdPartiesOfSaleRepresentative=Τρίτα μέρη με αντιπρόσωπο πωλήσεων +SaleRepresentativesOfThirdParty=Αντιπρόσωποι πωλήσεων τρίτων SalesRepresentative=Αντιπρόσωπος πωλήσεων SalesRepresentatives=Αντιπρόσωποι πωλήσεων -SalesRepresentativeFollowUp=Αντιπρόσωπο πωλήσεων (παρακολούθηση) +SalesRepresentativeFollowUp=Αντιπρόσωπος πωλήσεων (παρακολούθηση) SalesRepresentativeSignature=Αντιπρόσωπος πωλήσεων (υπογραφή) -NoSalesRepresentativeAffected=No particular sales representative affected +NoSalesRepresentativeAffected=Δεν έχει οριστεί συγκεκριμένος αντιπρόσωπος πωλήσεων ShowCustomer=Εμφάνιση Πελάτη ShowProspect=Εμφάνιση Προοπτικής ListOfProspects=Λίστα Προοπτικών ListOfCustomers=Λίστα Πελατών LastDoneTasks=Πιο πρόσφατες %s ολοκληρωμένες πράξεις LastActionsToDo=Παλαιότερες %s ημιτελείς ενέργειες -DoneAndToDoActions=Ολοκληρωμένα και τρέχοντα συμβάντα +DoneAndToDoActions=Ολοκληρωμένα και προς εκτέλεση συμβάντα DoneActions=Ολοκληρωμένα συμβάντα ToDoActions=Ημιτελή συμβάντα -SendPropalRef=Υποβολή των προσφορών %s +SendPropalRef=Υποβολή της προσφοράς %s SendOrderRef=Υποβολή της παραγγελίας %s StatusNotApplicable=Χωρίς δυνατότητα εφαρμογής -StatusActionToDo=Να γίνουν +StatusActionToDo=Προς εκτέλεση StatusActionDone=Ολοκληρωμένη StatusActionInProcess=Σε εξέλιξη -TasksHistoryForThisContact=Γεγονότα για το πρόσωπο επικοινωνίας +TasksHistoryForThisContact=Συμβάντα αυτής της επαφής LastProspectDoNotContact=Να μην γίνει επικοινωνία LastProspectNeverContacted=Δεν έχει γίνει επικοινωνία LastProspectToContact=Να γίνει επικοινωνία LastProspectContactInProcess=Επικοινωνία σε εξέλιξη -LastProspectContactDone=Η επικοινωνία έγινε +LastProspectContactDone=Η επαφή ολοκληρώθηκε ActionAffectedTo=Η ενέργεια αφορά τον/την ActionDoneBy=Η ενέργεια έγινε από τον/την ActionAC_TEL=Τηλεφώνημα -ActionAC_FAX=Αποστολή FAX +ActionAC_FAX=Αποστολή fax ActionAC_PROP=Αποστολή προσφορας με email ActionAC_EMAIL=Αποστολή email -ActionAC_EMAIL_IN=Υποδοχή μηνυμάτων ηλεκτρονικού ταχυδρομείου +ActionAC_EMAIL_IN=Λήψη email ActionAC_RDV=Συναντήσεις -ActionAC_INT=Παρέμβαση on site -ActionAC_FAC=Αποστολή Τιμολογίου στον πελάτη με email -ActionAC_REL=Αποστολή Τιμολογίου στον πελάτη με email (υπενθύμιση) +ActionAC_INT=Eπί τόπου παρέμβαση +ActionAC_FAC=Αποστολή τιμολογίου πελάτη μέσω email +ActionAC_REL=Αποστολή τιμολογίου πελάτη μέσω email (υπενθύμιση) ActionAC_CLO=Κλείσιμο ActionAC_EMAILING=Αποστολή μαζικών email -ActionAC_COM=Στείλτε την παραγγελία πώλησης μέσω ταχυδρομείου -ActionAC_SHIP=Αποστολή αποστολής με e-mail -ActionAC_SUP_ORD=Αποστολή εντολής αγοράς μέσω ταχυδρομείου +ActionAC_COM=Αποστολή παραγγελίας πωλήσεων μέσω ταχυδρομείου +ActionAC_SHIP=Αποστολή μέσω ταχυδρομείου +ActionAC_SUP_ORD=Αποστολή παραγγελίας αγοράς μέσω ταχυδρομείου ActionAC_SUP_INV=Αποστολή τιμολογίου προμηθευτή μέσω ταχυδρομείου ActionAC_OTH=Άλλο ActionAC_OTH_AUTO=Άλλος τύπος ActionAC_MANUAL=Χειροκίνητα εισηγμένα συμβάντα -ActionAC_AUTO=Αυτόματα εισηγμένα συμβάντα +ActionAC_AUTO=Αυτόματα εισαγμένα συμβάντα ActionAC_OTH_AUTOShort=Άλλο -ActionAC_EVENTORGANIZATION=Εκδηλώσεις οργάνωσης εκδηλώσεων +ActionAC_EVENTORGANIZATION=Ενέργειες οργάνωσης εκδηλώσης Stats=Στατιστικά πωλήσεων StatusProsp=Κατάσταση προοπτικής -DraftPropals=Σχέδιο εμπορικών προσφορών +DraftPropals=Προσχέδιο προσφορών NoLimit=Κανένα όριο ToOfferALinkForOnlineSignature=Σύνδεσμος για ηλεκτρονική υπογραφή -WelcomeOnOnlineSignaturePage=Καλώς ήρθατε στη σελίδα για να δεχτείτε εμπορικές προτάσεις από %s -ThisScreenAllowsYouToSignDocFrom=Αυτή η οθόνη σάς επιτρέπει να δεχτείτε και να υπογράψετε ή να αρνηθείτε μια πρόταση / εμπορική πρόταση -ThisIsInformationOnDocumentToSign=Αυτές είναι οι πληροφορίες σχετικά με το έγγραφο που αποδέχεστε ή απορρίπτετε +WelcomeOnOnlineSignaturePage=Καλώς ήρθατε στη σελίδα αποδοχής εμπορικών προτάσεων από %s +ThisScreenAllowsYouToSignDocFrom=Αυτή η οθόνη σάς επιτρέπει να αποδεχτείτε και να υπογράψετε ή να αρνηθείτε μια προσφορά +ThisIsInformationOnDocumentToSign=Αυτές είναι οι πληροφορίες σχετικά με το έγγραφο προς αποδοχή ή απορρίψη SignatureProposalRef=Υπογραφή προσφοράς / εμπορικής πρότασης %s -FeatureOnlineSignDisabled=Χαρακτηριστικό για απενεργοποίηση υπογραφής σε απευθείας σύνδεση ή δημιουργία εγγράφου προτού ενεργοποιηθεί η δυνατότητα +FeatureOnlineSignDisabled=Η δυνατότητα για ηλεκτρονική υπογραφή απενεργοποιήθηκε ή δημιουργήθηκε έγγραφο πριν από την ενεργοποίηση της δυνατότητας diff --git a/htdocs/langs/el_GR/companies.lang b/htdocs/langs/el_GR/companies.lang index af84c23a449..eca3fb4bbac 100644 --- a/htdocs/langs/el_GR/companies.lang +++ b/htdocs/langs/el_GR/companies.lang @@ -1,9 +1,9 @@ # Dolibarr language file - Source file is en_US - companies ErrorCompanyNameAlreadyExists=Το όνομα τις εταιρίας %s υπάρχει ήδη. Επιλέξτε κάποιο άλλο. ErrorSetACountryFirst=Πρώτα πρέπει να οριστεί η χώρα -SelectThirdParty=Επιλέξτε ένα Πελ./Προμ. +SelectThirdParty=Επιλογή τρίτου μέρους ConfirmDeleteCompany=Είστε σίγουροι ότι θέλετε να διαγράψετε αυτή την εταιρία και όλες τις σχετικές πληροφορίες αυτής; -DeleteContact=Διαγραφή προσώπου επικοινωνίας +DeleteContact=Διαγραφή επαφής / διεύθυνσης ConfirmDeleteContact=Είστε σίγουροι ότι θέλετε να διαγράψετε αυτήν την επαφή και όλες τις σχετικές πληροφορίες αυτής; MenuNewThirdParty=Νέο τρίτο μέρος MenuNewCustomer=Νέος πελάτης @@ -13,26 +13,26 @@ MenuNewPrivateIndividual=Νέος Ιδιώτης NewCompany=Νέα εταιρία ( προοπτική, πελάτης, προμηθευτής) NewThirdParty=Νέο τρίτο μέρος (προοπτική, πελάτης, προμηθευτής) CreateDolibarrThirdPartySupplier=Δημιουργία τρίτου μέρους (προμηθευτής) -CreateThirdPartyOnly=Create thirdpary +CreateThirdPartyOnly=Δημιουργία τρίτου μέρους CreateThirdPartyAndContact=Δημιουργία τρίτου μέρους + θυγατρικής επαφής -ProspectionArea=Περιοχή προοπτικής -IdThirdParty=Αναγνωριστικό +ProspectionArea=Τομέας προοπτικών +IdThirdParty=Αναγνωριστικό τρίτου μέρους IdCompany=Αναγνωριστικό εταιρίας -IdContact=Αναγνωριστικό αντιπροσώπου +IdContact=Αναγνωριστικό επαφής ThirdPartyAddress=Διεύθυνση τρίτου μέρους ThirdPartyContacts=Επαφές τρίτου μέρους ThirdPartyContact=Επαφή / διεύθυνση τρίτου μέρους Company=Εταιρία CompanyName=Όνομα εταιρίας -AliasNames=Ψευδώνυμο (εμπορικό, εμπορικό σήμα, ...) +AliasNames=Διακριτικός τίτλος (εμπορικό, εμπορικό σήμα, ...) AliasNameShort=Διακριτικός τίτλος Companies=Εταιρίες -CountryIsInEEC=Η χώρα είναι εντός της Ευρωπαϊκής Οικονομικής Κοινότητας +CountryIsInEEC=Η χώρα βρίσκεται εντός της Ευρωπαϊκής Οικονομικής Κοινότητας PriceFormatInCurrentLanguage=Μορφή εμφάνισης τιμής στην τρέχουσα γλώσσα και νόμισμα ThirdPartyName=Όνομα τρίτου μέρους -ThirdPartyEmail=Ηλεκτρονικό ταχυδρομείο τρίτου μέρους +ThirdPartyEmail=Email τρίτου μέρους ThirdParty=Τρίτο μέρος -ThirdParties=Πελάτες/Συνεργάτες +ThirdParties=Τρίτα μέρη ThirdPartyProspects=Προοπτικές ThirdPartyProspectsStats=Προοπτικές ThirdPartyCustomers=Πελάτες @@ -41,14 +41,14 @@ ThirdPartyCustomersWithIdProf12=Πελάτες με %s ή %s ThirdPartySuppliers=Προμηθευτές ThirdPartyType=Τύπος τρίτου μέρους Individual=Ιδιώτης -ToCreateContactWithSameName=Θα δημιουργήσει αυτόματα μια επαφή / διεύθυνση με τις ίδιες πληροφορίες με το τρίτο μέρος στο τρίτο μέρος. Στις περισσότερες περιπτώσεις, ακόμη και αν το τρίτο σας πρόσωπο είναι φυσικό πρόσωπο, είναι αρκετό να δημιουργηθεί ένα τρίτο μέρος μόνο του. +ToCreateContactWithSameName=Θα δημιουργήσει αυτόματα μια επαφή / διεύθυνση με τις ίδιες πληροφορίες με το τρίτο μέρος στην καρτέλα τρίτου μέρους. Στις περισσότερες περιπτώσεις, ακόμη και αν το τρίτο μέρος είναι φυσικό πρόσωπο, αρκεί απλά η δημιουργία του τρίτου μέρους. ParentCompany=Γονική εταιρία Subsidiaries=Θυγατρικές ReportByMonth=Αναφορά ανά Μήνα ReportByCustomers=Αναφορά ανά Πελάτη ReportByThirdparties=Αναφορά ανά Τρίτο Μέρος ReportByQuarter=Αναφορά ανά Τιμή -CivilityCode=Προσφωνήσεις +CivilityCode=Προσφώνηση RegisteredOffice=Έδρα της εταιρείας Lastname=Επίθετο Firstname=Όνομα @@ -59,14 +59,15 @@ UserTitle=Τίτλος NatureOfThirdParty=Φύση του τρίτου μέρους NatureOfContact=Φύση της επαφής Address=Διεύθυνση -State=Πολιτεία/Επαρχία -StateCode=Κωδικός κράτους / επαρχίας -StateShort=Κατάσταση +State=Νομός/Δήμος +StateId=Αναγνωριστικό Νομού +StateCode=Κωδικός Νομού / Δήμου +StateShort=Νομός Region=Περιοχή -Region-State=Περιοχή - Κράτος +Region-State=Περιοχή - Δήμος Country=Χώρα CountryCode=Κωδικός χώρας -CountryId=Id Χώρας +CountryId=Αναγνωριστικό χώρας Phone=Τηλέφωνο PhoneShort=Τηλέφωνο Skype=Skype @@ -75,7 +76,7 @@ Chat=Συνομιλία PhonePro=Επαγγ. τηλέφωνο PhonePerso=Προσωπ. τηλέφωνο PhoneMobile=Κιν. τηλέφωνο -No_Email=Απορρίψτε μαζικά μηνύματα ηλεκτρονικού ταχυδρομείου +No_Email=Απόρριψη μαζικών Email Fax=Φαξ Zip=Ταχ. Κώδικας Town=Πόλη @@ -85,14 +86,14 @@ DefaultLang=Προεπιλεγμένη γλώσσα VATIsUsed=Φόρος πωλήσεων που χρησιμοποιήθηκε VATIsUsedWhenSelling=Αυτό προσδιορίζει αν το τρίτο μέρος περιλαμβάνει φόρο πώλησης ή όχι όταν εκδίδει τιμολόγιο στους δικούς του πελάτες VATIsNotUsed=Ο φόρος επί των πωλήσεων δεν χρησιμοποιείται -CopyAddressFromSoc=Αντιγράψτε τη διεύθυνση από στοιχεία τρίτου μέρους -ThirdpartyNotCustomerNotSupplierSoNoRef=Τρίτο μέρος ούτε πελάτης ούτε πωλητής, κανένα διαθέσιμο αντικείμενο αναφοράς -ThirdpartyIsNeitherCustomerNorClientSoCannotHaveDiscounts=Τρίτο μέρος ούτε πελάτης ούτε πωλητής, οι εκπτώσεις δεν είναι διαθέσιμες -PaymentBankAccount=Payment bank account -OverAllProposals=Total proposals -OverAllOrders=Total orders -OverAllInvoices=Total invoices -OverAllSupplierProposals=Total price requests +CopyAddressFromSoc=Αντιγραφή διεύθυνσης από τα στοιχεία τρίτου μέρους +ThirdpartyNotCustomerNotSupplierSoNoRef=Το τρίτο μέρος δεν είναι πελάτης ή προμηθευτής, κανένα διαθέσιμο αντικείμενο αναφοράς +ThirdpartyIsNeitherCustomerNorClientSoCannotHaveDiscounts=Το τρίτο μέρος δεν είναι πελάτης ή προμηθευτής, δεν υπάρχουν διαθέσιμες εκπτώσεις +PaymentBankAccount=Τραπεζικός λογαριασμός πληρωμών +OverAllProposals=Σύνολο Προσφορών +OverAllOrders=Σύνολο Παραγγελιών +OverAllInvoices=Σύνολο Τιμολογίων +OverAllSupplierProposals=Σύνολο Αιτημάτων τιμής ##### Local Taxes ##### LocalTax1IsUsed=Χρησιμοποιήστε το δεύτερο φόρο LocalTax1IsUsedES= RE is used @@ -101,9 +102,9 @@ LocalTax2IsUsed=Χρησιμοποιήστε τον τρίτο φόρο LocalTax2IsUsedES= IRPF is used LocalTax2IsNotUsedES= IRPF is not used WrongCustomerCode=Άκυρος κωδικός πελάτη -WrongSupplierCode=Ο κωδικός προμηθευτή είναι άκυρος -CustomerCodeModel=Μοντέλου κωδικού πελάτη -SupplierCodeModel=Πρότυπο κώδικα προμηθευτή +WrongSupplierCode=Άκυρος κωδικός προμηθευτή +CustomerCodeModel=Μοντέλο κωδικού πελάτη +SupplierCodeModel=Μοντέλο κωδικού προμηθευτή Gencod=Barcode GencodBuyPrice=Barcode αναφοράς τιμής ##### Professional ID ##### @@ -163,14 +164,14 @@ ProfId5CL=- ProfId6CL=- ProfId1CM=Id. prof. 1 (Trade Register) ProfId2CM=Id. prof. 2 (Taxpayer No.) -ProfId3CM=Id. prof. 3 (Decree of creation) -ProfId4CM=Id. prof. 4 (Πιστοποιητικό καταθέσεων) +ProfId3CM=Id. prof. 3 (No. of creation decree) +ProfId4CM=Id. prof. 4 (Deposit certificate No.) ProfId5CM=Id. prof. 5 (Άλλα) ProfId6CM=- ProfId1ShortCM=Trade Register ProfId2ShortCM=Taxpayer No. -ProfId3ShortCM=Decree of creation -ProfId4ShortCM=Πιστοποιητικό καταθέσεων +ProfId3ShortCM=No. of creation decree +ProfId4ShortCM=Deposit certificate No. ProfId5ShortCM=Άλλα-οι ProfId6ShortCM=- ProfId1CO=Καθ Id 1 (RUT) diff --git a/htdocs/langs/el_GR/compta.lang b/htdocs/langs/el_GR/compta.lang index 439b728ebe6..289b09492fc 100644 --- a/htdocs/langs/el_GR/compta.lang +++ b/htdocs/langs/el_GR/compta.lang @@ -1,31 +1,31 @@ # Dolibarr language file - Source file is en_US - compta -MenuFinancial=Τιμολόγηση | Πληρωμή -TaxModuleSetupToModifyRules=Πηγαίνετε στο setup Φόροι module να τροποποιήσετε τους κανόνες για τον υπολογισμό -TaxModuleSetupToModifyRulesLT=Πηγαίνετε στο ρύθμιση Εταιρείας για την τροποποίηση κανόνων υπολογισμού +MenuFinancial=Τιμολόγηση | Πληρωμές +TaxModuleSetupToModifyRules=Μετάβαση στη ρύθμιση της ενότητας Φόροι για την τροποποίηση κανόνων υπολογισμού +TaxModuleSetupToModifyRulesLT=Μετάβαση στη ρύθμιση Εταιρείας για την τροποποίηση κανόνων υπολογισμού OptionMode=Επιλογές λογιστικής -OptionModeTrue=Επιλογές εσόδων-εξόδων -OptionModeVirtual=Option Claims-Debts -OptionModeTrueDesc=In this context, the turnover is calculated over payments (date of payments). The validity of the figures is assured only if the book-keeping is scrutinized through the input/output on the accounts via invoices. -OptionModeVirtualDesc=In this context, the turnover is calculated over invoices (date of validation). When these invoices are due, whether they have been paid or not, they are listed in the turnover output. -FeatureIsSupportedInInOutModeOnly=Feature only available in CREDITS-DEBTS accountancy mode (See Accountancy module configuration) -VATReportBuildWithOptionDefinedInModule=Amounts shown here are calculated using rules defined by Tax module setup. +OptionModeTrue=Έσοδα-Έξοδα +OptionModeVirtual=Απαιτήσεις-Οφειλές +OptionModeTrueDesc=Στο πλαίσιο αυτό, ο κύκλος εργασιών(τζίρος) υπολογίζεται επί των πληρωμών (ημερομηνία πληρωμών). Η εγκυρότητα των στοιχείων διασφαλίζεται μόνο εάν η τήρηση λογιστικών βιβλίων ελέγχεται ενδελεχώς μέσω των εισροών/εκροών στους λογαριασμούς μέσω τιμολογίων. +OptionModeVirtualDesc=Στο πλαίσιο αυτό, ο κύκλος εργασιών(τζίρος) υπολογίζεται από τα τιμολόγια (ημερομηνία επικύρωσης). Όταν αυτά τα τιμολόγια είναι ληξιπρόθεσμα, είτε έχουν εξοφληθεί είτε όχι, εμφανίζονται στην έξοδο του κύκλου εργασιών. +FeatureIsSupportedInInOutModeOnly=Η λειτουργία είναι διαθέσιμη μόνο στη λειτουργία λογιστικής ΠΙΣΤΩΣΕΙΣ-ΧΡΕΩΣΕΙΣ (Ανατρέξτε στη διαμόρφωση της ενότητας Λογιστικής) +VATReportBuildWithOptionDefinedInModule=Τα ποσά που εμφανίζονται εδώ υπολογίζονται χρησιμοποιώντας κανόνες που ορίζονται από τη ρύθμιση της φορολογικής ενότητας. LTReportBuildWithOptionDefinedInModule=Τα ποσά που εμφανίζονται εδώ υπολογίζονται με βάση τους κανόνες που ορίζονται από την εγκατάσταση της Εταιρείας. -Param=Παραμετροποίηση +Param=Ρύθμιση RemainingAmountPayment=Ποσό πληρωμής που απομένει: Account=Λογαριασμός -Accountparent=Parent account -Accountsparent=Parent accounts +Accountparent=Γονικός λογαριασμός +Accountsparent=Γονικοί λογαριασμοί Income=Έσοδα Outcome=Έξοδα MenuReportInOut=Έσοδα / Έξοδα ReportInOut=Ισοζύγιο εσόδων και εξόδων -ReportTurnover=Ο κύκλος εργασιών τιμολογείται -ReportTurnoverCollected=Ο κύκλος εργασιών συγκεντρώθηκε -PaymentsNotLinkedToInvoice=Η πληρωμή δεν είναι συνδεδεμένη με κάποιο τιμολόγιο, οπότε δεν συνδέετε με κάποιο στοιχείο/αντιπρόσωπο -PaymentsNotLinkedToUser=Η πληρωμή δεν είναι συνδεδεμένη με κάποιον πελάτη +ReportTurnover=Τιμολογημένος κύκλος εργασιών(τζίρος) +ReportTurnoverCollected=Κύκλος εργασιών(τζίρος) που έχει εισπραχθεί +PaymentsNotLinkedToInvoice=Οι πληρωμές δεν συνδέονται με κανένα τιμολόγιο, επομένως δεν συνδέονται και με κανένα τρίτο μέρος +PaymentsNotLinkedToUser=Οι πληρωμές δεν συνδέονται με κανέναν χρήστη Profit=Κέρδος AccountingResult=Λογιστικό αποτέλεσμα -BalanceBefore=Υπόλοιπο (πριν) +BalanceBefore=Ισοζύγιο (πριν) Balance=Ισοζύγιο Debit=Χρέωση Credit=Πίστωση @@ -74,7 +74,7 @@ DateOfSocialContribution=Ημερομηνία κοινωνικού ή φορολ LabelContrib=Label contribution TypeContrib=Type contribution MenuSpecialExpenses=Ειδικά έξοδα -MenuTaxAndDividends=Taxes and dividends +MenuTaxAndDividends=Φόροι και μερίσματα MenuSocialContributions=Κοινωνικές/φορολογικές εισφορές MenuNewSocialContribution=Νέα Κοιν/Φορ εισφορά NewSocialContribution=Νέα Κοινωνική/Φορολογική εισφορά @@ -113,7 +113,7 @@ NewVATPayment=Νέα καταβολή φόρου επί των πωλήσεων NewLocalTaxPayment=Νέα πληρωμή φόρου %s Refund=Refund SocialContributionsPayments=Πληρωμές Κοινωνικών/Φορολογικών εισφορών -ShowVatPayment=Εμφάνιση πληρωμής φόρου +ShowVatPayment=Εμφάνιση πληρωμής ΦΠΑ TotalToPay=Σύνολο πληρωμής BalanceVisibilityDependsOnSortAndFilters=Το υπόλοιπο είναι ορατό σε αυτήν τη λίστα μόνο εάν ο πίνακας είναι ταξινομημένος σε %s και φιλτράρεται σε 1 τραπεζικό λογαριασμό (χωρίς άλλα φίλτρα) CustomerAccountancyCode=Κωδικός λογιστικής πελάτη @@ -136,7 +136,7 @@ NewCheckDeposit=Νέα κατάθεση επιταγής NewCheckDepositOn=Create receipt for deposit on account: %s NoWaitingChecks=Δεν υπάρχουν επιταγές που αναμένουν κατάθεση. DateChequeReceived=Ελέγξτε την ημερομηνία λήψης -NbOfCheques=Αριθμός ελέγχων +NbOfCheques=Αριθμός επιταγών PaySocialContribution=Πληρωμή Κοινωνικής/Φορολογικής εισφοράς PayVAT=Πληρώστε δήλωση ΦΠΑ PaySalary=Πληρώστε μισθό @@ -238,7 +238,7 @@ ToCreateAPredefinedInvoice=Για να δημιουργήσετε ένα πρό LinkedOrder=Σύνδεση με παραγγελία Mode1=Μέθοδος 1 Mode2=Μέθοδος 2 -CalculationRuleDesc=Για να υπολογιστεί το συνολικό ΦΠΑ, υπάρχουν δύο μέθοδοι:
Μέθοδος 1 στρογγυλοποίηση ΦΠΑ για κάθε γραμμή, στη συνέχεια, αθροίζοντας τους.
Μέθοδος 2 αθροίζοντας όλων των ΦΠΑ σε κάθε γραμμή, τότε η στρογγυλοποίηση είναι στο αποτέλεσμα.
Το τελικό αποτέλεσμα μπορεί να διαφέρει από λίγα λεπτά. Προεπιλεγμένη λειτουργία είναι η λειτουργία %s. +CalculationRuleDesc=Για τον υπολογισμό του συνολικού ΦΠΑ, υπάρχουν δύο μέθοδοι:
Μέθοδος 1 στρογγυλοποίηση του ΦΠΑ σε κάθε γραμμή και, στη συνέχεια, η άθροισή τους.
Μέθοδος 2 άθροιση του ΦΠΑ σε κάθε γραμμή και, στη συνέχεια, στρογγυλοποίηση.
Το τελικό αποτέλεσμα μπορεί να διαφέρει κατά λίγα λεπτά. Προεπιλεγμένη λειτουργία είναι η %s. CalculationRuleDescSupplier=Σύμφωνα με τον προμηθευτή, επιλέξτε κατάλληλη μέθοδο για να εφαρμόσετε τον ίδιο κανόνα υπολογισμού και για να λάβετε το ίδιο αποτέλεσμα που αναμένεται από τον προμηθευτή σας. TurnoverPerProductInCommitmentAccountingNotRelevant=Η αναφορά κύκλου εργασιών που συλλέγεται ανά προϊόν δεν είναι διαθέσιμη. Αυτή η αναφορά είναι διαθέσιμη μόνο για το τιμολόγιο κύκλου εργασιών. TurnoverPerSaleTaxRateInCommitmentAccountingNotRelevant=Η αναφορά του κύκλου εργασιών που έχει συγκεντρωθεί ανά φορολογικό συντελεστή πώλησης δεν είναι διαθέσιμη. Αυτή η αναφορά είναι διαθέσιμη μόνο για το τιμολόγιο κύκλου εργασιών. @@ -300,3 +300,4 @@ InvoiceToPay15Days=Προς πληρωμή (15 έως 30 ημέρες) InvoiceToPay30Days=Προς πληρωμή (> 30 ημέρες) ConfirmPreselectAccount=Προεπιλογή κωδικού λογιστικής ConfirmPreselectAccountQuestion=Είστε σίγουροι ότι θέλετε να προεπιλέξετε τις %sεπιλεγμένες γραμμές με αυτόν τον κωδικό λογιστικής; +AmountPaidMustMatchAmountOfDownPayment=Το ποσό που καταβλήθηκε πρέπει να αντιστοιχεί στο ποσό της προκαταβολής diff --git a/htdocs/langs/el_GR/dict.lang b/htdocs/langs/el_GR/dict.lang index 28389f31222..059e51b2f41 100644 --- a/htdocs/langs/el_GR/dict.lang +++ b/htdocs/langs/el_GR/dict.lang @@ -15,7 +15,7 @@ CountryUS=Ηνωμένες Πολιτείες Αμερικής CountryMA=Μαρόκο CountryDZ=Αλγερία CountryCA=Καναδάς -CountryTG=Togo +CountryTG=Τόγκο CountryGA=Γκαμπόν CountryNL=Ολλανδία CountryHU=Ουγγαρία @@ -31,50 +31,50 @@ CountryMC=Μονακό CountryAU=Αυστραλία CountrySG=Σιγκαπούρη CountryAF=Αφγανιστάν -CountryAX=Åland Islands +CountryAX=Νήσοι Άλαντ CountryAL=Αλβανία -CountryAS=American Samoa +CountryAS=Αμερικανική Σαμόα CountryAD=Ανδόρα -CountryAO=Αγκόλα -CountryAI=Anguilla +CountryAO=Ανγκόλα +CountryAI=Ανγκουίλα CountryAQ=Ανταρκτική -CountryAG=Antigua and Barbuda +CountryAG=Αντίγκουα και Μπαρμπούντα CountryAM=Αρμενία CountryAW=Αρούμπα CountryAT=Αυστρία CountryAZ=Αζερμπαϊτζάν CountryBS=Μπαχάμες -CountryBH=Bahrain -CountryBD=Bangladesh +CountryBH=Μπαχρέιν +CountryBD=Μπαγκλαντές CountryBB=Μπαρπέιντος CountryBY=Λευκορωσία CountryBZ=Μπελίζ -CountryBJ=Benin -CountryBM=Bermuda +CountryBJ=Μπενίν +CountryBM=Βερμούδες CountryBT=Μπουτάν CountryBO=Βολιβία CountryBA=Βοσνία και Ερζεγοβίνη CountryBW=Μποτσουάνα -CountryBV=Bouvet Island +CountryBV=Νησί Μπουβέ CountryBR=Βραζιλία -CountryIO=British Indian Ocean Territory -CountryBN=Brunei Darussalam +CountryIO=Βρετανικά Εδάφη Ινδικού Ωκεανού +CountryBN=Μπρουνέι CountryBG=Βουλγαρία CountryBF=Μπουρκίνα Φάσο CountryBI=Μπουρούντι CountryKH=Καμπότζη CountryCV=Πράσινο Ακρωτήριο CountryKY=Νησιά Κέιμαν -CountryCF=Central African Republic +CountryCF=Κεντροαφρικανική Δημοκρατία CountryTD=Τσαντ CountryCL=Χιλή -CountryCX=Christmas Island -CountryCC=Cocos (Keeling) Islands +CountryCX=Νήσος των Χριστουγέννων +CountryCC=Νησιά Κόκος CountryCO=Κολομβία -CountryKM=Comoros +CountryKM=Κομόρες CountryCG=Κονγκό -CountryCD=Congo, The Democratic Republic of the -CountryCK=Cook Islands +CountryCD=Κονγκό, Λαϊκή Δημοκρατία του +CountryCK=Νησιά Κουκ CountryCR=Κόστα Ρίκα CountryHR=Κροατία CountryCU=Κούβα @@ -82,12 +82,12 @@ CountryCY=Κύπρος CountryCZ=Τσεχική Δημοκρατία CountryDK=Δανία CountryDJ=Τζιμπουτί -CountryDM=Dominica +CountryDM=Ντομίνικα CountryDO=Δομινικανή Δημοκρατία CountryEC=Εκουαδόρ CountryEG=Αίγυπτος CountrySV=Ελ Σαλβαδόρ -CountryGQ=Equatorial Guinea +CountryGQ=Ισημερινή Γουινέα CountryER=Ερυθραία CountryEE=Εσθονία CountryET=Αιθιοπία @@ -97,7 +97,7 @@ CountryFJ=Νησιά Φίτζι CountryFI=Φινλανδία CountryGF=Γαλλική Γουϊνέα CountryPF=Γαλλική Πολυνησία -CountryTF=French Southern Territories +CountryTF=Γαλλικά νότια και ανταρκτικά νησιά CountryGM=Γκάμπια CountryGE=Γεωργία CountryGH=Γκάνα @@ -109,11 +109,11 @@ CountryGP=Γουαδελούπη CountryGU=Γκουάμ CountryGT=Γουατεμάλα CountryGN=Γουϊνέα -CountryGW=Guinea-Bissau -CountryGY=Guyana +CountryGW=Γουινέα Μπισάου +CountryGY=Γουιάνα CountryHT=Αϊτή -CountryHM=Heard Island and McDonald -CountryVA=Holy See (Vatican City State) +CountryHM=Νήσοι Χερντ και Μακ Ντόναλντ +CountryVA=Βατικανό CountryHN=Ονδούρα CountryHK=Χονγκ Κονγκ CountryIS=Ισλανδία @@ -134,119 +134,119 @@ CountryKW=Κουβέιτ CountryKG=Κιργιζιστάν CountryLA=Λάος CountryLV=Λετονία -CountryLB=Lebanon -CountryLS=Lesotho +CountryLB=Λίβανος +CountryLS=Λεσότο CountryLR=Λιβερία CountryLY=Λιβύη CountryLI=Λιχτενστάιν CountryLT=Λιθουανία CountryLU=Λουξεμβούργο -CountryMO=Macao +CountryMO=Μακάο CountryMK=Δημοκρατία της Βόρειας Μακεδονίας CountryMG=Μαδαγασκάρη -CountryMW=Malawi +CountryMW=Μαλάουι CountryMY=Μαλαισία CountryMV=Μαλδίβες CountryML=Μάλι CountryMT=Μάλτα -CountryMH=Marshall Islands -CountryMQ=Martinique +CountryMH=Νήσοι Μάρσαλ +CountryMQ=Μαρτινίκα CountryMR=Μαυριτανία -CountryMU=Mauritius -CountryYT=Mayotte +CountryMU=Μαυρίκιος +CountryYT=Μαγιότ CountryMX=Μεξικό CountryFM=Μικρονησία CountryMD=Μολδαβία CountryMN=Μογγολία -CountryMS=Monserrat +CountryMS=Μονσεράτ CountryMZ=Μοζαμβίκη CountryMM=Μιανμάρ (Βιρμανία) CountryNA=Ναμίμπια -CountryNR=Nauru +CountryNR=Ναούρου CountryNP=Νεπάλ -CountryAN=Netherlands Antilles -CountryNC=New Caledonia +CountryAN=Ολλανδικές Αντίλλες +CountryNC=Νέα Καληδονία CountryNZ=Νέα Ζηλανδία CountryNI=Νικαράγουα CountryNE=Νίγηρας CountryNG=Νιγηρία -CountryNU=Niue -CountryNF=Norfolk Island -CountryMP=Northern Mariana Islands +CountryNU=Νίουε +CountryNF=Νησί Νόρφολκ +CountryMP=Βόρειες Μαριάνες Νήσοι CountryNO=Νορβηγία CountryOM=Ομάν CountryPK=Πακιστάν -CountryPW=Palau +CountryPW=Παλάου CountryPS=Παλαιστινιακό έδαφος, κατεχόμενο CountryPA=Παναμάς CountryPG=Παπούα Νέα Γουινέα CountryPY=Παραγουάη CountryPE=Περού CountryPH=Φιλιππίνες -CountryPN=Pitcairn Islands +CountryPN=Νησιά Πίτκερν CountryPL=Πολωνία CountryPR=Πουέρτο Ρίκο CountryQA=Κατάρ CountryRE=Reunion CountryRO=Ρουμανία CountryRW=Ρουάντα -CountrySH=Saint Helena -CountryKN=Saint Kitts and Nevis -CountryLC=Saint Lucia -CountryPM=Saint Pierre and Miquelon -CountryVC=Saint Vincent and Grenadines -CountryWS=Samoa +CountrySH=Αγία Ελένη +CountryKN=Άγιος Χριστόφορος και Νέβις +CountryLC=Αγία Λουκία +CountryPM=Νήσοι Αγίου Πέτρου και Μιχαήλ +CountryVC=Άγιος Βικέντιος και Γρεναδίνες +CountryWS=Σαμόα CountrySM=Σαν Μαρίνο -CountryST=Sao Tome and Principe +CountryST=Σάο Τομέ και Πρίνσιπε CountryRS=Σερβία CountrySC=Σεϋχέλλες CountrySL=Σιέρρα Λεόνε CountrySK=Σλοβακία CountrySI=Σλοβενία -CountrySB=Solomon Islands +CountrySB=Νησιά του Σολομώντα CountrySO=Σομαλία CountryZA=Νότια Αφρική -CountryGS=South Georgia and the South Sandwich Islands +CountryGS=Νότια Γεωργία και τα Νότια Σάντουιτς Νησιά CountryLK=Σρι Λάνκα CountrySD=Σουδάν -CountrySR=Suriname -CountrySJ=Svalbard and Jan Mayen -CountrySZ=Swaziland +CountrySR=Σουρινάμ +CountrySJ=Σβάλμπαρντ και Γιαν Μάγιεν +CountrySZ=Σουαζιλάνδη CountrySY=Συρία CountryTW=Ταϊβάν CountryTJ=Τατζικιστάν CountryTZ=Τανζανία CountryTH=Ταϊλάνδη -CountryTL=Timor-Leste -CountryTK=Tokelau +CountryTL=Ανατολικό Τιμόρ +CountryTK=Τοκελάου CountryTO=Τόνγκα -CountryTT=Trinidad and Tobago +CountryTT=Τρινιντάντ και Τομπάγκο CountryTR=Τουρκία -CountryTM=Turkmenistan +CountryTM=Τουρκμενιστάν CountryTC=Νήσοι Τερκς και Κάικος -CountryTV=Tuvalu +CountryTV=Τουβαλού CountryUG=Ουγκάντα CountryUA=Ουκρανία CountryAE=Ηνωμένα Αραβικά Εμιράτα -CountryUM=United States Minor Outlying Islands +CountryUM=Μικρά Απομακρυσμένα Νησιά Ηνωμένων Πολιτειών CountryUY=Ουρουγουάη CountryUZ=Ουζμπεκιστάν -CountryVU=Vanuatu +CountryVU=Βανουάτου CountryVE=Βενεζουέλα CountryVN=Βιετνάμ -CountryVG=Virgin Islands, British -CountryVI=Virgin Islands, U.S. -CountryWF=Wallis and Futuna -CountryEH=Western Sahara +CountryVG=Βρετανικές Παρθένοι Νήσοι +CountryVI=Αμερικανικές Παρθένοι Νήσοι +CountryWF=Ουώλλις και Φουτούνα +CountryEH=Δυτική Σαχάρα CountryYE=Υεμένη CountryZM=Ζάμπια CountryZW=Ζιμπάμπουε -CountryGG=Guernsey -CountryIM=Isle of Man -CountryJE=Jersey -CountryME=Montenegro -CountryBL=Saint Barthelemy -CountryMF=Saint Martin +CountryGG=Γκέρνσεϊ +CountryIM=Νήσος Μαν +CountryJE=Τζέρσεϊ +CountryME=Μαυροβούνιο +CountryBL=Άγιος Βαρθολομαίος +CountryMF=Άγιος Μαρτίνος ##### Civilities ##### CivilityMME=Κυρία @@ -256,57 +256,57 @@ CivilityMTRE=Master CivilityDR=Δόκτορας ##### Currencies ##### Currencyeuros=€ -CurrencyAUD=AU Dollars -CurrencySingAUD=AU Dollar -CurrencyCAD=CAN Dollars -CurrencySingCAD=CAN Dollar -CurrencyCHF=Swiss Francs -CurrencySingCHF=Swiss Franc -CurrencyEUR=ευρώ +CurrencyAUD=Δολάρια Αυστραλίας +CurrencySingAUD=Δολάριο Αυστραλίας +CurrencyCAD=Δολάρια Καναδά +CurrencySingCAD=Δολάριο Καναδά +CurrencyCHF=Ελβετικά Φράγκα +CurrencySingCHF=Ελβετικό Φράγκο +CurrencyEUR=Ευρώ CurrencySingEUR=€ -CurrencyFRF=French Francs -CurrencySingFRF=French Franc -CurrencyGBP=GB Pounds -CurrencySingGBP=GB Pound -CurrencyINR=Indian rupees -CurrencySingINR=Indian rupee -CurrencyMAD=Dirham -CurrencySingMAD=Dirham -CurrencyMGA=Ariary -CurrencySingMGA=Ariary -CurrencyMUR=Mauritius rupees -CurrencySingMUR=Mauritius rupee -CurrencyNOK=Norwegian krones -CurrencySingNOK=κορώνες Νορβηγίας -CurrencyTND=Tunisian dinars -CurrencySingTND=Tunisian dinar +CurrencyFRF=Γαλλικά Φράγκα +CurrencySingFRF=Γαλλικό Φράγκο +CurrencyGBP=Λίρες Αγγλίας +CurrencySingGBP=Λίρα Αγγλίας +CurrencyINR=Ινδικές ρουπίες +CurrencySingINR=Ινδική ρουπία +CurrencyMAD=Ντιράμ +CurrencySingMAD=Ντιράμ +CurrencyMGA=Αριάρι +CurrencySingMGA=Αριάρι +CurrencyMUR=Ρουπίες Μαυρικίου +CurrencySingMUR=Ρουπία Μαυρικίου +CurrencyNOK=Νορβηγικές κορώνες +CurrencySingNOK=Κορώνες Νορβηγίας +CurrencyTND=Δηνάρια Τυνησίας +CurrencySingTND=Δηνάριο Τυνησίας CurrencyUSD=Δολάρια Ηνωμένων Πολιτειών -CurrencySingUSD=Αμερικάνικο δολάριο +CurrencySingUSD=Δολάριο ΗΠΑ CurrencyUAH=Γρίβνα CurrencySingUAH=Γρίβνα -CurrencyXAF=CFA Francs BEAC -CurrencySingXAF=CFA Franc BEAC -CurrencyXOF=CFA Francs BCEAO -CurrencySingXOF=CFA Franc BCEAO -CurrencyXPF=CFP Francs -CurrencySingXPF=CFP Franc +CurrencyXAF=Φράγκα CFA Κεντρικής Αφρικής BEAC +CurrencySingXAF=Φράγκo CFA Κεντρικής Αφρικής BEAC +CurrencyXOF=Φράγκα CFA Κεντρικής Αφρικής BCEAO +CurrencySingXOF=Φράγκο CFA Κεντρικής Αφρικής BEAC +CurrencyXPF=Φράγκα CFP +CurrencySingXPF=Φράγκο CFP CurrencyCentEUR=σεντς CurrencyCentSingEUR=σεντ -CurrencyCentINR=paisa -CurrencyCentSingINR=paise -CurrencyThousandthSingTND=χιλιοστός +CurrencyCentINR=πάισα +CurrencyCentSingINR=πάισε +CurrencyThousandthSingTND=χιλιάδες #### Input reasons ##### DemandReasonTypeSRC_INTE=Διαδίκτυο -DemandReasonTypeSRC_CAMP_MAIL=Εκστρατεία για τις Ταχυδρομικές -DemandReasonTypeSRC_CAMP_EMAIL=Στέλνοντας εκστρατεία -DemandReasonTypeSRC_CAMP_PHO=Εκστρατεία Τηλέφωνο +DemandReasonTypeSRC_CAMP_MAIL=Καμπάνια αλληλογραφίας +DemandReasonTypeSRC_CAMP_EMAIL=Καμπάνια αποστολής email +DemandReasonTypeSRC_CAMP_PHO=Τηλεφωνική καμπάνια DemandReasonTypeSRC_CAMP_FAX=Εκστρατεία Fax -DemandReasonTypeSRC_COMM=Εμπορική επικοινωνία -DemandReasonTypeSRC_SHOP=Shop Επικοινωνία +DemandReasonTypeSRC_COMM=Εμπορική επαφή +DemandReasonTypeSRC_SHOP=Επαφή καταστήματος DemandReasonTypeSRC_WOM=Από στόμα σε στόμα -DemandReasonTypeSRC_PARTNER=Partner +DemandReasonTypeSRC_PARTNER=Συνέταιρος DemandReasonTypeSRC_EMPLOYEE=Υπάλληλος -DemandReasonTypeSRC_SPONSORING=Sponsorship +DemandReasonTypeSRC_SPONSORING=Χρηματοδότηση DemandReasonTypeSRC_SRC_CUSTOMER=Εισερχόμενη επαφή πελάτη #### Paper formats #### PaperFormatEU4A0=Format 4A0 @@ -353,7 +353,7 @@ ExpAuto10PCV=10 CV και περισσότερο ExpAuto11PCV=11 CV και περισσότερο ExpAuto12PCV=12 CV και περισσότερα ExpAuto13PCV=13 CV και περισσότερο -ExpCyclo=Χωρητικότητα μικρότερη έως 50cm3 +ExpCyclo=Χωρητικότητα μικρότερη στα 50cm3 ExpMoto12CV=Μοτοσικλέτα 1 ή 2 CV ExpMoto345CV=Μοτοσικλέτα 3, 4 ή 5 CV ExpMoto5PCV=Μοτοσικλέτα 5 CV και περισσότερο diff --git a/htdocs/langs/el_GR/errors.lang b/htdocs/langs/el_GR/errors.lang index 02319bb6dfa..f30e49f7fe7 100644 --- a/htdocs/langs/el_GR/errors.lang +++ b/htdocs/langs/el_GR/errors.lang @@ -92,6 +92,7 @@ ErrorModuleRequireJavascript=Η Javascript πρέπει να είναι άτομ ErrorPasswordsMustMatch=Και οι δύο πληκτρολογήσει τους κωδικούς πρόσβασης πρέπει να ταιριάζουν μεταξύ τους ErrorContactEMail=Παρουσιάστηκε τεχνικό σφάλμα. Παρακαλούμε, επικοινωνήστε με τον διαχειριστή με το ακόλουθο μήνυμα ηλεκτρονικού ταχυδρομείου %s και δώστε τον κωδικό σφάλματος %s στο μήνυμά σας ή προσθέστε ένα αντίγραφο οθόνης αυτής της σελίδας. ErrorWrongValueForField=Πεδίο %s : ' %s ' δεν ταιριάζει με τον κανόνα regex %s +ErrorHtmlInjectionForField=Πεδίο %s : Η τιμή ' %s' περιέχει κακόβουλα δεδομένα δεν επιτρέπεται ErrorFieldValueNotIn=Πεδίο %s : ' %s ' δεν είναι μια τιμή που βρέθηκε στο πεδίο %s του %s ErrorFieldRefNotIn=Πεδίο %s : ' %s ' δεν είναι %s υπάρχουσα αναφορά ErrorsOnXLines=βρέθηκαν σφάλματα %s @@ -285,8 +286,9 @@ ErrorPaymentInBothCurrency=Σφάλμα, όλα τα ποσά πρέπει να ErrorYouTryToPayInvoicesInACurrencyFromBankWithAnotherCurrency=Προσπαθείτε να πληρώσετε τιμολόγια στο νόμισμα %s από έναν λογαριασμό με το νόμισμα %s ErrorInvoiceLoadThirdParty=Δεν είναι δυνατή η φόρτωση αντικειμένου τρίτου μέρους για το τιμολόγιο "%s" ErrorInvoiceLoadThirdPartyKey=Το κλειδί τρίτου μέρους "%s" δεν έχει οριστεί για τιμολόγιο "%s" -ErrorDeleteLineNotAllowedByObjectStatus=Η διαγραφή γραμμής δεν επιτρέπεται από την πραγματική κατάσταση του αντικειμένου +ErrorDeleteLineNotAllowedByObjectStatus=Η διαγραφή γραμμής δεν επιτρέπεται από την τωρινή κατάσταση του αντικειμένου ErrorAjaxRequestFailed=To αίτημα AJAX απέτυχε +ErrorThirpdartyOrMemberidIsMandatory=Τρίτο μέρος ή Μέλος της εταιρικής σχέσης είναι υποχρεωτικό # Warnings WarningParamUploadMaxFileSizeHigherThanPostMaxSize=Η παράμετρος PHP upload_max_filesize (%s) είναι υψηλότερη από την παράμετρο PHP post_max_size (%s). Αυτό δεν είναι μια σταθερή ρύθμιση. @@ -321,12 +323,8 @@ WarningCreateSubAccounts=Προειδοποίηση, δεν μπορείτε ν WarningAvailableOnlyForHTTPSServers=Διατίθεται μόνο εάν χρησιμοποιείτε ασφαλή σύνδεση HTTPS. WarningModuleXDisabledSoYouMayMissEventHere=Η ενότητα %s δεν έχει ενεργοποιηθεί. Έτσι, μπορεί να χάσετε πολλές λειτουργίες. WarningPaypalPaymentNotCompatibleWithStrict=Η τιμή "Αυστηρή" κάνει τις λειτουργίες ηλεκτρονικής πληρωμής να μην λειτουργούν σωστά. Χρησιμοποιήστε την τιμη 'Lax' . +WarningThemeForcedTo=Προειδοποίηση, έχει γίνει επιβολή του θέματος %s από την κρυφή σταθερά MAIN_FORCETEME -<<<<<<< ΚΕΦΑΛΙΔΑ -======= -<<<<<<< ΚΕΦΑΛΙΔΑ -<<<<<<< ΚΕΦΑΛΙΔΑ ->>>>>>> branch '15.0' of git@github.com:Dolibarr/dolibarr.git # Validate RequireValidValue = Η τιμή δεν είναι έγκυρη RequireAtLeastXString = Απαιτεί τουλάχιστον %s χαρακτήρα(ες) @@ -347,12 +345,3 @@ BadSetupOfField = Σφάλμα κακή ρύθμιση του πεδίου BadSetupOfFieldClassNotFoundForValidation = Error bad setup of field : Class not found for validation BadSetupOfFieldFileNotFound = Error bad setup of field : File not found for inclusion BadSetupOfFieldFetchNotCallable = Error bad setup of field : Fetch not callable on class -<<<<<<< ΚΕΦΑΛΙΔΑ -======= -======= -======= ->>>>>>> branch '15.0' of git@github.com:Dolibarr/dolibarr.git ->>>>>>> branch '15.0' of git@github.com:Dolibarr/dolibarr.git -======= ->>>>>>> branch '15.0' of git@github.com:Dolibarr/dolibarr.git ->>>>>>> branch '15.0' of git@github.com:Dolibarr/dolibarr.git diff --git a/htdocs/langs/el_GR/holiday.lang b/htdocs/langs/el_GR/holiday.lang index 21eda65858e..86e20420faf 100644 --- a/htdocs/langs/el_GR/holiday.lang +++ b/htdocs/langs/el_GR/holiday.lang @@ -4,6 +4,7 @@ Holidays=Αδεια CPTitreMenu=Αδεια MenuReportMonth=Μηνιαία αναφορά MenuAddCP=Αίτηση νέας αποχώρησης +MenuCollectiveAddCP=Νέα αίτηση συλλογικής άδειας NotActiveModCP=Πρέπει να ενεργοποιήσετε την ενότητα "Αφήστε" για να δείτε αυτή τη σελίδα. AddCP=Κάντε αίτηση άδειας DateDebCP=Ημερ. έναρξης @@ -79,6 +80,8 @@ MotifCP=Λόγος UserCP=Χρήστης ErrorAddEventToUserCP=Παρουσιάστηκε σφάλμα κατά την προσθήκη τις έκτακτης άδειας. AddEventToUserOkCP=Η προσθήκη της έκτακτης άδειας έχει ολοκληρωθεί. +ErrorFieldRequiredUserOrGroup=Πρέπει να συμπληρωθεί το πεδίο "ομάδα" ή το πεδίο "χρήστης". +fusionGroupsUsers=Το πεδίο ομάδων και το πεδίο χρήστη θα συγχωνευθούν MenuLogCP=Εμφάνιση καταγραφής αλλαγών LogCP=Αρχείο καταγραφής όλων των ενημερώσεων που έγιναν στο "Υπόλοιπο άδειας" ActionByCP=Ενημερώθηκε από @@ -86,6 +89,13 @@ UserUpdateCP=Ενημερώθηκε για PrevSoldeCP=Προηγούμενο Υπόλοιπο NewSoldeCP=Νέο υπόλοιπο alreadyCPexist=Υπάρχει ήδη αίτηση άδειας για αυτήν τη περίοδο. +UseralreadyCPexist=Ένα αίτημα άδειας έχει ήδη γίνει σε αυτήν την περίοδο για το %s. +groups=Ομάδες +users=Χρήστες +AutoSendMail=Αυτόματη αποστολή αλληλογραφίας +NewHolidayForGroup=Νέα αίτηση συλλογικής άδειας +SendRequestCollectiveCP=Αποστολή αιτήματος συλλογικής άδειας +AutoValidationOnCreate=Αυτόματη επικύρωση FirstDayOfHoliday=Πρώτη μέρα άδειας LastDayOfHoliday=Τελευταία μέρα άδειας BoxTitleLastLeaveRequests=Latest %s modified leave requests diff --git a/htdocs/langs/el_GR/hrm.lang b/htdocs/langs/el_GR/hrm.lang index 4a306b45cc7..125bc21a613 100644 --- a/htdocs/langs/el_GR/hrm.lang +++ b/htdocs/langs/el_GR/hrm.lang @@ -12,14 +12,14 @@ OpenEtablishment=Άνοιγμα εγκατάστασης CloseEtablishment=Κλείσιμο εγκατάστασης # Dictionary DictionaryPublicHolidays=Άδεια - Επίσημες αργίες -DictionaryDepartment=HRM - Λίστα τμημάτων +DictionaryDepartment=HRM - Οργανωτική Μονάδα DictionaryFunction=HRM - Θέσεις εργασίας # Module Employees=Εργαζόμενοι Employee=Υπάλληλος NewEmployee=Νέος εργαζόμενος ListOfEmployees=Λίστα εργαζομένων -HrmSetup=Ρύθμιση μονάδας HRM +HrmSetup=Ρύθμιση ενότητας HRM SkillsManagement=Διαχείριση δεξιοτήτων HRM_MAXRANK=Μέγιστος αριθμός επιπέδων για την κατάταξη μιας ικανότητας HRM_DEFAULT_SKILL_DESCRIPTION=Προεπιλεγμένη περιγραφή των βαθμών όταν δημιουργείται η ικανότητα @@ -70,9 +70,9 @@ RequiredSkills=Απαραίτητα προσόντα για αυτή τη δου UserRank=Κατάταξη χρήστη SkillList=Λίστα δεξιοτήτων SaveRank=Αποθήκευση κατάταξης -knowHow=Τεχνογνωσία -HowToBe=Πώς να είσαι -knowledge=Γνώση +TypeKnowHow=Τεχνογνωσία +TypeHowToBe=Πώς να είσαι +TypeKnowledge=Γνώση AbandonmentComment=Σχόλιο εγκατάλειψης DateLastEval=Ημερομηνία τελευταίας αξιολόγησης NoEval=Δεν έγινε αξιολόγηση για αυτόν τον υπάλληλο @@ -88,3 +88,4 @@ DeleteSkill = Η δεξιότητα αφαιρέθηκε SkillsExtraFields=Συμπληρωματικά χαρακτηριστικά (Ικανότητες) JobsExtraFields=Συμπληρωματικά χαρακτηριστικά (Emplois) EvaluationsExtraFields=Συμπληρωματικά χαρακτηριστικά (Αξιολογήσεις) +NeedBusinessTravels=Ανάγκη επαγγελματικών ταξιδιών diff --git a/htdocs/langs/el_GR/install.lang b/htdocs/langs/el_GR/install.lang index ef2b799bb34..b3d3fa4edb1 100644 --- a/htdocs/langs/el_GR/install.lang +++ b/htdocs/langs/el_GR/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=Το αρχείο διαμόρφωσης %s δεν ConfFileIsWritable=Το αρχείο ρυθμίσεων %s είναι εγγράψιμο. ConfFileMustBeAFileNotADir=Το αρχείο διαμόρφωσης %s πρέπει να είναι ένα αρχείο, όχι ένας κατάλογος. ConfFileReload=Επαναφόρτωση παραμέτρων από αρχείο ρυθμίσεων. -NoReadableConfFileSoStartInstall=Το αρχείο διαμόρφωσης conf/conf.php δεν υπάρχει ή δεν μπορεί να αναγνώσιμο. Θα εκτελέσουμε τη διαδικασία εγκατάστασης για να προσπαθήσουμε να την αρχικοποιήσουμε. +NoReadableConfFileSoStartInstall=Το αρχείο διαμόρφωσης conf/conf.php δεν υπάρχει ή δεν είναι αναγνώσιμο. Θα εκτελέσουμε τη διαδικασία εγκατάστασης για να προσπαθήσουμε να το αρχικοποιήσουμε. PHPSupportPOSTGETOk=Η PHP υποστηρίζει μεταβλητές POST και GET. PHPSupportPOSTGETKo=Είναι πιθανό η ρύθμισή σας PHP να μην υποστηρίζει τις μεταβλητές POST ή / και GET. Ελέγξτε την παράμετρο variables_order στο php.ini. PHPSupportSessions=Η PHP υποστηρίζει συνεδρίες. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=You may have typed a wrong value for parameter '%s'. ErrorFailedToCreateDatabase=Απέτυχε η δημιουργία της βάσης δεδομένων '%s'. ErrorFailedToConnectToDatabase=Απέτυχε η σύνδεση με τη βάση δεδομένων '%s'. ErrorDatabaseVersionTooLow=Η έκδοση της βάσης δεδομένων (%s), είναι πολύ παλιά. %s Έκδοση ή μεγαλύτερη απαιτείται. -ErrorPHPVersionTooLow=Έκδοση της PHP είναι πολύ παλιά. Έκδοση %s απαιτείται +ErrorPHPVersionTooLow=Η έκδοση PHP είναι πολύ παλιά. Απαιτείται η έκδοση %s ή μεταγενέστερη. +ErrorPHPVersionTooHigh=Η έκδοση PHP είναι πολύ νέα. Απαιτείται η έκδοση %s ή παλαιοτερη ErrorConnectedButDatabaseNotFound=Η σύνδεση με το διακομιστή ήταν επιτυχής αλλά η βάση δεδομένων '%s' δεν βρέθηκε. ErrorDatabaseAlreadyExists=Η βάση δεδομένων '%s' υπάρχει ήδη. +ErrorNoMigrationFilesFoundForParameters=Δεν βρέθηκε αρχείο μετεγκατάστασης για τις επιλεγμένες εκδόσεις IfDatabaseNotExistsGoBackAndUncheckCreate=Εάν η βάση δεδομένων δεν υπάρχει, επιστρέψτε και ελέγξτε την επιλογή "Δημιουργία βάσης δεδομένων". IfDatabaseExistsGoBackAndCheckCreate=If database already exists, go back and uncheck "Create database" option. WarningBrowserTooOld=Η έκδοση του προγράμματος περιήγησης είναι πολύ παλιά. Η αναβάθμιση του προγράμματος περιήγησης σε μια πρόσφατη έκδοση των Firefox, Chrome ή Opera συνιστάται ιδιαίτερα. diff --git a/htdocs/langs/el_GR/intracommreport.lang b/htdocs/langs/el_GR/intracommreport.lang index d07c71cbc4f..e8ce0a13ae2 100644 --- a/htdocs/langs/el_GR/intracommreport.lang +++ b/htdocs/langs/el_GR/intracommreport.lang @@ -1,11 +1,11 @@ -Module68000Name = Έκθεση Intracomm +Module68000Name = Intracomm report Module68000Desc = Διαχείριση αναφορών Intracomm (Υποστήριξη για γαλλική μορφή DEB/DES) -IntracommReportSetup = Ρύθμιση μονάδας Intracommreport -IntracommReportAbout = Σχετικά με το intracommreport +IntracommReportSetup = Ρύθμιση ενότητας Intracomm report +IntracommReportAbout = Σχετικά με το intracomm report # Setup INTRACOMMREPORT_NUM_AGREMENT=Αριθμός έγκρισης (εκδίδεται από το cisd του συνημμένου) -INTRACOMMREPORT_TYPE_ACTEUR=Τύπος d'acteur +INTRACOMMREPORT_TYPE_ACTEUR=Type d'acteur INTRACOMMREPORT_ROLE_ACTEUR=Rôle joué par l'acteur INTRACOMMREPORT_NIV_OBLIGATION_INTRODUCTION=Niveau d'obligation sur les introductions INTRACOMMREPORT_NIV_OBLIGATION_EXPEDITION=Niveau d'obligation sur les expéditions @@ -14,7 +14,7 @@ INTRACOMMREPORT_CATEG_FRAISDEPORT=Catégorie de services de type "Frais de port" INTRACOMMREPORT_NUM_DECLARATION=Numéro de déclarant # Menu -MenuIntracommReport=Έκθεση Intracomm +MenuIntracommReport=Intracomm report MenuIntracommReportNew=Νέα δήλωση MenuIntracommReportList=Λίστα @@ -22,7 +22,7 @@ MenuIntracommReportList=Λίστα NewDeclaration=Νέα δήλωση Declaration=Δήλωση AnalysisPeriod=Περίοδος ανάλυσης -TypeOfDeclaration=Είδος δήλωσης +TypeOfDeclaration=Τύπος δήλωσης DEB=Δήλωση ανταλλαγής αγαθών (DEB) DES=Δήλωση ανταλλαγής υπηρεσιών (DES) @@ -33,7 +33,7 @@ IntracommReportTitle=Προετοιμασία αρχείου XML σε μορφή IntracommReportList=Λίστα δημιουργούμενων δηλώσεων IntracommReportNumber=Αριθμός δήλωσης IntracommReportPeriod=Περίοδος ανάλυσης -IntracommReportTypeDeclaration=Είδος δήλωσης +IntracommReportTypeDeclaration=Τύπος δήλωσης IntracommReportDownload=λήψη αρχείου XML # Invoice diff --git a/htdocs/langs/el_GR/languages.lang b/htdocs/langs/el_GR/languages.lang index c2c080976de..cdac03cd502 100644 --- a/htdocs/langs/el_GR/languages.lang +++ b/htdocs/langs/el_GR/languages.lang @@ -13,6 +13,7 @@ Language_az_AZ=Αζερμπαϊτζανικά Language_bn_BD=Μπενγκάλι Language_bn_IN=Μπενγκάλι (Ινδία) Language_bg_BG=Βουλγαρικά +Language_bo_CN=Θιβετιανά Language_bs_BA=Βοσνιακά Language_ca_ES=Καταλανικά Language_cs_CZ=Τσεχικά @@ -39,6 +40,7 @@ Language_es_AR=Ισπανικά (Αργεντινή) Language_es_BO=Ισπανικά (Βολιβία) Language_es_CL=Ισπανικά (Χιλή) Language_es_CO=Ισπανικά (Κολομβία) +Language_es_CR=Ισπανικά (Κόστα Ρίκα) Language_es_DO=Ισπανικά (Δομινικανή Δημοκρατία) Language_es_EC=Ισπανικά (Εκουαδόρ) Language_es_GT=Ισπανικά (Γουατεμάλα) @@ -93,6 +95,7 @@ Language_nl_BE=Ολλανδικά (Βέλγιο) Language_nl_NL=Ολλανδικά Language_pl_PL=Πολωνικά Language_pt_AO=Πορτογαλικά (Αγκόλα) +Language_pt_MZ=Πορτογαλικά (Μοζαμβίκη) Language_pt_BR=Πορτογαλικά (Βραζιλίας) Language_pt_PT=Πορτογαλικά Language_ro_MD=Ρουμανικά (Μολδαβία) diff --git a/htdocs/langs/el_GR/loan.lang b/htdocs/langs/el_GR/loan.lang index b18bbc1acf3..c33450bb30d 100644 --- a/htdocs/langs/el_GR/loan.lang +++ b/htdocs/langs/el_GR/loan.lang @@ -3,32 +3,32 @@ Loan=Δάνειο Loans=Δάνεια NewLoan=Νέο δάνειο ShowLoan=Εμφάνιση Δανείου -PaymentLoan=Πληρωμή δανείων -LoanPayment=Πληρωμή δανείων +PaymentLoan=Πληρωμή δανείου +LoanPayment=Πληρωμή δανείου ShowLoanPayment=Εμφάνιση Πληρωμής Δανείου -LoanCapital=Κεφάλαιο Κίνησης -Insurance=Ασφάλεια Αυτοκινήτου -Interest=Χρεωστικοί Τόκοι -Nbterms=Αριθμός των όρων -Term=Ορος +LoanCapital=Κεφάλαιο +Insurance=Ασφάλιση +Interest=Επιτόκιο +Nbterms=Αριθμός περιόδων +Term=Περίοδος LoanAccountancyCapitalCode=Κεφάλαιο λογιστικού λογαριασμού LoanAccountancyInsuranceCode=Ασφάλιση λογιστικού λογαριασμού -LoanAccountancyInterestCode=Τόκος λογιστικού λογαριασμού +LoanAccountancyInterestCode=Επιτόκιο λογιστικού λογαριασμού ConfirmDeleteLoan=Επιβεβαίωση διαγραφής δανείου LoanDeleted=Το Δάνειο διαγράφηκε με επιτυχία -ConfirmPayLoan=Confirm classify paid this loan -LoanPaid=Πληρωμή δανείου -ListLoanAssociatedProject=Κατάλογος δανείου που σχετίζεται με το έργο -AddLoan=Δημιουργήστε δάνειο +ConfirmPayLoan=Επιβεβαίωση πληρωμής δανείου +LoanPaid=Πληρωμές δανείου +ListLoanAssociatedProject=Λίστα δανείων που σχετίζονται με το έργο +AddLoan=Δημιουργία δανείου FinancialCommitment=Χρηματοδοτική δέσμευση -InterestAmount=Χρεωστικοί Τόκοι -CapitalRemain=Το κεφάλαιο παραμένει -TermPaidAllreadyPaid = Αυτός ο όρος είναι ήδη πληρωμένος -CantUseScheduleWithLoanStartedToPaid = Δεν είναι δυνατή η χρήση του scheduler για ένα δάνειο μετά την έναρξη των πληρωμών -CantModifyInterestIfScheduleIsUsed = Δεν μπορείτε να τροποποιήσετε τον τόκο εάν έχει ξεκινήσει η διαδικασία. +InterestAmount=Επιτόκιο +CapitalRemain=Κεφάλαιο που απομένει +TermPaidAllreadyPaid = Αυτή η περίοδος είναι ήδη πληρωμένη +CantUseScheduleWithLoanStartedToPaid = Δεν είναι δυνατή η χρήση του χρονοδιαγράμματος μετά την έναρξη των πληρωμών ενός δανείου +CantModifyInterestIfScheduleIsUsed = Δεν μπορείτε να τροποποιήσετε το επιτόκιο εάν χρησιμοποιείτε χρονοδιάγραμμα # Admin ConfigLoan=Διαμόρφωση της ενότητας δανείου -LOAN_ACCOUNTING_ACCOUNT_CAPITAL=Λογιστικό κεφάλαιο λογαριασμού από προεπιλογή -LOAN_ACCOUNTING_ACCOUNT_INTEREST=Λογιστικός τόκος λογαριασμού από προεπιλογή -LOAN_ACCOUNTING_ACCOUNT_INSURANCE=Λογιστική ασφάλιση λογαριασμού από προεπιλογή +LOAN_ACCOUNTING_ACCOUNT_CAPITAL=Κεφάλαιο λογιστικού λογαριασμού από προεπιλογή +LOAN_ACCOUNTING_ACCOUNT_INTEREST=Επιτόκιο λογιστικού λογαριασμού από προεπιλογή +LOAN_ACCOUNTING_ACCOUNT_INSURANCE=Ασφάλιση λογιστικού λογαριασμού από προεπιλογή CreateCalcSchedule=Επεξεργασία οικονομικής δέσμευσης diff --git a/htdocs/langs/el_GR/mails.lang b/htdocs/langs/el_GR/mails.lang index cdf90eb63aa..e3df7fd03eb 100644 --- a/htdocs/langs/el_GR/mails.lang +++ b/htdocs/langs/el_GR/mails.lang @@ -2,8 +2,8 @@ Mailing=EMailing EMailing=EMailing EMailings=EMailings -AllEMailings=Όλα τα μηνύματα ηλεκτρονικής αλληλογραφίας -MailCard=EMailing card +AllEMailings=Όλα τα email +MailCard=Κάρτελα email MailRecipients=Παραλήπτες MailRecipient=Παραλήπτης MailTitle=Περιγραφή @@ -11,17 +11,17 @@ MailFrom=Αποστολέας MailErrorsTo=Σφάλματα σε MailReply=Απάντηση σε MailTo=Παραλήπτης(ες) -MailToUsers=Στο χρήστη (ες) +MailToUsers=Προς MailCC=Αντιγραφή σε MailToCCUsers=Αντιγραφή σε χρήστη(ες) MailCCC=Cached copy to MailTopic=Θέμα Email MailText=Μήνυμα -MailFile=Επισυναπτώμενα Αρχεία -MailMessage=Κείμενο email +MailFile=Επισυναπτόμενα Αρχεία +MailMessage=Σώμα email SubjectNotIn=Όχι στο θέμα BodyNotIn=Όχι στο Σώμα -ShowEMailing=Show emailing +ShowEMailing=Εμφάνιση email ListOfEMailings=List of emailings NewMailing=New emailing EditMailing=Edit emailing @@ -50,15 +50,15 @@ ConfirmValidMailing=Are you sure you want to validate this emailing? ConfirmResetMailing=Προειδοποίηση, ενεργοποιώντας εκ νέου την αποστολή e-mail %s , θα επιτρέψετε την εκ νέου αποστολή αυτού του μηνύματος ηλεκτρονικού ταχυδρομείου σε μια μαζική αποστολή αλληλογραφίας. Είστε βέβαιοι ότι θέλετε να το κάνετε αυτό; ConfirmDeleteMailing=Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το μήνυμα ηλεκτρονικού ταχυδρομείου; NbOfUniqueEMails=Αριθμός μοναδικών μηνυμάτων ηλεκτρονικού ταχυδρομείου -NbOfEMails=Αριθμός Emails -TotalNbOfDistinctRecipients=Number of distinct recipients -NoTargetYet=No recipients defined yet (Go on tab 'Recipients') +NbOfEMails=Αριθμός Email +TotalNbOfDistinctRecipients=Αριθμός διακριτών παραληπτών +NoTargetYet=Δεν έχουν οριστεί ακόμη παραλήπτες (Μεταβείτε στην καρτέλα "Παραλήπτες") NoRecipientEmail=Δεν υπάρχει ηλεκτρονικό ταχυδρομείο παραλήπτη για %s -RemoveRecipient=Remove recipient -YouCanAddYourOwnPredefindedListHere=To create your email selector module, see htdocs/core/modules/mailings/README. +RemoveRecipient=Αφαίρεση παραλήπτη +YouCanAddYourOwnPredefindedListHere=Για τη δημιουργία της δικής σας ενότητας επιλογέα email, ανατρέξτε στο htdocs/core/modules/mailings/README. EMailTestSubstitutionReplacedByGenericValues=When using test mode, substitutions variables are replaced by generic values MailingAddFile=Attach this file -NoAttachedFiles=No attached files +NoAttachedFiles=Δεν υπάρχουν συνημμένα αρχεία BadEMail=Κακή τιμή για το μήνυμα ηλεκτρονικού ταχυδρομείου EMailNotDefined=Το email δεν έχει οριστεί ConfirmCloneEMailing=Are you sure you want to clone this emailing? @@ -86,8 +86,8 @@ SentXXXmessages=%s αποστέλλεται μήνυμα (ες). ConfirmUnvalidateEmailing=Are you sure you want to change email %s to draft status? MailingModuleDescContactsWithThirdpartyFilter=Contact with customer filters MailingModuleDescContactsByCompanyCategory=Επαφές ανά κατηγορία τρίτων -MailingModuleDescContactsByCategory=Contacts by categories -MailingModuleDescContactsByFunction=Contacts by position +MailingModuleDescContactsByCategory=Επαφές ανά κατηγορία +MailingModuleDescContactsByFunction=Επαφές ανά θέση MailingModuleDescEmailsFromFile=Τα μηνύματα ηλεκτρονικού ταχυδρομείου από το αρχείο MailingModuleDescEmailsFromUser=Εισαγωγή μηνυμάτων ηλεκτρονικού ταχυδρομείου από το χρήστη MailingModuleDescDolibarrUsers=Χρήστες με μηνύματα ηλεκτρονικού ταχυδρομείου @@ -126,7 +126,7 @@ EMailRecipient=Email παραλήπτη TagMailtoEmail=E-mail παραλήπτη (συμπεριλαμβανομένου του συνδέσμου html "mailto:") NoEmailSentBadSenderOrRecipientEmail=No email sent. Bad sender or recipient email. Verify user profile. # Module Notifications -Notifications=Notifications +Notifications=Ειδοποιήσεις NotificationsAuto=Αυτόματες Ειδοποιήσεις NoNotificationsWillBeSent=Δεν έχουν προγραμματιστεί αυτόματες ειδοποιήσεις μέσω mail για αυτή την εταιρεία και συμβάντα αυτού του τύπου ANotificationsWillBeSent=1 αυτόματη ειδοποίηση θα σταλεί μέσω email @@ -141,28 +141,28 @@ YouCanAlsoUseSupervisorKeyword=You can also add the keyword __SUPERVISOR NbOfTargetedContacts=Τρέχων αριθμός των στοχευμένων ηλεκτρονικών μηνυμάτων της επαφής UseFormatFileEmailToTarget=Imported file must have format email;name;firstname;other UseFormatInputEmailToTarget=Enter a string with format email;name;firstname;other -MailAdvTargetRecipients=Recipients (advanced selection) +MailAdvTargetRecipients=Παραλήπτες (προχωρημένη επιλογή) AdvTgtTitle=Συμπληρώστε τα πεδία εισαγωγής για να επιλέξετε εκ των προτέρων τα τρίτα μέρη ή τις επαφές / διευθύνσεις που θέλετε να στοχεύσετε AdvTgtSearchTextHelp=Χρησιμοποιήστε το ως χαρακτήρες μπαλαντέρ. Για παράδειγμα, για να βρείτε όλα τα στοιχεία όπως jean, joe, jim , μπορείτε να πληκτρολογήσετε %%, μπορείτε επίσης να χρησιμοποιήσετε το σύμβολο ; ως διαχωριστικό για την τιμη και να χρησιμοποιήσετε το σύμβολο ! για να εξαιρέσετε κάποιες τιμές από την αναζήτηση. Για παράδειγμα η αναζήτηση jean;joe;jim%%;!jimo;!jima%% θα στοχεύει σε όλες τις τιμές που περιέχουν jean και joe, σε αυτές που ξεκινούν με jim αλλά όχι με jimo και σε καμιά που ξεκινάει με jima -AdvTgtSearchIntHelp=Use interval to select int or float value +AdvTgtSearchIntHelp=Χρησιμοποιήστε το διάστημα για να επιλέξετε τιμή int ή float AdvTgtMinVal=Ελάχιστη τιμή AdvTgtMaxVal=Μέγιστη τιμή AdvTgtSearchDtHelp=Use interval to select date value AdvTgtStartDt=Start dt. AdvTgtEndDt=End dt. AdvTgtTypeOfIncudeHelp=Στόχευση ηλεκτρονικού ταχυδρομείου τρίτου μέρους και ηλεκτρονικού ταχυδρομείου της επαφής τρίτου μέρους, ή απλώς ηλεκτρονικού ταχυδρομείου τρίτου μέρους ή απλά ηλεκτρονικού ταχυδρομείου επικοινωνίας -AdvTgtTypeOfIncude=Type of targeted email +AdvTgtTypeOfIncude=Τύπος στοχευμένου email AdvTgtContactHelp=Use only if you target contact into "Type of targeted email" -AddAll=Add all -RemoveAll=Remove all -ItemsCount=Item(s) -AdvTgtNameTemplate=Filter name -AdvTgtAddContact=Προσθέστε μηνύματα ηλεκτρονικού ταχυδρομείου σύμφωνα με τα κριτήρια -AdvTgtLoadFilter=Load filter -AdvTgtDeleteFilter=Delete filter -AdvTgtSaveFilter=Save filter -AdvTgtCreateFilter=Create filter -AdvTgtOrCreateNewFilter=Name of new filter +AddAll=Προσθήκη όλων +RemoveAll=Αφαίρεση όλων +ItemsCount=Αντικείμενο(α) +AdvTgtNameTemplate=Όνομα φίλτρου +AdvTgtAddContact=Προσθέστε email σύμφωνα με τα κριτήρια +AdvTgtLoadFilter=Φόρτωση φίλτρου +AdvTgtDeleteFilter=Διαγραφή φίλτρου +AdvTgtSaveFilter=Αποθήκευση φίλτρου +AdvTgtCreateFilter=Δημιουργία φίλτρου +AdvTgtOrCreateNewFilter=Όνομα νέου φίλτρου NoContactWithCategoryFound=Δεν βρέθηκε κατηγορία που να συνδέεται με ορισμένες επαφές/διευθύνσεις NoContactLinkedToThirdpartieWithCategoryFound=Δεν βρέθηκε κατηγορία που να συνδέεται με κάποια τρίτα μέρη OutGoingEmailSetup=Εξερχόμενα email @@ -178,3 +178,4 @@ IsAnAnswer=Είναι μια απάντηση ενός αρχικού email RecordCreatedByEmailCollector=Εγγραφή που δημιουργήθηκε από τον Συλλέκτη Email %s από το email %s DefaultBlacklistMailingStatus=Προεπιλεγμένη τιμή για το πεδίο '%s' κατά τη δημιουργία μιας νέας επαφής DefaultStatusEmptyMandatory=Κενό αλλά υποχρεωτικό +WarningLimitSendByDay=ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Η ρύθμιση ή η σύμβαση της εγκατάστασης σας περιορίζει τον αριθμό των email σας ανά ημέρα σε %s . Η προσπάθεια αποστολής περισσότερων ενδέχεται να έχει ως αποτέλεσμα την επιβράδυνση ή την αναστολή της εγκατάστασης σας. Επικοινωνήστε με την υποστήριξή σας εάν χρειάζεστε υψηλότερο όριο. diff --git a/htdocs/langs/el_GR/main.lang b/htdocs/langs/el_GR/main.lang index 9256f72576a..2ab58347bff 100644 --- a/htdocs/langs/el_GR/main.lang +++ b/htdocs/langs/el_GR/main.lang @@ -31,8 +31,8 @@ Translation=Μετάφραση CurrentTimeZone=TimeZone PHP (server) EmptySearchString=Εισαγάγετε μη κενά κριτήρια αναζήτησης EnterADateCriteria=Εισαγάγετε κριτήρια ημερομηνίας -NoRecordFound=Δεν υπάρχουν καταχωρημένα στοιχεία -NoRecordDeleted=Δεν διαγράφηκε εγγραφή +NoRecordFound=Κανένα αρχείο δεν βρέθηκε +NoRecordDeleted=Κανένα αρχείο δεν διαγράφηκε NotEnoughDataYet=Τα δεδομένα δεν είναι επαρκή NoError=Κανένα Σφάλμα Error=Σφάλμα @@ -48,28 +48,28 @@ ErrorUnknown=Άγνωστο σφάλμα ErrorSQL=Σφάλμα SQL ErrorLogoFileNotFound=Το λογότυπο '%s' δεν βρέθηκε ErrorGoToGlobalSetup=Μεταβείτε στη ρύθμιση "Εταιρεία/Οργανισμός" για να το διορθώσετε -ErrorGoToModuleSetup=Πηγαίνετε στις ρυθμίσεις του αρθρώματος για να το διορθώσετε. +ErrorGoToModuleSetup=Πηγαίνετε στις ρυθμίσεις της ενότητας για να το διορθώσετε. ErrorFailedToSendMail=Αποτυχία αποστολής mail (αποστολέας=%s, παραλήπτης=%s) ErrorFileNotUploaded=Το αρχείο δεν φορτώθηκε. Βεβαιωθείτε ότι το μέγεθος δεν υπερβαίνει το μέγιστο επιτρεπόμενο όριο, ότι υπάρχει διαθέσιμος χώρος στο δίσκο και ότι δεν υπάρχει ήδη ένα αρχείο με το ίδιο όνομα σε αυτόν τον κατάλογο. ErrorInternalErrorDetected=Εντοπίστηκε Σφάλμα ErrorWrongHostParameter=Λάθος παράμετρος διακομιστή -ErrorYourCountryIsNotDefined=Η χώρα σας δεν έχει οριστεί. Μεταβείτε στην Αρχική σελίδα-Επεξεργασία-Επεξεργασία και δημοσιεύστε την φόρμα πάλι. +ErrorYourCountryIsNotDefined=Η χώρα σας δεν έχει οριστεί. Μεταβείτε στην Αρχική σελίδα-Ρυθμίσεις-Επεξεργασία και δημοσιεύστε την φόρμα πάλι. ErrorRecordIsUsedByChild=Αποτυχία κατάργησης αυτής της εγγραφής. Αυτή η εγγραφή χρησιμοποιείται από τουλάχιστον ένα παιδικό αρχείο. -ErrorWrongValue=Εσφαλμένη Τιμή -ErrorWrongValueForParameterX=Εσφαλμένη Τιμή για την παράμετρο %s +ErrorWrongValue=Λάθος τιμή +ErrorWrongValueForParameterX=Λανθασμένη τιμή για την παράμετρο %s ErrorNoRequestInError=Δεν υπάρχει αίτημα στο Σφάλμα ErrorServiceUnavailableTryLater=Η υπηρεσία δεν είναι διαθέσιμη προς το παρόν. Δοκιμάστε ξανά αργότερα.  ErrorDuplicateField=Διπλόεγγραφή (Διπλή τιμή σε πεδίο με ξεχωριστές τιμές) ErrorSomeErrorWereFoundRollbackIsDone=Εντοπίστηκαν ορισμένες σφάλματα. Οι αλλαγές έχουν επανέλθει. -ErrorConfigParameterNotDefined=Η παράμετρος %s δεν έχει οριστεί στο αρχείο ρυθμίσεων Dolibarr conf.php . +ErrorConfigParameterNotDefined=Η παράμετρος %s δεν έχει οριστεί στο αρχείο διαμόρφωσης του Dolibarr conf.php. ErrorCantLoadUserFromDolibarrDatabase=Αποτυχία εύρεσης του χρήστη %s στην βάση δεδομένων του Dolibarr. ErrorNoVATRateDefinedForSellerCountry=Σφάλμα, δεν ορίστηκαν ποσοστά φόρων για την χώρα '%s'. ErrorNoSocialContributionForSellerCountry=Σφάλμα, καμία κοινωνική εισφορά / φόροι ορίζονται για τη χώρα '%s'. ErrorFailedToSaveFile=Σφάλμα, αποτυχία αποθήκευσης αρχείου -ErrorCannotAddThisParentWarehouse=Προσπαθείτε να προσθέσετε μια γονική αποθήκη η οποία είναι ήδη παιδί μιας υπάρχουσας αποθήκης +ErrorCannotAddThisParentWarehouse=Προσπαθείτε να προσθέσετε μια γονική αποθήκη που είναι ήδη θυγατρική μιας υπάρχουσας αποθήκης FieldCannotBeNegative=Το πεδίο "%s" δεν μπορεί να είναι αρνητικό MaxNbOfRecordPerPage=Μέγιστος αριθμός εγγραφών ανά σελίδα -NotAuthorized=Δεν έχετε εξουσιοδότηση για να το πραγματοποιήσετε +NotAuthorized=Δεν έχετε εξουσιοδότηση(δικαιώματα) για να κάνετε αυτό. SetDate=Ορισμός ημερομηνίας SelectDate=Επιλέξτε μια ημερομηνία SeeAlso=Δείτε επίσης %s @@ -82,9 +82,9 @@ FileRenamed=Το αρχείο μετονομάστηκε με επιτυχία FileGenerated=Το αρχείο δημιουργήθηκε με επιτυχία FileSaved=Το αρχείο αποθηκεύτηκε με επιτυχία FileUploaded=Το αρχείο ανέβηκε με επιτυχία -FileTransferComplete=Τα αρχεία που ανεβάζετε με επιτυχία -FilesDeleted=Τα αρχεία διαγράφηκαν με επιτυχία -FileWasNotUploaded=Επιλέχθηκε ένα αρχείο για επισύναψη, αλλά δεν έχει μεταφερθεί ακόμη. Πατήστε στο "Επισύναψη Αρχείου". +FileTransferComplete=Τα αρχεία μεταφορτωθήκαν επιτυχώς +FilesDeleted=Τα αρχεία διαγράφηκαν επιτυχώς +FileWasNotUploaded=Ένα αρχείο έχει επιλεγεί για επισύναψη αλλά δεν έχει μεταφορτωθεί ακόμη. Κάντε κλικ στο "Επισύναψη αρχείου" για αυτό. NbOfEntries=Αριθ. Εγγραφών GoToWikiHelpPage=Online βοήθεια (απαιτείται σύνδεση στο internet) GoToHelpPage=Βοήθεια @@ -113,10 +113,10 @@ DatabaseTypeManager=Τύπος διαχειριστή βάσης δεδομέν RequestLastAccessInError=Σφάλμα στην αίτηση πρόσβασης της τελευταία βάσης δεδομένων ReturnCodeLastAccessInError=Επιστρεφόμενος κωδικός για το σφάλμα στην αίτηση πρόσβασης της τελευταίας βάση δεδομένων InformationLastAccessInError=Πληροφορίες για το σφάλμα στην αίτηση πρόσβασης της τελευταίας βάση δεδομένων -DolibarrHasDetectedError=Το Dolibarr ανίχνευσε τεχνικό σφάλμα +DolibarrHasDetectedError=Το Dolibarr εντόπισε ένα τεχνικό σφάλμα YouCanSetOptionDolibarrMainProdToZero=Μπορείτε να διαβάσετε το αρχείο καταγραφής ή να ορίσετε την επιλογή $ dolibarr_main_prod στο '0' στο αρχείο ρυθμίσεων για να λάβετε περισσότερες πληροφορίες. InformationToHelpDiagnose=Αυτές οι πληροφορίες μπορεί να είναι χρήσιμες για διαγνωστικούς σκοπούς (μπορείτε να ορίσετε την επιλογή $dolibarr_main_prod σε '1' για να αποκρύψετε ευαίσθητες πληροφορίες) -MoreInformation=Περισσότερς Πληροφορίες +MoreInformation=Περισσότερες πληροφορίες TechnicalInformation=Τεχνικές πληροφορίες TechnicalID=Τεχνική ταυτότητα ID LineID=Αναγνωριστικό γραμμής @@ -163,7 +163,7 @@ Close=Κλείσιμο CloseAs=Αλλαγή κατάστασης σε CloseBox=Καταργήστε το γραφικό στοιχείο από τον πίνακα ελέγχου Confirm=Επιβεβαίωση -ConfirmSendCardByMail=Θέλετε πραγματικά να στείλετε το περιεχόμενο αυτής της καρτέλας μέσω ταχυδρομείου στο %s ; +ConfirmSendCardByMail=Θέλετε πραγματικά να στείλετε το περιεχόμενο αυτής της καρτέλας μέσω email στο %s ; Delete=Διαγραφή Remove=Αφαίρεση Resiliate=Τερματισμός @@ -188,7 +188,7 @@ Go=Μετάβαση Run=Εκτέλεση CopyOf=Αντίγραφο του Show=Εμφάνιση -Hide=Κρύβω +Hide=Απόκρυψη ShowCardHere=Εμφάνιση Κάρτας Search=Αναζήτηση SearchOf=Αναζήτηση @@ -199,13 +199,13 @@ Valid=Έγκυρο Approve=Έγκριση Disapprove=Δεν εγκρίνεται ReOpen=Εκ νέου άνοιγμα -Upload=Ανεβάστε +Upload=Μεταφόρτωση ToLink=Σύνδεσμος Select=Επιλογή SelectAll=Επιλογή όλων Choose=Επιλογή Resize=Αλλαγή διαστάσεων -ResizeOrCrop=Αλλαγή μεγέθους ή περικοπή +ResizeOrCrop=Αλλαγή διαστάσεων ή Περικοπή Recenter=Επαναφορά στο κέντρο Author=Συντάκτης User=Χρήστης @@ -215,9 +215,9 @@ Groups=Ομάδες UserGroup=Ομάδα χρηστών UserGroups=Ομάδες χρηστών NoUserGroupDefined=Κανένας χρήστης δεν ορίζεται στην ομάδα -Password=Συνθηματικό -PasswordRetype=Επαναπληκτρολόγηση κωδικού -NoteSomeFeaturesAreDisabled=Πολλές δυνατότητες είναι απενεργοποιημένες σε αυτή την παρουσίαση. +Password=Κωδικός πρόσβασης +PasswordRetype=Πληκτρολογήστε ξανά τον κωδικό πρόσβασης +NoteSomeFeaturesAreDisabled=Σημειώστε ότι πολλές δυνατότητες/ενότητες είναι απενεργοποιημένες σε αυτήν την επίδειξη. Name=Όνομα NameSlashCompany=Όνομα / Εταιρεία Person=Άτομο @@ -241,14 +241,14 @@ Info=Ιστορικό Family=Οικογένεια Description=Περιγραφή Designation=Περιγραφή -DescriptionOfLine=Description of line -DateOfLine=Ημερομηνία της γραμμής -DurationOfLine=Διάρκεια της γραμμής +DescriptionOfLine=Περιγραφή γραμμής +DateOfLine=Ημερομηνία γραμμής +DurationOfLine=Διάρκεια γραμμής ParentLine=Αναγνωριστικό γονικής γραμμής -Model=Πρότυπο Doc +Model=Πρότυπο εγγράφου DefaultModel=Προεπιλεγμένο πρότυπο εγγράφου Action=Ενέργεια -About=Πληροφορίες +About=Σχετικά με Number=Αριθμός NumberByMonth=Αναφορές συνόλων ανά μήνα AmountByMonth=Ποσό ανά μήνα @@ -300,9 +300,9 @@ RegistrationDate=Ημερομηνία Εγγραφής UserCreation=Χρήστης δημιουργίας UserModification=Χρήστης τροποποίησης UserValidation=Χρήστης επικύρωσης -UserCreationShort=Δημιουργία χρήστη -UserModificationShort=Τροποποιών χρήστης -UserValidationShort=Εγκυρος. χρήστης +UserCreationShort=Χρήστης δημιουργίας +UserModificationShort=Χρήστης τροποποίησης +UserValidationShort=Χρήστης επικύρωσης DurationYear=έτος DurationMonth=μήνας DurationWeek=εβδομάδα @@ -333,10 +333,10 @@ Tomorrow=Αύριο Morning=Πρωί Afternoon=Απόγευμα Quadri=Τετραπλής -MonthOfDay=Μήνας από την ημέρα +MonthOfDay=Μήνας της ημέρας DaysOfWeek=Ημέρες της εβδομάδας HourShort=Ω -MinuteShort=mn +MinuteShort=λ Rate=Βαθμός CurrencyRate=Ποσοστό μετατροπής νομίσματος UseLocalTax=με Φ.Π.Α @@ -355,7 +355,7 @@ Tb=Tb Cut=Αποκοπή Copy=Αντιγραφή Paste=Επικόλληση -Default=Προκαθορ. +Default=Προκαθορισμένο DefaultValue=Προκαθορισμένη Τιμή DefaultValues=Προεπιλεγμένες τιμές / φίλτρα / ταξινόμηση Price=Τιμή @@ -370,7 +370,7 @@ PriceUHTCurrency=Τιμή μονάδας (καθαρό) (νόμισμα) PriceUTTC=Τιμή μον. (συμπ. Φ.Π.Α.) Amount=Ποσό AmountInvoice=Ποσό Τιμολογίου -AmountInvoiced=Ποσό τιμολογημένο +AmountInvoiced=Ποσό που τιμολογήθηκε AmountInvoicedHT=Ποσό που τιμολογήθηκε (χωρίς φόρο) AmountInvoicedTTC=Ποσό που τιμολογήθηκε (συμπ. φόρου) AmountPayment=Ποσό Πληρωμής @@ -451,7 +451,7 @@ List=Λίστα FullList=Πλήρης Λίστα FullConversation=Πλήρης συνομιλία Statistics=Στατιστικά -OtherStatistics=Οι άλλες στατιστικές +OtherStatistics=Άλλα στατιστικά στοιχεία Status=Κατάσταση Favorite=Αγαπημένα ShortInfo=Info. @@ -473,9 +473,9 @@ ActionUncomplete=Ατελής LatestLinkedEvents=Τα πιο πρόσφατα συνδεδεμένα συμβάντα %s CompanyFoundation=Εταιρεία / Οργανισμός Accountant=Λογιστής -ContactsForCompany=Επαφές για αυτό το στοιχείο -ContactsAddressesForCompany=Επαφές/Διευθύνσεις για αυτό το στοιχείο. -AddressesForCompany=Διευθύνσεις για αυτό τον Πελ./Προμ. +ContactsForCompany=Επαφές για αυτό το τρίτο μέρος +ContactsAddressesForCompany=Επαφές/διευθύνσεις για αυτό το τρίτο μέρος +AddressesForCompany=Διευθύνσεις για αυτό το τρίτο μέρος ActionsOnCompany=Εκδηλώσεις για αυτό το τρίτο μέρος ActionsOnContact=Εκδηλώσεις για αυτήν την επαφή / διεύθυνση ActionsOnContract=Εκδηλώσεις για αυτή τη σύμβαση @@ -487,7 +487,7 @@ Completed=Ολοκληρώθηκε το Running=Σε εξέλιξη RequestAlreadyDone=Η αίτηση έχει ήδη καταγραφεί Filter=Φίλτρο -FilterOnInto=Κριτήρια αναζήτησης '%s' σε πεδίο +FilterOnInto=Κριτήρια αναζήτησης '%s' στα πεδία%s RemoveFilter=Αφαίρεση φίλτρου ChartGenerated=Το γράφημα δημιουργήθηκε ChartNotGenerated=Το γράφημα δεν δημιουργήθηκε @@ -607,18 +607,18 @@ MonthShort09=Σεπ MonthShort10=Οκτ MonthShort11=Νοέ MonthShort12=Δεκ -MonthVeryShort01=J -MonthVeryShort02=Π -MonthVeryShort03=Δ -MonthVeryShort04=ΕΝΑ -MonthVeryShort05=Δ -MonthVeryShort06=J -MonthVeryShort07=J -MonthVeryShort08=ΕΝΑ -MonthVeryShort09=Κ +MonthVeryShort01=Ι +MonthVeryShort02=Φ +MonthVeryShort03=Μ +MonthVeryShort04=Α +MonthVeryShort05=Μ +MonthVeryShort06=Ι +MonthVeryShort07=Ι +MonthVeryShort08=Α +MonthVeryShort09=Σ MonthVeryShort10=Ο MonthVeryShort11=Ν -MonthVeryShort12=ρε +MonthVeryShort12=Δ AttachedFiles=Επισυναπτόμενα αρχεία και έγγραφα JoinMainDoc=Συμμετοχή στο κύριο έγγραφο JoinMainDocOrLastGenerated=Στείλτε το κύριο έγγραφο ή το τελευταίο που δημιουργήθηκε εάν δεν βρεθεί @@ -641,7 +641,7 @@ ReadPermissionNotAllowed=Δεν υπάρχει δικαίωμα ανάγνωση AmountInCurrency=Σύνολο σε %s Example=Παράδειγμα Examples=Παραδείγματα -NoExample=Δεν υπάρχει παράδειγμα +NoExample=Κανένα παράδειγμα FindBug=Αναφορά σφάλματος NbOfThirdParties=Αριθμός στοιχείων NbOfLines=Αριθμός Γραμμών @@ -664,13 +664,13 @@ BuildDoc=Δημιουργία Doc Entity=Οντότητα Entities=Οντότητες CustomerPreview=Προεπισκόπηση Πελάτη -SupplierPreview=Προβολή προμηθευτή +SupplierPreview=Προεπισκόπηση προμηθευτή ShowCustomerPreview=Εμφάνιση Προεπισκόπησης Πελάτη ShowSupplierPreview=Εμφάνιση προεπισκόπησης προμηθευτή RefCustomer=Κωδ. Πελάτη InternalRef=Εσωτερική αναφορά Currency=Νόμισμα -InfoAdmin=Πληροφορία για τους διαχειριστές +InfoAdmin=Πληροφορίες για διαχειριστές Undo=Αναίρεση Redo=Επανεκτέλεση ExpandAll=Επέκταση όλων @@ -712,6 +712,7 @@ FeatureDisabled=Η δυνατότητα είναι απενεργοποιημέ MoveBox=Μετακίνηση widget Offered=Προσφέρθηκε NotEnoughPermissions=Δεν έχετε τα απαραίτητα δικαιώματα +UserNotInHierachy=Αυτή η ενέργεια αφορά τους επόπτες αυτού του χρήστη SessionName=Όνομα συνόδου Method=Μέθοδος Receive=Παραλαβή @@ -728,7 +729,7 @@ YouCanSetDefaultValueInModuleSetup=Μπορείτε να ορίσετε την Color=Χρώμα Documents=Συνδεδεμένα Αρχεία Documents2=Έγγραφα -UploadDisabled=Το ανέβασμα αρχείων έχει απενεργοποιηθεί +UploadDisabled=Η μεταφόρτωση απενεργοποιήθηκε MenuAccountancy=Λογιστική MenuECM=Έγγραφα MenuAWStats=AWStats @@ -738,8 +739,8 @@ MenuTaxesAndSpecialExpenses=Φόροι | Ειδικά έξοδα ThisLimitIsDefinedInSetup=Όριο Dolibarr (Μενού Ρυθμίσεις-Ασφάλεια): %s Kb, Όριο PHP: %s Kb ThisLimitIsDefinedInSetupAt=Όριο Dolibarr (Μενού %s): %s Kb, όριο PHP (Param %s): %s Kb NoFileFound=Δεν έχουν μεταφορτωθεί έγγραφα -CurrentUserLanguage=Τρέχουσα Γλώσσα -CurrentTheme=Τρέχων Θέμα +CurrentUserLanguage=Τρέχουσα γλώσσα +CurrentTheme=Τρέχον θέμα CurrentMenuManager=Τρέχουσα διαχειρηση μενού Browser=Browser Layout=Σχέδιο @@ -756,7 +757,7 @@ RootOfMedias=Ρίζα δημόσιων μέσων (/ media) Informations=Πληροφορίες Page=Σελίδα Notes=Σημειώσεις -AddNewLine=Προσθήκη Γραμμής +AddNewLine=Προσθήκη νέας γραμμής AddFile=Προσθήκη Αρχείου FreeZone=Προϊόν ελεύθερου κειμένου FreeLineOfType=Στοιχείο ελεύθερου κειμένου, πληκτρολογήστε: @@ -773,15 +774,15 @@ CoreErrorMessage=Λυπούμαστε, παρουσιάστηκε ένα σφά CreditCard=Πιστωτική Κάρτα ValidatePayment=Επικύρωση πληρωμής CreditOrDebitCard=Πιστωτική ή χρεωστική κάρτα -FieldsWithAreMandatory=Τα πεδία %s είναι υποχρεωτικά +FieldsWithAreMandatory=Τα πεδία με%s είναι υποχρεωτικά FieldsWithIsForPublic=Τα πεδία με %s εμφανίζονται στη δημόσια λίστα των μελών. Αν δεν το θέλετε, καταργήστε την επιλογή του πλαισίου "δημόσιο". AccordingToGeoIPDatabase=(σύμφωνα με τη μετατροπή GeoIP) Line=Γραμμή -NotSupported=Χωρίς Υποστήριξη +NotSupported=Δεν υποστηρίζεται RequiredField=Απαιτούμενο Πεδίο Result=Αποτέλεσμα ToTest=Δοκιμή -ValidateBefore=Η καρτέλα πρέπει να επικυρωθεί πριν χρησιμοποιηθεί αυτή τη δυνατότητα +ValidateBefore=Το στοιχείο πρέπει να επικυρωθεί πριν χρησιμοποιήσετε αυτήν τη δυνατότητα Visibility=Ορατότητα Totalizable=Συνολικά TotalizableDesc=Αυτό το πεδίο είναι συνολικά σε λίστα @@ -790,7 +791,7 @@ Hidden=Κρυφό Resources=Πόροι Source=Πηγή Prefix=Πρόθεμα -Before=Προτού +Before=Πριν After=Μετά IPAddress=Η διεύθυνση IP Frequency=Συχνότητα @@ -798,9 +799,10 @@ IM=Άμεσων μηνυμάτων NewAttribute=Νέο χαρακτηριστικό AttributeCode=Κωδικός Ιδιότητα URLPhoto=URL της φωτογραφία / λογότυπο -SetLinkToAnotherThirdParty=Σύνδεση με άλλο Στοιχείο +SetLinkToAnotherThirdParty=Σύνδεση με άλλο τρίτο μέρος LinkTo=Σύνδεση σε LinkToProposal=Σύνδεση σε προσφορά +LinkToExpedition= Σύνδεσμος με την καμπάνια LinkToOrder=Σύνδεση με παραγγελία LinkToInvoice=Σύνδεση σε τιμολόγιο LinkToTemplateInvoice=Σύνδεση με το τιμολόγιο προτύπου @@ -813,25 +815,25 @@ LinkToTicket=Σύνδεση με το εισιτήριο LinkToMo=Σύνδεσμος προς Mo CreateDraft=Δημιουργία σχεδίου SetToDraft=Επιστροφή στο προσχέδιο -ClickToEdit=Κάντε κλικ για να επεξεργαστείτε +ClickToEdit=Κάντε κλικ για επεξεργασία ClickToRefresh=Κάντε κλικ για ανανέωση -EditWithEditor=Επεξεργασία με CKEditor +EditWithEditor=Επεξεργασία με το CKEditor EditWithTextEditor=Επεξεργασία με πρόγραμμα επεξεργασίας κειμένου EditHTMLSource=Επεξεργασία προέλευσης HTML ObjectDeleted=Αντικείμενο %s διαγράφεται -ByCountry=Με τη χώρα -ByTown=Με την πόλη +ByCountry=Ανά χώρα +ByTown=Ανά πόλη ByDate=Με ημερομηνία -ByMonthYear=Με μήνας / έτος -ByYear=Με χρόνια +ByMonthYear=Ανά μήνα/έτος +ByYear=Ανά έτος ByMonth=Με το μήνα -ByDay=Μέχρι την ημέρα +ByDay=Ανά μέρα BySalesRepresentative=Με τον αντιπρόσωπο πωλήσεων LinkedToSpecificUsers=Συνδέεται με μια συγκεκριμένη επαφή χρήστη NoResults=Δεν υπάρχουν αποτελέσματα AdminTools=Εργαλεία διαχειριστή SystemTools=Εργαλεία συστήματος -ModulesSystemTools=Εργαλεία πρόσθετων +ModulesSystemTools=Εργαλεία ενοτήτων Test=Δοκιμή Element=Στοιχείο NoPhotoYet=Δεν υπαρχουν διαθεσημες φωτογραφίες ακόμα @@ -1174,6 +1176,7 @@ ConfirmAllocateCommercial=Επιβεβαίωση ορισμού αντιπροσ ConfirmAllocateCommercialQuestion=Είστε σίγουροι ότι θέλετε να ορίσετε τις επιλεγμένες εγγραφές %s; CommercialsAffected=Εκπρόσωποι πωλήσεων που αφορά CommercialAffected=Εκπρόσωποι πωλήσεων που αφορά -YourMessage=Το μήνυμα σας +YourMessage=Το μήνυμά σας YourMessageHasBeenReceived=Το μήνυμά σας έχει ληφθεί. Θα απαντήσουμε ή θα επικοινωνήσουμε μαζί σας το συντομότερο δυνατό. UrlToCheck=URL για έλεγχο +Automation=Αυτοματισμός diff --git a/htdocs/langs/el_GR/members.lang b/htdocs/langs/el_GR/members.lang index 9a12a0c43bc..0d34905b924 100644 --- a/htdocs/langs/el_GR/members.lang +++ b/htdocs/langs/el_GR/members.lang @@ -36,6 +36,7 @@ EndSubscription=Τέλος ιδιότητας συνδρομής μέλους SubscriptionId=Αναγνωριστικό συνδρομής WithoutSubscription=Χωρίς συνδρομή MemberId=Αναγνωριστικό μέλους +MemberRef= Αναφ. Μέλους NewMember=Νέο μέλος MemberType=Τύπος μέλους MemberTypeId=Αναγνωριστικό τύπου μέλους @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Αυτός ο τύπος Μέλους δεν μπορ NewSubscription=Νέα συνδρομή NewSubscriptionDesc=Αυτή η φόρμα σας επιτρέπει να καταγράψετε την συνδρομή σας ως νέο μέλος του ιδρύματος. Αν θέλετε να ανανεώσετε τη συνδρομή σας (αν είστε ήδη μέλος), επικοινωνήστε με το συμβούλιο του ιδρύματος μέσω e-mail %s. Subscription=Συνδρομή +AnyAmountWithAdvisedAmount=Οποιοδήποτε ποσό με ελάχιστο συνιστώμενο ποσό %s%s +AnyAmountWithoutAdvisedAmount=Οποιοδήποτε ποσό +CanEditAmountShort=Οποιοδήποτε ποσό +CanEditAmountShortForValues=συνιστάται, οποιοδήποτε ποσό +MembershipDuration=Διάρκεια +GetMembershipButtonLabel=Αποκτήστε συνδρομή Subscriptions=Συνδρομές SubscriptionLate=Καθυστερημένη πληρωμή συνδρομής SubscriptionNotReceived=Η πληρωμή της συνδρομής δεν ελήφθη ποτέ @@ -135,7 +142,7 @@ CardContent=Περιεχόμενα καρτέλας # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=Θα θέλαμε να σας ενημερώσουμε ότι το αίτημά σας για συμμετοχή έγινε δεκτό.

ThisIsContentOfYourMembershipWasValidated=Θέλουμε να σας ενημερώσουμε ότι η ιδιότητα μέλους σας έχει επικυρωθεί με τις ακόλουθες πληροφορίες:

-ThisIsContentOfYourSubscriptionWasRecorded=Θέλουμε να σας ενημερώσουμε ότι η νέα συνδρομή σας έχει καταγραφεί.

+ThisIsContentOfYourSubscriptionWasRecorded=Θέλουμε να σας ενημερώσουμε ότι η νέα σας συνδρομή καταγράφηκε. Βρείτε το τιμολόγιο σας εδώ επισυναπτόμενο.

ThisIsContentOfSubscriptionReminderEmail=Θα θέλαμε να σας ενημερώσουμε ότι η συνδρομή σας πρόκειται να λήξει ή έχει ήδη λήξει (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Ελπίζουμε ότι θα το ανανεώσετε.

ThisIsContentOfYourCard=Αυτή είναι μια περίληψη των πληροφοριών που έχουμε σχετικά με εσάς. Επικοινωνήστε μαζί μας αν κάτι είναι λανθασμένο.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Αντικείμενο του μηνύματος ηλεκτρονικού ταχυδρομείου ειδοποίησης που λαμβάνεται σε περίπτωση αυτόματης εγγραφής επισκέπτη @@ -198,7 +205,8 @@ NbOfSubscriptions=Αριθμός συνδρομών AmountOfSubscriptions=Ποσό που εισπράχθηκε από συνδρομές TurnoverOrBudget=Κύκλος εργασιών (για μια επιχείρηση), ή του προϋπολογισμού (για ένα ίδρυμα) DefaultAmount=Προκαθορισμένο ποσό συνδρομών -CanEditAmount=Ο επισκέπτης μπορεί να επιλέξει/επεξεργαστεί το ποσό της συνεισφοράς του +CanEditAmount=Ο επισκέπτης μπορεί να επιλέξει/επεξεργαστεί το ποσό της συνεισφοράς του ανεξάρτητα από τον τύπο μέλους +AmountIsLowerToMinimumNotice=Το ποσό ειναι χαμηλότερο από το ελάχιστο %s MEMBER_NEWFORM_PAYONLINE=Μετάβαση στην ολοκληρωμένη ηλεκτρονική σελίδα πληρωμής ByProperties=Εκ ΦΥΣΕΩΣ MembersStatisticsByProperties=Στατιστικά στοιχεία μελών κατά φύση diff --git a/htdocs/langs/el_GR/modulebuilder.lang b/htdocs/langs/el_GR/modulebuilder.lang index 326b2d2c0b1..43ae07dcb5e 100644 --- a/htdocs/langs/el_GR/modulebuilder.lang +++ b/htdocs/langs/el_GR/modulebuilder.lang @@ -1,14 +1,16 @@ # Dolibarr language file - Source file is en_US - loan +IdModule= Αναγνωριστικό ενότητας ModuleBuilderDesc=Αυτό το εργαλείο πρέπει να χρησιμοποιείται μόνο από έμπειρους χρήστες ή προγραμματιστές. Παρέχει βοηθητικά προγράμματα για να δημιουργήσετε ή να επεξεργαστείτε τη δική σας ενότητα. Η τεκμηρίωση για εναλλακτικό τρόπο ανάπτυξης είναι εδώ . EnterNameOfModuleDesc=Εισάγετε το όνομα της ενότητας/εφαρμογής που θέλετε να δημιουργήσετε χωρίς κενά. Χρησιμοποιήστε κεφαλαία για να διαχωρίσετε λέξεις (Για παράδειγμα: MyModule, EcommerceForShop, SyncWithMySystem...) EnterNameOfObjectDesc=Εισάγετε το όνομα του αντικειμένου που θέλετε να δημιουργήσετε χωρίς κενά. Χρησιμοποιήστε κεφαλαία για να διαχωρίσετε λέξεις (Για παράδειγμα: MyObject, Student, Teacher...). Θα δημιουργηθούν, το αρχείο κλάσης CRUD αλλά και το αρχείο API, οι σελίδες για λίστα/προσθήκη/επεξεργασία/διαγραφή αντικειμένου και αρχεία SQL. EnterNameOfDictionaryDesc=Εισάγετε το όνομα του λεξικού που θέλετε να δημιουργήσετε χωρίς κενά. Χρησιμοποιήστε κεφαλαία για να διαχωρίσετε λέξεις (Για παράδειγμα: MyDico...). Θα δημιουργηθεί το αρχείο κλάσης, αλλά και το αρχείο SQL. -ModuleBuilderDesc2=Διαδρομή όπου παράγονται / επεξεργάζονται μονάδες (πρώτος κατάλογος για εξωτερικές μονάδες που ορίζονται στο %s): %s -ModuleBuilderDesc3=Παραγόμενα / επεξεργάσιμα δομοστοιχεία βρέθηκαν: %s +ModuleBuilderDesc2=Διαδρομή όπου δημιουργούνται/επεξεργάζονται οι ενότητες (πρώτος κατάλογος για εξωτερικές ενότητες που ορίζεται σε %s): %s +ModuleBuilderDesc3=Βρέθηκαν δημιουργημένες/επεξεργάσιμες ενότητες: %s ModuleBuilderDesc4=Μια ενότητα ανιχνεύεται ως 'επεξεργάσιμη' όταν το αρχείο %s υπάρχει στη ρίζα του καταλόγου μονάδων NewModule=Νέο Άρθρωμα NewObjectInModulebuilder=Νέο αντικείμενο NewDictionary=Νέο λεξικό +ModuleName=Όνομα ενότητας ModuleKey=Πλήκτρο μονάδας ObjectKey=Πλήκτρο αντικειμένου DicKey=Κλειδί λεξικού @@ -153,3 +155,4 @@ LinkToParentMenu=Γονικό μενού (fk_xxxxmenu) ListOfTabsEntries=Λίστα καταχωρήσεων καρτελών TabsDefDesc=Ορίστε εδώ τις καρτέλες που παρέχονται από την ενότητα σας TabsDefDescTooltip=Οι καρτέλες που παρέχονται από την ενότητα/εφαρμογή σας ορίζονται στον πίνακα $this->tabs στο αρχείο περιγραφής της ενότητας. Μπορείτε να επεξεργαστείτε μη αυτόματα αυτό το αρχείο ή να χρησιμοποιήσετε τον ενσωματωμένο επεξεργαστή. +BadValueForType=Λάθος τιμή για τον τύπο %s diff --git a/htdocs/langs/el_GR/oauth.lang b/htdocs/langs/el_GR/oauth.lang index bf9dd9c16b8..12a23fad45f 100644 --- a/htdocs/langs/el_GR/oauth.lang +++ b/htdocs/langs/el_GR/oauth.lang @@ -1,32 +1,36 @@ # Dolibarr language file - Source file is en_US - oauth ConfigOAuth=Διαμόρφωση OAuth OAuthServices=Υπηρεσίες OAuth -ManualTokenGeneration=Δημιουργία χειροκίνητου διακριτικού -TokenManager=Διαχειριστής Token -IsTokenGenerated=Έχει δημιουργηθεί διακριτικό; -NoAccessToken=Δεν υπάρχει διακριτικό πρόσβασης αποθηκευμένο στην τοπική βάση δεδομένων -HasAccessToken=Το διακριτικό πρόσβασης δημιουργήθηκε και αποθηκεύτηκε στην τοπική βάση δεδομένων -NewTokenStored=Το διακριτικό περιελήφθη και αποθηκεύτηκε +ManualTokenGeneration=Χειροκίνητη δημιουργία token +TokenManager=Διαχειριστής token +IsTokenGenerated=Έχει δημιουργηθεί token; +NoAccessToken=Κανένα token πρόσβασης δεν αποθηκεύτηκε στην τοπική βάση δεδομένων +HasAccessToken=Ένα token πρόσβασης δημιουργήθηκε και αποθηκεύτηκε στην τοπική βάση δεδομένων +NewTokenStored=Το token αποθηκεύτηκε ToCheckDeleteTokenOnProvider=Πατήστε εδώ για να ελέγξετε/διαγράψετε την εξουσιοδότηση που έχει αποθηκευτεί από %s πάροχο ανοιχτού πρωτοκόλλου εξουσιοδότησης OAuth -TokenDeleted=Το διακριτικό έχει διαγραφεί -RequestAccess=Κάντε κλικ εδώ για να ζητήσετε / ανανεώσετε την πρόσβαση και να λάβετε ένα νέο διακριτικό για αποθήκευση -DeleteAccess=Κάντε κλικ εδώ για να διαγράψετε το διακριτικό +TokenDeleted=Το token διαγράφηκε +RequestAccess=Κάντε κλικ εδώ για να ζητήσετε/ανανεώσετε την πρόσβαση και να λάβετε ένα νέο token +DeleteAccess=Κάντε κλικ εδώ για να διαγράψετε το token UseTheFollowingUrlAsRedirectURI=Χρησιμοποιήστε την ακόλουθη διεύθυνση URL ως URI ανακατεύθυνσης κατά τη δημιουργία των διαπιστευτηρίων σας με τον παροχέα υπηρεσιών OAuth: -ListOfSupportedOauthProviders=Καταχωρίστε τα διαπιστευτήρια που παρέχει ο πάροχος υπηρεσιών OAuth2. Υποστηρίζονται μόνο υποστηριζόμενοι πάροχοι OAuth2 εδώ. Αυτές οι υπηρεσίες μπορούν να χρησιμοποιηθούν από άλλες μονάδες που χρειάζονται έλεγχο ταυτότητας OAuth2. -OAuthSetupForLogin=Για να δημιουργήσετε ένα διακριτικό OAuth +ListOfSupportedOauthProviders=Προσθέστε τους παρόχους σας διακριτικών OAuth2 token. Στη συνέχεια, μεταβείτε στη σελίδα διαχειριστή του παρόχου OAuth για να δημιουργήσετε/λάβετε ένα αναγνωριστικό και ένα μυστικό OAuth και να τα αποθηκεύσετε εδώ. Μόλις τελειώσετε, ενεργοποιήστε την άλλη καρτέλα για να δημιουργήσετε το token σας. +OAuthSetupForLogin=Σελίδα διαχείρισης (δημιουργία/διαγραφή) OAuth token SeePreviousTab=Δείτε την προηγούμενη καρτέλα -OAuthIDSecret=OAuth ID και μυστικό -TOKEN_REFRESH=Ανανέωση σημείου Token -TOKEN_EXPIRED=Το κουπόνι έληξε -TOKEN_EXPIRE_AT=Το Token λήγει στο -TOKEN_DELETE=Διαγραφή αποθηκευμένου διακριτικού -OAUTH_GOOGLE_NAME=OAuth υπηρεσία Google +OAuthProvider=Πάροχος OAuth +OAuthIDSecret=OAuth ID και Secret +TOKEN_REFRESH=Ανανέωση token +TOKEN_EXPIRED=Το token έληξε +TOKEN_EXPIRE_AT=Το token λήγει +TOKEN_DELETE=Διαγραφή αποθηκευμένου token +OAUTH_GOOGLE_NAME=Υπηρεσία Google OAuth OAUTH_GOOGLE_ID=Αναγνωριστικό Google OAuth -OAUTH_GOOGLE_SECRET=OAuth Google Secret -OAUTH_GOOGLE_DESC=Μεταβείτε σε αυτή τη σελίδα και μετά "Διαπιστευτήρια" για να δημιουργήσετε διαπιστευτήρια OAuth -OAUTH_GITHUB_NAME=Υπηρεσία OAuth GitHub -OAUTH_GITHUB_ID=Αναγνωριστικό OAuth GitHub -OAUTH_GITHUB_SECRET=OAuth GitHub Secret -OAUTH_GITHUB_DESC=Μεταβείτε σε αυτή τη σελίδα και στη συνέχεια "Εγγραφή νέας εφαρμογής" για να δημιουργήσετε διαπιστευτήρια OAuth +OAUTH_GOOGLE_SECRET=Google OAuth Secret +OAUTH_GITHUB_NAME=Υπηρεσία GitHub OAuth +OAUTH_GITHUB_ID=Αναγνωριστικό GitHub OAuth +OAUTH_GITHUB_SECRET=GitHub OAuth Secret +OAUTH_URL_FOR_CREDENTIAL=Μεταβείτε σε αυτή τη σελίδα για να δημιουργήσετε ή να λάβετε το αναγνωριστικό και το Secret OAuth OAUTH_STRIPE_TEST_NAME=Δοκιμή OAuth Stripe -OAUTH_STRIPE_LIVE_NAME=OAuth Stripe Ζωντανά +OAUTH_STRIPE_LIVE_NAME=OAuth Stripe +OAUTH_ID=Αναγνωριστικό OAuth +OAUTH_SECRET=Secret OAuth +OAuthProviderAdded=Προστέθηκε πάροχος OAuth +AOAuthEntryForThisProviderAndLabelAlreadyHasAKey=Υπάρχει ήδη μια καταχώριση για αυτόν τον πάροχο και την ετικέτα OAuth  diff --git a/htdocs/langs/el_GR/orders.lang b/htdocs/langs/el_GR/orders.lang index 3e99ce1fa3e..4bff42df299 100644 --- a/htdocs/langs/el_GR/orders.lang +++ b/htdocs/langs/el_GR/orders.lang @@ -1,4 +1,5 @@ # Dolibarr language file - Source file is en_US - orders +OrderExists=Μια παραγγελία ήταν ήδη ανοιχτή και συνδεδεμένη με αυτήν την προσφορά, επομένως καμία άλλη παραγγελία δεν δημιουργήθηκε αυτόματα OrdersArea=Περιοχή παραγγελιών πελατών SuppliersOrdersArea=Περιοχή παραγγελιών αγοράς OrderCard=Καρτέλα παραγγελίας diff --git a/htdocs/langs/el_GR/paypal.lang b/htdocs/langs/el_GR/paypal.lang index 3bdb26a3bb0..c3e7d5d47eb 100644 --- a/htdocs/langs/el_GR/paypal.lang +++ b/htdocs/langs/el_GR/paypal.lang @@ -1,5 +1,5 @@ # Dolibarr language file - Source file is en_US - paypal -PaypalSetup=Άμεση εγκατάσταση μονάδας +PaypalSetup=Ρύθμιση ενότητας PayPal PaypalDesc=Αυτή η ενότητα επιτρέπει την πληρωμή από πελάτες μέσω του PayPal . Αυτό μπορεί να χρησιμοποιηθεί για μια ad-hoc πληρωμή ή για μια πληρωμή που σχετίζεται με ένα αντικείμενο Dolibarr (τιμολόγιο, παραγγελία, ...) PaypalOrCBDoPayment=Πληρώστε με PayPal (Κάρτα ή PayPal) PaypalDoPayment=Πληρώστε με PayPal @@ -7,30 +7,31 @@ PAYPAL_API_SANDBOX=Λειτουργία δοκιμής / sandbox PAYPAL_API_USER=API όνομα χρήστη PAYPAL_API_PASSWORD=API κωδικό πρόσβασης PAYPAL_API_SIGNATURE=API υπογραφή -PAYPAL_SSLVERSION=Curl SSL Version -PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Προσφορά "ολοκληρωμένης" πληρωμής (Πιστωτική κάρτα + PayPal) ή "PayPal" μόνο -PaypalModeIntegral=Ενσωματωμένο -PaypalModeOnlyPaypal=PayPal μόνο +PAYPAL_SSLVERSION=Έκδοση Curl SSL +PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Προσφορά "ολοκληρωμένης" πληρωμής (Πιστωτική κάρτα + PayPal) ή μόνο "PayPal" +PaypalModeIntegral=Ολοκληρωμένη +PaypalModeOnlyPaypal=Μόνο PayPal ONLINE_PAYMENT_CSS_URL=Προαιρετική διεύθυνση URL του φύλλου στυλ CSS στη σελίδα ηλεκτρονικών πληρωμών -ThisIsTransactionId=Αυτό είναι id της συναλλαγής: %s -PAYPAL_ADD_PAYMENT_URL=Συμπεριλάβετε τη διεύθυνση URL πληρωμής του PayPal όταν στέλνετε ένα έγγραφο μέσω ηλεκτρονικού ταχυδρομείου -NewOnlinePaymentReceived=Υποβλήθηκε νέα ηλεκτρονική πληρωμή -NewOnlinePaymentFailed=Η νέα ηλεκτρονική πληρωμή προσπάθησε αλλά απέτυχε -ONLINE_PAYMENT_SENDEMAIL=Διεύθυνση ηλεκτρονικού ταχυδρομείου για ειδοποιήσεις μετά από κάθε απόπειρα πληρωμής (για επιτυχία και αποτυχία) +ThisIsTransactionId=Αυτό είναι το αναγνωριστικό της συναλλαγής: %s +PAYPAL_ADD_PAYMENT_URL=Συμπεριλάβετε τη διεύθυνση URL πληρωμής του PayPal όταν στέλνετε ένα έγγραφο μέσω Email +NewOnlinePaymentReceived=Λήφθηκε νέα ηλεκτρονική πληρωμή +NewOnlinePaymentFailed=Η νέα ηλεκτρονική πληρωμή απέτυχε +ONLINE_PAYMENT_SENDEMAIL=Email για ειδοποιήσεις μετά από κάθε απόπειρα πληρωμής (για επιτυχία και αποτυχία) ReturnURLAfterPayment=Επιστροφή στο URL μετά από την πληρωμή ValidationOfOnlinePaymentFailed=Η επικύρωση της ηλεκτρονικής πληρωμής απέτυχε -PaymentSystemConfirmPaymentPageWasCalledButFailed=Η σελίδα επιβεβαίωσης πληρωμής κλήθηκε από το σύστημα πληρωμών επέστρεψε λάθος +PaymentSystemConfirmPaymentPageWasCalledButFailed=Η σελίδα επιβεβαίωσης πληρωμής που κλήθηκε από το σύστημα πληρωμών επέστρεψε ένα σφάλμα SetExpressCheckoutAPICallFailed=Η κλήση API SetExpressCheckout απέτυχε. DoExpressCheckoutPaymentAPICallFailed=Η κλήση API DoExpressCheckoutPayment απέτυχε. DetailedErrorMessage=Λεπτομερές μήνυμα λάθους ShortErrorMessage=Σύντομο μήνυμα σφάλματος -ErrorCode=Λάθος κωδικός +ErrorCode=Κωδικός λάθους ErrorSeverityCode=Κωδικός σοβαρότητας σφάλματος OnlinePaymentSystem=Ηλεκτρονικό σύστημα πληρωμών -PaypalLiveEnabled=PayPal "ζωντανή" λειτουργία ενεργοποιημένη (διαφορετικά δοκιμή / mode sandbox) +PaypalLiveEnabled=Η λειτουργία "live" του PayPal είναι ενεργοποιημένη (αλλιώς λειτουργία δοκιμής/δοκιμών δοκιμών) PaypalImportPayment=Εισαγωγή πληρωμών PayPal PostActionAfterPayment=Δημοσίευση ενεργειών μετά από πληρωμές ARollbackWasPerformedOnPostActions=Έγινε επαναφορά σε όλες τις ενέργειες Post. Πρέπει να ολοκληρώσετε μη αυτόματα τις ενέργειες αν είναι απαραίτητες. ValidationOfPaymentFailed=Η επικύρωση της πληρωμής απέτυχε CardOwner=Κάτοχος κάρτας PayPalBalance=Paypal πίστωσης +OnlineSubscriptionPaymentLine=Διαδικτυακή συνδρομή που καταγράφηκε στο %s
Πληρωμή μέσω %s
Διεύθυνση IP : %s
Αναγνωριστικό συναλλαγής:%s diff --git a/htdocs/langs/el_GR/projects.lang b/htdocs/langs/el_GR/projects.lang index f8f49d5e233..9f9d5739840 100644 --- a/htdocs/langs/el_GR/projects.lang +++ b/htdocs/langs/el_GR/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=Χρόνος που δαπανήθηκε χρεώνεται TimeSpentForIntervention=Ο χρόνος που δαπανάται TimeSpentForInvoice=Ο χρόνος που δαπανάται OneLinePerUser=Μια γραμμή ανά χρήστη -ServiceToUseOnLines=Υπηρεσία για χρήση σε γραμμές +ServiceToUseOnLines=Υπηρεσία για χρήση σε γραμμές από προεπιλογή InvoiceGeneratedFromTimeSpent=Το τιμολόγιο %s δημιουργήθηκε από το χρόνο που αφιερώσατε στο έργο InterventionGeneratedFromTimeSpent=Η παρέμβαση %s έχει δημιουργηθεί από τον χρόνο που δαπανήθηκε στο έργο ProjectBillTimeDescription=Επιλέξτε στην περίπτωση που εισάγετε φύλλο κατανομής χρόνου για τα καθήκοντα του έργου και σχεδιάζετε να δημιουργήσετε τιμολόγιο(α) από το δελτίο χρόνου για να χρεώσετε τον πελάτη του έργου (μην το επιλέξετε αν σκοπεύετε να δημιουργήσετε τιμολόγιο που δεν βασίζεται σε καταγεγραμμένα φύλλα χρόνου). Σημείωση: Για να δημιουργήσετε τιμολόγιο, μεταβείτε στην καρτέλα 'Χρόνος που δαπανήθηκε' του έργου και επιλέξτε τις γραμμές που θα συμπεριληφθούν. @@ -294,3 +294,4 @@ EnablePublicLeadForm=Ενεργοποιήστε τη δημόσια φόρμα NewLeadbyWeb=Το μήνυμα ή το αίτημά σας έχει καταγραφεί. Θα απαντήσουμε ή θα επικοινωνήσουμε μαζί σας σύντομα. NewLeadForm=Φόρμα νέας επικοινωνίας LeadFromPublicForm=Δυνητικός πελάτης από ηλεκτρονική δημόσια φόρμα +ExportAccountingReportButtonLabel=Λήψη αναφοράς diff --git a/htdocs/langs/el_GR/stocks.lang b/htdocs/langs/el_GR/stocks.lang index 7fb1dbe0b93..c2ad711f06a 100644 --- a/htdocs/langs/el_GR/stocks.lang +++ b/htdocs/langs/el_GR/stocks.lang @@ -265,6 +265,7 @@ ProductBarcodeDoesNotExist=Προϊόν με barcode δεν υπάρχει WarehouseId=ID αποθήκης WarehouseRef=Αναφορά Αποθήκης SaveQtyFirst=Αποθηκεύστε πρώτα τις πραγματικές ποσότητες που έχουν απογραφεί, πριν ζητήσετε τη δημιουργία της κίνησης των αποθεμάτων. +ToStart=Έναρξη InventoryStartedShort=Σε εξέλιξη ErrorOnElementsInventory=Η λειτουργία ακυρώθηκε για τον ακόλουθο λόγο: ErrorCantFindCodeInInventory=Δεν είναι δυνατή η εύρεση του παρακάτω κωδικού στο απόθεμα @@ -272,3 +273,45 @@ QtyWasAddedToTheScannedBarcode=Επιτυχία !! Η ποσότητα προσ StockChangeDisabled=Η αλλαγή στο απόθεμα είναι απενεργοποιημένη NoWarehouseDefinedForTerminal=Δεν έχει καθοριστεί αποθήκη για το τερματικό ClearQtys=Καθαρίστε όλες τις ποσότητες +ModuleStockTransferName=Προηγμένη Μεταφορά Αποθεμάτων +ModuleStockTransferDesc=Προηγμένη διαχείριση Μεταφοράς Αποθεμάτων, με δημιουργία φύλλου μεταφοράς +StockTransferNew=Νέα μεταφορά αποθέματος +StockTransferList=Λίστα μεταφοράς αποθεμάτων +ConfirmValidateStockTransfer=Είστε σίγουροι ότι θέλετε να επικυρώσετε αυτήν τη μεταφορά αποθεμάτων με αναφορά %s ; +ConfirmDestock=Μείωση αποθεμάτων με τη μεταφορά %s +ConfirmDestockCancel=Ακύρωση μείωσης αποθεμάτων με τη μεταφορά %s +DestockAllProduct=Μείωση των αποθεμάτων +DestockAllProductCancel=Ακύρωση μείωσης των αποθεμάτων +ConfirmAddStock=Αυξήστε τα αποθέματα με τη μεταφορά %s +ConfirmAddStockCancel=Ακύρωση αύξησης αποθεμάτων με τη μεταφορά %s +AddStockAllProduct=Αύξηση αποθεμάτων +AddStockAllProductCancel=Ακύρωση αύξησης των αποθεμάτων +DatePrevueDepart=Προβλεπόμενη ημερομηνία αναχώρησης +DateReelleDepart=Πραγματική ημερομηνία αναχώρησης +DatePrevueArrivee=Προβλεπόμενη ημερομηνία άφιξης +DateReelleArrivee=Πραγματική ημερομηνία άφιξης +HelpWarehouseStockTransferSource=Εάν οριστεί αυτή η αποθήκη, μόνο η ίδια και οι θυγατρικές της θα είναι διαθέσιμες ως αποθήκες πηγής +HelpWarehouseStockTransferDestination=Εάν οριστεί αυτή η αποθήκη, μόνο η ίδια και οι θυγατρικές της θα είναι διαθέσιμες ως αποθήκες προορισμού +LeadTimeForWarning=Χρόνος παράδοσης πριν από την ειδοποίηση (σε ημέρες) +TypeContact_stocktransfer_internal_STFROM=Αποστολέας μεταφοράς αποθεμάτων +TypeContact_stocktransfer_internal_STDEST=Αποδέκτης μεταφοράς αποθεμάτων +TypeContact_stocktransfer_internal_STRESP=Υπεύθυνος μεταφοράς αποθεμάτων +StockTransferSheet=Φύλλο μεταφοράς αποθεμάτων +StockTransferSheetProforma=Φύλλο Proforma μεταφοράς αποθεμάτων +StockTransferDecrementation=Μείωση των αποθηκών πηγής +StockTransferIncrementation=Αύξηση των αποθηκών προορισμού +StockTransferDecrementationCancel=Ακύρωση μείωσης αποθηκών πηγής +StockTransferIncrementationCancel=Ακύρωση αύξησης αποθηκών προορισμού +StockStransferDecremented=Οι αποθήκες πηγών μειώθηκαν +StockStransferDecrementedCancel=Η μείωση των αποθηκών πηγής ακυρώθηκε +StockStransferIncremented=Κλειστό - Τα αποθέματα μεταφέρθηκαν +StockStransferIncrementedShort=Τα αποθέματα μεταφέρθηκαν +StockStransferIncrementedShortCancel=Ακυρώθηκε η αύξηση των αποθηκών προορισμού +StockTransferNoBatchForProduct=Το προϊόν %s δεν χρησιμοποιεί παρτίδα, διαγράψτε την παρτίδα στη γραμμή και δοκιμάστε ξανά +StockTransferSetup = Διαμόρφωση ενότητας Μεταφοράς Αποθεμάτων +Settings=Ρυθμίσεις +StockTransferSetupPage = Σελίδα διαμόρφωσης ενότητας μεταφοράς αποθεμάτων +StockTransferRightRead=Ανάγνωση μεταφορών αποθεμάτων +StockTransferRightCreateUpdate=Δημιουργία/Ενημέρωση μεταφορών μετοχών +StockTransferRightDelete=Διαγραφή μεταφορών αποθεμάτων +BatchNotFound=Δεν βρέθηκε παρτίδα / σειριακός αριθμός για αυτό το προϊόν diff --git a/htdocs/langs/el_GR/supplier_proposal.lang b/htdocs/langs/el_GR/supplier_proposal.lang index 20698923b63..84ef2b03e77 100644 --- a/htdocs/langs/el_GR/supplier_proposal.lang +++ b/htdocs/langs/el_GR/supplier_proposal.lang @@ -1,58 +1,58 @@ # Dolibarr language file - Source file is en_US - supplier_proposal -SupplierProposal=Προτάσεις εμπορικών πωλητών +SupplierProposal=Προσφορές προμηθευτών supplier_proposalDESC=Διαχειριστείτε τα αιτήματα των τιμών προς τους προμηθευτές -SupplierProposalNew=Νέα αίτηση τιμής -CommRequest=Αίτηση τιμής +SupplierProposalNew=Νέο αίτημα τιμής +CommRequest=Αίτημα τιμής CommRequests=Αιτήματα τιμών SearchRequest=Αναζήτηση αιτήματος -DraftRequests=Πρόχειρα αιτήματα -SupplierProposalsDraft=Σχέδια προτάσεων πωλητών -LastModifiedRequests=Τελευταίες %s τροποποιημένες αιτήσεις τιμών -RequestsOpened=Ανοιχτές αιτήσεις τιμών -SupplierProposalArea=Τομέας προτάσεων πωλητών -SupplierProposalShort=Πρόταση πωλητή -SupplierProposals=Προτάσεις πωλητών -SupplierProposalsShort=Προτάσεις πωλητών -AskPrice=Αίτηση τιμής +DraftRequests=Προσχέδια αιτημάτων +SupplierProposalsDraft=Προσχέδια προσφορών προμηθευτών +LastModifiedRequests=Τελευταία %s τροποποιημένα αιτήματα τιμών +RequestsOpened=Ανοιχτά αιτήματα τιμών +SupplierProposalArea=Τομέας προσφορών προμηθευτών +SupplierProposalShort=Προσφορά προμηθευτή +SupplierProposals=Προσφορές προμηθευτών +SupplierProposalsShort=Προσφορές προμηθευτών +AskPrice=Αίτημα τιμής NewAskPrice=Νέα αίτηση τιμής ShowSupplierProposal=Προβολή αίτησης τιμής AddSupplierProposal=Δημιουργία μίας αίτησης τιμής SupplierProposalRefFourn=Αναφορά προμηθευτή SupplierProposalDate=Ημερομηνία παράδοσης -SupplierProposalRefFournNotice=Πριν κλείσετε το "Αποδεκτό", σκεφτείτε να κατανοήσετε τις αναφορές των προμηθευτών. +SupplierProposalRefFournNotice=Πριν κλείσετε σε "Αποδεκτή", μελετήστε τις αναφορές προμηθευτών. ConfirmValidateAsk=Είστε σίγουροι ότι θέλετε να επικυρώσετε την αίτηση τιμής στο όνομα %s ; DeleteAsk=Διαγραφή αίτησης ValidateAsk=Επικύρωση αίτησης -SupplierProposalStatusDraft=Πρόχειρο (Χρειάζεται επικύρωση) +SupplierProposalStatusDraft=Προσχέδιο (Χρειάζεται επικύρωση) SupplierProposalStatusValidated=Επικυρωμένη (η αίτηση είναι ανοικτή) -SupplierProposalStatusClosed=Κλειστό +SupplierProposalStatusClosed=Κλειστή SupplierProposalStatusSigned=Αποδεκτή SupplierProposalStatusNotSigned=Απορρίφθηκε -SupplierProposalStatusDraftShort=Πρόχειρο +SupplierProposalStatusDraftShort=Προσχέδιο SupplierProposalStatusValidatedShort=Επικυρώθηκε -SupplierProposalStatusClosedShort=Κλειστό +SupplierProposalStatusClosedShort=Κλειστή SupplierProposalStatusSignedShort=Αποδεκτή -SupplierProposalStatusNotSignedShort=Αρνήθηκε -CopyAskFrom=Δημιουργήστε ένα αίτημα τιμής, αντιγράφοντας ένα υπάρχον αίτημα +SupplierProposalStatusNotSignedShort=Απορρίφθηκε +CopyAskFrom=Δημιουργήστε ένα αίτημα τιμής αντιγράφοντας ένα υπάρχον αίτημα CreateEmptyAsk=Δημιουργία κενής αίτησης τιμής -ConfirmCloneAsk=Είστε σίγουροι πως θέλετε να κλωνοποιήσετε την αίτηση τιμής %s; -ConfirmReOpenAsk=Είστε σίγουροι πως θέλετε να ξαναανοίξετε την αίτηση τιμής %s; +ConfirmCloneAsk=Είστε σίγουροι πως θέλετε να αντιγράψετε την αίτηση τιμής %s; +ConfirmReOpenAsk=Είστε βέβαιοι ότι θέλετε να ανοίξετε πάλι την αίτηση τιμής %s ; SendAskByMail=Αποστολή αίτησης τιμής με email -SendAskRef=Αποστέλεται η αίτηση τιμής %s -SupplierProposalCard=Ζητήστε κάρτα +SendAskRef=Αποστολή της αίτησης τιμής %s +SupplierProposalCard=Καρτέλα αιτήσεων ConfirmDeleteAsk=Είστε σίγουροι πως θέλετε να διαγράψετε την αίτηση τιμής %s; -ActionsOnSupplierProposal=Εκδηλώσεις σχετικά με την αίτηση τιμής +ActionsOnSupplierProposal=Ενέργειες κατόπιν αιτήσεως τιμής DocModelAuroreDescription=Ένα πλήρες μοντέλο αίτησης τιμής (logo. ..) CommercialAsk=Αίτηση τιμής -DefaultModelSupplierProposalCreate=Δημιουργία προεπιλεγμένων μοντέλων +DefaultModelSupplierProposalCreate=Δημιουργία προεπιλεγμένου μοντέλου DefaultModelSupplierProposalToBill=Προκαθορισμένο πρότυπο κατά το κλείσιμο αιτήματος τιμής (αποδεκτό) DefaultModelSupplierProposalClosed=Προκαθορισμένο πρότυπο κατά το κλείσιμο αίτησης τιμής (απορρίφθηκε) -ListOfSupplierProposals=Λίστα αιτημάτων για προτάσεις πωλητών -ListSupplierProposalsAssociatedProject=Κατάλογος προτάσεων πωλητών που σχετίζονται με το έργο -SupplierProposalsToClose=Προτάσεις πωλητών να κλείσουν -SupplierProposalsToProcess=Προτάσεις πωλητών για επεξεργασία -LastSupplierProposals=Τελευταία αιτήματα τιμών %s +ListOfSupplierProposals=Λίστα αιτημάτων προσφορών προμηθευτή +ListSupplierProposalsAssociatedProject=Λίστα προσφορών προμηθευτών που σχετίζονται με το έργο +SupplierProposalsToClose=Προσφορές προμηθευτών προς κλείσιμο +SupplierProposalsToProcess=Προσφορές προμηθευτών προς επεξεργασία +LastSupplierProposals=Τελευταίες %s αιτήσεις τιμών AllPriceRequests=Όλες οι αιτήσεις -TypeContact_supplier_proposal_external_SHIPPING=Στοιχεία επικοινωνίας προμηθευτή για παράδοση -TypeContact_supplier_proposal_external_BILLING=Στοιχεία επικοινωνίας προμηθευτή για τιμολόγηση -TypeContact_supplier_proposal_external_SERVICE=Εκπρόσωπος που παρακολουθεί την Προσφορά +TypeContact_supplier_proposal_external_SHIPPING=Επαφή προμηθευτή για παράδοση +TypeContact_supplier_proposal_external_BILLING=Επαφή προμηθευτή για τιμολόγηση +TypeContact_supplier_proposal_external_SERVICE=Εκπρόσωπος επικοινωνίας μετά την προσφορά diff --git a/htdocs/langs/el_GR/suppliers.lang b/htdocs/langs/el_GR/suppliers.lang index cb3d6df65bc..e50302f6bea 100644 --- a/htdocs/langs/el_GR/suppliers.lang +++ b/htdocs/langs/el_GR/suppliers.lang @@ -4,6 +4,7 @@ SuppliersInvoice=Τιμολόγιο προμηθευτή SupplierInvoices=Τιμολόγια προμηθευτή ShowSupplierInvoice=Εμφάνιση τιμολογίου προμηθευτή NewSupplier=Νέος προμηθευτής +NewSupplierInvoice = Νέο τιμολόγιο προμηθευτή History=Ιστορικό ListOfSuppliers=Κατάλογος προμηθευτών ShowSupplier=Εμφάνιση προμηθευτή diff --git a/htdocs/langs/el_GR/ticket.lang b/htdocs/langs/el_GR/ticket.lang index c1bf370da4f..9e690097583 100644 --- a/htdocs/langs/el_GR/ticket.lang +++ b/htdocs/langs/el_GR/ticket.lang @@ -90,8 +90,8 @@ TicketPublicAccess=Μια δημόσια διεπαφή που δεν απαιτ TicketSetupDictionaries=Ο τύπος του ticket, ο βαθμός σοβαρότητας και οι αναλυτικοί κωδικοί ρυθμίζονται από λεξικά TicketParamModule=Ρύθμιση μεταβλητής μονάδας TicketParamMail=Ρύθμιση ηλεκτρονικού ταχυδρομείου -TicketEmailNotificationFrom=E-mail αποστολέα για απαντήσεις εισιτηρίων -TicketEmailNotificationFromHelp=E-mail αποστολέα για απαντήσεις εισιτηρίων που στάλθηκαν από το Dolibarr +TicketEmailNotificationFrom=E-mail αποστολέα για ειδοποίηση σχετικά με τις απαντήσεις +TicketEmailNotificationFromHelp=E-mail αποστολέα που θα χρησιμοποιηθεί για την αποστολή του email ειδοποίησης όταν μια απάντηση παρέχεται από την υποστήριξη. Για παράδειγμα noreply@example.com TicketEmailNotificationTo=Ειδοποίηση για τη δημιουργία εισιτηρίου σε αυτήν τη διεύθυνση e-mail TicketEmailNotificationToHelp=Εάν υπάρχει, αυτή η διεύθυνση e-mail θα ειδοποιηθεί για τη δημιουργία εισιτηρίου TicketNewEmailBodyLabel=Μήνυμα κειμένου που αποστέλλεται μετά τη δημιουργία ενός ticket diff --git a/htdocs/langs/en_AE/members.lang b/htdocs/langs/en_AE/members.lang new file mode 100644 index 00000000000..5f7a2ff4020 --- /dev/null +++ b/htdocs/langs/en_AE/members.lang @@ -0,0 +1,3 @@ +# Dolibarr language file - Source file is en_US - members +ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

+CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type diff --git a/htdocs/langs/en_AE/projects.lang b/htdocs/langs/en_AE/projects.lang new file mode 100644 index 00000000000..f5f817beac1 --- /dev/null +++ b/htdocs/langs/en_AE/projects.lang @@ -0,0 +1,2 @@ +# Dolibarr language file - Source file is en_US - projects +ServiceToUseOnLines=Service to use on lines by default diff --git a/htdocs/langs/en_AU/members.lang b/htdocs/langs/en_AU/members.lang new file mode 100644 index 00000000000..5f7a2ff4020 --- /dev/null +++ b/htdocs/langs/en_AU/members.lang @@ -0,0 +1,3 @@ +# Dolibarr language file - Source file is en_US - members +ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

+CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type diff --git a/htdocs/langs/en_AU/projects.lang b/htdocs/langs/en_AU/projects.lang new file mode 100644 index 00000000000..f5f817beac1 --- /dev/null +++ b/htdocs/langs/en_AU/projects.lang @@ -0,0 +1,2 @@ +# Dolibarr language file - Source file is en_US - projects +ServiceToUseOnLines=Service to use on lines by default diff --git a/htdocs/langs/en_CA/members.lang b/htdocs/langs/en_CA/members.lang new file mode 100644 index 00000000000..5f7a2ff4020 --- /dev/null +++ b/htdocs/langs/en_CA/members.lang @@ -0,0 +1,3 @@ +# Dolibarr language file - Source file is en_US - members +ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

+CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type diff --git a/htdocs/langs/en_CA/projects.lang b/htdocs/langs/en_CA/projects.lang new file mode 100644 index 00000000000..f5f817beac1 --- /dev/null +++ b/htdocs/langs/en_CA/projects.lang @@ -0,0 +1,2 @@ +# Dolibarr language file - Source file is en_US - projects +ServiceToUseOnLines=Service to use on lines by default diff --git a/htdocs/langs/en_GB/members.lang b/htdocs/langs/en_GB/members.lang new file mode 100644 index 00000000000..5f7a2ff4020 --- /dev/null +++ b/htdocs/langs/en_GB/members.lang @@ -0,0 +1,3 @@ +# Dolibarr language file - Source file is en_US - members +ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

+CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type diff --git a/htdocs/langs/en_GB/other.lang b/htdocs/langs/en_GB/other.lang new file mode 100644 index 00000000000..42139bcfa76 --- /dev/null +++ b/htdocs/langs/en_GB/other.lang @@ -0,0 +1,3 @@ +# Dolibarr language file - Source file is en_US - other +ExternalSiteModuleNotComplete=Module "External Site" was not configured properly. +FTPFailedToRemoveFile=Failed to delete file %s. diff --git a/htdocs/langs/en_GB/projects.lang b/htdocs/langs/en_GB/projects.lang new file mode 100644 index 00000000000..f5f817beac1 --- /dev/null +++ b/htdocs/langs/en_GB/projects.lang @@ -0,0 +1,2 @@ +# Dolibarr language file - Source file is en_US - projects +ServiceToUseOnLines=Service to use on lines by default diff --git a/htdocs/langs/en_IN/members.lang b/htdocs/langs/en_IN/members.lang new file mode 100644 index 00000000000..5f7a2ff4020 --- /dev/null +++ b/htdocs/langs/en_IN/members.lang @@ -0,0 +1,3 @@ +# Dolibarr language file - Source file is en_US - members +ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

+CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type diff --git a/htdocs/langs/en_SG/members.lang b/htdocs/langs/en_SG/members.lang new file mode 100644 index 00000000000..5f7a2ff4020 --- /dev/null +++ b/htdocs/langs/en_SG/members.lang @@ -0,0 +1,3 @@ +# Dolibarr language file - Source file is en_US - members +ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

+CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type diff --git a/htdocs/langs/en_SG/projects.lang b/htdocs/langs/en_SG/projects.lang new file mode 100644 index 00000000000..f5f817beac1 --- /dev/null +++ b/htdocs/langs/en_SG/projects.lang @@ -0,0 +1,2 @@ +# Dolibarr language file - Source file is en_US - projects +ServiceToUseOnLines=Service to use on lines by default diff --git a/htdocs/langs/en_ZA/members.lang b/htdocs/langs/en_ZA/members.lang new file mode 100644 index 00000000000..5f7a2ff4020 --- /dev/null +++ b/htdocs/langs/en_ZA/members.lang @@ -0,0 +1,3 @@ +# Dolibarr language file - Source file is en_US - members +ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

+CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type diff --git a/htdocs/langs/en_ZA/projects.lang b/htdocs/langs/en_ZA/projects.lang new file mode 100644 index 00000000000..f5f817beac1 --- /dev/null +++ b/htdocs/langs/en_ZA/projects.lang @@ -0,0 +1,2 @@ +# Dolibarr language file - Source file is en_US - projects +ServiceToUseOnLines=Service to use on lines by default diff --git a/htdocs/langs/es_AR/hrm.lang b/htdocs/langs/es_AR/hrm.lang index cd3446fed36..00f72f952ca 100644 --- a/htdocs/langs/es_AR/hrm.lang +++ b/htdocs/langs/es_AR/hrm.lang @@ -1,4 +1,3 @@ # Dolibarr language file - Source file is en_US - hrm HRM_EMAIL_EXTERNAL_SERVICE=E-mail para evitar el servicio externo de gestión de RRHH ConfirmDeleteEstablishment=¿Está seguro que quiere eliminar este establecimiento? -DictionaryDepartment=Gestión de RRHH - Departamentos diff --git a/htdocs/langs/es_AR/members.lang b/htdocs/langs/es_AR/members.lang index db2b184df62..c952d9198d4 100644 --- a/htdocs/langs/es_AR/members.lang +++ b/htdocs/langs/es_AR/members.lang @@ -16,7 +16,6 @@ MembersListQualified=Lista de miembros calificados MenuMembersToValidate=Miembros en Borrador MenuMembersValidated=Miembros válidos MenuMembersResiliated=Miembros terminados -MemberId=ID Miembro MemberTypeId=ID Tipo de Miembro MemberTypeLabel=Etiqueta Tipo de miembro MemberStatusDraft=Borrador (necesita ser validado) @@ -61,7 +60,7 @@ YourMembershipWasValidated=Tu membresía fue validada YourMembershipWasCanceled=Tu membresía fue cancelada CardContent=Contenido de tu ficha de miembro ThisIsContentOfYourMembershipRequestWasReceived=Queremos hacerle saber que se recibió su solicitud de membresía.

-ThisIsContentOfYourSubscriptionWasRecorded=Queremos hacerle saber que su nueva suscripción fue grabada.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=Queremos informarle que su suscripción está a punto de caducar o que ya venció (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Esperamos que la renueves.

ThisIsContentOfYourCard=Este es un resumen de la información que tenemos sobre usted. Por favor contáctenos si algo está incorrecto.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Asunto del correo de notificación recibido en caso de auto-inscripción de un invitado @@ -92,6 +91,7 @@ MembersStatisticsDesc=Elige las estadísticas que deseas visualizar ... NewMemberbyWeb=Nuevo miembro agregado. Esperando aprobación NewMemberForm=Formulario de miembro nuevo TurnoverOrBudget=Volumen de negocios (para una empresa) o Presupuesto (para una fundación) +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type MEMBER_NEWFORM_PAYONLINE=Ve a la página de pago en línea MembersStatisticsByProperties=Estadísticas de miembros por naturaleza NoEmailSentToMember=No se han enviado correos al miembro diff --git a/htdocs/langs/es_BO/members.lang b/htdocs/langs/es_BO/members.lang new file mode 100644 index 00000000000..5f7a2ff4020 --- /dev/null +++ b/htdocs/langs/es_BO/members.lang @@ -0,0 +1,3 @@ +# Dolibarr language file - Source file is en_US - members +ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

+CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type diff --git a/htdocs/langs/es_BO/projects.lang b/htdocs/langs/es_BO/projects.lang new file mode 100644 index 00000000000..f5f817beac1 --- /dev/null +++ b/htdocs/langs/es_BO/projects.lang @@ -0,0 +1,2 @@ +# Dolibarr language file - Source file is en_US - projects +ServiceToUseOnLines=Service to use on lines by default diff --git a/htdocs/langs/es_CL/hrm.lang b/htdocs/langs/es_CL/hrm.lang index 9ad29250e7f..842656e85c7 100644 --- a/htdocs/langs/es_CL/hrm.lang +++ b/htdocs/langs/es_CL/hrm.lang @@ -2,4 +2,4 @@ HRM_EMAIL_EXTERNAL_SERVICE=Correo electrónico para evitar el servicio externo de RRHH ConfirmDeleteEstablishment=¿Estás seguro de que deseas eliminar este establecimiento? OpenEtablishment=Establecimiento abierto -DictionaryDepartment=RRHH - Lista de departamentos +HrmSetup=Configuración del módulo RRHH diff --git a/htdocs/langs/es_CL/install.lang b/htdocs/langs/es_CL/install.lang index 5143b94ad59..e78c1cc8aea 100644 --- a/htdocs/langs/es_CL/install.lang +++ b/htdocs/langs/es_CL/install.lang @@ -19,7 +19,6 @@ ErrorGoBackAndCorrectParameters=Regresa y revisa / corrige los parámetros. ErrorWrongValueForParameter=Puede haber escrito un valor incorrecto para el parámetro '%s'. ErrorFailedToConnectToDatabase=Error al conectarse a la base de datos '%s'. ErrorDatabaseVersionTooLow=La versión de la base de datos (%s) es demasiado antigua. Se requiere la versión %s o superior. -ErrorPHPVersionTooLow=La versión de PHP es muy antigua. La versión %s es obligatoria. ErrorConnectedButDatabaseNotFound=La conexión al servidor se realizó correctamente, pero no se encontró la base de datos '%s'. IfDatabaseNotExistsGoBackAndUncheckCreate=Si la base de datos no existe, regrese y marque la opción "Crear base de datos". IfDatabaseExistsGoBackAndCheckCreate=Si la base de datos ya existe, retroceda y desmarque la opción "Crear base de datos". diff --git a/htdocs/langs/es_CL/members.lang b/htdocs/langs/es_CL/members.lang index f890213e394..a226d236563 100644 --- a/htdocs/langs/es_CL/members.lang +++ b/htdocs/langs/es_CL/members.lang @@ -15,7 +15,6 @@ MembersListValid=Lista de miembros válidos MembersListResiliated=Lista de miembros finalizados MembersListQualified=Lista de miembros calificados MenuMembersResiliated=Miembros finalizados -MemberId=Identificación de miembro MemberTypeId=ID de tipo de miembro MemberTypeLabel=Etiqueta de tipo de miembro MemberStatusDraft=Borrador (debe ser validado) @@ -54,6 +53,7 @@ YourMembershipWasValidated=Su membresía fue validada YourMembershipWasCanceled=Su membresía fue cancelada CardContent=Contenido de su tarjeta de miembro ThisIsContentOfYourMembershipRequestWasReceived=Queremos informarle que se recibió su solicitud de membresía.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=Queremos informarle que su suscripción está a punto de caducar o ya ha caducado (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Esperamos que lo renueven.

ThisIsContentOfYourCard=Este es un resumen de la información que tenemos sobre usted. Por favor, póngase en contacto con nosotros si algo es incorrecto.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Asunto de la notificación por correo electrónico recibida en caso de autoinscripción de un invitado @@ -85,6 +85,7 @@ MenuMembersStats=Estadística NewMemberbyWeb=Nuevo miembro agregado. Esperando aprobacion NewMemberForm=Nueva forma de miembro TurnoverOrBudget=Volumen de ventas (empresa) o Cotización (asociación o colectivo) +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type MEMBER_NEWFORM_PAYONLINE=Salte en la página integrada de pago en línea MembersStatisticsByProperties=Estadísticas de miembros por naturaleza NoEmailSentToMember=No se envió ningún correo electrónico al miembro diff --git a/htdocs/langs/es_CL/oauth.lang b/htdocs/langs/es_CL/oauth.lang index 779555f86ab..26041e7f57c 100644 --- a/htdocs/langs/es_CL/oauth.lang +++ b/htdocs/langs/es_CL/oauth.lang @@ -16,7 +16,5 @@ OAuthIDSecret=ID de OAuth y secreto TOKEN_EXPIRED=Token expiró TOKEN_EXPIRE_AT=Token caduca a las OAUTH_GOOGLE_NAME=OAuth servicio de Google -OAUTH_GOOGLE_DESC=Vaya a esta página y luego "Credenciales" para crear las credenciales de OAuth OAUTH_GITHUB_NAME=Servicio OAuth GitHub OAUTH_GITHUB_ID=Identificación de OAuth GitHub -OAUTH_GITHUB_DESC=Vaya a esta página y luego "Registre una nueva aplicación" para crear las credenciales de OAuth diff --git a/htdocs/langs/es_CL/projects.lang b/htdocs/langs/es_CL/projects.lang index 7afb36f5a70..aaae5a794c4 100644 --- a/htdocs/langs/es_CL/projects.lang +++ b/htdocs/langs/es_CL/projects.lang @@ -156,5 +156,6 @@ ModuleSalaryToDefineHourlyRateMustBeEnabled=El módulo 'Salarios' debe e NewTaskRefSuggested=Referencia de tarea ya utilizada, se requiere una nueva referencia de tarea TimeSpentForIntervention=Tiempo dedicado TimeSpentForInvoice=Tiempo dedicado +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=La factura %s se ha generado desde el tiempo invertido en el proyecto UsageBillTimeShort=Uso: Bill time diff --git a/htdocs/langs/es_CO/accountancy.lang b/htdocs/langs/es_CO/accountancy.lang index aa96013bb1d..8e9afa1c3f8 100644 --- a/htdocs/langs/es_CO/accountancy.lang +++ b/htdocs/langs/es_CO/accountancy.lang @@ -33,6 +33,7 @@ GroupIsEmptyCheckSetup=El grupo está vacío, verifique la configuración del gr DetailByAccount=Mostrar detalle por cuenta AccountWithNonZeroValues=Cuentas con valores distintos de cero. CountriesInEECExceptMe=Países en EEC excepto %s +ExportAccountingSourceDocHelp=With this tool, you can search and export the source events that are used to generate your accountancy.
The exported ZIP file will contain the lists of requested items in CSV, as well as their attached files in their original format (PDF, ODT, DOCX...). MainAccountForCustomersNotDefined=Cuenta contable principal para clientes no definidos en la configuración. MainAccountForSuppliersNotDefined=Cuenta de contabilidad principal para proveedores no definidos en la configuración. MainAccountForUsersNotDefined=Cuenta de contabilidad principal para usuarios no definidos en la configuración. @@ -184,6 +185,7 @@ DescVentilTodoExpenseReport=Líneas de informe de gastos de enlace no vinculadas DescVentilExpenseReport=Consulte aquí la lista de líneas de informe de gastos vinculadas (o no) a una cuenta de contabilidad de comisiones. DescVentilExpenseReportMore=Si configura una cuenta contable según el tipo de líneas de informe de gastos, la aplicación podrá realizar toda la vinculación entre sus líneas de informe de gastos y la cuenta contable de su plan de cuentas, solo con un clic con el botón "%s" . Si la cuenta no se estableció en el diccionario de tarifas o si todavía tiene algunas líneas no vinculadas a ninguna cuenta, deberá realizar un enlace manual desde el menú " %s ". DescVentilDoneExpenseReport=Consulte aquí la lista de líneas de informes de gastos y sus cuentas contables. +DescClosure=Consult here the number of movements by month who are not yet validated & locked DescValidateMovements=Se prohíbe cualquier modificación o eliminación de la escritura, las letras y las eliminaciones. Todas las entradas para un ejercicio deben ser validadas, de lo contrario no será posible cerrar AutomaticBindingDone=Enlaces automáticos realizados (%s) - El enlace automático no es posible para algunos registros (%s) ErrorAccountancyCodeIsAlreadyUse=Error, no puede eliminar esta cuenta de contabilidad porque se usa @@ -213,6 +215,7 @@ AccountingAccountForSalesTaxAreDefinedInto=Nota: la cuenta contable del impuesto NumberOfAccountancyMovements=Numero de movimientos ACCOUNTING_DISABLE_BINDING_ON_SALES=Deshabilitar la vinculación y la transferencia en la contabilidad de las ventas (las facturas de los clientes no se tendrán en cuenta en la contabilidad) ACCOUNTING_DISABLE_BINDING_ON_PURCHASES=Deshabilite la vinculación y transferencia en contabilidad en compras (las facturas de proveedores no se tendrán en cuenta en la contabilidad) +NotifiedValidationDate=Validate and Lock the exported entries (same effect than the "%s" feature, modification and deletion of the lines will DEFINITELY not be possible) ExportDraftJournal=Exportar borrador de revista Selectmodelcsv=Selecciona un modelo de exportación. Modelcsv_CEGID=Exportación para CEGID Expert Comptabilité diff --git a/htdocs/langs/es_CO/holiday.lang b/htdocs/langs/es_CO/holiday.lang index ad7bd301a26..1a794c336aa 100644 --- a/htdocs/langs/es_CO/holiday.lang +++ b/htdocs/langs/es_CO/holiday.lang @@ -105,4 +105,6 @@ FreeLegalTextOnHolidays=Texto libre en PDF WatermarkOnDraftHolidayCards=Marcas de agua en solicitudes de licencia de borrador HolidaysToApprove=Días festivos para aprobar NobodyHasPermissionToValidateHolidays=Nadie tiene permiso para validar las vacaciones. +BlockHolidayIfNegative=Bloquear si el balance es negativo +LeaveRequestCreationBlockedBecauseBalanceIsNegative=La creación de esta solicitud de licencia está bloqueada porque su balance es negativo ErrorLeaveRequestMustBeDraftCanceledOrRefusedToBeDeleted=La solicitud de licencia %s debe ser borrador, cancelada o rechazada para ser eliminada diff --git a/htdocs/langs/es_CO/hrm.lang b/htdocs/langs/es_CO/hrm.lang index c39867bc755..7342c5324de 100644 --- a/htdocs/langs/es_CO/hrm.lang +++ b/htdocs/langs/es_CO/hrm.lang @@ -4,7 +4,6 @@ ConfirmDeleteEstablishment=¿Estás seguro de que deseas eliminar este estableci OpenEtablishment=Establecimiento abierto CloseEtablishment=Establecimiento cerrado DictionaryPublicHolidays=Licencia - Días festivos -DictionaryDepartment=HRM - Lista de departamentos DictionaryFunction=HRM - Puestos de trabajo ListOfEmployees=Lista de empleados HrmSetup=Configuración del módulo HRM diff --git a/htdocs/langs/es_CO/install.lang b/htdocs/langs/es_CO/install.lang index bce0e620c12..137155f8791 100644 --- a/htdocs/langs/es_CO/install.lang +++ b/htdocs/langs/es_CO/install.lang @@ -22,7 +22,6 @@ ErrorGoBackAndCorrectParameters=Regresa y revisa / corrige los parámetros. ErrorWrongValueForParameter=Es posible que haya escrito un valor incorrecto para el parámetro '%s'. ErrorFailedToConnectToDatabase=Error al conectarse a la base de datos '%s'. ErrorDatabaseVersionTooLow=Versión de la base de datos (%s) demasiado antigua. Se requiere la versión %s o superior. -ErrorPHPVersionTooLow=La versión de PHP es muy antigua. Se requiere la versión %s. ErrorConnectedButDatabaseNotFound=La conexión al servidor fue exitosa pero no se encontró la base de datos '%s'. IfDatabaseNotExistsGoBackAndUncheckCreate=Si la base de datos no existe, vuelva atrás y marque la opción "Crear base de datos". IfDatabaseExistsGoBackAndCheckCreate=Si la base de datos ya existe, vuelva atrás y desmarque la opción "Crear base de datos". diff --git a/htdocs/langs/es_CO/mails.lang b/htdocs/langs/es_CO/mails.lang index 701711719d6..53c9f7a990a 100644 --- a/htdocs/langs/es_CO/mails.lang +++ b/htdocs/langs/es_CO/mails.lang @@ -42,7 +42,6 @@ RemoveRecipient=Quitar destinatario YouCanAddYourOwnPredefindedListHere=Para crear su módulo selector de correo electrónico, consulte htdocs / core / modules / mailings / README. EMailTestSubstitutionReplacedByGenericValues=Cuando se usa el modo de prueba, las variables de sustitución se reemplazan por valores genéricos BadEMail=Mal valor para el correo electrónico -EMailNotDefined=Correo electrónico no definido ConfirmCloneEMailing=¿Está seguro de que desea clonar este e-mailing? CloneReceivers=Destinatarios del clonador DateSending=Envío de fecha diff --git a/htdocs/langs/es_CO/members.lang b/htdocs/langs/es_CO/members.lang index 2e0f1c0ac0a..6c1a2c4b111 100644 --- a/htdocs/langs/es_CO/members.lang +++ b/htdocs/langs/es_CO/members.lang @@ -26,7 +26,6 @@ DateEndSubscription=Fecha de finalización de la membresía EndSubscription=Fin de la membresía SubscriptionId=ID de contribución WithoutSubscription=Sin aporte -MemberId=Identificación de miembro MemberTypeId=ID de tipo de miembro MemberTypeLabel=Etiqueta de tipo de miembro MemberStatusDraft=Borrador (necesita ser validado) @@ -93,7 +92,7 @@ YourMembershipWasCanceled=Tu membresía fue cancelada CardContent=Contenido de su tarjeta de miembro ThisIsContentOfYourMembershipRequestWasReceived=Queremos informarle que se recibió su solicitud de membresía.

ThisIsContentOfYourMembershipWasValidated=Queremos informarle que su membresía fue validada con la siguiente información:

-ThisIsContentOfYourSubscriptionWasRecorded=Queremos informarle que se registró su nueva suscripción.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=Queremos informarle que su suscripción está a punto de caducar o que ya ha caducado (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Esperamos que lo renueve.

ThisIsContentOfYourCard=Este es un resumen de la información que tenemos sobre usted. Por favor contáctenos si algo es incorrecto.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Asunto del correo electrónico de notificación recibido en caso de autoinscripción de un invitado @@ -137,7 +136,7 @@ NbOfSubscriptions=Numero de contribuciones AmountOfSubscriptions=Monto recaudado de las contribuciones TurnoverOrBudget=Facturación (para una empresa) o Presupuesto (para una fundación) DefaultAmount=Importe predeterminado de la contribución -CanEditAmount=El visitante puede elegir / editar la cantidad de su contribución +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type MEMBER_NEWFORM_PAYONLINE=Ir a la página de pago en línea integrada MembersStatisticsByProperties=Estadísticas de miembros por naturaleza VATToUseForSubscriptions=Tasa de IVA a utilizar para las contribuciones diff --git a/htdocs/langs/es_CO/oauth.lang b/htdocs/langs/es_CO/oauth.lang index 6005bedbaf5..3b5984d084b 100644 --- a/htdocs/langs/es_CO/oauth.lang +++ b/htdocs/langs/es_CO/oauth.lang @@ -15,9 +15,7 @@ TOKEN_EXPIRED=Token caducado TOKEN_EXPIRE_AT=El token vence a las OAUTH_GOOGLE_NAME=Servicio OAuth de Google OAUTH_GOOGLE_ID=ID de Google de OAuth -OAUTH_GOOGLE_DESC=Vaya a esta página y luego a "Credenciales" para crear credenciales de OAuth OAUTH_GITHUB_NAME=Servicio OAuth GitHub OAUTH_GITHUB_ID=ID de GitHub de OAuth -OAUTH_GITHUB_DESC=Vaya a en esta página y luego a "Registrar una nueva aplicación" para crear credenciales de OAuth. OAUTH_STRIPE_TEST_NAME=Prueba de banda de OAuth OAUTH_STRIPE_LIVE_NAME=OAuth Stripe en vivo diff --git a/htdocs/langs/es_CO/projects.lang b/htdocs/langs/es_CO/projects.lang index f4eeb0b6b2c..d7d0f29d616 100644 --- a/htdocs/langs/es_CO/projects.lang +++ b/htdocs/langs/es_CO/projects.lang @@ -186,7 +186,7 @@ NewTaskRefSuggested=La referencia de tarea ya se usó, se requiere una nueva ref TimeSpentInvoiced=Tiempo invertido facturado TimeSpentForIntervention=Tiempo usado TimeSpentForInvoice=Tiempo usado -ServiceToUseOnLines=Servicio para usar en líneas +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=La factura %s se ha generado a partir del tiempo dedicado al proyecto InterventionGeneratedFromTimeSpent=La intervención %s se ha generado a partir del tiempo dedicado al proyecto ProjectBillTimeDescription=Verifique si ingresa la hoja de tiempo en las tareas del proyecto Y planea generar factura(s) a partir de la hoja de tiempo para facturar al cliente del proyecto (no verifique si planea crear una factura que no se base en las hojas de tiempo ingresadas). Nota: Para generar factura, vaya a la pestaña 'Tiempo invertido' del proyecto y seleccione las líneas para incluir. diff --git a/htdocs/langs/es_CO/receptions.lang b/htdocs/langs/es_CO/receptions.lang index fb9a67d8272..67d2f3c817c 100644 --- a/htdocs/langs/es_CO/receptions.lang +++ b/htdocs/langs/es_CO/receptions.lang @@ -25,5 +25,4 @@ ProductQtyInSuppliersReceptionAlreadyRecevied=Cantidad de producto de la orden d ValidateOrderFirstBeforeReception=Primero debes validar el pedido antes de poder realizar recepciones. ReceptionsReceiptModel=Plantillas de documentos para recepciones NoMorePredefinedProductToDispatch=No más productos predefinidos para enviar -ByingPrice=Precio de oferta ReceptionUnClassifyCloseddInDolibarr=Recepción %s re-abrir diff --git a/htdocs/langs/es_DO/members.lang b/htdocs/langs/es_DO/members.lang new file mode 100644 index 00000000000..5f7a2ff4020 --- /dev/null +++ b/htdocs/langs/es_DO/members.lang @@ -0,0 +1,3 @@ +# Dolibarr language file - Source file is en_US - members +ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

+CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type diff --git a/htdocs/langs/es_DO/projects.lang b/htdocs/langs/es_DO/projects.lang new file mode 100644 index 00000000000..f5f817beac1 --- /dev/null +++ b/htdocs/langs/es_DO/projects.lang @@ -0,0 +1,2 @@ +# Dolibarr language file - Source file is en_US - projects +ServiceToUseOnLines=Service to use on lines by default diff --git a/htdocs/langs/es_EC/hrm.lang b/htdocs/langs/es_EC/hrm.lang index e98d3dd3801..4e07ce80a63 100644 --- a/htdocs/langs/es_EC/hrm.lang +++ b/htdocs/langs/es_EC/hrm.lang @@ -2,4 +2,5 @@ HRM_EMAIL_EXTERNAL_SERVICE=Correo electrónico para prevenir el servicio externo de RRHH ConfirmDeleteEstablishment=¿Estás seguro de que deseas eliminar este establecimiento? OpenEtablishment=Establecimiento abierto -DictionaryDepartment=RRHH - Lista de departamento +HrmSetup=Configuración del módulo de RRHH (Recursos Humanos) +JobPosition=Trabajo diff --git a/htdocs/langs/es_EC/install.lang b/htdocs/langs/es_EC/install.lang index a7eaf5622a3..97e3b8346ca 100644 --- a/htdocs/langs/es_EC/install.lang +++ b/htdocs/langs/es_EC/install.lang @@ -22,7 +22,6 @@ ErrorGoBackAndCorrectParameters=Regresa y revisa/corrige los parámetros. ErrorWrongValueForParameter=Es posible que haya escrito un valor incorrecto para el parámetro '%s'. ErrorFailedToConnectToDatabase=Error al conectarse a la base de datos '%s'. ErrorDatabaseVersionTooLow=Versión de base de datos (%s) demasiado antigua. Se requiere la versión%s o superior. -ErrorPHPVersionTooLow=La versión de PHP es demasiado antigua. Se requiere la versión%s. ErrorConnectedButDatabaseNotFound=La conexión al servidor fue exitosa pero la base de datos '%s' no se encontró IfDatabaseNotExistsGoBackAndUncheckCreate=Si la base de datos no existe, vuelva atrás y marque la opción "Crear base de datos". IfDatabaseExistsGoBackAndCheckCreate=Si la base de datos ya existe, vuelva atrás y desactive la opción "Crear base de datos". diff --git a/htdocs/langs/es_EC/main.lang b/htdocs/langs/es_EC/main.lang index 7256f58d602..267de4cddeb 100644 --- a/htdocs/langs/es_EC/main.lang +++ b/htdocs/langs/es_EC/main.lang @@ -554,3 +554,5 @@ ContactDefault_propal=Propuesta ContactDefault_supplier_proposal=Propuesta de proveedor ContactAddedAutomatically=Contacto agregado de roles de terceros de contacto ClientTZ=Zona horaria del cliente +Terminate=Terminar +Terminated=Terminado diff --git a/htdocs/langs/es_EC/members.lang b/htdocs/langs/es_EC/members.lang index 3cc65105296..f3feea8c918 100644 --- a/htdocs/langs/es_EC/members.lang +++ b/htdocs/langs/es_EC/members.lang @@ -16,7 +16,6 @@ MembersListResiliated=Lista de miembros terminados MembersListQualified=Lista de miembros calificados MenuMembersToValidate=Miembros del draft MenuMembersResiliated=Miembros terminados -MemberId=Identificación de miembro MemberTypeId=ID del tipo de miembro MemberTypeLabel=Etiqueta del tipo de miembro MemberStatusDraft=Proyecto (necesita ser validado) @@ -60,7 +59,7 @@ YourMembershipWasCanceled=Su membresía fue cancelada CardContent=Contenido de su tarjeta de miembro ThisIsContentOfYourMembershipRequestWasReceived=Queremos informarle que se recibió su solicitud de membresía.

ThisIsContentOfYourMembershipWasValidated=Queremos informarle que su membresía fue validada con la siguiente información:

-ThisIsContentOfYourSubscriptionWasRecorded=Queremos informarle que su nueva suscripción fue guardada.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=Queremos informarle que su suscripción está a punto de caducar o que ya caducó (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Esperamos que lo renueves.

ThisIsContentOfYourCard=Este es un resumen de la información que tenemos sobre usted. Por favor contáctenos si algo es incorrecto.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Asunto del correo electrónico de notificación recibido en caso de autoinscripción de un invitado @@ -94,6 +93,7 @@ MenuMembersStats=Estadística NewMemberbyWeb=Nuevo miembro añadido. Esperando aprobacion NewMemberForm=Formulario para nuevos miembros TurnoverOrBudget=Facturación (para una empresa) o Presupuesto (para una fundación) +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type MEMBER_NEWFORM_PAYONLINE=Ir a la página de pago en línea integrada MembersStatisticsByProperties=Estadísticas de miembros por naturaleza NoEmailSentToMember=No se envió ningún correo electrónico al miembro diff --git a/htdocs/langs/es_EC/oauth.lang b/htdocs/langs/es_EC/oauth.lang index bcc7139dc28..8f184e6b29c 100644 --- a/htdocs/langs/es_EC/oauth.lang +++ b/htdocs/langs/es_EC/oauth.lang @@ -18,6 +18,4 @@ TOKEN_EXPIRE_AT=El token expira en TOKEN_DELETE=Eliminar el token guardado OAUTH_GOOGLE_NAME=Servicio de Google OAuth OAUTH_GOOGLE_ID=ID de Google de OAuth -OAUTH_GOOGLE_DESC=Vaya a esta página y luego a "Credenciales" para crear credenciales de OAuth OAUTH_GITHUB_NAME=Servicio OAuth GitHub -OAUTH_GITHUB_DESC=Vaya a esta página y luego "Registre una nueva aplicación" para crear credenciales de OAuth diff --git a/htdocs/langs/es_EC/projects.lang b/htdocs/langs/es_EC/projects.lang index c2b71f5ef81..7ac28478c77 100644 --- a/htdocs/langs/es_EC/projects.lang +++ b/htdocs/langs/es_EC/projects.lang @@ -165,7 +165,7 @@ NewTaskRefSuggested=Referencia de tarea ya utilizada, se requiere una nueva refe TimeSpentInvoiced=Tiempo gastado facturado TimeSpentForIntervention=Tiempo usado TimeSpentForInvoice=Tiempo usado -ServiceToUseOnLines=Servicio a utilizar en líneas +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=La factura %s se ha generado a partir del tiempo dedicado al proyecto ProjectBillTimeDescription=Verifique si ingresa la hoja de tiempo en las tareas del proyecto Y planea generar factura(s) de la hoja de tiempo para facturar al cliente del proyecto (no verifique si planea crear una factura que no se base en las hojas de tiempo ingresadas). Nota: Para generar la factura, vaya a la pestaña 'Tiempo empleado' del proyecto y seleccione las líneas para incluir. UsageBillTimeShort=Uso: Tiempo a facturar diff --git a/htdocs/langs/es_EC/stocks.lang b/htdocs/langs/es_EC/stocks.lang index 4c33e5346ad..a7df10ebb98 100644 --- a/htdocs/langs/es_EC/stocks.lang +++ b/htdocs/langs/es_EC/stocks.lang @@ -119,7 +119,6 @@ ProductStockWarehouseCreated=Límite de inventario para alerta e inventario ópt ProductStockWarehouseUpdated=Límite de inventario para alerta e inventario óptimo deseado correctamente actualizado ProductStockWarehouseDeleted=Límite de inventario para alerta e inventario óptimo deseado correctamente eliminado AddNewProductStockWarehouse=Establecer un nuevo límite para la alerta y el inventario óptimo deseado -AddStockLocationLine=Disminuir la cantidad a continuación, haga clic para agregar otro almacén para este producto InventoryDate=Fecha del inventario inventorySetup =Configuración del inventario inventoryWritePermission=Actualizar los inventarios @@ -151,4 +150,5 @@ StockIncrease=Aumento de existencias StockDecrease=Disminución de existencias InventoryForASpecificWarehouse=Inventario para un almacén específico InventoryForASpecificProduct=Inventario para un producto específico +ToStart=Comienzo InventoryStartedShort=Empezado diff --git a/htdocs/langs/es_ES/accountancy.lang b/htdocs/langs/es_ES/accountancy.lang index 806acd62556..600c01edfcd 100644 --- a/htdocs/langs/es_ES/accountancy.lang +++ b/htdocs/langs/es_ES/accountancy.lang @@ -48,8 +48,9 @@ CountriesNotInEEC=Países no incluidos en la CEE CountriesInEECExceptMe=Países en la CEE excepto %s CountriesExceptMe=Todos los países excepto %s AccountantFiles=Exportar documentos de origen -ExportAccountingSourceDocHelp=Con esta herramienta, puede exportar los eventos de origen (lista en CSV y PDF) que se utilizan para generar su contabilidad. +ExportAccountingSourceDocHelp=Con esta herramienta, puede buscar y exportar los eventos de origen que se utilizan para generar su contabilidad.
El archivo ZIP exportado contendrá las listas de artículos solicitados en CSV, así como sus archivos adjuntos en su formato original (PDF, ODT, DOCX...). ExportAccountingSourceDocHelp2=Para exportar sus diarios, use la entrada de menú %s - %s. +ExportAccountingProjectHelp=Especifique un proyecto si necesita un informe contable solo para un proyecto específico. Los informes de gastos y los pagos de préstamos no se incluyen en los informes de proyectos. VueByAccountAccounting=Ver por cuenta contable VueBySubAccountAccounting=Ver por subcuenta contable @@ -161,7 +162,7 @@ BANK_DISABLE_DIRECT_INPUT=Desactivar transacciones directas en cuenta bancaria ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL=Habilitar exportación de borradores al diario ACCOUNTANCY_COMBO_FOR_AUX=Habilite la lista combinada para la cuenta subsidiaria (puede ser lento si tiene muchos terceros, rompa la capacidad de buscar en una parte del valor) ACCOUNTING_DATE_START_BINDING=Defina una fecha para comenzar a vincular y transferir en contabilidad. Por debajo de esta fecha, las transacciones no se transferirán a contabilidad. -ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=En la transferencia de contabilidad, seleccione el período que se muestra de forma predeterminada +ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=En la transferencia de contabilidad, ¿cuál es el período seleccionado por defecto? ACCOUNTING_SELL_JOURNAL=Diario de ventas ACCOUNTING_PURCHASE_JOURNAL=Diario de compras @@ -182,7 +183,7 @@ DONATION_ACCOUNTINGACCOUNT=Cuenta contable para registrar donaciones ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=Cuenta contable para registrar subscripciones ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=Cuenta contable por defecto para registrar el anticipo del cliente -UseAuxiliaryAccountOnCustomerDeposit=Use sub-accounts on customer deposit lines +UseAuxiliaryAccountOnCustomerDeposit=Almacene la cuenta del cliente como cuenta individual en el libro mayor auxiliar para las líneas de anticipos (si está deshabilitada, la cuenta individual para las líneas de anticipos permanecerá vacía) ACCOUNTING_PRODUCT_BUY_ACCOUNT=Cuenta contable predeterminada para los productos comprados (usada si no se define en el producto) ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT=Cuenta contable por defecto para los productos comprados en CEE (usada si no se define en el producto) @@ -279,10 +280,10 @@ DescVentilExpenseReportMore=Si configura la cuentas contables de los tipos de in DescVentilDoneExpenseReport=Consulte aquí las líneas de informes de gastos y sus cuentas contables Closure=Cierre anual -DescClosure=Consult here the number of movements by month who are not yet validated & locked -OverviewOfMovementsNotValidated=Overview of movements not validated and locked -AllMovementsWereRecordedAsValidated=All movements were recorded as validated and locked -NotAllMovementsCouldBeRecordedAsValidated=Not all movements could be recorded as validated and locked +DescClosure=Consulta aquí el número de movimientos por mes que aún no están validados y bloqueados +OverviewOfMovementsNotValidated=Resumen de movimientos no validados y bloqueados +AllMovementsWereRecordedAsValidated=Todos los movimientos fueron registrados como validados y bloqueados. +NotAllMovementsCouldBeRecordedAsValidated=No todos los movimientos se pudieron registrar como validados y bloqueados ValidateMovements=Validar y bloquear registro... DescValidateMovements=Se prohíbe cualquier modificación o eliminación de registros. Todas las entradas para un ejercicio deben validarse; de lo contrario, no será posible cerrarlo @@ -290,7 +291,7 @@ ValidateHistory=Vincular automáticamente AutomaticBindingDone=Vinculaciones automáticas realizadas (%s) - La vinculación automática no es posible para algunos registros (%s) ErrorAccountancyCodeIsAlreadyUse=Error, no puede eliminar esta cuenta ya que está siendo usada -MvtNotCorrectlyBalanced=Movement not correctly balanced. Debit = %s & Credit = %s +MvtNotCorrectlyBalanced=Movimiento no equilibrado correctamente. Débito = %s & Crédito = %s Balancing=Saldo FicheVentilation=Ficha contable GeneralLedgerIsWritten=Transacciones escritas en el Libro Mayor @@ -303,7 +304,7 @@ NotYetAccounted=Aún no contabilizado en el libro mayor ShowTutorial=Ver Tutorial NotReconciled=No reconciliado WarningRecordWithoutSubledgerAreExcluded=Advertencia, todas las líneas sin cuenta de libro mayor auxiliar definida se filtran y excluyen de esta vista -AccountRemovedFromCurrentChartOfAccount=Accounting account that does not exist in the current chart of accounts +AccountRemovedFromCurrentChartOfAccount=Cuenta contable que no existe en el plan de cuentas actual ## Admin BindingOptions=Opciones de enlace @@ -332,7 +333,7 @@ ACCOUNTING_DISABLE_BINDING_ON_EXPENSEREPORTS=Desactive la vinculación y transfe ## Export NotifiedExportDate=Marcar las líneas exportadas como Exportadas (para modificar una línea, deberá eliminar toda la transacción y volver a transferirla a contabilidad) -NotifiedValidationDate=Validar y bloquear las entradas exportadas (mismo efecto que la función "Cierre", no será posible DEFINITIVAMENTE la modificación y eliminación de las líneas) +NotifiedValidationDate=Valide y bloquee las entradas exportadas (mismo efecto que la función "%s", la modificación y eliminación de las líneas DEFINITIVAMENTE no será posible) DateValidationAndLock=Validación de fecha y bloqueo ConfirmExportFile=¿Confirmación de la generación del archivo de exportación contable? ExportDraftJournal=Exportar libro borrador @@ -398,19 +399,19 @@ Calculated=Calculado Formula=Fórmula ## Reconcile -Unlettering=Unreconcile -AccountancyNoLetteringModified=No reconcile modified -AccountancyOneLetteringModifiedSuccessfully=One reconcile successfully modified -AccountancyLetteringModifiedSuccessfully=%s reconcile successfully modified -AccountancyNoUnletteringModified=No unreconcile modified -AccountancyOneUnletteringModifiedSuccessfully=One unreconcile successfully modified -AccountancyUnletteringModifiedSuccessfully=%s unreconcile successfully modified +Unlettering=No reconciliar +AccountancyNoLetteringModified=Sin reconciliación modificada +AccountancyOneLetteringModifiedSuccessfully=Una conciliación modificada con éxito +AccountancyLetteringModifiedSuccessfully=%s reconciliación modificada con éxito +AccountancyNoUnletteringModified=Sin modificación no reconciliada +AccountancyOneUnletteringModifiedSuccessfully=Una no reconciliada modificada con éxito +AccountancyUnletteringModifiedSuccessfully=%s no reconciliado modificado con éxito ## Confirm box -ConfirmMassUnlettering=Bulk Unreconcile confirmation -ConfirmMassUnletteringQuestion=Are you sure you want to Unreconcile the %s selected record(s)? +ConfirmMassUnlettering=Confirmación masiva de no conciliación +ConfirmMassUnletteringQuestion=¿Está seguro de que desea anular la conciliación de los registros seleccionados %s? ConfirmMassDeleteBookkeepingWriting=Confirmación de borrado en lote -ConfirmMassDeleteBookkeepingWritingQuestion=This will delete the transaction from the accounting (all lines related to the same transaction will be deleted) Are you sure you want to delete the %s selected record(s)? +ConfirmMassDeleteBookkeepingWritingQuestion=Esto eliminará la transacción de la contabilidad (se eliminarán todas las líneas relacionadas con la misma transacción). ¿Está seguro de que desea eliminar los %s registros seleccionados? ## Error SomeMandatoryStepsOfSetupWereNotDone=Algunos pasos necesarios de la configuración no están realizados, por favor complételos. @@ -424,9 +425,10 @@ Binded=Líneas contabilizadas ToBind=Líneas a contabilizar UseMenuToSetBindindManualy=No es posible autodetectar, utilice el menú %s para realizar el apunte manualmente SorryThisModuleIsNotCompatibleWithTheExperimentalFeatureOfSituationInvoices=Lo sentimos, este módulo no es compatible con la función experimental de facturas de situación. -AccountancyErrorMismatchLetterCode=Mismatch in reconcile code -AccountancyErrorMismatchBalanceAmount=The balance (%s) is not equal to 0 -AccountancyErrorLetteringBookkeeping=Errors have occurred concerning the transactions: %s +AccountancyErrorMismatchLetterCode=Discrepancia en el código de conciliación +AccountancyErrorMismatchBalanceAmount=El saldo (%s) no es igual a 0 +AccountancyErrorLetteringBookkeeping=Se han producido errores con respecto a las transacciones: %s +ErrorAccountNumberAlreadyExists=El número de contabilidad %s ya existe ## Import ImportAccountingEntries=Entradas contables diff --git a/htdocs/langs/es_ES/admin.lang b/htdocs/langs/es_ES/admin.lang index 93b8193acf6..9b77bda7ef9 100644 --- a/htdocs/langs/es_ES/admin.lang +++ b/htdocs/langs/es_ES/admin.lang @@ -718,9 +718,9 @@ Permission34=Eliminar productos Permission36=Ver/gestionar los productos ocultos Permission38=Exportar productos Permission39=Ignorar precio mínimo -Permission41=Read projects and tasks (shared projects and projects of which I am a contact). -Permission42=Create/modify projects (shared projects and projects of which I am a contact). Can also assign users to projects and tasks -Permission44=Delete projects (shared projects and projects of which I am a contact) +Permission41=Leer proyectos y tareas (proyectos compartidos y proyectos de los que soy contacto). +Permission42=Crear/modificar proyectos (proyectos compartidos y proyectos de los que soy contacto). También puede asignar usuarios a proyectos y tareas. +Permission44=Eliminar proyectos (proyectos compartidos y proyectos de los que soy contacto) Permission45=Exportar proyectos Permission61=Consultar intervenciones Permission62=Crear/modificar intervenciones @@ -766,10 +766,10 @@ Permission122=Crear/modificar empresas Permission125=Eliminar empresas Permission126=Exportar las empresas Permission130=Crear/modificar información de pago de terceros -Permission141=Read all projects and tasks (as well as the private projects for which I am not a contact) -Permission142=Create/modify all projects and tasks (as well as the private projects for which I am not a contact) -Permission144=Delete all projects and tasks (as well as the private projects I am not a contact) -Permission145=Can enter time consumed, for me or my hierarchy, on assigned tasks (Timesheet) +Permission141=Leer todos los proyectos y tareas (así como los proyectos privados para los que no soy un contacto) +Permission142=Crear/modificar todos los proyectos y tareas (así como los proyectos privados para los que no soy un contacto) +Permission144=Eliminar todos los proyectos y tareas (así como los proyectos privados no soy un contacto) +Permission145=Puede ingresar el tiempo consumido, para mí o mi jerarquía, en tareas asignadas (Hoja de tiempo) Permission146=Consultar proveedores Permission147=Consultar estadísticas Permission151=Leer domiciliaciones @@ -884,9 +884,9 @@ Permission564=Registrar Abonos/Devoluciones de transferencias bancarias Permission601=Leer etiquetas autoadhesivas Permission602=Crear/modificar etiquetas autoadhesivas Permission609=Eliminar etiquetas autoadhesivas -Permission611=Read attributes of variants -Permission612=Create/Update attributes of variants -Permission613=Delete attributes of variants +Permission611=Leer atributos de variantes +Permission612=Crear/Actualizar atributos de variantes +Permission613=Eliminar atributos de variantes Permission650=Leer lista de materiales Permission651=Crear/Actualizar lista de material Permission652=Eliminar lista de material @@ -973,8 +973,8 @@ Permission4021=Crear/modificar tu evaluación Permission4022=Validar evaluación Permission4023=Eliminar evaluación Permission4030=Ver menú de comparación -Permission4031=Read personal information -Permission4032=Write personal information +Permission4031=Leer información personal +Permission4032=escribir información personal Permission10001=Leer contenido del sitio web Permission10002=Crear modificar contenido del sitio web (contenido html y javascript) Permission10003=Crear/modificar contenido del sitio web (código php dinámico). Peligroso, debe reservarse a desarrolladores restringidos. @@ -1346,7 +1346,7 @@ TransKeyWithoutOriginalValue=Forzó una nueva traducción para la clave de tradu TitleNumberOfActivatedModules=Módulos activados TotalNumberOfActivatedModules=Módulos activados: %s / %s YouMustEnableOneModule=Debe activar al menos un módulo. -YouMustEnableTranslationOverwriteBefore=You must first enable translation overwriting to be allowed to replace a translation +YouMustEnableTranslationOverwriteBefore=Primero debe habilitar la sobrescritura de traducción para poder reemplazar una traducción ClassNotFoundIntoPathWarning=No se ha encontrado la clase %s en su path PHP YesInSummer=Sí en verano OnlyFollowingModulesAreOpenedToExternalUsers=Atención: únicamente los módulos siguientes están disponibles a usuarios externos (sea cual sea el permiso de dichos usuarios) y solo si se otorgan permisos:
@@ -1428,8 +1428,8 @@ WatermarkOnDraftInvoices=Marca de agua en las facturas borrador (en caso de esta PaymentsNumberingModule=Numeración de modelos de pagos SuppliersPayment=Pagos a proveedor SupplierPaymentSetup=Configuración de pagos a proveedores -InvoiceCheckPosteriorDate=Check facture date before validation -InvoiceCheckPosteriorDateHelp=Validating an invoice will be forbidden if its date is anterior to the date of last invoice of same type. +InvoiceCheckPosteriorDate=Verifique la fecha de fabricación antes de la validación +InvoiceCheckPosteriorDateHelp=Estará prohibida la validación de una factura si su fecha es anterior a la fecha de la última factura del mismo tipo. ##### Proposals ##### PropalSetup=Configuración del módulo Presupuestos ProposalsNumberingModules=Módulos de numeración de presupuestos @@ -1927,7 +1927,7 @@ ConfFileMustContainCustom=La instalación o construcción de un módulo externo HighlightLinesOnMouseHover=Resaltar líneas de los listados cuando el ratón pasa por encima de ellas HighlightLinesColor=Resalta el color de la línea cuando el ratón pasa por encima (usar 'ffffff' para no resaltar) HighlightLinesChecked=Resalta el color de la línea cuando se marca (use 'ffffff' para no resaltar) -UseBorderOnTable=Show left-right borders on tables +UseBorderOnTable=Mostrar bordes de izquierda a derecha en las tablas BtnActionColor=Color del botón de acción TextBtnActionColor=Color del texto del botón de acción TextTitleColor=Color para la página de título @@ -1936,7 +1936,7 @@ PressF5AfterChangingThis=Para que sea eficaz el cambio, presione CTRL+F5 en el t NotSupportedByAllThemes=Funciona con temas del core, puede no funcionar con temas externos BackgroundColor=Color de fondo TopMenuBackgroundColor=Color de fondo para el Menú superior -TopMenuDisableImages=Ocultar imágenes en el Menú superior +TopMenuDisableImages=Icono o texto en el menú superior LeftMenuBackgroundColor=Color de fondo para el Menú izquierdo BackgroundTableTitleColor=Color de fondo para Tabla título línea BackgroundTableTitleTextColor=Color del texto para la línea de título de la tabla @@ -1949,7 +1949,7 @@ EnterAnyCode=Este campo contiene una referencia para identificar la línea. Ingr Enter0or1=Introduzca 0 ó 1 UnicodeCurrency=Ingrese aquí entre llaves, lista con número de byte que representa el símbolo de moneda. Por ejemplo: para $, introduzca [36] - para Brasil Real R$ [82,36] - para €, introduzca [8364] ColorFormat=El color RGB es en formato HEX, ej: FF0000 -PictoHelp=Icon name in format:
- image.png for an image file into the current theme directory
- image.png@module if file is into the directory /img/ of a module
- fa-xxx for a FontAwesome fa-xxx picto
- fonwtawesome_xxx_fa_color_size for a FontAwesome fa-xxx picto (with prefix, color and size set) +PictoHelp=Nombre del icono en formato:
- image.png para un archivo de imagen en el directorio del tema actual
- image.png@module si el archivo está en el directorio /img/ de un módulo
- fa-xxx para un pictograma FontAwesome fa-xxx
- fonwtawesome_xxx_fa_color_size para un pictograma FontAwesome fa-xxx (con prefijo, color y tamaño establecidos) PositionIntoComboList=Posición de la línea en listas de combo SellTaxRate=Tasa de IVA RecuperableOnly=Sí para el IVA "Non Perçue Récupérable" usados en algunas provincias en Francia. Mantenga el valor a "No" en los demás casos. @@ -2048,7 +2048,7 @@ COMPANY_AQUARIUM_CLEAN_REGEX=Filtro Regex para limpiar el valor (COMPANY_AQUARIU COMPANY_DIGITARIA_CLEAN_REGEX=Filtro de expresiones regulares para limpiar el valor (COMPANY_DIGITARIA_CLEAN_REGEX) COMPANY_DIGITARIA_UNIQUE_CODE=Duplicado no permitido GDPRContact=Oficina Protección de datos (DPO, Políticas de privacidad o contacto GDPR) -GDPRContactDesc=If you store personal data in your Information System, you can name the contact who is responsible for the General Data Protection Regulation here +GDPRContactDesc=Si almacena datos personales en su Sistema de Información, puede nombrar al contacto responsable del Reglamento General de Protección de Datos aquí HelpOnTooltip=Texto de ayuda a mostrar en la ventana emergente HelpOnTooltipDesc=Coloque aquí un texto o una clave de traducción para mostrar información emergente cuando este campo aparezca en un formulario YouCanDeleteFileOnServerWith=Puede eliminar este archivo del servidor con la línea de comandos:
%s @@ -2059,6 +2059,7 @@ VATIsUsedIsOff=Nota: La opción de usar el IVA se ha establecido como De SwapSenderAndRecipientOnPDF=Intercambiar dirección de remitente y destinatario en documentos PDF FeatureSupportedOnTextFieldsOnly=Advertencia, función compatible solo con campos de texto y listas desplegables. Además, se debe establecer un parámetro de URL action=create o action=edit O el nombre de la página debe terminar con 'new.php' para activar esta función. EmailCollector=Recolector de correo +EmailCollectors=Recolectores de correo electrónico EmailCollectorDescription=Añade una tarea programada y una página de configuración para escanear los buzones de e-mail con regularidad (utilizando el protocolo IMAP) y registra los e-mails recibidos en su aplicación, en el lugar correcto y/o crea registros automáticamente (como leads). NewEmailCollector=Nuevo recolector de e-mail EMailHost=Host del servidor de e-mail IMAP @@ -2068,30 +2069,30 @@ EmailcollectorOperations=Operaciones a realizar por el colector EmailcollectorOperationsDesc=Las operaciones se ejecutan de arriba hacia abajo. MaxEmailCollectPerCollect=Número máximo de e-mails recolectados por la recolección CollectNow=Recoger ahora -ConfirmCloneEmailCollector=Are you sure you want to clone the Email collector %s? +ConfirmCloneEmailCollector=¿Está seguro de que desea clonar el recopilador de correo electrónico %s? DateLastCollectResult=Fecha del último intento de recolección DateLastcollectResultOk=Fecha de la última recolección con éxito LastResult=Último resultado -EmailCollectorHideMailHeaders=Do not include the content of email header into the saved content of collected e-mails -EmailCollectorHideMailHeadersHelp=When enabled, e-mail headers are not added at the end of the email content that is saved as events. +EmailCollectorHideMailHeaders=No incluya el contenido del encabezado del correo electrónico en el contenido guardado de los correos electrónicos recopilados +EmailCollectorHideMailHeadersHelp=Cuando está habilitado, los encabezados de correo electrónico no se agregan al final del contenido del correo electrónico que se guarda como un evento de agenda. EmailCollectorConfirmCollectTitle=Confirmación recolección e-mail -EmailCollectorConfirmCollect=Do you want to run this collector now? -EmailCollectorExampleToCollectTicketRequestsDesc=Collect emails that match some rules and create automatically a ticket (Module Ticket must be enabled) with the email informations. You can use this collector if you provide some support by email, so your ticket request will be automatically generated. Activate also Collect_Responses to collect answers of your client directly on the ticket view (you must reply from Dolibarr). -EmailCollectorExampleToCollectTicketRequests=Example collecting the ticket request (first message only) -EmailCollectorExampleToCollectAnswersFromExternalEmailSoftwareDesc=Scan your mailbox "Sent" directory to find emails that was sent as an answer of another email directly from your email software and not from Dolibarr. If such an email is found, the event of answer is recorded into Dolibarr -EmailCollectorExampleToCollectAnswersFromExternalEmailSoftware=Example collecting e-mail answers sent from an external e-mail software -EmailCollectorExampleToCollectDolibarrAnswersDesc=Collect all emails that are an answer of an email sent from your application. An event (Module Agenda must be enabled) with the email response will be recorded at the good place. For example, if your send a commercial proposal, order, invoice or message for a ticket by email from the application, and your customer answers your email, the system will automatically catch the answer and add it into your ERP. -EmailCollectorExampleToCollectDolibarrAnswers=Example collecting all ingoing messages being answers to messages sent from Dolibarr' -EmailCollectorExampleToCollectLeadsDesc=Collect emails that match some rules and create automatically a lead (Module Project must be enabled) with the email informations. You can use this collector if you want to follow your lead using the module Project (1 lead = 1 project), so your leads will be automatically generated. If the collector Collect_Responses is also enabled, when you send an email from your leads, proposals or any other object, you may also see answers of your customers or partners directly on the application.
Note: With this initial example, the title of the lead is generated including the email. If the thirdparty can't be found in database (new customer), the lead will be attached to the thirdparty with ID 1. -EmailCollectorExampleToCollectLeads=Example collecting leads -EmailCollectorExampleToCollectJobCandidaturesDesc=Collect emails applying to job offers (Module Recruitment must be enabled). You can complete this collector if you want to automatically create a candidature for a job request. Note: With this initial example, the title of the candidature is generated including the email. -EmailCollectorExampleToCollectJobCandidatures=Example collecting job candidatures received by e-mail +EmailCollectorConfirmCollect=¿Desea ejecutar este recopilador ahora? +EmailCollectorExampleToCollectTicketRequestsDesc=Recopile correos electrónicos que coincidan con algunas reglas y cree automáticamente un ticket (el módulo Ticket debe estar habilitado) con la información del correo electrónico. Puede usar este recopilador si brinda algún tipo de soporte por correo electrónico, por lo que su solicitud de boleto se generará automáticamente. Active también Collect_Responses para recopilar las respuestas de su cliente directamente en la vista del ticket (debe responder desde Dolibarr). +EmailCollectorExampleToCollectTicketRequests=Ejemplo de recopilación de la solicitud de ticket (solo el primer mensaje) +EmailCollectorExampleToCollectAnswersFromExternalEmailSoftwareDesc=Escanee el directorio "Enviado" de su buzón para encontrar correos electrónicos que se enviaron como respuesta a otro correo electrónico directamente desde su software de correo electrónico y no desde Dolibarr. Si se encuentra dicho correo electrónico, el evento de respuesta se registra en Dolibarr +EmailCollectorExampleToCollectAnswersFromExternalEmailSoftware=Ejemplo de recopilación de respuestas de correo electrónico enviadas desde un software de correo electrónico externo +EmailCollectorExampleToCollectDolibarrAnswersDesc=Recopile todos los correos electrónicos que sean una respuesta de un correo electrónico enviado desde su aplicación. Un evento (el Módulo Agenda debe estar habilitado) con la respuesta del correo electrónico se registrará en el buen lugar. Por ejemplo, si envías una propuesta comercial, pedido, factura o mensaje de ticket por email desde la aplicación, y el destinatario responde a tu email, el sistema captará automáticamente la respuesta y la añadirá a tu ERP. +EmailCollectorExampleToCollectDolibarrAnswers=Ejemplo recopilando todos los mensajes entrantes como respuestas a mensajes enviados desde Dolibarr' +EmailCollectorExampleToCollectLeadsDesc=Recopile correos electrónicos que coincidan con algunas reglas y cree automáticamente un cliente potencial (el Proyecto del módulo debe estar habilitado) con la información del correo electrónico. Puedes usar este recopilador si quieres seguir tu lead usando el módulo Proyecto (1 lead = 1 proyecto), por lo que tus leads se generarán automáticamente. Si el recopilador Collect_Responses también está habilitado, cuando envía un correo electrónico desde sus clientes potenciales, propuestas o cualquier otro objeto, también puede ver las respuestas de sus clientes o socios directamente en la aplicación.
Nota: Con este ejemplo inicial se genera el título del lead incluyendo el email. Si no se puede encontrar al tercero en la base de datos (nuevo cliente), el cliente potencial se adjuntará al tercero con ID 1. +EmailCollectorExampleToCollectLeads=Ejemplo de recopilación de clientes potenciales +EmailCollectorExampleToCollectJobCandidaturesDesc=Recopile los correos electrónicos que solicitan ofertas de trabajo (el Módulo de Reclutamiento debe estar habilitado). Puede completar este recopilador si desea crear automáticamente una candidatura para una solicitud de trabajo. Nota: Con este ejemplo inicial se genera el título de la candidatura incluyendo el correo electrónico. +EmailCollectorExampleToCollectJobCandidatures=Ejemplo de recogida de candidaturas de trabajo recibidas por correo electrónico NoNewEmailToProcess=No hay e-mails nuevos (filtros coincidentes) para procesar NothingProcessed=Nada hecho -XEmailsDoneYActionsDone=%s e-mails analizados, %s e-mails procesados ​​con éxito (para %s registro/acciones realizadas) +XEmailsDoneYActionsDone=%s correos electrónicos precalificados, %s correos electrónicos procesados con éxito (para %s registro/acciones realizadas) RecordEvent=Registrar un evento en agenda (con tipo Email enviado o recibido) CreateLeadAndThirdParty=Crear un cliente potencial (y un tercero si es necesario) -CreateTicketAndThirdParty=Create a ticket (linked to a third party if the third party was loaded by a previous operation or was guessed from a tracker in email header, without third party otherwise) +CreateTicketAndThirdParty=Cree un ticket (vinculado a un tercero si el tercero se cargó mediante una operación anterior o se adivinó a partir de un rastreador en el encabezado del correo electrónico, sin tercero de lo contrario) CodeLastResult=Resultado último código NbOfEmailsInInbox=Número de emails en el directorio fuente LoadThirdPartyFromName=Cargar terceros buscando en %s (solo carga) @@ -2112,7 +2113,7 @@ ResourceSetup=Configuración del módulo Recursos UseSearchToSelectResource=Utilice un formulario de búsqueda para elegir un recurso (en lugar de una lista desplegable). DisabledResourceLinkUser=Desactivar funcionalidad de enlazar recursos a usuarios DisabledResourceLinkContact=Desactivar funcionalidad de enlazar recurso a contactos -EnableResourceUsedInEventCheck=Prohibit the use of the same resource at the same time in the agenda +EnableResourceUsedInEventCheck=Prohibir el uso del mismo recurso al mismo tiempo en la agenda ConfirmUnactivation=Confirme el restablecimiento del módulo OnMobileOnly=Sólo en pantalla pequeña (smartphone) DisableProspectCustomerType=Deshabilite el tipo de tercero "Cliente potencial + Cliente" (por lo que el tercero debe ser "Cliente potencial" o "Cliente", pero no puede ser ambos) @@ -2157,7 +2158,7 @@ DeleteEmailCollector=Eliminar el recolector de e-mail ConfirmDeleteEmailCollector=¿Está seguro de que querer eliminar este recolector de e-mail? RecipientEmailsWillBeReplacedWithThisValue=Los e-mails del destinatario siempre serán reemplazados por este valor AtLeastOneDefaultBankAccountMandatory=Se debe definir al menos una cuenta bancaria predeterminada -RESTRICT_ON_IP=Allow API access to only certain client IPs (wildcard not allowed, use space between values). Empty means every clients can access. +RESTRICT_ON_IP=Permita el acceso a la API solo a ciertas direcciones IP de clientes (comodín no permitido, use espacio entre valores). Vacío significa que todos los clientes pueden acceder. IPListExample=127.0.0.1 192.168.0.2 [::1] BaseOnSabeDavVersion=Basado en la versión de la biblioteca SabreDAV NotAPublicIp=No es una IP pública @@ -2167,6 +2168,9 @@ EmailTemplate=Plantilla para e-mail EMailsWillHaveMessageID=Los e-mais tendrán una etiqueta 'Referencias' que coincida con esta sintaxis PDF_SHOW_PROJECT=Mostrar proyecto en documento ShowProjectLabel=Etiqueta del proyecto +PDF_INCLUDE_ALIAS_IN_THIRDPARTY_NAME=Incluir alias en nombre de terceros +THIRDPARTY_ALIAS=Nombre de tercero - Alias de tercero +ALIAS_THIRDPARTY=Alias de tercero - Nombre de tercero PDF_USE_ALSO_LANGUAGE_CODE=Si desea duplicar algunos textos en su PDF en 2 idiomas diferentes en el mismo PDF generado, debe establecer aquí este segundo idioma para que el PDF generado contenga 2 idiomas diferentes en la misma página, el elegido al generar el PDF y este ( solo unas pocas plantillas PDF lo admiten). Mantener vacío para 1 idioma por PDF. PDF_USE_A=Generar documentos PDF con formato PDF/A en lugar del formato PDF predeterminado FafaIconSocialNetworksDesc=Ingrese aquí el código de un ícono FontAwesome. Si no sabe qué es FontAwesome, puede usar el valor genérico fa-address-book. @@ -2248,18 +2252,37 @@ TemplateforBusinessCards=Plantilla para una tarjeta de presentación en diferent InventorySetup= Configuración inventario ExportUseLowMemoryMode=Usar un modo de poca memoria ExportUseLowMemoryModeHelp=Use el modo de memoria baja para ejecutar el archivo ejecutable del volcado (la compresión se realiza a través de una canalización en lugar de en la memoria PHP). Este método no permite verificar que el archivo esté completo y no se puede informar un mensaje de error si falla. -ShowQuickAddLink=Show a button to quickly add an element in top right menu -HashForPing=Hash used for ping -ReadOnlyMode=Is instance in "Read Only" mode -DEBUGBAR_USE_LOG_FILE=Use the dolibarr.log file to trap Logs -UsingLogFileShowAllRecordOfSubrequestButIsSlower=Use the dolibarr.log file to trap Logs instead of live memory catching. It allows to catch all logs instead of only log of current process (so including the one of ajax subrequests pages) but will make your instance very very slow. Not recommended. -FixedOrPercent=Fixed (use keyword 'fixed') or percent (use keyword 'percent') -DefaultOpportunityStatus=Default opportunity status (first status when lead is created) -IconAndText=Icon and text -TextOnly=Text only -IconOnlyAllTextsOnHover=Icon only - All texts appears under icon on mouse hover menu bar -IconOnlyTextOnHover=Icon only - Text of icon appears under icon on mouse hover the icon -IconOnly=Icon only - Text on tooltip only -INVOICE_ADD_ZATCA_QR_CODE=Show the ZATCA QR code on invoices -INVOICE_ADD_ZATCA_QR_CODEMore=Some Arabic countries need this QR Code on their invoices -UrlSocialNetworksDesc=Url link of social network. Use {socialid} for the variable part that contains the social network ID. + +ModuleWebhookName = Webhook +ModuleWebhookDesc = Interfaz para capturar disparadores de dolibarr y enviarlo a una URL +WebhookSetup = Configuración de webhook +Settings = Configuraciones +WebhookSetupPage = Página de configuración del webhook +ShowQuickAddLink=Mostrar un botón para agregar rápidamente un elemento en el menú superior derecho + +HashForPing=Hash utilizado para hacer ping +ReadOnlyMode=¿Está la instancia en modo "Solo lectura"? +DEBUGBAR_USE_LOG_FILE=Use el archivo dolibarr.log para capturar registros +UsingLogFileShowAllRecordOfSubrequestButIsSlower=Utilice el archivo dolibarr.log para atrapar registros en lugar de capturar la memoria en vivo. Permite capturar todos los registros en lugar de solo el registro del proceso actual (incluido el de las páginas de subsolicitudes de ajax), pero hará que su instancia sea muy lenta. No recomendado. +FixedOrPercent=Fijo (use la palabra clave 'fixed') o porcentaje (use la palabra clave 'percent') +DefaultOpportunityStatus=Estado de oportunidad predeterminado (primer estado cuando se crea el cliente potencial) + +IconAndText=Icono y texto +TextOnly=Solo texto +IconOnlyAllTextsOnHover=Solo ícono: todos los textos aparecen debajo del ícono en la barra de menú de desplazamiento del mouse +IconOnlyTextOnHover=Solo ícono: el texto del ícono aparece debajo del ícono al pasar el mouse sobre el ícono +IconOnly=Solo icono: solo texto en la información sobre herramientas +INVOICE_ADD_ZATCA_QR_CODE=Mostrar el código QR de ZATCA en las facturas +INVOICE_ADD_ZATCA_QR_CODEMore=Algunos países árabes necesitan este código QR en sus facturas +INVOICE_ADD_SWISS_QR_CODE=Mostrar el código QR-Bill suizo en las facturas +UrlSocialNetworksDesc=Enlace URL de la red social. Use {socialid} para la parte variable que contiene la identificación de la red social. +IfThisCategoryIsChildOfAnother=Si esta categoría es hija de otra +DarkThemeMode=Modo de tema oscuro +AlwaysDisabled=Siempre deshabilitado +AccordingToBrowser=Según navegador +AlwaysEnabled=Siempre habilitado +DoesNotWorkWithAllThemes=No funcionará con todos los temas. +NoName=Sin nombre +ShowAdvancedOptions= Mostrar opciones avanzadas +HideAdvancedoptions= Ocultar opciones avanzadas +CIDLookupURL=El módulo trae una URL que puede ser utilizada por una herramienta externa para obtener el nombre de un tercero o contacto a partir de su número de teléfono. La URL a utilizar es: diff --git a/htdocs/langs/es_ES/agenda.lang b/htdocs/langs/es_ES/agenda.lang index d1b89436a17..5f3840faf46 100644 --- a/htdocs/langs/es_ES/agenda.lang +++ b/htdocs/langs/es_ES/agenda.lang @@ -45,7 +45,7 @@ CONTRACT_DELETEInDolibarr=Contrato %s eliminado PropalClosedSignedInDolibarr=Presupuesto %s firmado PropalClosedRefusedInDolibarr=Presupuesto %s rechazado PropalValidatedInDolibarr=Presupuesto %s validado -PropalBackToDraftInDolibarr=Proposal %s go back to draft status +PropalBackToDraftInDolibarr=Propuesta %s volver al estado de borrador PropalClassifiedBilledInDolibarr=Presupuesto %s clasificado facturado InvoiceValidatedInDolibarr=Factura %s validada InvoiceValidatedInDolibarrFromPos=Factura %s validada desde TPV @@ -57,6 +57,7 @@ MemberValidatedInDolibarr=Miembro %s validado MemberModifiedInDolibarr=Miembro %s modificado MemberResiliatedInDolibarr=Miembro %s terminado MemberDeletedInDolibarr=Miembro %s eliminado +MemberExcludedInDolibarr=Miembro %s excluido MemberSubscriptionAddedInDolibarr=Subscripción %s del miembro %s añadida MemberSubscriptionModifiedInDolibarr=Suscripción %s del miembro %s modificada MemberSubscriptionDeletedInDolibarr=Suscripción %s del miembro %s eliminada @@ -67,7 +68,7 @@ ShipmentBackToDraftInDolibarr=Envío %s ha sido devuelto al estado de borrador ShipmentDeletedInDolibarr=Expedición %s eliminada ShipmentCanceledInDolibarr=Envío %s cancelado ReceptionValidatedInDolibarr=Recepción %s validada -ReceptionClassifyClosedInDolibarr=Reception %s classified closed +ReceptionClassifyClosedInDolibarr=Recepción %s clasificado cerrado OrderCreatedInDolibarr=Pedido %s creado OrderValidatedInDolibarr=Pedido %s validado OrderDeliveredInDolibarr=Pedido %s clasificado como enviado diff --git a/htdocs/langs/es_ES/boxes.lang b/htdocs/langs/es_ES/boxes.lang index f3142cb5242..b3a2935bdbc 100644 --- a/htdocs/langs/es_ES/boxes.lang +++ b/htdocs/langs/es_ES/boxes.lang @@ -23,7 +23,7 @@ BoxLastMembersSubscriptions=Últimas suscripciones de miembros BoxFicheInter=Últimas intervenciones BoxCurrentAccounts=Balance de cuentas abiertas BoxTitleMemberNextBirthdays=Cumpleaños de este mes (miembros) -BoxTitleMembersByType=Miembros por tipo +BoxTitleMembersByType=Miembros por tipo y estado BoxTitleMembersSubscriptionsByYear=Suscripciones de miembros por año BoxTitleLastRssInfos=Últimas %s noticias de %s BoxTitleLastProducts=Productos/Servicios: últimos %s modificados @@ -46,6 +46,7 @@ BoxMyLastBookmarks=Marcadores: últimos %s BoxOldestExpiredServices=Servicios antiguos expirados BoxLastExpiredServices=Últimos %s contratos más antiguos con servicios expirados BoxTitleLastActionsToDo=Últimas %s acciones a realizar +BoxTitleOldestActionsToDo=Los %s eventos más antiguo que no se completaron BoxTitleLastContracts=Últimos %s contratos modificados BoxTitleLastModifiedDonations=Últimas %s donaciones modificadas BoxTitleLastModifiedExpenses=Últimos %s informes de gastos modificados diff --git a/htdocs/langs/es_ES/cashdesk.lang b/htdocs/langs/es_ES/cashdesk.lang index 30f630595a4..f12c10d0d94 100644 --- a/htdocs/langs/es_ES/cashdesk.lang +++ b/htdocs/langs/es_ES/cashdesk.lang @@ -50,8 +50,8 @@ Footer=Pié de página AmountAtEndOfPeriod=Importe al final del período (día, mes o año) TheoricalAmount=Importe teórico RealAmount=Importe real -CashFence=Cash box closing -CashFenceDone=Cash box closing done for the period +CashFence=Cierre de caja +CashFenceDone=Cierre de caja realizado para el período NbOfInvoices=Nº de facturas Paymentnumpad=Tipo de Pad para introducir el pago. Numberspad=Teclado numérico @@ -102,8 +102,8 @@ CashDeskGenericMaskCodes6 =
{TN} tag es usado para añadir el número TakeposGroupSameProduct=Agrupar mismas líneas de producto StartAParallelSale=Nueva venta simultánea  SaleStartedAt=Oferta comenzada en %s -ControlCashOpening=Open the "Control cash box" popup when opening the POS -CloseCashFence=Close cash box control +ControlCashOpening=Abra la ventana emergente "Control de caja de efectivo" al abrir el POS +CloseCashFence=Cerrar control de caja CashReport=Arqueo MainPrinterToUse=Impresora principal OrderPrinterToUse=Impresora de pedido @@ -136,3 +136,10 @@ PrintWithoutDetails=Imprimir sin detalles YearNotDefined=El año no está definido TakeposBarcodeRuleToInsertProduct=Regla de código de barras para insertar producto TakeposBarcodeRuleToInsertProductDesc=Regla para extraer la referencia del producto + una cantidad de un código de barras escaneado.
Si está vacío (valor predeterminado), la aplicación utilizará el código de barras completo escaneado para encontrar el producto.

Si se define, sintaxis debe ser:
ref:NB+qu:NB+qd:NB+other:NB
donde NB es el número de caracteres a utilizar para extraer datos del código de barras escaneado con:
  • ref : referencia del producto
  • qu : cantidad de conjunto al insertar elementos (unidades)
  • qd : cantidad de conjunto al insertar artículo (decimales)
  • otra : otros caracteres
+AlreadyPrinted=Ya impreso +HideCategories=Ocultar categorías +HideStockOnLine=Ocultar stock en línea +ShowOnlyProductInStock=Mostrar los productos en stock +ShowCategoryDescription=Mostrar descripción de la categoría +ShowProductReference=Mostrar referencia de productos +UsePriceHT=Usar precio sin impuestos y no el precio con impuestos incluidos diff --git a/htdocs/langs/es_ES/holiday.lang b/htdocs/langs/es_ES/holiday.lang index 48fb8be6ac9..c15286b6bb5 100644 --- a/htdocs/langs/es_ES/holiday.lang +++ b/htdocs/langs/es_ES/holiday.lang @@ -4,6 +4,7 @@ Holidays=Día libre CPTitreMenu=Día libre MenuReportMonth=Estado mensual MenuAddCP=Nueva petición de vacaciones +MenuCollectiveAddCP=Nueva solicitud de permiso colectivo NotActiveModCP=Debe activar el módulo Días libres para ver esta página AddCP=Realizar una petición de días libres DateDebCP=Fecha inicio @@ -79,6 +80,8 @@ MotifCP=Motivo UserCP=Usuario ErrorAddEventToUserCP=Se ha producido un error en la asignación del permiso excepcional. AddEventToUserOkCP=Se ha añadido el permiso excepcional. +ErrorFieldRequiredUserOrGroup=Se debe completar el campo "grupo" o el campo "usuario" +fusionGroupsUsers=El campo de grupos y el campo de usuario se fusionarán MenuLogCP=Ver registro de cambios LogCP=Registro de todas las actualizaciones realizadas en "Balance de Permisos" ActionByCP=Actualizado por @@ -86,6 +89,13 @@ UserUpdateCP=Actualizado para PrevSoldeCP=Saldo anterior NewSoldeCP=Nuevo saldo alreadyCPexist=Ya se ha efectuado una petición de días libres para este periodo. +UseralreadyCPexist=Ya se ha realizado una solicitud de días libres en este período para %s. +groups=Grupos +users=Usuarios +AutoSendMail=Envío automático de email +NewHolidayForGroup=Nueva solicitud de permiso colectivo +SendRequestCollectiveCP=Enviar solicitud de días libres colectiva +AutoValidationOnCreate=Validación automática FirstDayOfHoliday=Solicitud del primer día del permiso LastDayOfHoliday=Solicitud de último de día de permiso BoxTitleLastLeaveRequests=Últimos %s días retribuidos @@ -134,6 +144,6 @@ HolidaysToApprove=Vacaciones para aprobar NobodyHasPermissionToValidateHolidays=Nadie tiene permiso para validar días libres HolidayBalanceMonthlyUpdate=Actualización mensual del saldo de vacaciones XIsAUsualNonWorkingDay=%s es normalmente un día NO laborable -BlockHolidayIfNegative=Block if balance negative -LeaveRequestCreationBlockedBecauseBalanceIsNegative=The creation of this leave request is blocked because your balance is negative +BlockHolidayIfNegative=Bloquear si saldo negativo +LeaveRequestCreationBlockedBecauseBalanceIsNegative=La creación de esta solicitud de licencia está bloqueada porque su saldo es negativo ErrorLeaveRequestMustBeDraftCanceledOrRefusedToBeDeleted=La solicitud de abandono %s debe ser borrador, cancelada o rechazada para ser eliminada diff --git a/htdocs/langs/es_ES/hrm.lang b/htdocs/langs/es_ES/hrm.lang index 722722a2f4d..871ea089d82 100644 --- a/htdocs/langs/es_ES/hrm.lang +++ b/htdocs/langs/es_ES/hrm.lang @@ -70,12 +70,22 @@ RequiredSkills=Habilidades requeridas para este trabajo UserRank=Rango de usuario SkillList=Lista de habilidades SaveRank=Guardar rango -knowHow=Saber como -HowToBe=Cómo ser -knowledge=Conocimiento +TypeKnowHow=Saber como +TypeHowToBe=Cómo ser +TypeKnowledge=Conocimiento AbandonmentComment=Comentario de abandono DateLastEval=Fecha última evaluación NoEval=No se ha realizado ninguna evaluación para este empleado HowManyUserWithThisMaxNote=Número de usuarios con este rango HighestRank=Rango más alto SkillComparison=Comparación de habilidades +ActionsOnJob=Eventos en este trabajo +VacantPosition=vacante de trabajo +VacantCheckboxHelper=Al marcar esta opción, se mostrarán los puestos vacantes (vacante de trabajo) +SaveAddSkill = Habilidad(es) añadidas +SaveLevelSkill = Nivel de habilidad(es) guardado +DeleteSkill = Habilidad eliminada +SkillsExtraFields=Atributos suplementarios (Competencias) +JobsExtraFields=Atributos complementarios (Trabajos) +EvaluationsExtraFields=Atributos complementarios (Evaluaciones) +NeedBusinessTravels=Necesita viajes de negocios diff --git a/htdocs/langs/es_ES/install.lang b/htdocs/langs/es_ES/install.lang index 38d131de05d..a3cc62ad6ae 100644 --- a/htdocs/langs/es_ES/install.lang +++ b/htdocs/langs/es_ES/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=El archivo %s no es modificable. Para una primera i ConfFileIsWritable=El archivo %s es modificable. ConfFileMustBeAFileNotADir=El archivo de configuración %s tiene que ser un archivo, no un directorio. ConfFileReload=Recargar toda la información del archivo de configuración. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=El archivo de configuración conf/conf.php no existe o no se puede leer. Ejecutaremos el proceso de instalación para intentar inicializarlo. PHPSupportPOSTGETOk=Este PHP soporta bien las variables POST y GET. PHPSupportPOSTGETKo=Es posible que este PHP no soporte las variables POST y/o GET. Compruebe el parámetro variables_order del php.ini. PHPSupportSessions=Este PHP soporta sesiones @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Indicó quizá un valor incorrecto para el parámetr ErrorFailedToCreateDatabase=Error al crear la base de datos '%s'. ErrorFailedToConnectToDatabase=Error de conexión a la base de datos '%s'. ErrorDatabaseVersionTooLow=Versión de la base de datos (%s) demasiado antigua. Se requiere versión %s o superior. -ErrorPHPVersionTooLow=Versión de PHP demasiado antigua. Se requiere versión %s o superior. +ErrorPHPVersionTooLow=Versión de PHP demasiado antigua. Se requiere la versión %s o superior. +ErrorPHPVersionTooHigh=Versión de PHP demasiado alta. Se requiere la versión %s o anterior. ErrorConnectedButDatabaseNotFound=La conexión al servidor es correcta pero no se encuentra la base de datos '%s' ErrorDatabaseAlreadyExists=La base de datos '%s' ya existe. +ErrorNoMigrationFilesFoundForParameters=No se encontró ningún archivo de migración para las versiones seleccionadas IfDatabaseNotExistsGoBackAndUncheckCreate=Si la base de datos no existe, vuelva atrás y active la opción "Crear base de datos" IfDatabaseExistsGoBackAndCheckCreate=Si la base de datos ya existe, vuelva atrás y desactive la opción "crear la base de datos". WarningBrowserTooOld=Su navegador es muy antiguo. Le recomendamos que actualice a una versión reciente de Firefox, Chrome u Opera. diff --git a/htdocs/langs/es_ES/languages.lang b/htdocs/langs/es_ES/languages.lang index 34495b20bb8..5d67299fa1b 100644 --- a/htdocs/langs/es_ES/languages.lang +++ b/htdocs/langs/es_ES/languages.lang @@ -1,8 +1,9 @@ # Dolibarr language file - Source file is en_US - languages Language_am_ET=Etíope Language_ar_AR=Árabe -Language_ar_DZ=Arabic (Algeria) +Language_ar_DZ=Árabe (Argelia) Language_ar_EG=Árabe (Egipto) +Language_ar_JO=Árabe (Jordania) Language_ar_MA=Árabe (marruecos) Language_ar_SA=Árabe Language_ar_TN=Árabe (Túnez) @@ -12,9 +13,11 @@ Language_az_AZ=Azerbaiyano Language_bn_BD=Bengalí Language_bn_IN=Bengalí (India) Language_bg_BG=Búlgaro +Language_bo_CN=Tibetano Language_bs_BA=Bosnio Language_ca_ES=Catalán Language_cs_CZ=Checo +Language_cy_GB=Galés Language_da_DA=Danés Language_da_DK=Danés Language_de_DE=Alemán @@ -22,6 +25,7 @@ Language_de_AT=Alemán (Austria) Language_de_CH=Alemán (Suiza) Language_el_GR=Griego Language_el_CY=Griego (Chipre) +Language_en_AE=Inglés (Emiratos Árabes Unidos) Language_en_AU=Inglés (Australia) Language_en_CA=Inglés (Canadá) Language_en_GB=Inglés (Reino Unido) @@ -36,6 +40,7 @@ Language_es_AR=Español (Argentina) Language_es_BO=Español (Bolivia) Language_es_CL=Español (Chile) Language_es_CO=Español (Colombia) +Language_es_CR=Español (Costa Rica) Language_es_DO=Español (República Dominicana) Language_es_EC=Español (Ecuador) Language_es_GT=Español (Guatemala) @@ -83,18 +88,21 @@ Language_lt_LT=Lituano Language_lv_LV=Latvio Language_mk_MK=Macedonio Language_mn_MN=Mongol +Language_my_MM=Birmano Language_nb_NO=Noruego (Bokmål) Language_ne_NP=Nepalí Language_nl_BE=Neerlandés (Bélgica) Language_nl_NL=Holandés Language_pl_PL=Polaco Language_pt_AO=Portugués (Angola) +Language_pt_MZ=Portugués (Mozambique) Language_pt_BR=Portugués (Brasil) Language_pt_PT=Portugués Language_ro_MD=Rumano (Moldavia) Language_ro_RO=Rumano Language_ru_RU=Ruso Language_ru_UA=Ruso (Ucrania) +Language_ta_IN=Tamil Language_tg_TJ=Tayiko Language_tr_TR=Turco Language_sl_SI=Esloveno @@ -106,6 +114,7 @@ Language_sr_RS=Serbio Language_sw_SW=Kiswahili Language_th_TH=Tailandés Language_uk_UA=Ucranio +Language_ur_PK=Urdu Language_uz_UZ=Uzbeco Language_vi_VN=Vietnamita Language_zh_CN=Chino diff --git a/htdocs/langs/es_ES/mails.lang b/htdocs/langs/es_ES/mails.lang index ae24ec982fd..d79f9eeeea8 100644 --- a/htdocs/langs/es_ES/mails.lang +++ b/htdocs/langs/es_ES/mails.lang @@ -60,7 +60,7 @@ EMailTestSubstitutionReplacedByGenericValues=En modo prueba, las variables de su MailingAddFile=Adjuntar este archivo NoAttachedFiles=Sin archivos adjuntos BadEMail=E-Mail incorrecto -EMailNotDefined=Email not defined +EMailNotDefined=Correo electrónico no definido ConfirmCloneEMailing=¿Está seguro de querer clonar este e-mailing? CloneContent=Clonar mensaje CloneReceivers=Clonar destinatarios @@ -178,3 +178,4 @@ IsAnAnswer=Es una respuesta de un e-mail inicial. RecordCreatedByEmailCollector=Registro creado por el Recopilador de E-Mails %s del e-mail %s DefaultBlacklistMailingStatus=Valor predeterminado para el campo '%s' al crear un nuevo contacto DefaultStatusEmptyMandatory=Vacío pero obligatorio +WarningLimitSendByDay=ADVERTENCIA: La configuración o el contrato de su instancia limita su número de correos electrónicos por día a %s . Intentar enviar más puede provocar que su instancia se ralentice o se suspenda. Póngase en contacto con su soporte si necesita una cuota más alta. diff --git a/htdocs/langs/es_ES/main.lang b/htdocs/langs/es_ES/main.lang index 94d5ac2923e..854fbf02866 100644 --- a/htdocs/langs/es_ES/main.lang +++ b/htdocs/langs/es_ES/main.lang @@ -244,7 +244,7 @@ Designation=Descripción DescriptionOfLine=Descripción de línea DateOfLine=Fecha de la línea DurationOfLine=Duración de la línea -ParentLine=Parent line ID +ParentLine=ID de línea principal Model=Plantilla documento DefaultModel=Plantilla por defecto Action=Acción @@ -621,7 +621,7 @@ MonthVeryShort11=N MonthVeryShort12=D AttachedFiles=Archivos y documentos adjuntos JoinMainDoc=Unir al documento principal -JoinMainDocOrLastGenerated=Send the main document or the last generated one if not found +JoinMainDocOrLastGenerated=Enviar el documento principal o el último generado si no se encuentra DateFormatYYYYMM=YYYY-MM DateFormatYYYYMMDD=YYYY-MM-DD DateFormatYYYYMMDDHHMM=YYYY-MM-DD HH:SS @@ -712,6 +712,7 @@ FeatureDisabled=Función desactivada MoveBox=Mover panel Offered=Oferta NotEnoughPermissions=No tiene permisos para esta acción +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=Nombre sesión Method=Método Receive=Recepción @@ -801,6 +802,7 @@ URLPhoto=Url de la foto/logo SetLinkToAnotherThirdParty=Vincular a otro tercero LinkTo=Enlazar a LinkToProposal=Enlazar a presupuesto +LinkToExpedition= Enlace a la expedición LinkToOrder=Enlazar a pedido LinkToInvoice=Enlazar a factura LinkToTemplateInvoice=Enlazar a plantilla de factura @@ -1169,11 +1171,12 @@ CanceledHidden=Ocultar cancelado CanceledShown=Mostrar cancelado Terminate=Cancelar Terminated=De baja -AddLineOnPosition=Add line on position (at the end if empty) -ConfirmAllocateCommercial=Assign sales representative confirmation -ConfirmAllocateCommercialQuestion=Are you sure you want to assign the %s selected record(s)? -CommercialsAffected=Sales representatives affected -CommercialAffected=Sales representative affected -YourMessage=Votre message -YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. -UrlToCheck=Url to check +AddLineOnPosition=Agregar línea en la posición (al final si está vacío) +ConfirmAllocateCommercial=Asignar confirmación de representante de ventas +ConfirmAllocateCommercialQuestion=¿Está seguro de que desea asignar los %sregistros seleccionados? +CommercialsAffected=Representantes de ventas afectados +CommercialAffected=Representante de ventas afectado +YourMessage=Tu mensaje +YourMessageHasBeenReceived=Tu mensaje ha sido recibido. Le responderemos o contactaremos con usted lo antes posible. +UrlToCheck=URL para comprobar +Automation=Automatización diff --git a/htdocs/langs/es_ES/members.lang b/htdocs/langs/es_ES/members.lang index 35d298fca8c..9ed6799c193 100644 --- a/htdocs/langs/es_ES/members.lang +++ b/htdocs/langs/es_ES/members.lang @@ -15,7 +15,7 @@ ErrorMemberIsAlreadyLinkedToThisThirdParty=Otro miembro (nombre: %s, logi ErrorUserPermissionAllowsToLinksToItselfOnly=Por razones de seguridad, debe poseer los derechos de modificación de todos los usuarios para poder vincular un miembro a un usuario que no sea usted mismo. SetLinkToUser=Vincular a un usuario Dolibarr SetLinkToThirdParty=Vincular a un tercero Dolibarr -MembersCards=Generation of cards for members +MembersCards=Generación de tarjetas para socios MembersList=Listado de miembros MembersListToValid=Listado de miembros borrador (a validar) MembersListValid=Listado de miembros validados @@ -35,7 +35,8 @@ DateEndSubscription=Fecha fin afiliación EndSubscription=Fin afiliación SubscriptionId=ID afiliación WithoutSubscription=Sin suscripción -MemberId=ID miembro +MemberId=Miembro ID +MemberRef=Ref de miembro NewMember=Nuevo miembro MemberType=Tipo de miembro MemberTypeId=ID tipo de miembro @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=El tipo de miembro no puede ser eliminado NewSubscription=Nueva afiliación NewSubscriptionDesc=Utilice este formulario para registrarse como un nuevo miembro de la asociación. Para una renovación, si ya es miembro, póngase en contacto con la asociación a través del e-mail %s. Subscription=Afiliación +AnyAmountWithAdvisedAmount=Cualquier importe con un importe recomendado de %s %s +AnyAmountWithoutAdvisedAmount=Cualquier importe +CanEditAmountShort=Cualquier importe +CanEditAmountShortForValues=recomendado, cualquier importe +MembershipDuration=Duración +GetMembershipButtonLabel=Obtener membresía Subscriptions=Afiliaciones SubscriptionLate=En retraso SubscriptionNotReceived=Afiliación no recibida @@ -135,7 +142,7 @@ CardContent=Contenido de su ficha de miembro # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=Queremos informarle que se ha solicitado una nueva membresía.

ThisIsContentOfYourMembershipWasValidated=Queremos hacerle saber que su membresía fue validada con la siguiente información:

-ThisIsContentOfYourSubscriptionWasRecorded=Queremos informarle que su nueva suscripción fue grabada.

+ThisIsContentOfYourSubscriptionWasRecorded=Queremos informarle que se registró su nueva suscripción. Encuentre su factura aquí adjunta.

ThisIsContentOfSubscriptionReminderEmail=Queremos informarle que su nueva suscripción está a punto o ha expirado (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Esperamos que pueda renovarla

ThisIsContentOfYourCard=Este es un recordatorio de la información que obtenemos sobre usted. No dude en contactar con nosotros si algo le parece incorrecto.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Asunto del e-mail recibido en caso de auto-inscripción de un invitado @@ -163,7 +170,7 @@ MoreActionsOnSubscription=Acción complementaria sugerida por defecto al registr MoreActionBankDirect=Crear un registro directo en la cuenta bancaria MoreActionBankViaInvoice=Crear una factura y un pago en la cuenta bancaria MoreActionInvoiceOnly=Creación factura sin pago -LinkToGeneratedPages=Generation of business cards or address sheets +LinkToGeneratedPages=Generación de tarjetas de presentación u hojas de direcciones LinkToGeneratedPagesDesc=Esta pantalla le permite crear plantillas de tarjetas de presentación para los miembros o para cada miembro en particular. DocForAllMembersCards=Generación de tarjetas para todos los miembros DocForOneMemberCards=Generación de tarjetas para un miembro en particular @@ -198,7 +205,8 @@ NbOfSubscriptions=Número de cotizaciones AmountOfSubscriptions=Cantidad recaudada de las suscripciones TurnoverOrBudget=Volumen de ventas (empresa) o Presupuesto (asociación o colectivo) DefaultAmount=Importe por defecto cotización -CanEditAmount=El visitante puede elegir/modificar el importe de su cotización +CanEditAmount=El visitante puede elegir/editar el importe de su contribución independientemente del tipo de miembro +AmountIsLowerToMinimumNotice=sobre una deuda total de %s MEMBER_NEWFORM_PAYONLINE=Ir a la página integrada de pago en línea ByProperties=Por naturaleza MembersStatisticsByProperties=Estadísticas de los miembros por naturaleza @@ -218,3 +226,5 @@ XExternalUserCreated=%s usuarios externos creados ForceMemberNature=Naturaleza del miembro de la fuerza (individual o corporativo) CreateDolibarrLoginDesc=La creación de un login de usuario para los miembros les permite conectarse a la aplicación. En función de las autorizaciones otorgadas, podrán, por ejemplo, consultar o modificar ellos mismos su expediente. CreateDolibarrThirdPartyDesc=Un tercero es la entidad legal que se utilizará en la factura si decide generar una factura para cada contribución. Podrá crearlo más tarde durante el proceso de registro de la contribución. +MemberFirstname=Nombre del miembro +MemberLastname=Apellido del miembro diff --git a/htdocs/langs/es_ES/modulebuilder.lang b/htdocs/langs/es_ES/modulebuilder.lang index 39891fba3e0..8cfabbe2804 100644 --- a/htdocs/langs/es_ES/modulebuilder.lang +++ b/htdocs/langs/es_ES/modulebuilder.lang @@ -1,17 +1,19 @@ # Dolibarr language file - Source file is en_US - loan +IdModule= Id del módulo ModuleBuilderDesc=Esta herramienta solo debe ser utilizada por usuarios o desarrolladores experimentados. Proporciona utilidades para crear o editar su propio módulo. La documentación para el desarrollo manual alternativo está aquí . -EnterNameOfModuleDesc=Enter the name of the module/application to create with no spaces. Use uppercase to separate words (For example: MyModule, EcommerceForShop, SyncWithMySystem...) -EnterNameOfObjectDesc=Enter the name of the object to create with no spaces. Use uppercase to separate words (For example: MyObject, Student, Teacher...). The CRUD class file, but also API file, pages to list/add/edit/delete object and SQL files will be generated. -EnterNameOfDictionaryDesc=Enter the name of the dictionary to create with no spaces. Use uppercase to separate words (For example: MyDico...). The class file, but also the SQL file will be generated. +EnterNameOfModuleDesc=Ingrese el nombre del módulo/aplicación para crear sin espacios. Use mayúsculas para separar palabras (por ejemplo: MyModule, EcommerceForShop, SyncWithMySystem...) +EnterNameOfObjectDesc=Ingrese el nombre del objeto a crear sin espacios. Use mayúsculas para separar palabras (Por ejemplo: MiObjeto, Estudiante, Profesor...). Se generarán el archivo de clase CRUD, pero también el archivo API, las páginas para enumerar/agregar/editar/eliminar objetos y archivos SQL. +EnterNameOfDictionaryDesc=Ingrese el nombre del diccionario para crear sin espacios. Use mayúsculas para separar palabras (Por ejemplo: MyDico...). Se generará el archivo de clase, pero también el archivo SQL. ModuleBuilderDesc2=Ruta donde los módulos son generados/editados (primer directorio para módulos externos definido en %s): %s ModuleBuilderDesc3=Módulos generados/editables encontrados: %s ModuleBuilderDesc4=Un módulo se detecta como 'editable' cuando el archivo %s existe en la raíz del directorio del módulo NewModule=Nuevo módulo NewObjectInModulebuilder=Nuevo objeto -NewDictionary=New dictionary +NewDictionary=Nuevo diccionario +ModuleName=Nombre del módulo ModuleKey=Clave del módulo ObjectKey=Clave del objeto -DicKey=Dictionary key +DicKey=Clave de diccionario ModuleInitialized=Módulo inicializado FilesForObjectInitialized=Ficheros para el nuevo objeto '%s' inicializado FilesForObjectUpdated=Ficheros del objeto '%s' actualizado (ficheros .sql y fichero .class.php) @@ -55,7 +57,7 @@ LanguageFile=Archivo para el idioma ObjectProperties=Propiedades del objeto ConfirmDeleteProperty=¿Está seguro de querer eliminar la propiedad %s? Esto cambiará código en la clase PHP pero también eliminará la columna de la definición de la tabla del objeto. NotNull=No NULL -NotNullDesc=1=Set database to NOT NULL, 0=Allow null values, -1=Allow null values by forcing value to NULL if empty ('' or 0) +NotNullDesc=1=Establecer la base de datos en NO NULL, 0=Permitir valores nulos, -1=Permitir valores nulos forzando el valor a NULL si está vacío ('' o 0) SearchAll=Usada para 'buscar todo' DatabaseIndex=Indice de la base de datos FileAlreadyExists=Fichero %s ya existe @@ -130,9 +132,9 @@ UseSpecificEditorURL = Usar un editor específico URL UseSpecificFamily = Usar una familia específica UseSpecificAuthor = Usar un autor especifico UseSpecificVersion = Usar una versión inicial específica -IncludeRefGeneration=The reference of object must be generated automatically by custom numbering rules -IncludeRefGenerationHelp=Check this if you want to include code to manage the generation of the reference automatically using custom numbering rules -IncludeDocGeneration=I want to generate some documents from templates for the object +IncludeRefGeneration=La referencia del objeto debe generarse automáticamente mediante reglas de numeración personalizadas. +IncludeRefGenerationHelp=Marque esto si desea incluir código para administrar la generación de la referencia automáticamente usando reglas de numeración personalizadas +IncludeDocGeneration=Quiero generar algunos documentos a partir de plantillas para el objeto. IncludeDocGenerationHelp=Si marca esto, se generará código para agregar un panel "Generar documento" en el registro. ShowOnCombobox=Mostrar valor en el combobox KeyForTooltip=Clave para tooltip @@ -147,9 +149,10 @@ AsciiToPdfConverter=Conversor de ASCII a PDF TableNotEmptyDropCanceled=La tabla no está vacía. La eliminación ha sido cancelada. ModuleBuilderNotAllowed=El constructor de módulos está disponible pero no permitido para su usuario. ImportExportProfiles=Importar y exportar perfiles -ValidateModBuilderDesc=Set this to 1 if you want to have the method $this->validateField() of object being called to validate the content of the field during insert or upadate. Set 0 if there is no validation required. +ValidateModBuilderDesc=Establézcalo en 1 si desea que se llame al método $this->validateField() del objeto para validar el contenido del campo durante la inserción o la actualización. Establezca 0 si no se requiere validación. WarningDatabaseIsNotUpdated=Advertencia: la base de datos no se actualiza automáticamente, debe destruir las tablas y deshabilitar-habilitar el módulo para que se vuelvan a crear las tablas LinkToParentMenu=Menú principal (fk_xxxxmenu) -ListOfTabsEntries=List of tab entries -TabsDefDesc=Define here the tabs provided by your module -TabsDefDescTooltip=The tabs provided by your module/application are defined into the array $this->tabs into the module descriptor file. You can edit manually this file or use the embedded editor. +ListOfTabsEntries=Lista de entradas de pestañas +TabsDefDesc=Defina aquí las pestañas proporcionadas por su módulo +TabsDefDescTooltip=Las pestañas proporcionadas por su módulo/aplicación se definen en la matriz $this->tabs en el archivo descriptor del módulo. Puede editar manualmente este archivo o usar el editor incorporado. +BadValueForType=Bad value for type %s diff --git a/htdocs/langs/es_ES/orders.lang b/htdocs/langs/es_ES/orders.lang index 7244aed6e6b..ca42b8cba96 100644 --- a/htdocs/langs/es_ES/orders.lang +++ b/htdocs/langs/es_ES/orders.lang @@ -1,4 +1,5 @@ # Dolibarr language file - Source file is en_US - orders +OrderExists=Ya había un pedido abierto vinculado a este presupuesto, por lo que no se ha creado ningún otro pedido automáticamente OrdersArea=Área pedidos de clientes SuppliersOrdersArea=Área pedidos a proveedores OrderCard=Ficha pedido @@ -68,6 +69,8 @@ CreateOrder=Crear pedido RefuseOrder=Rechazar el pedido ApproveOrder=Aprobar pedido Approve2Order=Aprobar pedido (segundo nivel) +UserApproval=Usuario para aprobación +UserApproval2=Usuario para aprobación (segundo nivel) ValidateOrder=Validar el pedido UnvalidateOrder=Desvalidar el pedido DeleteOrder=Eliminar el pedido @@ -102,6 +105,8 @@ ConfirmCancelOrder=¿Está seguro de querer anular este pedido? ConfirmMakeOrder=¿Está seguro de querer confirmar este pedido en fecha de %s ? GenerateBill=Facturar ClassifyShipped=Clasificar enviado +PassedInShippedStatus=clasificado entregado +YouCantShipThis=No puedo clasificar esto. Por favor, compruebe los permisos de usuario DraftOrders=Pedidos borrador DraftSuppliersOrders=Pedidos a proveedor en borrador OnProcessOrders=Pedidos en proceso diff --git a/htdocs/langs/es_ES/projects.lang b/htdocs/langs/es_ES/projects.lang index b96058a2106..29b4daadb8d 100644 --- a/htdocs/langs/es_ES/projects.lang +++ b/htdocs/langs/es_ES/projects.lang @@ -6,7 +6,7 @@ ProjectLabel=Etiqueta proyecto ProjectsArea=Área Proyectos ProjectStatus=Estado del proyecto SharedProject=Proyecto compartido -PrivateProject=Assigned contacts +PrivateProject=Contactos asignados ProjectsImContactFor=Proyectos de los que soy contacto explícito AllAllowedProjects=Todos los proyectos que puedo leer (míos + públicos) AllProjects=Todos los proyectos @@ -259,7 +259,7 @@ TimeSpentInvoiced=Tiempo transcurrido facturado TimeSpentForIntervention=Tiempos dedicados TimeSpentForInvoice=Tiempos dedicados OneLinePerUser=Una línea por usuario -ServiceToUseOnLines=Servicio a utilizar en lineas. +ServiceToUseOnLines=Servicio a utilizar en líneas por defecto InvoiceGeneratedFromTimeSpent=Se ha generado la factura %s a partir del tiempo empleado en el proyecto InterventionGeneratedFromTimeSpent=Se ha generado la intervención %s a partir del tiempo empleado en el proyecto ProjectBillTimeDescription=Verifique si ingresa la hoja de horas trabajadas en las tareas del proyecto y planea generar factura(s) a partir de la hoja para facturar al cliente del proyecto (no lo verifique si planea crear una factura que no se base en las hojas de horas trabajadas ingresadas). Nota: Para generar la factura, vaya a la pestaña 'Tiempo empleado' del proyecto y seleccione las líneas a incluir. @@ -289,8 +289,9 @@ FormForNewLeadDesc=Gracias por llenar el siguiente formulario para contactarnos. ProjectsHavingThisContact=Proyectos que tienen este contacto StartDateCannotBeAfterEndDate=La fecha de finalizacion no puede ser anterior a la fecha de inicio ErrorPROJECTLEADERRoleMissingRestoreIt=Falta el rol "PROJECTLEADER" o se ha desactivado, restablezcalo en el diccionario de tipos de contacto -LeadPublicFormDesc=You can enable here a public page to allow your prospects to make a first contact to you from a public online form -EnablePublicLeadForm=Enable the public form for contact -NewLeadbyWeb=Your message or request has been recorded. We will answer or contact your soon. -NewLeadForm=New contact form -LeadFromPublicForm=Online lead from public form +LeadPublicFormDesc=Puede habilitar aquí una página pública para permitir que sus prospectos hagan un primer contacto con usted desde un formulario público en línea +EnablePublicLeadForm=Habilitar el formulario público de contacto +NewLeadbyWeb=Su mensaje o solicitud ha sido grabada. Le responderemos o contactaremos con usted pronto. +NewLeadForm=Nuevo formulario de contacto +LeadFromPublicForm=Cliente potencial en línea desde un formulario público +ExportAccountingReportButtonLabel=Obtener informe diff --git a/htdocs/langs/es_ES/stocks.lang b/htdocs/langs/es_ES/stocks.lang index e6b8c861172..364a6259321 100644 --- a/htdocs/langs/es_ES/stocks.lang +++ b/htdocs/langs/es_ES/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Límite stock para alertas y stock óptimo deseado ProductStockWarehouseUpdated=Límite stock para alertas y stock óptimo deseado actualizado correctamente ProductStockWarehouseDeleted=Límite stock para alertas y stock óptimo deseado eliminado correctamente AddNewProductStockWarehouse=Indicar nuevo límite para alertas y stock óptimo deseado -AddStockLocationLine=Disminuya la cantidad, y a continuación, haga clic para agregar otro almacén para este producto +AddStockLocationLine=Disminuya la cantidad y luego haga clic para dividir la línea InventoryDate=Fecha inventario Inventories=Inventarios NewInventory=Nuevo inventario @@ -254,7 +254,7 @@ ReOpen=Reabrir ConfirmFinish=¿Confirmas el cierre del inventario? Esto generará todos los movimientos de stock para actualizar su stock a la cantidad real que ingresó en el inventario. ObjectNotFound=%s no encontrado MakeMovementsAndClose=Generar movimientos y cerrar -AutofillWithExpected=Reemplazar la cantidad real con la cantidad esperada +AutofillWithExpected=Llene la cantidad real con la cantidad esperada ShowAllBatchByDefault=De forma predeterminada, muestra los detalles del lote en la pestaña "stock" del producto CollapseBatchDetailHelp=Puede establecer la visualización predeterminada de los detalles del lote en la configuración del módulo de existencias ErrorWrongBarcodemode=Modo de código de barras desconocido @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=El producto con código de barras no existe WarehouseId=ID de almacén WarehouseRef=Ref de almacén SaveQtyFirst=Guarde primero las cantidades reales inventariadas, antes de solicitar la creación del movimiento de existencias. +ToStart=Comenzar InventoryStartedShort=Pago parcial ErrorOnElementsInventory=Operación cancelada por el siguiente motivo: ErrorCantFindCodeInInventory=No puedo encontrar el siguiente código en el inventario QtyWasAddedToTheScannedBarcode=Éxito !! La cantidad se agregó a todo el código de barras solicitado. Puede cerrar la herramienta del escáner. StockChangeDisabled=Cambio en stock desactivado NoWarehouseDefinedForTerminal=Sin almacén definido para terminal +ClearQtys=Borrar todas las cantidades +ModuleStockTransferName=Transferencia avanzada de Stock +ModuleStockTransferDesc=Gestión avanzada de Transferencia de Stock, con generación de ficha de transferencia +StockTransferNew=Nueva transferencia de stock +StockTransferList=Lista de transferencias de stock +ConfirmValidateStockTransfer=¿Está seguro de que desea validar esta transferencia de stock con la referencia %s ? +ConfirmDestock=Disminución de existencias con transferencia %s +ConfirmDestockCancel=Cancelar disminución de existencias con transferencia %s +DestockAllProduct=Disminución de existencias +DestockAllProductCancel=Cancelar disminución de existencias +ConfirmAddStock=Aumentar existencias con transferencia %s +ConfirmAddStockCancel=Cancelar aumento de existencias con transferencia %s +AddStockAllProduct=Aumento de existencias +AddStockAllProductCancel=Cancelar aumento de existencias +DatePrevueDepart=Fecha prevista de salida +DateReelleDepart=Fecha real de salida +DatePrevueArrivee=Fecha prevista de llegada +DateReelleArrivee=Fecha real de llegada +HelpWarehouseStockTransferSource=Si se establece este almacén, solo él mismo y sus elementos secundarios estarán disponibles como almacén de origen +HelpWarehouseStockTransferDestination=Si se establece este almacén, solo él mismo y sus hijos estarán disponibles como almacén de destino +LeadTimeForWarning=Plazo antes de la alerta (en días) +TypeContact_stocktransfer_internal_STFROM=Remitente de la transferencia de existencias +TypeContact_stocktransfer_internal_STDEST=Destinatario de la transferencia de existencias +TypeContact_stocktransfer_internal_STRESP=Responsable de transferencia de existencias. +StockTransferSheet=Hoja de transferencia de existencias +StockTransferSheetProforma=Hoja de transferencia de existencias proforma +StockTransferDecrementation=Reducir los almacenes de origen +StockTransferIncrementation=Aumentar los almacenes de destino +StockTransferDecrementationCancel=Cancelar disminución de almacenes de origen +StockTransferIncrementationCancel=Cancelar aumento de almacenes de destino +StockStransferDecremented=Los almacenes de origen disminuyeron +StockStransferDecrementedCancel=Disminución de almacenes de origen cancelada +StockStransferIncremented=Cerrado - Existencias transferidas +StockStransferIncrementedShort=Existencias transferidas +StockStransferIncrementedShortCancel=Ampliación de almacenes de destino cancelada +StockTransferNoBatchForProduct=El producto %s no usa el lote, borre el lote en línea y vuelva a intentarlo +StockTransferSetup = Configuración del módulo de transferencia de existencias +Settings=Configuraciones +StockTransferSetupPage = Página de configuración del módulo de transferencia de existencias +StockTransferRightRead=Leer transferencias de existencias +StockTransferRightCreateUpdate=Crear/Actualizar transferencias de existencias +StockTransferRightDelete=Eliminar transferencias de existencias +BatchNotFound=Lote/serie no encontrado para este producto diff --git a/htdocs/langs/es_ES/suppliers.lang b/htdocs/langs/es_ES/suppliers.lang index 3ca5ccc0155..3abd7caf8a5 100644 --- a/htdocs/langs/es_ES/suppliers.lang +++ b/htdocs/langs/es_ES/suppliers.lang @@ -4,6 +4,7 @@ SuppliersInvoice=Factura proveedor SupplierInvoices=Facturas proveedor ShowSupplierInvoice=Ver factura de proveedor NewSupplier=Nuevo proveedor +NewSupplierInvoice = Nueva factura de proveedor History=Histórico ListOfSuppliers=Listado de proveedores ShowSupplier=Mostrar proveedor @@ -47,3 +48,10 @@ BuyerName=Nombre del comprador AllProductServicePrices=Todos los precios de producto / servicio AllProductReferencesOfSupplier=Todas las referencias del proveedor BuyingPriceNumShort=Precios de proveedores +RepeatableSupplierInvoice=Plantilla de factura de proveedor +RepeatableSupplierInvoices=Plantilla de facturas de proveedores +RepeatableSupplierInvoicesList=Plantilla de facturas de proveedores +RecurringSupplierInvoices=Facturas recurrentes de proveedores +ToCreateAPredefinedSupplierInvoice=Para crear una plantilla de factura de proveedor, debe crear una factura estándar, luego, sin validarla, haga clic en el botón "%s". +GeneratedFromSupplierTemplate=Generado a partir de la plantilla de factura de proveedor %s +SupplierInvoiceGeneratedFromTemplate=Factura de proveedor %s Generada a partir de la plantilla de factura de proveedor %s diff --git a/htdocs/langs/es_ES/ticket.lang b/htdocs/langs/es_ES/ticket.lang index 2bbd0a8bad9..59d5e735045 100644 --- a/htdocs/langs/es_ES/ticket.lang +++ b/htdocs/langs/es_ES/ticket.lang @@ -90,15 +90,17 @@ TicketPublicAccess=Una interfaz pública que no requiere identificación está d TicketSetupDictionaries=Los tipos de categorías y los niveles de gravedad se pueden configurar en los diccionarios TicketParamModule=Configuración de variables del módulo TicketParamMail=Configuración de E-Mail -TicketEmailNotificationFrom=Sender e-mail for ticket answers -TicketEmailNotificationFromHelp=Sender e-mail for ticket answers sent from Dolibarr -TicketEmailNotificationTo=Notify ticket creation to this e-mail address -TicketEmailNotificationToHelp=If present, this e-mail address will be notified of a ticket creation +TicketEmailNotificationFrom=E-mail del remitente para notificación de respuestas +TicketEmailNotificationFromHelp=Correo electrónico del remitente para usar para enviar el correo electrónico de notificación cuando se proporciona una respuesta desde Dolibarr. Por ejemplo noreply@example.com +TicketEmailNotificationTo=Notificar creación de ticket a esta dirección de correo electrónico +TicketEmailNotificationToHelp=Si está presente, esta dirección de correo electrónico será notificada de la creación de un ticket. TicketNewEmailBodyLabel=Mensaje de texto enviado después de crear un ticket TicketNewEmailBodyHelp=El texto especificado aquí se insertará en el e-mail de confirmación de creación de un nuevo ticket desde la interfaz pública. La información sobre la consulta del ticket se agrega automáticamente. TicketParamPublicInterface=Configuración de interfaz pública TicketsEmailMustExist=Requerir una dirección de e-mail existente para crear un ticket TicketsEmailMustExistHelp=En la interfaz pública, la dirección de email debe ser rellenada en la base de datos para crear un nuevo ticket. +TicketCreateThirdPartyWithContactIfNotExist=Pregunte el nombre y el nombre de la empresa para correos electrónicos desconocidos. +TicketCreateThirdPartyWithContactIfNotExistHelp=Compruebe si existe un tercero o un contacto para el correo electrónico ingresado. Si no, pide un nombre y una razón social para crear un tercero con contacto. PublicInterface=Interfaz pública. TicketUrlPublicInterfaceLabelAdmin=URL alternativa de interfaz pública TicketUrlPublicInterfaceHelpAdmin=Es posible definir un alias para el servidor web y así poner a disposición la interfaz pública a otra dirección IP. @@ -145,8 +147,8 @@ TicketsDelayBetweenAnswersHelp=Si un ticket sin resolver que ya recibió una res TicketsAutoNotifyClose=Notificar automáticamente a un tercero al cerrar un ticket TicketsAutoNotifyCloseHelp=Al cerrar un ticket, se le propondrá enviar un mensaje a uno de los contactos de un tercero. En el cierre masivo, se enviará un mensaje a un contacto del tercero vinculado al ticket. TicketWrongContact=El contacto proporcionado no forma parte de los contactos del ticket actual. E-Mail no enviado. -TicketChooseProductCategory=Product category for ticket support -TicketChooseProductCategoryHelp=Select the product category of ticket support. This will be used to automatically link a contract to a ticket. +TicketChooseProductCategory=Categoría de producto para soporte de tickets +TicketChooseProductCategoryHelp=Seleccione la categoría de producto de soporte de tickets. Esto se usará para vincular automáticamente un contrato a un boleto. # # Index & list page @@ -219,12 +221,12 @@ ErrorMailRecipientIsEmptyForSendTicketMessage=El destinatario está vacío. No s TicketGoIntoContactTab=Vaya a la pestaña "Contactos" para seleccionarlos TicketMessageMailIntro=Introducción TicketMessageMailIntroHelp=Este texto es añadido solo al principio del email y no será salvado. -TicketMessageMailIntroLabelAdmin=Introduction text to all ticket answers -TicketMessageMailIntroText=Hello,
A new answer has been added to a ticket that you follow. Here is the message:
-TicketMessageMailIntroHelpAdmin=This text will be inserted before the answer when replying to a ticket from Dolibarr +TicketMessageMailIntroLabelAdmin=Texto de introducción a todas las respuestas del ticket +TicketMessageMailIntroText=Hola,
Se ha agregado una nueva respuesta a un ticket que sigues. Aquí está el mensaje:
+TicketMessageMailIntroHelpAdmin=Este texto se insertará antes de la respuesta al responder a un ticket de Dolibarr TicketMessageMailSignature=Firma TicketMessageMailSignatureHelp=Este texto se agrega solo al final del e-mail y no se guardará. -TicketMessageMailSignatureText=Message sent by %s via Dolibarr +TicketMessageMailSignatureText=Mensaje enviado por %s vía Dolibarr TicketMessageMailSignatureLabelAdmin=Firma del e-mail de respuesta TicketMessageMailSignatureHelpAdmin=Este texto se insertará después del mensaje de respuesta. TicketMessageHelp=Solo este texto se guardará en la lista de mensajes en la ficha del ticket @@ -260,8 +262,8 @@ TicketNotCreatedFromPublicInterface=No disponible. El ticket no se creó desde l ErrorTicketRefRequired=La referencia del ticket es obligatoria TicketsDelayForFirstResponseTooLong=Ha transcurrido demasiado tiempo desde la apertura del ticket sin ninguna respuesta. TicketsDelayFromLastResponseTooLong=Ha transcurrido demasiado tiempo desde la última respuesta en este ticket. -TicketNoContractFoundToLink=No contract was found to be automatically linked to this ticket. Please link a contract manually. -TicketManyContractsLinked=Many contracts have been automatically linked to this ticket. Make sure to verify which should be chosen. +TicketNoContractFoundToLink=No se encontró ningún contrato vinculado automáticamente a este ticket. Vincule un contrato manualmente. +TicketManyContractsLinked=Muchos contratos se han vinculado automáticamente a este ticket. Asegúrese de verificar cuál debe elegir. # # Logs @@ -289,7 +291,7 @@ TicketNewEmailBody=Este es un e-mail automático para confirmar que ha registrad TicketNewEmailBodyCustomer=Este es un e-mail automático para confirmar que se acaba de crear un nuevo ticket en su cuenta. TicketNewEmailBodyInfosTicket=Información para monitorear el ticket TicketNewEmailBodyInfosTrackId=Número de seguimiento del ticket: %s -TicketNewEmailBodyInfosTrackUrl=You can view the progress of the ticket by clicking the following link +TicketNewEmailBodyInfosTrackUrl=Puede ver el progreso del ticket haciendo clic en el siguiente enlace TicketNewEmailBodyInfosTrackUrlCustomer=Puede ver el progreso del ticket en la interfaz específica haciendo clic en el siguiente enlace TicketCloseEmailBodyInfosTrackUrlCustomer=Puede consultar el historial de este ticket haciendo clic en el siguiente enlace TicketEmailPleaseDoNotReplyToThisEmail=¡Por favor no responda directamente a este correo! Use el enlace para responder. diff --git a/htdocs/langs/es_GT/members.lang b/htdocs/langs/es_GT/members.lang new file mode 100644 index 00000000000..5f7a2ff4020 --- /dev/null +++ b/htdocs/langs/es_GT/members.lang @@ -0,0 +1,3 @@ +# Dolibarr language file - Source file is en_US - members +ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

+CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type diff --git a/htdocs/langs/es_GT/projects.lang b/htdocs/langs/es_GT/projects.lang new file mode 100644 index 00000000000..f5f817beac1 --- /dev/null +++ b/htdocs/langs/es_GT/projects.lang @@ -0,0 +1,2 @@ +# Dolibarr language file - Source file is en_US - projects +ServiceToUseOnLines=Service to use on lines by default diff --git a/htdocs/langs/es_HN/main.lang b/htdocs/langs/es_HN/main.lang index 2e691473326..7f44762de77 100644 --- a/htdocs/langs/es_HN/main.lang +++ b/htdocs/langs/es_HN/main.lang @@ -4,18 +4,21 @@ FONTFORPDF=helvetica FONTSIZEFORPDF=10 SeparatorDecimal=. SeparatorThousand=, -FormatDateShort=%m/%d/%Y -FormatDateShortInput=%m/%d/%Y -FormatDateShortJava=MM/dd/yyyy -FormatDateShortJavaInput=MM/dd/yyyy -FormatDateShortJQuery=mm/dd/yy -FormatDateShortJQueryInput=mm/dd/yy +FormatDateShort=%d/%m/%Y +FormatDateShortInput=%d/%m/%Y +FormatDateShortJava=dd/MM/yyyy +FormatDateShortJavaInput=dd/MM/yyyy +FormatDateShortJQuery=dd/mm/yy +FormatDateShortJQueryInput=dd/mm/yy FormatHourShortJQuery=HH:MI FormatHourShort=%I:%M %p FormatHourShortDuration=%H:%M FormatDateTextShort=%b %d, %Y FormatDateText=%B %d, %Y -FormatDateHourShort=%m/%d/%Y %I:%M %p -FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p +FormatDateHourShort=%d/%m/%Y %I:%M %p +FormatDateHourSecShort=%d/%m/%Y %I:%M:%S %p FormatDateHourTextShort=%b %d, %Y, %I:%M %p FormatDateHourText=%B %d, %Y, %I:%M %p +DateFormatYYYYMM=AAAA-MM +DateFormatYYYYMMDD=AAAA-MM-DD +DateFormatYYYYMMDDHHMM=AAAA-MM-DD HH:SS diff --git a/htdocs/langs/es_HN/members.lang b/htdocs/langs/es_HN/members.lang new file mode 100644 index 00000000000..5f7a2ff4020 --- /dev/null +++ b/htdocs/langs/es_HN/members.lang @@ -0,0 +1,3 @@ +# Dolibarr language file - Source file is en_US - members +ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

+CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type diff --git a/htdocs/langs/es_HN/projects.lang b/htdocs/langs/es_HN/projects.lang new file mode 100644 index 00000000000..f5f817beac1 --- /dev/null +++ b/htdocs/langs/es_HN/projects.lang @@ -0,0 +1,2 @@ +# Dolibarr language file - Source file is en_US - projects +ServiceToUseOnLines=Service to use on lines by default diff --git a/htdocs/langs/es_MX/install.lang b/htdocs/langs/es_MX/install.lang index a936800f65d..c79b58e2009 100644 --- a/htdocs/langs/es_MX/install.lang +++ b/htdocs/langs/es_MX/install.lang @@ -10,7 +10,6 @@ ErrorDirDoesNotExists=El directorio %s no existe. ErrorWrongValueForParameter=Puede haber escrito un valor incorrecto para el parámetro '%s'. ErrorFailedToConnectToDatabase=Error al conectar con la base de datos '%s'. ErrorDatabaseVersionTooLow=La versión de base de datos (%s) es demasiado antigua. Se requiere la versión %s o superior. -ErrorPHPVersionTooLow=La versión de PHP es demasiado antigua. Se requiere la versión %s. IfDatabaseExistsGoBackAndCheckCreate=Si ya existe la base de datos, vuelva atrás y desmarque la opción "Crear base de datos". License=Uso de licencia WebPagesDirectory=Directorio donde se almacenan las páginas web diff --git a/htdocs/langs/es_MX/members.lang b/htdocs/langs/es_MX/members.lang index b22a482c7fa..cd64352c294 100644 --- a/htdocs/langs/es_MX/members.lang +++ b/htdocs/langs/es_MX/members.lang @@ -1,3 +1,5 @@ # Dolibarr language file - Source file is en_US - members MemberStatusDraft=Borrador (necesita ser validado) SubscriptionLate=Tarde +ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

+CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type diff --git a/htdocs/langs/es_MX/oauth.lang b/htdocs/langs/es_MX/oauth.lang index 922201394e7..76da0fa81cd 100644 --- a/htdocs/langs/es_MX/oauth.lang +++ b/htdocs/langs/es_MX/oauth.lang @@ -16,7 +16,5 @@ TOKEN_EXPIRED=Token caducado TOKEN_EXPIRE_AT=El token caduca a las OAUTH_GOOGLE_NAME=Servicio de Google OAuth OAUTH_GOOGLE_ID=ID de Google OAuth -OAUTH_GOOGLE_DESC=Vaya a esta página y luego a "Credenciales" para crear credenciales de OAuth OAUTH_GITHUB_NAME=Servicio OAuth GitHub OAUTH_GITHUB_ID=Id OAuth GitHub -OAUTH_GITHUB_DESC=Vaya a esta página y luego "Registre una nueva aplicación" para crear credenciales de OAuth diff --git a/htdocs/langs/es_MX/stocks.lang b/htdocs/langs/es_MX/stocks.lang index 8e9b1e95980..3b13c6c09d3 100644 --- a/htdocs/langs/es_MX/stocks.lang +++ b/htdocs/langs/es_MX/stocks.lang @@ -3,4 +3,5 @@ Location=Ubicación inventoryEdit=Editar inventoryDeleteLine=Borrar línea ListInventory=Lista +ToStart=Iniciar InventoryStartedShort=Iniciado diff --git a/htdocs/langs/es_PA/members.lang b/htdocs/langs/es_PA/members.lang new file mode 100644 index 00000000000..5f7a2ff4020 --- /dev/null +++ b/htdocs/langs/es_PA/members.lang @@ -0,0 +1,3 @@ +# Dolibarr language file - Source file is en_US - members +ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

+CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type diff --git a/htdocs/langs/es_PA/projects.lang b/htdocs/langs/es_PA/projects.lang new file mode 100644 index 00000000000..f5f817beac1 --- /dev/null +++ b/htdocs/langs/es_PA/projects.lang @@ -0,0 +1,2 @@ +# Dolibarr language file - Source file is en_US - projects +ServiceToUseOnLines=Service to use on lines by default diff --git a/htdocs/langs/es_PE/members.lang b/htdocs/langs/es_PE/members.lang new file mode 100644 index 00000000000..5f7a2ff4020 --- /dev/null +++ b/htdocs/langs/es_PE/members.lang @@ -0,0 +1,3 @@ +# Dolibarr language file - Source file is en_US - members +ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

+CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type diff --git a/htdocs/langs/es_PY/members.lang b/htdocs/langs/es_PY/members.lang new file mode 100644 index 00000000000..5f7a2ff4020 --- /dev/null +++ b/htdocs/langs/es_PY/members.lang @@ -0,0 +1,3 @@ +# Dolibarr language file - Source file is en_US - members +ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

+CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type diff --git a/htdocs/langs/es_PY/projects.lang b/htdocs/langs/es_PY/projects.lang new file mode 100644 index 00000000000..f5f817beac1 --- /dev/null +++ b/htdocs/langs/es_PY/projects.lang @@ -0,0 +1,2 @@ +# Dolibarr language file - Source file is en_US - projects +ServiceToUseOnLines=Service to use on lines by default diff --git a/htdocs/langs/es_US/members.lang b/htdocs/langs/es_US/members.lang new file mode 100644 index 00000000000..5f7a2ff4020 --- /dev/null +++ b/htdocs/langs/es_US/members.lang @@ -0,0 +1,3 @@ +# Dolibarr language file - Source file is en_US - members +ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

+CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type diff --git a/htdocs/langs/es_US/projects.lang b/htdocs/langs/es_US/projects.lang new file mode 100644 index 00000000000..f5f817beac1 --- /dev/null +++ b/htdocs/langs/es_US/projects.lang @@ -0,0 +1,2 @@ +# Dolibarr language file - Source file is en_US - projects +ServiceToUseOnLines=Service to use on lines by default diff --git a/htdocs/langs/es_UY/members.lang b/htdocs/langs/es_UY/members.lang new file mode 100644 index 00000000000..5f7a2ff4020 --- /dev/null +++ b/htdocs/langs/es_UY/members.lang @@ -0,0 +1,3 @@ +# Dolibarr language file - Source file is en_US - members +ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

+CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type diff --git a/htdocs/langs/es_UY/projects.lang b/htdocs/langs/es_UY/projects.lang new file mode 100644 index 00000000000..f5f817beac1 --- /dev/null +++ b/htdocs/langs/es_UY/projects.lang @@ -0,0 +1,2 @@ +# Dolibarr language file - Source file is en_US - projects +ServiceToUseOnLines=Service to use on lines by default diff --git a/htdocs/langs/es_VE/members.lang b/htdocs/langs/es_VE/members.lang index 9509a94e6af..ce425f5314c 100644 --- a/htdocs/langs/es_VE/members.lang +++ b/htdocs/langs/es_VE/members.lang @@ -2,3 +2,5 @@ MemberStatusDraftShort=A validar MemberStatusActiveShort=Validada MemberStatusNoSubscriptionShort=Validada +ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

+CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type diff --git a/htdocs/langs/es_VE/projects.lang b/htdocs/langs/es_VE/projects.lang new file mode 100644 index 00000000000..f5f817beac1 --- /dev/null +++ b/htdocs/langs/es_VE/projects.lang @@ -0,0 +1,2 @@ +# Dolibarr language file - Source file is en_US - projects +ServiceToUseOnLines=Service to use on lines by default diff --git a/htdocs/langs/et_EE/holiday.lang b/htdocs/langs/et_EE/holiday.lang index 275d093c939..a618510a876 100644 --- a/htdocs/langs/et_EE/holiday.lang +++ b/htdocs/langs/et_EE/holiday.lang @@ -4,6 +4,7 @@ Holidays=Leave CPTitreMenu=Leave MenuReportMonth=Kuu aruanne MenuAddCP=New leave request +MenuCollectiveAddCP=New collective leave request NotActiveModCP=You must enable the module Leave to view this page. AddCP=Make a leave request DateDebCP=Alguskuupäev @@ -79,6 +80,8 @@ MotifCP=Põhjus UserCP=Kasutaja ErrorAddEventToUserCP=Erakorralise puhkuse lisamisel tekkis viga AddEventToUserOkCP=Erakorralise puhkuse lisamine edukalt lõpetatud. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=View change logs LogCP=Log of all updates made to "Balance of Leave" ActionByCP=Updated by @@ -86,6 +89,13 @@ UserUpdateCP=Updated for PrevSoldeCP=Eelmine saldo NewSoldeCP=Uus saldo alreadyCPexist=A leave request has already been done on this period. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Rühmad +users=Kasutajad +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Beginning day of leave request LastDayOfHoliday=Ending day of leave request BoxTitleLastLeaveRequests=Latest %s modified leave requests diff --git a/htdocs/langs/et_EE/install.lang b/htdocs/langs/et_EE/install.lang index dca9094b78c..ab9898d7bd5 100644 --- a/htdocs/langs/et_EE/install.lang +++ b/htdocs/langs/et_EE/install.lang @@ -8,6 +8,7 @@ ConfFileIsNotWritable=Configuration file %s is not writable. Check permis ConfFileIsWritable=Seadistusfail %s on kirjutatav. ConfFileMustBeAFileNotADir=Configuration file %s must be a file, not a directory. ConfFileReload=Reloading parameters from configuration file. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=Antud PHP toetab POST ja GET muutujaid. PHPSupportPOSTGETKo=It's possible your PHP setup does not support variables POST and/or GET. Check the parameter variables_order in php.ini. PHPSupportSessions=Antud PHP toetab sessioone. @@ -16,13 +17,6 @@ PHPMemoryOK=Antud PHP poolt kasutatav sessiooni maksimaalne mälu on %s. PHPMemoryTooLow=Your PHP max session memory is set to %s bytes. This is too low. Change your php.ini to set memory_limit parameter to at least %s bytes. Recheck=Click here for a more detailed test ErrorPHPDoesNotSupportSessions=Your PHP installation does not support sessions. This feature is required to allow Dolibarr to work. Check your PHP setup and permissions of the sessions directory. -ErrorPHPDoesNotSupportGD=Your PHP installation does not support GD graphical functions. No graphs will be available. -ErrorPHPDoesNotSupportCurl=Your PHP installation does not support Curl. -ErrorPHPDoesNotSupportCalendar=Your PHP installation does not support php calendar extensions. -ErrorPHPDoesNotSupportUTF8=Your PHP installation does not support UTF8 functions. Dolibarr cannot work correctly. Resolve this before installing Dolibarr. -ErrorPHPDoesNotSupportIntl=Your PHP installation does not support Intl functions. -ErrorPHPDoesNotSupportMbstring=Your PHP installation does not support mbstring functions. -ErrorPHPDoesNotSupportxDebug=Your PHP installation does not support extend debug functions. ErrorPHPDoesNotSupport=Your PHP installation does not support %s functions. ErrorDirDoesNotExists=Kausta %s ei ole olemas. ErrorGoBackAndCorrectParameters=Go back and check/correct the parameters. @@ -30,9 +24,11 @@ ErrorWrongValueForParameter=Parameetri "%s" väärtus on ilmselt vales ErrorFailedToCreateDatabase=Ei suutnud luua andmebaasi '%s ". ErrorFailedToConnectToDatabase=Ei suutnud ühenduda andmebaasiga "%s". ErrorDatabaseVersionTooLow=Andmebaasi versioon (%s) on liiga vana. Vaja on versiooni %s või kõrgemat. -ErrorPHPVersionTooLow=PHP versioon on liiga vana. Vaja on versiooni %s. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Connection to server successful but database '%s' not found. ErrorDatabaseAlreadyExists=Andmebaas '%s " on juba olemas. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=If the database does not exist, go back and check option "Create database". IfDatabaseExistsGoBackAndCheckCreate=Kui andmebaas on juba olemas, mine tagasi ja võta märge "Loo andmebaas" maha. WarningBrowserTooOld=Version of browser is too old. Upgrading your browser to a recent version of Firefox, Chrome or Opera is highly recommended. diff --git a/htdocs/langs/et_EE/members.lang b/htdocs/langs/et_EE/members.lang index d9d8a787afd..67ef9471cf9 100644 --- a/htdocs/langs/et_EE/members.lang +++ b/htdocs/langs/et_EE/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=End date of membership EndSubscription=End of membership SubscriptionId=Contribution ID WithoutSubscription=Without contribution -MemberId=Liikme ID +MemberId=Member Id +MemberRef=Member Ref NewMember=Uus liige MemberType=Liikme tüüp MemberTypeId=Liikmetüübi ID @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Member type can not be deleted NewSubscription=Uus annetus NewSubscriptionDesc=See vorm võimaldab ühenduse liikmena registreerida liikmemaksu. Oma liikmemaksu värskendamiseks (kui oled juba liige) võta selle vormi kasutamise asemel ühendust sihtasutuse juhatusega e-posti aadressil %s . Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Kestus +GetMembershipButtonLabel=Get membership Subscriptions=Contributions SubscriptionLate=Hilinenud SubscriptionNotReceived=Contribution never received @@ -135,7 +142,7 @@ CardContent=Sinu liikmekaardi sisu # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=We want to let you know that your membership request was received.

ThisIsContentOfYourMembershipWasValidated=We want to let you know that your membership was validated with the following information:

-ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=We want to let you know that your subscription is about to expire or has already expired (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). We hope you will renew it.

ThisIsContentOfYourCard=This is a summary of the information we have about you. Please contact us if anything is incorrect.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Subject of the notification email received in case of auto-inscription of a guest @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=Käive (ettevõttel) või eelarve maht (ühendusel) DefaultAmount=Default amount of contribution -CanEditAmount=Visitor can choose/edit amount of its contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Hüppa integreeritud online-makse lehele ByProperties=By nature MembersStatisticsByProperties=Members statistics by nature @@ -218,3 +226,5 @@ XExternalUserCreated=%s external user(s) created ForceMemberNature=Force member nature (Individual or Corporation) CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/et_EE/stocks.lang b/htdocs/langs/et_EE/stocks.lang index 8de88ac3c69..1082daa52af 100644 --- a/htdocs/langs/et_EE/stocks.lang +++ b/htdocs/langs/et_EE/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Stock limit for alert and desired optimal stock cor ProductStockWarehouseUpdated=Stock limit for alert and desired optimal stock correctly updated ProductStockWarehouseDeleted=Stock limit for alert and desired optimal stock correctly deleted AddNewProductStockWarehouse=Set new limit for alert and desired optimal stock -AddStockLocationLine=Decrease quantity then click to add another warehouse for this product +AddStockLocationLine=Decrease quantity then click to split the line InventoryDate=Inventory date Inventories=Inventories NewInventory=New inventory @@ -254,7 +254,7 @@ ReOpen=Reopen ConfirmFinish=Do you confirm the closing of the inventory ? This will generate all stock movements to update your stock to the real qty you entered into the inventory. ObjectNotFound=%s not found MakeMovementsAndClose=Generate movements and close -AutofillWithExpected=Replace real quantity with expected quantity +AutofillWithExpected=Fill real quantity with expected quantity ShowAllBatchByDefault=By default, show batch details on product "stock" tab CollapseBatchDetailHelp=You can set batch detail default display in stocks module configuration ErrorWrongBarcodemode=Unknown Barcode mode @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Product with barcode does not exist WarehouseId=Warehouse ID WarehouseRef=Warehouse Ref SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ToStart=Alusta InventoryStartedShort=Alustatud ErrorOnElementsInventory=Operation canceled for the following reason: ErrorCantFindCodeInInventory=Can't find the following code in inventory QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requested barcode. You can close the Scanner tool. StockChangeDisabled=Change on stock disabled NoWarehouseDefinedForTerminal=No warehouse defined for terminal +ClearQtys=Clear all quantities +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=Seaded +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/eu_ES/holiday.lang b/htdocs/langs/eu_ES/holiday.lang index 180e39ed54a..f0973762c1a 100644 --- a/htdocs/langs/eu_ES/holiday.lang +++ b/htdocs/langs/eu_ES/holiday.lang @@ -4,6 +4,7 @@ Holidays=Leave CPTitreMenu=Leave MenuReportMonth=Monthly statement MenuAddCP=New leave request +MenuCollectiveAddCP=New collective leave request NotActiveModCP=You must enable the module Leave to view this page. AddCP=Make a leave request DateDebCP=Start date @@ -79,6 +80,8 @@ MotifCP=Reason UserCP=Erabiltzailea ErrorAddEventToUserCP=An error occurred while adding the exceptional leave. AddEventToUserOkCP=The addition of the exceptional leave has been completed. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=View change logs LogCP=Log of all updates made to "Balance of Leave" ActionByCP=Updated by @@ -86,6 +89,13 @@ UserUpdateCP=Updated for PrevSoldeCP=Previous Balance NewSoldeCP=New Balance alreadyCPexist=A leave request has already been done on this period. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Taldeak +users=Erabiltzaileak +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Beginning day of leave request LastDayOfHoliday=Ending day of leave request BoxTitleLastLeaveRequests=Latest %s modified leave requests diff --git a/htdocs/langs/fa_IR/holiday.lang b/htdocs/langs/fa_IR/holiday.lang index 823b4377048..70d3bb05024 100644 --- a/htdocs/langs/fa_IR/holiday.lang +++ b/htdocs/langs/fa_IR/holiday.lang @@ -4,6 +4,7 @@ Holidays=مرخصی CPTitreMenu=مرخصی MenuReportMonth=گزارش ماهان MenuAddCP=درخواست مرخصی جدید +MenuCollectiveAddCP=New collective leave request NotActiveModCP=شما باید واحد مرخصی را فعال کنید تا این صفحه را ببینید. AddCP=ایجاد یک درخواست مرخصی DateDebCP=تاریخ شروع @@ -79,6 +80,8 @@ MotifCP=دلیل UserCP=کاربر ErrorAddEventToUserCP=یک خطا در هنگام افزودن یک درخواست استثنائی رخ داد. AddEventToUserOkCP=افزودن مرخصی استثنائی کاملا انجام شد. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=نمایش گزارش تغییرات LogCP=Log of all updates made to "Balance of Leave" ActionByCP=Updated by @@ -86,6 +89,13 @@ UserUpdateCP=Updated for PrevSoldeCP=تعادل قبلی NewSoldeCP=تعادل جدید alreadyCPexist=یک درخواست مرخصی قبلا در همین بازه انجام شده است +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=گروه‌ها +users=کاربر +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Beginning day of leave request LastDayOfHoliday=Ending day of leave request BoxTitleLastLeaveRequests=آخرین %s درخواست مرخصی تغییریافته diff --git a/htdocs/langs/fa_IR/hrm.lang b/htdocs/langs/fa_IR/hrm.lang index ff72d85abc5..b282799ddc5 100644 --- a/htdocs/langs/fa_IR/hrm.lang +++ b/htdocs/langs/fa_IR/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=باز‌کردن بنگاه CloseEtablishment=بستن بنگاه # Dictionary DictionaryPublicHolidays=Leave - Public holidays -DictionaryDepartment=مدیریت منابع انسانی - فهرست بخش‌ها +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM - Job positions # Module Employees=کارمندان @@ -20,13 +20,14 @@ Employee=کارمند NewEmployee=کارمند جدید ListOfEmployees=List of employees HrmSetup=برپاسازی واحد مدیریت منابع انسانی -HRM_MAXRANK=Maximum rank for a skill +SkillsManagement=Skills management +HRM_MAXRANK=Maximum number of levels to rank a skill HRM_DEFAULT_SKILL_DESCRIPTION=Default description of ranks when skill is created deplacement=Shift DateEval=Evaluation date JobCard=Job card -Job=وظیفه -Jobs=Jobs +JobPosition=وظیفه +JobsPosition=Jobs NewSkill=New Skill SkillType=Skill type Skilldets=List of ranks for this skill @@ -47,9 +48,8 @@ ConfirmValidateEvaluation=Are you sure you want to validate this evaluation with EvaluationCard=Evaluation card RequiredRank=Required rank for this job EmployeeRank=Employee rank for this skill -Position=سمت -Positions=Positions -PositionCard=Position card +EmployeePosition=Employee position +EmployeePositions=Employee positions EmployeesInThisPosition=Employees in this position group1ToCompare=Usergroup to analyze group2ToCompare=Second usergroup for comparison @@ -70,12 +70,22 @@ RequiredSkills=Required skills for this job UserRank=User Rank SkillList=Skill list SaveRank=Save rank -knowHow=Know how -HowToBe=How to be -knowledge=Knowledge +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=Abandonment comment DateLastEval=Date last evaluation NoEval=No evaluation done for this employee HowManyUserWithThisMaxNote=Number of users with this rank HighestRank=Highest rank SkillComparison=Skill comparison +ActionsOnJob=Events on this job +VacantPosition=job vacancy +VacantCheckboxHelper=Checking this option will show unfilled positions (job vacancy) +SaveAddSkill = Skill(s) added +SaveLevelSkill = Skill(s) level saved +DeleteSkill = Skill removed +SkillsExtraFields=Attributs supplémentaires (Compétences) +JobsExtraFields=Attributs supplémentaires (Emplois) +EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/fa_IR/install.lang b/htdocs/langs/fa_IR/install.lang index c5ec977fd63..9418dc5ba06 100644 --- a/htdocs/langs/fa_IR/install.lang +++ b/htdocs/langs/fa_IR/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=فایل پیکربندی %s قابل نوشتن ن ConfFileIsWritable=فایل پیکربندی %s قابل نوشتن است ConfFileMustBeAFileNotADir=فایل پیکربندی %sباید یک فایل باشد، نه یک پوشه. ConfFileReload=بارگذاری مجدد مقادیر از فایل پیکربندی. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=این PHP از قابلیت GET و POST متغیرها پشتیبانی می‌کند. PHPSupportPOSTGETKo=ممکن است برپاسازی PHP شما از قابلیت POST و یا GET متغیرها پشتیبانی نمی‌کند. در php.ini مقدار variables_order را بررسی کنید. PHPSupportSessions=این PHP از قابلیت نشست‌ پشتیبانی می‌کند. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=ممکن است شما یک مقدار اشتباه ErrorFailedToCreateDatabase=امکان ساخت پایگاه‌داده '%s' وجود نداشت. ErrorFailedToConnectToDatabase=امکان اتصال به پایگاه‌داده '%s' وجود نداشت. ErrorDatabaseVersionTooLow=نسخۀ پایگاه داده (%s) بسیار قدیمی است. برای کار نسخۀ %s یا بالاتر احتیاج است -ErrorPHPVersionTooLow=نسخۀ PHP بسیار قدیمی است. برای کار نسخۀ %s نیاز است. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=اتصال به سرویس‌دهنده با موفقیت انجام شد اما پایگاه داده '%s'  پیدا نشد. ErrorDatabaseAlreadyExists=پایگاه دادۀ '%s' از قبل وجود دارد +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=در صورتی که پایگاه داده وجود نداشته باشد، به عقب برگشته و گزینۀ "ساخت پایگاه داده" را کلیک نمائید. IfDatabaseExistsGoBackAndCheckCreate=در صورتی که پایگاه داده از قبل وجود داشته، به عقب بازگشته و گزینۀ "ساخت پایگاه داده" را از حالت تائید بردارید. WarningBrowserTooOld=نسخۀ مرورگر بسیار قدیمی است، ارتقای مرورگر به نسخه‌های اخیر فایرفاکس، کروم یا اپرا به شدت پیشنهاد می‌شود diff --git a/htdocs/langs/fa_IR/main.lang b/htdocs/langs/fa_IR/main.lang index 989faeb7c9f..9e142144bba 100644 --- a/htdocs/langs/fa_IR/main.lang +++ b/htdocs/langs/fa_IR/main.lang @@ -244,6 +244,7 @@ Designation=توضیحات DescriptionOfLine=توضیحات سط DateOfLine=تاریخ سطر DurationOfLine=مدت‌زمان سطر +ParentLine=Parent line ID Model=قالب سن DefaultModel=قابل پیش‌فرض برای سن Action=رویداد @@ -344,7 +345,7 @@ KiloBytes=کیلوبایت MegaBytes=مگابایت GigaBytes=گیگابایت TeraBytes=ترابایت -UserAuthor=Ceated by +UserAuthor=ساخته‌شده توسط UserModif=Updated by b=ب. Kb=کیلوبایت @@ -517,6 +518,7 @@ or=یا Other=دیگر Others=دیگران OtherInformations=سایر اطلاعات +Workflow=گردش‌کار Quantity=تعداد Qty=تعداد ChangedBy=تغییر توسط @@ -619,6 +621,7 @@ MonthVeryShort11=N MonthVeryShort12=D AttachedFiles=اسناد و فایل‌های پیوست شده JoinMainDoc=ملحق شدن سند اصلی +JoinMainDocOrLastGenerated=Send the main document or the last generated one if not found DateFormatYYYYMM=YYYY-MM DateFormatYYYYMMDD=YYYY-MM-DD DateFormatYYYYMMDDHHMM=YYYY-MM-DD HH: SS @@ -709,6 +712,7 @@ FeatureDisabled=این قابلیت غیرفعال است MoveBox=جابجا کردن وسیله Offered=پیشنهادشده NotEnoughPermissions=شما مجاز به انجام این کار نیستید +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=نام نشست Method=روش Receive=دریافت @@ -798,6 +802,7 @@ URLPhoto=نشانی تصویر/نماد SetLinkToAnotherThirdParty=پیوند به شخص‌سوم دیگر LinkTo=پیوند به LinkToProposal=پیوند به پیشنهاد +LinkToExpedition= Link to expedition LinkToOrder=پیوند به سفارش LinkToInvoice=پیوند به صورت‌حساب LinkToTemplateInvoice=پیوند به قالب صورت‌حساب @@ -1164,3 +1169,14 @@ NotClosedYet=Not yet closed ClearSignature=Reset signature CanceledHidden=Canceled hidden CanceledShown=Canceled shown +Terminate=از بین بردن +Terminated=Terminated +AddLineOnPosition=Add line on position (at the end if empty) +ConfirmAllocateCommercial=Assign sales representative confirmation +ConfirmAllocateCommercialQuestion=Are you sure you want to assign the %s selected record(s)? +CommercialsAffected=Sales representatives affected +CommercialAffected=Sales representative affected +YourMessage=Your message +YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. +UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/fa_IR/members.lang b/htdocs/langs/fa_IR/members.lang index 1cc3c0fd56f..f8d9557cb14 100644 --- a/htdocs/langs/fa_IR/members.lang +++ b/htdocs/langs/fa_IR/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=End date of membership EndSubscription=End of membership SubscriptionId=Contribution ID WithoutSubscription=Without contribution -MemberId=نام کاربری +MemberId=Member Id +MemberRef=Member Ref NewMember=عضو جدید MemberType=نوع کاربران MemberTypeId=نوع شناسه عضو @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Member type can not be deleted NewSubscription=سهم های جدید NewSubscriptionDesc=این فرم به شما قابلیت ضبط اشتراک خود را به عنوان یک عضو جدید از پایه و اساس. اگر می خواهید به تمدید اشتراک خود را (اگر در حال حاضر عضو)، لطفا به جای تماس با هیئت مدیره بنیاد از طریق ایمیل٪ است. Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=مدت‌زمان +GetMembershipButtonLabel=Get membership Subscriptions=Contributions SubscriptionLate=دیر SubscriptionNotReceived=Contribution never received @@ -135,7 +142,7 @@ CardContent=محتوا از کارت عضو شما # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=We want to let you know that your membership request was received.

ThisIsContentOfYourMembershipWasValidated=We want to let you know that your membership was validated with the following information:

-ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=We want to let you know that your subscription is about to expire or has already expired (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). We hope you will renew it.

ThisIsContentOfYourCard=This is a summary of the information we have about you. Please contact us if anything is incorrect.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Subject of the notification email received in case of auto-inscription of a guest @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=گردش مالی (برای یک شرکت) و یا بودجه (برای پایه) DefaultAmount=Default amount of contribution -CanEditAmount=Visitor can choose/edit amount of its contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=پرش در یکپارچه صفحه پرداخت آنلاین ByProperties=By nature MembersStatisticsByProperties=Members statistics by nature @@ -218,3 +226,5 @@ XExternalUserCreated=%s external user(s) created ForceMemberNature=Force member nature (Individual or Corporation) CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/fa_IR/projects.lang b/htdocs/langs/fa_IR/projects.lang index d42d986d8da..ef9e87b4ab1 100644 --- a/htdocs/langs/fa_IR/projects.lang +++ b/htdocs/langs/fa_IR/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=زمان صرف شدۀ صورت‌حساب شده TimeSpentForIntervention=زمان صرف شده TimeSpentForInvoice=زمان صرف شده OneLinePerUser=هر سطر یک کاربر -ServiceToUseOnLines=خدمات برای استفاده بر سطور +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=صورت‌حساب %s بر اساس زمان صرف شده روی طرح تولید شد InterventionGeneratedFromTimeSpent=Intervention %s has been generated from time spent on project ProjectBillTimeDescription=Check if you enter timesheet on tasks of project AND you plan to generate invoice(s) from the timesheet to bill the customer of the project (do not check if you plan to create invoice that is not based on entered timesheets). Note: To generate invoice, go on tab 'Time spent' of the project and select lines to include. @@ -294,3 +294,4 @@ EnablePublicLeadForm=Enable the public form for contact NewLeadbyWeb=Your message or request has been recorded. We will answer or contact your soon. NewLeadForm=New contact form LeadFromPublicForm=Online lead from public form +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/fa_IR/stocks.lang b/htdocs/langs/fa_IR/stocks.lang index b6cffc97b0e..6d40fbcb7df 100644 --- a/htdocs/langs/fa_IR/stocks.lang +++ b/htdocs/langs/fa_IR/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=محدودیت موجودی برای هشدار و ProductStockWarehouseUpdated=محدودیت موجودی برای هشدار و محدودیت مطلوب به دقت روز‌آمد شد ProductStockWarehouseDeleted=محدودیت موجودی برای هشدار و محدودیت مطلوب به دقت حذف شد AddNewProductStockWarehouse=تعیین یک حد جدید موجودی و موجودی مطلوب برای هشدار -AddStockLocationLine=تعداد را کاهش داده و سپس برای ایجاد یک انبار جدید برای این محصول کلیک نمائید +AddStockLocationLine=Decrease quantity then click to split the line InventoryDate=تاریخ فهرست‌موجودی‌کالا Inventories=فهرست‌های‌موجودی NewInventory=فهرست‌موجودی جدید @@ -254,7 +254,7 @@ ReOpen=Reopen ConfirmFinish=Do you confirm the closing of the inventory ? This will generate all stock movements to update your stock to the real qty you entered into the inventory. ObjectNotFound=%s not found MakeMovementsAndClose=Generate movements and close -AutofillWithExpected=Replace real quantity with expected quantity +AutofillWithExpected=Fill real quantity with expected quantity ShowAllBatchByDefault=By default, show batch details on product "stock" tab CollapseBatchDetailHelp=You can set batch detail default display in stocks module configuration ErrorWrongBarcodemode=Unknown Barcode mode @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Product with barcode does not exist WarehouseId=Warehouse ID WarehouseRef=Warehouse Ref SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ToStart=شروع InventoryStartedShort=آغاز شده ErrorOnElementsInventory=Operation canceled for the following reason: ErrorCantFindCodeInInventory=Can't find the following code in inventory QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requested barcode. You can close the Scanner tool. StockChangeDisabled=Change on stock disabled NoWarehouseDefinedForTerminal=No warehouse defined for terminal +ClearQtys=Clear all quantities +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=تنظیمات +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/fi_FI/hrm.lang b/htdocs/langs/fi_FI/hrm.lang index ea0084467a7..bfd23860d29 100644 --- a/htdocs/langs/fi_FI/hrm.lang +++ b/htdocs/langs/fi_FI/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Avaa laitos CloseEtablishment=Sulje laitos # Dictionary DictionaryPublicHolidays=Leave - Public holidays -DictionaryDepartment=HRM - Osastolista +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM - Job positions # Module Employees=Työntekijät @@ -20,13 +20,14 @@ Employee=Työntekijä NewEmployee=Uusi työntekijä ListOfEmployees=List of employees HrmSetup=Henkilöstöhallinta moduulin asetukset -HRM_MAXRANK=Maximum rank for a skill +SkillsManagement=Skills management +HRM_MAXRANK=Maximum number of levels to rank a skill HRM_DEFAULT_SKILL_DESCRIPTION=Default description of ranks when skill is created deplacement=Shift DateEval=Evaluation date JobCard=Job card -Job=Job -Jobs=Jobs +JobPosition=Job +JobsPosition=Jobs NewSkill=New Skill SkillType=Skill type Skilldets=List of ranks for this skill @@ -47,9 +48,8 @@ ConfirmValidateEvaluation=Are you sure you want to validate this evaluation with EvaluationCard=Evaluation card RequiredRank=Required rank for this job EmployeeRank=Employee rank for this skill -Position=Sijainti -Positions=Positions -PositionCard=Position card +EmployeePosition=Employee position +EmployeePositions=Employee positions EmployeesInThisPosition=Employees in this position group1ToCompare=Usergroup to analyze group2ToCompare=Second usergroup for comparison @@ -70,12 +70,22 @@ RequiredSkills=Required skills for this job UserRank=User Rank SkillList=Skill list SaveRank=Save rank -knowHow=Know how -HowToBe=How to be -knowledge=Knowledge +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=Abandonment comment DateLastEval=Date last evaluation NoEval=No evaluation done for this employee HowManyUserWithThisMaxNote=Number of users with this rank HighestRank=Highest rank SkillComparison=Skill comparison +ActionsOnJob=Events on this job +VacantPosition=job vacancy +VacantCheckboxHelper=Checking this option will show unfilled positions (job vacancy) +SaveAddSkill = Skill(s) added +SaveLevelSkill = Skill(s) level saved +DeleteSkill = Skill removed +SkillsExtraFields=Attributs supplémentaires (Compétences) +JobsExtraFields=Attributs supplémentaires (Emplois) +EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/fi_FI/install.lang b/htdocs/langs/fi_FI/install.lang index 8c282db2d83..b04fead3436 100644 --- a/htdocs/langs/fi_FI/install.lang +++ b/htdocs/langs/fi_FI/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=Configuration file %s is not writable. Check permis ConfFileIsWritable=Configuration file %s on kirjoitettavissa. ConfFileMustBeAFileNotADir=Configuration file %s must be a file, not a directory. ConfFileReload=Reloading parameters from configuration file. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=Tämä PHP tukee muuttujat POST ja GET. PHPSupportPOSTGETKo=It's possible your PHP setup does not support variables POST and/or GET. Check the parameter variables_order in php.ini. PHPSupportSessions=Tämä PHP tukee istuntoja. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Olet ehkä kirjoittanut väärän arvon parametri ' ErrorFailedToCreateDatabase=Luominen epäonnistui tietokanta ' %s'. ErrorFailedToConnectToDatabase=Epäonnistui muodostaa tietokanta ' %s'. ErrorDatabaseVersionTooLow=Tietokannan versio (%s) on liian vanha. Versio %s tai korkeampi on tarpeen. -ErrorPHPVersionTooLow=PHP versio liian vanha. Versio %s on tarpeen. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Connection to server successful but database '%s' not found. ErrorDatabaseAlreadyExists=Database ' %s' on jo olemassa. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=If the database does not exist, go back and check option "Create database". IfDatabaseExistsGoBackAndCheckCreate=Jos tietokanta on jo olemassa, mene takaisin ja poista "Luo tietokanta" vaihtoehto. WarningBrowserTooOld=Version of browser is too old. Upgrading your browser to a recent version of Firefox, Chrome or Opera is highly recommended. diff --git a/htdocs/langs/fi_FI/main.lang b/htdocs/langs/fi_FI/main.lang index 8e4a8be635c..2665e5e68c3 100644 --- a/htdocs/langs/fi_FI/main.lang +++ b/htdocs/langs/fi_FI/main.lang @@ -244,6 +244,7 @@ Designation=Kuvaus DescriptionOfLine=Kuvaus linja DateOfLine=Date of line DurationOfLine=Duration of line +ParentLine=Parent line ID Model=Doc-pohja DefaultModel=Oletus doc-pohja Action=Tapahtuma @@ -344,7 +345,7 @@ KiloBytes=Kilotavua MegaBytes=Megatavua GigaBytes=Gigatavua TeraBytes=Teratavua -UserAuthor=Ceated by +UserAuthor=Luonut UserModif=Updated by b=b. Kb=Kb @@ -517,6 +518,7 @@ or=tai Other=Muu Others=Muut OtherInformations=Other information +Workflow=Työtehtävät Quantity=Määrä Qty=Kpl ChangedBy=Muuttanut @@ -619,6 +621,7 @@ MonthVeryShort11=Mar MonthVeryShort12=J AttachedFiles=Liitetyt tiedostot ja asiakirjat JoinMainDoc=Join main document +JoinMainDocOrLastGenerated=Send the main document or the last generated one if not found DateFormatYYYYMM=VVVV-KK DateFormatYYYYMMDD=VVVV-KK-PP DateFormatYYYYMMDDHHMM=YYYY-KK-PP HH: SS @@ -709,6 +712,7 @@ FeatureDisabled=Ominaisuus pois päältä MoveBox=Siirrä widget Offered=Tarjottu NotEnoughPermissions=Sinulla ei ole lupaa tätä toimintaa varten +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=Istunnon nimi Method=Menetelmä Receive=Vastaanota @@ -798,6 +802,7 @@ URLPhoto=Kuvan tai logon url SetLinkToAnotherThirdParty=Linkki toiseen sidosryhmään LinkTo=Linkki LinkToProposal=Linkki Tarjoukseen +LinkToExpedition= Link to expedition LinkToOrder=Linkki Tilauksiin LinkToInvoice=Linkki Laskuihin LinkToTemplateInvoice=Linkki mallilaskuun @@ -1164,3 +1169,14 @@ NotClosedYet=Not yet closed ClearSignature=Reset signature CanceledHidden=Canceled hidden CanceledShown=Canceled shown +Terminate=Lopeta +Terminated=Terminated +AddLineOnPosition=Add line on position (at the end if empty) +ConfirmAllocateCommercial=Assign sales representative confirmation +ConfirmAllocateCommercialQuestion=Are you sure you want to assign the %s selected record(s)? +CommercialsAffected=Sales representatives affected +CommercialAffected=Sales representative affected +YourMessage=Your message +YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. +UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/fi_FI/members.lang b/htdocs/langs/fi_FI/members.lang index fdd6297dc74..986adfc0be9 100644 --- a/htdocs/langs/fi_FI/members.lang +++ b/htdocs/langs/fi_FI/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=End date of membership EndSubscription=End of membership SubscriptionId=Contribution ID WithoutSubscription=Without contribution -MemberId=Jäsen id +MemberId=Member Id +MemberRef=Member Ref NewMember=Uusi jäsen MemberType=Jäsen tyyppi MemberTypeId=Jäsen tyyppi id @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Member type can not be deleted NewSubscription=Uusi rahoitusosuus NewSubscriptionDesc=Tämän lomakkeen avulla voit tallentaa tilauksen uutena jäsenenä säätiön. Jos haluat uudistaa tilauksen (jos on jo jäsen), ota yhteyttä säätiön hallituksen sijasta sähköpostitse %s. Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Kesto +GetMembershipButtonLabel=Get membership Subscriptions=Contributions SubscriptionLate=Myöhässä SubscriptionNotReceived=Contribution never received @@ -135,7 +142,7 @@ CardContent=Sisältö jäsennimesi kortti # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=We want to let you know that your membership request was received.

ThisIsContentOfYourMembershipWasValidated=We want to let you know that your membership was validated with the following information:

-ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=We want to let you know that your subscription is about to expire or has already expired (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). We hope you will renew it.

ThisIsContentOfYourCard=This is a summary of the information we have about you. Please contact us if anything is incorrect.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Subject of the notification email received in case of auto-inscription of a guest @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=Liikevaihto (yritykselle) tai budjetti (ja säätiö) DefaultAmount=Default amount of contribution -CanEditAmount=Visitor can choose/edit amount of its contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Hyppää integroitu verkossa maksusivulla ByProperties=By nature MembersStatisticsByProperties=Members statistics by nature @@ -218,3 +226,5 @@ XExternalUserCreated=%s external user(s) created ForceMemberNature=Force member nature (Individual or Corporation) CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/fi_FI/stocks.lang b/htdocs/langs/fi_FI/stocks.lang index e19a9593166..b82ec5a8304 100644 --- a/htdocs/langs/fi_FI/stocks.lang +++ b/htdocs/langs/fi_FI/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Stock limit for alert and desired optimal stock cor ProductStockWarehouseUpdated=Stock limit for alert and desired optimal stock correctly updated ProductStockWarehouseDeleted=Stock limit for alert and desired optimal stock correctly deleted AddNewProductStockWarehouse=Set new limit for alert and desired optimal stock -AddStockLocationLine=Decrease quantity then click to add another warehouse for this product +AddStockLocationLine=Decrease quantity then click to split the line InventoryDate=Inventory date Inventories=Inventories NewInventory=New inventory @@ -254,7 +254,7 @@ ReOpen=Uudelleenavaa ConfirmFinish=Do you confirm the closing of the inventory ? This will generate all stock movements to update your stock to the real qty you entered into the inventory. ObjectNotFound=%s not found MakeMovementsAndClose=Generate movements and close -AutofillWithExpected=Replace real quantity with expected quantity +AutofillWithExpected=Fill real quantity with expected quantity ShowAllBatchByDefault=By default, show batch details on product "stock" tab CollapseBatchDetailHelp=You can set batch detail default display in stocks module configuration ErrorWrongBarcodemode=Unknown Barcode mode @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Product with barcode does not exist WarehouseId=Warehouse ID WarehouseRef=Warehouse Ref SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ToStart=Alku InventoryStartedShort=Aloitettu ErrorOnElementsInventory=Operation canceled for the following reason: ErrorCantFindCodeInInventory=Can't find the following code in inventory QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requested barcode. You can close the Scanner tool. StockChangeDisabled=Change on stock disabled NoWarehouseDefinedForTerminal=No warehouse defined for terminal +ClearQtys=Clear all quantities +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=Asetukset +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/fr_CA/hrm.lang b/htdocs/langs/fr_CA/hrm.lang index 84a5e513279..82ec6d751fc 100644 --- a/htdocs/langs/fr_CA/hrm.lang +++ b/htdocs/langs/fr_CA/hrm.lang @@ -4,7 +4,7 @@ Establishments=Établissements Establishment=Établissement OpenEtablishment=Établissement ouvert CloseEtablishment=Établissement proche -DictionaryDepartment=HRM - liste du département Employees=Employés Employee=Employé NewEmployee=Nouvel employé +HrmSetup=Configuration du module de GRH diff --git a/htdocs/langs/fr_CA/install.lang b/htdocs/langs/fr_CA/install.lang index 98fcea448a1..8d8237ae1a4 100644 --- a/htdocs/langs/fr_CA/install.lang +++ b/htdocs/langs/fr_CA/install.lang @@ -1,4 +1,5 @@ # Dolibarr language file - Source file is en_US - install +PHPSupportPOSTGETOk=Ce PHP prend bien en charge les variables POST et GET. AdminLoginCreatedSuccessfuly=Connexion administrateur Dolibarr '%s' créé avec succès. FailedToCreateAdminLogin=Impossible de créer un compte administrateur Dolibarr. MigrationContractsIncoherentCreationDateUpdateSuccess=Correction mauvaise valeur de la date de création du contrat effectuée avec succès diff --git a/htdocs/langs/fr_CA/members.lang b/htdocs/langs/fr_CA/members.lang index 291f2a8737d..a07f2e193ce 100644 --- a/htdocs/langs/fr_CA/members.lang +++ b/htdocs/langs/fr_CA/members.lang @@ -21,7 +21,6 @@ MembersListQualified=Liste des membres qualifiés MenuMembersToValidate=Ébauche de membres MenuMembersValidated=Membres validés MenuMembersResiliated=Membres résiliés -MemberId=ID membres NewMember=Nouveau membre MemberType=Type de membre MemberTypeId=Id. De type membre diff --git a/htdocs/langs/fr_CA/projects.lang b/htdocs/langs/fr_CA/projects.lang index 1a6534f6492..db0b3e29f94 100644 --- a/htdocs/langs/fr_CA/projects.lang +++ b/htdocs/langs/fr_CA/projects.lang @@ -11,7 +11,6 @@ ProjectsPublicTaskDesc=Cette vue présente tous les projets et tâches que vous ProjectsDesc=Cette vue présente tous les projets (vos autorisations d'utilisateur vous permettent d'afficher tout). TasksOnProjectsDesc=Cette vue présente toutes les tâches sur tous les projets (vos autorisations d'utilisateur vous permettent d'afficher tout). OnlyOpenedProject=Seuls les projets ouverts sont visibles (les projets en ébauche ou l'état fermé ne sont pas visibles). -ClosedProjectsAreHidden=Les projets fermés ne sont pas visibles. TasksPublicDesc=Cette vue présente tous les projets et tâches que vous pouvez lire. TasksDesc=Cette vue présente tous les projets et les tâches (vos autorisations d'utilisateur vous accordent l'autorisation de voir tout). ProjectCategories=Étiquettes / catégories de projet diff --git a/htdocs/langs/fr_CA/stocks.lang b/htdocs/langs/fr_CA/stocks.lang index 0d48acac911..39679b84055 100644 --- a/htdocs/langs/fr_CA/stocks.lang +++ b/htdocs/langs/fr_CA/stocks.lang @@ -69,7 +69,6 @@ ProductStockWarehouseCreated=Limite de stock pour l'alerte et le stock optimal s ProductStockWarehouseUpdated=La limite de stock pour l'alerte et le stock optimal souhaité est correctement mis à jour ProductStockWarehouseDeleted=La limite de stock pour l'alerte et le stock optimal souhaité sont correctement supprimés AddNewProductStockWarehouse=Définir une nouvelle limite pour l'alerte et le stock optimal souhaité -AddStockLocationLine=Diminuez la quantité, puis cliquez pour ajouter un autre entrepôt pour ce produit inventorySetup =Configuration de l'inventaire inventoryReadPermission=Voir les stocks inventoryWritePermission=Mise à jour des inventaires diff --git a/htdocs/langs/fr_FR/accountancy.lang b/htdocs/langs/fr_FR/accountancy.lang index 80454f73215..2d27228e89b 100644 --- a/htdocs/langs/fr_FR/accountancy.lang +++ b/htdocs/langs/fr_FR/accountancy.lang @@ -48,8 +48,9 @@ CountriesNotInEEC=Pays hors CEE CountriesInEECExceptMe=Pays de la CEE sauf %s CountriesExceptMe=Tous les pays sauf %s AccountantFiles=Exporter les documents sources -ExportAccountingSourceDocHelp=Avec cet outil, vous pouvez exporter les événements sources (liste en CSV et PDF) qui servent à générer votre comptabilité. +ExportAccountingSourceDocHelp=With this tool, you can search and export the source events that are used to generate your accountancy.
The exported ZIP file will contain the lists of requested items in CSV, as well as their attached files in their original format (PDF, ODT, DOCX...). ExportAccountingSourceDocHelp2=Pour exporter vos journaux, utilisez l'entrée de menu %s - %s. +ExportAccountingProjectHelp=Specify a project if you need an accounting report only for a specific project. Expense reports and loan payments are not included in project reports. VueByAccountAccounting=Vue par comptes comptables VueBySubAccountAccounting=Affichage par compte auxiliaire @@ -161,7 +162,7 @@ BANK_DISABLE_DIRECT_INPUT=Désactiver la saisie directe de transactions en banqu ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL=Activer l'export brouillon sur les journaux comptables ACCOUNTANCY_COMBO_FOR_AUX=Activer la liste déroulante pour les comptes auxiliaires (des lenteurs peuvent être rencontrées si vous avez de nombreux tiers) ACCOUNTING_DATE_START_BINDING=Définissez une date pour commencer la liaison et le transfert en comptabilité. En dessous de cette date, les transactions ne seront jamais transférées à la comptabilité. -ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=Choix de la période des factures pour le transfert en comptabilité +ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=On accountancy transfer, what is the period selected by default ACCOUNTING_SELL_JOURNAL=Journal des ventes ACCOUNTING_PURCHASE_JOURNAL=Journal des achats @@ -182,7 +183,7 @@ DONATION_ACCOUNTINGACCOUNT=Compte comptable pour l'enregistrement des dons ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=Compte comptable pour enregistrer les adhésions ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=Compte comptable par défaut pour les acomptes clients -UseAuxiliaryAccountOnCustomerDeposit=Utiliser des sous-comptes pour les lignes de dépôt des clients +UseAuxiliaryAccountOnCustomerDeposit=Store customer account as individual account in subsidiary ledger for lines of down payments (if disabled, individual account for down payment lines will remain empty) ACCOUNTING_PRODUCT_BUY_ACCOUNT=Compte comptable par défaut pour les produits achetés (utilisé si non défini dans la fiche produit) ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT=Compte comptable par défaut pour les produits achetés dans la CEE (utilisé si non défini dans la fiche produit) @@ -279,7 +280,7 @@ DescVentilExpenseReportMore=Si vous avez défini des comptes comptables au nivea DescVentilDoneExpenseReport=Consultez ici la liste des lignes des notes de frais et leur compte comptable Closure=Clôture annuelle -DescClosure=Consulter le nombre de mouvements par mois non validés et vérrouillés +DescClosure=Consulter le nombre de mouvements par mois pas encore validés / verrouillés OverviewOfMovementsNotValidated=Aperçu des mouvements non validés et verrouillés AllMovementsWereRecordedAsValidated=Tous les mouvements ont été enregistrés comme validés et ont été verrouillés NotAllMovementsCouldBeRecordedAsValidated=Certains mouvements n'ont pas pu être enregistrés comme validés et n'ont pas été verrouillés @@ -332,7 +333,7 @@ ACCOUNTING_DISABLE_BINDING_ON_EXPENSEREPORTS=Désactiver la liaison et le transf ## Export NotifiedExportDate=Marquer les lignes exportées comme Exportées (pour modifier une ligne, vous devrez supprimer toute la transaction et la retransférer en comptabilité) -NotifiedValidationDate=Validez et verrouillez les entrées exportées (même effet que la fonction "Fermeture", la modification et la suppression des lignes ne seront CERTAINEMENT pas possibles) +NotifiedValidationDate=Validate and Lock the exported entries (same effect than the "%s" feature, modification and deletion of the lines will DEFINITELY not be possible) DateValidationAndLock=Validation et verrouillage de la date ConfirmExportFile=Confirmation de la génération du fichier d'export comptable ? ExportDraftJournal=Exporter le journal brouillon @@ -424,9 +425,10 @@ Binded=Lignes liées ToBind=Lignes à lier UseMenuToSetBindindManualy=Lignes non encore liées, utilisez le menu %s pour effectuer la liaison manuellement. SorryThisModuleIsNotCompatibleWithTheExperimentalFeatureOfSituationInvoices=Désolé ce module n'est pas compatible avec la fonctionnalité expérimentale des factures de situation -AccountancyErrorMismatchLetterCode=Mismatch in reconcile code +AccountancyErrorMismatchLetterCode=Non-concordance dans le code de réconciliation AccountancyErrorMismatchBalanceAmount=Le solde (%s) n'est pas égal à 0 AccountancyErrorLetteringBookkeeping=Des erreurs sont survenues concernant les transactions : %s +ErrorAccountNumberAlreadyExists=The accounting number %s already exists ## Import ImportAccountingEntries=Écritures comptables diff --git a/htdocs/langs/fr_FR/admin.lang b/htdocs/langs/fr_FR/admin.lang index 7ac18213e1e..e35db8519ac 100644 --- a/htdocs/langs/fr_FR/admin.lang +++ b/htdocs/langs/fr_FR/admin.lang @@ -248,7 +248,7 @@ UsedOnlyWithTypeOption=Utilisé par certaines options de l'agenda uniquement Security=Sécurité Passwords=Mots de passe DoNotStoreClearPassword=Chiffrer les mots de passe stockés dans la base de données (PAS en texte brut). Il est fortement recommandé d'activer cette option. -MainDbPasswordFileConfEncrypted=Chiffrer le mot de passe de la base dans le fichier conf.php . Il est fortement recommandé d'activer cette option. +MainDbPasswordFileConfEncrypted=Chiffrer le mot de passe de la base dans le fichier conf.php. Il est fortement recommandé d'activer cette option. InstrucToEncodePass=Pour avoir le mot de passe de la base encodé dans le fichier de configuration conf.php, remplacer dans ce fichier la ligne
$dolibarr_main_db_pass="...";
par
$dolibarr_main_db_pass="crypted:%s"; InstrucToClearPass=Pour avoir le mot de passe de la base décodé (en clair) dans le fichier de configuration conf.php, remplacer dans ce fichier la ligne
$dolibarr_main_db_pass="crypted:...";
par
$dolibarr_main_db_pass="%s"; ProtectAndEncryptPdfFiles=Protection des PDF générés. Activation NON recommandée (rend inopérante la génération de PDF de masse) @@ -718,9 +718,9 @@ Permission34=Supprimer les produits Permission36=Voir/gérer les produits cachés Permission38=Exporter les produits Permission39=Ignorer le prix minimum -Permission41=Read projects and tasks (shared projects and projects of which I am a contact). -Permission42=Create/modify projects (shared projects and projects of which I am a contact). Can also assign users to projects and tasks -Permission44=Delete projects (shared projects and projects of which I am a contact) +Permission41=Lire les projets et les tâches (projets partagés et projets dont je suis un contact). +Permission42=Créer/modifier des projets (projets partagés et projets dont je suis un interlocuteur). Peut également affecter des utilisateurs à des projets et des tâches +Permission44=Supprimer des projets (projets partagés et projets dont je suis un contact) Permission45=Exporter les projets Permission61=Consulter les interventions Permission62=Créer/modifier les interventions @@ -766,10 +766,10 @@ Permission122=Créer/modifier les tiers (sociétés) liés à l'utilisateur Permission125=Supprimer les tiers (sociétés) liés à l'utilisateur Permission126=Exporter les tiers (sociétés) Permission130=Créer/modifier les informations de paiement des tiers -Permission141=Read all projects and tasks (as well as the private projects for which I am not a contact) -Permission142=Create/modify all projects and tasks (as well as the private projects for which I am not a contact) -Permission144=Delete all projects and tasks (as well as the private projects I am not a contact) -Permission145=Can enter time consumed, for me or my hierarchy, on assigned tasks (Timesheet) +Permission141=Lire tous les projets et tâches (ainsi que les projets privés pour lesquels je ne suis pas un contact) +Permission142=Créer/modifier tous les projets et tâches (ainsi que les projets privés pour lesquels je ne suis pas un contact) +Permission144=Supprimer tous les projets et tâches (ainsi que les projets privés dont je ne suis pas un contact) +Permission145=Peut saisir le temps consommé, pour moi ou ma hiérarchie, sur les tâches assignées (Timesheet) Permission146=Consulter les fournisseurs Permission147=Consulter les stats Permission151=Consulter les prélèvements @@ -1346,7 +1346,7 @@ TransKeyWithoutOriginalValue=Vous avez forcé une nouvelle traduction pour la cl TitleNumberOfActivatedModules=Modules activés TotalNumberOfActivatedModules=Modules activés : %s / %s YouMustEnableOneModule=Vous devez activer au moins une fonctionnalité -YouMustEnableTranslationOverwriteBefore=You must first enable translation overwriting to be allowed to replace a translation +YouMustEnableTranslationOverwriteBefore=Vous devez d'abord activer l'écrasement de la traduction pour être autorisé à remplacer une traduction ClassNotFoundIntoPathWarning=La classe %s n'a pas été trouvée dans le chemin PHP YesInSummer=Oui en été OnlyFollowingModulesAreOpenedToExternalUsers=Remarque, seuls les modules suivants sont ouverts aux utilisateurs externes (quelles qu'en soient les permissions de ces utilisateurs) et seulement si les permissions leur ont été données:
@@ -1936,7 +1936,7 @@ PressF5AfterChangingThis=Appuyez sur la touche CTRL+F5 ou videz le cache de votr NotSupportedByAllThemes=Fonctionne avec les thèmes natifs. Non garanti avec d'autres BackgroundColor=Couleur de fond TopMenuBackgroundColor=Couleur de fond pour le menu Haut -TopMenuDisableImages=Cacher les images du menu principal +TopMenuDisableImages=Icône ou texte dans le menu supérieur LeftMenuBackgroundColor=Couleur de fond pour le menu Gauche BackgroundTableTitleColor=Couleur de fond pour la ligne de titres des listes/tableaux BackgroundTableTitleTextColor=Couleur du texte pour la ligne de titre des tableaux @@ -1949,7 +1949,7 @@ EnterAnyCode=Ce champ contient une référence pour identifier l'enregistrement. Enter0or1=Saisir 0 ou 1  UnicodeCurrency=Saisissez ici entre accolades, la liste du numéro des octets qui représentent le symbole de la monnaie. Pour exemple: pour $, entrez [36] - pour le Real Brésilien R$ [82,36] - pour l'euro €, entrez [8364] ColorFormat=La couleur RVB au format HEX est, par exemple: FF0000 -PictoHelp=Icon name in format:
- image.png for an image file into the current theme directory
- image.png@module if file is into the directory /img/ of a module
- fa-xxx for a FontAwesome fa-xxx picto
- fonwtawesome_xxx_fa_color_size for a FontAwesome fa-xxx picto (with prefix, color and size set) +PictoHelp=Nom de l'icône au format :
- image.png pour un fichier image dans le répertoire du thème courant
- image.png@module si le fichier est dans le répertoire /img/ d'un module
- fa-xxx pour un picto FontAwesome fa-xxx
- fonwtawesome_xxx_fa_color_size pour un picto FontAwesome fa-xxx (avec préfixe, couleur et taille définis) PositionIntoComboList=Position de la ligne dans des listes déroulantes SellTaxRate=Taux de TVA RecuperableOnly=Oui pour une TVA "Non Perçue mais Récupérable" dédiée à certains pays comme la France. Gardez la valeur à "Non" dans tous les autres cas. @@ -2048,7 +2048,7 @@ COMPANY_AQUARIUM_CLEAN_REGEX=Filtre Regex pour nettoyer la valeur (COMPANY_AQUAR COMPANY_DIGITARIA_CLEAN_REGEX=Filtre de regex pour nettoyer la valeur (COMPANY_DIGITARIA_CLEAN_REGEX) COMPANY_DIGITARIA_UNIQUE_CODE=Doublons non autorisés GDPRContact=Responsable de la protection des données (DPO ou contact RGPD) -GDPRContactDesc=If you store personal data in your Information System, you can name the contact who is responsible for the General Data Protection Regulation here +GDPRContactDesc=Si vous stockez des données personnelles dans votre système d'information, vous pouvez nommer ici le contact responsable du règlement général sur la protection des données HelpOnTooltip=Texte d'aide à afficher dans l'info-bulle HelpOnTooltipDesc=Mettez du texte ou une clé de traduction ici pour que le texte apparaisse dans une info-bulle lorsque ce champ apparaît dans un formulaire YouCanDeleteFileOnServerWith=Vous pouvez supprimer ce fichier sur le serveur avec la ligne de commande:
%s @@ -2059,6 +2059,7 @@ VATIsUsedIsOff=Remarque: l'option d'utilisation de la taxe de vente ou de la TVA SwapSenderAndRecipientOnPDF=Inverser la position des adresses expéditeurs et destinataires sur les documents PDF FeatureSupportedOnTextFieldsOnly=Attention, fonctionnalité prise en charge sur les champs de texte et les listes déroulantes uniquement. De plus, un paramètre d'URL action=create ou action=edit doit être défini OU le nom de la page doit se terminer par 'new.php' pour déclencher cette fonctionnalité. EmailCollector=Collecteur de courrier électronique +EmailCollectors=Collecteurs d'e-mails EmailCollectorDescription=Ajoute un travail planifié et une page de configuration pour analyser régulièrement les boîtes aux lettres (à l'aide du protocole IMAP) et enregistrer les courriers électroniques reçus dans votre application, au bon endroit et/ou créer automatiquement certains enregistrements (comme des opportunités). NewEmailCollector=Nouveau collecteur d'email EMailHost=Hôte du serveur de messagerie IMAP @@ -2068,27 +2069,27 @@ EmailcollectorOperations=Opérations à effectuer par le collecteur EmailcollectorOperationsDesc=Les opérations sont exécutées de haut en bas MaxEmailCollectPerCollect=Nombre maximum d'emails collectés par collecte CollectNow=Collecter maintenant -ConfirmCloneEmailCollector=Are you sure you want to clone the Email collector %s? +ConfirmCloneEmailCollector=Voulez-vous vraiment cloner le collecteur d'e-mails %s ? DateLastCollectResult=Date de la dernière tentative de collecte DateLastcollectResultOk=Date de la dernière collecte réussie LastResult=Dernier résultat -EmailCollectorHideMailHeaders=Do not include the content of email header into the saved content of collected e-mails -EmailCollectorHideMailHeadersHelp=When enabled, e-mail headers are not added at the end of the email content that is saved as events. +EmailCollectorHideMailHeaders=Ne pas inclure le contenu de l'en-tête de l'e-mail dans le contenu enregistré des e-mails collectés +EmailCollectorHideMailHeadersHelp=Lorsque cette option est activée, les en-têtes d'e-mail ne sont pas ajoutés à la fin du contenu de l'e-mail enregistré en tant qu'événement de l'agenda. EmailCollectorConfirmCollectTitle=Confirmation de la collecte Email -EmailCollectorConfirmCollect=Do you want to run this collector now? -EmailCollectorExampleToCollectTicketRequestsDesc=Collect emails that match some rules and create automatically a ticket (Module Ticket must be enabled) with the email informations. You can use this collector if you provide some support by email, so your ticket request will be automatically generated. Activate also Collect_Responses to collect answers of your client directly on the ticket view (you must reply from Dolibarr). -EmailCollectorExampleToCollectTicketRequests=Example collecting the ticket request (first message only) -EmailCollectorExampleToCollectAnswersFromExternalEmailSoftwareDesc=Scan your mailbox "Sent" directory to find emails that was sent as an answer of another email directly from your email software and not from Dolibarr. If such an email is found, the event of answer is recorded into Dolibarr -EmailCollectorExampleToCollectAnswersFromExternalEmailSoftware=Example collecting e-mail answers sent from an external e-mail software -EmailCollectorExampleToCollectDolibarrAnswersDesc=Collect all emails that are an answer of an email sent from your application. An event (Module Agenda must be enabled) with the email response will be recorded at the good place. For example, if your send a commercial proposal, order, invoice or message for a ticket by email from the application, and your customer answers your email, the system will automatically catch the answer and add it into your ERP. -EmailCollectorExampleToCollectDolibarrAnswers=Example collecting all ingoing messages being answers to messages sent from Dolibarr' -EmailCollectorExampleToCollectLeadsDesc=Collect emails that match some rules and create automatically a lead (Module Project must be enabled) with the email informations. You can use this collector if you want to follow your lead using the module Project (1 lead = 1 project), so your leads will be automatically generated. If the collector Collect_Responses is also enabled, when you send an email from your leads, proposals or any other object, you may also see answers of your customers or partners directly on the application.
Note: With this initial example, the title of the lead is generated including the email. If the thirdparty can't be found in database (new customer), the lead will be attached to the thirdparty with ID 1. -EmailCollectorExampleToCollectLeads=Example collecting leads -EmailCollectorExampleToCollectJobCandidaturesDesc=Collect emails applying to job offers (Module Recruitment must be enabled). You can complete this collector if you want to automatically create a candidature for a job request. Note: With this initial example, the title of the candidature is generated including the email. -EmailCollectorExampleToCollectJobCandidatures=Example collecting job candidatures received by e-mail +EmailCollectorConfirmCollect=Voulez-vous exécuter ce collecteur maintenant ? +EmailCollectorExampleToCollectTicketRequestsDesc=Collectez les e-mails qui correspondent à certaines règles et créez automatiquement un ticket (Module Ticket doit être activé) avec les informations de l'e-mail. Vous pouvez utiliser ce collecteur si vous fournissez une assistance par e-mail, ainsi votre demande de ticket sera automatiquement générée. Activez également Collect_Responses pour collecter les réponses de votre client directement sur la vue du ticket (vous devez répondre depuis Dolibarr). +EmailCollectorExampleToCollectTicketRequests=Exemple de collecte de d'email pour ticket (premier message uniquement) +EmailCollectorExampleToCollectAnswersFromExternalEmailSoftwareDesc=Scannez le répertoire "Envoyés" de votre boîte mail pour retrouver les emails qui ont été envoyés en réponse à un autre email directement depuis votre logiciel de messagerie et non depuis Dolibarr. Si un tel email est trouvé, l'événement de réponse est enregistré dans Dolibarr +EmailCollectorExampleToCollectAnswersFromExternalEmailSoftware=Exemple de collecte de réponses par e-mail envoyées depuis un logiciel de messagerie externe +EmailCollectorExampleToCollectDolibarrAnswersDesc=Collectez tous les e-mails qui sont une réponse à un e-mail envoyé depuis votre application. Un événement (le module Agenda doit être activé) avec la réponse par e-mail sera enregistré au bon endroit. Par exemple, si vous envoyez une proposition commerciale, une commande, une facture ou un message pour un ticket par email depuis l'application, et que le destinataire répond à votre email, le système captera automatiquement la réponse et l'ajoutera dans votre ERP. +EmailCollectorExampleToCollectDolibarrAnswers=Exemple de collecte de tous les messages entrants étant des réponses aux messages envoyés depuis Dolibarr +EmailCollectorExampleToCollectLeadsDesc=Collectez les e-mails qui correspondent à certaines règles et créez automatiquement un prospect (Module Project doit être activé) avec les informations d'e-mail. Vous pouvez utiliser ce collecteur si vous souhaitez suivre votre lead à l'aide du module Project (1 lead = 1 projet), ainsi vos leads seront automatiquement générés. Si le collecteur Collect_Responses est également activé, lorsque vous envoyez un email depuis vos leads, propositions ou tout autre objet, vous pouvez également voir les réponses de vos clients ou partenaires directement sur l'application.
Remarque : Avec cet exemple initial, le titre du prospect est généré, y compris l'e-mail. Si le tiers est introuvable dans la base de données (nouveau client), le prospect sera associé au tiers avec l'ID 1. +EmailCollectorExampleToCollectLeads=Exemple de collecte de leads +EmailCollectorExampleToCollectJobCandidaturesDesc=Collectez les e-mails postulant aux offres d'emploi (le module Recrutement doit être activé). Vous pouvez compléter ce collecteur si vous souhaitez créer automatiquement une candidature pour une demande d'emploi. Remarque : Avec ce premier exemple, le titre de la candidature est généré avec l'e-mail. +EmailCollectorExampleToCollectJobCandidatures=Exemple de collecte de candidatures reçues par e-mail NoNewEmailToProcess=Aucun nouvel email (correspondants aux filtres) à traiter NothingProcessed=Aucune action faite -XEmailsDoneYActionsDone=%s e-mails qualifiés, %s e-mails traités avec succès (pour %s enregistrements/actions réalisés) +XEmailsDoneYActionsDone=%s e-mails pré-qualifiés, %s e-mails traités avec succès (pour %s enregistrement/actions effectuées) RecordEvent=Enregistrer un événement dans l'agenda (avec le type Email envoyé ou reçu) CreateLeadAndThirdParty=Créer un prospect (et un tiers si nécessaire) CreateTicketAndThirdParty=Créer un ticket (lié à un tiers si le tiers a été chargé par une opération précédente ou a été deviné à partir d'un tracker en en-tête d'email, sans tiers sinon) @@ -2112,7 +2113,7 @@ ResourceSetup=Configuration du module Ressource UseSearchToSelectResource=Utilisez un champ avec auto-complétion pour choisir les ressources (plutôt qu'une liste déroulante). DisabledResourceLinkUser=Désactiver la fonctionnalité pour lier une ressource aux utilisateurs DisabledResourceLinkContact=Désactiver la fonctionnalité pour lier une ressource aux contacts/adresses -EnableResourceUsedInEventCheck=Prohibit the use of the same resource at the same time in the agenda +EnableResourceUsedInEventCheck=Interdire l'utilisation d'une même ressource au même moment dans l'agenda ConfirmUnactivation=Confirmer réinitialisation du module OnMobileOnly=Sur petit écran (smartphone) uniquement DisableProspectCustomerType=Désactive le type de tiers "Prospect + Client" (les tiers seront donc "Prospect" OU "Client", mais ne peuvent être les deux). @@ -2167,6 +2168,9 @@ EmailTemplate=Modèle d'e-mail EMailsWillHaveMessageID=Les e-mails auront une étiquette 'References' correspondant à cette syntaxe PDF_SHOW_PROJECT=Afficher le projet sur le document ShowProjectLabel=Libellé du projet +PDF_INCLUDE_ALIAS_IN_THIRDPARTY_NAME=Inclure un alias dans le nom du tiers +THIRDPARTY_ALIAS=Nom du tiers - Alias du tiers +ALIAS_THIRDPARTY=Alias du tiers - Nom du tiers PDF_USE_ALSO_LANGUAGE_CODE=Si vous souhaitez que certains textes de votre PDF soient dupliqués dans 2 langues différentes dans le même PDF généré, vous devez définir ici cette deuxième langue pour que le PDF généré contienne 2 langues différentes dans la même page, celle choisie lors de la génération du PDF et celle-ci (seuls quelques modèles PDF prennent en charge cette fonction). Gardez vide pour 1 langue par PDF. PDF_USE_A=Générer document PDF avec le format PDF/A à la place du format PDF standard FafaIconSocialNetworksDesc=Entrez ici le code d'une icône FontAwesome. Si vous ne savez pas ce qu'est FontAwesome, vous pouvez utiliser la valeur générique fa-address-book. @@ -2248,18 +2252,37 @@ TemplateforBusinessCards=Modèles de cartes de visite dans différents formats InventorySetup= Configuration du module Inventaire ExportUseLowMemoryMode=Utiliser un mode mémoire faible ExportUseLowMemoryModeHelp=Utilisez le mode mémoire faible pour exécuter l'exécution du vidage (la compression se fait via un tube plutôt que dans la mémoire PHP). Cette méthode ne permet pas de vérifier que le fichier est terminé et le message d'erreur ne peut pas être signalé en cas d'échec. -ShowQuickAddLink=Show a button to quickly add an element in top right menu + +ModuleWebhookName = Webhook +ModuleWebhookDesc = Interface pour déclencher un appel d'URL externe suite à un événement Dolibarr +WebhookSetup = Configuration du webhook +Settings = Paramètres +WebhookSetupPage = Page de configuration du webhook +ShowQuickAddLink=Afficher un bouton pour ajouter rapidement un élément, dans le menu en haut à droite + HashForPing=Hash utilisé pour ping -ReadOnlyMode=Is instance in "Read Only" mode -DEBUGBAR_USE_LOG_FILE=Use the dolibarr.log file to trap Logs -UsingLogFileShowAllRecordOfSubrequestButIsSlower=Use the dolibarr.log file to trap Logs instead of live memory catching. It allows to catch all logs instead of only log of current process (so including the one of ajax subrequests pages) but will make your instance very very slow. Not recommended. -FixedOrPercent=Fixed (use keyword 'fixed') or percent (use keyword 'percent') -DefaultOpportunityStatus=Default opportunity status (first status when lead is created) -IconAndText=Icon and text -TextOnly=Text only -IconOnlyAllTextsOnHover=Icon only - All texts appears under icon on mouse hover menu bar -IconOnlyTextOnHover=Icon only - Text of icon appears under icon on mouse hover the icon -IconOnly=Icon only - Text on tooltip only -INVOICE_ADD_ZATCA_QR_CODE=Show the ZATCA QR code on invoices -INVOICE_ADD_ZATCA_QR_CODEMore=Some Arabic countries need this QR Code on their invoices -UrlSocialNetworksDesc=Url link of social network. Use {socialid} for the variable part that contains the social network ID. +ReadOnlyMode=L'instance est-elle en mode "Lecture seule" +DEBUGBAR_USE_LOG_FILE=Utilisez le fichier dolibarr.log pour récupérer les traces +UsingLogFileShowAllRecordOfSubrequestButIsSlower=Utilisez le fichier dolibarr.log pour récupérer les traces au lieu de capture live en mémoire. Cela permet de récupérer toutes les traces au lieu des seules traces du processus en cours (donc, y compris celles des pages de sous-requêtes ajax) mais rendra votre instance très très lente. Non recommandé. +FixedOrPercent=Fixe (utilisez le mot-clé 'fixed') ou pourcentage (utilisez le mot-clé 'percent') +DefaultOpportunityStatus=Statut de l'opportunité par défaut (premier statut lors de la création du prospect) + +IconAndText=Icône et texte +TextOnly=Texte seulement +IconOnlyAllTextsOnHover=Icône uniquement - Tous les textes apparaissent sous l'icône sur la barre de menu du survol de la souris +IconOnlyTextOnHover=Icône uniquement - Le texte de l'icône apparaît sous l'icône à la souris survolez l'icône +IconOnly=Icône uniquement - Texte sur l'info-bulle uniquement +INVOICE_ADD_ZATCA_QR_CODE=Afficher le code QR ZATCA sur les factures +INVOICE_ADD_ZATCA_QR_CODEMore=Certains pays arabes ont besoin de ce code QR sur leurs factures +INVOICE_ADD_SWISS_QR_CODE=Afficher la QR-facture suisse sur les factures +UrlSocialNetworksDesc=Lien url du réseau social. Utilisez {socialid} pour la partie variable qui contient l'identifiant du réseau social. +IfThisCategoryIsChildOfAnother=Si cette catégorie est un enfant d'une autre +DarkThemeMode=Mode thème sombre +AlwaysDisabled=Toujours désactivé +AccordingToBrowser=Selon navigateur +AlwaysEnabled=Toujours activé +DoesNotWorkWithAllThemes=Ne fonctionnera pas avec tous les thèmes +NoName=Sans nom +ShowAdvancedOptions= Show advanced options +HideAdvancedoptions= Hide advanced options +CIDLookupURL=The module brings an URL that can be used by an external tool to get the name of a thirdparty or contact from its phone number. URL to use is: diff --git a/htdocs/langs/fr_FR/holiday.lang b/htdocs/langs/fr_FR/holiday.lang index 061eb3b5c77..7095c99577e 100644 --- a/htdocs/langs/fr_FR/holiday.lang +++ b/htdocs/langs/fr_FR/holiday.lang @@ -4,6 +4,7 @@ Holidays=Congés CPTitreMenu=Demande de congés MenuReportMonth=État mensuel MenuAddCP=Créer demande de congés +MenuCollectiveAddCP=New collective leave request NotActiveModCP=Vous devez activer le module Congés pour afficher cette page. AddCP=Créer une demande de congés DateDebCP=Date Début @@ -79,6 +80,8 @@ MotifCP=Motif UserCP=Utilisateur ErrorAddEventToUserCP=Une erreur est survenue durant l'ajout du congé exceptionnel. AddEventToUserOkCP=L'ajout du congé exceptionnel à bien été effectué. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=Voir historique modif. LogCP=Historique des mises à jour de jours de congés disponibles ActionByCP=Réalisée par @@ -86,6 +89,13 @@ UserUpdateCP=Mis à jour pour PrevSoldeCP=Précédent Solde NewSoldeCP=Nouveau Solde alreadyCPexist=Une demande de congés a déjà été faite sur cette période. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Groupes +users=Utilisateurs +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Premier jour de congés LastDayOfHoliday=Dernier jour de congés BoxTitleLastLeaveRequests=Les %s dernières demandes de congés modifiées @@ -134,6 +144,6 @@ HolidaysToApprove=Vacances à approuver NobodyHasPermissionToValidateHolidays=Aucun utilisateur ne dispose des permissions pour valider les demandes de congés HolidayBalanceMonthlyUpdate=Mise à jour mensuelle du solde des congés XIsAUsualNonWorkingDay=%s est généralement un jour NON ouvrable -BlockHolidayIfNegative=Block if balance negative -LeaveRequestCreationBlockedBecauseBalanceIsNegative=The creation of this leave request is blocked because your balance is negative +BlockHolidayIfNegative=Bloqué lorsque le solde est négatif +LeaveRequestCreationBlockedBecauseBalanceIsNegative=La création de cette demande de congé est bloquée car votre solde est négatif ErrorLeaveRequestMustBeDraftCanceledOrRefusedToBeDeleted=La demande de congé %s doit être brouillon, annulée ou refusée pour être supprimée diff --git a/htdocs/langs/fr_FR/hrm.lang b/htdocs/langs/fr_FR/hrm.lang index bc655bcd0ba..2d4f8173b71 100644 --- a/htdocs/langs/fr_FR/hrm.lang +++ b/htdocs/langs/fr_FR/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Etablissement ouvert CloseEtablishment=Etablissement fermé # Dictionary DictionaryPublicHolidays=Congés - jours fériés -DictionaryDepartment=GRH - Liste des départements organisationnels +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=GRH - Liste des fonctions # Module Employees=Salariés @@ -88,3 +88,4 @@ DeleteSkill = Compétence supprimée SkillsExtraFields=Attributs supplémentaires (Compétences) JobsExtraFields=Attributs supplémentaires (Emplois) EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/fr_FR/install.lang b/htdocs/langs/fr_FR/install.lang index 5c926a4b5da..75c973172ca 100644 --- a/htdocs/langs/fr_FR/install.lang +++ b/htdocs/langs/fr_FR/install.lang @@ -4,12 +4,12 @@ MiscellaneousChecks=Vérification des prérequis ConfFileExists=Le fichier de configuration %s existe. ConfFileDoesNotExistsAndCouldNotBeCreated=Le fichier de configuration %s n'existe pas et n'a pu être créé ! ConfFileCouldBeCreated=Le fichier de configuration %s a pu être créé. -ConfFileIsNotWritable=Le fichier %s n'est pas modifiable. Pour une première installation, modifiez ses permissions. Le serveur Web doit avoir le droit d'écrire dans ce fichier le temps de la configuration ("chmod 666" par exemple sur un OS compatible Unix). +ConfFileIsNotWritable=Le fichier de configuration %s n'est pas modifiable. Pour une première installation, votre serveur web doit avoir le droit d'écrire dans ce fichier le temps de la configuration ("chmod 666" par exemple sur un OS compatible Unix). ConfFileIsWritable=Le fichier %s est modifiable. ConfFileMustBeAFileNotADir=Le fichier de configuration %s doit être un fichier, pas un répertoire. ConfFileReload=Rechargement des paramètres depuis le fichier de configuration. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. -PHPSupportPOSTGETOk=Ce PHP prend bien en charge les variables POST et GET. +NoReadableConfFileSoStartInstall=Le fichier de configuration conf/conf.php n'existe pas ou n'est pas lisible. Le processus d'installation va être lancé pour essayer de l'initialiser. +PHPSupportPOSTGETOk=Ce PHP prend en charge les variables POST et GET. PHPSupportPOSTGETKo=Il est possible que votre configuration PHP ne supporte pas les variables POST et / ou GET. Vérifiez le paramètre variables_order dans le fichier php.ini. PHPSupportSessions=Ce PHP prend en charge les sessions. PHPSupport=Ce PHP prend en charge les fonctions %s. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Vous avez peut-être saisi une mauvaise valeur pour ErrorFailedToCreateDatabase=Échec de la création de la base '%s'. ErrorFailedToConnectToDatabase=Échec de connexion à la base '%s'. ErrorDatabaseVersionTooLow=Version de base de donnée (%s) trop ancienne. La version %s ou supérieure est requise. -ErrorPHPVersionTooLow=Version de PHP trop ancienne. La version %s est requise. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Connexion au serveur réussie mais base '%s' introuvable. ErrorDatabaseAlreadyExists=La base de données '%s' existe déjà. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=Si la base n'existe pas, revenez en arrière et cochez l'option "Créer la base de données". IfDatabaseExistsGoBackAndCheckCreate=Si la base existe déjà, revenez en arrière et désactiver l'option "Créer la base de données". WarningBrowserTooOld=Version du navigateur trop ancienne. Nous vous recommandons de mettre à jour vers une version récente de Firefox, Chrome ou Opera. diff --git a/htdocs/langs/fr_FR/main.lang b/htdocs/langs/fr_FR/main.lang index 41b6188e16e..cde47f4e9e9 100644 --- a/htdocs/langs/fr_FR/main.lang +++ b/htdocs/langs/fr_FR/main.lang @@ -621,7 +621,7 @@ MonthVeryShort11=N MonthVeryShort12=D AttachedFiles=Fichiers et documents joints JoinMainDoc=Joindre le document principal -JoinMainDocOrLastGenerated=Send the main document or the last generated one if not found +JoinMainDocOrLastGenerated=Envoyer le document principal ou le dernier généré s'il n'est pas trouvé DateFormatYYYYMM=YYYY-MM DateFormatYYYYMMDD=YYYY-MM-DD DateFormatYYYYMMDDHHMM=YYYY-MM-DD HH:SS @@ -712,6 +712,7 @@ FeatureDisabled=Fonction désactivée MoveBox=Déplacer le widget Offered=Offert NotEnoughPermissions=Vous n'avez pas les permissions pour cette action +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=Nom session Method=Méthode Receive=Réceptionner @@ -801,6 +802,7 @@ URLPhoto=URL de la photo/logo SetLinkToAnotherThirdParty=Lier vers un autre tiers LinkTo=Lier à LinkToProposal=Lier à une proposition commerciale +LinkToExpedition= Link to expedition LinkToOrder=Lier à une commande LinkToInvoice=Lier à une facture LinkToTemplateInvoice=Lien vers le modèle de facture @@ -1176,4 +1178,5 @@ CommercialsAffected=Commercial affecté au tiers CommercialAffected=Commercial affecté au tiers YourMessage=Votre message YourMessageHasBeenReceived=Votre message a été reçu. Nous vous répondrons ou vous contacterons dans les plus brefs délais. -UrlToCheck=Url to check +UrlToCheck=URL à vérifier +Automation=Automatisation diff --git a/htdocs/langs/fr_FR/members.lang b/htdocs/langs/fr_FR/members.lang index a6f805daca6..238c968d000 100644 --- a/htdocs/langs/fr_FR/members.lang +++ b/htdocs/langs/fr_FR/members.lang @@ -15,7 +15,7 @@ ErrorMemberIsAlreadyLinkedToThisThirdParty=Un autre adhérent (nom: %s, i ErrorUserPermissionAllowsToLinksToItselfOnly=Pour des raisons de sécurité, il faut posséder les droits de modification de tous les utilisateurs pour pouvoir lier un adhérent à un utilisateur autre que vous même. SetLinkToUser=Lier à un utilisateur Dolibarr SetLinkToThirdParty=Lier à un tiers Dolibarr -MembersCards=Generation of cards for members +MembersCards=Génération de cartes pour les membres MembersList=Liste des adhérents MembersListToValid=Liste des adhérents brouillons (à valider) MembersListValid=Liste des adhérents valides @@ -35,7 +35,8 @@ DateEndSubscription=Date fin adhésion EndSubscription=Fin adhésion SubscriptionId=Id adhésion WithoutSubscription=Sans adhésion -MemberId=Id adhérent +MemberId=Member Id +MemberRef=Member Ref NewMember=Nouvel adhérent MemberType=Type d'adhérent MemberTypeId=Id type adhérent @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Ce type d'adhérent ne peut pas être supprimé NewSubscription=Nouvelle cotisation NewSubscriptionDesc=Ce formulaire permet de vous inscrire comme nouvel adhérent de l'association. Pour un renouvellement (si vous êtes déjà adhérent), contactez plutôt l'association par email %s. Subscription=Adhésion / cotisation +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Durée +GetMembershipButtonLabel=Get membership Subscriptions=Adhésions / cotisations SubscriptionLate=En retard SubscriptionNotReceived=Cotisation non reçue @@ -135,7 +142,7 @@ CardContent=Contenu de votre fiche adhérent # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=Nous vous informons que votre demande d'adhésion a bien été reçue.

ThisIsContentOfYourMembershipWasValidated=Nous vous informons que votre adhésion a été validé avec les informations suivantes:

-ThisIsContentOfYourSubscriptionWasRecorded=Nous vous informons que votre nouvelle cotisation a été enregistrée.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=Nous voulons vous informer que votre adhésion est sur le point d'expirer ou a déjà expiré (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Nous espérons que vous pourrez la renouveler, votre soutien nous est précieux.

ThisIsContentOfYourCard=Ceci est un rappel des informations que nous avons vous concernant. N'hésitez pas à nous contacter en cas d'erreur.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Sujet de l'email reçu en cas d'auto-inscription d'un invité @@ -163,7 +170,7 @@ MoreActionsOnSubscription=Action complémentaire proposée par défaut lors de l MoreActionBankDirect=Création une écriture directe sur le compte bancaire ou caisse MoreActionBankViaInvoice=Créer une facture avec paiement sur compte bancaire ou caisse MoreActionInvoiceOnly=Création facture sans paiement -LinkToGeneratedPages=Generation of business cards or address sheets +LinkToGeneratedPages=Génération de cartes de visite ou de feuilles d'adresses LinkToGeneratedPagesDesc=Cet écran vous permet de générer des planches de cartes de visite ou d'étiquettes d'adresses pour chaque adhérent ou pour un adhérent en particulier. DocForAllMembersCards=Génération de cartes pour tous les adhérents DocForOneMemberCards=Génération de cartes pour un adhérent particulier @@ -198,7 +205,8 @@ NbOfSubscriptions=Nombre de cotisations AmountOfSubscriptions=Montant des cotisations TurnoverOrBudget=Chiffre affaire (pour société) ou Budget (asso ou collectivité) DefaultAmount=Montant par défaut de la cotisation -CanEditAmount=Le visiteur peut modifier / choisir le montant de sa cotisation +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Rediriger sur la page intégrée de paiement en ligne ByProperties=Par nature MembersStatisticsByProperties=Statistiques des adhérents par nature @@ -218,3 +226,5 @@ XExternalUserCreated=%s utilisateur(s) externe(s) créé(s) ForceMemberNature=Forcer la nature de l'adhérent (personne physique ou morale) CreateDolibarrLoginDesc=La création d'un login utilisateur pour les membres leur permet de se connecter à l'application. En fonction des autorisations accordées, ils pourront par exemple consulter ou modifier eux-mêmes leur dossier. CreateDolibarrThirdPartyDesc=Un tiers est l'entité juridique qui sera utilisée sur la facture si vous décidez de générer une facture pour chaque cotisation. Vous pourrez le créer plus tard au cours du processus d'enregistrement de la cotisation. +MemberFirstname=Prénom du membre +MemberLastname=Nom de famille du membre diff --git a/htdocs/langs/fr_FR/projects.lang b/htdocs/langs/fr_FR/projects.lang index ca8f1e518aa..7efe2265285 100644 --- a/htdocs/langs/fr_FR/projects.lang +++ b/htdocs/langs/fr_FR/projects.lang @@ -6,7 +6,7 @@ ProjectLabel=Libellé projet ProjectsArea=Espace projets ProjectStatus=Statut projet SharedProject=Tout le monde -PrivateProject=Assigned contacts +PrivateProject=Contacts assignés ProjectsImContactFor=Projets dont je suis un contact explicite AllAllowedProjects=Tout projet que je peux lire (les miens + public) AllProjects=Tous les projets @@ -18,7 +18,7 @@ ProjectsDesc=Cette vue présente tous les projets (vos habilitations vous offran TasksOnProjectsDesc=Cette vue présente toutes les tâches sur tous les projets (vos permissions d'utilisateur vous accordent la permission de voir tout). MyTasksDesc=Cette vue est restreinte aux projets ou tâches pour lesquels vous êtes un contact affecté. OnlyOpenedProject=Seuls les projets ouverts sont visibles (les projets à l'état brouillon ou fermé ne sont pas visibles). -ClosedProjectsAreHidden=Les projets fermés ne sont pas visible. +ClosedProjectsAreHidden=Les projets fermés ne sont pas visibles. TasksPublicDesc=Cette vue présente tous les projets et tâches pour lesquels vous êtes habilité à avoir une visibilité. TasksDesc=Cette vue présente tous les projets et tâches (vos habilitations vous offrant une vue exhaustive). AllTaskVisibleButEditIfYouAreAssigned=Toutes les tâches des projets sont visibles mais il n'est possible de saisir du temps passé que sur celles assignées à l'utilisateur sélectionné.\nAssignez la tâche si elle ne l'est pas déjà pour pouvoir saisir du temps dessus. @@ -259,7 +259,7 @@ TimeSpentInvoiced=Temps passé facturé TimeSpentForIntervention=Temps consommé TimeSpentForInvoice=Temps consommés OneLinePerUser=Une ligne par utilisateur -ServiceToUseOnLines=Service à utiliser sur les lignes +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=La facture %s a été générée à partir du temps passé sur le projet InterventionGeneratedFromTimeSpent=L'intervention %s a été générée à partir du temps consacré au projet ProjectBillTimeDescription=Cochez si vous saisissez du temps sur les tâches du projet ET prévoyez de générer des factures à partir des temps pour facturer le client du projet (ne cochez pas si vous comptez créer une facture qui n'est pas basée sur la saisie des temps). Note: Pour générer une facture, aller sur l'onglet 'Temps consommé' du project et sélectionnez les lignes à inclure. @@ -289,8 +289,9 @@ FormForNewLeadDesc=Veuillez remplir ce formulaire de contact ou écrivez un e-ma ProjectsHavingThisContact=Projets ayant ce contact StartDateCannotBeAfterEndDate=La date de fin ne peux être avant la date de début ErrorPROJECTLEADERRoleMissingRestoreIt=Le rôle "PROJECTLEADER" est manquant ou a été désactivé, merci de le restaurer dans le dictionnaire des types de contacts -LeadPublicFormDesc=You can enable here a public page to allow your prospects to make a first contact to you from a public online form -EnablePublicLeadForm=Enable the public form for contact -NewLeadbyWeb=Your message or request has been recorded. We will answer or contact your soon. -NewLeadForm=New contact form -LeadFromPublicForm=Online lead from public form +LeadPublicFormDesc=Vous pouvez activer ici une page publique pour permettre à vos prospects d'établir un premier contact avec vous depuis un formulaire public en ligne +EnablePublicLeadForm=Activer le formulaire public de contact +NewLeadbyWeb=Votre message ou votre demande a été enregistré. Nous vous répondrons ou vous contacterons bientôt. +NewLeadForm=Nouveau formulaire de contact +LeadFromPublicForm=Lead en ligne à partir d'un formulaire public +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/fr_FR/stocks.lang b/htdocs/langs/fr_FR/stocks.lang index 65a7495880e..a0642c4c627 100644 --- a/htdocs/langs/fr_FR/stocks.lang +++ b/htdocs/langs/fr_FR/stocks.lang @@ -265,51 +265,53 @@ ProductBarcodeDoesNotExist=Le produit avec ce code-barres n'existe pas WarehouseId=ID entrepôt WarehouseRef=Réf entrepôt SaveQtyFirst=Enregistrez d'abord les quantités réelles inventoriées, avant de demander la création du mouvement de stock. +ToStart=Démarrer InventoryStartedShort=En cours ErrorOnElementsInventory=Opération annulée pour la raison suivante : ErrorCantFindCodeInInventory=Impossible de trouver le code suivant dans l'inventaire QtyWasAddedToTheScannedBarcode=Succès !! La quantité a été ajoutée à tous les codes-barres demandés. Vous pouvez fermer l'outil Scanner. StockChangeDisabled=Changement sur stock désactivé NoWarehouseDefinedForTerminal=Aucun entrepôt défini pour le terminal -ModuleStockTransferName = Transferts de stocks -ModuleStockTransferDesc = Création d'objets transfert de stocks, avec génération de bons de transfert -StockTransferNew=Nouveau transfert de stocks -StockTransferList=Liste des transferts de stocks -ConfirmValidateStockTransfer=Êtes-vous sûr de vouloir valider ce transfert de stocks sous la référence %s ? -ConfirmDestock=Décrémentation des stocks via transfert %s -ConfirmDestockCancel=Annulation décrémentation des stocks via transfert %s -DestockAllProduct=Décrémentation des stocks -DestockAllProductCancel=Annulation décrémentation des stocks -ConfirmAddStock=Incrémentation des stocks via transfert %s -ConfirmAddStockCancel=Annulation incrémentation des stocks via transfert %s -AddStockAllProduct=Incrémentation des stocks -AddStockAllProductCancel=Annulation incrémentation des stocks -DatePrevueDepart=Date prévue de départ +ClearQtys=Effacer toutes les quantités +ModuleStockTransferName=Transfert de Stock Avancé +ModuleStockTransferDesc=Gestion avancée des transferts de stock, avec génération de feuille de transfert +StockTransferNew=Nouveau transfert de stock +StockTransferList=Liste des transferts de stock +ConfirmValidateStockTransfer=Êtes-vous sûr de vouloir valider ce transfert de stocks avec la référence %s ? +ConfirmDestock=Diminution des stocks avec transfert %s +ConfirmDestockCancel=Annuler la diminution des stocks avec transfert %s +DestockAllProduct=Diminution des stocks +DestockAllProductCancel=Annuler la baisse des stocks +ConfirmAddStock=Augmenter les stocks avec le transfert %s +ConfirmAddStockCancel=Annuler l'augmentation des stocks avec transfert %s +AddStockAllProduct=Augmentation des stocks +AddStockAllProductCancel=Annuler l'augmentation des stocks +DatePrevueDepart=Date de départ prévue DateReelleDepart=Date réelle de départ DatePrevueArrivee=Date prévue d'arrivée -DateReelleArrivee=Date réelle d'arrivée -HelpWarehouseStockTransferSource=Si renseigné, seul cet entrepôt source et ses enfants seront sélectionnables pour l'ajout des lignes -HelpWarehouseStockTransferDestination=Si renseigné, seul cet entrepôt de destination et ses enfants seront sélectionnables pour l'ajout des lignes -LeadTimeForWarning=Délai pour alerte (en jours) -TypeContact_stocktransfer_internal_STFROM=Contact expéditeur transfert de stocks -TypeContact_stocktransfer_internal_STDEST=Contact destinataire transfert de stocks -TypeContact_stocktransfer_internal_STRESP=Responsable du transfert de stocks -StockTransferSheet=Bon de transfert -StockTransferSheetProforma=Bon de transfert proforma -StockTransferDecrementation=Décrémenter les entrepôts sources -StockTransferIncrementation=Incrémenter les entrepôts de destination -StockTransferDecrementationCancel=Annuler décrémentation des entrepôts sources -StockTransferIncrementationCancel=Annuler incrémentation des entrepôts de destination -StockStransferDecremented=Entrepôts sources décrémentés -StockStransferDecrementedCancel=Décrémentation entrepôts source annulée -StockStransferIncremented=Clôturé - Stocks transférés -StockStransferIncrementedShort=Stocks transférés -StockStransferIncrementedShortCancel=Incrémentation entrepôts de destination annulée -StockTransferNoBatchForProduct=Le produit %s ne gère pas les numéros de lot, retirez le lot sur la ligne avant d'exécuter à nouveau cette action -StockTransferSetup = Configuration du module transferts de stocks -StockTransferSetupPage = Page de configuration du module transferts de stocks +DateReelleArrivee=Date d'arrivée réelle +HelpWarehouseStockTransferSource=Si cet entrepôt est défini, seuls lui-même et ses enfants seront disponibles en tant qu'entrepôt source +HelpWarehouseStockTransferDestination=Si cet entrepôt est défini, seul lui-même et ses enfants seront disponibles comme entrepôt de destination +LeadTimeForWarning=Délai avant alerte (en jours) +TypeContact_stocktransfer_internal_STFROM=Expéditeur de transfert de stocks +TypeContact_stocktransfer_internal_STDEST=Bénéficiaire du transfert de stocks +TypeContact_stocktransfer_internal_STRESP=Responsable du transfert des stocks +StockTransferSheet=Feuille de transfert de stocks +StockTransferSheetProforma=Feuille de transferts de stock proforma +StockTransferDecrementation=Diminuer les entrepôts sources +StockTransferIncrementation=Augmenter les entrepôts de destination +StockTransferDecrementationCancel=Annuler la diminution des entrepôts sources +StockTransferIncrementationCancel=Annuler l'augmentation des entrepôts de destination +StockStransferDecremented=Les entrepôts sources ont diminué +StockStransferDecrementedCancel=Diminution des entrepôts sources annulée +StockStransferIncremented=Fermé - Stocks transférés +StockStransferIncrementedShort=Stocks transférées +StockStransferIncrementedShortCancel=Augmentation des entrepôts de destination annulée +StockTransferNoBatchForProduct=Le produit %s n'utilise pas le lot, effacez le lot et réessayez +StockTransferSetup = Configuration du module de Transfert de stocks avancé +Settings=Paramètres +StockTransferSetupPage = Page de configuration du module de Transfert de stocks avancé StockTransferRightRead=Lire les transferts de stocks StockTransferRightCreateUpdate=Créer/Mettre à jour les transferts de stocks StockTransferRightDelete=Supprimer les transferts de stocks -BatchNotFound=Lot / série non trouvé(e) pour ce produit -ClearQtys=Effacer toutes les quantités +BatchNotFound=Lot/série introuvable pour ce produit diff --git a/htdocs/langs/fr_FR/ticket.lang b/htdocs/langs/fr_FR/ticket.lang index 486e3799f72..fd3ae93393d 100644 --- a/htdocs/langs/fr_FR/ticket.lang +++ b/htdocs/langs/fr_FR/ticket.lang @@ -90,17 +90,17 @@ TicketPublicAccess=Une interface publique ne nécessitant aucune identification TicketSetupDictionaries=Les types de ticket, sévérité et codes analytiques sont paramétrables à partir des dictionnaires TicketParamModule=Configuration des variables du module TicketParamMail=Configuration de la messagerie -TicketEmailNotificationFrom=Sender e-mail for ticket answers -TicketEmailNotificationFromHelp=Sender e-mail for ticket answers sent from Dolibarr -TicketEmailNotificationTo=Notify ticket creation to this e-mail address -TicketEmailNotificationToHelp=If present, this e-mail address will be notified of a ticket creation +TicketEmailNotificationFrom=Sender e-mail for notification on answers +TicketEmailNotificationFromHelp=Sender e-mail to use to send the notification email when an answer is provided inside the backoffice. For example noreply@example.com +TicketEmailNotificationTo=Notifier la création du ticket à cette adresse e-mail +TicketEmailNotificationToHelp=Si elle est présente, cette adresse e-mail sera notifiée de la création d'un ticket TicketNewEmailBodyLabel=Texte du message envoyé après la création d'un ticket TicketNewEmailBodyHelp=Le texte spécifié ici sera inséré dans l'e-mail confirmant la création d'un nouveau ticket depuis l'interface publique. Les informations sur la consultation du ticket sont automatiquement ajoutées. TicketParamPublicInterface=Configuration de l'interface publique\n TicketsEmailMustExist=Une adresse e-mail existante est requise pour créer un ticket TicketsEmailMustExistHelp=Pour accéder à l'interface publique et créer un nouveau ticket, votre compte doit déjà être existant. -TicketCreateThirdPartyWithContactIfNotExist=Créer un tiers avec contact s'il n'existe pas avec l'email saisi -TicketCreateThirdPartyWithContactIfNotExistHelp=Créer un tiers avec contact s'il n'existe pas avec l'email saisi +TicketCreateThirdPartyWithContactIfNotExist=Demandez le nom et le nom de l'entreprise pour les e-mails inconnus. +TicketCreateThirdPartyWithContactIfNotExistHelp=Vérifiez si un tiers ou un contact existe pour l'e-mail saisi. Sinon, demandez un nom et une raison sociale pour créer un tiers avec contact. PublicInterface=Interface publique TicketUrlPublicInterfaceLabelAdmin=URL alternative pour l'interface publique TicketUrlPublicInterfaceHelpAdmin=Il est possible de définir un alias vers le serveur et de rendre ainsi l'interface publique accessible avec une autre URL (le serveur doit agir comme un proxy sur cette nouvelle URL) @@ -148,7 +148,7 @@ TicketsAutoNotifyClose=Avertir automatiquement un tiers lors de la fermeture d'u TicketsAutoNotifyCloseHelp=Lors de la clôture d'un ticket, il vous sera proposé d'envoyer un message à l'un des contacts tiers. Lors de la fermeture massive, un message sera envoyé à un contact du tiers lié au ticket. TicketWrongContact=Le contact fourni ne fait pas partie des contacts actuels du ticket. E-mail non envoyé. TicketChooseProductCategory=Catégorie de produit pour les tickets -TicketChooseProductCategoryHelp=Select the product category of ticket support. This will be used to automatically link a contract to a ticket. +TicketChooseProductCategoryHelp=Sélectionnez la catégorie de produit du support de ticket. Celui-ci sera utilisé pour lier automatiquement un contrat à un ticket. # # Index & list page @@ -221,12 +221,12 @@ ErrorMailRecipientIsEmptyForSendTicketMessage=Le destinataire est vide. Aucun e- TicketGoIntoContactTab=Rendez-vous dans le tableau "Contacts" pour les sélectionner TicketMessageMailIntro=Introduction TicketMessageMailIntroHelp=Ce texte est ajouté seulement au début de l'email et ne sera pas sauvegardé. -TicketMessageMailIntroLabelAdmin=Introduction text to all ticket answers -TicketMessageMailIntroText=Hello,
A new answer has been added to a ticket that you follow. Here is the message:
-TicketMessageMailIntroHelpAdmin=This text will be inserted before the answer when replying to a ticket from Dolibarr +TicketMessageMailIntroLabelAdmin=Texte d'introduction à toutes les réponses aux tickets +TicketMessageMailIntroText=Bonjour,
Une nouvelle réponse a été ajoutée à un ticket que vous suivez. Voici le message :
+TicketMessageMailIntroHelpAdmin=Ce texte sera inséré avant la réponse lors d'une réponse à un ticket depuis Dolibarr TicketMessageMailSignature=Signature TicketMessageMailSignatureHelp=Ce texte est ajouté seulement à la fin de l'email et ne sera pas sauvegardé. -TicketMessageMailSignatureText=Message sent by %s via Dolibarr +TicketMessageMailSignatureText=Message envoyé par %s via Dolibarr TicketMessageMailSignatureLabelAdmin=Signature de l'email de réponse TicketMessageMailSignatureHelpAdmin=Ce texte sera inséré après le message de réponse. TicketMessageHelp=Seul ce texte sera sauvegardé dans la liste des messages sur la fiche ticket. @@ -262,8 +262,8 @@ TicketNotCreatedFromPublicInterface=Non disponible. Le ticket n’a pas été cr ErrorTicketRefRequired=La référence du ticket est requise TicketsDelayForFirstResponseTooLong=Trop de temps écoulé entre l'ouverture du ticket et une première réponse. TicketsDelayFromLastResponseTooLong=Trop de temps écoulé depuis la dernière réponse de ce ticket. -TicketNoContractFoundToLink=No contract was found to be automatically linked to this ticket. Please link a contract manually. -TicketManyContractsLinked=Many contracts have been automatically linked to this ticket. Make sure to verify which should be chosen. +TicketNoContractFoundToLink=Aucun contrat n'a été trouvé pour être automatiquement lié à ce ticket. Veuillez lier un contrat manuellement. +TicketManyContractsLinked=De nombreux contrats ont été automatiquement liés à ce ticket. Assurez-vous de vérifier ce qui doit être choisi. # # Logs @@ -291,7 +291,7 @@ TicketNewEmailBody=Ceci est un message automatique pour confirmer l'enregistreme TicketNewEmailBodyCustomer=Ceci est un email automatique pour confirmer qu'un nouveau ticket vient d'être créé dans votre compte. TicketNewEmailBodyInfosTicket=Informations pour la surveillance du ticket TicketNewEmailBodyInfosTrackId=Numéro de suivi du ticket : %s -TicketNewEmailBodyInfosTrackUrl=You can view the progress of the ticket by clicking the following link +TicketNewEmailBodyInfosTrackUrl=Vous pouvez voir la progression du ticket en cliquant sur le lien suivant TicketNewEmailBodyInfosTrackUrlCustomer=Vous pouvez voir la progression du ticket en cliquant sur le lien ci-dessus. TicketCloseEmailBodyInfosTrackUrlCustomer=Vous pouvez consulter l'historique de ce ticket en cliquant sur le lien suivant TicketEmailPleaseDoNotReplyToThisEmail=Merci de ne pas répondre directement à ce courriel ! Utilisez le lien pour répondre via l'interface. diff --git a/htdocs/langs/gl_ES/accountancy.lang b/htdocs/langs/gl_ES/accountancy.lang index 6616dc76f96..d766db8dc75 100644 --- a/htdocs/langs/gl_ES/accountancy.lang +++ b/htdocs/langs/gl_ES/accountancy.lang @@ -48,8 +48,9 @@ CountriesNotInEEC=Países non CEE CountriesInEECExceptMe=Todos os paises incluidos na CEE excepto %s CountriesExceptMe=Todos os países excepto %s AccountantFiles=Exportar documentos contables -ExportAccountingSourceDocHelp=Con esta ferramenta, pode exportar os eventos de orixe (listaxe en CSV e PDF) que se empregan para xerar a súa contabilidade. +ExportAccountingSourceDocHelp=Con esta ferramenta, pode buscar e exportar os eventos de orixe que se utilizan para xerar a súa contabilidade.
O ficheiro ZIP exportado conterá as listas de elementos solicitados en CSV, así como os seus ficheiros anexos no seu formato orixinal (PDF, ODT, DOCX...). ExportAccountingSourceDocHelp2=Para exportar as súas revistas, use a entrada de menú %s - %s +ExportAccountingProjectHelp=Especifique un proxecto se precisa un informe contable só para un proxecto específico. Os informes de gastos e pagamentos de préstamos non están incluídos nos informes do proxecto. VueByAccountAccounting=Ver por conta contable VueBySubAccountAccounting=Ver pos subconta contable @@ -161,7 +162,7 @@ BANK_DISABLE_DIRECT_INPUT=Desactivar transaccións directas en conta bancaria ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL=Habilitar exportación de borradores al diario ACCOUNTANCY_COMBO_FOR_AUX=Activar a listaxe combinada para a conta subsidiaria (pode ser lento se ten moitos terceiros, rompe coa capacidade de buscar unha parte do valor) ACCOUNTING_DATE_START_BINDING=Define unha data para comezar a ligar e transferir na contabilidade. Por debaixo desta data, as transaccións non se transferirán á contabilidade. -ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=Na transferencia de contabilidade, selecciona amosar o período por defecto +ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=Na transferencia de contabilidade, cal é o período seleccionado por defecto ACCOUNTING_SELL_JOURNAL=Diario de vendas ACCOUNTING_PURCHASE_JOURNAL=Diario de compras @@ -182,7 +183,7 @@ DONATION_ACCOUNTINGACCOUNT=Conta contable de rexistro de doacións/subvencións ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=Conta contable de rexistro subscricións ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=Conta contable por defecto para rexistrar os ingresos realizados polo cliente -UseAuxiliaryAccountOnCustomerDeposit=Use subcontas nas liñas de depósito de clientes +UseAuxiliaryAccountOnCustomerDeposit=Almacenar a conta do cliente como unha conta individual para as liñas de anicipo no Libro Maior subsidiario (se está desactivada, a conta individual para as liñas de anticipo permanecerá baleira) ACCOUNTING_PRODUCT_BUY_ACCOUNT=Conta contable predeterminada para os produtos comprados (usada se non está definida na folla de produtos) ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT=Conta contable predeterminada para os produtos comprados na CEE (usada se non está definida na folla de produto) @@ -332,7 +333,7 @@ ACCOUNTING_DISABLE_BINDING_ON_EXPENSEREPORTS=Desactivar a ligazón e transferenc ## Export NotifiedExportDate=Marcar as liñas exportadas como Exportadas (para modificar unha liña, terá que eliminar toda a transacción e transferila de novo á contabilidade) -NotifiedValidationDate=Validar e bloquear as entradas exportadas (o mesmo efecto que a función "Peche", a modificación e eliminación das liñas DEFINITIVAMENTE non será posible) +NotifiedValidationDate=Validar e bloquear as entradas exportadas (o mesmo efecto que a función "%s", a modificación e eliminación das liñas DEFINITIVAMENTE non será posible) DateValidationAndLock=Data validación e bloqueo ConfirmExportFile=Confirmación da xeración do ficheiro de exportación contable? ExportDraftJournal=Exportar libro borrador @@ -427,6 +428,7 @@ SorryThisModuleIsNotCompatibleWithTheExperimentalFeatureOfSituationInvoices=Sent AccountancyErrorMismatchLetterCode=Erro no código de conciliación AccountancyErrorMismatchBalanceAmount=O saldo (%s) non é igual a 0 AccountancyErrorLetteringBookkeeping=Producíronse erros nas transaccións: %s +ErrorAccountNumberAlreadyExists=O número contable %s xa existe ## Import ImportAccountingEntries=Entradas contables diff --git a/htdocs/langs/gl_ES/admin.lang b/htdocs/langs/gl_ES/admin.lang index c1cd56fe1bd..1e71613202c 100644 --- a/htdocs/langs/gl_ES/admin.lang +++ b/htdocs/langs/gl_ES/admin.lang @@ -1936,7 +1936,7 @@ PressF5AfterChangingThis=Prema CTRL+F5 no teclado ou limpe a caché do navegador NotSupportedByAllThemes=Traballará con temas core, pode que non sexan compatibles con temas externos BackgroundColor=Cor de fondo TopMenuBackgroundColor=Cor de fondo para o Menú superior -TopMenuDisableImages=Ocultar imaxes no Menú superior +TopMenuDisableImages=Icona ou texto no menú superior LeftMenuBackgroundColor=Cor de fondo para o Menú esquerdo BackgroundTableTitleColor=Cor de fondo para a Taboa título líña BackgroundTableTitleTextColor=Cor do texto para a liña de título da taboa @@ -2059,6 +2059,7 @@ VATIsUsedIsOff=Nota: A opción para usar Vendas IVE ou IVE configurouse como Nota: con este exemplo inicial, xérase o título do cliente potencial incluíndo o correo electrónico. Se o terceiro non se atopa na base de datos (novo cliente), o cliente potencial unirase ao terceiro co ID 1. EmailCollectorExampleToCollectLeads=Exemplo de recollida de clientes potenciais @@ -2088,7 +2089,7 @@ EmailCollectorExampleToCollectJobCandidaturesDesc=Recoller correos electrónicos EmailCollectorExampleToCollectJobCandidatures=Exemplo de recollida de candidaturas de emprego recibidas por correo electrónico NoNewEmailToProcess=Non hai ningún correo electrónico novo (filtros coincidentes) para procesar NothingProcessed=Nada feito -XEmailsDoneYActionsDone=%s correos electrónicos cualificados, %s correos electrónicos procesados ​​correctamente (para %s rexistro/accións feitas) +XEmailsDoneYActionsDone=Correos electrónicos %s precalificados, correos electrónicos %s procesados correctamente (para %s rexistro/accións realizadas) RecordEvent=Gravar un evento na axenda (co tipo de correo electrónico enviado ou recibido) CreateLeadAndThirdParty=Crear un cliente potencial (e un terceiro se é preciso) CreateTicketAndThirdParty=Crear un ticket (ligado a un terceiro se o terceiro foi cargado por unha operación anterior ou se adiviñou a partir dun rastreador na cabeceira do correo electrónico, sen que o terceiro sexa o contrario) @@ -2167,6 +2168,9 @@ EmailTemplate=Modelo para correo electrónico EMailsWillHaveMessageID=Os correos electrónicos terán unha etiqueta "Referencias" que coincide con esta sintaxe PDF_SHOW_PROJECT=Amosar proxecto no documento ShowProjectLabel=Etiqueta do proxecto +PDF_INCLUDE_ALIAS_IN_THIRDPARTY_NAME=Incluír o alias no nome de terceiros +THIRDPARTY_ALIAS=Nome do terceiro - Alias do terceiro +ALIAS_THIRDPARTY=Alias do terceiros- Nome do terceiro PDF_USE_ALSO_LANGUAGE_CODE=Se desexa ter algúns textos no seu PDF duplicados en 2 idiomas diferentes no mesmo PDF xerado, debe configurar aquí este segundo idioma para que o PDF xerado conteña 2 idiomas diferentes na mesma páxina, o elixido ao xerar PDF e este (só algúns modelos PDF soportan isto). Mantéñase baleiro por un idioma por PDF. PDF_USE_A=Xera documentos PDF co formato PDF/A en lugar do formato PDF predeterminado FafaIconSocialNetworksDesc=Introduza aquí o código dunha icona FontAwesome. Se non sabe o que é FontAwesome, pode usar o valor xenérico fa-address-book. @@ -2248,13 +2252,21 @@ TemplateforBusinessCards=Padrón para unha tarxeta de visita de diferentes tama InventorySetup= Configuración do inventario ExportUseLowMemoryMode=Use un modo de memoria baixa ExportUseLowMemoryModeHelp=Use o modo de memoria baixa para executar o exec do volcado (a compresión faise a través dunha tubería en lugar de na memoria PHP). Este método non permite comprobar que o ficheiro está completo e non se pode informar coa mensaxe de erro se falla. + +ModuleWebhookName = Webhook +ModuleWebhookDesc = Interface para capturar os disparadores (triggers) dolibarr e envialos a un URL +WebhookSetup = Configuración de webhook +Settings = Configuracións +WebhookSetupPage = Páxina de configuración de webhook ShowQuickAddLink=Amosa un botón para engadir rapidamente un elemento no menú superior dereito + HashForPing=Hash usado para facer ping ReadOnlyMode=É unha instancia en modo "Só lectura". DEBUGBAR_USE_LOG_FILE=Use o ficheiro dolibarr.log para capturar rexistros UsingLogFileShowAllRecordOfSubrequestButIsSlower=Use o ficheiro dolibarr.log para capturar rexistros en lugar de capturar na memoria en directo. Permite capturar todos os rexistros en lugar de só o rexistro do proceso actual (incluíndo o das páxinas de subsolicitudes ajax), pero fará que a súa instancia sexa moi lenta. Non recomendado. FixedOrPercent=Fixo (use a palabra clave "fixo") ou porcentaxe (use a palabra clave "porcentaxe") DefaultOpportunityStatus=Estado de oportunidade predeterminado (primeiro estado cando se crea un cliente potencial) + IconAndText=Icona e texto TextOnly=Só texto IconOnlyAllTextsOnHover=Só icona: todos os textos aparecen debaixo da icona ao pasar o rato na barra de menú @@ -2262,4 +2274,15 @@ IconOnlyTextOnHover=Só icona: o texto da icona aparece debaixo da icona ao pasa IconOnly=Só icona: só texto na información sobre ferramentas INVOICE_ADD_ZATCA_QR_CODE=Mostra o código QR ZATCA nas facturas INVOICE_ADD_ZATCA_QR_CODEMore=Algúns países árabes necesitan este código QR nas súas facturas +INVOICE_ADD_SWISS_QR_CODE=Amosa o código suizo QR-Bill nas facturas UrlSocialNetworksDesc=Ligazón URL da rede social. Use {socialid} para a parte variable que contén o ID da rede social. +IfThisCategoryIsChildOfAnother=Se esta categoría é filla doutra +DarkThemeMode=Modo de tema escuro +AlwaysDisabled=Sempre desactivado +AccordingToBrowser=Segundo o navegador +AlwaysEnabled=Sempre activado +DoesNotWorkWithAllThemes=Non funcionará con todos os temas +NoName=Sen nome +ShowAdvancedOptions= Mostrar opcións avanzadas +HideAdvancedoptions= Ocultar opcións avanzadas +CIDLookupURL=O módulo trae un URL que pode ser usado por unha ferramenta externa para obter o nome dun terceiro ou contacto do seu número de teléfono. O URL a usar é: diff --git a/htdocs/langs/gl_ES/agenda.lang b/htdocs/langs/gl_ES/agenda.lang index 001480310bc..0ebe062b2f2 100644 --- a/htdocs/langs/gl_ES/agenda.lang +++ b/htdocs/langs/gl_ES/agenda.lang @@ -57,6 +57,7 @@ MemberValidatedInDolibarr=Membro %s validado MemberModifiedInDolibarr=Membro %s modificado MemberResiliatedInDolibarr=Membro %s rematado MemberDeletedInDolibarr=Membro %s eliminado +MemberExcludedInDolibarr=Membro %s excluído MemberSubscriptionAddedInDolibarr=Subscrición %s do membro %s engadida MemberSubscriptionModifiedInDolibarr=Subscrición %s do membro %s modificada MemberSubscriptionDeletedInDolibarr=Subscrición %s do membro %s eliminada diff --git a/htdocs/langs/gl_ES/boxes.lang b/htdocs/langs/gl_ES/boxes.lang index 4f3e0c6580a..1f43a5658b2 100644 --- a/htdocs/langs/gl_ES/boxes.lang +++ b/htdocs/langs/gl_ES/boxes.lang @@ -23,7 +23,7 @@ BoxLastMembersSubscriptions=Últimas subscricións de membros BoxFicheInter=Últimas intervencións BoxCurrentAccounts=Balance de contas abertas BoxTitleMemberNextBirthdays=Cumpreanos neste mes (Membros) -BoxTitleMembersByType=Membros por tipo +BoxTitleMembersByType=Membros por tipo e estado BoxTitleMembersSubscriptionsByYear=Subscricións de membros por ano BoxTitleLastRssInfos=Últimas %s novas de %s BoxTitleLastProducts=Produtos/Servizos: Últimos %s modificados @@ -46,6 +46,7 @@ BoxMyLastBookmarks=Últimos %s marcadores BoxOldestExpiredServices=Servizos antigos expirados BoxLastExpiredServices=Últimos %s contratos mais antigos con servizos expirados BoxTitleLastActionsToDo=Últimas %s accións a realizar +BoxTitleOldestActionsToDo=O evento %s máis antigo non se completou BoxTitleLastContracts=Últimos %s contratos que foron modificados BoxTitleLastModifiedDonations=Últimas %s subvencións/doazóns que foron modificadas BoxTitleLastModifiedExpenses=Últimos %s informes de gastos que foron modificados diff --git a/htdocs/langs/gl_ES/cashdesk.lang b/htdocs/langs/gl_ES/cashdesk.lang index 5663d5839a7..c836d8625ee 100644 --- a/htdocs/langs/gl_ES/cashdesk.lang +++ b/htdocs/langs/gl_ES/cashdesk.lang @@ -136,3 +136,10 @@ PrintWithoutDetails=Imprimir sen detalles YearNotDefined=O ano non está establecido TakeposBarcodeRuleToInsertProduct=Regra de código de barras para inserir o produto TakeposBarcodeRuleToInsertProductDesc=Regra para extraer a referencia do produto + unha cantidade dun código de barras escaneado.
Se está baleiro (valor predeterminado), a aplicación usará o código de barras escaneado completo para atopar o produto.

Se é definido, a sintaxe debe ser:
Ref:NB+qu:NB+qd:NB+outro:NB
onde RN é o número de caracteres a establecer para extraer os datos a partir do código de barras escaneado con:
  • ref : referencia produto
  • qu : cantidade de conxunto cando a inserción de elementos (unidades)
  • qd : cantidade de conxunto cando da inserción de elemento (decimais)
  • outro : outros caracteres
+AlreadyPrinted=Xa impreso +HideCategories=Ocultar categorías +HideStockOnLine=Ocultar existencias en liña +ShowOnlyProductInStock=Amosa os produtos en stock +ShowCategoryDescription=Amosa a descrición da categoría +ShowProductReference=Amosar referencia de produtos +UsePriceHT=Uso de preo excl. impostos e non prezo incl. impostos diff --git a/htdocs/langs/gl_ES/holiday.lang b/htdocs/langs/gl_ES/holiday.lang index 1478f1e5e91..3e8dd812c20 100644 --- a/htdocs/langs/gl_ES/holiday.lang +++ b/htdocs/langs/gl_ES/holiday.lang @@ -4,6 +4,7 @@ Holidays=Vacacións CPTitreMenu=Día libre MenuReportMonth=Estado mensual MenuAddCP=Novo pedimento de vacacións +MenuCollectiveAddCP=Nova solicitude de baixa colectiva NotActiveModCP=Debe activar o módulo Días libres para ver esta páxina AddCP=Realizar un pedimento de días libres DateDebCP=Data de inicio @@ -79,6 +80,8 @@ MotifCP=Razón UserCP=Usuario ErrorAddEventToUserCP=Aconteceu un erro na asignación do permiso excepcional. AddEventToUserOkCP=Engadiuse o permiso excepcional. +ErrorFieldRequiredUserOrGroup=Debe cubrirse o campo "grupo" ou o campo "usuario". +fusionGroupsUsers=O campo de grupos e o campo de usuario fusionaranse MenuLogCP=Ver rexistro de cambios LogCP=Rexistro de todas as actualizacións feitas a "Balance de vacacións" ActionByCP=Actualizado por @@ -86,6 +89,13 @@ UserUpdateCP=Actualizado para PrevSoldeCP=Saldo anterior NewSoldeCP=Novo saldo alreadyCPexist=Xa foi efectuada un pedimento de días libres para este período. +UseralreadyCPexist=Xa se fixo unha solicitude de baixa neste período para %s. +groups=Grupos +users=Usuarios +AutoSendMail=Correo automático +NewHolidayForGroup=Nova solicitude de baixa colectiva +SendRequestCollectiveCP=Enviar solicitude de baixa colectiva +AutoValidationOnCreate=Validación automática FirstDayOfHoliday=Día de inicio da solicitude de vacacións LastDayOfHoliday=Día de finalización da solicitude de vacacións BoxTitleLastLeaveRequests=Últimas %s solicitudes de días libres modificadas diff --git a/htdocs/langs/gl_ES/hrm.lang b/htdocs/langs/gl_ES/hrm.lang index 46542bdd313..f0507b7c979 100644 --- a/htdocs/langs/gl_ES/hrm.lang +++ b/htdocs/langs/gl_ES/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Abrir establecemento CloseEtablishment=Pechar establecemento # Dictionary DictionaryPublicHolidays=Permisos- Días Festivos -DictionaryDepartment=RRHH - Listaxe Departamentos +DictionaryDepartment=HRM - Unidade Organizativa DictionaryFunction=RRHH - Postos de traballo # Module Employees=Empregados @@ -70,9 +70,9 @@ RequiredSkills=Competencias precisas para este traballo UserRank=Rango de usuario SkillList=Listaxe de competencias SaveRank=Gardar rango -knowHow=Coñecemento -HowToBe=Como ser -knowledge=Coñecemento +TypeKnowHow=Coñecemento +TypeHowToBe=Como ser +TypeKnowledge=Coñecemento AbandonmentComment=Comentario de abandono DateLastEval=Data da última avaliación NoEval=Non se fixo ningunha avaliación para este empregado @@ -88,3 +88,4 @@ DeleteSkill = Competencia eliminada SkillsExtraFields=Atributos adicionais (Competencias) JobsExtraFields=Atributos adicionais (Postos) EvaluationsExtraFields=Atributos adicionais (avaliacións) +NeedBusinessTravels=Precisa viaxes de negocios diff --git a/htdocs/langs/gl_ES/install.lang b/htdocs/langs/gl_ES/install.lang index 81eb34ea2f4..a06074f1028 100644 --- a/htdocs/langs/gl_ES/install.lang +++ b/htdocs/langs/gl_ES/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=O ficheiro de configuración %s non se pode escribi ConfFileIsWritable=O ficheiro de configuración %s é escribíbel. ConfFileMustBeAFileNotADir=O ficheiro de configuración %s debe ser un ficheiro, non un directorio. ConfFileReload=Recargando parámetros do ficheiro de configuración. -NoReadableConfFileSoStartInstall=O ficheiro de configuración conf/conf.php non existe ou non se pode recuperar. Realizaremos o proceso de instalación para tentar inicializalo. +NoReadableConfFileSoStartInstall=O ficheiro de configuración conf/conf.php non existe ou non se pode ler. Realizaremos o proceso de instalación para tentar inicializalo. PHPSupportPOSTGETOk=Este PHP admite variables POST e GET. PHPSupportPOSTGETKo=É posible que a súa configuración de PHP non admita variables POST e/ou GET. Comprobe o parámetro variables_order en php.ini. PHPSupportSessions=Este PHP admite sesións. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Pode que escribise un valor incorrecto para o parám ErrorFailedToCreateDatabase=Fallo ao crear a base de datos '%s'. ErrorFailedToConnectToDatabase=Produciuse un fallo ao conectarse á base de datos '%s'. ErrorDatabaseVersionTooLow=A versión da base de datos (%s) é antiga de mais. É precisa a versión %s ou superior. -ErrorPHPVersionTooLow=A versión de PHP é antiga de mais. É precisa a versión %s. +ErrorPHPVersionTooLow=A versión de PHP é moi antiga. Requírese a versión %s ou superior. +ErrorPHPVersionTooHigh=Versión de PHP demasiado alta. Requírese a versión %s ou inferior. ErrorConnectedButDatabaseNotFound=Conexión correcta ao servidor pero non se atopou a base de datos '%s'. ErrorDatabaseAlreadyExists=A base de datos '%s' xa existe. +ErrorNoMigrationFilesFoundForParameters=Non se atopou ningún ficheiro de migración para as versións seleccionadas IfDatabaseNotExistsGoBackAndUncheckCreate=Se a base de datos non existe, volte atrás e marque a opción "Crear base de datos". IfDatabaseExistsGoBackAndCheckCreate=Se a base de datos xa existe, volte atrás e desmarque a opción "Crear base de datos". WarningBrowserTooOld=A versión do navegador é antiga de mais. É moi recomendable actualizar o seu navegador a unha versión recente de Firefox, Chrome ou Opera. diff --git a/htdocs/langs/gl_ES/languages.lang b/htdocs/langs/gl_ES/languages.lang index f420e7470fd..9bcd20be684 100644 --- a/htdocs/langs/gl_ES/languages.lang +++ b/htdocs/langs/gl_ES/languages.lang @@ -3,6 +3,7 @@ Language_am_ET=Etíope Language_ar_AR=Árabe Language_ar_DZ=Árabe (Alxeria) Language_ar_EG=Árabe (Exipto) +Language_ar_JO=Árabe (Xordania) Language_ar_MA=Árabe (Marrocos) Language_ar_SA=Árabe Language_ar_TN=Arabe (Tunez) @@ -12,9 +13,11 @@ Language_az_AZ=Azerí Language_bn_BD=Bengalí Language_bn_IN=Bengali (India) Language_bg_BG=Búlgaro +Language_bo_CN=Tibetano Language_bs_BA=Bosnio Language_ca_ES=Catalán Language_cs_CZ=Checo +Language_cy_GB=Galés Language_da_DA=Danés Language_da_DK=Danés Language_de_DE=Alemán @@ -22,6 +25,7 @@ Language_de_AT=Alemán (Austria) Language_de_CH=Alemán (Suíza) Language_el_GR=Grego Language_el_CY=Grego (Chipre) +Language_en_AE=Inglés (Emiratos Árabes Unidos) Language_en_AU=Inglés (Australia) Language_en_CA=Inglés (Canadá) Language_en_GB=Inglés (Reino Unido) @@ -36,6 +40,7 @@ Language_es_AR=Español (Arxentina) Language_es_BO=Español (Bolivia) Language_es_CL=Español (Chile) Language_es_CO=Español (Colombia) +Language_es_CR=Español (Costa Rica) Language_es_DO=Español (República Dominicana) Language_es_EC=Español (Ecuador) Language_es_GT=Español (Guatemala) @@ -83,18 +88,21 @@ Language_lt_LT=Lituano Language_lv_LV=Letón Language_mk_MK=Macedonio Language_mn_MN=Mongol +Language_my_MM=Birmano Language_nb_NO=Noruegués (Bokmål) Language_ne_NP=Nepali Language_nl_BE=Holandés (Bélxica) Language_nl_NL=Alemán Language_pl_PL=Polaco Language_pt_AO=Portugués (Ángola) +Language_pt_MZ=Portugués (Mozambique) Language_pt_BR=Portugués (Brasil) Language_pt_PT=Portugués Language_ro_MD=Rumano (Moldavia) Language_ro_RO=Romanés Language_ru_RU=Ruso Language_ru_UA=Ruso (Ucraína) +Language_ta_IN=Tamil Language_tg_TJ=Taxico Language_tr_TR=Turco Language_sl_SI=Esloveno @@ -106,6 +114,7 @@ Language_sr_RS=Serbio Language_sw_SW=Kiswahili Language_th_TH=Tailandés Language_uk_UA=Ucraíno +Language_ur_PK=Urdú Language_uz_UZ=Usbeco Language_vi_VN=Vietnamita Language_zh_CN=Chinés diff --git a/htdocs/langs/gl_ES/mails.lang b/htdocs/langs/gl_ES/mails.lang index c07d760d06c..fe60a5ecd61 100644 --- a/htdocs/langs/gl_ES/mails.lang +++ b/htdocs/langs/gl_ES/mails.lang @@ -178,3 +178,4 @@ IsAnAnswer=É unha resposta de un coreo electrónico recibido RecordCreatedByEmailCollector=Rexistro creado polo receptor de correo electrónico %s a partir do correo electrónico %s DefaultBlacklistMailingStatus=Valor predeterminado para o campo '%s' ao crear un novo contacto DefaultStatusEmptyMandatory=Baleiro pero obrigatorio +WarningLimitSendByDay=ADVERTENCIA: a configuración ou o contrato da súa instancia limita o seu número de correos electrónicos ao día a %s . Se tenta enviar máis, pode que a súa instancia se ralentice ou se suspenda. Poñase en contacto co seu servizo de asistencia se precisa unha cota máis alta. diff --git a/htdocs/langs/gl_ES/main.lang b/htdocs/langs/gl_ES/main.lang index 4b818e1fb4e..7bb2cfdf590 100644 --- a/htdocs/langs/gl_ES/main.lang +++ b/htdocs/langs/gl_ES/main.lang @@ -712,6 +712,7 @@ FeatureDisabled=Función desactivada MoveBox=Mover panel Offered=S/Custo NotEnoughPermissions=Non ten permisos para esta acción +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=Nome sesión Method=Método Receive=Recepción @@ -801,6 +802,7 @@ URLPhoto=Url da foto/logo SetLinkToAnotherThirdParty=Ligar a outro terceiro LinkTo=Ligar a LinkToProposal=Ligar a orzamento +LinkToExpedition= Ligazón á expedición LinkToOrder=Ligar a pedimento LinkToInvoice=Ligar a factura LinkToTemplateInvoice=Ligar o padrón de factura @@ -1177,3 +1179,4 @@ CommercialAffected=Representante de vendas afectado YourMessage=A súa mensaxe YourMessageHasBeenReceived=Recibiuse a súa mensaxe. Atenderemos ou contactaremos con vostede canto antes. UrlToCheck=URL para comprobar +Automation=Automatización diff --git a/htdocs/langs/gl_ES/members.lang b/htdocs/langs/gl_ES/members.lang index 87d54b4007c..5171252ef89 100644 --- a/htdocs/langs/gl_ES/members.lang +++ b/htdocs/langs/gl_ES/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=Data de finalización da filiación EndSubscription=Finalización da filiación SubscriptionId=ID de achega WithoutSubscription=Sen achega -MemberId=ID membro +MemberId=Id. do membro +MemberRef=Ref. Membro NewMember=Novo membro MemberType=Tipo de membro MemberTypeId=ID tipo de membro @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=O tipo de membro non pode ser eliminado NewSubscription=Nova afiliación NewSubscriptionDesc=Utilice este formulario para rexistrarse como un novo membro da asociación. Para unha renovación, se xa é membro, póñase en contacto coa asociación ao través do mail %s. Subscription=Achega +AnyAmountWithAdvisedAmount=Calquera cantidade cunha cantidade recomendada de %s %s +AnyAmountWithoutAdvisedAmount=Calquera cantidade +CanEditAmountShort=Calquera cantidade +CanEditAmountShortForValues=recomendado, calquera cantidade +MembershipDuration=Permanencia +GetMembershipButtonLabel=Obter a adhesión Subscriptions=Achegas SubscriptionLate=En atraso SubscriptionNotReceived=Achega nunca recibida @@ -135,7 +142,7 @@ CardContent=Contido da súa ficha de membro # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=Queremos comunicarlle que se recibiu a súa solicitude de adhesión

ThisIsContentOfYourMembershipWasValidated=Queremos comunicarlle que a súa subscrición foi validada coa seguinte información:

-ThisIsContentOfYourSubscriptionWasRecorded=Queremos comunicarlle de que se rexistrou a súa nova subscrición

+ThisIsContentOfYourSubscriptionWasRecorded=Queremos informarlle de que se rexistrou a súa nova subscrición. Atopará a súa factura aquí axunta.

ThisIsContentOfSubscriptionReminderEmail=Queremos comunicarlle que a súa subscrición está a piques de caducar ou xa caducou (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Agardamos que a renove

ThisIsContentOfYourCard=Este é un resumo da información que temos sobre vostede. Póñase en contacto connosco se hai algo incorrecto

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Asunto do correo electrónico de notificación recibido en caso de inscrición automática dun convidado @@ -198,7 +205,8 @@ NbOfSubscriptions=Número de achegas AmountOfSubscriptions=Cantidade recollida das achegas TurnoverOrBudget=Volumen de vendas (para empresa) ou Orzamento (para Fundación) DefaultAmount=Importe da achega por defecto -CanEditAmount=O visitante pode escoller/editar o importe da súa achega +CanEditAmount=O visitante pode escoller/editar a cantidade da súa contribución independentemente do tipo de membro +AmountIsLowerToMinimumNotice=un debito total de %s MEMBER_NEWFORM_PAYONLINE=Ir á páxina integrada de pagamento en liña ByProperties=Por natureza MembersStatisticsByProperties=Estatísticas dos membros por natureza diff --git a/htdocs/langs/gl_ES/modulebuilder.lang b/htdocs/langs/gl_ES/modulebuilder.lang index 69d0c02b528..5280728871a 100644 --- a/htdocs/langs/gl_ES/modulebuilder.lang +++ b/htdocs/langs/gl_ES/modulebuilder.lang @@ -1,4 +1,5 @@ # Dolibarr language file - Source file is en_US - loan +IdModule= ID do módulo ModuleBuilderDesc=Esta ferramenta só debe ser utilizada por usuarios ou desenvolvedores experimentados. Ofrece utilidades para construír ou editar o seu propio módulo. A documentación para o desenvolvemento manual alternativo está aquí EnterNameOfModuleDesc=Introduza o nome do módulo/aplicación que quere crear sen espazos. Use maiúsculas para separar palabras (por exemplo: MeuMódulo, TendaComercioElectrónico, SincronizarMeuSistema...) EnterNameOfObjectDesc=Introduza o nome do obxecto a crear sen espazos. Use maiúsculas para separar palabras (Por exemplo: O meu obxecto, Alumno, Profesor...). Xeraranse o ficheiro de clase CRUD, pero tamén o ficheiro API, páxinas para listar/engadir/editar/eliminar obxectos e ficheiros SQL. @@ -9,6 +10,7 @@ ModuleBuilderDesc4=Detéctase un módulo como "editable" cando o ficheiro $this->tabs
no ficheiro descritor do módulo. Pode editar este ficheiro manualmente ou usar o editor incorporado. +BadValueForType=Valor incorrecto para o tipo %s diff --git a/htdocs/langs/gl_ES/orders.lang b/htdocs/langs/gl_ES/orders.lang index b7b0abc7a20..f507393d4fc 100644 --- a/htdocs/langs/gl_ES/orders.lang +++ b/htdocs/langs/gl_ES/orders.lang @@ -1,4 +1,5 @@ # Dolibarr language file - Source file is en_US - orders +OrderExists=Xa estaba aberta un pedimento ligado a este orzamento, polo que non se creou outro pedimento automaticamente OrdersArea=Área pedimentos de clientes SuppliersOrdersArea=Área pedimentos a provedores OrderCard=Ficha pedimento diff --git a/htdocs/langs/gl_ES/paypal.lang b/htdocs/langs/gl_ES/paypal.lang index 1544765cc29..596b4ab66d7 100644 --- a/htdocs/langs/gl_ES/paypal.lang +++ b/htdocs/langs/gl_ES/paypal.lang @@ -1,6 +1,6 @@ # Dolibarr language file - Source file is en_US - paypal PaypalSetup=Configuración do módulo PayPal -PaypalDesc=Este módulo permite pagos de clientes vía Paypal. Isto pode usarse para realizar calquera pago en relación cun obxecto Dolibarr (facturas, pedimentos ...) +PaypalDesc=Este módulo permite o pagamento dos clientes vía PayPal. Pódese utilizar para un pagamento ad-hoc ou para un pagamento relacionado cun obxecto Dolibarr (factura, pedidmento, ...) PaypalOrCBDoPayment=Pagar con Paypal (tarxeta ou Paypal) PaypalDoPayment=Pago mediante Paypal PAYPAL_API_SANDBOX=Modo de probas/sandbox @@ -34,3 +34,4 @@ ARollbackWasPerformedOnPostActions=Foi executada unha reversión en todas as acc ValidationOfPaymentFailed=A validación do pago Paypal fallou CardOwner=Titular da tarxeta PayPalBalance=Crédito paypal +OnlineSubscriptionPaymentLine=Subscrición en liña rexistrada en %s
Pago a través de %s
Enderezo IP de orixe: %s
ID de transacción: %s diff --git a/htdocs/langs/gl_ES/projects.lang b/htdocs/langs/gl_ES/projects.lang index bd007acdfd2..55315c917ef 100644 --- a/htdocs/langs/gl_ES/projects.lang +++ b/htdocs/langs/gl_ES/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=Tenpo empregado facturado TimeSpentForIntervention=Tempo empregado TimeSpentForInvoice=Tempo empregado OneLinePerUser=Unha liña por usuario -ServiceToUseOnLines=Servizo a usar en liñas +ServiceToUseOnLines=Servizo para usar nas liñas por defecto InvoiceGeneratedFromTimeSpent=Factura %s foi xerada co tempo empregado no proxecto InterventionGeneratedFromTimeSpent=A intervención %s xerouse a partir do tempo adicado ao proxecto ProjectBillTimeDescription=Comprobe se introduce unha folla de tempo nas tarefas do proxecto e planea xerar factura(s) a partir da folla de tempo para facturar ao cliente do proxecto (non comprobe se pensa crear unha factura que non estexa baseada nas follas de traballo introducidas). Nota: para xerar factura, vaia a pestana "Tempo empregado" do proxecto e selecciona as liñas a incluír. @@ -294,3 +294,4 @@ EnablePublicLeadForm=Activa o formulario público de contacto NewLeadbyWeb=A súa mensaxe ou solicitude foi gardada. Atenderemos ou contactaremos con vostede en breve. NewLeadForm=Novo formulario de contacto LeadFromPublicForm=Liderar en liña desde un formulario público +ExportAccountingReportButtonLabel=Obter informe diff --git a/htdocs/langs/gl_ES/stocks.lang b/htdocs/langs/gl_ES/stocks.lang index 191fd19bedf..0d6311a63a3 100644 --- a/htdocs/langs/gl_ES/stocks.lang +++ b/htdocs/langs/gl_ES/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Límite stock para alertas e stock óptimo desxeado ProductStockWarehouseUpdated=Límite stock para alertas e stock óptimo desexado actualizado correctamente ProductStockWarehouseDeleted=Límite stock para alertas e stock óptimo desexado eliminado correctamente AddNewProductStockWarehouse=Indicar novo límite para alertas e stock óptimo desexado -AddStockLocationLine=Disminúa a cantidade, e a continuación, prema para agregar outro almacén para este produto +AddStockLocationLine=Diminua a cantidade e prema para dividir a liña InventoryDate=Data inventario Inventories=Inventarios NewInventory=Novo inventario @@ -254,7 +254,7 @@ ReOpen=Abrir de novo ConfirmFinish=Está certo de querer pechar o inventario? Isto xerará todos os movementos de stock para actualizar o stock á cantidade real que ingresou no inventario. ObjectNotFound=%s non foi atopado MakeMovementsAndClose=Xera movementos e pecha -AutofillWithExpected=Substitúe a cantidade real pola cantidade agardada +AutofillWithExpected=Encher a cantidade real coa cantidade agardada ShowAllBatchByDefault=De xeito predeterminado, amosa os detalles do lote na lapela "stock" do produto CollapseBatchDetailHelp=Pode configurar a visualización predeterminada do detalle do lote na configuración do modulo stocks ErrorWrongBarcodemode=Modo de código de barras descoñecido @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Produtos con código de barras inexistente WarehouseId=Id do almacén WarehouseRef=Referencia do almacén SaveQtyFirst=Garda primeiro as cantidades reais inventariadas, antes de solicitar a creación do movemento de stock. +ToStart=Inciciar InventoryStartedShort=Pagamento parcial ErrorOnElementsInventory=A operación cancelouse polo seguinte motivo: ErrorCantFindCodeInInventory=Non se pode atopar o seguinte código no inventario QtyWasAddedToTheScannedBarcode=Feito!! Engadiuse a cantidade a todos os códigos de barras solicitados. Pode pechar a ferramenta de escáner. StockChangeDisabled=Cambio de stock desactivado NoWarehouseDefinedForTerminal=Non hai un almacén definido para a terminal +ClearQtys=Borrar todas as cantidades +ModuleStockTransferName=Transferencia de stock avanzada +ModuleStockTransferDesc=Xestión avanzada de Transferencia de Stocks, con xeración de folla de transferencia +StockTransferNew=Nova transferencia de existencias +StockTransferList=Lista de transferencias de existencias +ConfirmValidateStockTransfer=Está certo de querer validar esta transferencia de stocks coa referencia %s ? +ConfirmDestock=Diminución de stocks con transferencia %s +ConfirmDestockCancel=Cancelar diminución de existéncias con transferencia %s +DestockAllProduct=Diminución de existéncias +DestockAllProductCancel=Cancelar diminución de existéncias +ConfirmAddStock=Aumenta as existéncias coa transferencia %s +ConfirmAddStockCancel=Cancelar aumento de existéncias coa transferencia %s +AddStockAllProduct=Aumento de existéncias +AddStockAllProductCancel=Cancelar aumento de existéncias +DatePrevueDepart=Data prevista de saída +DateReelleDepart=Data real de saída +DatePrevueArrivee=Data prevista de chegada +DateReelleArrivee=Data real de chegada +HelpWarehouseStockTransferSource=Se este almacén está configurado, só estarán dispoñibles el mesmo e os seus fillos como almacén de orixe +HelpWarehouseStockTransferDestination=Se este almacén está configurado, só estarán dispoñibles el mesmo e os seus fillos como almacén de destino +LeadTimeForWarning=Prazo de execución antes da alerta (en días) +TypeContact_stocktransfer_internal_STFROM=Remitente da transferencia de existéncias +TypeContact_stocktransfer_internal_STDEST=Destinatario da transferencia de existéncias +TypeContact_stocktransfer_internal_STRESP=Responsable de transferencia de existencias +StockTransferSheet=Folla de transferencia de existéncias +StockTransferSheetProforma=Proforma da folla de transferencia de existéncias +StockTransferDecrementation=Diminuír os almacéns orixe +StockTransferIncrementation=Aumentar os almacéns de destino +StockTransferDecrementationCancel=Cancelar a diminución dos almacéns orixe +StockTransferIncrementationCancel=Cancelar aumento de almacéns de destino +StockStransferDecremented=Os almacéns orixe diminuíron +StockStransferDecrementedCancel=Cancelouse a diminución dos almacéns orixe +StockStransferIncremented=Pechado - As existéncias foron transferidas +StockStransferIncrementedShort=Existéncias transferidas +StockStransferIncrementedShortCancel=Aumento de almacéns de destino cancelados +StockTransferNoBatchForProduct=O produto %s non usa lote, borre o lote en liña e ténteo de novo +StockTransferSetup = Configuración do módulo de transferencia de existéncias +Settings=Configuracións +StockTransferSetupPage = Páxina de configuración do módulo de transferencia de existéncias +StockTransferRightRead=Ler transferencias de existéncias +StockTransferRightCreateUpdate=Crear/Actualizar transferencias de existéncias +StockTransferRightDelete=Eliminar transferencias de existéncias +BatchNotFound=Lote/serie non atopada para este produto diff --git a/htdocs/langs/gl_ES/suppliers.lang b/htdocs/langs/gl_ES/suppliers.lang index b49ac0b2e86..c706ba4232d 100644 --- a/htdocs/langs/gl_ES/suppliers.lang +++ b/htdocs/langs/gl_ES/suppliers.lang @@ -4,6 +4,7 @@ SuppliersInvoice=Factura de provedor SupplierInvoices=Facturas de provedores ShowSupplierInvoice=Ver factura de provedor NewSupplier=Novo provedor +NewSupplierInvoice = Nova factura do provedor History=Histórico ListOfSuppliers=Listaxe de provedores ShowSupplier=Ver provedor @@ -47,3 +48,10 @@ BuyerName=Nome do comprador AllProductServicePrices=Todos os prezos de produto/servizo AllProductReferencesOfSupplier=Todas as referencias de provedores de produto/servizo BuyingPriceNumShort=Prezos provedor +RepeatableSupplierInvoice=Padrón de factura do provedor +RepeatableSupplierInvoices=Padrón de facturas de provedores +RepeatableSupplierInvoicesList=Padrón de facturas de provedores +RecurringSupplierInvoices=Facturas de provedores recorrentes +ToCreateAPredefinedSupplierInvoice=Para crear un padrón de factura de provedor, debe crear unha factura estándar, despois, sen validala, premer no botón "%s". +GeneratedFromSupplierTemplate=Xerado a partir do modelo de factura do provedor %s +SupplierInvoiceGeneratedFromTemplate=Factura de provedor %s Xerada a partir do padrón de factura do provedor %s diff --git a/htdocs/langs/gl_ES/ticket.lang b/htdocs/langs/gl_ES/ticket.lang index acf19a6f6d0..d266ef22e0c 100644 --- a/htdocs/langs/gl_ES/ticket.lang +++ b/htdocs/langs/gl_ES/ticket.lang @@ -90,8 +90,8 @@ TicketPublicAccess=Na seguinte url está dispoñible unha interface pública que TicketSetupDictionaries=Os tipos de categorías e os niveis de gravidade podense configurar nos diccionarios TicketParamModule=Configuración de variables do módulo TicketParamMail=Configuración de correo electrónicol -TicketEmailNotificationFrom=Correo electrónico do remitente para as respostas dos tickets -TicketEmailNotificationFromHelp=Correo electrónico do remitente para as respostas dos tickets enviadas desde Dolibarr +TicketEmailNotificationFrom=Sender e-mail for notification on answers +TicketEmailNotificationFromHelp=Sender e-mail to use to send the notification email when an answer is provided inside the backoffice. For example noreply@example.com TicketEmailNotificationTo=Notificar a creación do ticket a este enderezo de correo electrónico TicketEmailNotificationToHelp=Se está presente, este enderezo de correo electrónico será notificado da creación dun ticket TicketNewEmailBodyLabel=Mensaxe de texto enviado despois de crear un ticket diff --git a/htdocs/langs/he_IL/holiday.lang b/htdocs/langs/he_IL/holiday.lang index c5aa045afc3..5be0b1d6433 100644 --- a/htdocs/langs/he_IL/holiday.lang +++ b/htdocs/langs/he_IL/holiday.lang @@ -4,6 +4,7 @@ Holidays=Leave CPTitreMenu=Leave MenuReportMonth=Monthly statement MenuAddCP=New leave request +MenuCollectiveAddCP=New collective leave request NotActiveModCP=You must enable the module Leave to view this page. AddCP=Make a leave request DateDebCP=Start date @@ -79,6 +80,8 @@ MotifCP=Reason UserCP=User ErrorAddEventToUserCP=An error occurred while adding the exceptional leave. AddEventToUserOkCP=The addition of the exceptional leave has been completed. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=View change logs LogCP=Log of all updates made to "Balance of Leave" ActionByCP=Updated by @@ -86,6 +89,13 @@ UserUpdateCP=Updated for PrevSoldeCP=Previous Balance NewSoldeCP=New Balance alreadyCPexist=A leave request has already been done on this period. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=קבוצות +users=משתמשים +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Beginning day of leave request LastDayOfHoliday=Ending day of leave request BoxTitleLastLeaveRequests=Latest %s modified leave requests diff --git a/htdocs/langs/hr_HR/accountancy.lang b/htdocs/langs/hr_HR/accountancy.lang index 383c8595b33..980fddf24f7 100644 --- a/htdocs/langs/hr_HR/accountancy.lang +++ b/htdocs/langs/hr_HR/accountancy.lang @@ -48,8 +48,9 @@ CountriesNotInEEC=Zomlje koje nisu u EEC CountriesInEECExceptMe=Zemlje u EEC-u osim %s CountriesExceptMe=Sve zemlje osim %s AccountantFiles=Izvoz izvornih dokumenata -ExportAccountingSourceDocHelp=Pomoću ovog alata možete izvesti izvorne događaje (popis u CSV-u i PDF-ovima) koji se koriste za generiranje vašeg računovodstva. +ExportAccountingSourceDocHelp=With this tool, you can search and export the source events that are used to generate your accountancy.
The exported ZIP file will contain the lists of requested items in CSV, as well as their attached files in their original format (PDF, ODT, DOCX...). ExportAccountingSourceDocHelp2=To export your journals, use the menu entry %s - %s. +ExportAccountingProjectHelp=Specify a project if you need an accounting report only for a specific project. Expense reports and loan payments are not included in project reports. VueByAccountAccounting=View by accounting account VueBySubAccountAccounting=View by accounting subaccount @@ -161,7 +162,7 @@ BANK_DISABLE_DIRECT_INPUT=Onemogućite izravno bilježenje transakcije na bankov ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL=Enable draft export on journal ACCOUNTANCY_COMBO_FOR_AUX=Enable combo list for subsidiary account (may be slow if you have a lot of third parties, break ability to search on a part of value) 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_DEFAULT_PERIOD_ON_TRANSFER=On accountancy transfer, what is the period selected by default ACCOUNTING_SELL_JOURNAL=Sell journal ACCOUNTING_PURCHASE_JOURNAL=Purchase journal @@ -182,7 +183,7 @@ DONATION_ACCOUNTINGACCOUNT=Accounting account to register donations ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=Accounting account to register subscriptions ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=Accounting account by default to register customer deposit -UseAuxiliaryAccountOnCustomerDeposit=Use sub-accounts on customer deposit lines +UseAuxiliaryAccountOnCustomerDeposit=Store customer account as individual account in subsidiary ledger for lines of down payments (if disabled, individual account for down payment lines will remain empty) ACCOUNTING_PRODUCT_BUY_ACCOUNT=Accounting account by default for the bought products (used if not defined in the product sheet) ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT=Accounting account by default for the bought products in EEC (used if not defined in the product sheet) @@ -332,7 +333,7 @@ ACCOUNTING_DISABLE_BINDING_ON_EXPENSEREPORTS=Disable binding & transfer in accou ## Export NotifiedExportDate=Flag exported lines as Exported (to modify a line, you will need to delete the whole transaction and re-transfert it into accounting) -NotifiedValidationDate=Validate and Lock the exported entries (same effect than the "Closure" feature, modification and deletion of the lines will DEFINITELY not be possible) +NotifiedValidationDate=Validate and Lock the exported entries (same effect than the "%s" feature, modification and deletion of the lines will DEFINITELY not be possible) DateValidationAndLock=Potvrda datuma i zaključavanje ConfirmExportFile=Potvrda generiranja datoteke za izvoz računovodstva? ExportDraftJournal=Export draft journal @@ -427,6 +428,7 @@ SorryThisModuleIsNotCompatibleWithTheExperimentalFeatureOfSituationInvoices=Naž AccountancyErrorMismatchLetterCode=Mismatch in reconcile code AccountancyErrorMismatchBalanceAmount=The balance (%s) is not equal to 0 AccountancyErrorLetteringBookkeeping=Errors have occurred concerning the transactions: %s +ErrorAccountNumberAlreadyExists=The accounting number %s already exists ## Import ImportAccountingEntries=Accounting entries diff --git a/htdocs/langs/hr_HR/holiday.lang b/htdocs/langs/hr_HR/holiday.lang index c75cc5b15bf..df4ae4cc334 100644 --- a/htdocs/langs/hr_HR/holiday.lang +++ b/htdocs/langs/hr_HR/holiday.lang @@ -4,6 +4,7 @@ Holidays=Napusti CPTitreMenu=Napusti MenuReportMonth=Mjesečna izjava MenuAddCP=Novi zahtjev odsustva +MenuCollectiveAddCP=New collective leave request NotActiveModCP=You must enable the module Leave to view this page. AddCP=Izradi zahtjev odsustva DateDebCP=Datum početka @@ -79,6 +80,8 @@ MotifCP=Razlog UserCP=Korisnik ErrorAddEventToUserCP=Dogodila se greška kod dodavanja specijalnog odsustva. AddEventToUserOkCP=Dodatak specijalnog odsustva je završen. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=Pregled dnevnika promjena LogCP=Log of all updates made to "Balance of Leave" ActionByCP=Ažurirao @@ -86,6 +89,13 @@ UserUpdateCP=Ažurirano za PrevSoldeCP=Prijašnje stanje NewSoldeCP=Novo stanje alreadyCPexist=Zahtjev je već napravljen za ovaj period. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Grupe +users=Korisnici +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Beginning day of leave request LastDayOfHoliday=Ending day of leave request BoxTitleLastLeaveRequests=Zadnja %s izmijenjena zahtjeva za odlaskom diff --git a/htdocs/langs/hr_HR/hrm.lang b/htdocs/langs/hr_HR/hrm.lang index ef7455c6bc0..97ebcf09c91 100644 --- a/htdocs/langs/hr_HR/hrm.lang +++ b/htdocs/langs/hr_HR/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Otvori ustanovu CloseEtablishment=Zatvori ustanovu # Dictionary DictionaryPublicHolidays=Leave - Public holidays -DictionaryDepartment=HRM - popis odjela +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM - Job positions # Module Employees=Zaposlenici @@ -70,9 +70,9 @@ RequiredSkills=Required skills for this job UserRank=User Rank SkillList=Popis vještina SaveRank=Save rank -knowHow=Know how -HowToBe=How to be -knowledge=Znanje +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Znanje AbandonmentComment=Abandonment comment DateLastEval=Date last evaluation NoEval=No evaluation done for this employee @@ -88,3 +88,4 @@ DeleteSkill = Vještina uklonjena SkillsExtraFields=Attributs supplémentaires (Compétences) JobsExtraFields=Attributs supplémentaires (Emplois) EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/hr_HR/install.lang b/htdocs/langs/hr_HR/install.lang index 2bfd21a7d5b..5195a2e170d 100644 --- a/htdocs/langs/hr_HR/install.lang +++ b/htdocs/langs/hr_HR/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=U konfiguracijsku datoteku %s nije moguće pisati ConfFileIsWritable=U konfiguracijsku datoteku %s može se pisati. ConfFileMustBeAFileNotADir=Konfiguracijska datoteka %s mora biti datoteka, a ne direktorij. ConfFileReload=Ponovno učitavanje parametara iz konfiguracijske datoteke. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=Ovaj PHP podržava varijable POST i GET. PHPSupportPOSTGETKo=Moguće je da vaša PHP postavka ne podržava varijable POST i/ili GET. Provjerite parametar variables_order u php.ini. PHPSupportSessions=Ovaj PHP podržava sesije. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Možda ste upisali pogrešnu vrijednost za parametar ErrorFailedToCreateDatabase=Kreiranje baze podataka '%s' nije uspjelo. ErrorFailedToConnectToDatabase=Povezivanje s bazom podataka '%s' nije uspjelo. ErrorDatabaseVersionTooLow=Verzija baze podataka (%s) prestara. Potrebna je verzija %s ili novija. -ErrorPHPVersionTooLow=PHP verzija prestara. Potrebna je verzija %s. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Povezivanje s poslužiteljem uspjelo, ali baza podataka '%s' nije pronađena. ErrorDatabaseAlreadyExists=Baza podataka '%s' već postoji. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=Ako baza podataka ne postoji, vratite se i označite opciju "Kreiraj bazu podataka". IfDatabaseExistsGoBackAndCheckCreate=Ako baza podataka već postoji, vratite se i poništite opciju "Kreiraj bazu podataka". WarningBrowserTooOld=Verzija preglednika je prestara. Preporuča se nadogradnja preglednika na najnoviju verziju Firefoxa, Chromea ili Opera. diff --git a/htdocs/langs/hr_HR/main.lang b/htdocs/langs/hr_HR/main.lang index 232675f84c9..f4cb6a922b8 100644 --- a/htdocs/langs/hr_HR/main.lang +++ b/htdocs/langs/hr_HR/main.lang @@ -345,7 +345,7 @@ KiloBytes=Kilobytes MegaBytes=Megabytes GigaBytes=Gigabytes TeraBytes=Terabytes -UserAuthor=Kreirao +UserAuthor=Izradio UserModif=Ažurirao b=b. Kb=Kb @@ -712,6 +712,7 @@ FeatureDisabled=Mogućnost isključena MoveBox=Pomakni prozorčić Offered=Ponuđeno NotEnoughPermissions=Nemate dozvolu za ovu radnju +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=Naziv sjednice Method=Način Receive=Primi @@ -801,6 +802,7 @@ URLPhoto=URL slike/loga SetLinkToAnotherThirdParty=Poveži s drugom trećom osobom LinkTo=Poveži s LinkToProposal=Poveži s ponudom +LinkToExpedition= Link to expedition LinkToOrder=Poveži s narudžbom LinkToInvoice=Poveži s računom LinkToTemplateInvoice=Poveznica na predložak računa @@ -1174,3 +1176,7 @@ ConfirmAllocateCommercial=Dodijelite potvrdu prodajnog predstavnika ConfirmAllocateCommercialQuestion=Jeste li sigurni da želite dodijeliti %s odabrane zapise? CommercialsAffected=Pogođeni su prodajni predstavnici CommercialAffected=Pogođen prodajni predstavnik +YourMessage=Your message +YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. +UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/hr_HR/members.lang b/htdocs/langs/hr_HR/members.lang index c9f9e655789..c7c41ca4d82 100644 --- a/htdocs/langs/hr_HR/members.lang +++ b/htdocs/langs/hr_HR/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=Datum završetka članstva EndSubscription=Kraj članstva SubscriptionId=Pretplata ID WithoutSubscription=Bez pretplate -MemberId=Član ID +MemberId=Member Id +MemberRef=Member Ref NewMember=Novi član MemberType=Vrsta člana MemberTypeId=Vrsta ID člana @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Vrsta člana ne može se izbrisati NewSubscription=Nova pretplata NewSubscriptionDesc=This form allows you to record your subscription as a new member of the foundation. If you want to renew your subscription (if already a member), please contact foundation board instead by email %s. Subscription=Pretplata +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Trajanje +GetMembershipButtonLabel=Get membership Subscriptions=Pretplate SubscriptionLate=Kasni SubscriptionNotReceived=Pretplata nikad zaprimljena @@ -135,7 +142,7 @@ CardContent=Sadržaj vaše članske kartice # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=We want to let you know that your membership request was received.

ThisIsContentOfYourMembershipWasValidated=We want to let you know that your membership was validated with the following information:

-ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=We want to let you know that your subscription is about to expire or has already expired (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). We hope you will renew it.

ThisIsContentOfYourCard=This is a summary of the information we have about you. Please contact us if anything is incorrect.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Subject of the notification email received in case of auto-inscription of a guest @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=Promet (za tvrtke) ili proračun (za zaklade) DefaultAmount=Default amount of contribution -CanEditAmount=Posjetitelj može odabrati/mjenjati iznos svoje pretplate +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Idi na integriranu stranicu online plaćanja ByProperties=Po karakteristikama MembersStatisticsByProperties=Statistika članova po karakteristikama @@ -218,3 +226,5 @@ XExternalUserCreated=Stvoreni su %s vanjski korisnik(i). ForceMemberNature=Force member nature (Individual or Corporation) CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/hr_HR/projects.lang b/htdocs/langs/hr_HR/projects.lang index c9740e10f82..288e3360083 100644 --- a/htdocs/langs/hr_HR/projects.lang +++ b/htdocs/langs/hr_HR/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=Naplaćeno utrošeno vrijeme TimeSpentForIntervention=Vrijeme utrošeno TimeSpentForInvoice=Vrijeme utrošeno OneLinePerUser=Jedna linija po korisniku -ServiceToUseOnLines=Usluga za uporabu na linijama +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=Račun %s generiran je od vremena utrišenog na projektu InterventionGeneratedFromTimeSpent=Intervention %s has been generated from time spent on project ProjectBillTimeDescription=Check if you enter timesheet on tasks of project AND you plan to generate invoice(s) from the timesheet to bill the customer of the project (do not check if you plan to create invoice that is not based on entered timesheets). Note: To generate invoice, go on tab 'Time spent' of the project and select lines to include. @@ -294,3 +294,4 @@ EnablePublicLeadForm=Enable the public form for contact NewLeadbyWeb=Your message or request has been recorded. We will answer or contact your soon. NewLeadForm=New contact form LeadFromPublicForm=Online lead from public form +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/hr_HR/stocks.lang b/htdocs/langs/hr_HR/stocks.lang index 25ade6808fb..e08ea88cd01 100644 --- a/htdocs/langs/hr_HR/stocks.lang +++ b/htdocs/langs/hr_HR/stocks.lang @@ -265,6 +265,7 @@ ProductBarcodeDoesNotExist=Proizvod s bar kodom ne postoji WarehouseId=ID skladišta WarehouseRef=Warehouse Ref SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ToStart=Početak InventoryStartedShort=Započeto ErrorOnElementsInventory=Operation canceled for the following reason: ErrorCantFindCodeInInventory=Can't find the following code in inventory @@ -272,3 +273,45 @@ QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requ StockChangeDisabled=Promjena zaliha onemogućena NoWarehouseDefinedForTerminal=No warehouse defined for terminal ClearQtys=Očistite sve količine +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=Postavke +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/hu_HU/accountancy.lang b/htdocs/langs/hu_HU/accountancy.lang index 22aeeef35d9..e7f2941da52 100644 --- a/htdocs/langs/hu_HU/accountancy.lang +++ b/htdocs/langs/hu_HU/accountancy.lang @@ -48,8 +48,9 @@ CountriesNotInEEC=Az EGK-n kívüli országok CountriesInEECExceptMe=Az EGK országai, kivéve %s CountriesExceptMe=Minden ország, kivéve %s AccountantFiles=Forrásdokumentumok exportálása -ExportAccountingSourceDocHelp=Ezzel az eszközzel exportálhatja azokat a forráseseményeket (listát CSV-ben és PDF-ben), amelyek a könyvelés létrehozására szolgálnak. +ExportAccountingSourceDocHelp=With this tool, you can search and export the source events that are used to generate your accountancy.
The exported ZIP file will contain the lists of requested items in CSV, as well as their attached files in their original format (PDF, ODT, DOCX...). ExportAccountingSourceDocHelp2=A naplók exportálásához használja a %s - %s menüpontot. +ExportAccountingProjectHelp=Specify a project if you need an accounting report only for a specific project. Expense reports and loan payments are not included in project reports. VueByAccountAccounting=Megtekintés könyvelési fiók szerint VueBySubAccountAccounting=Megtekintés könyvelési alfiók szerint @@ -161,7 +162,7 @@ BANK_DISABLE_DIRECT_INPUT=Tranzakció közvetlen rögzítésének letiltása a b ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL=Piszkozatexport engedélyezése a naplóban ACCOUNTANCY_COMBO_FOR_AUX=Kombinációs lista engedélyezése a leányfiókhoz (lassú lehet, ha sok harmadik fél van, és megszakad az érték egy részének keresése) ACCOUNTING_DATE_START_BINDING=Határozzon meg egy dátumot a könyvelésben a kötés és átvitel megkezdéséhez. Ezen időpont alatt a tranzakciók nem kerülnek át a könyvelésbe. -ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=A könyvelési átutaláshoz válassza ki az időszakot alapértelmezés szerint +ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=On accountancy transfer, what is the period selected by default ACCOUNTING_SELL_JOURNAL=Eladó napló ACCOUNTING_PURCHASE_JOURNAL=Vásárlási napló @@ -182,7 +183,7 @@ DONATION_ACCOUNTINGACCOUNT=Számviteli fiók az adományok regisztrálásához ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=Számviteli fiók az előfizetések regisztrálásához ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=Alapértelmezés szerint számlaszámla az ügyfél befizetésének regisztrálásához -UseAuxiliaryAccountOnCustomerDeposit=Használjon alszámlákat az ügyfelek betéti sorain +UseAuxiliaryAccountOnCustomerDeposit=Store customer account as individual account in subsidiary ledger for lines of down payments (if disabled, individual account for down payment lines will remain empty) ACCOUNTING_PRODUCT_BUY_ACCOUNT=Alapértelmezés szerint a vásárolt termékek számviteli fiókja (használjuk, ha nincs megadva a terméklapon) ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT=Alapértelmezés szerint az EGK-ban vásárolt termékek számviteli fiókja (használjuk, ha nincs megadva a terméklapon) @@ -332,7 +333,7 @@ ACCOUNTING_DISABLE_BINDING_ON_EXPENSEREPORTS=A kötés és átvitel letiltása a ## Export NotifiedExportDate=Az exportált sorok megjelölése exportáltként (a sorok módosítása nem lehetséges) -NotifiedValidationDate=Érvényesítse az exportált bejegyzéseket (a sorok módosítása vagy törlése nem lehetséges) +NotifiedValidationDate=Validate and Lock the exported entries (same effect than the "%s" feature, modification and deletion of the lines will DEFINITELY not be possible) DateValidationAndLock=Dátumellenőrzés és zárolás ConfirmExportFile=A számviteli exportfájl létrehozásának megerősítése? ExportDraftJournal=Vázlatos napló exportálása @@ -427,6 +428,7 @@ SorryThisModuleIsNotCompatibleWithTheExperimentalFeatureOfSituationInvoices=Sajn AccountancyErrorMismatchLetterCode=Nem egyezik az egyeztető kód AccountancyErrorMismatchBalanceAmount=Az egyenleg (%s) nem egyenlő 0-val AccountancyErrorLetteringBookkeeping=Hibák történtek a következő tranzakciókkal kapcsolatban: %s +ErrorAccountNumberAlreadyExists=The accounting number %s already exists ## Import ImportAccountingEntries=Számviteli bejegyzések diff --git a/htdocs/langs/hu_HU/holiday.lang b/htdocs/langs/hu_HU/holiday.lang index ff7ace94f57..45f4dd70d20 100644 --- a/htdocs/langs/hu_HU/holiday.lang +++ b/htdocs/langs/hu_HU/holiday.lang @@ -4,6 +4,7 @@ Holidays=Szabadság CPTitreMenu=Szabadság MenuReportMonth=Havi kimutatás MenuAddCP=Új szabadságkérelem +MenuCollectiveAddCP=New collective leave request NotActiveModCP=Engedélyeznie kell az Szabadság modult az oldal megtekintéséhez. AddCP=Szabadság kérelem létrehozása DateDebCP=Kezdő dátum @@ -79,6 +80,8 @@ MotifCP=Ok UserCP=Felhasználó ErrorAddEventToUserCP=Hiba történt a kivételes szabadság hozzáadása közben. AddEventToUserOkCP=A rendkívüli szabadság hozzáadása befejeződött. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=Változásnaplók megtekintése LogCP=A "Szabadság egyenleg" összes frissítésének naplója ActionByCP=Frissítette @@ -86,6 +89,13 @@ UserUpdateCP=Frissítve ehhez PrevSoldeCP=Előző egyenleg NewSoldeCP=Új egyenleg alreadyCPexist=Erre az időszakra már küldtek szabadság kérelmet. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Csoportok +users=Felhasználók +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=A szabadság kérelmének kezdő napja LastDayOfHoliday=A szabadság kérelmének utolsó napja BoxTitleLastLeaveRequests=A legutóbbi %s módosított szabadság kérelem diff --git a/htdocs/langs/hu_HU/hrm.lang b/htdocs/langs/hu_HU/hrm.lang index 575398a8e3a..5966e3de446 100644 --- a/htdocs/langs/hu_HU/hrm.lang +++ b/htdocs/langs/hu_HU/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Nyitott létesítmény CloseEtablishment=Létesítmény bezárása # Dictionary DictionaryPublicHolidays=Szabadság - Munkaszüneti napok -DictionaryDepartment=HRM - Osztálylista +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM – Munkaköri pozíciók # Module Employees=Alkalmazottak @@ -70,9 +70,9 @@ RequiredSkills=Szükséges készségek ehhez a munkához UserRank=Felhasználói rang SkillList=Képességlista SaveRank=Rang mentése -knowHow=Szakértelem -HowToBe=Hogyan legyünk -knowledge=tudás +TypeKnowHow=Szakértelem +TypeHowToBe=Hogyan legyünk +TypeKnowledge=tudás AbandonmentComment=Elhagyó megjegyzés DateLastEval=Utolsó értékelés dátuma NoEval=Nem történt értékelés ehhez az alkalmazotthoz @@ -88,3 +88,4 @@ DeleteSkill = Képesség eltávolítva SkillsExtraFields=További tulajdonságok (készségek) JobsExtraFields=További tulajdonságok (munkahelyek) EvaluationsExtraFields=További tulajdonságok (értékelések) +NeedBusinessTravels=Üzleti utakra van szükség diff --git a/htdocs/langs/hu_HU/install.lang b/htdocs/langs/hu_HU/install.lang index b14d3c68dfc..d3de118ea8b 100644 --- a/htdocs/langs/hu_HU/install.lang +++ b/htdocs/langs/hu_HU/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=A %s konfigurációs fájl nem írható. Ellenőriz ConfFileIsWritable=%s konfigurációs fájl írható. ConfFileMustBeAFileNotADir=A %s konfigurációs fájlnak fájlnak kell lennie, nem könyvtárnak. ConfFileReload=Paraméterek újratöltése a konfigurációs fájlból. -NoReadableConfFileSoStartInstall=Az conf/conf.php konfigurációs fájl nem létezik, vagy nem használható újra. Futtatjuk a telepítési folyamatot, hogy megpróbáljuk inicializálni. +NoReadableConfFileSoStartInstall=Az conf/conf.php konfigurációs fájl nem létezik vagy nem olvasható. Futtatjuk a telepítési folyamatot, hogy megpróbáljuk inicializálni. PHPSupportPOSTGETOk=Ez a PHP verzió támogatja POST és GET változókat. PHPSupportPOSTGETKo=Lehetséges, hogy a PHP beállítása nem támogatja a POST és/vagy GET változókat. Ellenőrizze a variables_order paramétert a php.ini fájlban. PHPSupportSessions=Ez a PHP verzió támogatja a munkameneteket. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Lehet, hogy rossz értéket adott meg a(z) '%s' para ErrorFailedToCreateDatabase=Nem sikerült létrehozni a(z) '%s' adatbázist. ErrorFailedToConnectToDatabase=Nem sikerült csatlakozni a(z) '%s' adatbázishoz. ErrorDatabaseVersionTooLow=Az adatbázis (%s) verziója túl alacsony. %s verzió vagy magasabb szükséges -ErrorPHPVersionTooLow=Túl régi a PHP verzió. Legalább %s kell. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=A kiszolgálóhoz való csatlakozás sikeres, de a '%s' adatbázis nem található. ErrorDatabaseAlreadyExists='%s' adatbázis már létezik. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=Ha az adatbázis nem létezik, menjen vissza és jelölje be az "Adatbázis létrehozása" opciót. IfDatabaseExistsGoBackAndCheckCreate=Ha az adatbázis már létezik, menjen vissza és ne válassza az "Adatbázis létrehozása" opciót. WarningBrowserTooOld=A böngésző verziója túl régi. Javasoljuk, hogy frissítse böngészőjét a Firefox, Chrome vagy Opera legújabb verziójára. diff --git a/htdocs/langs/hu_HU/main.lang b/htdocs/langs/hu_HU/main.lang index c70d8ad2a89..ddf7f0740c3 100644 --- a/htdocs/langs/hu_HU/main.lang +++ b/htdocs/langs/hu_HU/main.lang @@ -345,7 +345,7 @@ KiloBytes=Kilobyte-ok MegaBytes=Megabyte-ok GigaBytes=Gigabyte-ok TeraBytes=TB -UserAuthor=Készítette +UserAuthor=Létrehozta UserModif=Frissítette b=b. Kb=Kb @@ -712,6 +712,7 @@ FeatureDisabled=Tiltott funkció MoveBox=Mozgassa a widgetet Offered=Felajánlott NotEnoughPermissions=Nincs jogosultsága ehhez a művelethez +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=Munkamenet neve Method=Módszer Receive=Kap @@ -801,6 +802,7 @@ URLPhoto=Url fotó / logo SetLinkToAnotherThirdParty=Link egy másik harmadik fél LinkTo=Hivatkozás erre: LinkToProposal=Link az ajánlathoz +LinkToExpedition= Link to expedition LinkToOrder=Link a rendeléshez LinkToInvoice=Link a számlához LinkToTemplateInvoice=Hivatkozás a sablonszámlához @@ -1177,3 +1179,4 @@ CommercialAffected=Az értékesítési képviselő érintett YourMessage=Az üzeneted YourMessageHasBeenReceived=Üzenete megérkezett. A lehető leghamarabb válaszolunk vagy felvesszük Önnel a kapcsolatot. UrlToCheck=Az ellenőrizendő URL +Automation=Automatizálás diff --git a/htdocs/langs/hu_HU/members.lang b/htdocs/langs/hu_HU/members.lang index 714cdea08d1..6e40e53b7ec 100644 --- a/htdocs/langs/hu_HU/members.lang +++ b/htdocs/langs/hu_HU/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=A tagság befejezésének dátuma EndSubscription=A tagság vége SubscriptionId=Hozzájárulás azonosítója WithoutSubscription=Hozzájárulás nélkül -MemberId=Tagazonosító +MemberId=Member Id +MemberRef=Member Ref NewMember=Új tag MemberType=Tag típusa MemberTypeId=Tag típusazonosító @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=A tagtípus nem törölhető NewSubscription=Új hozzájárulás NewSubscriptionDesc=Ez az űrlap lehetővé teszi, hogy az alapítvány új tagjaként rögzítse előfizetését. Ha meg szeretné újítani előfizetését (ha már tag), kérjük, vegye fel a kapcsolatot az alapítványi kuratóriummal e-mailben %s. Subscription=Hozzájárulás +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Időtartam +GetMembershipButtonLabel=Get membership Subscriptions=Hozzájárulások SubscriptionLate=Késő SubscriptionNotReceived=A hozzájárulás nem érkezett meg @@ -135,7 +142,7 @@ CardContent=Tagsági kártya tartalma # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=Tájékoztatjuk, hogy tagsági kérelmét megkaptuk.

ThisIsContentOfYourMembershipWasValidated=Tájékoztatjuk, hogy tagságát a következő adatokkal ellenőriztük:

-ThisIsContentOfYourSubscriptionWasRecorded=Tájékoztatjuk, hogy új előfizetését rögzítették.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=Tájékoztatjuk, hogy előfizetése hamarosan lejár, vagy már lejárt (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Reméljük, meg fogja újítani.

ThisIsContentOfYourCard=Ez az Önnel kapcsolatos információink összefoglalása. Kérjük, vegye fel velünk a kapcsolatot, ha bármi nem megfelelő.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=A vendég automatikus beiratkozása esetén kapott értesítő e-mail tárgya @@ -198,7 +205,8 @@ NbOfSubscriptions=Hozzájárulások száma AmountOfSubscriptions=A hozzájárulásokból beszedett összeg TurnoverOrBudget=Forgalom (egy cégnél) vagy Költségvetés (alapítványnál) DefaultAmount=A hozzájárulás alapértelmezett összege -CanEditAmount=A látogató kiválaszthatja/szerkesztheti hozzájárulása összegét +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Ugrás az integrált online fizetési oldalra ByProperties=Természeténél fogva MembersStatisticsByProperties=Tagstatisztikák jellegük szerint diff --git a/htdocs/langs/hu_HU/projects.lang b/htdocs/langs/hu_HU/projects.lang index 30d0c08766e..70c042b9143 100644 --- a/htdocs/langs/hu_HU/projects.lang +++ b/htdocs/langs/hu_HU/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=Kiszámlázott idő TimeSpentForIntervention=Eltöltött idő TimeSpentForInvoice=Eltöltött idő OneLinePerUser=Felhasználónként egy sor -ServiceToUseOnLines=A vonalakon használható szolgáltatás +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=A %s számla a projektben eltöltött időből készült InterventionGeneratedFromTimeSpent=A %s beavatkozás a projektben eltöltött időből jött létre ProjectBillTimeDescription=Ellenőrizze, hogy megad-e munkaidő-nyilvántartást a projekt feladatairól ÉS azt tervezi, hogy számlá(ka)t generál az időnyilvántartásból, hogy kiszámlázza a projekt ügyfelét (ne ellenőrizze, hogy nem a megadott munkaidő-nyilvántartásokon alapuló számlát tervez-e készíteni). Megjegyzés: Számla generálásához lépjen a projekt „Eltöltött idő” lapjára, és válassza ki a bevonni kívánt sorokat. @@ -294,3 +294,4 @@ EnablePublicLeadForm=Engedélyezze a nyilvános űrlapot a kapcsolatfelvételhez NewLeadbyWeb=Üzenetét vagy kérését rögzítettük. Hamarosan válaszolunk vagy felvesszük Önnel a kapcsolatot. NewLeadForm=Új kapcsolatfelvételi űrlap LeadFromPublicForm=Online lehetőség nyilvános űrlapról +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/hu_HU/stocks.lang b/htdocs/langs/hu_HU/stocks.lang index 70f08d06502..a660ffaf59f 100644 --- a/htdocs/langs/hu_HU/stocks.lang +++ b/htdocs/langs/hu_HU/stocks.lang @@ -265,6 +265,7 @@ ProductBarcodeDoesNotExist=A vonalkóddal rendelkező termék nem létezik WarehouseId=Raktárazonosító WarehouseRef=Raktári szám SaveQtyFirst=Először mentse el a valós készletezett mennyiségeket, mielőtt a készletmozgás létrehozását kérné. +ToStart=START InventoryStartedShort=Elindult ErrorOnElementsInventory=A művelet a következő ok miatt megszakadt: ErrorCantFindCodeInInventory=Nem található a következő kód a leltárban @@ -272,3 +273,45 @@ QtyWasAddedToTheScannedBarcode=Siker!! A mennyiség hozzá lett adva az összes StockChangeDisabled=A készlet módosítása letiltva NoWarehouseDefinedForTerminal=Nincs raktár definiálva a terminálhoz ClearQtys=Törölje az összes mennyiséget +ModuleStockTransferName=Speciális készlettranszfer +ModuleStockTransferDesc=A készlettranszfer fejlett kezelése transzfer lap generálásával +StockTransferNew=Új készlet átadása +StockTransferList=Készlettranszferek listája +ConfirmValidateStockTransfer=Biztosan érvényesíteni szeretné ezt a készletátruházást az %s hivatkozással? +ConfirmDestock=Készletek csökkenése átutalással %s +ConfirmDestockCancel=Törölje a készletcsökkentést %s átutalással +DestockAllProduct=A készletek csökkenése +DestockAllProductCancel=Törölje a készletcsökkenést +ConfirmAddStock=A készletek növelése %s átutalással +ConfirmAddStockCancel=Törölje a készlet növelését %s átutalással +AddStockAllProduct=A készletek növekedése +AddStockAllProductCancel=Törölje a készletek növelését +DatePrevueDepart=Az indulás tervezett időpontja +DateReelleDepart=Valódi indulás dátuma +DatePrevueArrivee=Tervezett Érkezés +DateReelleArrivee=Valódi érkezési dátum +HelpWarehouseStockTransferSource=Ha ez a raktár be van állítva, csak ő maga és gyermekei lesznek elérhetőek forrásraktárként +HelpWarehouseStockTransferDestination=Ha ez a raktár be van állítva, csak ő maga és gyermekei lesznek elérhetőek célraktárként +LeadTimeForWarning=Átfutási idő a riasztás előtt (napokban) +TypeContact_stocktransfer_internal_STFROM=Készlet átadás feladója +TypeContact_stocktransfer_internal_STDEST=A készlet átruházás címzettje +TypeContact_stocktransfer_internal_STRESP=A készletek átviteléért felelős +StockTransferSheet=Készlet átadási lap +StockTransferSheetProforma=Proforma részvény átadási lap +StockTransferDecrementation=Csökkentse a forrásraktárak számát +StockTransferIncrementation=Növelje a célraktárak számát +StockTransferDecrementationCancel=Törölje a forrásraktárak csökkentését +StockTransferIncrementationCancel=Törölje a rendeltetési raktárak növelését +StockStransferDecremented=A forrás raktárak csökkentek +StockStransferDecrementedCancel=A forrás raktárak csökkenése törölve +StockStransferIncremented=Lezárva – A készletek átadva +StockStransferIncrementedShort=Átruházott készletek +StockStransferIncrementedShortCancel=A célraktárak számának növelése törölve +StockTransferNoBatchForProduct=Az %s termék nem használja a kötegelt, törölje a tételt a vonalon, és próbálja újra +StockTransferSetup = Készletátviteli modul konfigurációja +Settings=Beállítások +StockTransferSetupPage = A készletátviteli modul konfigurációs oldala +StockTransferRightRead=Olvassa el a készlettranszfereket +StockTransferRightCreateUpdate=Készlettranszferek létrehozása/frissítése +StockTransferRightDelete=Törölje a készlettranszfereket +BatchNotFound=A tétel/sorozat nem található ehhez a termékhez diff --git a/htdocs/langs/hu_HU/ticket.lang b/htdocs/langs/hu_HU/ticket.lang index 2a28eca0db7..edb3da6045c 100644 --- a/htdocs/langs/hu_HU/ticket.lang +++ b/htdocs/langs/hu_HU/ticket.lang @@ -90,8 +90,8 @@ TicketPublicAccess=A következő URL-címen elérhető egy nyilvános interfész TicketSetupDictionaries=A jegy típusa, súlyossága és az analitikai kódok szótárakból konfigurálhatók TicketParamModule=Modulváltozó beállítása TicketParamMail=E-mail beállítása -TicketEmailNotificationFrom=A jegyekre adott válaszokért küldjön e-mailt -TicketEmailNotificationFromHelp=A Dolibarrtól küldött jegyekre adott válaszok küldő e-mailje +TicketEmailNotificationFrom=Sender e-mail for notification on answers +TicketEmailNotificationFromHelp=Sender e-mail to use to send the notification email when an answer is provided inside the backoffice. For example noreply@example.com TicketEmailNotificationTo=Értesítés a jegy létrehozásáról erre az e-mail címre TicketEmailNotificationToHelp=Ha van, ez az e-mail cím értesítést kap a jegy létrehozásáról TicketNewEmailBodyLabel=Szöveges üzenet a jegy létrehozása után diff --git a/htdocs/langs/id_ID/holiday.lang b/htdocs/langs/id_ID/holiday.lang index f03f385e2b8..c200d41b8cf 100644 --- a/htdocs/langs/id_ID/holiday.lang +++ b/htdocs/langs/id_ID/holiday.lang @@ -4,6 +4,7 @@ Holidays=Keluar CPTitreMenu=Keluar MenuReportMonth=Pernyataan bulanan MenuAddCP=Permintaan cuti baru +MenuCollectiveAddCP=New collective leave request NotActiveModCP=Anda harus mengaktifkan modul Leave untuk melihat halaman ini. AddCP=Buat sebuah permintaan cuti DateDebCP=Tanggal mulai @@ -79,6 +80,8 @@ MotifCP=Alasan UserCP=Pengguna ErrorAddEventToUserCP=Terjadi kesalahan saat menambahkan cuti luar biasa. AddEventToUserOkCP=Penambahan cuti luar biasa telah selesai. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=Lihat perubahan log LogCP=Log dari semua pembaruan yang dibuat untuk "Saldo Cuti" ActionByCP=diperbaharui oleh @@ -86,6 +89,13 @@ UserUpdateCP=Diperbarui untuk PrevSoldeCP=Saldo sebelumnya NewSoldeCP=Keseimbangan baru alreadyCPexist=Permintaan cuti telah dilakukan pada periode ini. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Grup +users=Users +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Hari awal permintaan cuti LastDayOfHoliday=Permintaan cuti hari terakhir BoxTitleLastLeaveRequests=Permintaan cuti yang dimodifikasi %s terbaru diff --git a/htdocs/langs/id_ID/hrm.lang b/htdocs/langs/id_ID/hrm.lang index 9e00d361ec6..59dea3f0e29 100644 --- a/htdocs/langs/id_ID/hrm.lang +++ b/htdocs/langs/id_ID/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Pembentukan terbuka CloseEtablishment=Pembentukan tertutup # Dictionary DictionaryPublicHolidays=Cuti - Hari libur nasional -DictionaryDepartment=HRM - Daftar Departement +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM - Posisi pekerjaan # Module Employees=karyawan @@ -20,14 +20,15 @@ Employee=karyawan NewEmployee=Karyawan Baru ListOfEmployees=Daftar Karyawan HrmSetup=HRM module setup -HRM_MAXRANK=Maximum rank for a skill +SkillsManagement=Skills management +HRM_MAXRANK=Maximum number of levels to rank a skill HRM_DEFAULT_SKILL_DESCRIPTION=Default description of ranks when skill is created deplacement=Shift DateEval=Evaluation date JobCard=Job card -Job=Job -Jobs=Jobs -NewSkill=New Skill +JobPosition=Job +JobsPosition=Jobs +NewSkill=Skill baru SkillType=Skill type Skilldets=List of ranks for this skill Skilldet=Skill level @@ -39,17 +40,16 @@ skill=Skill Skills=Skills SkillCard=Skill card EmployeeSkillsUpdated=Employee skills have been updated (see "Skills" tab of employee card) -Eval=Evaluation -Evals=Evaluations -NewEval=New evaluation -ValidateEvaluation=Validate evaluation +Eval=Evaluasi +Evals=Evaluasi +NewEval=Evaluasi baru +ValidateEvaluation=Validasi evaluasi ConfirmValidateEvaluation=Are you sure you want to validate this evaluation with reference %s? EvaluationCard=Evaluation card RequiredRank=Required rank for this job EmployeeRank=Employee rank for this skill -Position=Posisi -Positions=Positions -PositionCard=Position card +EmployeePosition=Jabatan karyawan +EmployeePositions=Jabatan karyawan EmployeesInThisPosition=Employees in this position group1ToCompare=Usergroup to analyze group2ToCompare=Second usergroup for comparison @@ -70,12 +70,22 @@ RequiredSkills=Required skills for this job UserRank=User Rank SkillList=Skill list SaveRank=Save rank -knowHow=Know how -HowToBe=How to be -knowledge=Knowledge +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=Abandonment comment DateLastEval=Date last evaluation NoEval=No evaluation done for this employee HowManyUserWithThisMaxNote=Number of users with this rank -HighestRank=Highest rank -SkillComparison=Skill comparison +HighestRank=Peringkat tertinggi +SkillComparison=Perbandingan skill +ActionsOnJob=Events on this job +VacantPosition=lowongan pekerjaan +VacantCheckboxHelper=Checking this option will show unfilled positions (job vacancy) +SaveAddSkill = Skill(s) added +SaveLevelSkill = Skill(s) level saved +DeleteSkill = Skill removed +SkillsExtraFields=Attributs supplémentaires (Compétences) +JobsExtraFields=Attributs supplémentaires (Emplois) +EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/id_ID/install.lang b/htdocs/langs/id_ID/install.lang index 0b60aa47c40..8aac1bb7f95 100644 --- a/htdocs/langs/id_ID/install.lang +++ b/htdocs/langs/id_ID/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=File konfigurasi%stidak dapat ditulis. Periksa izin ConfFileIsWritable=File konfigurasi%sdapat ditulis. ConfFileMustBeAFileNotADir=File konfigurasi %s harus berupa berkas, bukan direktori. ConfFileReload=Memuat ulang parameter dari file konfigurasi. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=PHP ini mendukung variabel POST dan GET PHPSupportPOSTGETKo=Mungkin pengaturan PHP Anda tidak mendukung variabel POST dan / atau GET. Periksa parametervariable_orderdi php.ini. PHPSupportSessions=PHP ini mendukung sesi. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Anda mungkin telah mengetik nilai yang salah untuk p ErrorFailedToCreateDatabase=Gagal membuat basis data '%s'. ErrorFailedToConnectToDatabase=Gagal untuk terhubung pada basis data '%s' ErrorDatabaseVersionTooLow=Versi basis data (%s) terlalu lama. Dibutuhkan versi %s atau lebih -ErrorPHPVersionTooLow=Versi PHP terlalu lama. Dibutuhkan versi %s +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Koneksi ke server berhasil tetapi database '%s' tidak ditemukan. ErrorDatabaseAlreadyExists=Database '%s' sudah ada. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=Jika database tidak ada, kembali dan centang opsi "Buat database". IfDatabaseExistsGoBackAndCheckCreate=Jika database sudah ada, kembali dan hapus centang opsi "Buat database". WarningBrowserTooOld=Versi browser terlalu lama. Memutakhirkan browser Anda ke versi terbaru dari Firefox, Chrome atau Opera sangat disarankan. diff --git a/htdocs/langs/id_ID/main.lang b/htdocs/langs/id_ID/main.lang index 23fbd8255cb..21b62af26c7 100644 --- a/htdocs/langs/id_ID/main.lang +++ b/htdocs/langs/id_ID/main.lang @@ -244,6 +244,7 @@ Designation=Keterangan DescriptionOfLine=Deskripsi garis DateOfLine=Tanggal baris DurationOfLine=Durasi garis +ParentLine=Parent line ID Model=Templat dokumen DefaultModel=Template dokumen default Action=Peristiwa @@ -344,7 +345,7 @@ KiloBytes=Kilobyte MegaBytes=Megabita GigaBytes=Gigabytes TeraBytes=Terabyte -UserAuthor=Dibuat oleh +UserAuthor=Created by UserModif=Diperbaharui oleh b=b. Kb=Kb @@ -517,6 +518,7 @@ or=atau Other=Lainnya Others=Lainnya OtherInformations=Informasi lain +Workflow=Workflow Quantity=Kuantitas Qty=Jumlah ChangedBy=Diubah oleh @@ -619,6 +621,7 @@ MonthVeryShort11=N MonthVeryShort12=D AttachedFiles=File dan dokumen terlampir JoinMainDoc=Bergabunglah dengan dokumen utama +JoinMainDocOrLastGenerated=Send the main document or the last generated one if not found DateFormatYYYYMM=YYYY-MM DateFormatYYYYMMDD=YYYY-MM-DD DateFormatYYYYMMDDHHMM=YYYY-MM-DD HH: SS @@ -709,6 +712,7 @@ FeatureDisabled=Fitur dinonaktifkan MoveBox=Pindahkan widget Offered=Ditawarkan NotEnoughPermissions=Anda tidak memiliki izin untuk tindakan ini +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=Nama sesi Method=Metode Receive=Menerima @@ -798,6 +802,7 @@ URLPhoto=URL foto / logo SetLinkToAnotherThirdParty=Tautan ke pihak ketiga lain LinkTo=Tautan ke LinkToProposal=Tautan ke proposal +LinkToExpedition= Link to expedition LinkToOrder=Tautan ke pesanan LinkToInvoice=Tautan ke faktur LinkToTemplateInvoice=Tautan ke faktur templat @@ -1164,3 +1169,14 @@ NotClosedYet=Not yet closed ClearSignature=Reset signature CanceledHidden=Canceled hidden CanceledShown=Canceled shown +Terminate=Terminate +Terminated=Terminated +AddLineOnPosition=Add line on position (at the end if empty) +ConfirmAllocateCommercial=Assign sales representative confirmation +ConfirmAllocateCommercialQuestion=Are you sure you want to assign the %s selected record(s)? +CommercialsAffected=Sales representatives affected +CommercialAffected=Sales representative affected +YourMessage=Your message +YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. +UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/id_ID/members.lang b/htdocs/langs/id_ID/members.lang index 2ee63ea41df..e9c085cd4cd 100644 --- a/htdocs/langs/id_ID/members.lang +++ b/htdocs/langs/id_ID/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=Tanggal akhir keanggotaan EndSubscription=Akhir keanggotaan SubscriptionId=ID Kontribusi WithoutSubscription=Tanpa kontribusi -MemberId=Tanda Anggota +MemberId=Member Id +MemberRef=Member Ref NewMember=Anggota baru MemberType=Tipe anggota MemberTypeId=ID tipe anggota @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Jenis anggota tidak dapat dihapus NewSubscription=Kontribusi baru NewSubscriptionDesc=Formulir ini memungkinkan Anda untuk merekam langganan Anda sebagai anggota baru yayasan. Jika Anda ingin memperpanjang langganan Anda (jika sudah menjadi anggota), silakan hubungi dewan yayasan melalui email %s. Subscription=Kontribusi +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Duration +GetMembershipButtonLabel=Get membership Subscriptions=Kontribusi SubscriptionLate=Terlambat SubscriptionNotReceived=Kontribusi tidak pernah diterima @@ -135,7 +142,7 @@ CardContent=Konten kartu anggota Anda # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=Kami ingin memberi tahu Anda bahwa permintaan keanggotaan Anda telah diterima.

ThisIsContentOfYourMembershipWasValidated=Kami ingin memberi tahu Anda bahwa keanggotaan Anda telah divalidasi dengan informasi berikut:

-ThisIsContentOfYourSubscriptionWasRecorded=Kami ingin memberi tahu Anda bahwa langganan baru Anda telah direkam.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=Kami ingin memberi tahu Anda bahwa langganan Anda akan kedaluwarsa atau telah kedaluwarsa (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Kami harap Anda akan memperbaruinya.

ThisIsContentOfYourCard=Ini adalah ringkasan informasi yang kami miliki tentang Anda. Silakan hubungi kami jika ada yang salah.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Subjek dari email pemberitahuan yang diterima jika ada tulisan otomatis dari seorang tamu @@ -198,7 +205,8 @@ NbOfSubscriptions=Jumlah kontribusi AmountOfSubscriptions=Jumlah yang dikumpulkan dari kontribusi TurnoverOrBudget=Omset (untuk perusahaan) atau Anggaran (untuk yayasan) DefaultAmount=Jumlah kontribusi default -CanEditAmount=Pengunjung dapat memilih/mengedit jumlah kontribusinya +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Langsung ke halaman pembayaran online terintegrasi ByProperties=Secara alami MembersStatisticsByProperties=Statistik anggota secara alami @@ -218,3 +226,5 @@ XExternalUserCreated=%s pengguna eksternal yang dibuat ForceMemberNature=Sifat anggota paksa (Perorangan atau Perusahaan) CreateDolibarrLoginDesc=Pembuatan login pengguna untuk anggota memungkinkan mereka terhubung ke aplikasi. Tergantung pada otorisasi yang diberikan, mereka akan dapat, misalnya, berkonsultasi atau memodifikasi file mereka sendiri. CreateDolibarrThirdPartyDesc=Pihak ketiga adalah badan hukum yang akan digunakan pada faktur jika Anda memutuskan untuk membuat faktur untuk setiap kontribusi. Anda akan dapat membuatnya nanti selama proses pencatatan kontribusi. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/id_ID/projects.lang b/htdocs/langs/id_ID/projects.lang index 39110503739..8ef2b56090c 100644 --- a/htdocs/langs/id_ID/projects.lang +++ b/htdocs/langs/id_ID/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=Waktu yang dihabiskan ditagih TimeSpentForIntervention=Waktu yang dihabiskan TimeSpentForInvoice=Waktu yang dihabiskan OneLinePerUser=Satu baris per pengguna -ServiceToUseOnLines=Layanan untuk digunakan secara on line +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=Faktur %s telah dihasilkan dari waktu yang dihabiskan untuk proyek InterventionGeneratedFromTimeSpent=Intervensi %s telah dihasilkan dari waktu yang dihabiskan untuk proyek ProjectBillTimeDescription=Periksa apakah Anda memasukkan kartu absen pada tugas proyek DAN Anda berencana untuk membuat faktur dari kartu absen untuk menagih pelanggan proyek (jangan periksa apakah Anda berencana untuk membuat faktur yang tidak didasarkan pada timeshe yang dimasukkan). Catatan: Untuk membuat faktur, buka tab 'Waktu yang dihabiskan' dari proyek dan pilih baris untuk disertakan. @@ -294,3 +294,4 @@ EnablePublicLeadForm=Enable the public form for contact NewLeadbyWeb=Your message or request has been recorded. We will answer or contact your soon. NewLeadForm=New contact form LeadFromPublicForm=Online lead from public form +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/id_ID/stocks.lang b/htdocs/langs/id_ID/stocks.lang index 3dea2654b8d..5715bf5476e 100644 --- a/htdocs/langs/id_ID/stocks.lang +++ b/htdocs/langs/id_ID/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Batas stok untuk peringatan dan stok optimal yang d ProductStockWarehouseUpdated=Batas stok untuk peringatan dan stok optimal yang diinginkan diperbarui dengan benar ProductStockWarehouseDeleted=Batas stok untuk peringatan dan stok optimal yang diinginkan dihapus dengan benar AddNewProductStockWarehouse=Tetapkan batas baru untuk waspada dan stok optimal yang diinginkan -AddStockLocationLine=Kurangi kuantitas kemudian klik untuk menambahkan gudang lain untuk produk ini +AddStockLocationLine=Decrease quantity then click to split the line InventoryDate=Tanggal inventaris Inventories=Inventories NewInventory=Inventaris baru @@ -254,7 +254,7 @@ ReOpen=Buka kembali ConfirmFinish=Apakah Anda mengkonfirmasi penutupan persediaan? Ini akan menghasilkan semua pergerakan stok untuk memperbarui stok Anda ke jumlah sebenarnya yang Anda masukkan ke dalam inventaris. ObjectNotFound=%s tidak ditemukan MakeMovementsAndClose=Hasilkan gerakan dan tutup -AutofillWithExpected=Replace real quantity with expected quantity +AutofillWithExpected=Isi kuantitas nyata dengan kuantitas yang diharapkan ShowAllBatchByDefault=Secara default, tampilkan detail batch pada tab "stok" produk CollapseBatchDetailHelp=Anda dapat mengatur tampilan default detail batch dalam konfigurasi modul saham ErrorWrongBarcodemode=Mode Kode Batang Tidak Dikenal @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Produk dengan barcode tidak ada WarehouseId=ID Gudang WarehouseRef=Referensi Gudang SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ToStart=Mulai InventoryStartedShort=Dimulai ErrorOnElementsInventory=Operation canceled for the following reason: ErrorCantFindCodeInInventory=Can't find the following code in inventory QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requested barcode. You can close the Scanner tool. StockChangeDisabled=Change on stock disabled NoWarehouseDefinedForTerminal=No warehouse defined for terminal +ClearQtys=Clear all quantities +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=Pengaturan +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/is_IS/holiday.lang b/htdocs/langs/is_IS/holiday.lang index 2afc9da4ad8..76090e3b536 100644 --- a/htdocs/langs/is_IS/holiday.lang +++ b/htdocs/langs/is_IS/holiday.lang @@ -4,6 +4,7 @@ Holidays=Leave CPTitreMenu=Leave MenuReportMonth=Monthly statement MenuAddCP=New leave request +MenuCollectiveAddCP=New collective leave request NotActiveModCP=You must enable the module Leave to view this page. AddCP=Make a leave request DateDebCP=Upphafsdagur @@ -79,6 +80,8 @@ MotifCP=Ástæða UserCP=Notandi ErrorAddEventToUserCP=An error occurred while adding the exceptional leave. AddEventToUserOkCP=The addition of the exceptional leave has been completed. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=View change logs LogCP=Log of all updates made to "Balance of Leave" ActionByCP=Updated by @@ -86,6 +89,13 @@ UserUpdateCP=Updated for PrevSoldeCP=Previous Balance NewSoldeCP=New Balance alreadyCPexist=A leave request has already been done on this period. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Groups +users=Notendur +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Beginning day of leave request LastDayOfHoliday=Ending day of leave request BoxTitleLastLeaveRequests=Latest %s modified leave requests diff --git a/htdocs/langs/is_IS/install.lang b/htdocs/langs/is_IS/install.lang index 538f6d35faf..640969835b4 100644 --- a/htdocs/langs/is_IS/install.lang +++ b/htdocs/langs/is_IS/install.lang @@ -8,6 +8,7 @@ ConfFileIsNotWritable=Configuration file %s is not writable. Check permis ConfFileIsWritable=Stillingarskráin %s er writable. ConfFileMustBeAFileNotADir=Configuration file %s must be a file, not a directory. ConfFileReload=Reloading parameters from configuration file. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=Þetta PHP styður breytur POST og FÁ. PHPSupportPOSTGETKo=It's possible your PHP setup does not support variables POST and/or GET. Check the parameter variables_order in php.ini. PHPSupportSessions=Þetta PHP styður fundur. @@ -16,13 +17,6 @@ PHPMemoryOK=Your PHP max fundur minnið er stillt á %s . Þetta ætti a PHPMemoryTooLow=Your PHP max session memory is set to %s bytes. This is too low. Change your php.ini to set memory_limit parameter to at least %s bytes. Recheck=Click here for a more detailed test ErrorPHPDoesNotSupportSessions=Your PHP installation does not support sessions. This feature is required to allow Dolibarr to work. Check your PHP setup and permissions of the sessions directory. -ErrorPHPDoesNotSupportGD=Your PHP installation does not support GD graphical functions. No graphs will be available. -ErrorPHPDoesNotSupportCurl=Your PHP installation does not support Curl. -ErrorPHPDoesNotSupportCalendar=Your PHP installation does not support php calendar extensions. -ErrorPHPDoesNotSupportUTF8=Your PHP installation does not support UTF8 functions. Dolibarr cannot work correctly. Resolve this before installing Dolibarr. -ErrorPHPDoesNotSupportIntl=Your PHP installation does not support Intl functions. -ErrorPHPDoesNotSupportMbstring=Your PHP installation does not support mbstring functions. -ErrorPHPDoesNotSupportxDebug=Your PHP installation does not support extend debug functions. ErrorPHPDoesNotSupport=Your PHP installation does not support %s functions. ErrorDirDoesNotExists=Listinn %s er ekki til. ErrorGoBackAndCorrectParameters=Go back and check/correct the parameters. @@ -30,9 +24,11 @@ ErrorWrongValueForParameter=Þú gætir hafa slegið rangt gildi fyrir breytu ' ErrorFailedToCreateDatabase=Ekki tókst að búa til gagnagrunn ' %s '. ErrorFailedToConnectToDatabase=Tókst ekki að tengjast við gagnagrunn ' %s '. ErrorDatabaseVersionTooLow=Database version (%s) too old. Version %s or higher is required. -ErrorPHPVersionTooLow=PHP útgáfa of gamall. Útgáfa %s er krafist. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Connection to server successful but database '%s' not found. ErrorDatabaseAlreadyExists=%s Database 'er þegar til. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=If the database does not exist, go back and check option "Create database". IfDatabaseExistsGoBackAndCheckCreate=Ef skráð er þegar til, farðu til baka og veljið "Create gagnagrunninum" valmöguleikann. WarningBrowserTooOld=Version of browser is too old. Upgrading your browser to a recent version of Firefox, Chrome or Opera is highly recommended. diff --git a/htdocs/langs/is_IS/members.lang b/htdocs/langs/is_IS/members.lang index 14b9bce68fc..3ebd0c48a93 100644 --- a/htdocs/langs/is_IS/members.lang +++ b/htdocs/langs/is_IS/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=End date of membership EndSubscription=End of membership SubscriptionId=Contribution ID WithoutSubscription=Without contribution -MemberId=Aðildarríkin persónuskilríki +MemberId=Member Id +MemberRef=Member Ref NewMember=Nýr meðlimur MemberType=Aðildarríkin tegund MemberTypeId=Aðildarríkin Auðkenni @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Member type can not be deleted NewSubscription=New framlag NewSubscriptionDesc=Þetta eyðublað er hægt að taka áskriftina þína sem nýr aðili að stofnun. Ef þú vilt að endurnýja áskriftina þína (ef þegar meðlimur), vinsamlegast hafðu samband við grunn borð í stað með tölvupósti %s. Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Lengd +GetMembershipButtonLabel=Get membership Subscriptions=Contributions SubscriptionLate=Seint SubscriptionNotReceived=Contribution never received @@ -135,7 +142,7 @@ CardContent=Efni meðlimur kortið # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=We want to let you know that your membership request was received.

ThisIsContentOfYourMembershipWasValidated=We want to let you know that your membership was validated with the following information:

-ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=We want to let you know that your subscription is about to expire or has already expired (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). We hope you will renew it.

ThisIsContentOfYourCard=This is a summary of the information we have about you. Please contact us if anything is incorrect.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Subject of the notification email received in case of auto-inscription of a guest @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=Velta (fyrir fyrirtæki) eða fjárhagsáætlun (um stofnun) DefaultAmount=Default amount of contribution -CanEditAmount=Visitor can choose/edit amount of its contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Stökkva á samþætt netinu greiðslu síðu ByProperties=By nature MembersStatisticsByProperties=Members statistics by nature @@ -218,3 +226,5 @@ XExternalUserCreated=%s external user(s) created ForceMemberNature=Force member nature (Individual or Corporation) CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/is_IS/stocks.lang b/htdocs/langs/is_IS/stocks.lang index 2c70b2404ab..64a5fccd3d3 100644 --- a/htdocs/langs/is_IS/stocks.lang +++ b/htdocs/langs/is_IS/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Stock limit for alert and desired optimal stock cor ProductStockWarehouseUpdated=Stock limit for alert and desired optimal stock correctly updated ProductStockWarehouseDeleted=Stock limit for alert and desired optimal stock correctly deleted AddNewProductStockWarehouse=Set new limit for alert and desired optimal stock -AddStockLocationLine=Decrease quantity then click to add another warehouse for this product +AddStockLocationLine=Decrease quantity then click to split the line InventoryDate=Inventory date Inventories=Inventories NewInventory=New inventory @@ -254,7 +254,7 @@ ReOpen=Reopen ConfirmFinish=Do you confirm the closing of the inventory ? This will generate all stock movements to update your stock to the real qty you entered into the inventory. ObjectNotFound=%s not found MakeMovementsAndClose=Generate movements and close -AutofillWithExpected=Replace real quantity with expected quantity +AutofillWithExpected=Fill real quantity with expected quantity ShowAllBatchByDefault=By default, show batch details on product "stock" tab CollapseBatchDetailHelp=You can set batch detail default display in stocks module configuration ErrorWrongBarcodemode=Unknown Barcode mode @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Product with barcode does not exist WarehouseId=Warehouse ID WarehouseRef=Warehouse Ref SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ToStart=Byrja InventoryStartedShort=Started ErrorOnElementsInventory=Operation canceled for the following reason: ErrorCantFindCodeInInventory=Can't find the following code in inventory QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requested barcode. You can close the Scanner tool. StockChangeDisabled=Change on stock disabled NoWarehouseDefinedForTerminal=No warehouse defined for terminal +ClearQtys=Clear all quantities +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=Settings +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/it_IT/accountancy.lang b/htdocs/langs/it_IT/accountancy.lang index b9f2e8501ad..5c6cd05e7d9 100644 --- a/htdocs/langs/it_IT/accountancy.lang +++ b/htdocs/langs/it_IT/accountancy.lang @@ -48,8 +48,9 @@ CountriesNotInEEC=Paesi al di fuori della CEE CountriesInEECExceptMe=Paesi nella CEE eccetto %s CountriesExceptMe=Tutti i paesi eccetto %s AccountantFiles=Esporta documenti di origine -ExportAccountingSourceDocHelp=Con questo strumento puoi esportare gli eventi di origine (elenco in CSV e PDF) utilizzati per generare la tua contabilità. +ExportAccountingSourceDocHelp=With this tool, you can search and export the source events that are used to generate your accountancy.
The exported ZIP file will contain the lists of requested items in CSV, as well as their attached files in their original format (PDF, ODT, DOCX...). ExportAccountingSourceDocHelp2=Per esportare i tuoi diari, usa la voce di menu %s - %s. +ExportAccountingProjectHelp=Specify a project if you need an accounting report only for a specific project. Expense reports and loan payments are not included in project reports. VueByAccountAccounting=Visualizza per conto contabile VueBySubAccountAccounting=Visualizza per conto secondario contabile @@ -161,7 +162,7 @@ BANK_DISABLE_DIRECT_INPUT=Disabilita la registrazione diretta della transazione ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL=Abilita la bozza di esportazione sul giornale ACCOUNTANCY_COMBO_FOR_AUX=Abilita l'elenco combinato per l'account sussidiario (potrebbe essere lento se hai molte terze parti, interrompere la capacità di cercare su una parte del valore) ACCOUNTING_DATE_START_BINDING=Definisci una data per iniziare la rilegatura e il trasferimento in contabilità. Al di sotto di tale data, le transazioni non saranno trasferite in contabilità. -ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=Al momento del trasferimento contabile, selezionare la visualizzazione del periodo per impostazione predefinita +ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=On accountancy transfer, what is the period selected by default ACCOUNTING_SELL_JOURNAL=Giornale Vendite ACCOUNTING_PURCHASE_JOURNAL=Giornale Acquisti @@ -182,7 +183,7 @@ DONATION_ACCOUNTINGACCOUNT=Conto di contabilità per registrare le donazioni ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=Conto contabile per registrare gli abbonamenti ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=Conto contabile per impostazione predefinita per registrare il deposito del cliente -UseAuxiliaryAccountOnCustomerDeposit=Use sub-accounts on customer deposit lines +UseAuxiliaryAccountOnCustomerDeposit=Store customer account as individual account in subsidiary ledger for lines of down payments (if disabled, individual account for down payment lines will remain empty) ACCOUNTING_PRODUCT_BUY_ACCOUNT=Conto di contabilità predefinito per i prodotti acquistati (se non definito nella scheda prodotto) ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT=Conto contabile predefinito per i prodotti acquistati in CEE (usato se non definito nella scheda prodotto) @@ -332,7 +333,7 @@ ACCOUNTING_DISABLE_BINDING_ON_EXPENSEREPORTS=Disabilita binding e trasferimento ## Export NotifiedExportDate=Flag exported lines as Exported (to modify a line, you will need to delete the whole transaction and re-transfert it into accounting) -NotifiedValidationDate=Validate and Lock the exported entries (same effect than the "Closure" feature, modification and deletion of the lines will DEFINITELY not be possible) +NotifiedValidationDate=Validate and Lock the exported entries (same effect than the "%s" feature, modification and deletion of the lines will DEFINITELY not be possible) DateValidationAndLock=Date validation and lock ConfirmExportFile=Conferma della generazione del file di esportazione contabile? ExportDraftJournal=Export draft journal @@ -427,6 +428,7 @@ SorryThisModuleIsNotCompatibleWithTheExperimentalFeatureOfSituationInvoices=Spia AccountancyErrorMismatchLetterCode=Mismatch in reconcile code AccountancyErrorMismatchBalanceAmount=The balance (%s) is not equal to 0 AccountancyErrorLetteringBookkeeping=Errors have occurred concerning the transactions: %s +ErrorAccountNumberAlreadyExists=The accounting number %s already exists ## Import ImportAccountingEntries=Accounting entries diff --git a/htdocs/langs/it_IT/agenda.lang b/htdocs/langs/it_IT/agenda.lang index 59afe414529..ab1fa73bbdb 100644 --- a/htdocs/langs/it_IT/agenda.lang +++ b/htdocs/langs/it_IT/agenda.lang @@ -45,6 +45,7 @@ CONTRACT_DELETEInDolibarr=Contratto %s cancellato PropalClosedSignedInDolibarr=Proposta %s firmata PropalClosedRefusedInDolibarr=Proposta %s rifiutata PropalValidatedInDolibarr=Proposta convalidata +PropalBackToDraftInDolibarr=Proposta %s torna allo stato di bozza PropalClassifiedBilledInDolibarr=Proposta %s classificata fatturata InvoiceValidatedInDolibarr=Fattura convalidata InvoiceValidatedInDolibarrFromPos=Ricevute %s validate dal POS @@ -56,6 +57,7 @@ MemberValidatedInDolibarr=Membro %s convalidato MemberModifiedInDolibarr=Membro %s modificato MemberResiliatedInDolibarr=Membro %s terminato MemberDeletedInDolibarr=Membro %s eliminato +MemberExcludedInDolibarr=Membro %s escluso MemberSubscriptionAddedInDolibarr=Adesione %s per membro %s aggiunta MemberSubscriptionModifiedInDolibarr=Adesione %s per membro %s modificata MemberSubscriptionDeletedInDolibarr=Adesione %s per membro %s eliminata @@ -66,6 +68,7 @@ ShipmentBackToDraftInDolibarr=La spedizione %s torna allo stato bozza ShipmentDeletedInDolibarr=Spedizione %s eliminata ShipmentCanceledInDolibarr=Spedizione %s annullata ReceptionValidatedInDolibarr=Ricezione %s convalidata +ReceptionClassifyClosedInDolibarr=Ricevimento %s classificato chiuso OrderCreatedInDolibarr=Ordine %s creato OrderValidatedInDolibarr=Ordine convalidato OrderDeliveredInDolibarr=Ordine %s classificato consegnato diff --git a/htdocs/langs/it_IT/boxes.lang b/htdocs/langs/it_IT/boxes.lang index 4f7bb3f5d3a..94bbcd69ea8 100644 --- a/htdocs/langs/it_IT/boxes.lang +++ b/htdocs/langs/it_IT/boxes.lang @@ -23,7 +23,7 @@ BoxLastMembersSubscriptions=Ultimi abbonamenti dei membri BoxFicheInter=Ultimi interventi BoxCurrentAccounts=Saldo conti aperti BoxTitleMemberNextBirthdays=Compleanni di questo mese (membri) -BoxTitleMembersByType=Membri per tipo +BoxTitleMembersByType=Membri per tipo e stato BoxTitleMembersSubscriptionsByYear=Abbonamenti membri per anno BoxTitleLastRssInfos=Ultime %s notizie da %s BoxTitleLastProducts=Prodotti/Servizi: ultimi %s modificati @@ -46,6 +46,7 @@ BoxMyLastBookmarks=Segnalibri: ultimi %s modificati BoxOldestExpiredServices=Servizi scaduti da più tempo ancora attivi BoxLastExpiredServices=Ultimi %s contatti con servizi scaduti ancora attivi BoxTitleLastActionsToDo=Ultime %s azioni da fare +BoxTitleOldestActionsToDo=%s Evento più vecchio da completare non completato BoxTitleLastContracts=Gli ultimi contratti %s che sono stati modificati BoxTitleLastModifiedDonations=Ultime donazioni %s che sono state modificate BoxTitleLastModifiedExpenses=Ultime note spese %s che sono state modificate diff --git a/htdocs/langs/it_IT/categories.lang b/htdocs/langs/it_IT/categories.lang index 191d7d1fe51..a70d6d67865 100644 --- a/htdocs/langs/it_IT/categories.lang +++ b/htdocs/langs/it_IT/categories.lang @@ -90,10 +90,12 @@ CategorieRecursivHelp=If option is on, when you add a product into a subcategory AddProductServiceIntoCategory=Aggiungi il seguente prodotto/servizio AddCustomerIntoCategory=Assegna la categoria al cliente AddSupplierIntoCategory=Assegna la categoria al fornitore +AssignCategoryTo=Assegna categoria a ShowCategory=Mostra tag/categoria ByDefaultInList=Default nella lista ChooseCategory=Choose category StocksCategoriesArea=Categorie di magazzino +TicketsCategoriesArea=Categorie dei ticket ActionCommCategoriesArea=Categorie di eventi WebsitePagesCategoriesArea=Pagina-Contenitore delle Categorie KnowledgemanagementsCategoriesArea=Categorie di articoli KM diff --git a/htdocs/langs/it_IT/contracts.lang b/htdocs/langs/it_IT/contracts.lang index 1df943aee02..0698c8058e2 100644 --- a/htdocs/langs/it_IT/contracts.lang +++ b/htdocs/langs/it_IT/contracts.lang @@ -20,6 +20,7 @@ ContractsSubscriptions=Contratto/sottoscrizione ContractsAndLine=Contratti e righe di contratto Contract=Contratto ContractLine=Riga di contratto +ContractLines=Linee contrattuali Closing=In chiusura NoContracts=Nessun contratto MenuServices=Servizi @@ -102,3 +103,5 @@ TypeContact_contrat_external_SALESREPSIGN=Contatto per la firma dei contratti HideClosedServiceByDefault=Nascondi i servizi chiusi di default ShowClosedServices=Mostra servizi chiusi HideClosedServices=Nascondi servizi chiusi +UserStartingService=Servizio di avvio dell'utente +UserClosingService=Servizio di chiusura dell'utente diff --git a/htdocs/langs/it_IT/holiday.lang b/htdocs/langs/it_IT/holiday.lang index 6b6119857af..9a1e71ccce9 100644 --- a/htdocs/langs/it_IT/holiday.lang +++ b/htdocs/langs/it_IT/holiday.lang @@ -4,6 +4,7 @@ Holidays=Ferie / Permessi CPTitreMenu=Ferie / Permessi MenuReportMonth=Estratto conto mensile MenuAddCP=Nuova richiesta +MenuCollectiveAddCP=New collective leave request NotActiveModCP=You must enable the module Leave to view this page. AddCP=Inserisci nuova richiesta DateDebCP=Data di inizio @@ -79,6 +80,8 @@ MotifCP=Motivo UserCP=Utente ErrorAddEventToUserCP=Si è verificato un errore nell'assegnazione del permesso straordinario. AddEventToUserOkCP=Permesso straordinario assegnato correttamente. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=Elenco delle modifiche LogCP=Registro di tutti gli aggiornamenti effettuati su "Saldo delle ferie" ActionByCP=Aggiornato da @@ -86,6 +89,13 @@ UserUpdateCP=Aggiornato per PrevSoldeCP=Saldo precedente NewSoldeCP=Nuovo saldo alreadyCPexist=C'è già una richiesta per lo stesso periodo. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Groups +users=Users +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Inizio giorno di richiesta ferie LastDayOfHoliday=Richiesta di fine giornata di ferie BoxTitleLastLeaveRequests=Ultime %s richieste di assenza modificate diff --git a/htdocs/langs/it_IT/hrm.lang b/htdocs/langs/it_IT/hrm.lang index b4028530d38..921b35c179f 100644 --- a/htdocs/langs/it_IT/hrm.lang +++ b/htdocs/langs/it_IT/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Apri azienda CloseEtablishment=Chiudi azienda # Dictionary DictionaryPublicHolidays=Congedo - Giorni festivi -DictionaryDepartment=HRM - Lista dipartimenti +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM - Posizioni di lavoro # Module Employees=Dipendenti @@ -70,12 +70,22 @@ RequiredSkills=Competenze richieste per questo lavoro UserRank=Classifica utente SkillList=Elenco delle abilità SaveRank=Salva classifica -knowHow=Competenza -HowToBe=Come essere -knowledge=Conoscenza +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=Commento sull'abbandono DateLastEval=Data ultima valutazione NoEval=Nessuna valutazione effettuata per questo dipendente HowManyUserWithThisMaxNote=Numero di utenti con questo rango HighestRank=Grado più alto SkillComparison=Confronto delle abilità +ActionsOnJob=Events on this job +VacantPosition=job vacancy +VacantCheckboxHelper=Checking this option will show unfilled positions (job vacancy) +SaveAddSkill = Skill(s) added +SaveLevelSkill = Skill(s) level saved +DeleteSkill = Skill removed +SkillsExtraFields=Attributs supplémentaires (Compétences) +JobsExtraFields=Attributs supplémentaires (Emplois) +EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/it_IT/install.lang b/htdocs/langs/it_IT/install.lang index a5d63a75907..cb9028b1e0b 100644 --- a/htdocs/langs/it_IT/install.lang +++ b/htdocs/langs/it_IT/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=Il file di configurazione %s non è scrivibile, bis ConfFileIsWritable=Il file di configurazione %s è scrivibile. ConfFileMustBeAFileNotADir=Configuration file %s must be a file, not a directory. ConfFileReload=Reloading parameters from configuration file. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=Il file di configurazione conf/conf.php non esiste o non è leggibile. Eseguiremo il processo di installazione per provare a inizializzarlo. PHPSupportPOSTGETOk=PHP supporta le variabili GET e POST. PHPSupportPOSTGETKo=It's possible your PHP setup does not support variables POST and/or GET. Check the parameter variables_order in php.ini. PHPSupportSessions=PHP supporta le sessioni. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Potresti aver digitato un valore errato per il param ErrorFailedToCreateDatabase=Impossibile creare il database %s. ErrorFailedToConnectToDatabase=Impossibile collegarsi al database %s. ErrorDatabaseVersionTooLow=La versione del database (%s) è troppo vecchia. È richiesta la versione %s o superiori. -ErrorPHPVersionTooLow=Versione PHP troppo vecchia. E' obbligatoria la versione %s o superiori. +ErrorPHPVersionTooLow=Versione PHP troppo vecchia. È richiesta la versione %s o successiva. +ErrorPHPVersionTooHigh=Versione PHP troppo alta. È richiesta la versione %s o precedente. ErrorConnectedButDatabaseNotFound=Connection to server successful but database '%s' not found. ErrorDatabaseAlreadyExists=Il database %s esiste già. +ErrorNoMigrationFilesFoundForParameters=Nessun file di migrazione trovato per le versioni selezionate IfDatabaseNotExistsGoBackAndUncheckCreate=If the database does not exist, go back and check option "Create database". IfDatabaseExistsGoBackAndCheckCreate=Se il database esiste già, torna indietro e deseleziona l'opzione "Crea database". WarningBrowserTooOld=Version of browser is too old. Upgrading your browser to a recent version of Firefox, Chrome or Opera is highly recommended. diff --git a/htdocs/langs/it_IT/mails.lang b/htdocs/langs/it_IT/mails.lang index f732e5789e8..5074f48e307 100644 --- a/htdocs/langs/it_IT/mails.lang +++ b/htdocs/langs/it_IT/mails.lang @@ -178,3 +178,4 @@ IsAnAnswer=È la risposta di una prima email RecordCreatedByEmailCollector=Record creato da Email Collector %s dall'email %s DefaultBlacklistMailingStatus=Valore predefinito per il campo '%s' durante la creazione di un nuovo contatto DefaultStatusEmptyMandatory=Vuoto ma obbligatorio +WarningLimitSendByDay=ATTENZIONE: la configurazione o il contratto della tua istanza limita il numero di email al giorno a %s . Il tentativo di inviarne di più potrebbe comportare un rallentamento o la sospensione dell'istanza. Contatta il tuo supporto se hai bisogno di una quota più alta. diff --git a/htdocs/langs/it_IT/main.lang b/htdocs/langs/it_IT/main.lang index 8d94a066667..3e36afe04f7 100644 --- a/htdocs/langs/it_IT/main.lang +++ b/htdocs/langs/it_IT/main.lang @@ -244,6 +244,7 @@ Designation=Descrizione DescriptionOfLine=Linea Descrizione DateOfLine=Data DurationOfLine=Durata +ParentLine=ID linea padre Model=Modello DefaultModel=Modello predefinito Action=Azione @@ -344,7 +345,7 @@ KiloBytes=Kilobyte MegaBytes=Megabyte GigaBytes=Gigabyte TeraBytes=Terabyte -UserAuthor=Ceato da +UserAuthor=Creato da UserModif=Aggiornato da b=b Kb=Kb @@ -517,6 +518,7 @@ or=o Other=Altro Others=Altri OtherInformations=Altre informazioni +Workflow=Flusso di lavoro Quantity=Quantità Qty=Qtà ChangedBy=Cambiato da @@ -619,6 +621,7 @@ MonthVeryShort11=N MonthVeryShort12=D AttachedFiles=File e documenti allegati JoinMainDoc=Iscriviti al documento principale +JoinMainDocOrLastGenerated=Invia il documento principale o l'ultimo generato se non trovato DateFormatYYYYMM=AAAA-MM DateFormatYYYYMMDD=AAAA-MM-GG DateFormatYYYYMMDDHHMM=AAAA-MM-GG HH:MM @@ -709,6 +712,7 @@ FeatureDisabled=Funzionalità disabilitata MoveBox=Sposta widget Offered=Offerto NotEnoughPermissions=Non hai l'autorizzazione per svolgere questa azione +UserNotInHierachy=Questa azione è riservata ai supervisori di questo utente SessionName=Nome sessione Method=Metodo Receive=Ricevi @@ -798,6 +802,7 @@ URLPhoto=URL foto/logo SetLinkToAnotherThirdParty=Collega ad altro soggetto terzo LinkTo=Collega a... LinkToProposal=Collega a proposta +LinkToExpedition= Link alla spedizione LinkToOrder=Collega a ordine LinkToInvoice=Collega a fattura attiva LinkToTemplateInvoice=Collega ad un modello di fattura @@ -1164,3 +1169,14 @@ NotClosedYet=Non ancora chiuso ClearSignature=Reimposta firma CanceledHidden=Nascosto annullato CanceledShown=Annullato mostrato +Terminate=Termina +Terminated=Terminated +AddLineOnPosition=Aggiungi riga sulla posizione (alla fine se vuota) +ConfirmAllocateCommercial=Assegna la conferma del rappresentante di vendita +ConfirmAllocateCommercialQuestion=Sei sicuro di voler assegnare i record selezionati %s? +CommercialsAffected=Rappresentanti di vendita interessati +CommercialAffected=Rappresentante di vendita interessato +YourMessage=Il tuo messaggio +YourMessageHasBeenReceived=Il tuo messaggio è stato ricevuto. Ti risponderemo o ti contatteremo al più presto. +UrlToCheck=URL da controllare +Automation=Automazione diff --git a/htdocs/langs/it_IT/members.lang b/htdocs/langs/it_IT/members.lang index a6bdcf90829..d42e9ac9f61 100644 --- a/htdocs/langs/it_IT/members.lang +++ b/htdocs/langs/it_IT/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=Data di fine adesione EndSubscription=Fine adesione SubscriptionId=ID contributo WithoutSubscription=Senza contributo -MemberId=ID +MemberId=Member Id +MemberRef=Member Ref NewMember=Nuovo membro MemberType=Tipo membro MemberTypeId=Id membro @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Member type can not be deleted NewSubscription=Nuovo contributo NewSubscriptionDesc=Questo modulo consente di registrare l'adesione di un nuovo membro alla fondazione. Per rinnovare l'adesione (se già iscritto), si prega di contattare la fondazione per email. Subscription=Contributo +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Durata +GetMembershipButtonLabel=Get membership Subscriptions=Contributi SubscriptionLate=Ritardi SubscriptionNotReceived=Contributo mai ricevuto @@ -135,7 +142,7 @@ CardContent=Contenuto della scheda membro # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=We want to let you know that your membership request was received.

ThisIsContentOfYourMembershipWasValidated=We want to let you know that your membership was validated with the following information:

-ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=We want to let you know that your subscription is about to expire or has already expired (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). We hope you will renew it.

ThisIsContentOfYourCard=This is a summary of the information we have about you. Please contact us if anything is incorrect.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Subject of the notification email received in case of auto-inscription of a guest @@ -198,7 +205,8 @@ NbOfSubscriptions=Numero di contributi AmountOfSubscriptions=Importo raccolto dai contributi TurnoverOrBudget=Giro d'affari (aziende) o Budget (fondazione) DefaultAmount=Importo predefinito del contributo -CanEditAmount=Il visitatore può scegliere/modificare l'importo del suo contributo +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Saltate sulla integrato pagina di pagamento online ByProperties=By nature MembersStatisticsByProperties=Members statistics by nature @@ -218,3 +226,5 @@ XExternalUserCreated=%s utenti esterni creati ForceMemberNature=Natura del membro forzato (individuo o società) CreateDolibarrLoginDesc=La creazione di un login utente per i membri consente loro di connettersi all'applicazione. A seconda delle autorizzazioni concesse, potranno, ad esempio, consultare o modificare autonomamente il proprio fascicolo. CreateDolibarrThirdPartyDesc=Una terza parte è la persona giuridica che verrà utilizzata nella fattura se si decide di generare la fattura per ogni contributo. Potrai crearlo in seguito durante il processo di registrazione del contributo. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/it_IT/other.lang b/htdocs/langs/it_IT/other.lang index 11e531f7219..4ac0ee1b02c 100644 --- a/htdocs/langs/it_IT/other.lang +++ b/htdocs/langs/it_IT/other.lang @@ -110,7 +110,7 @@ ChooseYourDemoProfilMore=...or build your own profile
(manual module selectio DemoFundation=Gestisci i membri di una Fondazione DemoFundation2=Gestisci i membri e un conto bancario di una Fondazione DemoCompanyServiceOnly=Gestire un'attività freelance di vendita di soli servizi -DemoCompanyShopWithCashDesk=Manage a shop with a cash box +DemoCompanyShopWithCashDesk=Gestisci un negozio con una cassa DemoCompanyProductAndStocks=Negozio di vendita di prodotti con punto vendita DemoCompanyManufacturing=Azienda produttrice di prodotti DemoCompanyAll=Gestire una piccola o media azienda con più attività (tutti i moduli principali) @@ -303,4 +303,25 @@ SelectTheTypeOfObjectToAnalyze=Seleziona un oggetto per visualizzarne le statist ConfirmBtnCommonContent = Sei sicuro di voler "%s"? ConfirmBtnCommonTitle = Conferma la tua azione CloseDialog = Chiudere -Autofill = Autofill +Autofill = Riempimento automatico + +# externalsite +ExternalSiteSetup=Imposta collegamento a sito esterno +ExternalSiteURL=URL del sito esterno del contenuto iframe HTML +ExternalSiteModuleNotComplete=Il modulo ExternalSite non è configurato correttamente. +ExampleMyMenuEntry=La mia voce di menu + +# FTP +FTPClientSetup=Configurazione del modulo client FTP o SFTP +NewFTPClient=Nuova configurazione della connessione FTP/FTPS +FTPArea=Area FTP/FTPS +FTPAreaDesc=Questa schermata mostra una vista di un server FTP e SFTP. +SetupOfFTPClientModuleNotComplete=La configurazione del modulo client FTP o SFTP sembra essere incompleta +FTPFeatureNotSupportedByYourPHP=Il tuo PHP non supporta le funzioni FTP o SFTP +FailedToConnectToFTPServer=Impossibile connettersi al server (server %s, porta %s) +FailedToConnectToFTPServerWithCredentials=Impossibile accedere al server con login/password definiti +FTPFailedToRemoveFile=Impossibile rimuovere il file %s +FTPFailedToRemoveDir=Impossibile rimuovere la directory %s (Controlla i permessi e che la directory sia vuota) +FTPPassiveMode=Modalità passiva +ChooseAFTPEntryIntoMenu=Scegli un sito FTP/SFTP dal menu... +FailedToGetFile=Errore nell'accesso ai file %s diff --git a/htdocs/langs/it_IT/paypal.lang b/htdocs/langs/it_IT/paypal.lang index 001928baab0..4eb05a28ede 100644 --- a/htdocs/langs/it_IT/paypal.lang +++ b/htdocs/langs/it_IT/paypal.lang @@ -34,3 +34,4 @@ ARollbackWasPerformedOnPostActions=A rollback was performed on all Post actions. ValidationOfPaymentFailed=Validation of payment has failed CardOwner=Card holder PayPalBalance=Paypal credit +OnlineSubscriptionPaymentLine=Abbonamento online registrato su %s
Pagato tramite %s
Indirizzo IP di origine: %s
ID transazione: %s diff --git a/htdocs/langs/it_IT/productbatch.lang b/htdocs/langs/it_IT/productbatch.lang index 277322df786..89144d3a587 100644 --- a/htdocs/langs/it_IT/productbatch.lang +++ b/htdocs/langs/it_IT/productbatch.lang @@ -43,3 +43,4 @@ HideLots=Nascondi un sacco OutOfOrder=Fuori servizio InWorkingOrder=Funzionante ToReplace=Sostituire +CantMoveNonExistantSerial=Errore. Chiedi una mossa su un record per un seriale che non esiste più. È possibile che tu abbia preso lo stesso numero di serie nello stesso magazzino più volte nella stessa spedizione o sia stato utilizzato da un'altra spedizione. Rimuovi questa spedizione e preparane un'altra. diff --git a/htdocs/langs/it_IT/projects.lang b/htdocs/langs/it_IT/projects.lang index 8699e982a39..c661c83b7cc 100644 --- a/htdocs/langs/it_IT/projects.lang +++ b/htdocs/langs/it_IT/projects.lang @@ -6,7 +6,7 @@ ProjectLabel=Etichetta progetto ProjectsArea=Sezione progetti ProjectStatus=Stato del progetto SharedProject=Progetto condiviso -PrivateProject=Assigned contacts +PrivateProject=Contatti assegnati ProjectsImContactFor=Progetti per i quali sono esplicitamente un contatto AllAllowedProjects=Tutti i progetti che posso vedere (miei + pubblici) AllProjects=Tutti i progetti @@ -195,7 +195,7 @@ FirstAddRessourceToAllocateTime=Assegnare una risorsa utente come contatto del p InputPerDay=Input per giorno InputPerWeek=Input per settimana InputPerMonth=Input per mese -InputDetail=Dettagli di input +InputDetail=Dettagli di ingresso TimeAlreadyRecorded=Questo lasso di tempo è già stato registrato per questa attività/giorno e l'utente%s ProjectsWithThisUserAsContact=Progetti con questo utente come contatto ProjectsWithThisContact=Progetti con questo contatto @@ -259,7 +259,7 @@ TimeSpentInvoiced=Time spent billed TimeSpentForIntervention=Tempo lavorato TimeSpentForInvoice=Tempo lavorato OneLinePerUser=One line per user -ServiceToUseOnLines=Service to use on lines +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=Invoice %s has been generated from time spent on project InterventionGeneratedFromTimeSpent=L'intervento %s è stato generato dal tempo dedicato al progetto ProjectBillTimeDescription=Check se inserisci la scheda attività sulle attività del progetto E prevedi di generare fatture dalla scheda attività per fatturare al cliente il progetto (non verificare se si prevede di creare una fattura che non si basa sulle schede attività inserite). Nota: per generare una fattura, vai sulla scheda "Tempo trascorso" del progetto e seleziona le righe da includere. @@ -294,3 +294,4 @@ EnablePublicLeadForm=Enable the public form for contact NewLeadbyWeb=Your message or request has been recorded. We will answer or contact your soon. NewLeadForm=New contact form LeadFromPublicForm=Online lead from public form +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/it_IT/stocks.lang b/htdocs/langs/it_IT/stocks.lang index 4a1c3b32740..449ef8f72af 100644 --- a/htdocs/langs/it_IT/stocks.lang +++ b/htdocs/langs/it_IT/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Stock limit for alert and desired optimal stock cor ProductStockWarehouseUpdated=Stock limit for alert and desired optimal stock correctly updated ProductStockWarehouseDeleted=Stock limit for alert and desired optimal stock correctly deleted AddNewProductStockWarehouse=Set new limit for alert and desired optimal stock -AddStockLocationLine=Decrease quantity then click to add another warehouse for this product +AddStockLocationLine=Decrease quantity then click to split the line InventoryDate=Inventory date Inventories=Inventari NewInventory=Nuovo inventario @@ -254,7 +254,7 @@ ReOpen=Riapri ConfirmFinish=Confermi la chiusura dell'inventario? Questa azione genererà tutti i movimenti di magazzino per aggiornare le quantità reali dei prodotti inserite nell'inventario. ObjectNotFound=%s non trovato MakeMovementsAndClose=Genera movimenti e chiudi -AutofillWithExpected=Sostituisci la quantità reale con la quantità prevista +AutofillWithExpected=Fill real quantity with expected quantity ShowAllBatchByDefault=Per impostazione predefinita, mostra i dettagli del lotto nella scheda "stock" del prodotto CollapseBatchDetailHelp=È possibile impostare la visualizzazione predefinita dei dettagli del lotto nella configurazione del modulo scorte ErrorWrongBarcodemode=Modalità codice a barre sconosciuto @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Il prodotto con codice a barre non esiste WarehouseId=ID magazzino WarehouseRef=Rif. Magazzino SaveQtyFirst=Salva prima le quantità reali inventariate, prima di chiedere la creazione del movimento stock. +ToStart=Avvio InventoryStartedShort=Iniziata ErrorOnElementsInventory=Operazione annullata per il seguente motivo: ErrorCantFindCodeInInventory=Impossibile trovare il codice seguente nell'inventario QtyWasAddedToTheScannedBarcode=Successo !! La quantità è stata aggiunta a tutto il codice a barre richiesto. È possibile chiudere lo strumento Scanner. StockChangeDisabled=Cambio su stock disabilitato NoWarehouseDefinedForTerminal=Nessun magazzino definito per il terminal +ClearQtys=Clear all quantities +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=Impostazioni +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/it_IT/users.lang b/htdocs/langs/it_IT/users.lang index 0f45273b8b0..bc2975754e9 100644 --- a/htdocs/langs/it_IT/users.lang +++ b/htdocs/langs/it_IT/users.lang @@ -124,7 +124,7 @@ ValidatorIsSupervisorByDefault=Per impostazione predefinita, il validatore è il UserPersonalEmail=E-mail personale UserPersonalMobile=Cellulare personale WarningNotLangOfInterface=Attenzione, questa è la lingua principale che l'utente parla, non la lingua dell'interfaccia che ha scelto di vedere. Per cambiare la lingua dell'interfaccia visibile da questo utente, vai sulla scheda %s -DateLastLogin=Date last login -DatePreviousLogin=Date previous login -IPLastLogin=IP last login -IPPreviousLogin=IP previous login +DateLastLogin=Data ultimo accesso +DatePreviousLogin=Data di accesso precedente +IPLastLogin=IP ultimo accesso +IPPreviousLogin=IP di accesso precedente diff --git a/htdocs/langs/it_IT/withdrawals.lang b/htdocs/langs/it_IT/withdrawals.lang index 9792251ccbe..2d6a6b05113 100644 --- a/htdocs/langs/it_IT/withdrawals.lang +++ b/htdocs/langs/it_IT/withdrawals.lang @@ -31,6 +31,7 @@ SupplierInvoiceWaitingWithdraw=Fattura fornitore in attesa di pagamento tramite InvoiceWaitingWithdraw=Invoice waiting for direct debit InvoiceWaitingPaymentByBankTransfer=Fattura in attesa di bonifico AmountToWithdraw=Importo da prelevare +AmountToTransfer=Importo da trasferire NoInvoiceToWithdraw=Nessuna fattura aperta per '%s' è in attesa. Vai sulla scheda '%s' sulla scheda fattura per effettuare una richiesta. NoSupplierInvoiceToWithdraw=Nessuna fattura fornitore con "Richieste di credito diretto" aperte è in attesa. Vai sulla scheda '%s' sulla scheda fattura per effettuare una richiesta. ResponsibleUser=User Responsible @@ -136,6 +137,7 @@ SEPAFRST=SEPA FRST ExecutionDate=Execution date CreateForSepa=Create direct debit file ICS=Identificatore del creditore - ICS +IDS=Identificatore debitore END_TO_END="EndToEndId" SEPA XML tag - Unique id assigned per transaction USTRD="Unstructured" SEPA XML tag ADDDAYS=Add days to Execution Date @@ -154,3 +156,4 @@ ErrorICSmissing=ICS mancante nel conto bancario %s TotalAmountOfdirectDebitOrderDiffersFromSumOfLines=L'importo totale dell'ordine di addebito diretto differisce dalla somma delle righe WarningSomeDirectDebitOrdersAlreadyExists=Avvertenza: sono già stati richiesti ordini di addebito diretto in sospeso (%s) per un importo di %s WarningSomeCreditTransferAlreadyExists=Avvertenza: è già stato richiesto un trasferimento di credito in sospeso (%s) per un importo di %s +UsedFor=Usato per %s diff --git a/htdocs/langs/ja_JP/accountancy.lang b/htdocs/langs/ja_JP/accountancy.lang index cb7843259e1..79eadeebbc4 100644 --- a/htdocs/langs/ja_JP/accountancy.lang +++ b/htdocs/langs/ja_JP/accountancy.lang @@ -48,8 +48,9 @@ CountriesNotInEEC=EECにない国 CountriesInEECExceptMe=%sを除くEECの国 CountriesExceptMe=%sを除く全国 AccountantFiles=ソースドキュメントのエクスポート -ExportAccountingSourceDocHelp=このツールで、会計処理を生成するために使用されるソースイベント(CSVおよびPDFのリスト)をエクスポートできる。 +ExportAccountingSourceDocHelp=このツールを使用すると、アカウンティを生成するために使用されるソースイベントを検索およびエクスポートできる。
エクスポートされたZIPファイルには、CSVで要求されたアイテムのリストと、元の形式(PDF、ODT、DOCX ...)の添付ファイルが含まれる。 ExportAccountingSourceDocHelp2=仕訳日記帳をエクスポートするには、メニューエントリ%s --%sを使用。 +ExportAccountingProjectHelp=特定のプロジェクトについてのみアカウンティングレポートが必要な場合は、プロジェクトを指定する。経費報告書とローン支払いはプロジェクト報告書に含まれていない。 VueByAccountAccounting=勘定科目順に表示 VueBySubAccountAccounting=会計補助勘定科目で表示 @@ -161,7 +162,7 @@ BANK_DISABLE_DIRECT_INPUT=銀行口座での取引の直接記録を無効にす ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL=仕訳帳で下書きエクスポートを有効にする ACCOUNTANCY_COMBO_FOR_AUX=子会社アカウントのコンボリストを有効にする (取引先が多数あると遅くなるだろうし、値の一部検索機能は壊れる) ACCOUNTING_DATE_START_BINDING=会計で結合と転記を開始する日付を定義する。この日付を下回ると、取引は会計に転記されない。 -ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=会計転送では、デフォルトで期間表示を選択する +ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=会計転送では、デフォルトで選択される期間は何か ACCOUNTING_SELL_JOURNAL=販売仕訳帳 ACCOUNTING_PURCHASE_JOURNAL=購買仕訳帳 @@ -182,7 +183,7 @@ DONATION_ACCOUNTINGACCOUNT=寄付を登録するための勘定科目 ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=サブスクリプションを登録するための勘定科目 ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=顧客入金を登録するためのデフォルトの勘定科目 -UseAuxiliaryAccountOnCustomerDeposit=顧客の入金ラインでサブアカウントを使用する +UseAuxiliaryAccountOnCustomerDeposit=顧客アカウントを頭金ラインの補助元帳に個人アカウントとして保存する(無効にした場合、頭金ラインの個人アカウントは空のままになる) ACCOUNTING_PRODUCT_BUY_ACCOUNT=購入した製品のデフォルトの勘定科目(製品シートで定義されていない場合に使用) ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT=EEC域内で購入した製品のデフォルト勘定科目(製品シートで定義されていない場合に使用) @@ -332,7 +333,7 @@ ACCOUNTING_DISABLE_BINDING_ON_EXPENSEREPORTS=経費報告書sの会計におけ ## Export NotifiedExportDate=エクスポートされた行にエクスポート済みのフラグを付ける(行を変更するには、トランザクション全体を削除して、会計に再転送する必要がある) -NotifiedValidationDate=エクスポートされたエントリの検証とロック(「閉鎖」機能と同じ効果、行の変更と削除は完全に不可能 ) +NotifiedValidationDate=エクスポートされたエントリを検証してロックする(「%s」機能と同じ効果、行の変更と削除は絶対に不可) DateValidationAndLock=日付の検証とロック ConfirmExportFile=会計エクスポートファイルの生成を確定するか? ExportDraftJournal=下書き仕訳帳のエクスポート @@ -427,6 +428,7 @@ SorryThisModuleIsNotCompatibleWithTheExperimentalFeatureOfSituationInvoices=御 AccountancyErrorMismatchLetterCode=調整コードの不一致 AccountancyErrorMismatchBalanceAmount=残高(%s)が0に等しくない AccountancyErrorLetteringBookkeeping=トランザクションに関してエラーが発生しました:%s +ErrorAccountNumberAlreadyExists=会計番号%sはすでに存在する ## Import ImportAccountingEntries=会計仕訳 diff --git a/htdocs/langs/ja_JP/admin.lang b/htdocs/langs/ja_JP/admin.lang index 64ad5341086..ab5560fb9a2 100644 --- a/htdocs/langs/ja_JP/admin.lang +++ b/htdocs/langs/ja_JP/admin.lang @@ -1058,7 +1058,7 @@ DictionarySendingMethods=配送方法 DictionaryStaff=就業者数 DictionaryAvailability=配達遅延 DictionaryOrderMethods=注文方法 -DictionarySource=提案/受注の起源 +DictionarySource=提案/受注の出処 DictionaryAccountancyCategory=報告書s用にパーソナライズされたグループ DictionaryAccountancysystem=勘定科目表のモデル DictionaryAccountancyJournal=会計仕訳帳 @@ -1936,7 +1936,7 @@ PressF5AfterChangingThis=キーボードのCTRL + F5を押すか、この値を NotSupportedByAllThemes=コアテーマで動作するが、外部テーマではサポートされていない可能性がある BackgroundColor=背景色 TopMenuBackgroundColor=トップメニューの背景色 -TopMenuDisableImages=トップメニューで画像を非表示 +TopMenuDisableImages=トップメニューのアイコンまたはテキスト LeftMenuBackgroundColor=左メニューの背景色 BackgroundTableTitleColor=表のタイトル行の背景色 BackgroundTableTitleTextColor=表のタイトル行のテキストの色 @@ -2059,6 +2059,7 @@ VATIsUsedIsOff=注:消費税またはVATを使用するオプションは、 SwapSenderAndRecipientOnPDF=PDFドキュメントの送信者と受信者のアドレス位置を入れ替える FeatureSupportedOnTextFieldsOnly=警告、機能性はテキストフィールドとコンボリストでのみサポートされる。また、この機能性を引き出すには、URLパラメータ action=create または action=edit を設定するか、ページ名が 'new.php' で終わる必要がある。 EmailCollector=メールコレクター +EmailCollectors=メールコレクター EmailCollectorDescription=スケジュールされたジョブと設定ページを追加して、 ( IMAPプロトコルを使用して ) 定期的に電子メールボックスをスキャンし、アプリケーションに受信した電子メールを適切な場所で記録したり、いくつかの記録を自動的に作成したりする ( 引合など ) 。 NewEmailCollector=新規Eメールコレクター EMailHost=電子メールIMAPサーバーのホスト @@ -2073,14 +2074,14 @@ DateLastCollectResult=最新の取得試行の日付 DateLastcollectResultOk=最新の取得成功の日付 LastResult=最新の結果 EmailCollectorHideMailHeaders=収集された電子メールの保存されたコンテンツに電子メールヘッダーのコンテンツを含めないこと -EmailCollectorHideMailHeadersHelp=有効にすると、イベントとして保存される電子メールコンテンツの最後に電子メールヘッダーが追加されない。 +EmailCollectorHideMailHeadersHelp=有効にすると、アジェンダイベントとして保存される電子メールコンテンツの最後に電子メールヘッダーは追加されない。 EmailCollectorConfirmCollectTitle=メール収集確定 EmailCollectorConfirmCollect=このコレクタを今すぐ実行するか? EmailCollectorExampleToCollectTicketRequestsDesc=いくつかのルールに一致する電子メールを収集し、電子メール情報を含むチケットを自動的に作成する(モジュールチケットを有効化する必要がある)。電子メールでサポートを提供する場合は、このコレクタを使用できるため、チケット要求が自動的に生成される。 Collect_Responsesも有効化して、チケットビューで直接クライアントの回答を収集する(Dolibarrから返信する必要がある)。 EmailCollectorExampleToCollectTicketRequests=チケット要求の収集例(最初のメッセージのみ) EmailCollectorExampleToCollectAnswersFromExternalEmailSoftwareDesc=メールボックスの「送信済み」ディレクトリをスキャンして、Dolibarrからではなく、電子メールソフトウェアから直接別の電子メールの応答として送信された電子メールを見つけます。そのような電子メールが見つかった場合、回答のイベントはDolibarrに記録される EmailCollectorExampleToCollectAnswersFromExternalEmailSoftware=外部の電子メールソフトウェアから送信された電子メールの回答を収集する例 -EmailCollectorExampleToCollectDolibarrAnswersDesc=アプリケーションから送信された電子メールの回答である全電子メールを収集する。電子メール応答を含むイベント(モジュールアジェンダを有効にする必要がある)は、適切な場所に記録される。たとえば、アプリケーションから電子メールでチケットの商業提案、注文、請求書、またはメッセージを送信し、顧客が電子メールに応答した場合、システムは自動的に応答をキャッチしてERPに追加する。 +EmailCollectorExampleToCollectDolibarrAnswersDesc=アプリケーションから送信された電子メールの回答であるすべての電子メールを収集する。電子メール応答を含むイベント(モジュールアジェンダを有効にする必要があ)は、適切な場所に記録される。たとえば、アプリケーションから電子メールでチケットの商取引提案、注文、請求書、またはメッセージを送信し、受信者が電子メールに応答すると、システムは自動的に応答をキャッチしてERPに追加する。 EmailCollectorExampleToCollectDolibarrAnswers=Dolibarrから送信されたメッセージへの回答である全受信メッセージを収集する例 EmailCollectorExampleToCollectLeadsDesc=いくつかのルールに一致する電子メールを収集し、電子メール情報を使用してリードを自動的に作成する(モジュールプロジェクトを有効にする必要がある)。モジュールプロジェクト(1リード= 1プロジェクト)を使用してリードをフォローする場合は、このコレクタを使用できる。これにより、リードが自動的に生成される。コレクタのCollect_Responsesも有効になっている場合、リード、プロポーザル、またはその他のオブジェクトから電子メールを送信すると、アプリケーションに直接顧客またはパートナーの回答が表示される場合がある。
注:この最初の例では、リードのタイトルが電子メールを含めて生成される。サードパーティがデータベース(新規顧客)で見つからない場合、リードはID1のサードパーティに接続される。 EmailCollectorExampleToCollectLeads=リードの収集例 @@ -2088,7 +2089,7 @@ EmailCollectorExampleToCollectJobCandidaturesDesc=求人に応募するメール EmailCollectorExampleToCollectJobCandidatures=電子メールで受け取った求職者の収集例 NoNewEmailToProcess=処理する新規電子メール ( 一致するフィルタ ) はない NothingProcessed=何もしていない -XEmailsDoneYActionsDone=%s電子メールが修飾され、%s電子メールが正常に処理された ( %sレコード/アクションが実行された場合 ) +XEmailsDoneYActionsDone=%s電子メールは事前に認定され、%s電子メールは正常に処理されました(%sレコード/アクションが実行された場合) RecordEvent=議題にイベントを記録する(送信または受信した電子メールの種類を使用) CreateLeadAndThirdParty=リード(および必要なら取引先)を作成する CreateTicketAndThirdParty=チケットを作成する(取引先が以前の操作によってロードされた場合、またはメールヘッダーのトラッカーから推測された場合は、取引先にリンクされる。それ以外の場合は取引先は含まれない) @@ -2167,6 +2168,9 @@ EmailTemplate=メールのテンプレート EMailsWillHaveMessageID=電子メールには、この構文に一致するタグ「参照」がある PDF_SHOW_PROJECT=ドキュメントにプロジェクトを表示 ShowProjectLabel=プロジェクトラベル +PDF_INCLUDE_ALIAS_IN_THIRDPARTY_NAME=取引先名にエイリアスを含める +THIRDPARTY_ALIAS=取引先に名前を付ける-エイリアス取引先 +ALIAS_THIRDPARTY=エイリアス取引先-取引先に名前を付ける PDF_USE_ALSO_LANGUAGE_CODE=PDF内の一部のテキストを同じ生成PDFで2つの異なる言語で複製する場合は、ここでこの2番目の言語を設定して、生成されたPDFに同じページに2つの異なる言語が含まれるようにする必要がある。1つはPDFの生成時に選択され、もう1つは ( これをサポートしているPDFテンプレートはごくわずか ) 。 PDFごとに1つの言語を空のままにする。 PDF_USE_A=デフォルト形式のPDFではなくPDF / A形式のPDFドキュメントを生成する FafaIconSocialNetworksDesc=FontAwesomeアイコンのコードをここに入力する。 FontAwesomeとは何かわからない場合は、一般的な値fa-address-bookを使用できる。 @@ -2248,13 +2252,21 @@ TemplateforBusinessCards=異なるサイズの名刺のテンプレート InventorySetup= 目録設定 ExportUseLowMemoryMode=低メモリモードを使用する ExportUseLowMemoryModeHelp=低メモリモードを使用して、ダンプのexecを実行する(圧縮は、PHPメモリではなくパイプを介して行われる)。この方法では、ファイルが完了したことを確認できず、失敗した場合はエラーメッセージを報告できない。 + +ModuleWebhookName = Webhook +ModuleWebhookDesc = dolibarrトリガーをキャッチしてURLに送信するためのインターフェース +WebhookSetup = Webhookのセットアップ +Settings = 設定 +WebhookSetupPage = Webhookセットアップページ ShowQuickAddLink=右上のメニューに要素をすばやく追加するためのボタンを表示する + HashForPing=pingに使用されるハッシュ ReadOnlyMode=インスタンスは「読取り専用」モードか DEBUGBAR_USE_LOG_FILE= dolibarr.log ファイルを使用して、ログをトラップする UsingLogFileShowAllRecordOfSubrequestButIsSlower=ライブメモリをキャッチする代わりに、dolibarr.logファイルを使用してログをトラップする。現在のプロセスのログだけでなく(ajaxサブ要求ページの1つを含む)全ログをキャッチできるが、インスタンスの速度が非常に遅くなる。推奨されない。 FixedOrPercent=固定(キーワード'fixed'を使用)またはパーセント(キーワード'percent'を使用) DefaultOpportunityStatus=デフォルトの商談ステータス(リードが作成されたときの最初のステータス) + IconAndText=アイコンとテキスト TextOnly=テキストのみ IconOnlyAllTextsOnHover=アイコンのみ-すべてのテキストはマウスがメニューバー上にある時アイコン下に表示される @@ -2262,4 +2274,15 @@ IconOnlyTextOnHover=アイコンのみ-アイコンのテキストはマウス IconOnly=アイコンのみ-ツールチップのみのテキスト INVOICE_ADD_ZATCA_QR_CODE=請求書にZATCAQRコードを表示する INVOICE_ADD_ZATCA_QR_CODEMore=一部のアラビア語の国では、請求書にこのQRコードが必要 +INVOICE_ADD_SWISS_QR_CODE=請求書にスイスのQR-Billコードを表示する UrlSocialNetworksDesc=ソーシャルネットワークのURLリンク。ソーシャルネットワークIDを含む可変部分には{socialid}を使用する。 +IfThisCategoryIsChildOfAnother=このカテゴリが別カテゴリの子である場合 +DarkThemeMode=ダークテーマモード +AlwaysDisabled=常に無効 +AccordingToBrowser=ブラウザによる +AlwaysEnabled=常に有効 +DoesNotWorkWithAllThemes=すべてのテーマで機能するわけではない +NoName=ノーネーム +ShowAdvancedOptions= 高度なオプションを表示 +HideAdvancedoptions= 詳細オプションを非表示 +CIDLookupURL=このモジュールは、外部ツールがサードパーティの名前またはその電話番号から連絡先を取得するために使用できるURLを提供する。使用するURLは次のとおり。 diff --git a/htdocs/langs/ja_JP/agenda.lang b/htdocs/langs/ja_JP/agenda.lang index 52b9fe00edd..5e5716c8ff1 100644 --- a/htdocs/langs/ja_JP/agenda.lang +++ b/htdocs/langs/ja_JP/agenda.lang @@ -57,6 +57,7 @@ MemberValidatedInDolibarr=構成員%sは承認済 MemberModifiedInDolibarr=構成員%sが修正された MemberResiliatedInDolibarr=構成員%sが解除された MemberDeletedInDolibarr=構成員%sが削除された +MemberExcludedInDolibarr=メンバー%sは除外された MemberSubscriptionAddedInDolibarr=構成員%sのサブスクリプション%sは追加済 MemberSubscriptionModifiedInDolibarr=構成員%sのサブスクリプション%sは変更済 MemberSubscriptionDeletedInDolibarr=構成員%sのサブスクリプション%sは削除済 diff --git a/htdocs/langs/ja_JP/boxes.lang b/htdocs/langs/ja_JP/boxes.lang index 50556765e00..553e0f6f027 100644 --- a/htdocs/langs/ja_JP/boxes.lang +++ b/htdocs/langs/ja_JP/boxes.lang @@ -46,6 +46,7 @@ BoxMyLastBookmarks=ブックマーク:最新の%s BoxOldestExpiredServices=最も古いアクティブな期限切れのサービス BoxLastExpiredServices=アクティブな期限切れのサービスを持つ最新の%s最も古い連絡先 BoxTitleLastActionsToDo=実行する最新の%sアクション +BoxTitleOldestActionsToDo=完了しない最も古い%sイベント BoxTitleLastContracts=変更された最新の%s契約 BoxTitleLastModifiedDonations=変更された最新の%s寄付 BoxTitleLastModifiedExpenses=変更された最新の%s経費報告書s diff --git a/htdocs/langs/ja_JP/cashdesk.lang b/htdocs/langs/ja_JP/cashdesk.lang index 0066fd2f620..9698440a97e 100644 --- a/htdocs/langs/ja_JP/cashdesk.lang +++ b/htdocs/langs/ja_JP/cashdesk.lang @@ -136,3 +136,10 @@ PrintWithoutDetails=詳細なしで印刷 YearNotDefined=年は未定義 TakeposBarcodeRuleToInsertProduct=製品を挿入するためのバーコードルール TakeposBarcodeRuleToInsertProductDesc=スキャン済バーコードから製品参照+数量を抽出するルール。
空(デフォルト値)の場合、アプリケーションはスキャンされたバーコードのみを使用して製品を検索する。

定義済の場合の構文規則:
ref:NB+qu:NB+qd:NB+other:NB
上記 NB はスキャン済バーコードからデータ抽出するときに使用する文字数であり:
  • ref : 製品参照
  • qu : 項目追加時の設定数量(units)
  • qd : 項目追加時の設定数量 (decimals)
  • other : その他の文字列
+AlreadyPrinted=すでに印刷されている +HideCategories=カテゴリを非表示 +HideStockOnLine=オンライン在庫を非表示 +ShowOnlyProductInStock=在庫製品を表示 +ShowCategoryDescription=カテゴリの説明を表示 +ShowProductReference=製品のリファレンスを表示する +UsePriceHT=税抜価格を使用する、税込価格でなく。 diff --git a/htdocs/langs/ja_JP/holiday.lang b/htdocs/langs/ja_JP/holiday.lang index dec4b487e60..39420ee5512 100644 --- a/htdocs/langs/ja_JP/holiday.lang +++ b/htdocs/langs/ja_JP/holiday.lang @@ -4,6 +4,7 @@ Holidays=有給休暇 CPTitreMenu=有給休暇 MenuReportMonth=月次報告 MenuAddCP=新規休暇申請 +MenuCollectiveAddCP=新規集団休暇申請 NotActiveModCP=このページを表示するには、モジュールLeaveを有効にする必要がある。 AddCP=休暇申請をする DateDebCP=開始日 @@ -79,6 +80,8 @@ MotifCP=理由 UserCP=ユーザ ErrorAddEventToUserCP=例外休暇の追加中にエラーが発生した。 AddEventToUserOkCP=特別休暇の追加が完了した。 +ErrorFieldRequiredUserOrGroup=「グループ」フィールドまたは「ユーザー」フィールドに入力する必要がある +fusionGroupsUsers=グループフィールドとユーザーフィールドがマージされる MenuLogCP=変更ログを表示する LogCP="Balance of Leave" に加えられた全更新ログ ActionByCP=更新済の原因 @@ -86,6 +89,13 @@ UserUpdateCP=更新済の対象 PrevSoldeCP=以前のバランス NewSoldeCP=ニューバランス alreadyCPexist=この期間は既に休暇申請が行われている。 +UseralreadyCPexist=%sについては、この期間にすでに休暇申請が行われている。 +groups=グループ +users=ユーザ +AutoSendMail=自動郵送 +NewHolidayForGroup=新規集団休暇申請 +SendRequestCollectiveCP=一括休暇申請を送信する +AutoValidationOnCreate=自動検証 FirstDayOfHoliday=休暇申請の開始日 LastDayOfHoliday=休暇申請の終了日 BoxTitleLastLeaveRequests=最新の%s変更された休暇申請 diff --git a/htdocs/langs/ja_JP/hrm.lang b/htdocs/langs/ja_JP/hrm.lang index b3835267ecc..b66fec47d39 100644 --- a/htdocs/langs/ja_JP/hrm.lang +++ b/htdocs/langs/ja_JP/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=事業所を開く CloseEtablishment=事業所を閉じる # Dictionary DictionaryPublicHolidays=休暇-祝日 -DictionaryDepartment=HRM - 部門一覧 +DictionaryDepartment=HRM-組織単位 DictionaryFunction=HRM - 役職 # Module Employees=従業員s @@ -70,9 +70,9 @@ RequiredSkills=この仕事に必要なスキル UserRank=ユーザランク SkillList=スキルリスト SaveRank=ランクを保存 -knowHow=ノーハウ -HowToBe=なる方法 -knowledge=知識 +TypeKnowHow=ノーハウ +TypeHowToBe=あるべき姿 +TypeKnowledge=知識 AbandonmentComment=放棄コメント DateLastEval=最終評価日 NoEval=この従業員の評価は行われていない @@ -88,3 +88,4 @@ DeleteSkill = スキルが削除された SkillsExtraFields=追加属性(コンピテンシー) JobsExtraFields=追加属性(求人情報) EvaluationsExtraFields=追加属性(評価) +NeedBusinessTravels=出張が必要 diff --git a/htdocs/langs/ja_JP/install.lang b/htdocs/langs/ja_JP/install.lang index 5ae97fb50d2..818416d58f5 100644 --- a/htdocs/langs/ja_JP/install.lang +++ b/htdocs/langs/ja_JP/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=構成ファイル%sは書き込み可能ではな ConfFileIsWritable=コンフィギュレーションファイルの%sは書き込み可能。 ConfFileMustBeAFileNotADir=構成ファイル%s は、ディレクトリーではなくファイルでなければならない。 ConfFileReload=構成ファイルからパラメーターを再ロードする。 -NoReadableConfFileSoStartInstall=構成ファイルconf/ conf.php が存在しないか、再取得できない。インストールプロセスを実行して、初期化を試みる。 +NoReadableConfFileSoStartInstall=構成ファイルconf/ conf.php が存在しないか、読み取り可能ではない。インストールプロセスを実行して、初期化を試みる。 PHPSupportPOSTGETOk=このPHPは、変数POSTとGETをサポートする。 PHPSupportPOSTGETKo=PHP設定が変数POSTやGETをサポートしない可能性がある。 php.iniのパラメーターvariables_orderを確認すること。 PHPSupportSessions=このPHPは、セッションをサポートする。 @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=あなたは、パラメータ '%s' に間違った ErrorFailedToCreateDatabase=データベース %s を作成できなかった。 ErrorFailedToConnectToDatabase=データベース %s への接続に失敗した。 ErrorDatabaseVersionTooLow=データベースのバージョン (%s) が古すぎる。 バージョン %s 以降が必要。 -ErrorPHPVersionTooLow=PHPのバージョンが古すぎる。バージョン%sが必要。 +ErrorPHPVersionTooLow=PHPバージョンが古すぎ。バージョン%s以降が必要。 +ErrorPHPVersionTooHigh=PHPバージョンが高すぎる。バージョン%s以下が必要。 ErrorConnectedButDatabaseNotFound=サーバーへの接続は成功したが、データベース '%s'が見つからない。 ErrorDatabaseAlreadyExists=データベース %s は既に存在する。 +ErrorNoMigrationFilesFoundForParameters=選択したバージョンの移行ファイルが見つからない IfDatabaseNotExistsGoBackAndUncheckCreate=データベースが存在しない場合は、戻って "データベースの作成" オプションをオンにする。 IfDatabaseExistsGoBackAndCheckCreate=データベースが既に存在する場合は、戻ってチェックを外してオプションの "データベースの作成" を参照すること。 WarningBrowserTooOld=ブラウザのバージョンが古すぎる。ブラウザをFirefox、Chrome、またはOperaの最新バージョンにアップグレードすることを強くお勧めする。 diff --git a/htdocs/langs/ja_JP/languages.lang b/htdocs/langs/ja_JP/languages.lang index e1d982e8391..b099dd63c48 100644 --- a/htdocs/langs/ja_JP/languages.lang +++ b/htdocs/langs/ja_JP/languages.lang @@ -13,6 +13,7 @@ Language_az_AZ=アゼルバイジャン語 Language_bn_BD=ベンガル語 Language_bn_IN=ベンガル語(インド) Language_bg_BG=ブルガリア語 +Language_bo_CN=チベット人 Language_bs_BA=ボスニア語 Language_ca_ES=カタロニア語 Language_cs_CZ=チェコ語 @@ -39,6 +40,7 @@ Language_es_AR=スペイン語 (アルゼンチン) Language_es_BO=スペイン語 (ボリビア) Language_es_CL=スペイン語 (チリ) Language_es_CO=スペイン語 (コロンビア) +Language_es_CR=スペイン語(コスタリカ) Language_es_DO=スペイン語 (ドミニカ共和国) Language_es_EC=スペイン語 (エクアドル) Language_es_GT=スペイン語(グアテマラ) @@ -93,6 +95,7 @@ Language_nl_BE=オランダ語 (ベルギー) Language_nl_NL=オランダ語 Language_pl_PL=ポーランド語 Language_pt_AO=ポルトガル語(アンゴラ) +Language_pt_MZ=ポルトガル語(モザンビーク) Language_pt_BR=ポルトガル語 (ブラジル) Language_pt_PT=ポルトガル語 Language_ro_MD=ルーマニア語 (モルダビア) diff --git a/htdocs/langs/ja_JP/mails.lang b/htdocs/langs/ja_JP/mails.lang index 86b956761da..d3b4be716b5 100644 --- a/htdocs/langs/ja_JP/mails.lang +++ b/htdocs/langs/ja_JP/mails.lang @@ -178,3 +178,4 @@ IsAnAnswer=最初のメールの回答 RecordCreatedByEmailCollector=電子メールコレクター%sによって電子メール%sから作成されたレコード DefaultBlacklistMailingStatus=新しい連絡先を作成するときのフィールド「%s」のデフォルト値 DefaultStatusEmptyMandatory=空だが必須 +WarningLimitSendByDay=警告:インスタンスのセットアップまたはコントラクトにより、1日あたりのメール数が%sに制限される。さらに送信しようとすると、インスタンスの速度が低下したり、停止したりする可能性があります。より高い割り当てが必要な場合は、サポートに連絡すること。 diff --git a/htdocs/langs/ja_JP/main.lang b/htdocs/langs/ja_JP/main.lang index 73c7bae47f3..7ca8f54d70b 100644 --- a/htdocs/langs/ja_JP/main.lang +++ b/htdocs/langs/ja_JP/main.lang @@ -345,7 +345,7 @@ KiloBytes=キロバイト MegaBytes=メガバイト GigaBytes=ギガバイト TeraBytes=テラバイト -UserAuthor=によってCeated +UserAuthor=Created by UserModif=更新済の原因 b=B。 Kb=KB @@ -712,6 +712,7 @@ FeatureDisabled=機能が無効に MoveBox=ウィジェットの移動 Offered=提供 NotEnoughPermissions=このアクションの権限を持っていない +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=セッション名 Method=方法 Receive=受け取る @@ -801,6 +802,7 @@ URLPhoto=写真/ロゴのURL SetLinkToAnotherThirdParty=別の第三者へのリンク LinkTo=リンク先 LinkToProposal=提案へのリンク +LinkToExpedition= 遠征へのリンク LinkToOrder=注文へのリンク LinkToInvoice=請求書へのリンク LinkToTemplateInvoice=テンプレート請求書へのリンク @@ -1174,6 +1176,7 @@ ConfirmAllocateCommercial=営業担当者の確認を割り当てる ConfirmAllocateCommercialQuestion=選択した%sレコード(s)を割り当ててもよいか? CommercialsAffected=影響を受ける営業担当者 CommercialAffected=影響を受ける営業担当者 -YourMessage=貴方のメッセージ +YourMessage=あなたのメッセージ YourMessageHasBeenReceived=貴方のメッセージは受理済。できるだけ早く回答または連絡する予定。 UrlToCheck=チェックするURL +Automation=オートメーション diff --git a/htdocs/langs/ja_JP/members.lang b/htdocs/langs/ja_JP/members.lang index b327d984bdb..bce03a9c189 100644 --- a/htdocs/langs/ja_JP/members.lang +++ b/htdocs/langs/ja_JP/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=成員資格終了日 EndSubscription=成員資格終了 SubscriptionId=拠出金 ID WithoutSubscription=拠出金なし -MemberId=構成員ID +MemberId=メンバーID +MemberRef=メンバー参照 NewMember=新構成員 MemberType=構成員種別 MemberTypeId=構成員種別ID @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=構成員種別が削除できない NewSubscription=新規貢献 NewSubscriptionDesc=このフォームは、財団の新規構成員としての購読を記録するためのもの。更新を希望される方(既に構成員の方)は、財団理事会までメールで%sご連絡ください。 Subscription=拠出金 +AnyAmountWithAdvisedAmount=推奨量が%s%sの任意の量 +AnyAmountWithoutAdvisedAmount=任意の量 +CanEditAmountShort=任意の量 +CanEditAmountShortForValues=推奨、任意の金額 +MembershipDuration=期間 +GetMembershipButtonLabel=メンバーシップを取得する Subscriptions=拠出金 SubscriptionLate=遅い SubscriptionNotReceived=拠出金未受領 @@ -135,7 +142,7 @@ CardContent=あなたの構成員カードの内容 # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=成員資格の要求を受領したことをお知らせする。

ThisIsContentOfYourMembershipWasValidated=成員資格が下記の情報で承認されたことをお知らせする:

-ThisIsContentOfYourSubscriptionWasRecorded=新規サブスクリプションが記録されたことをお知らせする。

+ThisIsContentOfYourSubscriptionWasRecorded=新しいサブスクリプションが記録されたことをお知らせしたい。同封の請求書をご覧あれ。

ThisIsContentOfSubscriptionReminderEmail=サブスクリプションの有効期限が近づいているか、既に有効期限が切れていることをお知らせする(__MEMBER_LAST_SUBSCRIPTION_DATE_END__)。更新していただければ幸い。

ThisIsContentOfYourCard=私共の持っているあなたについて情報の概要。何か相違があればご連絡ください。

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=ゲストの自動登録の場合に受信する通知メールの件名 @@ -198,7 +205,8 @@ NbOfSubscriptions=拠出金の本数 AmountOfSubscriptions=拠出金から集計した金額 TurnoverOrBudget=売上高(法人の場合)または予算(基礎用) DefaultAmount=デフォルトの拠出金金額 -CanEditAmount=訪問者はその拠出金額を選択/編集できる +CanEditAmount=訪問者は、メンバーの種類に関係なく、寄付の金額を選択/編集できる +AmountIsLowerToMinimumNotice=surundûtotalde%s MEMBER_NEWFORM_PAYONLINE=統合されたオンライン決済のページにジャンプ ByProperties=本質的に MembersStatisticsByProperties=性質別構成員統計 diff --git a/htdocs/langs/ja_JP/modulebuilder.lang b/htdocs/langs/ja_JP/modulebuilder.lang index 63eeacf005a..42381529074 100644 --- a/htdocs/langs/ja_JP/modulebuilder.lang +++ b/htdocs/langs/ja_JP/modulebuilder.lang @@ -1,4 +1,5 @@ # Dolibarr language file - Source file is en_US - loan +IdModule= モジュールID ModuleBuilderDesc=このツールは、経験豊富なユーザまたは開発者のみが使用する必要がある。独自のモジュールを構築または編集するためのユーティリティを提供する。代替の手動開発のドキュメントは、ここにある。 EnterNameOfModuleDesc=作成するモジュール/アプリケーションの名前をスペースなしで入力する。大文字を使用して単語を区切る(例:MyModule、EcommerceForShop、SyncWithMySystem ...) EnterNameOfObjectDesc=作成するオブジェクトの名前をスペースなしで入力する。大文字を使用して単語を区切る(例:MyObject、Student、Teacher ...)。 CRUDクラスファイルだけでなく、APIファイル、オブジェクトを一覧表示/追加/編集/削除するページ、およびSQLファイルが生成される。 @@ -9,6 +10,7 @@ ModuleBuilderDesc4=ファイル%s がモジュールディレ NewModule=新規モジュール NewObjectInModulebuilder=新規オブジェクト NewDictionary=新規辞書 +ModuleName=モジュール名 ModuleKey=モジュールキー ObjectKey=オブジェクトキー DicKey=辞書キー @@ -153,3 +155,4 @@ LinkToParentMenu=親メニュー(fk_xxxxmenu) ListOfTabsEntries=タブエントリのリスト TabsDefDesc=モジュールによって提供されるタブをここで定義する TabsDefDescTooltip=モジュール/アプリケーションによって提供されるタブは、配列 $this->tabsにおいてモジュール記述子ファイルに定義される。このファイルを手動で編集できるし、埋め込みエディターの使用もできる。 +BadValueForType=タイプ%sの値が正しくない diff --git a/htdocs/langs/ja_JP/orders.lang b/htdocs/langs/ja_JP/orders.lang index a30aeeae540..79d1c47c9d9 100644 --- a/htdocs/langs/ja_JP/orders.lang +++ b/htdocs/langs/ja_JP/orders.lang @@ -1,4 +1,5 @@ # Dolibarr language file - Source file is en_US - orders +OrderExists=この提案にリンクされた注文はすでに開かれているため、他の注文は自動的に作成されませんでした OrdersArea=お客様の注文エリア SuppliersOrdersArea=購買発注エリア OrderCard=注文カード diff --git a/htdocs/langs/ja_JP/paypal.lang b/htdocs/langs/ja_JP/paypal.lang index 00ab548784b..58b43aaacb6 100644 --- a/htdocs/langs/ja_JP/paypal.lang +++ b/htdocs/langs/ja_JP/paypal.lang @@ -34,3 +34,4 @@ ARollbackWasPerformedOnPostActions=全Postアクションでロールバック ValidationOfPaymentFailed=支払の検証に失敗した CardOwner=カードホルダー PayPalBalance=ペイパルクレジット +OnlineSubscriptionPaymentLine=%sに記録されたオンラインサブスクリプション
%s
経由で支払われた発信元IPアドレス:%s
トランザクションID:%s diff --git a/htdocs/langs/ja_JP/projects.lang b/htdocs/langs/ja_JP/projects.lang index 9820d8adcd6..0eeb808a0d0 100644 --- a/htdocs/langs/ja_JP/projects.lang +++ b/htdocs/langs/ja_JP/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=請求に費やされた時間 TimeSpentForIntervention=に費や​​された時間は TimeSpentForInvoice=に費や​​された時間は OneLinePerUser=ユーザごとに1行 -ServiceToUseOnLines=行で利用するサービス +ServiceToUseOnLines=デフォルトで回線上で使用するサービス InvoiceGeneratedFromTimeSpent=請求書%sは、プロジェクトに費やされた時間から生成された InterventionGeneratedFromTimeSpent=出張%sは、プロジェクトに費やされた時間から生成された ProjectBillTimeDescription=プロジェクトのタスクにタイムシートを入力し、タイムシートから請求書(s)を生成してプロジェクトの顧客に請求する予定があるかどうかを確認する(入力したタイムシートに基づかない請求書を作成する予定があるかどうかは確認しないこと)。注:請求書を生成するには、プロジェクトの"費やした時間"タブに移動し、含める行を選択する。 @@ -294,3 +294,4 @@ EnablePublicLeadForm=連絡用の公開フォームを有効にする NewLeadbyWeb=メッセージまたはリクエストは記録済。すぐに回答または連絡する予定。 NewLeadForm=新規問合せフォーム LeadFromPublicForm=公開フォームからのオンライン導線 +ExportAccountingReportButtonLabel=レポートを取得する diff --git a/htdocs/langs/ja_JP/stocks.lang b/htdocs/langs/ja_JP/stocks.lang index 6530ad80408..bee56bf56d2 100644 --- a/htdocs/langs/ja_JP/stocks.lang +++ b/htdocs/langs/ja_JP/stocks.lang @@ -265,6 +265,7 @@ ProductBarcodeDoesNotExist=バーコード付き製品は存在しない WarehouseId=倉庫ID WarehouseRef=倉庫参照 SaveQtyFirst=在庫推移の作成を依頼する前に、最初に実際の在庫数量を保存する。 +ToStart=スタート InventoryStartedShort=開始済 ErrorOnElementsInventory=次の理由により、操作がキャンセルされた。 ErrorCantFindCodeInInventory=インベントリに次のコードが見つからない @@ -272,3 +273,45 @@ QtyWasAddedToTheScannedBarcode=成功 !!数量は、要求された全バー StockChangeDisabled=在庫変更は無効化済 NoWarehouseDefinedForTerminal=ターミナル用に倉庫が定義されていない ClearQtys=全数量をクリアする +ModuleStockTransferName=高度な在庫移動 +ModuleStockTransferDesc=移動シートの生成による在庫移動の高度な管理 +StockTransferNew=新規在庫移動 +StockTransferList=在庫移動リスト +ConfirmValidateStockTransfer=参照%sを使用して、この在庫移動を検証するか? +ConfirmDestock=移動%sによる在庫の減少 +ConfirmDestockCancel=移動%sで在庫の減少をキャンセルする +DestockAllProduct=在庫の減少 +DestockAllProductCancel=在庫の減少をキャンセルする +ConfirmAddStock=移動%sで在庫を増やす +ConfirmAddStockCancel=移動%sで在庫の増加をキャンセルする +AddStockAllProduct=在庫の増加 +AddStockAllProductCancel=在庫の増加をキャンセルする +DatePrevueDepart=出発予定日 +DateReelleDepart=実際の出発日 +DatePrevueArrivee=到着の予定日 +DateReelleArrivee=実際の到着日 +HelpWarehouseStockTransferSource=このウェアハウスが設定されている場合、それ自体とその子のみがソースウェアハウスとして使用可能になる +HelpWarehouseStockTransferDestination=このウェアハウスが設定されている場合、それ自体とその子のみが宛先ウェアハウスとして使用可能になる +LeadTimeForWarning=アラートまでのリードタイム(日数) +TypeContact_stocktransfer_internal_STFROM=在庫移動の差出人 +TypeContact_stocktransfer_internal_STDEST=在庫移動の受領者 +TypeContact_stocktransfer_internal_STRESP=在庫移転を担当 +StockTransferSheet=在庫移動シート +StockTransferSheetProforma=見積在庫移動シート +StockTransferDecrementation=ソースウェアハウスを減らす +StockTransferIncrementation=仕向地の倉庫を増やす +StockTransferDecrementationCancel=ソース倉庫の減少をキャンセルする +StockTransferIncrementationCancel=仕向倉庫の増設をキャンセル +StockStransferDecremented=ソースウェアハウスが減少した +StockStransferDecrementedCancel=ソース倉庫の減少がキャンセルされた +StockStransferIncremented=閉鎖済 - 在庫は移動済 +StockStransferIncrementedShort=移動済在庫 +StockStransferIncrementedShortCancel=仕向地倉庫の増設キャンセル +StockTransferNoBatchForProduct=製品%sはバッチを使用せず、オンラインでバッチをクリアして再試行する +StockTransferSetup = 在庫移動モジュールの構成 +Settings=設定 +StockTransferSetupPage = 在庫移動モジュールの設定ページ +StockTransferRightRead=在庫移動を読込む +StockTransferRightCreateUpdate=在庫移動の作成/更新 +StockTransferRightDelete=在庫移動を削除 +BatchNotFound=この製品のロット/シリアルが見つからない diff --git a/htdocs/langs/ja_JP/suppliers.lang b/htdocs/langs/ja_JP/suppliers.lang index f0550761e92..243169173c7 100644 --- a/htdocs/langs/ja_JP/suppliers.lang +++ b/htdocs/langs/ja_JP/suppliers.lang @@ -4,6 +4,7 @@ SuppliersInvoice=仕入先請求書 SupplierInvoices=仕入先請求書 ShowSupplierInvoice=仕入先の請求書を表示する NewSupplier=新規仕入先 +NewSupplierInvoice = 新規ベンダーの請求書 History=履歴 ListOfSuppliers=仕入先のリスト ShowSupplier=仕入先を表示 diff --git a/htdocs/langs/ja_JP/ticket.lang b/htdocs/langs/ja_JP/ticket.lang index 1613a79a92b..d1ba081b31e 100644 --- a/htdocs/langs/ja_JP/ticket.lang +++ b/htdocs/langs/ja_JP/ticket.lang @@ -90,8 +90,8 @@ TicketPublicAccess=IDを必要としない公開インターフェイスは、 TicketSetupDictionaries=チケットのタイプ、重大度、および分析コードは辞書から構成できる TicketParamModule=モジュール変数の設定 TicketParamMail=メールの設定 -TicketEmailNotificationFrom=チケットの回答については、電子メールを送信すること -TicketEmailNotificationFromHelp=Dolibarrから送信されたチケット回答の電子メールを送信する +TicketEmailNotificationFrom=Sender e-mail for notification on answers +TicketEmailNotificationFromHelp=Sender e-mail to use to send the notification email when an answer is provided inside the backoffice. For example noreply@example.com TicketEmailNotificationTo=このメールアドレスにチケット作成を通知する TicketEmailNotificationToHelp=存在する場合、この電子メールアドレスにチケット作成が通知される TicketNewEmailBodyLabel=チケット作成後に送信されるテキストメッセージ diff --git a/htdocs/langs/kk_KZ/hrm.lang b/htdocs/langs/kk_KZ/hrm.lang index 9a4beea5ca4..a48ea239aa9 100644 --- a/htdocs/langs/kk_KZ/hrm.lang +++ b/htdocs/langs/kk_KZ/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Ашық мекеме CloseEtablishment=Жақын мекеме # Dictionary DictionaryPublicHolidays=Демалыс - мереке күндері -DictionaryDepartment=HRM - Бөлімдер тізімі +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM - жұмыс орындары # Module Employees=Қызметкерлер @@ -20,13 +20,14 @@ Employee=Қызметкер NewEmployee=Жаңа қызметкер ListOfEmployees=Жұмысшылардың тізімі HrmSetup=HRM module setup -HRM_MAXRANK=Maximum rank for a skill +SkillsManagement=Skills management +HRM_MAXRANK=Maximum number of levels to rank a skill HRM_DEFAULT_SKILL_DESCRIPTION=Default description of ranks when skill is created deplacement=Shift DateEval=Evaluation date JobCard=Job card -Job=Job -Jobs=Jobs +JobPosition=Job +JobsPosition=Jobs NewSkill=New Skill SkillType=Skill type Skilldets=List of ranks for this skill @@ -47,9 +48,8 @@ ConfirmValidateEvaluation=Are you sure you want to validate this evaluation with EvaluationCard=Evaluation card RequiredRank=Required rank for this job EmployeeRank=Employee rank for this skill -Position=Position -Positions=Positions -PositionCard=Position card +EmployeePosition=Employee position +EmployeePositions=Employee positions EmployeesInThisPosition=Employees in this position group1ToCompare=Usergroup to analyze group2ToCompare=Second usergroup for comparison @@ -70,12 +70,22 @@ RequiredSkills=Required skills for this job UserRank=User Rank SkillList=Skill list SaveRank=Save rank -knowHow=Know how -HowToBe=How to be -knowledge=Knowledge +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=Abandonment comment DateLastEval=Date last evaluation NoEval=No evaluation done for this employee HowManyUserWithThisMaxNote=Number of users with this rank HighestRank=Highest rank SkillComparison=Skill comparison +ActionsOnJob=Events on this job +VacantPosition=job vacancy +VacantCheckboxHelper=Checking this option will show unfilled positions (job vacancy) +SaveAddSkill = Skill(s) added +SaveLevelSkill = Skill(s) level saved +DeleteSkill = Skill removed +SkillsExtraFields=Attributs supplémentaires (Compétences) +JobsExtraFields=Attributs supplémentaires (Emplois) +EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/kk_KZ/install.lang b/htdocs/langs/kk_KZ/install.lang index cfcabaa481e..b16cace5e25 100644 --- a/htdocs/langs/kk_KZ/install.lang +++ b/htdocs/langs/kk_KZ/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable= %s конфигурация файлы жазыл ConfFileIsWritable= %s конфигурация файлы жазылады. ConfFileMustBeAFileNotADir= %s конфигурация файлы каталог емес, файл болуы керек. ConfFileReload=Конфигурация файлынан параметрлерді қайта жүктеу. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=Бұл PHP POST және GET айнымалыларын қолдайды. PHPSupportPOSTGETKo=Мүмкін сіздің PHP орнату POST және/немесе GET айнымалы мәндерін қолдамайды. variables_order параметрін php.ini ішінен тексеріңіз. PHPSupportSessions=Бұл PHP сеанстарды қолдайды. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Сіз '%s' параметріне қате мән ErrorFailedToCreateDatabase='%s' дерекқоры жасалмады. ErrorFailedToConnectToDatabase='%s' дерекқорына қосылу сәтсіз аяқталды. ErrorDatabaseVersionTooLow=Деректер базасының нұсқасы (%s) тым ескі. %s немесе одан жоғары нұсқасы қажет. -ErrorPHPVersionTooLow=PHP нұсқасы тым ескі. %s нұсқасы қажет. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Серверге қосылу сәтті болды, бірақ «%s» дерекқоры табылмады. ErrorDatabaseAlreadyExists='%s' дерекқоры бұрыннан бар. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=Егер деректер базасы жоқ болса, қайтып оралыңыз және «Деректер қорын жасау» опциясын тексеріңіз. IfDatabaseExistsGoBackAndCheckCreate=Егер деректер базасы бұрыннан бар болса, қайтып оралыңыз және «Дерекқор құру» опциясын алып тастаңыз. WarningBrowserTooOld=Браузердің нұсқасы тым ескі. Браузерді Firefox, Chrome немесе Opera -ның соңғы нұсқасына жаңарту ұсынылады. diff --git a/htdocs/langs/kk_KZ/main.lang b/htdocs/langs/kk_KZ/main.lang index 83448cb7eae..071c4ac9834 100644 --- a/htdocs/langs/kk_KZ/main.lang +++ b/htdocs/langs/kk_KZ/main.lang @@ -244,6 +244,7 @@ Designation=Сипаттама DescriptionOfLine=Сызық сипаттамасы DateOfLine=Жолдың күні DurationOfLine=Жолдың ұзақтығы +ParentLine=Parent line ID Model=Құжат үлгісі DefaultModel=Әдепкі құжат үлгісі Action=Оқиға @@ -344,7 +345,7 @@ KiloBytes=Килобайт MegaBytes=Мегабайт GigaBytes=Гигабайт TeraBytes=Терабайт -UserAuthor=Күткен +UserAuthor=Created by UserModif=Жаңартқан b=б. Kb=Kb @@ -517,6 +518,7 @@ or=немесе Other=Басқа Others=Басқалар OtherInformations=Басқа ақпарат +Workflow=Workflow Quantity=Саны Qty=Саны ChangedBy=Өзгерткен @@ -619,6 +621,7 @@ MonthVeryShort11=Н. MonthVeryShort12=D AttachedFiles=Қосылған файлдар мен құжаттар JoinMainDoc=Негізгі құжатқа қосылыңыз +JoinMainDocOrLastGenerated=Send the main document or the last generated one if not found DateFormatYYYYMM=ЖЖЖЖ-АА DateFormatYYYYMMDD=ЖЖЖЖ-АА-КК DateFormatYYYYMMDDHHMM=ЖЖЖЖ-АА-КК СС: SS @@ -709,6 +712,7 @@ FeatureDisabled=Мүмкіндік өшірілген MoveBox=Виджетті жылжыту Offered=Ұсынылған NotEnoughPermissions=Сізде бұл әрекетке рұқсат жоқ +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=Сеанстың атауы Method=Әдіс Receive=Қабылдау @@ -798,6 +802,7 @@ URLPhoto=Фотосуреттің/логотиптің URL мекенжайы SetLinkToAnotherThirdParty=Басқа үшінші тарапқа сілтеме LinkTo=Сілтеме LinkToProposal=Ұсынысқа сілтеме +LinkToExpedition= Link to expedition LinkToOrder=Тапсырысқа сілтеме LinkToInvoice=Шот -фактураға сілтеме LinkToTemplateInvoice=Шот -фактураның үлгісіне сілтеме @@ -1164,3 +1169,14 @@ NotClosedYet=Әлі жабылмаған ClearSignature=Reset signature CanceledHidden=Canceled hidden CanceledShown=Canceled shown +Terminate=Terminate +Terminated=Terminated +AddLineOnPosition=Add line on position (at the end if empty) +ConfirmAllocateCommercial=Assign sales representative confirmation +ConfirmAllocateCommercialQuestion=Are you sure you want to assign the %s selected record(s)? +CommercialsAffected=Sales representatives affected +CommercialAffected=Sales representative affected +YourMessage=Your message +YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. +UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/kk_KZ/members.lang b/htdocs/langs/kk_KZ/members.lang index 16ade0cca3e..7186cd35c9a 100644 --- a/htdocs/langs/kk_KZ/members.lang +++ b/htdocs/langs/kk_KZ/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=End date of membership EndSubscription=End of membership SubscriptionId=Contribution ID WithoutSubscription=Without contribution -MemberId=Мүше идентификаторы +MemberId=Member Id +MemberRef=Member Ref NewMember=Жаңа мүше MemberType=Мүше түрі MemberTypeId=Мүше түрінің идентификаторы @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Мүше түрін жою мүмкін емес NewSubscription=New contribution NewSubscriptionDesc=Бұл форма жазылымды қордың жаңа мүшесі ретінде жазуға мүмкіндік береді. Егер сіз жазылымды жаңартқыңыз келсе (егер оның мүшесі болса), оның орнына %s электрондық поштасына хабарласыңыз. Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Duration +GetMembershipButtonLabel=Get membership Subscriptions=Contributions SubscriptionLate=Кеш SubscriptionNotReceived=Contribution never received @@ -135,7 +142,7 @@ CardContent=Мүшелік картаның мазмұны # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=Сізге мүшелік сұрауыңыз қабылданғанын хабарлаймыз.

ThisIsContentOfYourMembershipWasValidated=Сізге мүшелігіңіз келесі ақпаратпен расталғанын хабарлаймыз:

-ThisIsContentOfYourSubscriptionWasRecorded=Сізге жаңа жазылымыңыз жазылғанын хабарлаймыз.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=Жазылымыңыздың мерзімі бітуге жақын немесе аяқталғанын хабарлаймыз (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Сіз оны жаңартасыз деп үміттенеміз.

ThisIsContentOfYourCard=Бұл сіз туралы бізде бар ақпараттың қысқаша мазмұны. Егер бірдеңе дұрыс болмаса, бізге хабарласыңыз.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Қонақтың автоматты түрде жазылуы кезінде алынған хабарлама электрондық поштасының тақырыбы @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=Айналым (компания үшін) немесе бюджет (іргетас үшін) DefaultAmount=Default amount of contribution -CanEditAmount=Visitor can choose/edit amount of its contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Біріктірілген онлайн төлем бетіне өтіңіз ByProperties=Табиғаты бойынша MembersStatisticsByProperties=Мүшелердің статистикасы табиғаты бойынша @@ -218,3 +226,5 @@ XExternalUserCreated=%s сыртқы пайдаланушылар жасалды ForceMemberNature=Мүшелік сипат (жеке немесе корпоративтік) CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/kk_KZ/projects.lang b/htdocs/langs/kk_KZ/projects.lang index 6c4c637acdf..6e3cab5d57c 100644 --- a/htdocs/langs/kk_KZ/projects.lang +++ b/htdocs/langs/kk_KZ/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=Есепке жұмсалатын уақыт TimeSpentForIntervention=Өткізілген уақыт TimeSpentForInvoice=Өткізілген уақыт OneLinePerUser=Бір пайдаланушыға бір жол -ServiceToUseOnLines=Желіде қолдануға арналған қызмет +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=%s шот -фактурасы жобаға жұмсалған уақыттан құрылды InterventionGeneratedFromTimeSpent=%s интервенциясы жобаға жұмсалған уақыттан құрылды ProjectBillTimeDescription=Жобаның тапсырмалары бойынша уақыт кестесін енгізгеніңізді тексеріңіз және жобаның тапсырыс берушісіне есеп айырысу үшін уақыт кестесінен шот -фактураларды құруды жоспарлап отырғаныңызды тексеріңіз (енгізілген уақыт кестелеріне негізделмеген шот -фактураны құруды жоспарлап отырғаныңызды тексермеңіз). Ескерту: Шот -фактураны құру үшін, жобаның «Өткізілген уақыт» қойындысына өтіп, қосылатын жолдарды таңдаңыз. @@ -294,3 +294,4 @@ EnablePublicLeadForm=Enable the public form for contact NewLeadbyWeb=Your message or request has been recorded. We will answer or contact your soon. NewLeadForm=New contact form LeadFromPublicForm=Online lead from public form +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/km_KH/holiday.lang b/htdocs/langs/km_KH/holiday.lang index 3d0ae64be0f..831d306cc39 100644 --- a/htdocs/langs/km_KH/holiday.lang +++ b/htdocs/langs/km_KH/holiday.lang @@ -4,6 +4,7 @@ Holidays=Leave CPTitreMenu=Leave MenuReportMonth=Monthly statement MenuAddCP=New leave request +MenuCollectiveAddCP=New collective leave request NotActiveModCP=You must enable the module Leave to view this page. AddCP=Make a leave request DateDebCP=Start date @@ -79,6 +80,8 @@ MotifCP=Reason UserCP=User ErrorAddEventToUserCP=An error occurred while adding the exceptional leave. AddEventToUserOkCP=The addition of the exceptional leave has been completed. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=View change logs LogCP=Log of all updates made to "Balance of Leave" ActionByCP=Updated by @@ -86,6 +89,13 @@ UserUpdateCP=Updated for PrevSoldeCP=Previous Balance NewSoldeCP=New Balance alreadyCPexist=A leave request has already been done on this period. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Groups +users=Users +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Beginning day of leave request LastDayOfHoliday=Ending day of leave request BoxTitleLastLeaveRequests=Latest %s modified leave requests diff --git a/htdocs/langs/kn_IN/holiday.lang b/htdocs/langs/kn_IN/holiday.lang index 3d0ae64be0f..12269904602 100644 --- a/htdocs/langs/kn_IN/holiday.lang +++ b/htdocs/langs/kn_IN/holiday.lang @@ -4,6 +4,7 @@ Holidays=Leave CPTitreMenu=Leave MenuReportMonth=Monthly statement MenuAddCP=New leave request +MenuCollectiveAddCP=New collective leave request NotActiveModCP=You must enable the module Leave to view this page. AddCP=Make a leave request DateDebCP=Start date @@ -79,6 +80,8 @@ MotifCP=Reason UserCP=User ErrorAddEventToUserCP=An error occurred while adding the exceptional leave. AddEventToUserOkCP=The addition of the exceptional leave has been completed. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=View change logs LogCP=Log of all updates made to "Balance of Leave" ActionByCP=Updated by @@ -86,6 +89,13 @@ UserUpdateCP=Updated for PrevSoldeCP=Previous Balance NewSoldeCP=New Balance alreadyCPexist=A leave request has already been done on this period. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=ಗುಂಪುಗಳು +users=Users +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Beginning day of leave request LastDayOfHoliday=Ending day of leave request BoxTitleLastLeaveRequests=Latest %s modified leave requests diff --git a/htdocs/langs/ko_KR/holiday.lang b/htdocs/langs/ko_KR/holiday.lang index fa8e500cd05..b60c6650458 100644 --- a/htdocs/langs/ko_KR/holiday.lang +++ b/htdocs/langs/ko_KR/holiday.lang @@ -4,6 +4,7 @@ Holidays=Leave CPTitreMenu=Leave MenuReportMonth=Monthly statement MenuAddCP=New leave request +MenuCollectiveAddCP=New collective leave request NotActiveModCP=You must enable the module Leave to view this page. AddCP=Make a leave request DateDebCP=시작일 @@ -79,6 +80,8 @@ MotifCP=이유 UserCP=사용자 ErrorAddEventToUserCP=An error occurred while adding the exceptional leave. AddEventToUserOkCP=The addition of the exceptional leave has been completed. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=View change logs LogCP=Log of all updates made to "Balance of Leave" ActionByCP=Updated by @@ -86,6 +89,13 @@ UserUpdateCP=Updated for PrevSoldeCP=Previous Balance NewSoldeCP=New Balance alreadyCPexist=A leave request has already been done on this period. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=그룹 +users=사용자 +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Beginning day of leave request LastDayOfHoliday=Ending day of leave request BoxTitleLastLeaveRequests=Latest %s modified leave requests diff --git a/htdocs/langs/ko_KR/members.lang b/htdocs/langs/ko_KR/members.lang index 77ba9afee60..122dd587c62 100644 --- a/htdocs/langs/ko_KR/members.lang +++ b/htdocs/langs/ko_KR/members.lang @@ -15,7 +15,7 @@ ErrorMemberIsAlreadyLinkedToThisThirdParty=Another member (name: %s, logi ErrorUserPermissionAllowsToLinksToItselfOnly=For security reasons, you must be granted permissions to edit all users to be able to link a member to a user that is not yours. SetLinkToUser=Link to a Dolibarr user SetLinkToThirdParty=Link to a Dolibarr third party -MembersCards=Business cards for members +MembersCards=Generation of cards for members MembersList=List of members MembersListToValid=List of draft members (to be validated) MembersListValid=List of valid members @@ -35,7 +35,8 @@ DateEndSubscription=End date of membership EndSubscription=End of membership SubscriptionId=Contribution ID WithoutSubscription=Without contribution -MemberId=Member id +MemberId=Member Id +MemberRef=Member Ref NewMember=New member MemberType=Member type MemberTypeId=Member type id @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Member type can not be deleted NewSubscription=New contribution NewSubscriptionDesc=This form allows you to record your subscription as a new member of the foundation. If you want to renew your subscription (if already a member), please contact foundation board instead by email %s. Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=기간 +GetMembershipButtonLabel=Get membership Subscriptions=Contributions SubscriptionLate=늦은 SubscriptionNotReceived=Contribution never received @@ -135,7 +142,7 @@ CardContent=Content of your member card # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=We want to let you know that your membership request was received.

ThisIsContentOfYourMembershipWasValidated=We want to let you know that your membership was validated with the following information:

-ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=We want to let you know that your subscription is about to expire or has already expired (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). We hope you will renew it.

ThisIsContentOfYourCard=This is a summary of the information we have about you. Please contact us if anything is incorrect.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Subject of the notification email received in case of auto-inscription of a guest @@ -159,11 +166,11 @@ HTPasswordExport=htpassword file generation NoThirdPartyAssociatedToMember=No third party associated with this member MembersAndSubscriptions=Members and Contributions MoreActions=Complementary action on recording -MoreActionsOnSubscription=Complementary action, suggested by default when recording a contribution +MoreActionsOnSubscription=Complementary action suggested by default when recording a contribution, also done automatially on online payment of a contribution MoreActionBankDirect=Create a direct entry on bank account MoreActionBankViaInvoice=Create an invoice, and a payment on bank account MoreActionInvoiceOnly=Create an invoice with no payment -LinkToGeneratedPages=Generate visit cards +LinkToGeneratedPages=Generation of business cards or address sheets LinkToGeneratedPagesDesc=This screen allows you to generate PDF files with business cards for all your members or a particular member. DocForAllMembersCards=Generate business cards for all members DocForOneMemberCards=Generate business cards for a particular member @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=Turnover (for a company) or Budget (for a foundation) DefaultAmount=Default amount of contribution -CanEditAmount=Visitor can choose/edit amount of its contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Jump on integrated online payment page ByProperties=By nature MembersStatisticsByProperties=Members statistics by nature @@ -218,3 +226,5 @@ XExternalUserCreated=%s external user(s) created ForceMemberNature=Force member nature (Individual or Corporation) CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/lo_LA/hrm.lang b/htdocs/langs/lo_LA/hrm.lang index 05584bdc080..8acb1942d00 100644 --- a/htdocs/langs/lo_LA/hrm.lang +++ b/htdocs/langs/lo_LA/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=ເປີດການສ້າງຕັ້ງ CloseEtablishment=ປິດການສ້າງຕັ້ງ # Dictionary DictionaryPublicHolidays=ພັກ - ວັນພັກລັດຖະການ -DictionaryDepartment=HRM - ລາຍຊື່ພະແນກ +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM - ຕຳ ແໜ່ງ ວຽກ # Module Employees=ພະນັກງານ @@ -20,13 +20,14 @@ Employee=ລູກ​ຈ້າງ NewEmployee=ພະນັກງານໃ່ ListOfEmployees=ລາຍຊື່ພະນັກງານ HrmSetup=HRM module setup -HRM_MAXRANK=Maximum rank for a skill +SkillsManagement=Skills management +HRM_MAXRANK=Maximum number of levels to rank a skill HRM_DEFAULT_SKILL_DESCRIPTION=Default description of ranks when skill is created deplacement=Shift DateEval=Evaluation date JobCard=Job card -Job=Job -Jobs=Jobs +JobPosition=Job +JobsPosition=Jobs NewSkill=New Skill SkillType=Skill type Skilldets=List of ranks for this skill @@ -47,9 +48,8 @@ ConfirmValidateEvaluation=Are you sure you want to validate this evaluation with EvaluationCard=Evaluation card RequiredRank=Required rank for this job EmployeeRank=Employee rank for this skill -Position=Position -Positions=Positions -PositionCard=Position card +EmployeePosition=Employee position +EmployeePositions=Employee positions EmployeesInThisPosition=Employees in this position group1ToCompare=Usergroup to analyze group2ToCompare=Second usergroup for comparison @@ -70,12 +70,22 @@ RequiredSkills=Required skills for this job UserRank=User Rank SkillList=Skill list SaveRank=Save rank -knowHow=Know how -HowToBe=How to be -knowledge=Knowledge +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=Abandonment comment DateLastEval=Date last evaluation NoEval=No evaluation done for this employee HowManyUserWithThisMaxNote=Number of users with this rank HighestRank=Highest rank SkillComparison=Skill comparison +ActionsOnJob=Events on this job +VacantPosition=job vacancy +VacantCheckboxHelper=Checking this option will show unfilled positions (job vacancy) +SaveAddSkill = Skill(s) added +SaveLevelSkill = Skill(s) level saved +DeleteSkill = Skill removed +SkillsExtraFields=Attributs supplémentaires (Compétences) +JobsExtraFields=Attributs supplémentaires (Emplois) +EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/lo_LA/install.lang b/htdocs/langs/lo_LA/install.lang index be72302b56d..10d3f90736d 100644 --- a/htdocs/langs/lo_LA/install.lang +++ b/htdocs/langs/lo_LA/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=ໄຟລ Conf ການຕັ້ງຄ່າ %s ConfFileIsWritable=ໄຟລ Conf ການຕັ້ງຄ່າ %s ແມ່ນສາມາດຂຽນໄດ້. ConfFileMustBeAFileNotADir=ໄຟລ Conf ການຕັ້ງຄ່າ %s ຕ້ອງເປັນໄຟລ,, ບໍ່ແມ່ນບັນຊີລາຍຊື່. ConfFileReload=ກຳ ລັງໂຫຼດຕົວ ກຳ ນົດການຄືນໃfrom່ຈາກໄຟລ configuration ການຕັ້ງຄ່າ. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=PHP ນີ້ຮອງຮັບຕົວແປ POST ແລະ GET. PHPSupportPOSTGETKo=ມັນເປັນໄປໄດ້ວ່າການຕັ້ງ PHP ຂອງເຈົ້າບໍ່ສະ ໜັບ ສະ ໜູນ ຕົວແປ POST ແລະ/ຫຼື GET. ກວດເບິ່ງຕົວກໍານົດການ variables_order ໃນ php.ini. PHPSupportSessions=PHP ນີ້ສະ ໜັບ ສະ ໜູນ ເຊດຊັນຕ່າງ. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=ເຈົ້າອາດຈະພິມຄ່າຜ ErrorFailedToCreateDatabase=ສ້າງຖານຂໍ້ມູນ '%s' ບໍ່ ສຳ ເລັດ. ErrorFailedToConnectToDatabase=ເຊື່ອມຕໍ່ກັບຖານຂໍ້ມູນ '%s ບໍ່ສໍາເລັດ. ErrorDatabaseVersionTooLow=ເວີຊັນຖານຂໍ້ມູນ (%s) ເກົ່າເກີນໄປ. ຕ້ອງການເວີຊັນ %s ຫຼືສູງກວ່າ. -ErrorPHPVersionTooLow=ເວີຊັນ PHP ເກົ່າເກີນໄປ. ຕ້ອງການເວີຊັນ %s. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=ການເຊື່ອມຕໍ່ຫາເຊີບເວີ ສຳ ເລັດແຕ່ບໍ່ພົບຖານຂໍ້ມູນ '%s'. ErrorDatabaseAlreadyExists=ຖານຂໍ້ມູນ '%s' ມີຢູ່ແລ້ວ. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=ຖ້າຖານຂໍ້ມູນບໍ່ມີຢູ່, ໃຫ້ກັບຄືນແລະກວດເບິ່ງຕົວເລືອກ "ສ້າງຖານຂໍ້ມູນ". IfDatabaseExistsGoBackAndCheckCreate=ຖ້າຖານຂໍ້ມູນມີຢູ່ແລ້ວ, ກັບຄືນໄປແລະຍົກເລີກການເລືອກ "ສ້າງຖານຂໍ້ມູນ" ທາງເລືອກ. WarningBrowserTooOld=ເວີຊັນຂອງໂປຣແກຣມທ່ອງເວັບເກົ່າເກີນໄປ. ການອັບເກຣດໂປຣແກຣມທ່ອງເວັບຂອງເຈົ້າເປັນ Firefox, Chrome ຫຼື Opera ລຸ້ນລ້າສຸດແມ່ນແນະ ນຳ ໃຫ້ສູງ. diff --git a/htdocs/langs/lo_LA/main.lang b/htdocs/langs/lo_LA/main.lang index e929be052f5..8f0b1e13018 100644 --- a/htdocs/langs/lo_LA/main.lang +++ b/htdocs/langs/lo_LA/main.lang @@ -244,6 +244,7 @@ Designation=ລາຍລະອຽດ DescriptionOfLine=ລາຍລະອຽດຂອງ DateOfLine=ວັນທີແຖວ DurationOfLine=ໄລຍະເວລາຂອງເສັ້ນ +ParentLine=Parent line ID Model=ແມ່ແບບເອກະສານ DefaultModel=ແມ່ແບບເອກະສານເລີ່ມຕົ້ນ Action=ເຫດການ @@ -344,7 +345,7 @@ KiloBytes=ກິໂລໄບ MegaBytes=ເມກາໄບ GigaBytes=ກິກະໄບ TeraBytes=ເທຣາໄບຕ -UserAuthor=ແຕ່ງຕັ້ງໂດຍ +UserAuthor=Created by UserModif=ອັບເດດໂດຍ b=ຂ Kb=ກ @@ -517,6 +518,7 @@ or=ຫຼື Other=ອື່ນ Others=ອື່ນ OtherInformations=ຂໍ້​ມູນ​ອື່ນ ໆ +Workflow=Workflow Quantity=ປະລິມານ Qty=ຈຳ ນວນ ChangedBy=ປ່ຽນໂດຍ @@ -619,6 +621,7 @@ MonthVeryShort11=ນ MonthVeryShort12=ງ AttachedFiles=ໄຟລ and ແລະເອກະສານທີ່ຕິດຄັດມາ JoinMainDoc=ເຂົ້າຮ່ວມເອກະສານຫຼັກ +JoinMainDocOrLastGenerated=Send the main document or the last generated one if not found DateFormatYYYYMM=ປປປປ-ດດ DateFormatYYYYMMDD=ປປປປ-ດດ-ວວ DateFormatYYYYMMDDHHMM=YYYY-MM-DD HH: SS @@ -709,6 +712,7 @@ FeatureDisabled=ປິດການ ນຳ ໃຊ້ຄຸນສົມບັດ MoveBox=ຍ້າຍວິດເຈັດ Offered=ສະ ເໜີ ໃຫ້ NotEnoughPermissions=ເຈົ້າບໍ່ມີສິດອະນຸຍາດ ສຳ ລັບການກະ ທຳ ນີ້ +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=ຊື່ເຊດຊັນ Method=ວິທີການ Receive=ຮັບ @@ -798,6 +802,7 @@ URLPhoto=URL ຂອງຮູບ/ໂລໂກ້ SetLinkToAnotherThirdParty=ເຊື່ອມຕໍ່ຫາພາກສ່ວນທີສາມອື່ນ LinkTo=ເຊື່ອມຕໍ່ກັບ LinkToProposal=ເຊື່ອມຕໍ່ກັບຂໍ້ສະ ເໜີ +LinkToExpedition= Link to expedition LinkToOrder=ການເຊື່ອມຕໍ່ກັບຄໍາສັ່ງ LinkToInvoice=ລິ້ງຫາໃບຮຽກເກັບເງິນ LinkToTemplateInvoice=ເຊື່ອມຕໍ່ກັບໃບຮຽກເກັບເງິນແມ່ແບບ @@ -1164,3 +1169,14 @@ NotClosedYet=Not yet closed ClearSignature=Reset signature CanceledHidden=Canceled hidden CanceledShown=Canceled shown +Terminate=Terminate +Terminated=Terminated +AddLineOnPosition=Add line on position (at the end if empty) +ConfirmAllocateCommercial=Assign sales representative confirmation +ConfirmAllocateCommercialQuestion=Are you sure you want to assign the %s selected record(s)? +CommercialsAffected=Sales representatives affected +CommercialAffected=Sales representative affected +YourMessage=Your message +YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. +UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/lo_LA/members.lang b/htdocs/langs/lo_LA/members.lang index e7af7227828..32a51826792 100644 --- a/htdocs/langs/lo_LA/members.lang +++ b/htdocs/langs/lo_LA/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=End date of membership EndSubscription=End of membership SubscriptionId=Contribution ID WithoutSubscription=Without contribution -MemberId=ID ສະມາຊິກ +MemberId=Member Id +MemberRef=Member Ref NewMember=ສະມາຊິກໃ່ MemberType=ປະເພດສະມາຊິກ MemberTypeId=typeາຍເລກປະເພດສະມາຊິກ @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=ປະເພດສະມາຊິກບໍ່ສາມ NewSubscription=New contribution NewSubscriptionDesc=ແບບຟອມນີ້ອະນຸຍາດໃຫ້ເຈົ້າບັນທຶກການສະyourັກຂອງເຈົ້າເປັນສະມາຊິກໃof່ຂອງມູນນິທິ. ຖ້າເຈົ້າຕ້ອງການຕໍ່ອາຍຸການສະyourັກໃຊ້ຂອງເຈົ້າ (ຖ້າເປັນສະມາຊິກຢູ່ແລ້ວ), ກະລຸນາຕິດຕໍ່ຄະນະກໍາມະການຮາກຖານແທນທາງອີເມລ a %s. Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Duration +GetMembershipButtonLabel=Get membership Subscriptions=Contributions SubscriptionLate=ຊ້າ SubscriptionNotReceived=Contribution never received @@ -135,7 +142,7 @@ CardContent=ເນື້ອໃນຂອງບັດສະມາຊິກຂອ # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=ພວກເຮົາຕ້ອງການແຈ້ງໃຫ້ເຈົ້າຮູ້ວ່າ ຄຳ ຮ້ອງຂໍເປັນສະມາຊິກຂອງເຈົ້າໄດ້ຮັບແລ້ວ.

ThisIsContentOfYourMembershipWasValidated=ພວກເຮົາຕ້ອງການແຈ້ງໃຫ້ເຈົ້າຮູ້ວ່າການເປັນສະມາຊິກຂອງເຈົ້າໄດ້ຮັບການກວດສອບດ້ວຍຂໍ້ມູນຕໍ່ໄປນີ້:

-ThisIsContentOfYourSubscriptionWasRecorded=ພວກເຮົາຕ້ອງການແຈ້ງໃຫ້ເຈົ້າຮູ້ວ່າການສະsubscriptionັກສະມາຊິກໃyour່ຂອງເຈົ້າໄດ້ຖືກບັນທຶກໄວ້.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=ພວກເຮົາຕ້ອງການແຈ້ງໃຫ້ທ່ານຮູ້ວ່າການສະັກໃຊ້ຂອງທ່ານກໍາລັງຈະireົດອາຍຸຫຼືexpົດອາຍຸໄປແລ້ວ (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). ພວກເຮົາຫວັງວ່າເຈົ້າຈະຕໍ່ອາຍຸມັນໃ່.

ThisIsContentOfYourCard=ນີ້ແມ່ນສະຫຼຸບຂໍ້ມູນທີ່ພວກເຮົາມີກ່ຽວກັບເຈົ້າ. ກະລຸນາຕິດຕໍ່ຫາພວກເຮົາຖ້າມີອັນໃດບໍ່ຖືກຕ້ອງ.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=ຫົວຂໍ້ຂອງອີເມວແຈ້ງເຕືອນທີ່ໄດ້ຮັບໃນກໍລະນີທີ່ມີການໃສ່ຊື່ຂອງແຂກຄົນໂດຍອັດຕະໂນມັດ @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=ລາຍຮັບ (ສໍາລັບບໍລິສັດ) ຫຼືງົບປະມານ (ສໍາລັບພື້ນຖານ) DefaultAmount=Default amount of contribution -CanEditAmount=Visitor can choose/edit amount of its contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=ໂດດໄປຫາ ໜ້າ ການຊໍາລະເງິນອອນໄລນ integrated ທີ່ປະສົມປະສານ ByProperties=ໂດຍທໍາມະຊາດ MembersStatisticsByProperties=ສະຖິຕິສະມາຊິກໂດຍ ທຳ ມະຊາດ @@ -218,3 +226,5 @@ XExternalUserCreated=ສ້າງຜູ້ໃຊ້ພາຍນອກ %s ForceMemberNature=ລັກສະນະສະມາຊິກບັງຄັບ (ບຸກຄົນຫຼືບໍລິສັດ) CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/lo_LA/projects.lang b/htdocs/langs/lo_LA/projects.lang index 421ef1f833d..147a4a4071d 100644 --- a/htdocs/langs/lo_LA/projects.lang +++ b/htdocs/langs/lo_LA/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=ເວລາທີ່ໃຊ້ຈ່າຍໃບບິນ TimeSpentForIntervention=ເວລາທີ່ໃຊ້ TimeSpentForInvoice=ເວລາທີ່ໃຊ້ OneLinePerUser=ໜຶ່ງ ແຖວຕໍ່ຜູ້ໃຊ້ -ServiceToUseOnLines=ການບໍລິການການນໍາໃຊ້ໃນສາຍ +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=ໃບເກັບເງິນ %s ໄດ້ຖືກສ້າງຂຶ້ນຈາກເວລາທີ່ໃຊ້ຢູ່ໃນໂຄງການ InterventionGeneratedFromTimeSpent=ການແຊກແຊງ %s ໄດ້ຖືກສ້າງຂຶ້ນຈາກເວລາທີ່ໃຊ້ຢູ່ໃນໂຄງການ ProjectBillTimeDescription=ກວດເບິ່ງວ່າເຈົ້າໃສ່ຕາຕະລາງເວລາໃນ ໜ້າ ວຽກຂອງໂຄງການຫຼືບໍ່ແລະເຈົ້າວາງແຜນທີ່ຈະສ້າງໃບແຈ້ງ ໜີ້ ຈາກຕາຕະລາງເວລາເພື່ອຮຽກເກັບເງິນລູກຄ້າຂອງໂຄງການ (ບໍ່ກວດເບິ່ງວ່າເຈົ້າວາງແຜນທີ່ຈະສ້າງໃບແຈ້ງ ໜີ້ ທີ່ບໍ່ອີງໃສ່ຕາຕະລາງເວລາທີ່ປ້ອນເຂົ້າໄປ). Noteາຍເຫດ: ເພື່ອສ້າງໃບແຈ້ງ ໜີ້, ໃຫ້ໄປທີ່ແຖບ 'ເວລາທີ່ໃຊ້' ຂອງໂຄງການແລະເລືອກແຖວເພື່ອລວມເອົາ. @@ -294,3 +294,4 @@ EnablePublicLeadForm=Enable the public form for contact NewLeadbyWeb=Your message or request has been recorded. We will answer or contact your soon. NewLeadForm=New contact form LeadFromPublicForm=Online lead from public form +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/lt_LT/holiday.lang b/htdocs/langs/lt_LT/holiday.lang index 9df0640e8c6..a3533d4ee10 100644 --- a/htdocs/langs/lt_LT/holiday.lang +++ b/htdocs/langs/lt_LT/holiday.lang @@ -4,6 +4,7 @@ Holidays=Leave CPTitreMenu=Leave MenuReportMonth=Mėnesio suvestinė MenuAddCP=New leave request +MenuCollectiveAddCP=New collective leave request NotActiveModCP=You must enable the module Leave to view this page. AddCP=Make a leave request DateDebCP=Pradžios data @@ -79,6 +80,8 @@ MotifCP=Priežastis UserCP=Vartotojas ErrorAddEventToUserCP=Pridedant išimtines atostogas įvyko klaida. AddEventToUserOkCP=Išimtinių atostogų pridėjimas baigtas. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=View change logs LogCP=Log of all updates made to "Balance of Leave" ActionByCP=Updated by @@ -86,6 +89,13 @@ UserUpdateCP=Updated for PrevSoldeCP=Ankstesnis balansas NewSoldeCP=Naujas balansas alreadyCPexist=A leave request has already been done on this period. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Grupės +users=Vartotojai +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Beginning day of leave request LastDayOfHoliday=Ending day of leave request BoxTitleLastLeaveRequests=Latest %s modified leave requests diff --git a/htdocs/langs/lt_LT/install.lang b/htdocs/langs/lt_LT/install.lang index 4eada4e4109..b5c7b9f69e4 100644 --- a/htdocs/langs/lt_LT/install.lang +++ b/htdocs/langs/lt_LT/install.lang @@ -8,6 +8,7 @@ ConfFileIsNotWritable=Configuration file %s is not writable. Check permis ConfFileIsWritable=Konfigūracijos failas %s įrašomas. ConfFileMustBeAFileNotADir=Configuration file %s must be a file, not a directory. ConfFileReload=Reloading parameters from configuration file. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=Šis PHP palaiko kintamuosius POST ir GET. PHPSupportPOSTGETKo=It's possible your PHP setup does not support variables POST and/or GET. Check the parameter variables_order in php.ini. PHPSupportSessions=Šis PHP palaiko sesijas. @@ -16,13 +17,6 @@ PHPMemoryOK=Jūsų PHP maksimali sesijos atmintis yra nustatyta į %s. To PHPMemoryTooLow=Your PHP max session memory is set to %s bytes. This is too low. Change your php.ini to set memory_limit parameter to at least %s bytes. Recheck=Click here for a more detailed test ErrorPHPDoesNotSupportSessions=Your PHP installation does not support sessions. This feature is required to allow Dolibarr to work. Check your PHP setup and permissions of the sessions directory. -ErrorPHPDoesNotSupportGD=Your PHP installation does not support GD graphical functions. No graphs will be available. -ErrorPHPDoesNotSupportCurl=Your PHP installation does not support Curl. -ErrorPHPDoesNotSupportCalendar=Your PHP installation does not support php calendar extensions. -ErrorPHPDoesNotSupportUTF8=Your PHP installation does not support UTF8 functions. Dolibarr cannot work correctly. Resolve this before installing Dolibarr. -ErrorPHPDoesNotSupportIntl=Your PHP installation does not support Intl functions. -ErrorPHPDoesNotSupportMbstring=Your PHP installation does not support mbstring functions. -ErrorPHPDoesNotSupportxDebug=Your PHP installation does not support extend debug functions. ErrorPHPDoesNotSupport=Your PHP installation does not support %s functions. ErrorDirDoesNotExists=Katalogas %s neegzistuoja. ErrorGoBackAndCorrectParameters=Go back and check/correct the parameters. @@ -30,9 +24,11 @@ ErrorWrongValueForParameter=Galbūt įvedėte neteisingą parametro '%s' reikšm ErrorFailedToCreateDatabase=Nepavyko sukurti duomenų bazės '%s'. ErrorFailedToConnectToDatabase=Nepavyko prisijungti prie duomenų bazės '%s'. ErrorDatabaseVersionTooLow=Duomenų bazės versija (%s) per sena. Reikalinga versija %s arba naujesnė. -ErrorPHPVersionTooLow=PHP versija pernelyg sena. Reikalinga versija %s. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Connection to server successful but database '%s' not found. ErrorDatabaseAlreadyExists=Duomenų bazė '%s' jau egzistuoja. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=If the database does not exist, go back and check option "Create database". IfDatabaseExistsGoBackAndCheckCreate=Jei duomenų bazė jau yra, eikite atgal ir nuimkite "Sukurti duomenų bazę" opciją. WarningBrowserTooOld=Version of browser is too old. Upgrading your browser to a recent version of Firefox, Chrome or Opera is highly recommended. diff --git a/htdocs/langs/lt_LT/members.lang b/htdocs/langs/lt_LT/members.lang index 1e6d0d3e61c..25b8ec43180 100644 --- a/htdocs/langs/lt_LT/members.lang +++ b/htdocs/langs/lt_LT/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=End date of membership EndSubscription=End of membership SubscriptionId=Contribution ID WithoutSubscription=Without contribution -MemberId=Nario ID +MemberId=Member Id +MemberRef=Member Ref NewMember=Naujas narys MemberType=Nario tipas MemberTypeId=Nario tipo ID @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Member type can not be deleted NewSubscription=Nauja įmoka NewSubscriptionDesc=Ši forma leidžia įrašyti Jūsų pasirašymą kaip naują organizacijos narį. Jei norite atnaujinti savo pasirašymą (jei jau narys), prašome vietoj susisiekti su Organizacijos valdyba e-paštu %s. Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Trukmė +GetMembershipButtonLabel=Get membership Subscriptions=Contributions SubscriptionLate=Vėlai SubscriptionNotReceived=Contribution never received @@ -135,7 +142,7 @@ CardContent=Jūsų nario kortelės turinys # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=We want to let you know that your membership request was received.

ThisIsContentOfYourMembershipWasValidated=We want to let you know that your membership was validated with the following information:

-ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=We want to let you know that your subscription is about to expire or has already expired (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). We hope you will renew it.

ThisIsContentOfYourCard=This is a summary of the information we have about you. Please contact us if anything is incorrect.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Subject of the notification email received in case of auto-inscription of a guest @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=Apyvarta (įmonės) arba Biudžeto (organizacijos) DefaultAmount=Default amount of contribution -CanEditAmount=Visitor can choose/edit amount of its contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Peršokti į integruotą interneto mokėjimo puslapį ByProperties=By nature MembersStatisticsByProperties=Members statistics by nature @@ -218,3 +226,5 @@ XExternalUserCreated=%s external user(s) created ForceMemberNature=Force member nature (Individual or Corporation) CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/lt_LT/stocks.lang b/htdocs/langs/lt_LT/stocks.lang index 5524ca80de3..a565fd73391 100644 --- a/htdocs/langs/lt_LT/stocks.lang +++ b/htdocs/langs/lt_LT/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Stock limit for alert and desired optimal stock cor ProductStockWarehouseUpdated=Stock limit for alert and desired optimal stock correctly updated ProductStockWarehouseDeleted=Stock limit for alert and desired optimal stock correctly deleted AddNewProductStockWarehouse=Set new limit for alert and desired optimal stock -AddStockLocationLine=Decrease quantity then click to add another warehouse for this product +AddStockLocationLine=Decrease quantity then click to split the line InventoryDate=Inventory date Inventories=Inventories NewInventory=New inventory @@ -254,7 +254,7 @@ ReOpen=Atidaryti iš naujo ConfirmFinish=Do you confirm the closing of the inventory ? This will generate all stock movements to update your stock to the real qty you entered into the inventory. ObjectNotFound=%s not found MakeMovementsAndClose=Generate movements and close -AutofillWithExpected=Replace real quantity with expected quantity +AutofillWithExpected=Fill real quantity with expected quantity ShowAllBatchByDefault=By default, show batch details on product "stock" tab CollapseBatchDetailHelp=You can set batch detail default display in stocks module configuration ErrorWrongBarcodemode=Unknown Barcode mode @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Product with barcode does not exist WarehouseId=Warehouse ID WarehouseRef=Warehouse Ref SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ToStart=Pradžia InventoryStartedShort=Pradėtas ErrorOnElementsInventory=Operation canceled for the following reason: ErrorCantFindCodeInInventory=Can't find the following code in inventory QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requested barcode. You can close the Scanner tool. StockChangeDisabled=Change on stock disabled NoWarehouseDefinedForTerminal=No warehouse defined for terminal +ClearQtys=Clear all quantities +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=Settings +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/lv_LV/accountancy.lang b/htdocs/langs/lv_LV/accountancy.lang index ab8121e0de5..b2484ee7388 100644 --- a/htdocs/langs/lv_LV/accountancy.lang +++ b/htdocs/langs/lv_LV/accountancy.lang @@ -48,8 +48,9 @@ CountriesNotInEEC=Valstis, kas nav EEK valstīs CountriesInEECExceptMe=Valstis EEK, izņemot %s CountriesExceptMe=Visas valstis, izņemot %s AccountantFiles=Eksportēt pirmdokumentus -ExportAccountingSourceDocHelp=Izmantojot šo rīku, varat eksportēt avota notikumus (sarakstu CSV un PDF formātā), kas tiek izmantoti jūsu grāmatvedības uzskaitei. +ExportAccountingSourceDocHelp=Izmantojot šo rīku, varat meklēt un eksportēt avota notikumus, kas tiek izmantoti jūsu grāmatvedības uzskaitei.
Eksportētajā ZIP failā būs pieprasīto vienumu saraksti CSV formātā, kā arī tiem pievienotie faili to sākotnējā formātā (PDF, ODT, DOCX...). ExportAccountingSourceDocHelp2=Lai eksportētu žurnālus, izmantojiet izvēlnes ierakstu %s - %s. +ExportAccountingProjectHelp=Norādiet projektu, ja jums ir nepieciešams grāmatvedības pārskats tikai par konkrētu projektu. Izdevumu atskaites un kredīta maksājumi netiek iekļauti projektu pārskatos. VueByAccountAccounting=Skatīt pēc grāmatvedības konta VueBySubAccountAccounting=Skatīt pēc grāmatvedības apakškonta @@ -161,7 +162,7 @@ BANK_DISABLE_DIRECT_INPUT=Atspējot tiešu darījumu reģistrāciju bankas kont ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL=Iespējot eksporta projektu žurnālā ACCOUNTANCY_COMBO_FOR_AUX=Iespējot kombinēto sarakstu meitas kontam (tas var būt lēns, ja jums ir daudz trešo pušu, pārtraukt iespēju meklēt daļu vērtības) ACCOUNTING_DATE_START_BINDING=Definējiet datumu, lai sāktu iesiešanu un pārskaitīšanu grāmatvedībā. Zem šī datuma darījumi netiks pārnesti uz grāmatvedību. -ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=Pārsūtot grāmatvedību, pēc noklusējuma atlasiet periodu +ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=Kāds ir grāmatvedības pārskaitījuma periods, kas atlasīts pēc noklusējuma ACCOUNTING_SELL_JOURNAL=Pārdošanas žurnāls ACCOUNTING_PURCHASE_JOURNAL=Pirkuma žurnāls @@ -182,7 +183,7 @@ DONATION_ACCOUNTINGACCOUNT=Accounting account to register donations ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=Grāmatvedības konts, lai reģistrētu abonementus ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=Grāmatvedības konts pēc noklusējuma reģistrē klientu depozītu -UseAuxiliaryAccountOnCustomerDeposit=Izmantojiet apakškontus klientu noguldījumu līnijās +UseAuxiliaryAccountOnCustomerDeposit=Saglabājiet klienta kontu kā individuālu kontu meitas virsgrāmatā pirmo iemaksu rindām (ja tas ir atspējots, individuālais konts pirmās iemaksas rindām paliks tukšs) ACCOUNTING_PRODUCT_BUY_ACCOUNT=Nopirkto produktu grāmatvedības konts pēc noklusējuma (tiek izmantots, ja tas nav definēts produktu lapā) ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT=Grāmatvedības konts pēc noklusējuma nopirktajiem produktiem EEK (lietots, ja nav definēts produktu lapā) @@ -332,7 +333,7 @@ ACCOUNTING_DISABLE_BINDING_ON_EXPENSEREPORTS=Atspējojiet grāmatvedībā iesie ## Export NotifiedExportDate=Atzīmējiet eksportētās rindas kā Eksportētas (lai mainītu rindu, jums būs jāizdzēš viss darījums un atkārtoti jāpārsūta uz grāmatvedību) -NotifiedValidationDate=Apstipriniet un bloķējiet eksportētos ierakstus (tāds pats efekts kā funkcijai "Aizvērt", rindu modifikācija un dzēšana NOTEIKTI nebūs iespējama) +NotifiedValidationDate=Apstipriniet un bloķējiet eksportētos ierakstus (tāds pats efekts kā funkcijai "%s", rindu modifikācija un dzēšana NOTEIKTI nebūs iespējama) DateValidationAndLock=Datuma apstiprināšana un bloķēšana ConfirmExportFile=Apstiprinājums par grāmatvedības eksporta faila ģenerēšanu? ExportDraftJournal=Eksporta žurnāla projekts @@ -427,6 +428,7 @@ SorryThisModuleIsNotCompatibleWithTheExperimentalFeatureOfSituationInvoices=Diem AccountancyErrorMismatchLetterCode=Saskaņošanas koda neatbilstība AccountancyErrorMismatchBalanceAmount=Atlikums (%s) nav vienāds ar 0 AccountancyErrorLetteringBookkeeping=Ir radušās kļūdas saistībā ar darījumiem: %s +ErrorAccountNumberAlreadyExists=Grāmatvedības numurs %s jau pastāv ## Import ImportAccountingEntries=Grāmatvedības ieraksti diff --git a/htdocs/langs/lv_LV/admin.lang b/htdocs/langs/lv_LV/admin.lang index e2abc15a6bc..8f01cc74c2a 100644 --- a/htdocs/langs/lv_LV/admin.lang +++ b/htdocs/langs/lv_LV/admin.lang @@ -1936,7 +1936,7 @@ PressF5AfterChangingThis=Nospiediet CTRL + F5 uz tastatūras vai dzēsiet pārl NotSupportedByAllThemes=Darbosies ar galvenajām tēmām, to nevar atbalstīt ārējās tēmas BackgroundColor=Fona krāsa TopMenuBackgroundColor=Fona krāsa augšējai izvēlnei -TopMenuDisableImages=Slēpt attēlus augšējā izvēlnē +TopMenuDisableImages=Ikona vai teksts augšējā izvēlnē LeftMenuBackgroundColor=Fona krāsa kreisajai izvēlnei BackgroundTableTitleColor=Fona krāsa tabulas virsraksta līnijai BackgroundTableTitleTextColor=Teksta krāsa tabulas virsraksta rindai @@ -1949,7 +1949,7 @@ EnterAnyCode=Šajā laukā ir norāde, lai identificētu līniju. Ievadiet jebku Enter0or1=Ievadiet 0 vai 1 UnicodeCurrency=Ievadiet šeit starp aplikācijām, baitu skaitļu sarakstu, kas attēlo valūtas simbolu. Piemēram: attiecībā uz $ ievadiet [36] - Brazīlijas reālajam R $ [82,36] - par € ievadiet [8364] ColorFormat=RGB krāsa ir HEX formātā, piemēram: FF0000 -PictoHelp=Icon name in format:
- image.png for an image file into the current theme directory
- image.png@module if file is into the directory /img/ of a module
- fa-xxx for a FontAwesome fa-xxx picto
- fonwtawesome_xxx_fa_color_size for a FontAwesome fa-xxx picto (with prefix, color and size set) +PictoHelp=Ikonas nosaukums formātā:
- image.png attēla failam pašreizējā motīva direktorijā
- image.png@module, ja fails ir moduļa direktorijā /img/
— fonwtawesome_xxx_fa_color_size FontAwesome fa-xxx attēlam (ar prefiksu, krāsu un izmēru komplektu) PositionIntoComboList=Līnijas novietojums kombinētajos sarakstos SellTaxRate=Pārdošanas nodokļa likme RecuperableOnly=Jā par PVN "Neuztverams, bet atgūstams", kas paredzēts dažai Francijas valstij. Uzturiet vērtību "Nē" visos citos gadījumos. @@ -2048,7 +2048,7 @@ COMPANY_AQUARIUM_CLEAN_REGEX=Regex filtrs tīrajai vērtībai (COMPANY_AQUARIUM_ COMPANY_DIGITARIA_CLEAN_REGEX=Regex filtrs, lai notīrītu vērtību (COMPANY_DIGITARIA_CLEAN_REGEX) COMPANY_DIGITARIA_UNIQUE_CODE=Dublikāts nav atļauts GDPRContact=Datu aizsardzības inspektors (DPO, datu konfidencialitāte vai GDPR kontakts) -GDPRContactDesc=If you store personal data in your Information System, you can name the contact who is responsible for the General Data Protection Regulation here +GDPRContactDesc=Ja glabājat personas datus savā Informācijas sistēmā, šeit varat nosaukt kontaktpersonu, kas ir atbildīga par Vispārīgo datu aizsardzības regulu HelpOnTooltip=Palīdzības teksts tiek parādīts rīka padomā HelpOnTooltipDesc=Ievietojiet tekstu vai tulkošanas atslēgu šeit, lai teksts tiktu rādīts rīkā, kad šis lauks parādās formā YouCanDeleteFileOnServerWith=Šo failu var dzēst serverī ar komandrindu:
%s @@ -2059,6 +2059,7 @@ VATIsUsedIsOff=Piezīme. Izvēlnē %s - %s izvēlētā pārdošanas nodokļa vai SwapSenderAndRecipientOnPDF=Pārsūtīt sūtītāja un adresāta adreses pozīciju PDF dokumentos FeatureSupportedOnTextFieldsOnly=Brīdinājums, funkcija tiek atbalstīta tikai teksta laukos un kombinētajos sarakstos. Lai aktivizētu šo funkciju, ir jāiestata arī URL parametrs action = create vai action = edit. VAI lapas nosaukumam jābeidzas ar “new.php”. EmailCollector=E-pasta savācējs +EmailCollectors=E-pasta kolekcionāri EmailCollectorDescription=Pievienojiet ieplānoto darbu un iestatīšanas lapu, lai regulāri skenētu e-pasta kastes (izmantojot IMAP protokolu) un ierakstītu savā pieteikumā saņemtos e-pasta ziņojumus pareizajā vietā un / vai automātiski izveidotu ierakstus (piemēram, vadus). NewEmailCollector=Jauns e-pasta savācējs EMailHost=E-pasta IMAP serveris @@ -2073,14 +2074,14 @@ DateLastCollectResult=Pēdējā savākšanas mēģinājuma datums DateLastcollectResultOk=Pēdējo savākšanas panākumu datums LastResult=Jaunākais rezultāts EmailCollectorHideMailHeaders=Neiekļaujiet e-pasta galvenes saturu apkopoto e-pastu saglabātajā saturā -EmailCollectorHideMailHeadersHelp=Ja tas ir iespējots, e-pasta galvenes netiek pievienotas e-pasta satura beigās, kas tiek saglabāts kā notikumi. +EmailCollectorHideMailHeadersHelp=Ja tas ir iespējots, e-pasta galvenes netiek pievienotas e-pasta satura beigās, kas tiek saglabāts kā dienas kārtības notikums. EmailCollectorConfirmCollectTitle=E-pasts apkopo apstiprinājumu EmailCollectorConfirmCollect=Vai vēlaties vadīt šo kolekcionāru tagad? EmailCollectorExampleToCollectTicketRequestsDesc=Apkopojiet e-pasta ziņojumus, kas atbilst dažiem noteikumiem, un automātiski izveidojiet biļeti (jābūt iespējotai moduļa biļetei) ar e-pasta informāciju. Varat izmantot šo savācēju, ja sniedzat atbalstu pa e-pastu, tāpēc jūsu biļešu pieprasījums tiks automātiski ģenerēts. Aktivizējiet arī Collect_Responses, lai savāktu klienta atbildes tieši biļešu skatā (jums ir jāatbild no Dolibarr). EmailCollectorExampleToCollectTicketRequests=Biļešu pieprasījuma apkopošanas piemērs (tikai pirmā ziņa) EmailCollectorExampleToCollectAnswersFromExternalEmailSoftwareDesc=Skenējiet pastkastes direktoriju "Nosūtītie", lai atrastu e-pasta ziņojumus, kas tika nosūtīti kā atbilde uz citu e-pasta ziņojumu tieši no jūsu e-pasta programmatūras, nevis no Dolibarr. Ja šāds e-pasts tiek atrasts, atbildes notikums tiek ierakstīts Dolibarr EmailCollectorExampleToCollectAnswersFromExternalEmailSoftware=Piemērs e-pasta atbilžu apkopošanai, kas nosūtītas no ārējas e-pasta programmatūras -EmailCollectorExampleToCollectDolibarrAnswersDesc=Apkopojiet visus e-pasta ziņojumus, kas ir atbilde uz e-pasta ziņojumu, kas nosūtīts no jūsu pieteikuma. Notikums (jābūt iespējotam moduļa darba kārtībai) ar e-pasta atbildi tiks ierakstīts pareizajā vietā. Piemēram, ja no lietojumprogrammas pa e-pastu nosūtāt komerciālu piedāvājumu, pasūtījumu, rēķinu vai ziņojumu par biļeti un klients atbild uz jūsu e-pastu, sistēma automātiski uztvers atbildi un pievienos to jūsu ERP. +EmailCollectorExampleToCollectDolibarrAnswersDesc=Apkopojiet visus e-pasta ziņojumus, kas ir atbilde uz e-pasta ziņojumu, kas nosūtīts no jūsu pieteikuma. Notikums (jābūt iespējotam moduļa darba kārtībai) ar e-pasta atbildi tiks ierakstīts pareizajā vietā. Piemēram, ja no lietojumprogrammas e-pastā nosūtāt komerciālu piedāvājumu, pasūtījumu, rēķinu vai biļetes ziņojumu un saņēmējs atbild uz jūsu e-pastu, sistēma automātiski uztvers atbildi un pievienos to jūsu ERP. EmailCollectorExampleToCollectDolibarrAnswers=Piemērs, kurā apkopoti visi ienākošie ziņojumi, kas ir atbildes uz ziņojumiem, kas nosūtīti no Dolibarr' EmailCollectorExampleToCollectLeadsDesc=Apkopojiet e-pasta ziņojumus, kas atbilst dažiem noteikumiem, un automātiski izveidojiet potenciālo pirkumu (jābūt iespējotam moduļa projektam) ar e-pasta informāciju. Varat izmantot šo savācēju, ja vēlaties sekot savai vadībai, izmantojot moduli Projekts (1 potenciālais pirkums = 1 projekts), tāpēc jūsu potenciālie pirkumi tiks ģenerēti automātiski. Ja ir iespējots arī savācējs Collect_Responses, sūtot e-pastu no saviem potenciālajiem pirkumiem, priekšlikumiem vai jebkura cita objekta, jūs varat redzēt arī savu klientu vai partneru atbildes tieši lietojumprogrammā.
Piezīme. Šajā sākotnējā piemērā tiek ģenerēts potenciālā pirkuma nosaukums, ieskaitot e-pastu. Ja trešo pusi nevar atrast datu bāzē (jauns klients), potenciālais pirkums tiks pievienots trešajai pusei ar ID 1. EmailCollectorExampleToCollectLeads=Potenciālo pirkumu apkopošanas piemērs @@ -2088,7 +2089,7 @@ EmailCollectorExampleToCollectJobCandidaturesDesc=Savāciet e-pasta ziņojumus, EmailCollectorExampleToCollectJobCandidatures=Piemērs e-pastā saņemto darba kandidatūru apkopošanai NoNewEmailToProcess=Nav apstrādāts jauns e-pasts (atbilstošie filtri) NothingProcessed=Nekas nav paveikts -XEmailsDoneYActionsDone=%s kvalificēti e-pasta ziņojumi, %s veiksmīgi apstrādāti e-pasta ziņojumi (par %s ierakstu / veiktajām darbībām) +XEmailsDoneYActionsDone=%s e-pasta ziņojumi ir iepriekš kvalificēti, %s e-pasta ziņojumi ir veiksmīgi apstrādāti (par %s ierakstu/darbības veiktas) RecordEvent=Ierakstiet notikumu dienas kārtībā (ar veidu E-pasts nosūtīts vai saņemts) CreateLeadAndThirdParty=Izveidojiet potenciālo pirkumu (un, ja nepieciešams, trešo pusi) CreateTicketAndThirdParty=Izveidojiet biļeti (saistītu ar trešo pusi, ja trešā puse tika ielādēta ar iepriekšējo darbību vai tika uzminēta no izsekotāja e-pasta galvenē, bez trešās puses citādi) @@ -2112,7 +2113,7 @@ ResourceSetup=Resursu moduļa konfigurēšana UseSearchToSelectResource=Izmantojiet meklēšanas formu, lai izvēlētos resursu (nevis nolaižamo sarakstu). DisabledResourceLinkUser=Atspējot funkciju, lai resursus saistītu ar lietotājiem DisabledResourceLinkContact=Atspējot funkciju, lai resursu saistītu ar kontaktpersonām -EnableResourceUsedInEventCheck=Prohibit the use of the same resource at the same time in the agenda +EnableResourceUsedInEventCheck=Aizliegt izmantot vienu un to pašu resursu vienlaikus darba kārtībā ConfirmUnactivation=Apstipriniet moduļa atiestatīšanu OnMobileOnly=Tikai mazam ekrānam (viedtālrunim) DisableProspectCustomerType=Atspējojiet trešās puses veidu “Persona + klients” (tātad trešajai pusei ir jābūt “Persona” vai “Klients”, taču tā nevar būt abas) @@ -2167,6 +2168,9 @@ EmailTemplate=E-pasta veidne EMailsWillHaveMessageID=E-pastam būs tags “Atsauces”, kas atbilst šai sintaksei PDF_SHOW_PROJECT=Parādīt projektu dokumentā ShowProjectLabel=Projekta etiķete +PDF_INCLUDE_ALIAS_IN_THIRDPARTY_NAME=Iekļaujiet aizstājvārdu trešās puses nosaukumā +THIRDPARTY_ALIAS=Trešās puses nosaukums — trešās puses aizstājvārds +ALIAS_THIRDPARTY=Trešās puses aizstājvārds — trešās puses nosaukums PDF_USE_ALSO_LANGUAGE_CODE=Ja vēlaties, lai daži PDF faili tiktu dublēti 2 dažādās valodās tajā pašā ģenerētajā PDF failā, jums šeit ir jāiestata šī otrā valoda, lai ģenerētais PDF saturētu vienā un tajā pašā lappusē 2 dažādas valodas, vienu izvēloties, ģenerējot PDF, un šo ( tikai dažas PDF veidnes to atbalsta). Vienā PDF formātā atstājiet tukšumu 1 valodā. PDF_USE_A=Ģenerējiet PDF dokumentus PDF/A formātā, nevis noklusējuma formātā PDF FafaIconSocialNetworksDesc=Šeit ievadiet FontAwesome ikonas kodu. Ja jūs nezināt, kas ir FontAwesome, varat izmantot vispārīgo vērtību fa-adrešu grāmata. @@ -2248,18 +2252,37 @@ TemplateforBusinessCards=Veidne vizītkartei dažādos izmēros InventorySetup= Inventāra iestatīšana ExportUseLowMemoryMode=Izmantojiet mazas atmiņas režīmu ExportUseLowMemoryModeHelp=Izmantojiet mazas atmiņas režīmu, lai izpildītu izgāztuves izpildi (saspiešana tiek veikta caur cauruli, nevis PHP atmiņā). Šī metode neļauj pārbaudīt, vai fails ir pabeigts, un kļūdas ziņojumu nevar ziņot, ja tas neizdodas. -ShowQuickAddLink=Parādiet pogu, lai augšējā labajā izvēlnē ātri pievienotu elementu + +ModuleWebhookName = Web aizķere +ModuleWebhookDesc = Interfeiss, lai uztvertu dolibarr aktivizētājus un nosūtītu to uz URL +WebhookSetup = Tīmekļa aizķeres iestatīšana +Settings = Iestatījumi +WebhookSetupPage = Web aizķeres iestatīšanas lapa +ShowQuickAddLink=Rādīt pogu, lai ātri pievienotu elementu augšējā labajā izvēlnē + HashForPing=Hash izmantots ping ReadOnlyMode=Instancē ir tikai lasīšanas režīms DEBUGBAR_USE_LOG_FILE=Izmantojiet failu dolibarr.log , lai notvertu žurnālus UsingLogFileShowAllRecordOfSubrequestButIsSlower=Izmantojiet failu dolibarr.log, lai slazdītu žurnālus, nevis reāllaika atmiņu. Tas ļauj noķert visus žurnālus, nevis tikai pašreizējā procesa žurnālu (tātad, ieskaitot ajax apakšpieprasījumu lapas), taču tas padarīs jūsu gadījumu ļoti lēnu. Nav ieteicams. FixedOrPercent=Fiksēts (izmantojiet atslēgvārdu "labots") vai procenti (izmantojiet atslēgvārdu "procenti") -DefaultOpportunityStatus=Default opportunity status (first status when lead is created) -IconAndText=Icon and text -TextOnly=Text only -IconOnlyAllTextsOnHover=Icon only - All texts appears under icon on mouse hover menu bar -IconOnlyTextOnHover=Icon only - Text of icon appears under icon on mouse hover the icon -IconOnly=Icon only - Text on tooltip only -INVOICE_ADD_ZATCA_QR_CODE=Show the ZATCA QR code on invoices -INVOICE_ADD_ZATCA_QR_CODEMore=Some Arabic countries need this QR Code on their invoices -UrlSocialNetworksDesc=Url link of social network. Use {socialid} for the variable part that contains the social network ID. +DefaultOpportunityStatus=Noklusējuma iespējas statuss (pirmais statuss, kad tiek izveidots potenciālais pirkums) + +IconAndText=Ikona un teksts +TextOnly=Tikai teksts +IconOnlyAllTextsOnHover=Tikai ikona — visi teksti tiek rādīti zem ikonas peles kursora izvēlņu joslā +IconOnlyTextOnHover=Tikai ikona — ikonas teksts tiek parādīts zem ikonas, novietojot peles kursoru uz ikonas +IconOnly=Tikai ikona — teksts tikai rīka padomos +INVOICE_ADD_ZATCA_QR_CODE=Rādīt ZATCA QR kodu rēķinos +INVOICE_ADD_ZATCA_QR_CODEMore=Dažām arābu valstīm šis QR kods ir nepieciešams savos rēķinos +INVOICE_ADD_SWISS_QR_CODE=Rādīt Šveices QR-rēķina kodu uz rēķiniem +UrlSocialNetworksDesc=Sociālā tīkla URL saite. Mainīgajai daļai, kas satur sociālā tīkla ID, izmantojiet {socialid}. +IfThisCategoryIsChildOfAnother=Ja šī kategorija ir citas kategorijas bērns +DarkThemeMode=Tumšā motīva režīms +AlwaysDisabled=Vienmēr atspējots +AccordingToBrowser=Saskaņā ar pārlūkprogrammu +AlwaysEnabled=Vienmēr iespējots +DoesNotWorkWithAllThemes=Nedarbosies ar visām tēmām +NoName=Nav vārda +ShowAdvancedOptions= Rādīt papildu opcijas +HideAdvancedoptions= Slēpt papildu opcijas +CIDLookupURL=Modulis nodrošina URL, ko var izmantot ārējs rīks, lai iegūtu trešās puses vai kontaktpersonas vārdu no tā tālruņa numura. Izmantojamais URL ir: diff --git a/htdocs/langs/lv_LV/agenda.lang b/htdocs/langs/lv_LV/agenda.lang index 8ef8b4abce7..95146dbc24d 100644 --- a/htdocs/langs/lv_LV/agenda.lang +++ b/htdocs/langs/lv_LV/agenda.lang @@ -57,6 +57,7 @@ MemberValidatedInDolibarr=Dalībnieks %s apstiprināts MemberModifiedInDolibarr=Dalībnieks %s labots MemberResiliatedInDolibarr=Dalībnieks %s ir izbeigts MemberDeletedInDolibarr=Dalībnieks %s dzēsts +MemberExcludedInDolibarr=Dalībnieks %s ir izslēgts MemberSubscriptionAddedInDolibarr=Abonements %s dalībniekam %s pievienots MemberSubscriptionModifiedInDolibarr=Abonements %s biedram %s ir labots MemberSubscriptionDeletedInDolibarr=Abonements %s dalībniekam %s dzēsts diff --git a/htdocs/langs/lv_LV/banks.lang b/htdocs/langs/lv_LV/banks.lang index 6c1c66f86d1..29553d7e47e 100644 --- a/htdocs/langs/lv_LV/banks.lang +++ b/htdocs/langs/lv_LV/banks.lang @@ -172,8 +172,8 @@ SEPAMandate=SEPA mandāts YourSEPAMandate=Jūsu SEPA mandāts FindYourSEPAMandate=Tas ir jūsu SEPA mandāts, lai pilnvarotu mūsu uzņēmumu veikt tiešā debeta pasūtījumu savai bankai. Atgriezt to parakstu (skenēt parakstīto dokumentu) vai nosūtīt pa pastu uz AutoReportLastAccountStatement=Veicot saskaņošanu, automātiski aizpildiet lauka “bankas izraksta numurs” ar pēdējo izraksta numuru -CashControl=POS cash control -NewCashFence=New cash control (opening or closing) +CashControl=POS skaidras naudas kontrole +NewCashFence=Jauna skaidras naudas kontrole (atvēršana vai aizvēršana) BankColorizeMovement=Krāsojiet kustības BankColorizeMovementDesc=Ja šī funkcija ir iespējota, jūs varat izvēlēties īpašu fona krāsu debeta vai kredīta pārvietošanai BankColorizeMovementName1=Debeta kustības fona krāsa diff --git a/htdocs/langs/lv_LV/boxes.lang b/htdocs/langs/lv_LV/boxes.lang index 2615d12ce7b..5eee74613c2 100644 --- a/htdocs/langs/lv_LV/boxes.lang +++ b/htdocs/langs/lv_LV/boxes.lang @@ -23,7 +23,7 @@ BoxLastMembersSubscriptions=Jaunākie dalībnieku abonementi BoxFicheInter=Jaunākās intervences BoxCurrentAccounts=Atvērto kontu atlikums BoxTitleMemberNextBirthdays=Šī mēneša dzimšanas dienas (dalībnieki) -BoxTitleMembersByType=Locekļi pēc veida +BoxTitleMembersByType=Dalībnieki pēc veida un statusa BoxTitleMembersSubscriptionsByYear=Dalībnieku abonēšana pēc gada BoxTitleLastRssInfos=Jaunākās %s ziņas no %s BoxTitleLastProducts=Produkti / Pakalpojumi: pēdējais %s modificēts @@ -46,6 +46,7 @@ BoxMyLastBookmarks=Grāmatzīmes: jaunākās %s BoxOldestExpiredServices=Vecākais aktīvais beidzies pakalpojums BoxLastExpiredServices=Jaunākie %s vecākie kontakti ar aktīviem derīguma termiņa beigām BoxTitleLastActionsToDo=Jaunākās %s darbības, ko darīt +BoxTitleOldestActionsToDo=Vecākais notikums %s nav pabeigts BoxTitleLastContracts=Jaunākie %s līgumi, kas tika mainīti BoxTitleLastModifiedDonations=Jaunākie %s ziedojumi, kas tika mainīti BoxTitleLastModifiedExpenses=Jaunākie %s izdevumu pārskati, kas tika mainīti diff --git a/htdocs/langs/lv_LV/cashdesk.lang b/htdocs/langs/lv_LV/cashdesk.lang index c278e21496a..ac6b246705a 100644 --- a/htdocs/langs/lv_LV/cashdesk.lang +++ b/htdocs/langs/lv_LV/cashdesk.lang @@ -50,8 +50,8 @@ Footer=Kājene AmountAtEndOfPeriod=Summa perioda beigās (diena, mēnesis vai gads) TheoricalAmount=Teorētiskā summa RealAmount=Reālā summa -CashFence=Cash box closing -CashFenceDone=Cash box closing done for the period +CashFence=Kases aizvēršana +CashFenceDone=Par periodu veikta kases slēgšana NbOfInvoices=Rēķinu skaits Paymentnumpad=Padeves veids maksājuma ievadīšanai Numberspad=Numbers Pad @@ -102,8 +102,8 @@ CashDeskGenericMaskCodes6 =  
{TN} tagu izmanto, lai pievienotu te TakeposGroupSameProduct=Grupējiet tās pašas produktu līnijas StartAParallelSale=Sāciet jaunu paralēlu izpārdošanu SaleStartedAt=Pārdošana sākās vietnē %s -ControlCashOpening=Open the "Control cash box" popup when opening the POS -CloseCashFence=Close cash box control +ControlCashOpening=Atverot POS, atveriet uznirstošo logu "Control cash box". +CloseCashFence=Aizveriet naudas kastes kontroli CashReport=Skaidras naudas pārskats MainPrinterToUse=Galvenais izmantojamais printeris OrderPrinterToUse=Pasūtiet printeri izmantošanai @@ -136,3 +136,10 @@ PrintWithoutDetails=Drukāt bez detaļām YearNotDefined=Gads nav noteikts TakeposBarcodeRuleToInsertProduct=Svītrkoda noteikums produkta ievietošanai TakeposBarcodeRuleToInsertProductDesc=Noteikums produkta atsauces + daudzuma izņemšanai no skenēta svītrkoda.
Ja tas ir tukšs (noklusējuma vērtība), lietojumprogramma izmantos pilnu skenēto svītrkodu, lai atrastu produktu.

Ja noteikts, sintakse ir:
ref: NB + qu: NB + QD: NB uc: NB
kur NB ir rakstzīmju skaits izmantot, lai iegūtu datus no skenētā svītrkodu ar:
  • ref : produkts atsauce
  • qu : daudzumu kopumu, ievietojot objektu (vienības)
  • QD : daudzumu kopumu, ievietojot objektu (decimāldaļskaitlis)
  • otra : citi simboli
+AlreadyPrinted=Jau izdrukāts +HideCategories=Slēpt kategorijas +HideStockOnLine=Slēpt krājumus tiešsaistē +ShowOnlyProductInStock=Parādiet noliktavā esošās preces +ShowCategoryDescription=Rādīt kategorijas aprakstu +ShowProductReference=Rādīt atsauces uz produktiem +UsePriceHT=Izmantot cena bez nodokļi, nevis cena t.sk. nodokļi diff --git a/htdocs/langs/lv_LV/categories.lang b/htdocs/langs/lv_LV/categories.lang index 8190b86f2e7..2da314699a5 100644 --- a/htdocs/langs/lv_LV/categories.lang +++ b/htdocs/langs/lv_LV/categories.lang @@ -95,6 +95,7 @@ ShowCategory=Show tag/category ByDefaultInList=By default in list ChooseCategory=Izvēlies sadaļu StocksCategoriesArea=Noliktavas kategorijas +TicketsCategoriesArea=Biļešu kategorijas ActionCommCategoriesArea=Pasākumu kategorijas WebsitePagesCategoriesArea=Lapu konteineru kategorijas KnowledgemanagementsCategoriesArea=KM raksts Kategorijas diff --git a/htdocs/langs/lv_LV/companies.lang b/htdocs/langs/lv_LV/companies.lang index dd2f5268f35..c151320b07d 100644 --- a/htdocs/langs/lv_LV/companies.lang +++ b/htdocs/langs/lv_LV/companies.lang @@ -60,13 +60,14 @@ NatureOfThirdParty=Trešo personu būtība NatureOfContact=Kontakta raksturs Address=Adrese State=Valsts / province +StateId=Valsts ID StateCode=Valsts/provinces kods StateShort=Valsts Region=Rajons Region-State=Reģions - valsts Country=Valsts CountryCode=Valsts kods -CountryId=Valsts id +CountryId=Valsts ID Phone=Telefons PhoneShort=Telefons Skype=Skype @@ -105,7 +106,7 @@ WrongSupplierCode=Pārdevēja kods nav derīgs CustomerCodeModel=Klienta koda modelis SupplierCodeModel=Pārdevēja koda modelis Gencod=Svītrkods -GencodBuyPrice=Barcode of price ref +GencodBuyPrice=Svītrkods cenas ref ##### Professional ID ##### ProfId1Short=Prof. id 1 ProfId2Short=Prof. id 2 @@ -163,14 +164,14 @@ ProfId5CL=- ProfId6CL=- ProfId1CM=Id. prof. 1 (Tirdzniecības reģistrs) ProfId2CM=Id. prof. 2 (nodokļu maksātāja Nr.) -ProfId3CM=Id. prof. 3 (dibināšanas dekrēts) -ProfId4CM=Id. prof. 4 (Certificate of deposits) -ProfId5CM=Id. prof. 5 (Others) +ProfId3CM=Id. prof. 3 (Izveides dekrēta Nr.) +ProfId4CM=Id. prof. 4 (Depozīta sertifikāta Nr.) +ProfId5CM=Id. prof. 5 (citi) ProfId6CM=- ProfId1ShortCM=Tirdzniecības reģistrs ProfId2ShortCM=Nodokļu maksātājs Nr. -ProfId3ShortCM=Radīšanas dekrēts -ProfId4ShortCM=Certificate of deposits +ProfId3ShortCM=izveides dekrēta Nr +ProfId4ShortCM=Depozīta sertifikāts Nr. ProfId5ShortCM=Citi ProfId6ShortCM=- ProfId1CO=Prof ID 1 (RUT) diff --git a/htdocs/langs/lv_LV/compta.lang b/htdocs/langs/lv_LV/compta.lang index 338d6aff053..6cb9919eb81 100644 --- a/htdocs/langs/lv_LV/compta.lang +++ b/htdocs/langs/lv_LV/compta.lang @@ -300,3 +300,4 @@ InvoiceToPay15Days=Lai samaksātu (15 līdz 30 dienas) InvoiceToPay30Days=Lai samaksātu (> 30 dienas) ConfirmPreselectAccount=Iepriekš atlasiet grāmatvedības kodu ConfirmPreselectAccountQuestion=Vai tiešām vēlaties iepriekš atlasīt %s atlasītās rindas ar šo grāmatvedības kodu? +AmountPaidMustMatchAmountOfDownPayment=Samaksātajai summai ir jāatbilst pirmās iemaksas summai diff --git a/htdocs/langs/lv_LV/errors.lang b/htdocs/langs/lv_LV/errors.lang index 44aec08f2da..e07086a7373 100644 --- a/htdocs/langs/lv_LV/errors.lang +++ b/htdocs/langs/lv_LV/errors.lang @@ -92,6 +92,7 @@ ErrorModuleRequireJavascript=Javascript nedrīkst tikt izslēgti, ka šī funkci ErrorPasswordsMustMatch=Abām ievadītām parolēm jāsakrīt ErrorContactEMail=Radās tehniska kļūda. Lūdzu, sazinieties ar administratoru uz šādu e-pastu %s un savā ziņojumā uzrakstiet kļūdas kodu %s vai pievienojiet šīs lapas ekrāna kopiju. ErrorWrongValueForField=Lauks %s : “ %s ” neatbilst regex noteikumam %s +ErrorHtmlInjectionForField=Lauks %s : Vērtība ' %s a09a4b739f17f satur mazlicious data'nav atļauts ErrorFieldValueNotIn=Lauks %s : “ %s ” nav vērtība, kas norādīta laukā %s no %s ErrorFieldRefNotIn=Lauks %s : “ %s ” nav esošais ref. %s ErrorsOnXLines=atrastas %s kļūdas @@ -285,8 +286,9 @@ ErrorPaymentInBothCurrency=Kļūda, visas summas jāievada vienā kolonnā ErrorYouTryToPayInvoicesInACurrencyFromBankWithAnotherCurrency=Jūs mēģināt apmaksāt rēķinus valūtā %s no konta ar valūtu %s ErrorInvoiceLoadThirdParty=Nevar ielādēt trešās puses objektu rēķinam "%s" ErrorInvoiceLoadThirdPartyKey=Trešās puses atslēga "%s" nav iestatīta rēķinam "%s" -ErrorDeleteLineNotAllowedByObjectStatus=Dzēst rindu nav atļauts faktiskais objekta statuss -ErrorAjaxRequestFailed=Request failed +ErrorDeleteLineNotAllowedByObjectStatus=Pašreizējais objekta statuss neļauj dzēst rindu +ErrorAjaxRequestFailed=Pieprasījums neizdevās +ErrorThirpdartyOrMemberidIsMandatory=Trešās puses vai partnerības dalībnieka dalība ir obligāta # Warnings WarningParamUploadMaxFileSizeHigherThanPostMaxSize=Jūsu PHP parametrs upload_max_filesize (%s) ir augstāks nekā PHP parametrs post_max_size (%s). Šī nav konsekventa iestatīšana. @@ -321,12 +323,8 @@ WarningCreateSubAccounts=Brīdinājums: jūs nevarat izveidot tieši apakškontu WarningAvailableOnlyForHTTPSServers=Pieejams tikai tad, ja tiek izmantots HTTPS drošais savienojums. WarningModuleXDisabledSoYouMayMissEventHere=Modulis %s nav iespējots. Tāpēc jūs varat izlaist daudz notikumu šeit. WarningPaypalPaymentNotCompatibleWithStrict=Vērtība “Stingrs” neļauj tiešsaistes maksājumu funkcijām darboties pareizi. Tā vietā izmantojiet “Lax”. +WarningThemeForcedTo=Brīdinājums! Motīvs ir spiests uz %s , izmantojot slēpto konstanti MAIN_FORCETHEME -<<<<<<< GALVA -======= -<<<<<<< GALVA -<<<<<<< GALVA ->>>>>>> git@github.com:Dolibarr/dolibarr.git filiāle “15.0” # Validate RequireValidValue = Vērtība nav derīga RequireAtLeastXString = Nepieciešama vismaz %s rakstzīme (s) @@ -347,12 +345,3 @@ BadSetupOfField = Kļūda, nepareizi iestatot lauku BadSetupOfFieldClassNotFoundForValidation = Kļūda, nepareizi iestatot lauku: klase nav atrasta validācijai BadSetupOfFieldFileNotFound = Kļūda, nepareizi iestatot lauku: fails netika atrasts iekļaušanai BadSetupOfFieldFetchNotCallable = Kļūda, nepareizi iestatot lauku: izgūšana nav izsaucama klasē -<<<<<<< GALVA -======= -======= -======= ->>>>>>> git@github.com:Dolibarr/dolibarr.git filiāle “15.0” ->>>>>>> git@github.com:Dolibarr/dolibarr.git filiāle “15.0” -======= ->>>>>>> git@github.com:Dolibarr/dolibarr.git filiāle “15.0” ->>>>>>> git@github.com:Dolibarr/dolibarr.git filiāle “15.0” diff --git a/htdocs/langs/lv_LV/exports.lang b/htdocs/langs/lv_LV/exports.lang index 0ecbf77fc2c..3268fd7cf15 100644 --- a/htdocs/langs/lv_LV/exports.lang +++ b/htdocs/langs/lv_LV/exports.lang @@ -18,6 +18,7 @@ ExportableFields=Eksportējami lauki ExportedFields=Eksportēti lauki ImportModelName=Importēšanas profila nosaukums ImportModelSaved=Importa profils tiek saglabāts kā %s. +ImportProfile=Importēt profilu DatasetToExport=Datu kopas eksports DatasetToImport=Importēt failu datu kopā ChooseFieldsOrdersAndTitle=Izvēlieties lauku secību ... @@ -53,8 +54,9 @@ TypeOfLineServiceOrProduct=Veids (0=produkts, 1=pakalpojums) FileWithDataToImport=Fails ar datiem, lai importētu FileToImport=Avota fails, kas jāimportē FileMustHaveOneOfFollowingFormat=Importa failam ir jābūt šādam formātam -DownloadEmptyExample=Download a template file with examples and information on fields you can import -StarAreMandatory=Into the template file, all fields with a * are mandatory fields +DownloadEmptyExampleShort=Lejupielādējiet faila paraugu +DownloadEmptyExample=Lejupielādējiet veidnes failu ar piemēriem un informāciju par laukiem, kurus varat importēt +StarAreMandatory=Veidnes failā visi lauki ar * ir obligāti aizpildāmie lauki ChooseFormatOfFileToImport=Izvēlieties faila formātu, ko izmantot kā importa faila formātu, noklikšķinot uz %s ikonas, lai to atlasītu ... ChooseFileToImport=Augšupielādējiet failu, pēc tam noklikšķiniet uz %s ikonas, lai atlasītu failu kā avota importa failu ... SourceFileFormat=Avota faila formāts @@ -82,7 +84,7 @@ SelectFormat=Izvēlieties šo importa failu formātu RunImportFile=Importēt datus NowClickToRunTheImport=Pārbaudiet importa simulācijas rezultātus. Labojiet kļūdas un atkārtojiet testu.
Kad simulācijā nav kļūdu, jūs varat turpināt importēt datus datu bāzē. DataLoadedWithId=Importētajiem datiem katrā datu bāzes tabulā būs papildu lauks ar šo ievešanas ID: %s , lai ļautu tai atrast meklēšanu, ja tiek izmeklēta ar šo importu saistīta problēma. -ErrorMissingMandatoryValue=Obligātie dati avota failā ir tukši laukā %s . +ErrorMissingMandatoryValue=Obligātie dati ir tukši avota failā kolonnā %s . TooMuchErrors=Vēl ir %s citas avota līnijas ar kļūdām, taču izlaide ir ierobežota. TooMuchWarnings=Vēl ir %s citas avota līnijas ar brīdinājumiem, bet izlaide ir ierobežota. EmptyLine=Tukšas līnijas (tiks izmestas) @@ -92,9 +94,9 @@ YouCanUseImportIdToFindRecord=Visus importētos ierakstus varat atrast savā dat NbOfLinesOK=Skaits līniju bez kļūdām un bez brīdinājumiem: %s. NbOfLinesImported=Skaits līniju veiksmīgi importēto: %s. DataComeFromNoWhere=Vērtību, lai ievietotu nāk no nekur avota failā. -DataComeFromFileFieldNb=Vērtību, lai ievietotu nāk no lauka skaits %s, kas avota failā. -DataComeFromIdFoundFromRef=Sākotnējā faila lauka skaitļa %s vērtība tiks izmantota, lai atrastu izmantotā vecā objekta ID (tādēļ objekts %s , kuram ir atsauces no avota faila jābūt datu bāzē). -DataComeFromIdFoundFromCodeId=Avota faila lauka skaitļa kods %s tiks izmantots, lai atrastu izmantojamā vecāka objekta ID (tādēļ vārdnīcas kodam jābūt eksemplāram %s ) Ņemiet vērā, ka, ja jūs zināt id, varat to izmantot arī avota failā, nevis kodu. Importam jādarbojas abos gadījumos. +DataComeFromFileFieldNb=Ievietojamā vērtība nāk no avota faila kolonnas %s . +DataComeFromIdFoundFromRef=Vērtība, kas nāk no avota faila kolonnas %s , tiks izmantota, lai atrastu izmantojamā vecākobjekta ID (tātad objektam a0ecb2ecz07f4 ir7f fails, kas ir7 ref.7 avota fails7.7fz0 a0ecb2ec87f4). +DataComeFromIdFoundFromCodeId=Kods, kas nāk no avota faila kolonnas %s , tiks izmantots, lai atrastu izmantojamā vecākobjekta ID (tātad kodam no avota faila ir jābūt vārdnīcā a0aee8336 a0837f2fzf79037f49fz07f49fz07f49fzfz07fzfz07f49fz17fzfz07f49fz07fzfz07fzfz07fzfz07fzfz07fzfz07fzfz07f49fz07fzfz07fzfz07fzfz07fzfz07fzfz07f49fz07f49fz07fzfz07fzfz07f49fz07f49fz0. Ņemiet vērā: ja zināt ID, varat to izmantot arī avota failā koda vietā. Importam vajadzētu darboties abos gadījumos. DataIsInsertedInto=Dati, kas nāk no avota faila tiks ievietota sekojošā laukā: DataIDSourceIsInsertedInto=Galvenā objekta ID, kas tika atrasts, izmantojot avota faila datus, tiks ievietots šādā laukā: DataCodeIDSourceIsInsertedInto=Galvenās līnijas ID, kas tika atrasts no koda, tiks ievietots šādā laukā: @@ -138,3 +140,6 @@ StocksWithBatch=Produktu krājumi un atrašanās vieta (noliktava) ar partijas / WarningFirstImportedLine=Pirmā rindiņa(-as) netiks importēta(-as) ar pašreizējo atlasi NotUsedFields=Datu bāzes lauki netiek izmantoti SelectImportFieldsSource = Izvēlieties avota faila laukus, kurus vēlaties importēt, un to mērķa lauku datu bāzē, izvēloties laukus katrā atlases lodziņā, vai atlasiet iepriekš definētu importēšanas profilu: +MandatoryTargetFieldsNotMapped=Daži obligātie mērķa lauki nav kartēti +AllTargetMandatoryFieldsAreMapped=Visi mērķa lauki, kuriem nepieciešama obligāta vērtība, ir kartēti +ResultOfSimulationNoError=Simulācijas rezultāts: nav kļūdu diff --git a/htdocs/langs/lv_LV/holiday.lang b/htdocs/langs/lv_LV/holiday.lang index 5b29fb9dd97..99827072be1 100644 --- a/htdocs/langs/lv_LV/holiday.lang +++ b/htdocs/langs/lv_LV/holiday.lang @@ -4,6 +4,7 @@ Holidays=Prombūtne CPTitreMenu=Prombūtne MenuReportMonth=Ikmēneša paziņojums MenuAddCP=Jauns atvaļinājuma pieprasījums +MenuCollectiveAddCP=Jauns kolektīvā atvaļinājuma pieprasījums NotActiveModCP=Jums ir jāiespējo modulis Atvaļinājumi, lai apskatītu šo lapu. AddCP=Izveidot atvaļinājuma pieprasījumu DateDebCP=Sākuma datums @@ -79,6 +80,8 @@ MotifCP=Iemesls UserCP=Lietotājs ErrorAddEventToUserCP=Pievienojot ārpuskārtas atvaļinājumu, radās kļūda. AddEventToUserOkCP=Par ārkārtas atvaļinājumu papildinājums ir pabeigta. +ErrorFieldRequiredUserOrGroup=Jāaizpilda lauks "grupa" vai lauks "lietotājs". +fusionGroupsUsers=Grupu lauks un lietotāja lauks tiks apvienoti MenuLogCP=Skatīt izmaiņu žurnālus LogCP=Visu atjauninājumu žurnāls “Atvaļinājuma atlikums” ActionByCP=Atjaunināja @@ -86,6 +89,13 @@ UserUpdateCP=Atjaunināts PrevSoldeCP=Iepriekšējā bilance NewSoldeCP=Jana Bilance alreadyCPexist=Šajā periodā atvaļinājuma pieprasījums jau ir veikts. +UseralreadyCPexist=Atvaļinājuma pieprasījums šajā periodā jau ir iesniegts par %s. +groups=Grupas +users=Lietotāji +AutoSendMail=Automātiska pasta sūtīšana +NewHolidayForGroup=Jauns kolektīvā atvaļinājuma pieprasījums +SendRequestCollectiveCP=Nosūtiet kolektīvo atvaļinājuma pieprasījumu +AutoValidationOnCreate=Automātiska apstiprināšana FirstDayOfHoliday=Atvaļinājuma sākuma diena LastDayOfHoliday=Atvaļinājuma beigu diena BoxTitleLastLeaveRequests=Jaunākie %s labotie atvaļinājumu pieprasījumi @@ -134,6 +144,6 @@ HolidaysToApprove=Brīvdienas, kas jāapstiprina NobodyHasPermissionToValidateHolidays=Nevienam nav atļaujas apstiprināt brīvdienas HolidayBalanceMonthlyUpdate=Ikmēneša brīvdienu bilances atjauninājums XIsAUsualNonWorkingDay=%s parasti ir NAV darba diena -BlockHolidayIfNegative=Block if balance negative -LeaveRequestCreationBlockedBecauseBalanceIsNegative=The creation of this leave request is blocked because your balance is negative +BlockHolidayIfNegative=Bloķēt, ja atlikums ir negatīvs +LeaveRequestCreationBlockedBecauseBalanceIsNegative=Šī atvaļinājuma pieprasījuma izveide ir bloķēta, jo jūsu bilance ir negatīva ErrorLeaveRequestMustBeDraftCanceledOrRefusedToBeDeleted=Atstāšanas pieprasījumam %s jābūt melnrakstam, tas ir jāatceļ vai jāatsakās dzēst diff --git a/htdocs/langs/lv_LV/hrm.lang b/htdocs/langs/lv_LV/hrm.lang index e14ef1e6379..da441146c33 100644 --- a/htdocs/langs/lv_LV/hrm.lang +++ b/htdocs/langs/lv_LV/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Atvērts uzņēmums CloseEtablishment=Aizvērt uzņēmumu # Dictionary DictionaryPublicHolidays=Atvaļinājums - svētku dienas -DictionaryDepartment=HRM - Department list +DictionaryDepartment=HRM - Organizatoriskā vienība DictionaryFunction=HRM - darba vietas # Module Employees=Darbinieki @@ -70,9 +70,9 @@ RequiredSkills=Nepieciešamās prasmes šim darbam UserRank=Lietotāja rangs SkillList=Prasmju saraksts SaveRank=Saglabāt rangu -knowHow=Zināt, kā -HowToBe=Kā būt -knowledge=Zināšanas +TypeKnowHow=Zināt, kā +TypeHowToBe=Kā būt +TypeKnowledge=Zināšanas AbandonmentComment=Atteikšanās komentārs DateLastEval=Pēdējās vērtēšanas datums NoEval=Šim darbiniekam nav veikts novērtējums @@ -88,3 +88,4 @@ DeleteSkill = Prasme noņemta SkillsExtraFields=Attributs supplémentaires (kompetences) JobsExtraFields=Attributs supplémentaires (Emplois) EvaluationsExtraFields=Atribūti supplémentaires (novērtējumi) +NeedBusinessTravels=Nepieciešami biznesa ceļojumi diff --git a/htdocs/langs/lv_LV/install.lang b/htdocs/langs/lv_LV/install.lang index 0710c1b4bdf..d027c592fa9 100644 --- a/htdocs/langs/lv_LV/install.lang +++ b/htdocs/langs/lv_LV/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=Konfigurācijas failā %s nevar ierakstīt. Pārba ConfFileIsWritable=Konfigurācijas failā %s var ierakstīt. ConfFileMustBeAFileNotADir=Konfigurācijas failam %s jābūt failam, nevis direktorijai. ConfFileReload=Pārsūtot parametrus no konfigurācijas faila. -NoReadableConfFileSoStartInstall=Konfigurācijas fails conf/conf.php neeksistē vai nav atjaunojams. Mēs veiksim instalēšanas procesu, lai mēģinātu to inicializēt. +NoReadableConfFileSoStartInstall=Konfigurācijas fails conf/conf.php neeksistē vai nav lasāms. Mēs veiksim instalēšanas procesu, lai mēģinātu to inicializēt. PHPSupportPOSTGETOk=PHP atbalsta mainīgos POST un GET. PHPSupportPOSTGETKo=Iespējams, ka jūsu PHP iestatīšana neatbalsta mainīgos POST un/vai GET. Pārbaudiet parametru variables_order php.ini. PHPSupportSessions=PHP atbalsta sesijas. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Iespējams, esat ievadījis nepareizu vērtību para ErrorFailedToCreateDatabase=Neizdevās izveidot datubāzi '%s'. ErrorFailedToConnectToDatabase=Neizdevās izveidot savienojumu ar datu bāzi '%s'. ErrorDatabaseVersionTooLow=Datu bāzes versija (%s) pārāk veca. Versija %s vai augstāka ir nepieciešama. -ErrorPHPVersionTooLow=PHP versija ir pārāk veca. Versija %s ir nepieciešama. +ErrorPHPVersionTooLow=PHP versija ir pārāk veca. Nepieciešama versija %s vai jaunāka versija. +ErrorPHPVersionTooHigh=PHP versija ir pārāk augsta. Nepieciešama versija %s vai vecāka versija. ErrorConnectedButDatabaseNotFound=Savienojums ar serveri ir veiksmīgs, bet datubāze '%s' nav atrasta. ErrorDatabaseAlreadyExists=Datubāze '%s' jau eksistē. +ErrorNoMigrationFilesFoundForParameters=Atlasītajām versijām nav atrasts neviens migrācijas fails IfDatabaseNotExistsGoBackAndUncheckCreate=Ja datubāze neeksistē, atgriezieties un atzīmējiet opciju "Izveidot datubāzi". IfDatabaseExistsGoBackAndCheckCreate=Ja datu bāze jau pastāv, dodieties atpakaļ un izņemiet ķeksi "Izveidot datu bāzi". WarningBrowserTooOld=Pārlūkprogrammas versija ir pārāk veca. Ļoti ieteicams jaunināt pārlūku uz jaunāko Firefox, Chrome vai Opera versiju. diff --git a/htdocs/langs/lv_LV/languages.lang b/htdocs/langs/lv_LV/languages.lang index 077ff51c375..0c7107b8bf7 100644 --- a/htdocs/langs/lv_LV/languages.lang +++ b/htdocs/langs/lv_LV/languages.lang @@ -3,6 +3,7 @@ Language_am_ET=Etiopietis Language_ar_AR=Arābu Language_ar_DZ=arābu (Alžīrija) Language_ar_EG=Arābu (Ēģipte) +Language_ar_JO=arābu (Jordānija) Language_ar_MA=Arābu (Maroka) Language_ar_SA=Arābu Language_ar_TN=Arābu (Tunisija) @@ -12,9 +13,11 @@ Language_az_AZ=Azerbaidžāņi Language_bn_BD=Bengali Language_bn_IN=Bengāļu (Indija) Language_bg_BG=Bulgāru +Language_bo_CN=tibetietis Language_bs_BA=Bosniešu Language_ca_ES=Katalāņu Language_cs_CZ=Čehu +Language_cy_GB=velsiešu Language_da_DA=Dāņu Language_da_DK=Dāņu Language_de_DE=Vācu @@ -22,6 +25,7 @@ Language_de_AT=Vācu (Austrija) Language_de_CH=Vācu (Šveice) Language_el_GR=Grieķu Language_el_CY=Grieķu (Kipra) +Language_en_AE=angļu (Apvienotie Arābu Emirāti) Language_en_AU=Angļu (Austrālija) Language_en_CA=Angļu (Kanāda) Language_en_GB=Angļu (Apvienotā Karaliste) @@ -36,6 +40,7 @@ Language_es_AR=Spāņu (Argentīna) Language_es_BO=Spāņu (Bolīvija) Language_es_CL=Spāņu (Ķīle) Language_es_CO=Spāņu (Kolumbija) +Language_es_CR=spāņu (Kostarika) Language_es_DO=Spāņu (Dominikānas Republika) Language_es_EC=Spāņu (Ekvadora) Language_es_GT=Spāņu (Gvatemala) @@ -83,18 +88,21 @@ Language_lt_LT=Lietuviešu Language_lv_LV=Latviešu Language_mk_MK=Maķedoniešu Language_mn_MN=Mongoļu +Language_my_MM=birmietis Language_nb_NO=Norvēģu (bukmols) Language_ne_NP=Nepālietis Language_nl_BE=Holandiešu (Beļģijas) Language_nl_NL=Holandiešu Language_pl_PL=Poļu Language_pt_AO=Portugāļu (Angola) +Language_pt_MZ=portugāļu (Mozambika) Language_pt_BR=Portugāļu (Brazīlija) Language_pt_PT=Portugāļu Language_ro_MD=Rumāņu (Moldāvija) Language_ro_RO=Rumāņu Language_ru_RU=Krievu Language_ru_UA=Krievu (Ukraina) +Language_ta_IN=tamilu Language_tg_TJ=Tadžiku Language_tr_TR=Turku Language_sl_SI=Slovēņu @@ -106,6 +114,7 @@ Language_sr_RS=Serbu Language_sw_SW=Kiswahili Language_th_TH=Thai Language_uk_UA=Ukraiņu +Language_ur_PK=urdu Language_uz_UZ=Uzbeku Language_vi_VN=Vjetnamiešu Language_zh_CN=Ķīniešu diff --git a/htdocs/langs/lv_LV/mails.lang b/htdocs/langs/lv_LV/mails.lang index 6afe2eb584f..4d01ceeecac 100644 --- a/htdocs/langs/lv_LV/mails.lang +++ b/htdocs/langs/lv_LV/mails.lang @@ -178,3 +178,4 @@ IsAnAnswer=Vai ir atbilde uz sākotnējo e-pastu RecordCreatedByEmailCollector=Ierakstu izveidojis e-pasta savācējs %s no e-pasta %s DefaultBlacklistMailingStatus=Lauka %s noklusējuma vērtība, veidojot jaunu kontaktpersonu DefaultStatusEmptyMandatory=Tukšs, bet obligāts +WarningLimitSendByDay=BRĪDINĀJUMS. Jūsu instances iestatīšana vai līgums ierobežo jūsu e-pasta ziņojumu skaitu dienā līdz %s . Mēģinot sūtīt vairāk, jūsu instance var tikt palēnināta vai apturēta. Lūdzu, sazinieties ar atbalsta dienestu, ja jums nepieciešama lielāka kvota. diff --git a/htdocs/langs/lv_LV/main.lang b/htdocs/langs/lv_LV/main.lang index 2d2f7994cf2..8019831cee3 100644 --- a/htdocs/langs/lv_LV/main.lang +++ b/htdocs/langs/lv_LV/main.lang @@ -345,7 +345,7 @@ KiloBytes=Kilobaiti MegaBytes=Megabaiti GigaBytes=Gigabaiti TeraBytes=Terabaiti -UserAuthor=Apkrāpts ar +UserAuthor=Izveidojis UserModif=Atjaunināja b=b. Kb=Kb @@ -712,6 +712,7 @@ FeatureDisabled=Funkcija bloķēta MoveBox=Pārvietot logrīku Offered=Piedāvāts NotEnoughPermissions=Jums nav atļauta šī darbība +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=Sesijas nosaukums Method=Metode Receive=Saņemt @@ -801,6 +802,7 @@ URLPhoto=Saite bildei/logo SetLinkToAnotherThirdParty=Saite uz citu trešo personu LinkTo=Saite uz LinkToProposal=Saite uz priekšlikumu +LinkToExpedition= Saite uz ekspedīciju LinkToOrder=Saite uz pasūtījumu LinkToInvoice=Saite uz rēķinu LinkToTemplateInvoice=Saite uz veidnes rēķinu @@ -1174,6 +1176,7 @@ ConfirmAllocateCommercial=Piešķiriet tirdzniecības pārstāvja apstiprinājum ConfirmAllocateCommercialQuestion=Vai tiešām vēlaties piešķirt %s atlasītos ierakstus? CommercialsAffected=Ietekmēti tirdzniecības pārstāvji CommercialAffected=Ietekmēts tirdzniecības pārstāvis -YourMessage=Votre message -YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. -UrlToCheck=Url to check +YourMessage=Tava ziņa +YourMessageHasBeenReceived=Jūsu ziņojums ir saņemts. Mēs atbildēsim vai sazināsimies ar jums pēc iespējas ātrāk. +UrlToCheck=Pārbaudāmais URL +Automation=Automatizācija diff --git a/htdocs/langs/lv_LV/members.lang b/htdocs/langs/lv_LV/members.lang index 44c68cdaa8b..6811d72ae5c 100644 --- a/htdocs/langs/lv_LV/members.lang +++ b/htdocs/langs/lv_LV/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=Dalības beigu datums EndSubscription=Dalības beigas SubscriptionId=Iemaksas ID WithoutSubscription=Bez ieguldījuma -MemberId=Dalībnieka id +MemberId=Dalībnieka ID +MemberRef=Biedru Ref NewMember=Jauns dalībnieks MemberType=Dalībnieka veids MemberTypeId=Dalībnieka veida id @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Dalībnieka veidu nevar dzēst NewSubscription=Jauns ieguldījums NewSubscriptionDesc=Šī veidlapa ļauj ierakstīt savu abonementu kā jaunu locekli pamats. Ja jūs vēlaties atjaunot savu abonementu (ja jau loceklis), lūdzu, sazinieties Dibināšanas valdē, nevis pa e-pastu %s. Subscription=Ieguldījums +AnyAmountWithAdvisedAmount=Jebkura summa ar ieteicamo daudzumu %s %s +AnyAmountWithoutAdvisedAmount=Jebkura summa +CanEditAmountShort=Jebkura summa +CanEditAmountShortForValues=ieteicams jebkurā daudzumā +MembershipDuration=Ilgums +GetMembershipButtonLabel=Iegūstiet dalību Subscriptions=Ieguldījumi SubscriptionLate=Vēlu SubscriptionNotReceived=Ieguldījums nekad nav saņemts @@ -135,7 +142,7 @@ CardContent=Saturu jūsu dalības kartes # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=Mēs vēlamies jūs informēt, ka jūsu dalības pieprasījums ir saņemts.

ThisIsContentOfYourMembershipWasValidated=Mēs vēlamies jūs informēt, ka jūsu dalība tika apstiprināta ar šādu informāciju:

-ThisIsContentOfYourSubscriptionWasRecorded=Mēs vēlamies Jūs informēt, ka jaunais abonements tika reģistrēts.

+ThisIsContentOfYourSubscriptionWasRecorded=Vēlamies jūs informēt, ka jūsu jaunais abonements ir reģistrēts. Lūdzu, skatiet šeit pievienoto rēķinu.

ThisIsContentOfSubscriptionReminderEmail=Vēlamies informēt, ka jūsu abonements beidzas vai ir beidzies (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Mēs ceram, ka jūs to atjaunosit.

ThisIsContentOfYourCard=Tas ir informācijas kopsavilkums, kas mums ir par jums. Lūdzu, sazinieties ar mums, ja kaut kas nav pareizs.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Paziņojuma e-pasta objekts, kas saņemts viesa automātiskās uzrakstīšanas gadījumā @@ -198,7 +205,8 @@ NbOfSubscriptions=Iemaksu skaits AmountOfSubscriptions=No iemaksām iekasētā summa TurnoverOrBudget=Apgrozījums (uzņēmumam) vai budžets (par pamatu) DefaultAmount=Iemaksas noklusējuma summa -CanEditAmount=Apmeklētājs var izvēlēties/rediģēt savu ieguldījumu +CanEditAmount=Apmeklētājs var izvēlēties/rediģēt sava ieguldījuma apjomu neatkarīgi no dalībnieka veida +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Pārlēkt uz integrētu tiešsaistes maksājumu lapā ByProperties=Pēc būtības MembersStatisticsByProperties=Dalībnieku statistika pēc būtības @@ -218,5 +226,5 @@ XExternalUserCreated=%s izveidots (-i) ārējs (-i) lietotājs (i) ForceMemberNature=Spēka locekļa raksturs (indivīds vai korporācija) CreateDolibarrLoginDesc=Izveidojot lietotājvārdu dalībniekiem, viņi var izveidot savienojumu ar lietojumprogrammu. Atkarībā no piešķirtajām atļaujām viņi, piemēram, varēs paši iepazīties vai mainīt savu failu. CreateDolibarrThirdPartyDesc=Trešā puse ir juridiska persona, kas tiks izmantota rēķinā, ja jūs nolemjat ģenerēt rēķinu par katru ieguldījumu. To varēsit izveidot vēlāk, ieguldījuma ierakstīšanas procesa laikā. -MemberFirstname=Member firstname -MemberLastname=Member lastname +MemberFirstname=Dalībnieka vārds +MemberLastname=Dalībnieka uzvārds diff --git a/htdocs/langs/lv_LV/modulebuilder.lang b/htdocs/langs/lv_LV/modulebuilder.lang index 9c91bf1333d..99b3ccb4633 100644 --- a/htdocs/langs/lv_LV/modulebuilder.lang +++ b/htdocs/langs/lv_LV/modulebuilder.lang @@ -1,17 +1,19 @@ # Dolibarr language file - Source file is en_US - loan +IdModule= Moduļa ID ModuleBuilderDesc=Šo rīku drīkst izmantot tikai pieredzējuši lietotāji vai izstrādātāji. Tas nodrošina utilītas, lai izveidotu vai rediģētu savu moduli. Dokumentācija alternatīvai manuālai izstrādei ir pieejama šeit . -EnterNameOfModuleDesc=Enter the name of the module/application to create with no spaces. Use uppercase to separate words (For example: MyModule, EcommerceForShop, SyncWithMySystem...) -EnterNameOfObjectDesc=Enter the name of the object to create with no spaces. Use uppercase to separate words (For example: MyObject, Student, Teacher...). The CRUD class file, but also API file, pages to list/add/edit/delete object and SQL files will be generated. -EnterNameOfDictionaryDesc=Enter the name of the dictionary to create with no spaces. Use uppercase to separate words (For example: MyDico...). The class file, but also the SQL file will be generated. +EnterNameOfModuleDesc=Ievadiet izveidojamā moduļa/lietojumprogrammas nosaukumu bez atstarpēm. Izmantojiet lielos burtus, lai atdalītu vārdus (piemēram, MyModule, EcommerceForShop, SyncWithMySystem...) +EnterNameOfObjectDesc=Ievadiet izveidojamā objekta nosaukumu bez atstarpēm. Izmantojiet lielos burtus, lai atdalītu vārdus (piemēram: MyObject, Student, Teacher...). Tiks ģenerēts CRUD klases fails, kā arī API fails, lapas, lai uzskaitītu/pievienotu/rediģētu/dzēstu objektu un SQL faili. +EnterNameOfDictionaryDesc=Ievadiet izveidojamās vārdnīcas nosaukumu bez atstarpēm. Izmantojiet lielos burtus, lai atdalītu vārdus (piemēram, MyDico...). Tiks ģenerēts klases fails, kā arī SQL fails. ModuleBuilderDesc2=Ceļš, kurā tiek ģenerēti / rediģēti moduļi (pirmais ārējo moduļu katalogs, kas definēts %s): %s ModuleBuilderDesc3=Atrastie / rediģējamie moduļi: %s ModuleBuilderDesc4=Modulis identificēts kā "rediģējams", kad moduļa saknes direktorijā atrodas fails %s NewModule=Jauns modulis NewObjectInModulebuilder=Jauns objekts -NewDictionary=New dictionary +NewDictionary=Jauna vārdnīca +ModuleName=Moduļa nosaukums ModuleKey=Moduļa atslēga ObjectKey=Objekta atslēga -DicKey=Dictionary key +DicKey=Vārdnīcas atslēga ModuleInitialized=Modulis inicializēts FilesForObjectInitialized=Files for new object '%s' initialized FilesForObjectUpdated=Atjaunots objektu '%s' faili (.sql faili un .class.php fails) @@ -153,3 +155,4 @@ LinkToParentMenu=Vecāku izvēlne (fk_xxxxmenu) ListOfTabsEntries=Cilņu ierakstu saraksts TabsDefDesc=Šeit definējiet moduļa nodrošinātās cilnes TabsDefDescTooltip=Jūsu moduļa/lietojumprogrammas nodrošinātās cilnes ir definētas masīvā $this->tabs moduļa deskriptora failā. Varat manuāli rediģēt šo failu vai izmantot iegulto redaktoru. +BadValueForType=Nepareiza vērtība tipam %s diff --git a/htdocs/langs/lv_LV/mrp.lang b/htdocs/langs/lv_LV/mrp.lang index d38e1e5294c..d0a3d3af907 100644 --- a/htdocs/langs/lv_LV/mrp.lang +++ b/htdocs/langs/lv_LV/mrp.lang @@ -109,6 +109,6 @@ THMEstimatedHelp=Šī likme ļauj noteikt objekta prognozētās izmaksas BOM=Materiālu rēķins CollapseBOMHelp=Nomenklatūras detaļu noklusējuma displeju var definēt MK moduļa konfigurācijā MOAndLines=Ražošanas pasūtījumi un līnijas -MoChildGenerate=Generate Child Mo -ParentMo=MO Parent -MOChild=MO Child +MoChildGenerate=Ģenerēt Child Mo +ParentMo=MO Vecāks +MOChild=MO bērns diff --git a/htdocs/langs/lv_LV/oauth.lang b/htdocs/langs/lv_LV/oauth.lang index ba808ac55e7..9e5967fbb0f 100644 --- a/htdocs/langs/lv_LV/oauth.lang +++ b/htdocs/langs/lv_LV/oauth.lang @@ -9,12 +9,13 @@ HasAccessToken=Tika izveidots marķieris un saglabāts lokālajā datu bāzē NewTokenStored=Token received and saved ToCheckDeleteTokenOnProvider=Click here to check/delete authorization saved by %s OAuth provider TokenDeleted=Tokens dzēsts -RequestAccess=Click here to request/renew access and receive a new token to save +RequestAccess=Noklikšķiniet šeit, lai pieprasītu/atjaunotu piekļuvi un saņemtu jaunu pilnvaru DeleteAccess=Noklikšķiniet šeit, lai izdzēstu marķieri UseTheFollowingUrlAsRedirectURI=Izmantot savu akreditācijas datus ar OAuth pakalpojumu sniedzēju, izmantojiet šādu URL kā novirzīšanas URI: -ListOfSupportedOauthProviders=Ievadiet OAuth2 sniedzēja sniegtos akreditācijas datus. Šeit ir uzskaitīti tikai atbalstītie OAuth2 pakalpojumu sniedzēji. Šos pakalpojumus var izmantot citi moduļi, kuriem nepieciešama OAuth2 autentifikācija. -OAuthSetupForLogin=Page to generate an OAuth token +ListOfSupportedOauthProviders=Pievienojiet savus OAuth2 pilnvaras nodrošinātājus. Pēc tam atveriet savu OAuth nodrošinātāja administratora lapu, lai izveidotu/iegūtu OAuth ID un noslēpumu un saglabātu tos šeit. Kad tas ir izdarīts, ieslēdziet otru cilni, lai ģenerētu marķieri. +OAuthSetupForLogin=Lapa, kurā pārvaldīt (ģenerēt/dzēst) OAuth pilnvaras SeePreviousTab=Skatīt iepriekšējo cilni +OAuthProvider=OAuth nodrošinātājs OAuthIDSecret=OAuth ID un slepenais TOKEN_REFRESH=Token Refresh Present TOKEN_EXPIRED=Derīguma termiņš ir beidzies @@ -23,10 +24,13 @@ TOKEN_DELETE=Dzēst saglabāto pilnvaru OAUTH_GOOGLE_NAME=OAuth Google pakalpojums OAUTH_GOOGLE_ID=OAuth Google ID OAUTH_GOOGLE_SECRET=OAuth Google Secret -OAUTH_GOOGLE_DESC=Dodieties uz šo lapu un pēc tam uz "Akreditācijas dati", lai izveidotu OAuth akreditācijas datus. OAUTH_GITHUB_NAME=OAuth GitHub pakalpojums OAUTH_GITHUB_ID=OAuth GitHub ID OAUTH_GITHUB_SECRET=OAuth GitHub noslēpums -OAUTH_GITHUB_DESC=Dodieties uz šo lapu un pēc tam "Reģistrējiet jaunu lietojumprogrammu", lai izveidotu OAuth akreditācijas datus. +OAUTH_URL_FOR_CREDENTIAL=Dodieties uz šo lapu , lai izveidotu vai iegūtu savu OAuth ID un noslēpumu OAUTH_STRIPE_TEST_NAME=OAuth svītras tests OAUTH_STRIPE_LIVE_NAME=OAuth Stripe Live +OAUTH_ID=OAuth ID +OAUTH_SECRET=OAuth noslēpums +OAuthProviderAdded=Pievienots OAuth nodrošinātājs +AOAuthEntryForThisProviderAndLabelAlreadyHasAKey=OAuth ieraksts šim nodrošinātājam un iezīmei jau pastāv diff --git a/htdocs/langs/lv_LV/orders.lang b/htdocs/langs/lv_LV/orders.lang index afc336f7da4..6f8c400775c 100644 --- a/htdocs/langs/lv_LV/orders.lang +++ b/htdocs/langs/lv_LV/orders.lang @@ -1,4 +1,5 @@ # Dolibarr language file - Source file is en_US - orders +OrderExists=Ar šo piedāvājumu saistīts pasūtījums jau bija atvērts, tāpēc neviens cits pasūtījums netika izveidots automātiski OrdersArea=Klienti pasūtījumu sadaļa SuppliersOrdersArea=Pirkumu pasūtījumu apgabals OrderCard=Pasūtījumu kartiņa diff --git a/htdocs/langs/lv_LV/other.lang b/htdocs/langs/lv_LV/other.lang index 9e68485120a..3559bd983df 100644 --- a/htdocs/langs/lv_LV/other.lang +++ b/htdocs/langs/lv_LV/other.lang @@ -110,7 +110,7 @@ ChooseYourDemoProfilMore=... vai izveidojiet savu profilu
(manuālā moduļ DemoFundation=Pārvaldīt nodibinājuma dalībniekus DemoFundation2=Pārvaldīt dalībniekus un bankas kontu nodibinājumam DemoCompanyServiceOnly=Tikai uzņēmuma vai ārštata pārdošanas pakalpojums -DemoCompanyShopWithCashDesk=Manage a shop with a cash box +DemoCompanyShopWithCashDesk=Pārvaldiet veikalu ar naudas kasti DemoCompanyProductAndStocks=Veikals, kas pārdod produktus, izmantojot tirdzniecības vietu DemoCompanyManufacturing=Uzņēmums, kas ražo produktus DemoCompanyAll=Uzņēmums ar vairākām darbībām (visi galvenie moduļi) @@ -304,3 +304,24 @@ ConfirmBtnCommonContent = Vai tiešām vēlaties "%s"? ConfirmBtnCommonTitle = Apstipriniet savu darbību CloseDialog = Aizvērt Autofill = Automātiskā aizpilde + +# externalsite +ExternalSiteSetup=Ārējo vietņu iestatīšana +ExternalSiteURL=HTML iframe satura ārējās vietnes URL +ExternalSiteModuleNotComplete=Modulis ExternalSite nav pareizi konfigurēts. +ExampleMyMenuEntry=Manas izvēlnes ieraksti + +# FTP +FTPClientSetup=FTP vai SFTP klienta moduļa iestatīšana +NewFTPClient=Jauna FTP / FTPS savienojuma iestatīšana +FTPArea=FTP/FTPS sadaļa +FTPAreaDesc=Šajā ekrānā ir redzams FTP un SFTP servera skats. +SetupOfFTPClientModuleNotComplete=Šķiet, ka FTP vai SFTP klienta moduļa iestatīšana ir nepilnīga +FTPFeatureNotSupportedByYourPHP=Jūsu PHP neatbalsta FTP vai SFTP funkcijas +FailedToConnectToFTPServer=Neizdevās izveidot savienojumu ar serveri (serveris %s, ports %s) +FailedToConnectToFTPServerWithCredentials=Neizdevās pieteikties serverī ar definētu pieteikšanās vārdu/paroli +FTPFailedToRemoveFile=Neizdevās noņemt failu %s. +FTPFailedToRemoveDir=Neizdevās noņemt direktoriju %s: pārbaudīt atļaujas un ka katalogs ir tukšs. +FTPPassiveMode=Pasīvais režīms +ChooseAFTPEntryIntoMenu=Izvēlnē izvēlieties FTP/SFTP vietni... +FailedToGetFile=Neizdevās iegūt failus %s diff --git a/htdocs/langs/lv_LV/paypal.lang b/htdocs/langs/lv_LV/paypal.lang index 50ff6da59c2..cba242cd825 100644 --- a/htdocs/langs/lv_LV/paypal.lang +++ b/htdocs/langs/lv_LV/paypal.lang @@ -34,3 +34,4 @@ ARollbackWasPerformedOnPostActions=Atkārtojums tika veikts visos Post darbībā ValidationOfPaymentFailed=Maksājuma apstiprināšana nav izdevies CardOwner=Kartes turētājs PayPalBalance=Paypal kredīts +OnlineSubscriptionPaymentLine=Tiešsaistes abonements reģistrēts %s
Apmaksāts, izmantojot %s
Sākotnējā IP adrese: %s a0342fccfdac49fec IDb8 diff --git a/htdocs/langs/lv_LV/products.lang b/htdocs/langs/lv_LV/products.lang index df0e318a44f..161b4bbebb0 100644 --- a/htdocs/langs/lv_LV/products.lang +++ b/htdocs/langs/lv_LV/products.lang @@ -262,7 +262,7 @@ Quarter1=1. Ceturksnis Quarter2=2. Ceturksnis Quarter3=3. Ceturksnis Quarter4=4. Ceturksnis -BarCodePrintsheet=Drukāt svītrukodu +BarCodePrintsheet=Drukāt svītrkodus PageToGenerateBarCodeSheets=Izmantojot šo rīku, varat drukāt svītrkodu uzlīmes. Izvēlieties uzlīmes lapas formātu, svītrkodu veidu un svītrkoda vērtību, pēc tam noklikšķiniet uz pogas %s . NumberOfStickers=Number of stickers to print on page PrintsheetForOneBarCode=Drukāt vairākas svītrkoda uzlīmes diff --git a/htdocs/langs/lv_LV/projects.lang b/htdocs/langs/lv_LV/projects.lang index f06d1167d8e..049bdc53915 100644 --- a/htdocs/langs/lv_LV/projects.lang +++ b/htdocs/langs/lv_LV/projects.lang @@ -6,7 +6,7 @@ ProjectLabel=Projekta nosaukums ProjectsArea=Projektu sadaļa ProjectStatus=Projekta statuss SharedProject=Visi -PrivateProject=Assigned contacts +PrivateProject=Piešķirtie kontakti ProjectsImContactFor=Projekti, par kuriem tieši esmu kontaktpersona AllAllowedProjects=All project I can read (mine + public) AllProjects=Visi projekti @@ -259,7 +259,7 @@ TimeSpentInvoiced=Norēķinātais laiks TimeSpentForIntervention=Laiks, kas patērēts TimeSpentForInvoice=Laiks, kas patērēts OneLinePerUser=Viena līnija katram lietotājam -ServiceToUseOnLines=Pakalpojums, ko izmantot līnijās +ServiceToUseOnLines=Pakalpojums, kas pēc noklusējuma jāizmanto līnijās InvoiceGeneratedFromTimeSpent=Rēķins %s ir radīts no projekta pavadīta laika InterventionGeneratedFromTimeSpent=Intervence %s ir izveidota no projektam pavadītā laika ProjectBillTimeDescription=Pārbaudiet, vai projekta uzdevumos ievadāt laika kontrolsarakstu UN Plānojat no laika kontrolsaraksta ģenerēt rēķinu (rēķinus), lai projekta klientam izrakstītu rēķinu (nepārbaudiet, vai plānojat izveidot rēķinu, kas nav balstīts uz ievadītajām laika kontrollapām). Piezīme. Lai ģenerētu rēķinu, dodieties uz projekta cilni “Pavadītais laiks” un atlasiet iekļaujamās līnijas. @@ -289,8 +289,9 @@ FormForNewLeadDesc=Paldies, ka aizpildījāt šo veidlapu, lai sazinātos ar mum ProjectsHavingThisContact=Projekti ar šo kontaktpersonu StartDateCannotBeAfterEndDate=Beigu datums nevar būt pirms sākuma datuma ErrorPROJECTLEADERRoleMissingRestoreIt=Trūkst lomas "PROJECTLEADER" vai tā ir deaktivizēta. Lūdzu, atjaunojiet kontaktpersonu veidu vārdnīcā -LeadPublicFormDesc=You can enable here a public page to allow your prospects to make a first contact to you from a public online form -EnablePublicLeadForm=Enable the public form for contact -NewLeadbyWeb=Your message or request has been recorded. We will answer or contact your soon. -NewLeadForm=New contact form -LeadFromPublicForm=Online lead from public form +LeadPublicFormDesc=Šeit varat iespējot publisku lapu, lai potenciālie klienti varētu pirmo reizi sazināties ar jums, izmantojot publisku tiešsaistes veidlapu +EnablePublicLeadForm=Iespējojiet publisko saziņas veidlapu +NewLeadbyWeb=Jūsu ziņojums vai pieprasījums ir ierakstīts. Mēs drīzumā atbildēsim vai sazināsimies ar jums. +NewLeadForm=Jauna kontaktu forma +LeadFromPublicForm=Tiešsaistes potenciāls no publiskās veidlapas +ExportAccountingReportButtonLabel=Saņemt atskaiti diff --git a/htdocs/langs/lv_LV/receiptprinter.lang b/htdocs/langs/lv_LV/receiptprinter.lang index 4527dbfadb0..1eeae818913 100644 --- a/htdocs/langs/lv_LV/receiptprinter.lang +++ b/htdocs/langs/lv_LV/receiptprinter.lang @@ -7,7 +7,7 @@ TestSentToPrinter=Pārbaude nosūtīta printerim %s ReceiptPrinter=Čeku printeri ReceiptPrinterDesc=Iestatījumi čeku printeriem ReceiptPrinterTemplateDesc=Veidņu iestatīšana -ReceiptPrinterTypeDesc=Description of Receipt Printer's type +ReceiptPrinterTypeDesc=Lauka "Parametri" iespējamo vērtību piemērs atbilstoši draivera veidam ReceiptPrinterProfileDesc=Description of Receipt Printer's Profile ListPrinters=Printeru saraksts SetupReceiptTemplate=Veidņu iestatīšana @@ -54,7 +54,9 @@ DOL_DOUBLE_WIDTH=Dubultā platuma izmērs DOL_DEFAULT_HEIGHT_WIDTH=Noklusējuma augstums un platums DOL_UNDERLINE=Iespējot pasvītrojumu DOL_UNDERLINE_DISABLED=Atspējot pasvītrojumu -DOL_BEEP=Bēdas skaņa +DOL_BEEP=Pīkstiena skaņa +DOL_BEEP_ALTERNATIVE=Pīkstiens (alternatīvais režīms) +DOL_PRINT_CURR_DATE=Drukāt pašreizējo datumu/laiku DOL_PRINT_TEXT=Drukāt tekstu DateInvoiceWithTime=Rēķina datums un laiks YearInvoice=Rēķina gads diff --git a/htdocs/langs/lv_LV/stocks.lang b/htdocs/langs/lv_LV/stocks.lang index 536bcf9e53e..7391a084ec1 100644 --- a/htdocs/langs/lv_LV/stocks.lang +++ b/htdocs/langs/lv_LV/stocks.lang @@ -142,13 +142,13 @@ ForThisWarehouse=Šai noliktavai ReplenishmentStatusDesc=Šis ir saraksts ar visiem produktiem, kuru krājumi ir mazāki par vēlamo krājumu (vai ir zemāka par brīdinājuma vērtību, ja ir atzīmēta izvēles rūtiņa "tikai brīdinājums"). Izmantojot izvēles rūtiņu, varat izveidot pirkuma pasūtījumus, lai aizpildītu starpību. ReplenishmentStatusDescPerWarehouse=Ja vēlaties papildināšanu, pamatojoties uz vēlamo daudzumu, kas noteikts katrā noliktavā, jums jāpievieno filtrs noliktavā. ReplenishmentOrdersDesc=Šis ir visu atvērto pirkumu pasūtījumu saraksts, ieskaitot iepriekš definētus produktus. Atveriet pasūtījumus tikai ar iepriekš definētiem produktiem, tāpēc šeit ir redzami pasūtījumi, kas var ietekmēt krājumus. -Replenishments=Papildinājumus +Replenishments=Papildinājumi NbOfProductBeforePeriod=Produktu daudzums %s noliktavā pirms izvēlētā perioda (< %s) NbOfProductAfterPeriod=Produktu daudzums %s krājumā pēc izvēlētā perioda (>%s) MassMovement=Masveida pārvietošana SelectProductInAndOutWareHouse=Atlasiet avota noliktavu un mērķa noliktavu, produktu un daudzumu, pēc tam noklikšķiniet uz "%s". Kad tas ir izdarīts visām nepieciešamajām kustībām, noklikšķiniet uz "%s". RecordMovement=Ierakstīt pārvietošanu -ReceivingForSameOrder=Receipts for this order +ReceivingForSameOrder=Kvītis par šo pasūtījumu StockMovementRecorded=Krājumu pārvietošana saglabāta RuleForStockAvailability=Noteikumi krājumu nepieciešamībai StockMustBeEnoughForInvoice=Krājumu līmenim ir jābūt pietiekamam, lai produktu / pakalpojumu pievienotu rēķinam (pārbaudiet, vai pašreizējā reālā krājumā tiek pievienota rinda rēķinā neatkarīgi no automātiskās krājumu maiņas noteikuma) @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Brīdinājuma krājuma limits un pareizi izveidots ProductStockWarehouseUpdated=Uzturvērtības ierobežojums brīdinājumam un vēlamais optimālais krājums ir pareizi atjaunināts ProductStockWarehouseDeleted=Brīdinājuma krājumu limits un vēlamais optimālais krājums ir pareizi svītrots AddNewProductStockWarehouse=Iestatiet jaunu ierobežojumu brīdinājumam un vēlamo optimālo krājumu -AddStockLocationLine=Samaziniet daudzumu, pēc tam noklikšķiniet, lai pievienotu citu izstrādājumu noliktavu +AddStockLocationLine=Samaziniet daudzumu, pēc tam noklikšķiniet, lai sadalītu līniju InventoryDate=Inventāra datums Inventories=Inventāri NewInventory=Jauns inventārs @@ -254,7 +254,7 @@ ReOpen=Atvērt pa jaunu ConfirmFinish=Vai jūs apstiprināt inventāra slēgšanu? Tas ģenerēs visas krājumu kustības, lai atjauninātu krājumus līdz reālajam daudzumam, kuru ievadījāt krājumā. ObjectNotFound=%s nav atrasts MakeMovementsAndClose=Ģenerējiet kustības un aizveriet -AutofillWithExpected=Aizstāt reālo daudzumu ar paredzamo daudzumu +AutofillWithExpected=Aizpildiet reālo daudzumu ar paredzamo daudzumu ShowAllBatchByDefault=Pēc noklusējuma parādīt partijas informāciju cilnē “Akciju” CollapseBatchDetailHelp=Krājumu moduļa konfigurācijā varat iestatīt partijas detaļu noklusējuma attēlojumu ErrorWrongBarcodemode=Nezināms svītrkoda režīms @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Produkts ar svītrkodu neeksistē WarehouseId=Noliktavas ID WarehouseRef=Noliktavas atsauce SaveQtyFirst=Vispirms saglabājiet reālos inventarizētos daudzumus, pirms lūdzat izveidot krājumu kustību. +ToStart=Sākt InventoryStartedShort=Sākts ErrorOnElementsInventory=Operācija tika atcelta šāda iemesla dēļ: ErrorCantFindCodeInInventory=Krājumā nevar atrast šādu kodu QtyWasAddedToTheScannedBarcode=Veiksmi!! Daudzums tika pievienots visam pieprasītajam svītrkodam. Varat aizvērt skenera rīku. StockChangeDisabled=Izmaiņas krājumā ir atspējotas NoWarehouseDefinedForTerminal=Terminālim nav noteikta noliktava +ClearQtys=Notīriet visus daudzumus +ModuleStockTransferName=Uzlabota akciju pārsūtīšana +ModuleStockTransferDesc=Uzlabota krājumu pārsūtīšanas pārvaldība ar pārsūtīšanas lapas ģenerēšanu +StockTransferNew=Jaunu akciju nodošana +StockTransferList=Krājumu pārvedumu saraksts +ConfirmValidateStockTransfer=Vai tiešām vēlaties apstiprināt šo akciju nodošanu ar atsauci %s ? +ConfirmDestock=Krājumu samazinājums ar pārskaitījumu %s +ConfirmDestockCancel=Atcelt krājumu samazināšanu ar pārskaitījumu %s +DestockAllProduct=Krājumu samazināšanās +DestockAllProductCancel=Atcelt krājumu samazināšanu +ConfirmAddStock=Palieliniet krājumus ar pārskaitījumu %s +ConfirmAddStockCancel=Atcelt krājumu palielināšanu ar pārskaitījumu %s +AddStockAllProduct=Krājumu palielināšana +AddStockAllProductCancel=Atcelt krājumu palielināšanu +DatePrevueDepart=Paredzētais izbraukšanas datums +DateReelleDepart=Īstais izbraukšanas datums +DatePrevueArrivee=Paredzētais ierašanās datums +DateReelleArrivee=Īstais ierašanās datums +HelpWarehouseStockTransferSource=Ja šī noliktava ir iestatīta, kā avota noliktava būs pieejama tikai pati un tās atvasinājumi +HelpWarehouseStockTransferDestination=Ja šī noliktava ir iestatīta, kā galamērķa noliktava būs pieejama tikai tā pati un tās bērni +LeadTimeForWarning=Izpildes laiks pirms brīdinājuma (dienās) +TypeContact_stocktransfer_internal_STFROM=Krājumu nodošanas sūtītājs +TypeContact_stocktransfer_internal_STDEST=Krājumu nodošanas saņēmējs +TypeContact_stocktransfer_internal_STRESP=Atbildīgs par krājumu nodošanu +StockTransferSheet=Krājumu nodošanas lapa +StockTransferSheetProforma=Proforma akciju nodošanas lapa +StockTransferDecrementation=Samaziniet avotu noliktavas +StockTransferIncrementation=Palieliniet galamērķa noliktavas +StockTransferDecrementationCancel=Atcelt avota noliktavu samazināšanu +StockTransferIncrementationCancel=Atcelt galamērķa noliktavu palielināšanu +StockStransferDecremented=Avotu noliktavas samazinājās +StockStransferDecrementedCancel=Avota noliktavu samazinājums ir atcelts +StockStransferIncremented=Slēgts — Krājumi nodoti +StockStransferIncrementedShort=Krājumi nodoti +StockStransferIncrementedShortCancel=Galamērķa noliktavu palielināšana ir atcelta +StockTransferNoBatchForProduct=Produktam %s netiek izmantota partija, notīriet sēriju tiešsaistē un mēģiniet vēlreiz +StockTransferSetup = Krājumu pārsūtīšanas moduļa konfigurācija +Settings=Iestatījumi +StockTransferSetupPage = Krājumu nodošanas moduļa konfigurācijas lapa +StockTransferRightRead=Lasīt akciju pārskaitījumus +StockTransferRightCreateUpdate=Izveidot/atjaunināt akciju pārvedumus +StockTransferRightDelete=Dzēst akciju pārskaitījumus +BatchNotFound=Šim produktam partija/sērija nav atrasta diff --git a/htdocs/langs/lv_LV/suppliers.lang b/htdocs/langs/lv_LV/suppliers.lang index 1282d01fc9a..2625b744912 100644 --- a/htdocs/langs/lv_LV/suppliers.lang +++ b/htdocs/langs/lv_LV/suppliers.lang @@ -4,6 +4,7 @@ SuppliersInvoice=Piegādātāja rēķins SupplierInvoices=Piegādātāja rēķini ShowSupplierInvoice=Rādīt piegādātāja rēķinu NewSupplier=Jauns pārdevējs +NewSupplierInvoice = Jauns piegādātāja rēķins History=Vēsture ListOfSuppliers=Pārdevēju saraksts ShowSupplier=Rādīt pārdevēju @@ -47,3 +48,10 @@ BuyerName=Pircēja vārds AllProductServicePrices=Visas produktu / pakalpojumu cenas AllProductReferencesOfSupplier=Visas pārdevēja atsauces BuyingPriceNumShort=Pārdevēja cenas +RepeatableSupplierInvoice=Piegādātāja rēķina veidne +RepeatableSupplierInvoices=Piegādātāja rēķinu veidne +RepeatableSupplierInvoicesList=Piegādātāja rēķinu veidne +RecurringSupplierInvoices=Atkārtoti piegādātāju rēķini +ToCreateAPredefinedSupplierInvoice=Lai izveidotu piegādātāja rēķina veidni, jums ir jāizveido standarta rēķins, pēc tam bez apstiprināšanas noklikšķiniet uz pogas "%s". +GeneratedFromSupplierTemplate=Ģenerēts no piegādātāja rēķina veidnes %s +SupplierInvoiceGeneratedFromTemplate=Piegādātāja rēķins %s Ģenerēts no piegādātāja rēķina veidnes %s diff --git a/htdocs/langs/lv_LV/ticket.lang b/htdocs/langs/lv_LV/ticket.lang index 0f0ea7186a4..e376d2dbb4f 100644 --- a/htdocs/langs/lv_LV/ticket.lang +++ b/htdocs/langs/lv_LV/ticket.lang @@ -90,8 +90,8 @@ TicketPublicAccess=Publiska saskarne, kurai nav nepieciešama identifikācija, i TicketSetupDictionaries=Pieteikumu, svarīgums un analītiskie kodi ir konfigurējami no vārdnīcās TicketParamModule=Moduļa mainīgā iestatīšana TicketParamMail=E-pasta iestatīšana -TicketEmailNotificationFrom=Biļešu atbildēm sūtīt e-pastu -TicketEmailNotificationFromHelp=Sūtītāja e-pasta atbildes uz biļešu atbildēm, kas nosūtītas no Dolibarr +TicketEmailNotificationFrom=Sender e-mail for notification on answers +TicketEmailNotificationFromHelp=Sender e-mail to use to send the notification email when an answer is provided inside the backoffice. For example noreply@example.com TicketEmailNotificationTo=Paziņot par biļetes izveidi uz šo e-pasta adresi TicketEmailNotificationToHelp=Ja tāda ir, šī e-pasta adrese tiks informēta par biļetes izveidi TicketNewEmailBodyLabel=Īsziņa, kas nosūtīta pēc pieteikuma izveides @@ -99,8 +99,8 @@ TicketNewEmailBodyHelp=Šeit norādītais teksts tiks ievietots e-pastā, apstip TicketParamPublicInterface=Publiskās saskarnes iestatīšana TicketsEmailMustExist=Pieprasīt esošu e-pasta adresi, lai izveidotu pieteikumu TicketsEmailMustExistHelp=Publiskā interfeisa e-pasta adrese jau ir jāaizpilda datu bāzē, lai izveidotu jaunu biļeti. -TicketCreateThirdPartyWithContactIfNotExist=Ask name and company name for unknown emails. -TicketCreateThirdPartyWithContactIfNotExistHelp=Check if a thirdparty or a contact exists for the email entered. If not, ask a name and a company name to create a third party with contact. +TicketCreateThirdPartyWithContactIfNotExist=Nezināmiem e-pastiem jautājiet vārdu un uzņēmuma nosaukumu. +TicketCreateThirdPartyWithContactIfNotExistHelp=Pārbaudiet, vai ievadītajam e-pastam ir trešā puse vai kontaktpersona. Ja nē, lūdziet vārdu un uzņēmuma nosaukumu, lai izveidotu trešo pusi ar kontaktpersonu. PublicInterface=Publiskā saskarne TicketUrlPublicInterfaceLabelAdmin=Alternatīvs publiskā interfeisa URL TicketUrlPublicInterfaceHelpAdmin=Web serverī ir iespējams definēt pseidonīmus un tādējādi padarīt publisko saskarni pieejamu ar citu URL (serverim šajā jaunajā URL jādarbojas kā starpniekserverim) diff --git a/htdocs/langs/mk_MK/hrm.lang b/htdocs/langs/mk_MK/hrm.lang index 44ca9187486..56248824820 100644 --- a/htdocs/langs/mk_MK/hrm.lang +++ b/htdocs/langs/mk_MK/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Отвори компанија CloseEtablishment=Затвори компанија # Dictionary DictionaryPublicHolidays=Leave - Public holidays -DictionaryDepartment=HRM - Список на оддели +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM - Job positions # Module Employees=Вработени @@ -20,13 +20,14 @@ Employee=Вработен NewEmployee=Нов вработен ListOfEmployees=List of employees HrmSetup=HRM module setup -HRM_MAXRANK=Maximum rank for a skill +SkillsManagement=Skills management +HRM_MAXRANK=Maximum number of levels to rank a skill HRM_DEFAULT_SKILL_DESCRIPTION=Default description of ranks when skill is created deplacement=Shift DateEval=Evaluation date JobCard=Job card -Job=Job -Jobs=Jobs +JobPosition=Job +JobsPosition=Jobs NewSkill=New Skill SkillType=Skill type Skilldets=List of ranks for this skill @@ -47,9 +48,8 @@ ConfirmValidateEvaluation=Are you sure you want to validate this evaluation with EvaluationCard=Evaluation card RequiredRank=Required rank for this job EmployeeRank=Employee rank for this skill -Position=Position -Positions=Positions -PositionCard=Position card +EmployeePosition=Employee position +EmployeePositions=Employee positions EmployeesInThisPosition=Employees in this position group1ToCompare=Usergroup to analyze group2ToCompare=Second usergroup for comparison @@ -70,12 +70,22 @@ RequiredSkills=Required skills for this job UserRank=User Rank SkillList=Skill list SaveRank=Save rank -knowHow=Know how -HowToBe=How to be -knowledge=Knowledge +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=Abandonment comment DateLastEval=Date last evaluation NoEval=No evaluation done for this employee HowManyUserWithThisMaxNote=Number of users with this rank HighestRank=Highest rank SkillComparison=Skill comparison +ActionsOnJob=Events on this job +VacantPosition=job vacancy +VacantCheckboxHelper=Checking this option will show unfilled positions (job vacancy) +SaveAddSkill = Skill(s) added +SaveLevelSkill = Skill(s) level saved +DeleteSkill = Skill removed +SkillsExtraFields=Attributs supplémentaires (Compétences) +JobsExtraFields=Attributs supplémentaires (Emplois) +EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/ms_MY/accountancy.lang b/htdocs/langs/ms_MY/accountancy.lang new file mode 100644 index 00000000000..2ee700e5af0 --- /dev/null +++ b/htdocs/langs/ms_MY/accountancy.lang @@ -0,0 +1,460 @@ +# Dolibarr language file - en_US - Accountancy (Double entries) +Accountancy=Accountancy +Accounting=Accounting +ACCOUNTING_EXPORT_SEPARATORCSV=Column separator for export file +ACCOUNTING_EXPORT_DATE=Date format for export file +ACCOUNTING_EXPORT_PIECE=Export the number of piece +ACCOUNTING_EXPORT_GLOBAL_ACCOUNT=Export with global account +ACCOUNTING_EXPORT_LABEL=Export label +ACCOUNTING_EXPORT_AMOUNT=Export amount +ACCOUNTING_EXPORT_DEVISE=Export currency +Selectformat=Select the format for the file +ACCOUNTING_EXPORT_FORMAT=Select the format for the file +ACCOUNTING_EXPORT_ENDLINE=Select the carriage return type +ACCOUNTING_EXPORT_PREFIX_SPEC=Specify the prefix for the file name +ThisService=This service +ThisProduct=This product +DefaultForService=Default for service +DefaultForProduct=Default for product +ProductForThisThirdparty=Product for this thirdparty +ServiceForThisThirdparty=Service for this thirdparty +CantSuggest=Can't suggest +AccountancySetupDoneFromAccountancyMenu=Most setup of the accountancy is done from the menu %s +ConfigAccountingExpert=Configuration of the module accounting (double entry) +Journalization=Journalization +Journals=Journals +JournalFinancial=Financial journals +BackToChartofaccounts=Return chart of accounts +Chartofaccounts=Chart of accounts +ChartOfSubaccounts=Chart of individual accounts +ChartOfIndividualAccountsOfSubsidiaryLedger=Chart of individual accounts of the subsidiary ledger +CurrentDedicatedAccountingAccount=Current dedicated account +AssignDedicatedAccountingAccount=New account to assign +InvoiceLabel=Invoice label +OverviewOfAmountOfLinesNotBound=Overview of amount of lines not bound to an accounting account +OverviewOfAmountOfLinesBound=Overview of amount of lines already bound to an accounting account +OtherInfo=Other information +DeleteCptCategory=Remove accounting account from group +ConfirmDeleteCptCategory=Are you sure you want to remove this accounting account from the accounting account group? +JournalizationInLedgerStatus=Status of journalization +AlreadyInGeneralLedger=Already transferred to accounting journals and ledger +NotYetInGeneralLedger=Not yet transferred to accouting journals and ledger +GroupIsEmptyCheckSetup=Group is empty, check setup of the personalized accounting group +DetailByAccount=Show detail by account +AccountWithNonZeroValues=Accounts with non-zero values +ListOfAccounts=List of accounts +CountriesInEEC=Countries in EEC +CountriesNotInEEC=Countries not in EEC +CountriesInEECExceptMe=Countries in EEC except %s +CountriesExceptMe=All countries except %s +AccountantFiles=Export source documents +ExportAccountingSourceDocHelp=With this tool, you can search and export the source events that are used to generate your accountancy.
The exported ZIP file will contain the lists of requested items in CSV, as well as their attached files in their original format (PDF, ODT, DOCX...). +ExportAccountingSourceDocHelp2=To export your journals, use the menu entry %s - %s. +ExportAccountingProjectHelp=Specify a project if you need an accounting report only for a specific project. Expense reports and loan payments are not included in project reports. +VueByAccountAccounting=View by accounting account +VueBySubAccountAccounting=View by accounting subaccount + +MainAccountForCustomersNotDefined=Main accounting account for customers not defined in setup +MainAccountForSuppliersNotDefined=Main accounting account for vendors not defined in setup +MainAccountForUsersNotDefined=Main accounting account for users not defined in setup +MainAccountForVatPaymentNotDefined=Main accounting account for VAT payment not defined in setup +MainAccountForSubscriptionPaymentNotDefined=Main accounting account for subscription payment not defined in setup + +AccountancyArea=Accounting area +AccountancyAreaDescIntro=Usage of the accountancy module is done in several step: +AccountancyAreaDescActionOnce=The following actions are usually executed one time only, or once per year... +AccountancyAreaDescActionOnceBis=Next steps should be done to save you time in future by suggesting you automaticaly the correct default accounting account when transferring data in accounting +AccountancyAreaDescActionFreq=The following actions are usually executed every month, week or day for very large companies... + +AccountancyAreaDescJournalSetup=STEP %s: Check content of your journal list from menu %s +AccountancyAreaDescChartModel=STEP %s: Check that a model of chart of account exists or create one from menu %s +AccountancyAreaDescChart=STEP %s: Select and|or complete your chart of account from menu %s + +AccountancyAreaDescVat=STEP %s: Define accounting accounts for each VAT Rates. For this, use the menu entry %s. +AccountancyAreaDescDefault=STEP %s: Define default accounting accounts. For this, use the menu entry %s. +AccountancyAreaDescExpenseReport=STEP %s: Define default accounting accounts for each type of Expense report. For this, use the menu entry %s. +AccountancyAreaDescSal=STEP %s: Define default accounting accounts for payment of salaries. For this, use the menu entry %s. +AccountancyAreaDescContrib=STEP %s: Define default accounting accounts for Taxes (special expenses). For this, use the menu entry %s. +AccountancyAreaDescDonation=STEP %s: Define default accounting accounts for donation. For this, use the menu entry %s. +AccountancyAreaDescSubscription=STEP %s: Define default accounting accounts for member subscription. For this, use the menu entry %s. +AccountancyAreaDescMisc=STEP %s: Define mandatory default account and default accounting accounts for miscellaneous transactions. For this, use the menu entry %s. +AccountancyAreaDescLoan=STEP %s: Define default accounting accounts for loans. For this, use the menu entry %s. +AccountancyAreaDescBank=STEP %s: Define accounting accounts and journal code for each bank and financial accounts. For this, use the menu entry %s. +AccountancyAreaDescProd=STEP %s: Define accounting accounts on your Products/Services. For this, use the menu entry %s. + +AccountancyAreaDescBind=STEP %s: Check the binding between existing %s lines and accounting account is done, so application will be able to journalize transactions in Ledger in one click. Complete missing bindings. For this, use the menu entry %s. +AccountancyAreaDescWriteRecords=STEP %s: Write transactions into the Ledger. For this, go into menu %s, and click into button %s. +AccountancyAreaDescAnalyze=STEP %s: Add or edit existing transactions and generate reports and exports. + +AccountancyAreaDescClosePeriod=STEP %s: Close period so we can't make modification in a future. + +TheJournalCodeIsNotDefinedOnSomeBankAccount=A mandatory step in setup has not been completed (accounting code journal not defined for all bank accounts) +Selectchartofaccounts=Select active chart of accounts +ChangeAndLoad=Change and load +Addanaccount=Add an accounting account +AccountAccounting=Accounting account +AccountAccountingShort=Account +SubledgerAccount=Subledger account +SubledgerAccountLabel=Subledger account label +ShowAccountingAccount=Show accounting account +ShowAccountingJournal=Show accounting journal +ShowAccountingAccountInLedger=Show accounting account in ledger +ShowAccountingAccountInJournals=Show accounting account in journals +AccountAccountingSuggest=Accounting account suggested +MenuDefaultAccounts=Default accounts +MenuBankAccounts=Bank accounts +MenuVatAccounts=Vat accounts +MenuTaxAccounts=Tax accounts +MenuExpenseReportAccounts=Expense report accounts +MenuLoanAccounts=Loan accounts +MenuProductsAccounts=Product accounts +MenuClosureAccounts=Closure accounts +MenuAccountancyClosure=Closure +MenuAccountancyValidationMovements=Validate movements +ProductsBinding=Products accounts +TransferInAccounting=Transfer in accounting +RegistrationInAccounting=Recording in accounting +Binding=Binding to accounts +CustomersVentilation=Customer invoice binding +SuppliersVentilation=Vendor invoice binding +ExpenseReportsVentilation=Expense report binding +CreateMvts=Create new transaction +UpdateMvts=Modification of a transaction +ValidTransaction=Validate transaction +WriteBookKeeping=Record transactions in accounting +Bookkeeping=Ledger +BookkeepingSubAccount=Subledger +AccountBalance=Account balance +ObjectsRef=Source object ref +CAHTF=Total purchase vendor before tax +TotalExpenseReport=Total expense report +InvoiceLines=Lines of invoices to bind +InvoiceLinesDone=Bound lines of invoices +ExpenseReportLines=Lines of expense reports to bind +ExpenseReportLinesDone=Bound lines of expense reports +IntoAccount=Bind line with the accounting account +TotalForAccount=Total accounting account + + +Ventilate=Bind +LineId=Id line +Processing=Processing +EndProcessing=Process terminated. +SelectedLines=Selected lines +Lineofinvoice=Line of invoice +LineOfExpenseReport=Line of expense report +NoAccountSelected=No accounting account selected +VentilatedinAccount=Binded successfully to the accounting account +NotVentilatedinAccount=Not bound to the accounting account +XLineSuccessfullyBinded=%s products/services successfully bound to an accounting account +XLineFailedToBeBinded=%s products/services were not bound to any accounting account + +ACCOUNTING_LIMIT_LIST_VENTILATION=Maximum number of lines on list and bind page (recommended: 50) +ACCOUNTING_LIST_SORT_VENTILATION_TODO=Begin the sorting of the page "Binding to do" by the most recent elements +ACCOUNTING_LIST_SORT_VENTILATION_DONE=Begin the sorting of the page "Binding done" by the most recent elements + +ACCOUNTING_LENGTH_DESCRIPTION=Truncate product & services description in listings after x chars (Best = 50) +ACCOUNTING_LENGTH_DESCRIPTION_ACCOUNT=Truncate product & services account description form in listings after x chars (Best = 50) +ACCOUNTING_LENGTH_GACCOUNT=Length of the general accounting accounts (If you set value to 6 here, the account '706' will appear like '706000' on screen) +ACCOUNTING_LENGTH_AACCOUNT=Length of the third-party accounting accounts (If you set value to 6 here, the account '401' will appear like '401000' on screen) +ACCOUNTING_MANAGE_ZERO=Allow to manage different number of zeros at the end of an accounting account. Needed by some countries (like Switzerland). If set to off (default), you can set the following two parameters to ask the application to add virtual zeros. +BANK_DISABLE_DIRECT_INPUT=Disable direct recording of transaction in bank account +ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL=Enable draft export on journal +ACCOUNTANCY_COMBO_FOR_AUX=Enable combo list for subsidiary account (may be slow if you have a lot of third parties, break ability to search on a part of value) +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, what is the period selected by default + +ACCOUNTING_SELL_JOURNAL=Sell journal +ACCOUNTING_PURCHASE_JOURNAL=Purchase journal +ACCOUNTING_MISCELLANEOUS_JOURNAL=Miscellaneous journal +ACCOUNTING_EXPENSEREPORT_JOURNAL=Expense report journal +ACCOUNTING_SOCIAL_JOURNAL=Social journal +ACCOUNTING_HAS_NEW_JOURNAL=Has new Journal + +ACCOUNTING_RESULT_PROFIT=Result accounting account (Profit) +ACCOUNTING_RESULT_LOSS=Result accounting account (Loss) +ACCOUNTING_CLOSURE_DEFAULT_JOURNAL=Journal of closure + +ACCOUNTING_ACCOUNT_TRANSFER_CASH=Accounting account of transitional bank transfer +TransitionalAccount=Transitional bank transfer account + +ACCOUNTING_ACCOUNT_SUSPENSE=Accounting account of wait +DONATION_ACCOUNTINGACCOUNT=Accounting account to register donations +ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=Accounting account to register subscriptions + +ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=Accounting account by default to register customer deposit +UseAuxiliaryAccountOnCustomerDeposit=Store customer account as individual account in subsidiary ledger for lines of down payments (if disabled, individual account for down payment lines will remain empty) + +ACCOUNTING_PRODUCT_BUY_ACCOUNT=Accounting account by default for the bought products (used if not defined in the product sheet) +ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT=Accounting account by default for the bought products in EEC (used if not defined in the product sheet) +ACCOUNTING_PRODUCT_BUY_EXPORT_ACCOUNT=Accounting account by default for the bought products and imported out of EEC (used if not defined in the product sheet) +ACCOUNTING_PRODUCT_SOLD_ACCOUNT=Accounting account by default for the sold products (used if not defined in the product sheet) +ACCOUNTING_PRODUCT_SOLD_INTRA_ACCOUNT=Accounting account by default for the products sold in EEC (used if not defined in the product sheet) +ACCOUNTING_PRODUCT_SOLD_EXPORT_ACCOUNT=Accounting account by default for the products sold and exported out of EEC (used if not defined in the product sheet) + +ACCOUNTING_SERVICE_BUY_ACCOUNT=Accounting account by default for the bought services (used if not defined in the service sheet) +ACCOUNTING_SERVICE_BUY_INTRA_ACCOUNT=Accounting account by default for the bought services in EEC (used if not defined in the service sheet) +ACCOUNTING_SERVICE_BUY_EXPORT_ACCOUNT=Accounting account by default for the bought services and imported out of EEC (used if not defined in the service sheet) +ACCOUNTING_SERVICE_SOLD_ACCOUNT=Accounting account by default for the sold services (used if not defined in the service sheet) +ACCOUNTING_SERVICE_SOLD_INTRA_ACCOUNT=Accounting account by default for the services sold in EEC (used if not defined in the service sheet) +ACCOUNTING_SERVICE_SOLD_EXPORT_ACCOUNT=Accounting account by default for the services sold and exported out of EEC (used if not defined in the service sheet) + +Doctype=Type of document +Docdate=Date +Docref=Reference +LabelAccount=Label account +LabelOperation=Label operation +Sens=Direction +AccountingDirectionHelp=For an accounting account of a customer, use Credit to record a payment you have received
For an accounting account of a supplier, use Debit to record a payment you made +LetteringCode=Lettering code +Lettering=Lettering +Codejournal=Journal +JournalLabel=Journal label +NumPiece=Piece number +TransactionNumShort=Num. transaction +AccountingCategory=Custom group +GroupByAccountAccounting=Group by general ledger account +GroupBySubAccountAccounting=Group by subledger account +AccountingAccountGroupsDesc=You can define here some groups of accounting account. They will be used for personalized accounting reports. +ByAccounts=By accounts +ByPredefinedAccountGroups=By predefined groups +ByPersonalizedAccountGroups=By personalized groups +ByYear=By year +NotMatch=Not Set +DeleteMvt=Delete some lines from accounting +DelMonth=Month to delete +DelYear=Year to delete +DelJournal=Journal to delete +ConfirmDeleteMvt=This will delete all lines in accountancy 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 lines related to the same transaction will be deleted) +FinanceJournal=Finance journal +ExpenseReportsJournal=Expense reports journal +DescFinanceJournal=Finance journal including all the types of payments by bank account +DescJournalOnlyBindedVisible=This is a view of record that are bound to an accounting account and can be recorded into the Journals and Ledger. +VATAccountNotDefined=Account for VAT not defined +ThirdpartyAccountNotDefined=Account for third party not defined +ProductAccountNotDefined=Account for product not defined +FeeAccountNotDefined=Account for fee not defined +BankAccountNotDefined=Account for bank not defined +CustomerInvoicePayment=Payment of invoice customer +ThirdPartyAccount=Third-party account +NewAccountingMvt=New transaction +NumMvts=Numero of transaction +ListeMvts=List of movements +ErrorDebitCredit=Debit and Credit cannot have a value at the same time +AddCompteFromBK=Add accounting accounts to the group +ReportThirdParty=List third-party account +DescThirdPartyReport=Consult here the list of third-party customers and vendors and their accounting accounts +ListAccounts=List of the accounting accounts +UnknownAccountForThirdparty=Unknown third-party account. We will use %s +UnknownAccountForThirdpartyBlocking=Unknown third-party account. Blocking error +ThirdpartyAccountNotDefinedOrThirdPartyUnknown=Subledger account not defined or third party or user unknown. We will use %s +ThirdpartyAccountNotDefinedOrThirdPartyUnknownSubledgerIgnored=Third-party unknown and subledger not defined on the payment. We will keep the subledger account value empty. +ThirdpartyAccountNotDefinedOrThirdPartyUnknownBlocking=Subledger account not defined or third party or user unknown. Blocking error. +UnknownAccountForThirdpartyAndWaitingAccountNotDefinedBlocking=Unknown third-party account and waiting account not defined. Blocking error +PaymentsNotLinkedToProduct=Payment not linked to any product / service +OpeningBalance=Opening balance +ShowOpeningBalance=Show opening balance +HideOpeningBalance=Hide opening balance +ShowSubtotalByGroup=Show subtotal by level + +Pcgtype=Group of account +PcgtypeDesc=Group of account are used as predefined 'filter' and 'grouping' criteria for some accounting reports. For example, 'INCOME' or 'EXPENSE' are used as groups for accounting accounts of products to build the expense/income report. + +Reconcilable=Reconcilable + +TotalVente=Total turnover before tax +TotalMarge=Total sales margin + +DescVentilCustomer=Consult here the list of customer invoice lines bound (or not) to a product accounting account +DescVentilMore=In most cases, if you use predefined products or services and you set the account number on the product/service card, the application will be able to make all the binding between your invoice lines and the accounting account of your chart of accounts, just in one click with the button "%s". If account was not set on product/service cards or if you still have some lines not bound to an account, you will have to make a manual binding from the menu "%s". +DescVentilDoneCustomer=Consult here the list of the lines of invoices customers and their product accounting account +DescVentilTodoCustomer=Bind invoice lines not already bound with a product accounting account +ChangeAccount=Change the product/service accounting account for selected lines with the following accounting account: +Vide=- +DescVentilSupplier=Consult here the list of vendor invoice lines bound or not yet bound to a product accounting account (only record not already transfered in accountancy are visible) +DescVentilDoneSupplier=Consult here the list of the lines of vendor invoices and their accounting account +DescVentilTodoExpenseReport=Bind expense report lines not already bound with a fee accounting account +DescVentilExpenseReport=Consult here the list of expense report lines bound (or not) to a fee accounting account +DescVentilExpenseReportMore=If you setup accounting account on type of expense report lines, the application will be able to make all the binding between your expense report lines and the accounting account of your chart of accounts, just in one click with the button "%s". If account was not set on fees dictionary or if you still have some lines not bound to any account, you will have to make a manual binding from the menu "%s". +DescVentilDoneExpenseReport=Consult here the list of the lines of expenses reports and their fees accounting account + +Closure=Annual closure +DescClosure=Consult here the number of movements by month who are not yet validated & locked +OverviewOfMovementsNotValidated=Overview of movements not validated and locked +AllMovementsWereRecordedAsValidated=All movements were recorded as validated and locked +NotAllMovementsCouldBeRecordedAsValidated=Not all movements could be recorded as validated and locked +ValidateMovements=Validate and lock record... +DescValidateMovements=Any modification or deletion of writing, lettering and deletes will be prohibited. All entries for an exercise must be validated otherwise closing will not be possible + +ValidateHistory=Bind Automatically +AutomaticBindingDone=Automatic bindings done (%s) - Automatic binding not possible for some record (%s) + +ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used +MvtNotCorrectlyBalanced=Movement not correctly balanced. Debit = %s & Credit = %s +Balancing=Balancing +FicheVentilation=Binding card +GeneralLedgerIsWritten=Transactions are written in the Ledger +GeneralLedgerSomeRecordWasNotRecorded=Some of the transactions could not be journalized. If there is no other error message, this is probably because they were already journalized. +NoNewRecordSaved=No more record to transfer +ListOfProductsWithoutAccountingAccount=List of products not bound to any accounting account +ChangeBinding=Change the binding +Accounted=Accounted in ledger +NotYetAccounted=Not yet transferred to accounting +ShowTutorial=Show Tutorial +NotReconciled=Not reconciled +WarningRecordWithoutSubledgerAreExcluded=Warning, all lines without subledger account defined are filtered and excluded from this view +AccountRemovedFromCurrentChartOfAccount=Accounting account that does not exist in the current chart of accounts + +## Admin +BindingOptions=Binding options +ApplyMassCategories=Apply mass categories +AddAccountFromBookKeepingWithNoCategories=Available account not yet in the personalized group +CategoryDeleted=Category for the accounting account has been removed +AccountingJournals=Accounting journals +AccountingJournal=Accounting journal +NewAccountingJournal=New accounting journal +ShowAccountingJournal=Show accounting journal +NatureOfJournal=Nature of Journal +AccountingJournalType1=Miscellaneous operations +AccountingJournalType2=Sales +AccountingJournalType3=Purchases +AccountingJournalType4=Bank +AccountingJournalType5=Expenses report +AccountingJournalType8=Inventory +AccountingJournalType9=Has-new +ErrorAccountingJournalIsAlreadyUse=This journal is already use +AccountingAccountForSalesTaxAreDefinedInto=Note: Accounting account for Sales tax are defined into menu %s - %s +NumberOfAccountancyEntries=Number of entries +NumberOfAccountancyMovements=Number of movements +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) + +## Export +NotifiedExportDate=Flag exported lines as Exported (to modify a line, you will need to delete the whole transaction and re-transfert it into accounting) +NotifiedValidationDate=Validate and Lock the exported entries (same effect than the "%s" feature, modification and deletion of the lines will DEFINITELY not be possible) +DateValidationAndLock=Date validation and lock +ConfirmExportFile=Confirmation of the generation of the accounting export file ? +ExportDraftJournal=Export draft journal +Modelcsv=Model of export +Selectmodelcsv=Select a model of export +Modelcsv_normal=Classic export +Modelcsv_CEGID=Export for CEGID Expert Comptabilité +Modelcsv_COALA=Export for Sage Coala +Modelcsv_bob50=Export for Sage BOB 50 +Modelcsv_ciel=Export for Sage50, Ciel Compta or Compta Evo. (Format XIMPORT) +Modelcsv_quadratus=Export for Quadratus QuadraCompta +Modelcsv_ebp=Export for EBP +Modelcsv_cogilog=Export for Cogilog +Modelcsv_agiris=Export for Agiris Isacompta +Modelcsv_LDCompta=Export for LD Compta (v9) (Test) +Modelcsv_LDCompta10=Export for LD Compta (v10 & higher) +Modelcsv_openconcerto=Export for OpenConcerto (Test) +Modelcsv_configurable=Export CSV Configurable +Modelcsv_FEC=Export FEC +Modelcsv_FEC2=Export FEC (With dates generation writing / document reversed) +Modelcsv_Sage50_Swiss=Export for Sage 50 Switzerland +Modelcsv_winfic=Export for Winfic - eWinfic - WinSis Compta +Modelcsv_Gestinumv3=Export for Gestinum (v3) +Modelcsv_Gestinumv5=Export for Gestinum (v5) +Modelcsv_charlemagne=Export for Aplim Charlemagne +ChartofaccountsId=Chart of accounts Id + +## Tools - Init accounting account on product / service +InitAccountancy=Init accountancy +InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accounting account defined for sales and purchases. +DefaultBindingDesc=This page can be used to set a default account to use to link transactions record about payment salaries, donation, taxes and vat when no specific accounting account were already set. +DefaultClosureDesc=This page can be used to set parameters used for accounting closures. +Options=Options +OptionModeProductSell=Mode sales +OptionModeProductSellIntra=Mode sales exported in EEC +OptionModeProductSellExport=Mode sales exported in other countries +OptionModeProductBuy=Mode purchases +OptionModeProductBuyIntra=Mode purchases imported in EEC +OptionModeProductBuyExport=Mode purchased imported from other countries +OptionModeProductSellDesc=Show all products with accounting account for sales. +OptionModeProductSellIntraDesc=Show all products with accounting account for sales in EEC. +OptionModeProductSellExportDesc=Show all products with accounting account for other foreign sales. +OptionModeProductBuyDesc=Show all products with accounting account for purchases. +OptionModeProductBuyIntraDesc=Show all products with accounting account for purchases in EEC. +OptionModeProductBuyExportDesc=Show all products with accounting account for other foreign purchases. +CleanFixHistory=Remove accounting code from lines that not exists into charts of account +CleanHistory=Reset all bindings for selected year +PredefinedGroups=Predefined groups +WithoutValidAccount=Without valid dedicated account +WithValidAccount=With valid dedicated account +ValueNotIntoChartOfAccount=This value of accounting account does not exist into chart of account +AccountRemovedFromGroup=Account removed from group +SaleLocal=Local sale +SaleExport=Export sale +SaleEEC=Sale in EEC +SaleEECWithVAT=Sale in EEC with a VAT not null, so we suppose this is NOT an intracommunautary sale and the suggested account is the standard product account. +SaleEECWithoutVATNumber=Sale in EEC with no VAT but the VAT ID of thirdparty is not defined. We fallback on the product account for standard sales. You can fix the VAT ID of thirdparty or the product account if needed. +ForbiddenTransactionAlreadyExported=Forbidden: The transaction has been validated and/or exported. +ForbiddenTransactionAlreadyValidated=Forbidden: The transaction has been validated. +## Dictionary +Range=Range of accounting account +Calculated=Calculated +Formula=Formula + +## Reconcile +Unlettering=Unreconcile +AccountancyNoLetteringModified=No reconcile modified +AccountancyOneLetteringModifiedSuccessfully=One reconcile successfully modified +AccountancyLetteringModifiedSuccessfully=%s reconcile successfully modified +AccountancyNoUnletteringModified=No unreconcile modified +AccountancyOneUnletteringModifiedSuccessfully=One unreconcile successfully modified +AccountancyUnletteringModifiedSuccessfully=%s unreconcile successfully modified + +## Confirm box +ConfirmMassUnlettering=Bulk Unreconcile confirmation +ConfirmMassUnletteringQuestion=Are you sure you want to Unreconcile the %s selected record(s)? +ConfirmMassDeleteBookkeepingWriting=Bulk Delete confirmation +ConfirmMassDeleteBookkeepingWritingQuestion=This will delete the transaction from the accounting (all lines related to the same transaction will be deleted) Are you sure you want to delete the %s selected record(s)? + +## Error +SomeMandatoryStepsOfSetupWereNotDone=Some mandatory steps of setup was not done, please complete them +ErrorNoAccountingCategoryForThisCountry=No accounting account group available for country %s (See Home - Setup - Dictionaries) +ErrorInvoiceContainsLinesNotYetBounded=You try to journalize some lines of the invoice %s, but some other lines are not yet bounded to accounting account. Journalization of all invoice lines for this invoice are refused. +ErrorInvoiceContainsLinesNotYetBoundedShort=Some lines on invoice are not bound to accounting account. +ExportNotSupported=The export format setuped is not supported into this page +BookeppingLineAlreayExists=Lines already existing into bookkeeping +NoJournalDefined=No journal defined +Binded=Lines bound +ToBind=Lines to bind +UseMenuToSetBindindManualy=Lines not yet bound, use menu %s to make the binding manually +SorryThisModuleIsNotCompatibleWithTheExperimentalFeatureOfSituationInvoices=Sorry this module is not compatible with the experimental feature of situation invoices +AccountancyErrorMismatchLetterCode=Mismatch in reconcile code +AccountancyErrorMismatchBalanceAmount=The balance (%s) is not equal to 0 +AccountancyErrorLetteringBookkeeping=Errors have occurred concerning the transactions: %s +ErrorAccountNumberAlreadyExists=The accounting number %s already exists + +## Import +ImportAccountingEntries=Accounting entries +ImportAccountingEntriesFECFormat=Accounting entries - FEC format +FECFormatJournalCode=Code journal (JournalCode) +FECFormatJournalLabel=Label journal (JournalLib) +FECFormatEntryNum=Piece number (EcritureNum) +FECFormatEntryDate=Piece date (EcritureDate) +FECFormatGeneralAccountNumber=General account number (CompteNum) +FECFormatGeneralAccountLabel=General account label (CompteLib) +FECFormatSubledgerAccountNumber=Subledger account number (CompAuxNum) +FECFormatSubledgerAccountLabel=Subledger account number (CompAuxLib) +FECFormatPieceRef=Piece ref (PieceRef) +FECFormatPieceDate=Piece date creation (PieceDate) +FECFormatLabelOperation=Label operation (EcritureLib) +FECFormatDebit=Debit (Debit) +FECFormatCredit=Credit (Credit) +FECFormatReconcilableCode=Reconcilable code (EcritureLet) +FECFormatReconcilableDate=Reconcilable date (DateLet) +FECFormatValidateDate=Piece date validated (ValidDate) +FECFormatMulticurrencyAmount=Multicurrency amount (Montantdevise) +FECFormatMulticurrencyCode=Multicurrency code (Idevise) + +DateExport=Date export +WarningReportNotReliable=Warning, this report is not based on the Ledger, so does not contains transaction modified manually in the Ledger. If your journalization is up to date, the bookkeeping view is more accurate. +ExpenseReportJournal=Expense Report Journal +InventoryJournal=Inventory Journal + +NAccounts=%s accounts diff --git a/htdocs/langs/ms_MY/admin.lang b/htdocs/langs/ms_MY/admin.lang new file mode 100644 index 00000000000..0b178806c88 --- /dev/null +++ b/htdocs/langs/ms_MY/admin.lang @@ -0,0 +1,2288 @@ +# Dolibarr language file - Source file is en_US - admin +BoldRefAndPeriodOnPDF=Print reference and period of product item in PDF +BoldLabelOnPDF=Print label of product item in Bold in PDF +Foundation=Foundation +Version=Version +Publisher=Publisher +VersionProgram=Version program +VersionLastInstall=Initial install version +VersionLastUpgrade=Latest version upgrade +VersionExperimental=Experimental +VersionDevelopment=Development +VersionUnknown=Unknown +VersionRecommanded=Recommended +FileCheck=Fileset Integrity Checks +FileCheckDesc=This tool allows you to check the integrity of files and the setup of your application, comparing each file with the official one. The value of some setup constants may also be checked. You can use this tool to determine if any files have been modified (e.g by a hacker). +FileIntegrityIsStrictlyConformedWithReference=Files integrity is strictly conformed with the reference. +FileIntegrityIsOkButFilesWereAdded=Files integrity check has passed, however some new files have been added. +FileIntegritySomeFilesWereRemovedOrModified=Files integrity check has failed. Some files were modified, removed or added. +GlobalChecksum=Global checksum +MakeIntegrityAnalysisFrom=Make integrity analysis of application files from +LocalSignature=Embedded local signature (less reliable) +RemoteSignature=Remote distant signature (more reliable) +FilesMissing=Missing Files +FilesUpdated=Updated Files +FilesModified=Modified Files +FilesAdded=Added Files +FileCheckDolibarr=Check integrity of application files +AvailableOnlyOnPackagedVersions=The local file for integrity checking is only available when the application is installed from an official package +XmlNotFound=Xml Integrity File of application not found +SessionId=Session ID +SessionSaveHandler=Handler to save sessions +SessionSavePath=Session save location +PurgeSessions=Purge of sessions +ConfirmPurgeSessions=Do you really want to purge all sessions? This will disconnect every user (except yourself). +NoSessionListWithThisHandler=Save session handler configured in your PHP does not allow listing all running sessions. +LockNewSessions=Lock new connections +ConfirmLockNewSessions=Are you sure you want to restrict any new Dolibarr connection to yourself? Only user %s will be able to connect after that. +UnlockNewSessions=Remove connection lock +YourSession=Your session +Sessions=Users Sessions +WebUserGroup=Web server user/group +PermissionsOnFiles=Permissions on files +PermissionsOnFilesInWebRoot=Permissions on files in web root directory +PermissionsOnFile=Permissions on file %s +NoSessionFound=Your PHP configuration seems to not allow listing of active sessions. The directory used to save sessions (%s) may be protected (for example by OS permissions or by PHP directive open_basedir). +DBStoringCharset=Database charset to store data +DBSortingCharset=Database charset to sort data +HostCharset=Host charset +ClientCharset=Client charset +ClientSortingCharset=Client collation +WarningModuleNotActive=Module %s must be enabled +WarningOnlyPermissionOfActivatedModules=Only permissions related to activated modules are shown here. You can activate other modules in the Home->Setup->Modules page. +DolibarrSetup=Dolibarr install or upgrade +InternalUser=Internal user +ExternalUser=External user +InternalUsers=Internal users +ExternalUsers=External users +UserInterface=User interface +GUISetup=Display +SetupArea=Setup +UploadNewTemplate=Upload new template(s) +FormToTestFileUploadForm=Form to test file upload (according to setup) +ModuleMustBeEnabled=The module/application %s must be enabled +ModuleIsEnabled=The module/application %s has been enabled +IfModuleEnabled=Note: yes is effective only if module %s is enabled +RemoveLock=Remove/rename file %s if it exists, to allow usage of the Update/Install tool. +RestoreLock=Restore file %s, with read permission only, to disable any further use of the Update/Install tool. +SecuritySetup=Security setup +PHPSetup=PHP setup +OSSetup=OS setup +SecurityFilesDesc=Define here options related to security about uploading files. +ErrorModuleRequirePHPVersion=Error, this module requires PHP version %s or higher +ErrorModuleRequireDolibarrVersion=Error, this module requires Dolibarr version %s or higher +ErrorDecimalLargerThanAreForbidden=Error, a precision higher than %s is not supported. +DictionarySetup=Dictionary setup +Dictionary=Dictionaries +ErrorReservedTypeSystemSystemAuto=Value 'system' and 'systemauto' for type is reserved. You can use 'user' as value to add your own record +ErrorCodeCantContainZero=Code can't contain value 0 +DisableJavascript=Disable JavaScript and Ajax functions +DisableJavascriptNote=Note: For test or debug purpose only. For optimization for blind person or text browsers, you may prefer to use the setup on the profile of user +UseSearchToSelectCompanyTooltip=Also if you have a large number of third parties (> 100 000), you can increase speed by setting constant COMPANY_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string. +UseSearchToSelectContactTooltip=Also if you have a large number of third parties (> 100 000), you can increase speed by setting constant CONTACT_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string. +DelaiedFullListToSelectCompany=Wait until a key is pressed before loading content of Third Parties combo list.
This may increase performance if you have a large number of third parties, but it is less convenient. +DelaiedFullListToSelectContact=Wait until a key is pressed before loading content of Contact combo list.
This may increase performance if you have a large number of contacts, but it is less convenient. +NumberOfKeyToSearch=Number of characters to trigger search: %s +NumberOfBytes=Number of Bytes +SearchString=Search string +NotAvailableWhenAjaxDisabled=Not available when Ajax disabled +AllowToSelectProjectFromOtherCompany=On document of a third party, can choose a project linked to another third party +TimesheetPreventAfterFollowingMonths=Prevent recording time spent after the following number of months +JavascriptDisabled=JavaScript disabled +UsePreviewTabs=Use preview tabs +ShowPreview=Show preview +ShowHideDetails=Show-Hide details +PreviewNotAvailable=Preview not available +ThemeCurrentlyActive=Theme currently active +MySQLTimeZone=TimeZone MySql (database) +TZHasNoEffect=Dates are stored and returned by database server as if they were kept as submitted string. The timezone has effect only when using the UNIX_TIMESTAMP function (that should not be used by Dolibarr, so database TZ should have no effect, even if changed after data was entered). +Space=Space +Table=Table +Fields=Fields +Index=Index +Mask=Mask +NextValue=Next value +NextValueForInvoices=Next value (invoices) +NextValueForCreditNotes=Next value (credit notes) +NextValueForDeposit=Next value (down payment) +NextValueForReplacements=Next value (replacements) +MustBeLowerThanPHPLimit=Note: your PHP configuration currently limits the maximum filesize for upload to %s %s, irrespective of the value of this parameter +NoMaxSizeByPHPLimit=Note: No limit is set in your PHP configuration +MaxSizeForUploadedFiles=Maximum size for uploaded files (0 to disallow any upload) +UseCaptchaCode=Use graphical code (CAPTCHA) on login page +AntiVirusCommand=Full path to antivirus command +AntiVirusCommandExample=Example for ClamAv Daemon (require clamav-daemon): /usr/bin/clamdscan
Example for ClamWin (very very slow): c:\\Progra~1\\ClamWin\\bin\\clamscan.exe +AntiVirusParam= More parameters on command line +AntiVirusParamExample=Example for ClamAv Daemon: --fdpass
Example for ClamWin: --database="C:\\Program Files (x86)\\ClamWin\\lib" +ComptaSetup=Accounting module setup +UserSetup=User management setup +MultiCurrencySetup=Multi-currency setup +MenuLimits=Limits and accuracy +MenuIdParent=Parent menu ID +DetailMenuIdParent=ID of parent menu (empty for a top menu) +ParentID=Parent ID +DetailPosition=Sort number to define menu position +AllMenus=All +NotConfigured=Module/Application not configured +Active=Active +SetupShort=Setup +OtherOptions=Other options +OtherSetup=Other Setup +CurrentValueSeparatorDecimal=Decimal separator +CurrentValueSeparatorThousand=Thousand separator +Destination=Destination +IdModule=Module ID +IdPermissions=Permissions ID +LanguageBrowserParameter=Parameter %s +LocalisationDolibarrParameters=Localization parameters +ClientHour=Client time (user) +OSTZ=Server OS Time Zone +PHPTZ=PHP server Time Zone +DaylingSavingTime=Daylight saving time +CurrentHour=PHP Time (server) +CurrentSessionTimeOut=Current session timeout +YouCanEditPHPTZ=To set a different PHP timezone (not required), you can try to add a .htaccess file with a line like this "SetEnv TZ Europe/Paris" +HoursOnThisPageAreOnServerTZ=Warning, in contrary of other screens, hours on this page are not in your local timezone, but of the timezone of the server. +Box=Widget +Boxes=Widgets +MaxNbOfLinesForBoxes=Max. number of lines for widgets +AllWidgetsWereEnabled=All available widgets are enabled +PositionByDefault=Default order +Position=Position +MenusDesc=Menu managers set content of the two menu bars (horizontal and vertical). +MenusEditorDesc=The menu editor allows you to define custom menu entries. Use it carefully to avoid instability and permanently unreachable menu entries.
Some modules add menu entries (in menu All mostly). If you remove some of these entries by mistake, you can restore them disabling and reenabling the module. +MenuForUsers=Menu for users +LangFile=.lang file +Language_en_US_es_MX_etc=Language (en_US, es_MX, ...) +System=System +SystemInfo=System information +SystemToolsArea=System tools area +SystemToolsAreaDesc=This area provides administration functions. Use the menu to choose the required feature. +Purge=Purge +PurgeAreaDesc=This page allows you to delete all files generated or stored by Dolibarr (temporary files or all files in %s directory). Using this feature is not normally necessary. It is provided as a workaround for users whose Dolibarr is hosted by a provider that does not offer permissions to delete files generated by the web server. +PurgeDeleteLogFile=Delete log files, including %s defined for Syslog module (no risk of losing data) +PurgeDeleteTemporaryFiles=Delete all log and temporary files (no risk of losing data). Parameter can be 'tempfilesold', 'logfiles' or both 'tempfilesold+logfiles'. 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 (no risk of losing data) +PurgeDeleteAllFilesInDocumentsDir=Delete all files in directory: %s.
This will delete all generated documents related to elements (third parties, invoices etc...), files uploaded into the ECM module, database backup dumps and temporary files. +PurgeRunNow=Purge now +PurgeNothingToDelete=No directory or files to delete. +PurgeNDirectoriesDeleted=%s files or directories deleted. +PurgeNDirectoriesFailed=Failed to delete %s files or directories. +PurgeAuditEvents=Purge all security events +ConfirmPurgeAuditEvents=Are you sure you want to purge all security events? All security logs will be deleted, no other data will be removed. +GenerateBackup=Generate backup +Backup=Backup +Restore=Restore +RunCommandSummary=Backup has been launched with the following command +BackupResult=Backup result +BackupFileSuccessfullyCreated=Backup file successfully generated +YouCanDownloadBackupFile=The generated file can now be downloaded +NoBackupFileAvailable=No backup files available. +ExportMethod=Export method +ImportMethod=Import method +ToBuildBackupFileClickHere=To build a backup file, click here. +ImportMySqlDesc=To import a MySQL backup file, you may use phpMyAdmin via your hosting or use the mysql command from the Command line.
For example: +ImportPostgreSqlDesc=To import a backup file, you must use pg_restore command from command line: +ImportMySqlCommand=%s %s < mybackupfile.sql +ImportPostgreSqlCommand=%s %s mybackupfile.sql +FileNameToGenerate=Filename for backup: +Compression=Compression +CommandsToDisableForeignKeysForImport=Command to disable foreign keys on import +CommandsToDisableForeignKeysForImportWarning=Mandatory if you want to be able to restore your sql dump later +ExportCompatibility=Compatibility of generated export file +ExportUseMySQLQuickParameter=Use the --quick parameter +ExportUseMySQLQuickParameterHelp=The '--quick' parameter helps limit RAM consumption for large tables. +MySqlExportParameters=MySQL export parameters +PostgreSqlExportParameters= PostgreSQL export parameters +UseTransactionnalMode=Use transactional mode +FullPathToMysqldumpCommand=Full path to mysqldump command +FullPathToPostgreSQLdumpCommand=Full path to pg_dump command +AddDropDatabase=Add DROP DATABASE command +AddDropTable=Add DROP TABLE command +ExportStructure=Structure +NameColumn=Name columns +ExtendedInsert=Extended INSERT +NoLockBeforeInsert=No lock commands around INSERT +DelayedInsert=Delayed insert +EncodeBinariesInHexa=Encode binary data in hexadecimal +IgnoreDuplicateRecords=Ignore errors of duplicate record (INSERT IGNORE) +AutoDetectLang=Autodetect (browser language) +FeatureDisabledInDemo=Feature disabled in demo +FeatureAvailableOnlyOnStable=Feature only available on official stable versions +BoxesDesc=Widgets are components showing some information that you can add to personalize some pages. You can choose between showing the widget or not by selecting target page and clicking 'Activate', or by clicking the trashcan to disable it. +OnlyActiveElementsAreShown=Only elements from enabled modules are shown. +ModulesDesc=The modules/applications determine which features are available in the software. Some modules require permissions to be granted to users after activating the module. Click the on/off button %s of each module to enable or disable a module/application. +ModulesDesc2=Click the wheel button %s to configure the module/application. +ModulesMarketPlaceDesc=You can find more modules to download on external websites on the Internet... +ModulesDeployDesc=If permissions on your file system allow it, you can use this tool to deploy an external module. The module will then be visible on the tab %s. +ModulesMarketPlaces=Find external app/modules +ModulesDevelopYourModule=Develop your own app/modules +ModulesDevelopDesc=You may also develop your own module or find a partner to develop one for you. +DOLISTOREdescriptionLong=Instead of switching on www.dolistore.com web site to find an external module, you can use this embedded tool that will perform the search on the external market place for you (may be slow, need an internet access)... +NewModule=New module +FreeModule=Free +CompatibleUpTo=Compatible with version %s +NotCompatible=This module does not seem compatible with your Dolibarr %s (Min %s - Max %s). +CompatibleAfterUpdate=This module requires an update to your Dolibarr %s (Min %s - Max %s). +SeeInMarkerPlace=See in Market place +SeeSetupOfModule=See setup of module %s +SetOptionTo=Set option %s to %s +Updated=Updated +AchatTelechargement=Buy / Download +GoModuleSetupArea=To deploy/install a new module, go to the Module setup area: %s. +DoliStoreDesc=DoliStore, the official market place for Dolibarr ERP/CRM external modules +DoliPartnersDesc=List of companies providing custom-developed modules or features.
Note: since Dolibarr is an open source application, anyone experienced in PHP programming should be able to develop a module. +WebSiteDesc=External websites for more add-on (non-core) modules... +DevelopYourModuleDesc=Some solutions to develop your own module... +URL=URL +RelativeURL=Relative URL +BoxesAvailable=Widgets available +BoxesActivated=Widgets activated +ActivateOn=Activate on +ActiveOn=Activated on +ActivatableOn=Activatable on +SourceFile=Source file +AvailableOnlyIfJavascriptAndAjaxNotDisabled=Available only if JavaScript is not disabled +Required=Required +UsedOnlyWithTypeOption=Used by some agenda option only +Security=Security +Passwords=Passwords +DoNotStoreClearPassword=Encrypt passwords stored in database (NOT as plain-text). It is strongly recommended to activate this option. +MainDbPasswordFileConfEncrypted=Encrypt database password stored in conf.php. It is strongly recommended to activate this option. +InstrucToEncodePass=To have password encoded into the conf.php file, replace the line
$dolibarr_main_db_pass="...";
by
$dolibarr_main_db_pass="crypted:%s"; +InstrucToClearPass=To have password decoded (clear) into the conf.php file, replace the line
$dolibarr_main_db_pass="crypted:...";
by
$dolibarr_main_db_pass="%s"; +ProtectAndEncryptPdfFiles=Protect generated PDF files. This is NOT recommended as it breaks bulk PDF generation. +ProtectAndEncryptPdfFilesDesc=Protection of a PDF document keeps it available to read and print with any PDF browser. However, editing and copying is not possible anymore. Note that using this feature makes building of a global merged PDFs not working. +Feature=Feature +DolibarrLicense=License +Developpers=Developers/contributors +OfficialWebSite=Dolibarr official web site +OfficialWebSiteLocal=Local web site (%s) +OfficialWiki=Dolibarr documentation / Wiki +OfficialDemo=Dolibarr online demo +OfficialMarketPlace=Official market place for external modules/addons +OfficialWebHostingService=Referenced web hosting services (Cloud hosting) +ReferencedPreferredPartners=Preferred Partners +OtherResources=Other resources +ExternalResources=External Resources +SocialNetworks=Social Networks +SocialNetworkId=Social Network ID +ForDocumentationSeeWiki=For user or developer documentation (Doc, FAQs...),
take a look at the Dolibarr Wiki:
%s +ForAnswersSeeForum=For any other questions/help, you can use the Dolibarr forum:
%s +HelpCenterDesc1=Here are some resources for getting help and support with Dolibarr. +HelpCenterDesc2=Some of these resources are only available in english. +CurrentMenuHandler=Current menu handler +MeasuringUnit=Measuring unit +LeftMargin=Left margin +TopMargin=Top margin +PaperSize=Paper type +Orientation=Orientation +SpaceX=Space X +SpaceY=Space Y +FontSize=Font size +Content=Content +ContentForLines=Content to display for each product or service (from variable __LINES__ of Content) +NoticePeriod=Notice period +NewByMonth=New by month +Emails=Emails +EMailsSetup=Emails setup +EMailsDesc=This page allows you to set parameters or options for email sending. +EmailSenderProfiles=Emails sender profiles +EMailsSenderProfileDesc=You can keep this section empty. If you enter some emails here, they will be added to the list of possible senders into the combobox when your write a new email. +MAIN_MAIL_SMTP_PORT=SMTP/SMTPS Port (default value in php.ini: %s) +MAIN_MAIL_SMTP_SERVER=SMTP/SMTPS Host (default value in php.ini: %s) +MAIN_MAIL_SMTP_PORT_NotAvailableOnLinuxLike=SMTP/SMTPS Port (Not defined into PHP on Unix-like systems) +MAIN_MAIL_SMTP_SERVER_NotAvailableOnLinuxLike=SMTP/SMTPS Host (Not defined into PHP on Unix-like systems) +MAIN_MAIL_EMAIL_FROM=Sender email for automatic emails (default value in php.ini: %s) +MAIN_MAIL_ERRORS_TO=Email used for error returns emails (fields 'Errors-To' in emails sent) +MAIN_MAIL_AUTOCOPY_TO= Copy (Bcc) all sent emails to +MAIN_DISABLE_ALL_MAILS=Disable all email sending (for test purposes or demos) +MAIN_MAIL_FORCE_SENDTO=Send all emails to (instead of real recipients, for test purposes) +MAIN_MAIL_ENABLED_USER_DEST_SELECT=Suggest emails of employees (if defined) into the list of predefined recipient when writing a new email +MAIN_MAIL_SENDMODE=Email sending method +MAIN_MAIL_SMTPS_ID=SMTP ID (if sending server requires authentication) +MAIN_MAIL_SMTPS_PW=SMTP Password (if sending server requires authentication) +MAIN_MAIL_EMAIL_TLS=Use TLS (SSL) encryption +MAIN_MAIL_EMAIL_STARTTLS=Use TLS (STARTTLS) encryption +MAIN_MAIL_EMAIL_SMTP_ALLOW_SELF_SIGNED=Authorise les certificats auto-signés +MAIN_MAIL_EMAIL_DKIM_ENABLED=Use DKIM to generate email signature +MAIN_MAIL_EMAIL_DKIM_DOMAIN=Email Domain for use with dkim +MAIN_MAIL_EMAIL_DKIM_SELECTOR=Name of dkim selector +MAIN_MAIL_EMAIL_DKIM_PRIVATE_KEY=Private key for dkim signing +MAIN_DISABLE_ALL_SMS=Disable all SMS sending (for test purposes or demos) +MAIN_SMS_SENDMODE=Method to use to send SMS +MAIN_MAIL_SMS_FROM=Default sender phone number for SMS sending +MAIN_MAIL_DEFAULT_FROMTYPE=Default sender email for manual sending (User email or Company email) +UserEmail=User email +CompanyEmail=Company Email +FeatureNotAvailableOnLinux=Feature not available on Unix like systems. Test your sendmail program locally. +FixOnTransifex=Fix the translation on the online translation platform of project +SubmitTranslation=If the translation for this language is not complete or you find errors, you can correct this by editing files in directory langs/%s and submit your change to www.transifex.com/dolibarr-association/dolibarr/ +SubmitTranslationENUS=If translation for this language is not complete or you find errors, you can correct this by editing files into directory langs/%s and submit modified files on dolibarr.org/forum or, if you are a developer, with a PR on github.com/Dolibarr/dolibarr +ModuleSetup=Module setup +ModulesSetup=Modules/Application setup +ModuleFamilyBase=System +ModuleFamilyCrm=Customer Relationship Management (CRM) +ModuleFamilySrm=Vendor Relationship Management (VRM) +ModuleFamilyProducts=Product Management (PM) +ModuleFamilyHr=Human Resource Management (HR) +ModuleFamilyProjects=Projects/Collaborative work +ModuleFamilyOther=Other +ModuleFamilyTechnic=Multi-modules tools +ModuleFamilyExperimental=Experimental modules +ModuleFamilyFinancial=Financial Modules (Accounting/Treasury) +ModuleFamilyECM=Electronic Content Management (ECM) +ModuleFamilyPortal=Websites and other frontal application +ModuleFamilyInterface=Interfaces with external systems +MenuHandlers=Menu handlers +MenuAdmin=Menu editor +DoNotUseInProduction=Do not use in production +ThisIsProcessToFollow=Upgrade procedure: +ThisIsAlternativeProcessToFollow=This is an alternative setup to process manually: +StepNb=Step %s +FindPackageFromWebSite=Find a package that provides the features you need (for example on the official web site %s). +DownloadPackageFromWebSite=Download package (for example from the official web site %s). +UnpackPackageInDolibarrRoot=Unpack/unzip the packaged files into your Dolibarr server directory: %s +UnpackPackageInModulesRoot=To deploy/install an external module, you must unpack/unzip the archive file into the server directory dedicated to external modules:
%s +SetupIsReadyForUse=Module deployment is finished. You must however enable and setup the module in your application by going to the page setup modules: %s. +NotExistsDirect=The alternative root directory is not defined to an existing directory.
+InfDirAlt=Since version 3, it is possible to define an alternative root directory. This allows you to store, into a dedicated directory, plug-ins and custom templates.
Just create a directory at the root of Dolibarr (eg: custom).
+InfDirExample=
Then declare it in the file conf.php
$dolibarr_main_url_root_alt='/custom'
$dolibarr_main_document_root_alt='/path/of/dolibarr/htdocs/custom'
If these lines are commented with "#", to enable them, just uncomment by removing the "#" character. +YouCanSubmitFile=You can upload the .zip file of module package from here: +CurrentVersion=Dolibarr current version +CallUpdatePage=Browse to the page that updates the database structure and data: %s. +LastStableVersion=Latest stable version +LastActivationDate=Latest activation date +LastActivationAuthor=Latest activation author +LastActivationIP=Latest activation IP +LastActivationVersion=Latest activation version +UpdateServerOffline=Update server offline +WithCounter=Manage a counter +GenericMaskCodes=You may enter any numbering mask. In this mask, the following tags can be used:
{000000} corresponds to a number which will be incremented on each %s. Enter as many zeros as the desired length of the counter. The counter will be completed by zeros from the left in order to have as many zeros as the mask.
{000000+000} same as the previous one but an offset corresponding to the number to the right of the + sign is applied starting on the first %s.
{000000@x} same as the previous one but the counter is reset to zero when month x is reached (x between 1 and 12, or 0 to use the early months of fiscal year defined in your configuration, or 99 to reset to zero every month). If this option is used and x is 2 or higher, then the sequence {yy}{mm} or {yyyy}{mm} is also required.
{dd} day (01 to 31).
{mm} month (01 to 12).
{yy}, {yyyy} or {y} year over 2, 4 or 1 numbers.
+GenericMaskCodes2={cccc} the client code on n characters
{cccc000} the client code on n characters is followed by a counter dedicated to the customer. This counter dedicated to customer is reset at same time as the global counter.
{tttt} The code of third party type on n characters (see menu Home - Setup - Dictionary - Types of third parties). If you add this tag, the counter will be different for each type of third party.
+GenericMaskCodes3=All other characters in the mask will remain intact.
Spaces are not allowed.
+GenericMaskCodes3EAN=All other characters in the mask will remain intact (except * or ? in 13th position in EAN13).
Spaces are not allowed.
In EAN13, the last character after the last } in 13th position should be * or ? . It will be replaced by the calculated key.
+GenericMaskCodes4a=Example on the 99th %s of the third party TheCompany, with date 2007-01-31:
+GenericMaskCodes4b=Example on third party created on 2007-03-01:
+GenericMaskCodes4c=Example on product created on 2007-03-01:
+GenericMaskCodes5=ABC{yy}{mm}-{000000} will give ABC0701-000099
{0000+100@1}-ZZZ/{dd}/XXX will give 0199-ZZZ/31/XXX
IN{yy}{mm}-{0000}-{t} will give IN0701-0099-A if the type of company is 'Responsable Inscripto' with code for type that is 'A_RI' +GenericNumRefModelDesc=Returns a customizable number according to a defined mask. +ServerAvailableOnIPOrPort=Server is available at address %s on port %s +ServerNotAvailableOnIPOrPort=Server is not available at address %s on port %s +DoTestServerAvailability=Test server connectivity +DoTestSend=Test sending +DoTestSendHTML=Test sending HTML +ErrorCantUseRazIfNoYearInMask=Error, can't use option @ to reset counter each year if sequence {yy} or {yyyy} is not in mask. +ErrorCantUseRazInStartedYearIfNoYearMonthInMask=Error, can't use option @ if sequence {yy}{mm} or {yyyy}{mm} is not in mask. +UMask=UMask parameter for new files on Unix/Linux/BSD/Mac file system. +UMaskExplanation=This parameter allow you to define permissions set by default on files created by Dolibarr on server (during upload for example).
It must be the octal value (for example, 0666 means read and write for everyone).
This parameter is useless on a Windows server. +SeeWikiForAllTeam=Take a look at the Wiki page for a list of contributors and their organization +UseACacheDelay= Delay for caching export response in seconds (0 or empty for no cache) +DisableLinkToHelpCenter=Hide the link "Need help or support" on the login page +DisableLinkToHelp=Hide the link to the online help "%s" +AddCRIfTooLong=There is no automatic text wrapping, text that is too long will not display on documents. Please add carriage returns in the text area if needed. +ConfirmPurge=Are you sure you want to execute this purge?
This will permanently delete all your data files with no way to restore them (ECM files, attached files...). +MinLength=Minimum length +LanguageFilesCachedIntoShmopSharedMemory=Files .lang loaded in shared memory +LanguageFile=Language file +ExamplesWithCurrentSetup=Examples with current configuration +ListOfDirectories=List of OpenDocument templates directories +ListOfDirectoriesForModelGenODT=List of directories containing templates files with OpenDocument format.

Put here full path of directories.
Add a carriage return between eah directory.
To add a directory of the GED module, add here DOL_DATA_ROOT/ecm/yourdirectoryname.

Files in those directories must end with .odt or .ods. +NumberOfModelFilesFound=Number of ODT/ODS template files found in these directories +ExampleOfDirectoriesForModelGen=Examples of syntax:
c:\\myapp\\mydocumentdir\\mysubdir
/home/myapp/mydocumentdir/mysubdir
DOL_DATA_ROOT/ecm/ecmdir +FollowingSubstitutionKeysCanBeUsed=
To know how to create your odt document templates, before storing them in those directories, read wiki documentation: +FullListOnOnlineDocumentation=http://wiki.dolibarr.org/index.php/Create_an_ODT_document_template +FirstnameNamePosition=Position of Name/Lastname +DescWeather=The following images will be shown on the dashboard when the number of late actions reach the following values: +KeyForWebServicesAccess=Key to use Web Services (parameter "dolibarrkey" in webservices) +TestSubmitForm=Input test form +ThisForceAlsoTheme=Using this menu manager will also use its own theme whatever the user choice. Also this menu manager specialized for smartphones does not work on all smartphone. Use another menu manager if you experience problems with yours. +ThemeDir=Skins directory +ConnectionTimeout=Connection timeout +ResponseTimeout=Response timeout +SmsTestMessage=Test message from __PHONEFROM__ to __PHONETO__ +ModuleMustBeEnabledFirst=Module %s must be enabled first if you need this feature. +SecurityToken=Key to secure URLs +NoSmsEngine=No SMS sender manager available. A SMS sender manager is not installed with the default distribution because they depend on an external vendor, but you can find some on %s +PDF=PDF +PDFDesc=Global options for PDF generation +PDFOtherDesc=PDF Option specific to some modules +PDFAddressForging=Rules for address section +HideAnyVATInformationOnPDF=Hide all information related to Sales Tax / VAT +PDFRulesForSalesTax=Rules for Sales Tax / VAT +PDFLocaltax=Rules for %s +HideLocalTaxOnPDF=Hide %s rate in column Sale Tax / VAT +HideDescOnPDF=Hide products description +HideRefOnPDF=Hide products ref. +HideDetailsOnPDF=Hide product lines details +PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position +Library=Library +UrlGenerationParameters=Parameters to secure URLs +SecurityTokenIsUnique=Use a unique securekey parameter for each URL +EnterRefToBuildUrl=Enter reference for object %s +GetSecuredUrl=Get calculated URL +ButtonHideUnauthorized=Hide unauthorized action buttons also for internal users (just greyed otherwise) +OldVATRates=Old VAT rate +NewVATRates=New VAT rate +PriceBaseTypeToChange=Modify on prices with base reference value defined on +MassConvert=Launch bulk conversion +PriceFormatInCurrentLanguage=Price Format In Current Language +String=String +String1Line=String (1 line) +TextLong=Long text +TextLongNLines=Long text (n lines) +HtmlText=Html text +Int=Integer +Float=Float +DateAndTime=Date and hour +Unique=Unique +Boolean=Boolean (one checkbox) +ExtrafieldPhone = Phone +ExtrafieldPrice = Price +ExtrafieldMail = Email +ExtrafieldUrl = Url +ExtrafieldSelect = Select list +ExtrafieldSelectList = Select from table +ExtrafieldSeparator=Separator (not a field) +ExtrafieldPassword=Password +ExtrafieldRadio=Radio buttons (one choice only) +ExtrafieldCheckBox=Checkboxes +ExtrafieldCheckBoxFromList=Checkboxes from table +ExtrafieldLink=Link to an object +ComputedFormula=Computed field +ComputedFormulaDesc=You can enter here a formula using other properties of object or any PHP coding to get a dynamic computed value. You can use any PHP compatible formulas including the "?" condition operator, and following global object: $db, $conf, $langs, $mysoc, $user, $object.
WARNING: Only some properties of $object may be available. If you need a properties not loaded, just fetch yourself the object into your formula like in the second example.
Using a computed field means you can't enter yourself any value from interface. Also, if there is a syntax error, the formula may return nothing.

Example of formula:
$object->id < 10 ? round($object->id / 2, 2): ($object->id + 2 * $user->id) * (int) substr($mysoc->zip, 1, 2)

Example to reload object
(($reloadedobj = new Societe($db)) && ($reloadedobj->fetchNoCompute($obj->id ? $obj->id: ($obj->rowid ? $obj->rowid: $object->id)) > 0)) ? $reloadedobj->array_options['options_extrafieldkey'] * $reloadedobj->capital / 5: '-1'

Other example of formula to force load of object and its parent object:
(($reloadedobj = new Task($db)) && ($reloadedobj->fetchNoCompute($object->id) > 0) && ($secondloadedobj = new Project($db)) && ($secondloadedobj->fetchNoCompute($reloadedobj->fk_project) > 0)) ? $secondloadedobj->ref: 'Parent project not found' +Computedpersistent=Store computed field +ComputedpersistentDesc=Computed extra fields will be stored in the database, however, the value will only be recalculated when the object of this field is changed. If the computed field depends on other objects or global data this value might be wrong!! +ExtrafieldParamHelpPassword=Leaving this field blank means this value will be stored without encryption (field must be only hidden with star on screen).
Set 'auto' to use the default encryption rule to save password into database (then value read will be the hash only, no way to retrieve original value) +ExtrafieldParamHelpselect=List of values must be lines with format key,value (where key can't be '0')

for example:
1,value1
2,value2
code3,value3
...

In order to have the list depending on another complementary attribute list:
1,value1|options_parent_list_code:parent_key
2,value2|options_parent_list_code:parent_key

In order to have the list depending on another list:
1,value1|parent_list_code:parent_key
2,value2|parent_list_code:parent_key +ExtrafieldParamHelpcheckbox=List of values must be lines with format key,value (where key can't be '0')

for example:
1,value1
2,value2
3,value3
... +ExtrafieldParamHelpradio=List of values must be lines with format key,value (where key can't be '0')

for example:
1,value1
2,value2
3,value3
... +ExtrafieldParamHelpsellist=List of values comes from a table
Syntax: table_name:label_field:id_field::filtersql
Example: c_typent:libelle:id::filtersql

- id_field is necessarly a primary int key
- filtersql is a SQL condition. It can be a simple test (eg active=1) to display only active value
You can also use $ID$ in filter which is the current id of current object
To use a SELECT into the filter use the keyword $SEL$ to bypass anti-injection protection.
if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)

In order to have the list depending on another complementary attribute list:
c_typent:libelle:id:options_parent_list_code|parent_column:filter

In order to have the list depending on another list:
c_typent:libelle:id:parent_list_code|parent_column:filter +ExtrafieldParamHelpchkbxlst=List of values comes from a table
Syntax: table_name:label_field:id_field::filtersql
Example: c_typent:libelle:id::filtersql

filter can be a simple test (eg active=1) to display only active value
You can also use $ID$ in filter witch is the current id of current object
To do a SELECT in filter use $SEL$
if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)

In order to have the list depending on another complementary attribute list:
c_typent:libelle:id:options_parent_list_code|parent_column:filter

In order to have the list depending on another list:
c_typent:libelle:id:parent_list_code|parent_column:filter +ExtrafieldParamHelplink=Parameters must be ObjectName:Classpath
Syntax: ObjectName:Classpath +ExtrafieldParamHelpSeparator=Keep empty for a simple separator
Set this to 1 for a collapsing separator (open by default for new session, then status is kept for each user session)
Set this to 2 for a collapsing separator (collapsed by default for new session, then status is kept fore each user session) +LibraryToBuildPDF=Library used for PDF generation +LocalTaxDesc=Some countries may apply two or three taxes on each invoice line. If this is the case, choose the type for the second and third tax and its rate. Possible type are:
1: local tax apply on products and services without vat (localtax is calculated on amount without tax)
2: local tax apply on products and services including vat (localtax is calculated on amount + main tax)
3: local tax apply on products without vat (localtax is calculated on amount without tax)
4: local tax apply on products including vat (localtax is calculated on amount + main vat)
5: local tax apply on services without vat (localtax is calculated on amount without tax)
6: local tax apply on services including vat (localtax is calculated on amount + tax) +SMS=SMS +LinkToTestClickToDial=Enter a phone number to call to show a link to test the ClickToDial url for user %s +RefreshPhoneLink=Refresh link +LinkToTest=Clickable link generated for user %s (click phone number to test) +KeepEmptyToUseDefault=Keep empty to use default value +KeepThisEmptyInMostCases=In most cases, you can keep this field empy. +DefaultLink=Default link +SetAsDefault=Set as default +ValueOverwrittenByUserSetup=Warning, this value may be overwritten by user specific setup (each user can set his own clicktodial url) +ExternalModule=External module +InstalledInto=Installed into directory %s +BarcodeInitForThirdparties=Mass barcode init for third-parties +BarcodeInitForProductsOrServices=Mass barcode init or reset for products or services +CurrentlyNWithoutBarCode=Currently, you have %s record on %s %s without barcode defined. +InitEmptyBarCode=Init value for next %s empty records +EraseAllCurrentBarCode=Erase all current barcode values +ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode values? +AllBarcodeReset=All barcode values have been removed +NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled in the Barcode module setup. +EnableFileCache=Enable file cache +ShowDetailsInPDFPageFoot=Add more details into footer, such as company address or manager names (in addition to professional ids, company capital and VAT number). +NoDetails=No additional details in footer +DisplayCompanyInfo=Display company address +DisplayCompanyManagers=Display manager names +DisplayCompanyInfoAndManagers=Display company address and manager names +EnableAndSetupModuleCron=If you want to have this recurring invoice generated automatically, module *%s* must be enabled and correctly setup. Otherwise, generation of invoices must be done manually from this template using the *Create* button. Note that even if you enabled automatic generation, you can still safely launch manual generation. Generation of duplicates for the same period is not possible. +ModuleCompanyCodeCustomerAquarium=%s followed by customer code for a customer accounting code +ModuleCompanyCodeSupplierAquarium=%s followed by vendor code for a vendor accounting code +ModuleCompanyCodePanicum=Return an empty accounting code. +ModuleCompanyCodeDigitaria=Returns a compound accounting code according to the name of the third party. The code consists of a prefix that can be defined in the first position followed by the number of characters defined in the third party code. +ModuleCompanyCodeCustomerDigitaria=%s followed by the truncated customer name by the number of characters: %s for the customer accounting code. +ModuleCompanyCodeSupplierDigitaria=%s followed by the truncated supplier name by the number of characters: %s for the supplier accounting code. +Use3StepsApproval=By default, Purchase Orders need to be created and approved by 2 different users (one step/user to create and one step/user to approve. Note that if user has both permission to create and approve, one step/user will be enough). You can ask with this option to introduce a third step/user approval, if amount is higher than a dedicated value (so 3 steps will be necessary: 1=validation, 2=first approval and 3=second approval if amount is enough).
Set this to empty if one approval (2 steps) is enough, set it to a very low value (0.1) if a second approval (3 steps) is always required. +UseDoubleApproval=Use a 3 steps approval when amount (without tax) is higher than... +WarningPHPMail=WARNING: The setup to send emails from the application is using the default generic setup. It is often better to setup outgoing emails to use the email server of your Email Service Provider instead of the default setup for several reasons: +WarningPHPMailA=- Using the server of the Email Service Provider increases the trustability of your email, so it increases the deliverablity without being flagged as SPAM +WarningPHPMailB=- Some Email Service Providers (like Yahoo) do not allow you to send an email from another server than their own server. Your current setup uses the server of the application to send email and not the server of your email provider, so some recipients (the one compatible with the restrictive DMARC protocol), will ask your email provider if they can accept your email and some email providers (like Yahoo) may respond "no" because the server is not theirs, so few of your sent Emails may not be accepted for delivery (be careful also of your email provider's sending quota). +WarningPHPMailC=- Using the SMTP server of your own Email Service Provider to send emails is also interesting so all emails sent from application will also be saved into your "Sent" directory of your mailbox. +WarningPHPMailD=Also, it is therefore recommended to change the sending method of e-mails to the value "SMTP". If you really want to keep the default "PHP" method to send emails, just ignore this warning, or remove it by setting the MAIN_HIDE_WARNING_TO_ENCOURAGE_SMTP_SETUP constant to 1 in Home - Setup - Other. +WarningPHPMail2=If your email SMTP provider need to restrict email client to some IP addresses (very rare), this is the IP address of the mail user agent (MUA) for your ERP CRM application: %s. +WarningPHPMailSPF=If the domain name in your sender email address is protected by a SPF record (ask your domain name registar), you must add the following IPs in the SPF record of the DNS of your domain: %s. +ActualMailSPFRecordFound=Actual SPF record found : %s +ClickToShowDescription=Click to show description +DependsOn=This module needs the module(s) +RequiredBy=This module is required by module(s) +TheKeyIsTheNameOfHtmlField=This is the name of the HTML field. Technical knowledge is required to read the content of the HTML page to get the key name of a field. +PageUrlForDefaultValues=You must enter the relative path of the page URL. If you include parameters in URL, the default values will be effective if all parameters are set to same value. +PageUrlForDefaultValuesCreate=
Example:
For the form to create a new third party, it is %s.
For URL of external modules installed into custom directory, do not include the "custom/", so use path like mymodule/mypage.php and not custom/mymodule/mypage.php.
If you want default value only if url has some parameter, you can use %s +PageUrlForDefaultValuesList=
Example:
For the page that lists third parties, it is %s.
For URL of external modules installed into custom directory, do not include the "custom/" so use a path like mymodule/mypagelist.php and not custom/mymodule/mypagelist.php.
If you want default value only if url has some parameter, you can use %s +AlsoDefaultValuesAreEffectiveForActionCreate=Also note that overwritting default values for form creation works only for pages that were correctly designed (so with parameter action=create or presend...) +EnableDefaultValues=Enable customization of default values +EnableOverwriteTranslation=Enable usage of overwritten translation +GoIntoTranslationMenuToChangeThis=A translation has been found for the key with this code. To change this value, you must edit it from Home-Setup-translation. +WarningSettingSortOrder=Warning, setting a default sort order may result in a technical error when going on the list page if field is an unknown field. If you experience such an error, come back to this page to remove the default sort order and restore default behavior. +Field=Field +ProductDocumentTemplates=Document templates to generate product document +FreeLegalTextOnExpenseReports=Free legal text on expense reports +WatermarkOnDraftExpenseReports=Watermark on draft expense reports +ProjectIsRequiredOnExpenseReports=The project is mandatory for entering an expense report +PrefillExpenseReportDatesWithCurrentMonth=Pre-fill start and end dates of new expense report with start and end dates of the current month +ForceExpenseReportsLineAmountsIncludingTaxesOnly=Force the entry of expense report amounts always in amount with taxes +AttachMainDocByDefault=Set this to 1 if you want to attach main document to email by default (if applicable) +FilesAttachedToEmail=Attach file +SendEmailsReminders=Send agenda reminders by emails +davDescription=Setup a WebDAV server +DAVSetup=Setup of module DAV +DAV_ALLOW_PRIVATE_DIR=Enable the generic private directory (WebDAV dedicated directory named "private" - login required) +DAV_ALLOW_PRIVATE_DIRTooltip=The generic private directory is a WebDAV directory anybody can access with its application login/pass. +DAV_ALLOW_PUBLIC_DIR=Enable the generic public directory (WebDAV dedicated directory named "public" - no login required) +DAV_ALLOW_PUBLIC_DIRTooltip=The generic public directory is a WebDAV directory anybody can access (in read and write mode), with no authorization required (login/password account). +DAV_ALLOW_ECM_DIR=Enable the DMS/ECM private directory (root directory of the DMS/ECM module - login required) +DAV_ALLOW_ECM_DIRTooltip=The root directory where all files are manually uploaded when using the DMS/ECM module. Similarly as access from the web interface, you will need a valid login/password with adecuate permissions to access it. +# Modules +Module0Name=Users & Groups +Module0Desc=Users / Employees and Groups management +Module1Name=Third Parties +Module1Desc=Companies and contacts management (customers, prospects...) +Module2Name=Commercial +Module2Desc=Commercial management +Module10Name=Accounting (simplified) +Module10Desc=Simple accounting reports (journals, turnover) based on database content. Does not use any ledger table. +Module20Name=Proposals +Module20Desc=Commercial proposal management +Module22Name=Mass Emailings +Module22Desc=Manage bulk emailing +Module23Name=Energy +Module23Desc=Monitoring the consumption of energies +Module25Name=Sales Orders +Module25Desc=Sales order management +Module30Name=Invoices +Module30Desc=Management of invoices and credit notes for customers. Management of invoices and credit notes for suppliers +Module40Name=Vendors +Module40Desc=Vendors and purchase management (purchase orders and billing of supplier invoices) +Module42Name=Debug Logs +Module42Desc=Logging facilities (file, syslog, ...). Such logs are for technical/debug purposes. +Module43Name=Debug Bar +Module43Desc=A tool for developper adding a debug bar in your browser. +Module49Name=Editors +Module49Desc=Editor management +Module50Name=Products +Module50Desc=Management of Products +Module51Name=Mass mailings +Module51Desc=Mass paper mailing management +Module52Name=Stocks +Module52Desc=Stock management +Module53Name=Services +Module53Desc=Management of Services +Module54Name=Contracts/Subscriptions +Module54Desc=Management of contracts (services or recurring subscriptions) +Module55Name=Barcodes +Module55Desc=Barcode or QR code management +Module56Name=Payment by credit transfer +Module56Desc=Management of payment of suppliers by Credit Transfer orders. It includes generation of SEPA file for European countries. +Module57Name=Payments by Direct Debit +Module57Desc=Management of Direct Debit orders. It includes generation of SEPA file for European countries. +Module58Name=ClickToDial +Module58Desc=Integration of a ClickToDial system (Asterisk, ...) +Module60Name=Stickers +Module60Desc=Management of stickers +Module70Name=Interventions +Module70Desc=Intervention management +Module75Name=Expense and trip notes +Module75Desc=Expense and trip notes management +Module80Name=Shipments +Module80Desc=Shipments and delivery note management +Module85Name=Banks & Cash +Module85Desc=Management of bank or cash accounts +Module100Name=External Site +Module100Desc=Add a link to an external website as a main menu icon. Website is shown in a frame under the top menu. +Module105Name=Mailman and SPIP +Module105Desc=Mailman or SPIP interface for member module +Module200Name=LDAP +Module200Desc=LDAP directory synchronization +Module210Name=PostNuke +Module210Desc=PostNuke integration +Module240Name=Data exports +Module240Desc=Tool to export Dolibarr data (with assistance) +Module250Name=Data imports +Module250Desc=Tool to import data into Dolibarr (with assistance) +Module310Name=Members +Module310Desc=Foundation members management +Module320Name=RSS Feed +Module320Desc=Add a RSS feed to Dolibarr pages +Module330Name=Bookmarks & Shortcuts +Module330Desc=Create shortcuts, always accessible, to the internal or external pages to which you frequently access +Module400Name=Projects or Leads +Module400Desc=Management of projects, leads/opportunities and/or tasks. You can also assign any element (invoice, order, proposal, intervention, ...) to a project and get a transversal view from the project view. +Module410Name=Webcalendar +Module410Desc=Webcalendar integration +Module500Name=Taxes & Special Expenses +Module500Desc=Management of other expenses (sales taxes, social or fiscal taxes, dividends, ...) +Module510Name=Salaries +Module510Desc=Record and track employee payments +Module520Name=Loans +Module520Desc=Management of loans +Module600Name=Notifications on business event +Module600Desc=Send email notifications triggered by a business event: per user (setup defined on each user), per third-party contacts (setup defined on each third party) or by specific emails +Module600Long=Note that this module sends emails in real-time when a specific business event occurs. If you are looking for a feature to send email reminders for agenda events, go into the setup of module Agenda. +Module610Name=Product Variants +Module610Desc=Creation of product variants (color, size etc.) +Module700Name=Donations +Module700Desc=Donation management +Module770Name=Expense Reports +Module770Desc=Manage expense reports claims (transportation, meal, ...) +Module1120Name=Vendor Commercial Proposals +Module1120Desc=Request vendor commercial proposal and prices +Module1200Name=Mantis +Module1200Desc=Mantis integration +Module1520Name=Document Generation +Module1520Desc=Mass email document generation +Module1780Name=Tags/Categories +Module1780Desc=Create tags/category (products, customers, suppliers, contacts or members) +Module2000Name=WYSIWYG editor +Module2000Desc=Allow text fields to be edited/formatted using CKEditor (html) +Module2200Name=Dynamic Prices +Module2200Desc=Use maths expressions for auto-generation of prices +Module2300Name=Scheduled jobs +Module2300Desc=Scheduled jobs management (alias cron or chrono table) +Module2400Name=Events/Agenda +Module2400Desc=Track events. Log automatic events for tracking purposes or record manual events or meetings. This is the principal module for good Customer or Vendor Relationship Management. +Module2500Name=DMS / ECM +Module2500Desc=Document Management System / Electronic Content Management. Automatic organization of your generated or stored documents. Share them when you need. +Module2600Name=API/Web services (SOAP server) +Module2600Desc=Enable the Dolibarr SOAP server providing API services +Module2610Name=API/Web services (REST server) +Module2610Desc=Enable the Dolibarr REST server providing API services +Module2660Name=Call WebServices (SOAP client) +Module2660Desc=Enable the Dolibarr web services client (Can be used to push data/requests to external servers. Only Purchase orders are currently supported.) +Module2700Name=Gravatar +Module2700Desc=Use online Gravatar service (www.gravatar.com) to show photo of users/members (found with their emails). Needs Internet access +Module2800Desc=FTP Client +Module2900Name=GeoIPMaxmind +Module2900Desc=GeoIP Maxmind conversions capabilities +Module3200Name=Unalterable Archives +Module3200Desc=Enable an unalterable log of business events. Events are archived in real-time. The log is a read-only table of chained events that can be exported. This module may be mandatory for some countries. +Module3400Name=Social Networks +Module3400Desc=Enable Social Networks fields into third parties and addresses (skype, twitter, facebook, ...). +Module4000Name=HRM +Module4000Desc=Human resources management (management of department, employee contracts and feelings) +Module5000Name=Multi-company +Module5000Desc=Allows you to manage multiple companies +Module6000Name=Inter-modules Workflow +Module6000Desc=Workflow management between different modules (automatic creation of object and/or automatic status change) +Module10000Name=Websites +Module10000Desc=Create websites (public) with a WYSIWYG editor. This is a webmaster or developer oriented CMS (it is better to know HTML and CSS language). Just setup your web server (Apache, Nginx, ...) to point to the dedicated Dolibarr directory to have it online on the internet with your own domain name. +Module20000Name=Leave Request Management +Module20000Desc=Define and track employee leave requests +Module39000Name=Product Lots +Module39000Desc=Lots, serial numbers, eat-by/sell-by date management for products +Module40000Name=Multicurrency +Module40000Desc=Use alternative currencies in prices and documents +Module50000Name=PayBox +Module50000Desc=Offer customers a PayBox online payment page (credit/debit cards). This can be used to allow your customers to make ad-hoc payments or payments related to a specific Dolibarr object (invoice, order etc...) +Module50100Name=POS SimplePOS +Module50100Desc=Point of Sale module SimplePOS (simple POS). +Module50150Name=POS TakePOS +Module50150Desc=Point of Sale module TakePOS (touchscreen POS, for shops, bars or restaurants). +Module50200Name=Paypal +Module50200Desc=Offer customers a PayPal online payment page (PayPal account or credit/debit cards). This can be used to allow your customers to make ad-hoc payments or payments related to a specific Dolibarr object (invoice, order etc...) +Module50300Name=Stripe +Module50300Desc=Offer customers a Stripe online payment page (credit/debit cards). This can be used to allow your customers to make ad-hoc payments or payments related to a specific Dolibarr object (invoice, order etc...) +Module50400Name=Accounting (double entry) +Module50400Desc=Accounting management (double entries, support General and Subsidiary Ledgers). Export the ledger in several other accounting software formats. +Module54000Name=PrintIPP +Module54000Desc=Direct print (without opening the documents) using Cups IPP interface (Printer must be visible from server, and CUPS must be installed on server). +Module55000Name=Poll, Survey or Vote +Module55000Desc=Create online polls, surveys or votes (like Doodle, Studs, RDVz etc...) +Module59000Name=Margins +Module59000Desc=Module to follow margins +Module60000Name=Commissions +Module60000Desc=Module to manage commissions +Module62000Name=Incoterms +Module62000Desc=Add features to manage Incoterms +Module63000Name=Resources +Module63000Desc=Manage resources (printers, cars, rooms, ...) for allocating to events +Permission11=Read customer invoices +Permission12=Create/modify customer invoices +Permission13=Invalidate customer invoices +Permission14=Validate customer invoices +Permission15=Send customer invoices by email +Permission16=Create payments for customer invoices +Permission19=Delete customer invoices +Permission21=Read commercial proposals +Permission22=Create/modify commercial proposals +Permission24=Validate commercial proposals +Permission25=Send commercial proposals +Permission26=Close commercial proposals +Permission27=Delete commercial proposals +Permission28=Export commercial proposals +Permission31=Read products +Permission32=Create/modify products +Permission34=Delete products +Permission36=See/manage hidden products +Permission38=Export products +Permission39=Ignore minimum price +Permission41=Read projects and tasks (shared projects and projects of which I am a contact). +Permission42=Create/modify projects (shared projects and projects of which I am a contact). Can also assign users to projects and tasks +Permission44=Delete projects (shared projects and projects of which I am a contact) +Permission45=Export projects +Permission61=Read interventions +Permission62=Create/modify interventions +Permission64=Delete interventions +Permission67=Export interventions +Permission68=Send interventions by email +Permission69=Validate interventions +Permission70=Invalidate interventions +Permission71=Read members +Permission72=Create/modify members +Permission74=Delete members +Permission75=Setup types of membership +Permission76=Export data +Permission78=Read subscriptions +Permission79=Create/modify subscriptions +Permission81=Read customers orders +Permission82=Create/modify customers orders +Permission84=Validate customers orders +Permission86=Send customers orders +Permission87=Close customers orders +Permission88=Cancel customers orders +Permission89=Delete customers orders +Permission91=Read social or fiscal taxes and vat +Permission92=Create/modify social or fiscal taxes and vat +Permission93=Delete social or fiscal taxes and vat +Permission94=Export social or fiscal taxes +Permission95=Read reports +Permission101=Read sendings +Permission102=Create/modify sendings +Permission104=Validate sendings +Permission105=Send sendings by email +Permission106=Export sendings +Permission109=Delete sendings +Permission111=Read financial accounts +Permission112=Create/modify/delete and compare transactions +Permission113=Setup financial accounts (create, manage categories of bank transactions) +Permission114=Reconcile transactions +Permission115=Export transactions and account statements +Permission116=Transfers between accounts +Permission117=Manage checks dispatching +Permission121=Read third parties linked to user +Permission122=Create/modify third parties linked to user +Permission125=Delete third parties linked to user +Permission126=Export third parties +Permission130=Create/modify third parties payment information +Permission141=Read all projects and tasks (as well as the private projects for which I am not a contact) +Permission142=Create/modify all projects and tasks (as well as the private projects for which I am not a contact) +Permission144=Delete all projects and tasks (as well as the private projects I am not a contact) +Permission145=Can enter time consumed, for me or my hierarchy, on assigned tasks (Timesheet) +Permission146=Read providers +Permission147=Read stats +Permission151=Read direct debit payment orders +Permission152=Create/modify a direct debit payment orders +Permission153=Send/Transmit direct debit payment orders +Permission154=Record Credits/Rejections of direct debit payment orders +Permission161=Read contracts/subscriptions +Permission162=Create/modify contracts/subscriptions +Permission163=Activate a service/subscription of a contract +Permission164=Disable a service/subscription of a contract +Permission165=Delete contracts/subscriptions +Permission167=Export contracts +Permission171=Read trips and expenses (yours and your subordinates) +Permission172=Create/modify trips and expenses +Permission173=Delete trips and expenses +Permission174=Read all trips and expenses +Permission178=Export trips and expenses +Permission180=Read suppliers +Permission181=Read purchase orders +Permission182=Create/modify purchase orders +Permission183=Validate purchase orders +Permission184=Approve purchase orders +Permission185=Order or cancel purchase orders +Permission186=Receive purchase orders +Permission187=Close purchase orders +Permission188=Cancel purchase orders +Permission192=Create lines +Permission193=Cancel lines +Permission194=Read the bandwidth lines +Permission202=Create ADSL connections +Permission203=Order connections orders +Permission204=Order connections +Permission205=Manage connections +Permission206=Read connections +Permission211=Read Telephony +Permission212=Order lines +Permission213=Activate line +Permission214=Setup Telephony +Permission215=Setup providers +Permission221=Read emailings +Permission222=Create/modify emailings (topic, recipients...) +Permission223=Validate emailings (allows sending) +Permission229=Delete emailings +Permission237=View recipients and info +Permission238=Manually send mailings +Permission239=Delete mailings after validation or sent +Permission241=Read categories +Permission242=Create/modify categories +Permission243=Delete categories +Permission244=See the contents of the hidden categories +Permission251=Read other users and groups +PermissionAdvanced251=Read other users +Permission252=Read permissions of other users +Permission253=Create/modify other users, groups and permissions +PermissionAdvanced253=Create/modify internal/external users and permissions +Permission254=Create/modify external users only +Permission255=Modify other users password +Permission256=Delete or disable other users +Permission262=Extend access to all third parties AND their objects (not only third parties for which the user is a sale representative).
Not effective for external users (always limited to themselves for proposals, orders, invoices, contracts, etc.).
Not effective for projects (only rules on project permissions, visibility and assignment matters). +Permission263=Extend access to all third parties WITHOUT their objects (not only third parties for which the user is a sale representative).
Not effective for external users (always limited to themselves for proposals, orders, invoices, contracts, etc.).
Not effective for projects (only rules on project permissions, visibility and assignment matters). +Permission271=Read CA +Permission272=Read invoices +Permission273=Issue invoices +Permission281=Read contacts +Permission282=Create/modify contacts +Permission283=Delete contacts +Permission286=Export contacts +Permission291=Read tariffs +Permission292=Set permissions on the tariffs +Permission293=Modify customer's tariffs +Permission300=Read barcodes +Permission301=Create/modify barcodes +Permission302=Delete barcodes +Permission311=Read services +Permission312=Assign service/subscription to contract +Permission331=Read bookmarks +Permission332=Create/modify bookmarks +Permission333=Delete bookmarks +Permission341=Read its own permissions +Permission342=Create/modify his own user information +Permission343=Modify his own password +Permission344=Modify its own permissions +Permission351=Read groups +Permission352=Read groups permissions +Permission353=Create/modify groups +Permission354=Delete or disable groups +Permission358=Export users +Permission401=Read discounts +Permission402=Create/modify discounts +Permission403=Validate discounts +Permission404=Delete discounts +Permission430=Use Debug Bar +Permission511=Read salaries and payments (yours and subordinates) +Permission512=Create/modify salaries and payments +Permission514=Delete salaries and payments +Permission517=Read salaries and payments everybody +Permission519=Export salaries +Permission520=Read Loans +Permission522=Create/modify loans +Permission524=Delete loans +Permission525=Access loan calculator +Permission527=Export loans +Permission531=Read services +Permission532=Create/modify services +Permission534=Delete services +Permission536=See/manage hidden services +Permission538=Export services +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 +Permission601=Read stickers +Permission602=Create/modify stickers +Permission609=Delete stickers +Permission611=Read attributes of variants +Permission612=Create/Update attributes of variants +Permission613=Delete attributes of variants +Permission650=Read Bills of Materials +Permission651=Create/Update Bills of Materials +Permission652=Delete Bills of Materials +Permission660=Read Manufacturing Order (MO) +Permission661=Create/Update Manufacturing Order (MO) +Permission662=Delete Manufacturing Order (MO) +Permission701=Read donations +Permission702=Create/modify donations +Permission703=Delete donations +Permission771=Read expense reports (yours and your subordinates) +Permission772=Create/modify expense reports (for you and your subordinates) +Permission773=Delete expense reports +Permission775=Approve expense reports +Permission776=Pay expense reports +Permission777=Read all expense reports (even those of user not subordinates) +Permission778=Create/modify expense reports of everybody +Permission779=Export expense reports +Permission1001=Read stocks +Permission1002=Create/modify warehouses +Permission1003=Delete warehouses +Permission1004=Read stock movements +Permission1005=Create/modify stock movements +Permission1011=View inventories +Permission1012=Create new inventory +Permission1014=Validate inventory +Permission1015=Allow to change PMP value for a product +Permission1016=Delete inventory +Permission1101=Read delivery receipts +Permission1102=Create/modify delivery receipts +Permission1104=Validate delivery receipts +Permission1109=Delete delivery receipts +Permission1121=Read supplier proposals +Permission1122=Create/modify supplier proposals +Permission1123=Validate supplier proposals +Permission1124=Send supplier proposals +Permission1125=Delete supplier proposals +Permission1126=Close supplier price requests +Permission1181=Read suppliers +Permission1182=Read purchase orders +Permission1183=Create/modify purchase orders +Permission1184=Validate purchase orders +Permission1185=Approve purchase orders +Permission1186=Order purchase orders +Permission1187=Acknowledge receipt of purchase orders +Permission1188=Delete purchase orders +Permission1189=Check/Uncheck a purchase order reception +Permission1190=Approve (second approval) purchase orders +Permission1191=Export supplier orders and their attributes +Permission1201=Get result of an export +Permission1202=Create/Modify an export +Permission1231=Read vendor invoices +Permission1232=Create/modify vendor invoices +Permission1233=Validate vendor invoices +Permission1234=Delete vendor invoices +Permission1235=Send vendor invoices by email +Permission1236=Export vendor invoices, attributes and payments +Permission1237=Export purchase orders and their details +Permission1251=Run mass imports of external data into database (data load) +Permission1321=Export customer invoices, attributes and payments +Permission1322=Reopen a paid bill +Permission1421=Export sales orders and attributes +Permission1521=Read documents +Permission1522=Delete documents +Permission2401=Read actions (events or tasks) linked to his user account (if owner of event or just assigned to) +Permission2402=Create/modify actions (events or tasks) linked to his user account (if owner of event) +Permission2403=Delete actions (events or tasks) linked to his user account (if owner of event) +Permission2411=Read actions (events or tasks) of others +Permission2412=Create/modify actions (events or tasks) of others +Permission2413=Delete actions (events or tasks) of others +Permission2414=Export actions/tasks of others +Permission2501=Read/Download documents +Permission2502=Download documents +Permission2503=Submit or delete documents +Permission2515=Setup documents directories +Permission2801=Use FTP client in read mode (browse and download only) +Permission2802=Use FTP client in write mode (delete or upload files) +Permission3200=Read archived events and fingerprints +Permission3301=Generate new modules +Permission4001=Read skill/job/position +Permission4002=Create/modify skill/job/position +Permission4003=Delete skill/job/position +Permission4020=Read evaluations +Permission4021=Create/modify your evaluation +Permission4022=Validate evaluation +Permission4023=Delete evaluation +Permission4030=See comparison menu +Permission4031=Read personal information +Permission4032=Write personal information +Permission10001=Read website content +Permission10002=Create/modify website content (html and javascript content) +Permission10003=Create/modify website content (dynamic php code). Dangerous, must be reserved to restricted developers. +Permission10005=Delete website content +Permission20001=Read leave requests (your leave and those of your subordinates) +Permission20002=Create/modify your leave requests (your leave and those of your subordinates) +Permission20003=Delete leave requests +Permission20004=Read all leave requests (even those of user not subordinates) +Permission20005=Create/modify leave requests for everybody (even those of user not subordinates) +Permission20006=Administer leave requests (setup and update balance) +Permission20007=Approve leave requests +Permission23001=Read Scheduled job +Permission23002=Create/update Scheduled job +Permission23003=Delete Scheduled job +Permission23004=Execute Scheduled job +Permission50101=Use Point of Sale (SimplePOS) +Permission50151=Use Point of Sale (TakePOS) +Permission50152=Edit sales lines +Permission50153=Edit ordered sales lines +Permission50201=Read transactions +Permission50202=Import transactions +Permission50330=Read objects of Zapier +Permission50331=Create/Update objects of Zapier +Permission50332=Delete objects of Zapier +Permission50401=Bind products and invoices with accounting accounts +Permission50411=Read operations in ledger +Permission50412=Write/Edit operations in ledger +Permission50414=Delete operations in ledger +Permission50415=Delete all operations by year and journal in ledger +Permission50418=Export operations of the ledger +Permission50420=Report and export reports (turnover, balance, journals, ledger) +Permission50430=Define fiscal periods. Validate transactions and close fiscal periods. +Permission50440=Manage chart of accounts, setup of accountancy +Permission51001=Read assets +Permission51002=Create/Update assets +Permission51003=Delete assets +Permission51005=Setup types of asset +Permission54001=Print +Permission55001=Read polls +Permission55002=Create/modify polls +Permission59001=Read commercial margins +Permission59002=Define commercial margins +Permission59003=Read every user margin +Permission63001=Read resources +Permission63002=Create/modify resources +Permission63003=Delete resources +Permission63004=Link resources to agenda events +Permission64001=Allow direct printing +Permission67000=Allow printing of receipts +Permission68001=Read intracomm report +Permission68002=Create/modify intracomm report +Permission68004=Delete intracomm report +Permission941601=Read receipts +Permission941602=Create and modify receipts +Permission941603=Validate receipts +Permission941604=Send receipts by email +Permission941605=Export receipts +Permission941606=Delete receipts +DictionaryCompanyType=Third-party types +DictionaryCompanyJuridicalType=Third-party legal entities +DictionaryProspectLevel=Prospect potential level for companies +DictionaryProspectContactLevel=Prospect potential level for contacts +DictionaryCanton=States/Provinces +DictionaryRegion=Regions +DictionaryCountry=Countries +DictionaryCurrency=Currencies +DictionaryCivility=Honorific titles +DictionaryActions=Types of agenda events +DictionarySocialContributions=Types of social or fiscal taxes +DictionaryVAT=VAT Rates or Sales Tax Rates +DictionaryRevenueStamp=Amount of tax stamps +DictionaryPaymentConditions=Payment Terms +DictionaryPaymentModes=Payment Modes +DictionaryTypeContact=Contact/Address types +DictionaryTypeOfContainer=Website - Type of website pages/containers +DictionaryEcotaxe=Ecotax (WEEE) +DictionaryPaperFormat=Paper formats +DictionaryFormatCards=Card formats +DictionaryFees=Expense report - Types of expense report lines +DictionarySendingMethods=Shipping methods +DictionaryStaff=Number of Employees +DictionaryAvailability=Delivery delay +DictionaryOrderMethods=Order methods +DictionarySource=Origin of proposals/orders +DictionaryAccountancyCategory=Personalized groups for reports +DictionaryAccountancysystem=Models for chart of accounts +DictionaryAccountancyJournal=Accounting journals +DictionaryEMailTemplates=Email Templates +DictionaryUnits=Units +DictionaryMeasuringUnits=Measuring Units +DictionarySocialNetworks=Social Networks +DictionaryProspectStatus=Prospect status for companies +DictionaryProspectContactStatus=Prospect status for contacts +DictionaryHolidayTypes=Leave - Types of leave +DictionaryOpportunityStatus=Lead status for project/lead +DictionaryExpenseTaxCat=Expense report - Transportation categories +DictionaryExpenseTaxRange=Expense report - Range by transportation category +DictionaryTransportMode=Intracomm report - Transport mode +DictionaryBatchStatus=Product lot/serial Quality Control status +DictionaryAssetDisposalType=Type of disposal of assets +TypeOfUnit=Type of unit +SetupSaved=Setup saved +SetupNotSaved=Setup not saved +BackToModuleList=Back to Module list +BackToDictionaryList=Back to Dictionaries list +TypeOfRevenueStamp=Type of tax stamp +VATManagement=Sales Tax Management +VATIsUsedDesc=By default when creating prospects, invoices, orders etc. the Sales Tax rate follows the active standard rule:
If the seller is not subject to Sales tax, then Sales tax defaults to 0. End of rule.
If the (seller's country = buyer's country), then the Sales tax by default equals the Sales tax of the product in the seller's country. End of rule.
If the seller and buyer are both in the European Community and goods are transport-related products (haulage, shipping, airline), the default VAT is 0. This rule is dependant on the seller's country - please consult with your accountant. The VAT should be paid by the buyer to the customs office in their country and not to the seller. End of rule.
If the seller and buyer are both in the European Community and the buyer is not a company (with a registered intra-Community VAT number) then the VAT defaults to the VAT rate of the seller's country. End of rule.
If the seller and buyer are both in the European Community and the buyer is a company (with a registered intra-Community VAT number), then the VAT is 0 by default. End of rule.
In any other case the proposed default is Sales tax=0. End of rule. +VATIsNotUsedDesc=By default the proposed Sales tax is 0 which can be used for cases like associations, individuals or small companies. +VATIsUsedExampleFR=In France, it means companies or organizations having a real fiscal system (Simplified real or normal real). A system in which VAT is declared. +VATIsNotUsedExampleFR=In France, it means associations that are non Sales tax declared or companies, organizations or liberal professions that have chosen the micro enterprise fiscal system (Sales tax in franchise) and paid a franchise Sales tax without any Sales tax declaration. This choice will display the reference "Non applicable Sales tax - art-293B of CGI" on invoices. +##### Local Taxes ##### +TypeOfSaleTaxes=Type of sales tax +LTRate=Rate +LocalTax1IsNotUsed=Do not use second tax +LocalTax1IsUsedDesc=Use a second type of tax (other than first one) +LocalTax1IsNotUsedDesc=Do not use other type of tax (other than first one) +LocalTax1Management=Second type of tax +LocalTax1IsUsedExample= +LocalTax1IsNotUsedExample= +LocalTax2IsNotUsed=Do not use third tax +LocalTax2IsUsedDesc=Use a third type of tax (other than first one) +LocalTax2IsNotUsedDesc=Do not use other type of tax (other than first one) +LocalTax2Management=Third type of tax +LocalTax2IsUsedExample= +LocalTax2IsNotUsedExample= +LocalTax1ManagementES=RE Management +LocalTax1IsUsedDescES=The RE rate by default when creating prospects, invoices, orders etc. follow the active standard rule:
If the buyer is not subjected to RE, RE by default=0. End of rule.
If the buyer is subjected to RE then the RE by default. End of rule.
+LocalTax1IsNotUsedDescES=By default the proposed RE is 0. End of rule. +LocalTax1IsUsedExampleES=In Spain they are professionals subject to some specific sections of the Spanish IAE. +LocalTax1IsNotUsedExampleES=In Spain they are professional and societies and subject to certain sections of the Spanish IAE. +LocalTax2ManagementES=IRPF Management +LocalTax2IsUsedDescES=The IRPF rate by default when creating prospects, invoices, orders etc. follow the active standard rule:
If the seller is not subjected to IRPF, then IRPF by default=0. End of rule.
If the seller is subjected to IRPF then the IRPF by default. End of rule.
+LocalTax2IsNotUsedDescES=By default the proposed IRPF is 0. End of rule. +LocalTax2IsUsedExampleES=In Spain, freelancers and independent professionals who provide services and companies who have chosen the tax system of modules. +LocalTax2IsNotUsedExampleES=In Spain they are businesses not subject to tax system of modules. +RevenueStampDesc=The "tax stamp" or "revenue stamp" is a fixed tax you per invoice (It does not depend on amount of invoice). It can also be a percent tax but using the second or third type of tax is better for percent taxes as tax stamps does not provide any reporting. Only few countries uses this type of tax. +UseRevenueStamp=Use a tax stamp +UseRevenueStampExample=The value of tax stamp is defined by default into the setup of dictionaries (%s - %s - %s) +CalcLocaltax=Reports on local taxes +CalcLocaltax1=Sales - Purchases +CalcLocaltax1Desc=Local Taxes reports are calculated with the difference between localtaxes sales and localtaxes purchases +CalcLocaltax2=Purchases +CalcLocaltax2Desc=Local Taxes reports are the total of localtaxes purchases +CalcLocaltax3=Sales +CalcLocaltax3Desc=Local Taxes reports are the total of localtaxes sales +NoLocalTaxXForThisCountry=According to the setup of taxes (See %s - %s - %s), your country does not need to use such type of tax +LabelUsedByDefault=Label used by default if no translation can be found for code +LabelOnDocuments=Label on documents +LabelOrTranslationKey=Label or translation key +ValueOfConstantKey=Value of a configuration constant +ConstantIsOn=Option %s is on +NbOfDays=No. of days +AtEndOfMonth=At end of month +CurrentNext=Current/Next +Offset=Offset +AlwaysActive=Always active +Upgrade=Upgrade +MenuUpgrade=Upgrade / Extend +AddExtensionThemeModuleOrOther=Deploy/install external app/module +WebServer=Web server +DocumentRootServer=Web server's root directory +DataRootServer=Data files directory +IP=IP +Port=Port +VirtualServerName=Virtual server name +OS=OS +PhpWebLink=Web-Php link +Server=Server +Database=Database +DatabaseServer=Database host +DatabaseName=Database name +DatabasePort=Database port +DatabaseUser=Database user +DatabasePassword=Database password +Tables=Tables +TableName=Table name +NbOfRecord=No. of records +Host=Server +DriverType=Driver type +SummarySystem=System information summary +SummaryConst=List of all Dolibarr setup parameters +MenuCompanySetup=Company/Organization +DefaultMenuManager= Standard menu manager +DefaultMenuSmartphoneManager=Smartphone menu manager +Skin=Skin theme +DefaultSkin=Default skin theme +MaxSizeList=Max length for list +DefaultMaxSizeList=Default max length for lists +DefaultMaxSizeShortList=Default max length for short lists (i.e. in customer card) +MessageOfDay=Message of the day +MessageLogin=Login page message +LoginPage=Login page +BackgroundImageLogin=Background image +PermanentLeftSearchForm=Permanent search form on left menu +DefaultLanguage=Default language +EnableMultilangInterface=Enable multilanguage support for customer or vendor relationships +EnableShowLogo=Show the company logo in the menu +CompanyInfo=Company/Organization +CompanyIds=Company/Organization identities +CompanyName=Name +CompanyAddress=Address +CompanyZip=Zip +CompanyTown=Town +CompanyCountry=Country +CompanyCurrency=Main currency +CompanyObject=Object of the company +IDCountry=ID country +Logo=Logo +LogoDesc=Main logo of company. Will be used into generated documents (PDF, ...) +LogoSquarred=Logo (squarred) +LogoSquarredDesc=Must be a squarred icon (width = height). This logo will be used as the favorite icon or other need like for the top menu bar (if not disabled into display setup). +DoNotSuggestPaymentMode=Do not suggest +NoActiveBankAccountDefined=No active bank account defined +OwnerOfBankAccount=Owner of bank account %s +BankModuleNotActive=Bank accounts module not enabled +ShowBugTrackLink=Show the link "%s" +ShowBugTrackLinkDesc=Keep empty to not display this link, use value 'github' for the link to the Dolibarr project or define directly an url 'https://...' +Alerts=Alerts +DelaysOfToleranceBeforeWarning=Displaying a warning alert for... +DelaysOfToleranceDesc=Set the delay before an alert icon %s is shown onscreen for the late element. +Delays_MAIN_DELAY_ACTIONS_TODO=Planned events (agenda events) not completed +Delays_MAIN_DELAY_PROJECT_TO_CLOSE=Project not closed in time +Delays_MAIN_DELAY_TASKS_TODO=Planned task (project tasks) not completed +Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Order not processed +Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Purchase order not processed +Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Proposal not closed +Delays_MAIN_DELAY_PROPALS_TO_BILL=Proposal not billed +Delays_MAIN_DELAY_NOT_ACTIVATED_SERVICES=Service to activate +Delays_MAIN_DELAY_RUNNING_SERVICES=Expired service +Delays_MAIN_DELAY_SUPPLIER_BILLS_TO_PAY=Unpaid vendor invoice +Delays_MAIN_DELAY_CUSTOMER_BILLS_UNPAYED=Unpaid customer invoice +Delays_MAIN_DELAY_TRANSACTIONS_TO_CONCILIATE=Pending bank reconciliation +Delays_MAIN_DELAY_MEMBERS=Delayed membership fee +Delays_MAIN_DELAY_CHEQUES_TO_DEPOSIT=Check deposit not done +Delays_MAIN_DELAY_EXPENSEREPORTS=Expense report to approve +Delays_MAIN_DELAY_HOLIDAYS=Leave requests to approve +SetupDescription1=Before starting to use Dolibarr some initial parameters must be defined and modules enabled/configured. +SetupDescription2=The following two sections are mandatory (the two first entries in the Setup menu): +SetupDescription3=%s -> %s

Basic parameters used to customize the default behavior of your application (e.g for country-related features). +SetupDescription4=%s -> %s

This software is a suite of many modules/applications. The modules related to your needs must be enabled and configured. Menu entries will appears with the activation of these modules. +SetupDescription5=Other Setup menu entries manage optional parameters. +SetupDescriptionLink=%s - %s +SetupDescription3b=Basic parameters used to customize the default behavior of your application (e.g for country-related features). +SetupDescription4b=This software is a suite of many modules/applications. The modules related to your needs must be enabled and configured. Menu entries will appears with the activation of these modules. +AuditedSecurityEvents=Security events that are audited +NoSecurityEventsAreAduited=No security events are audited. You can enable them from menu %s +Audit=Security events +InfoDolibarr=About Dolibarr +InfoBrowser=About Browser +InfoOS=About OS +InfoWebServer=About Web Server +InfoDatabase=About Database +InfoPHP=About PHP +InfoPerf=About Performances +InfoSecurity=About Security +BrowserName=Browser name +BrowserOS=Browser OS +ListOfSecurityEvents=List of Dolibarr security events +SecurityEventsPurged=Security events purged +LogEventDesc=Enable logging for specific security events. Administrators the log via menu %s - %s. Warning, this feature can generate a large amount of data in the database. +AreaForAdminOnly=Setup parameters can be set by administrator users only. +SystemInfoDesc=System information is miscellaneous technical information you get in read only mode and visible for administrators only. +SystemAreaForAdminOnly=This area is available to administrator users only. Dolibarr user permissions cannot change this restriction. +CompanyFundationDesc=Edit the information of your company/organization. Click on "%s" button at the bottom of the page when done. +AccountantDesc=If you have an external accountant/bookkeeper, you can edit here its information. +AccountantFileNumber=Accountant code +DisplayDesc=Parameters affecting the look and presentation of the application can be modified here. +AvailableModules=Available app/modules +ToActivateModule=To activate modules, go on setup Area (Home->Setup->Modules). +SessionTimeOut=Time out for session +SessionExplanation=This number guarantees that the session will never expire before this delay, if the session cleaner is done by Internal PHP session cleaner (and nothing else). Internal PHP session cleaner does not guarantee that the session will expire after this delay. It will expire, after this delay, and when the session cleaner is run, so every %s/%s access, but only during access made by other sessions (if value is 0, it means clearing of session is done only by an external process).
Note: on some servers with an external session cleaning mechanism (cron under debian, ubuntu ...), the sessions can be destroyed after a period defined by an external setup, no matter what the value entered here is. +SessionsPurgedByExternalSystem=Sessions on this server seems to be cleaned by an external mechanism (cron under debian, ubuntu ...), probably every %s seconds (= value of parameter session.gc_maxlifetime), so changing the value here has no effect. You must ask the server administrator to change session delay. +TriggersAvailable=Available triggers +TriggersDesc=Triggers are files that will modify the behavior of Dolibarr workflow once copied into the directory htdocs/core/triggers. They realize new actions, activated on Dolibarr events (new company creation, invoice validation, ...). +TriggerDisabledByName=Triggers in this file are disabled by the -NORUN suffix in their name. +TriggerDisabledAsModuleDisabled=Triggers in this file are disabled as module %s is disabled. +TriggerAlwaysActive=Triggers in this file are always active, whatever are the activated Dolibarr modules. +TriggerActiveAsModuleActive=Triggers in this file are active as module %s is enabled. +GeneratedPasswordDesc=Choose the method to be used for auto-generated passwords. +DictionaryDesc=Insert all reference data. You can add your values to the default. +ConstDesc=This page allows you to edit (override) parameters not available in other pages. These are mostly reserved parameters for developers/advanced troubleshooting only. +MiscellaneousDesc=All other security related parameters are defined here. +LimitsSetup=Limits/Precision setup +LimitsDesc=You can define limits, precisions and optimizations used by Dolibarr here +MAIN_MAX_DECIMALS_UNIT=Max. decimals for unit prices +MAIN_MAX_DECIMALS_TOT=Max. decimals for total prices +MAIN_MAX_DECIMALS_SHOWN=Max. decimals for prices shown on screen. Add an ellipsis ... after this parameter (e.g. "2...") if you want to see "..." suffixed to the truncated price. +MAIN_ROUNDING_RULE_TOT=Step of rounding range (for countries where rounding is done on something other than base 10. For example, put 0.05 if rounding is done by 0.05 steps) +UnitPriceOfProduct=Net unit price of a product +TotalPriceAfterRounding=Total price (excl/vat/incl tax) after rounding +ParameterActiveForNextInputOnly=Parameter effective for next input only +NoEventOrNoAuditSetup=No security event has been logged. This is normal if Audit has not been enabled in the "Setup - Security - Events" page. +NoEventFoundWithCriteria=No security event has been found for this search criteria. +SeeLocalSendMailSetup=See your local sendmail setup +BackupDesc=A complete backup of a Dolibarr installation requires two steps. +BackupDesc2=Backup the contents of the "documents" directory (%s) containing all uploaded and generated files. This will also include all the dump files generated in Step 1. This operation may last several minutes. +BackupDesc3=Backup the structure and contents of your database (%s) into a dump file. For this, you can use the following assistant. +BackupDescX=The archived directory should be stored in a secure place. +BackupDescY=The generated dump file should be stored in a secure place. +BackupPHPWarning=Backup cannot be guaranteed with this method. Previous one recommended. +RestoreDesc=To restore a Dolibarr backup, two steps are required. +RestoreDesc2=Restore the backup file (zip file for example) of the "documents" directory to a new Dolibarr installation or into this current documents directory (%s). +RestoreDesc3=Restore the database structure and data from a backup dump file into the database of the new Dolibarr installation or into the database of this current installation (%s). Warning, once the restore is complete, you must use a login/password, that existed from the backup time/installation to connect again.
To restore a backup database into this current installation, you can follow this assistant. +RestoreMySQL=MySQL import +ForcedToByAModule=This rule is forced to %s by an activated module +ValueIsForcedBySystem=This value is forced by the system. You can't change it. +PreviousDumpFiles=Existing backup files +PreviousArchiveFiles=Existing archive files +WeekStartOnDay=First day of the week +RunningUpdateProcessMayBeRequired=Running the upgrade process seems to be required (Program version %s differs from Database version %s) +YouMustRunCommandFromCommandLineAfterLoginToUser=You must run this command from command line after login to a shell with user %s or you must add -W option at end of command line to provide %s password. +YourPHPDoesNotHaveSSLSupport=SSL functions not available in your PHP +DownloadMoreSkins=More skins to download +SimpleNumRefModelDesc=Returns the reference number in the format %syymm-nnnn where yy is the year, mm is the month and nnnn is a sequential auto-incrementing number with no reset +SimpleNumRefNoDateModelDesc=Returns the reference number in the format %s-nnnn where nnnn is a sequential auto-incrementing number with no reset +ShowProfIdInAddress=Show professional ID with addresses +ShowVATIntaInAddress=Hide intra-Community VAT number +TranslationUncomplete=Partial translation +MAIN_DISABLE_METEO=Disable weather thumb +MeteoStdMod=Standard mode +MeteoStdModEnabled=Standard mode enabled +MeteoPercentageMod=Percentage mode +MeteoPercentageModEnabled=Percentage mode enabled +MeteoUseMod=Click to use %s +TestLoginToAPI=Test login to API +ProxyDesc=Some features of Dolibarr require internet access. Define here the internet connection parameters such as access through a proxy server if necessary. +ExternalAccess=External/Internet Access +MAIN_PROXY_USE=Use a proxy server (otherwise access is direct to the internet) +MAIN_PROXY_HOST=Proxy server: Name/Address +MAIN_PROXY_PORT=Proxy server: Port +MAIN_PROXY_USER=Proxy server: Login/User +MAIN_PROXY_PASS=Proxy server: Password +DefineHereComplementaryAttributes=Define any additional / custom attributes that must be added to: %s +ExtraFields=Complementary attributes +ExtraFieldsLines=Complementary attributes (lines) +ExtraFieldsLinesRec=Complementary attributes (templates invoices lines) +ExtraFieldsSupplierOrdersLines=Complementary attributes (order lines) +ExtraFieldsSupplierInvoicesLines=Complementary attributes (invoice lines) +ExtraFieldsThirdParties=Complementary attributes (third party) +ExtraFieldsContacts=Complementary attributes (contacts/address) +ExtraFieldsMember=Complementary attributes (member) +ExtraFieldsMemberType=Complementary attributes (member type) +ExtraFieldsCustomerInvoices=Complementary attributes (invoices) +ExtraFieldsCustomerInvoicesRec=Complementary attributes (templates invoices) +ExtraFieldsSupplierOrders=Complementary attributes (orders) +ExtraFieldsSupplierInvoices=Complementary attributes (invoices) +ExtraFieldsProject=Complementary attributes (projects) +ExtraFieldsProjectTask=Complementary attributes (tasks) +ExtraFieldsSalaries=Complementary attributes (salaries) +ExtraFieldHasWrongValue=Attribute %s has a wrong value. +AlphaNumOnlyLowerCharsAndNoSpace=only alphanumericals and lower case characters without space +SendmailOptionNotComplete=Warning, on some Linux systems, to send email from your email, sendmail execution setup must contains option -ba (parameter mail.force_extra_parameters into your php.ini file). If some recipients never receive emails, try to edit this PHP parameter with mail.force_extra_parameters = -ba). +PathToDocuments=Path to documents +PathDirectory=Directory +SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might not be parsed correctly by some receiving mail servers. The result is that some mails can't be read by people hosted by those bugged platforms. This is the case for some Internet providers (Ex: Orange in France). This is not a problem with Dolibarr or PHP but with the receiving mail server. You can however add an option MAIN_FIX_FOR_BUGGED_MTA to 1 in Setup - Other to modify Dolibarr to avoid this. However, you may experience problems with other servers that strictly use the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" which has no disadvantages. +TranslationSetup=Setup of translation +TranslationKeySearch=Search a translation key or string +TranslationOverwriteKey=Overwrite a translation string +TranslationDesc=How to set the display language:
* Default/Systemwide: menu Home -> Setup -> Display
* Per user: Click on the username at the top of the screen and modify the User Display Setup tab on the user card. +TranslationOverwriteDesc=You can also override strings filling the following table. Choose your language from "%s" dropdown, insert the translation key string into "%s" and your new translation into "%s" +TranslationOverwriteDesc2=You can use the other tab to help you know which translation key to use +TranslationString=Translation string +CurrentTranslationString=Current translation string +WarningAtLeastKeyOrTranslationRequired=A search criteria is required at least for key or translation string +NewTranslationStringToShow=New translation string to show +OriginalValueWas=The original translation is overwritten. Original value was:

%s +TransKeyWithoutOriginalValue=You forced a new translation for the translation key '%s' that does not exist in any language files +TitleNumberOfActivatedModules=Activated modules +TotalNumberOfActivatedModules=Activated modules: %s / %s +YouMustEnableOneModule=You must at least enable 1 module +YouMustEnableTranslationOverwriteBefore=You must first enable translation overwriting to be allowed to replace a translation +ClassNotFoundIntoPathWarning=Class %s not found in PHP path +YesInSummer=Yes in summer +OnlyFollowingModulesAreOpenedToExternalUsers=Note, only the following modules are available to external users (irrespective of the permissions of such users) and only if permissions are granted:
+SuhosinSessionEncrypt=Session storage encrypted by Suhosin +ConditionIsCurrently=Condition is currently %s +YouUseBestDriver=You use driver %s which is the best driver currently available. +YouDoNotUseBestDriver=You use driver %s but driver %s is recommended. +NbOfObjectIsLowerThanNoPb=You have only %s %s in the database. This does not require any particular optimization. +ComboListOptim=Combo list loading optimization +SearchOptim=Search optimization +YouHaveXObjectUseComboOptim=You have %s %s in the database. You can go into setup of module to enable loading of combo list on key pressed event. +YouHaveXObjectUseSearchOptim=You have %s %s in the database. You can add the constant %s to 1 in Home-Setup-Other. +YouHaveXObjectUseSearchOptimDesc=This limits the search to the beginning of strings which makes it possible for the database to use indexes and you should get an immediate response. +YouHaveXObjectAndSearchOptimOn=You have %s %s in the database and constant %s is set to %s in Home-Setup-Other. +BrowserIsOK=You are using the %s web browser. This browser is ok for security and performance. +BrowserIsKO=You are using the %s web browser. This browser is known to be a bad choice for security, performance and reliability. We recommend using Firefox, Chrome, Opera or Safari. +PHPModuleLoaded=PHP component %s is loaded +PreloadOPCode=Preloaded OPCode is used +AddRefInList=Display Customer/Vendor ref. into combo lists.
Third Parties will appear with a name format of "CC12345 - SC45678 - The Big Company corp." instead of "The Big Company corp". +AddVatInList=Display Customer/Vendor VAT number into combo lists. +AddAdressInList=Display Customer/Vendor adress into combo lists.
Third Parties will appear with a name format of "The Big Company corp. - 21 jump street 123456 Big town - USA" instead of "The Big Company corp". +AddEmailPhoneTownInContactList=Display Contact email (or phones if not defined) and town info list (select list or combobox)
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". +AskForPreferredShippingMethod=Ask for preferred shipping method for Third Parties. +FieldEdition=Edition of field %s +FillThisOnlyIfRequired=Example: +2 (fill only if timezone offset problems are experienced) +GetBarCode=Get barcode +NumberingModules=Numbering models +DocumentModules=Document models +##### Module password generation +PasswordGenerationStandard=Return a password generated according to internal Dolibarr algorithm: %s characters containing shared numbers and characters in lowercase. +PasswordGenerationNone=Do not suggest a generated password. Password must be typed in manually. +PasswordGenerationPerso=Return a password according to your personally defined configuration. +SetupPerso=According to your configuration +PasswordPatternDesc=Password pattern description +##### Users setup ##### +RuleForGeneratedPasswords=Rules to generate and validate passwords +DisableForgetPasswordLinkOnLogonPage=Do not show the "Password Forgotten" link on the Login page +UsersSetup=Users module setup +UserMailRequired=Email required to create a new user +UserHideInactive=Hide inactive users from all combo lists of users (Not recommended: this may means you won't be able to filter or search on old users on some pages) +UsersDocModules=Document templates for documents generated from user record +GroupsDocModules=Document templates for documents generated from a group record +##### HRM setup ##### +HRMSetup=HRM module setup +##### Company setup ##### +CompanySetup=Companies module setup +CompanyCodeChecker=Options for automatic generation of customer/vendor codes +AccountCodeManager=Options for automatic generation of customer/vendor accounting codes +NotificationsDesc=Email notifications can be sent automatically for some Dolibarr events.
Recipients of notifications can be defined: +NotificationsDescUser=* per user, one user at a time. +NotificationsDescContact=* per third-party contacts (customers or vendors), one contact at a time. +NotificationsDescGlobal=* or by setting global email addresses in the setup page of the module. +ModelModules=Document Templates +DocumentModelOdt=Generate documents from OpenDocument templates (.ODT / .ODS files from LibreOffice, OpenOffice, KOffice, TextEdit,...) +WatermarkOnDraft=Watermark on draft document +JSOnPaimentBill=Activate feature to autofill payment lines on payment form +CompanyIdProfChecker=Rules for Professional IDs +MustBeUnique=Must be unique? +MustBeMandatory=Mandatory to create third parties (if VAT number or type of company defined) ? +MustBeInvoiceMandatory=Mandatory to validate invoices? +TechnicalServicesProvided=Technical services provided +#####DAV ##### +WebDAVSetupDesc=This is the link to access the WebDAV directory. It contains a "public" dir open to any user knowing the URL (if public directory access allowed) and a "private" directory that needs an existing login account/password for access. +WebDavServer=Root URL of %s server: %s +##### Webcal setup ##### +WebCalUrlForVCalExport=An export link to %s format is available at following link: %s +##### Invoices ##### +BillsSetup=Invoices module setup +BillsNumberingModule=Invoices and credit notes numbering model +BillsPDFModules=Invoice documents models +BillsPDFModulesAccordindToInvoiceType=Invoice documents models according to invoice type +PaymentsPDFModules=Payment documents models +ForceInvoiceDate=Force invoice date to validation date +SuggestedPaymentModesIfNotDefinedInInvoice=Suggested payments mode on invoice by default if not defined on the invoice +SuggestPaymentByRIBOnAccount=Suggest payment by withdrawal on account +SuggestPaymentByChequeToAddress=Suggest payment by check to +FreeLegalTextOnInvoices=Free text on invoices +WatermarkOnDraftInvoices=Watermark on draft invoices (none if empty) +PaymentsNumberingModule=Payments numbering model +SuppliersPayment=Vendor payments +SupplierPaymentSetup=Vendor payments setup +InvoiceCheckPosteriorDate=Check facture date before validation +InvoiceCheckPosteriorDateHelp=Validating an invoice will be forbidden if its date is anterior to the date of last invoice of same type. +##### Proposals ##### +PropalSetup=Commercial proposals module setup +ProposalsNumberingModules=Commercial proposal numbering models +ProposalsPDFModules=Commercial proposal documents models +SuggestedPaymentModesIfNotDefinedInProposal=Suggested payments mode on proposal by default if not defined on the proposal +FreeLegalTextOnProposal=Free text on commercial proposals +WatermarkOnDraftProposal=Watermark on draft commercial proposals (none if empty) +BANK_ASK_PAYMENT_BANK_DURING_PROPOSAL=Ask for bank account destination of proposal +##### SupplierProposal ##### +SupplierProposalSetup=Price requests suppliers module setup +SupplierProposalNumberingModules=Price requests suppliers numbering models +SupplierProposalPDFModules=Price requests suppliers documents models +FreeLegalTextOnSupplierProposal=Free text on price requests suppliers +WatermarkOnDraftSupplierProposal=Watermark on draft price requests suppliers (none if empty) +BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_PROPOSAL=Ask for bank account destination of price request +WAREHOUSE_ASK_WAREHOUSE_DURING_ORDER=Ask for Warehouse Source for order +##### Suppliers Orders ##### +BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_ORDER=Ask for bank account destination of purchase order +##### Orders ##### +SuggestedPaymentModesIfNotDefinedInOrder=Suggested payments mode on sales order by default if not defined on the order +OrdersSetup=Sales Orders management setup +OrdersNumberingModules=Orders numbering models +OrdersModelModule=Order documents models +FreeLegalTextOnOrders=Free text on orders +WatermarkOnDraftOrders=Watermark on draft orders (none if empty) +ShippableOrderIconInList=Add an icon in Orders list which indicate if order is shippable +BANK_ASK_PAYMENT_BANK_DURING_ORDER=Ask for bank account destination of order +##### Interventions ##### +InterventionsSetup=Interventions module setup +FreeLegalTextOnInterventions=Free text on intervention documents +FicheinterNumberingModules=Intervention numbering models +TemplatePDFInterventions=Intervention card documents models +WatermarkOnDraftInterventionCards=Watermark on intervention card documents (none if empty) +##### Contracts ##### +ContractsSetup=Contracts/Subscriptions module setup +ContractsNumberingModules=Contracts numbering modules +TemplatePDFContracts=Contracts documents models +FreeLegalTextOnContracts=Free text on contracts +WatermarkOnDraftContractCards=Watermark on draft contracts (none if empty) +##### Members ##### +MembersSetup=Members module setup +MemberMainOptions=Main options +AdherentLoginRequired= Manage a Login for each member +AdherentMailRequired=Email required to create a new member +MemberSendInformationByMailByDefault=Checkbox to send mail confirmation to members (validation or new subscription) is on by default +MemberCreateAnExternalUserForSubscriptionValidated=Create an external user login for each new member subscription validated +VisitorCanChooseItsPaymentMode=Visitor can choose from available payment modes +MEMBER_REMINDER_EMAIL=Enable automatic reminder by email of expired subscriptions. Note: Module %s must be enabled and correctly setup to send reminders. +MembersDocModules=Document templates for documents generated from member record +##### LDAP setup ##### +LDAPSetup=LDAP Setup +LDAPGlobalParameters=Global parameters +LDAPUsersSynchro=Users +LDAPGroupsSynchro=Groups +LDAPContactsSynchro=Contacts +LDAPMembersSynchro=Members +LDAPMembersTypesSynchro=Members types +LDAPSynchronization=LDAP synchronisation +LDAPFunctionsNotAvailableOnPHP=LDAP functions are not available on your PHP +LDAPToDolibarr=LDAP -> Dolibarr +DolibarrToLDAP=Dolibarr -> LDAP +LDAPNamingAttribute=Key in LDAP +LDAPSynchronizeUsers=Organization of users in LDAP +LDAPSynchronizeGroups=Organization of groups in LDAP +LDAPSynchronizeContacts=Organization of contacts in LDAP +LDAPSynchronizeMembers=Organization of foundation's members in LDAP +LDAPSynchronizeMembersTypes=Organization of foundation's members types in LDAP +LDAPPrimaryServer=Primary server +LDAPSecondaryServer=Secondary server +LDAPServerPort=Server port +LDAPServerPortExample=Standard or StartTLS: 389, LDAPs: 636 +LDAPServerProtocolVersion=Protocol version +LDAPServerUseTLS=Use TLS +LDAPServerUseTLSExample=Your LDAP server use StartTLS +LDAPServerDn=Server DN +LDAPAdminDn=Administrator DN +LDAPAdminDnExample=Complete DN (ex: cn=admin,dc=example,dc=com or cn=Administrator,cn=Users,dc=example,dc=com for active directory) +LDAPPassword=Administrator password +LDAPUserDn=Users' DN +LDAPUserDnExample=Complete DN (ex: ou=users,dc=example,dc=com) +LDAPGroupDn=Groups' DN +LDAPGroupDnExample=Complete DN (ex: ou=groups,dc=example,dc=com) +LDAPServerExample=Server address (ex: localhost, 192.168.0.2, ldaps://ldap.example.com/) +LDAPServerDnExample=Complete DN (ex: dc=example,dc=com) +LDAPDnSynchroActive=Users and groups synchronization +LDAPDnSynchroActiveExample=LDAP to Dolibarr or Dolibarr to LDAP synchronization +LDAPDnContactActive=Contacts' synchronization +LDAPDnContactActiveExample=Activated/Unactivated synchronization +LDAPDnMemberActive=Members' synchronization +LDAPDnMemberActiveExample=Activated/Unactivated synchronization +LDAPDnMemberTypeActive=Members types' synchronization +LDAPDnMemberTypeActiveExample=Activated/Unactivated synchronization +LDAPContactDn=Dolibarr contacts' DN +LDAPContactDnExample=Complete DN (ex: ou=contacts,dc=example,dc=com) +LDAPMemberDn=Dolibarr members DN +LDAPMemberDnExample=Complete DN (ex: ou=members,dc=example,dc=com) +LDAPMemberObjectClassList=List of objectClass +LDAPMemberObjectClassListExample=List of objectClass defining record attributes (ex: top,inetOrgPerson or top,user for active directory) +LDAPMemberTypeDn=Dolibarr members types DN +LDAPMemberTypepDnExample=Complete DN (ex: ou=memberstypes,dc=example,dc=com) +LDAPMemberTypeObjectClassList=List of objectClass +LDAPMemberTypeObjectClassListExample=List of objectClass defining record attributes (ex: top,groupOfUniqueNames) +LDAPUserObjectClassList=List of objectClass +LDAPUserObjectClassListExample=List of objectClass defining record attributes (ex: top,inetOrgPerson or top,user for active directory) +LDAPGroupObjectClassList=List of objectClass +LDAPGroupObjectClassListExample=List of objectClass defining record attributes (ex: top,groupOfUniqueNames) +LDAPContactObjectClassList=List of objectClass +LDAPContactObjectClassListExample=List of objectClass defining record attributes (ex: top,inetOrgPerson or top,user for active directory) +LDAPTestConnect=Test LDAP connection +LDAPTestSynchroContact=Test contacts synchronization +LDAPTestSynchroUser=Test user synchronization +LDAPTestSynchroGroup=Test group synchronization +LDAPTestSynchroMember=Test member synchronization +LDAPTestSynchroMemberType=Test member type synchronization +LDAPTestSearch= Test a LDAP search +LDAPSynchroOK=Synchronization test successful +LDAPSynchroKO=Failed synchronization test +LDAPSynchroKOMayBePermissions=Failed synchronization test. Check that the connection to the server is correctly configured and allows LDAP updates +LDAPTCPConnectOK=TCP connect to LDAP server successful (Server=%s, Port=%s) +LDAPTCPConnectKO=TCP connect to LDAP server failed (Server=%s, Port=%s) +LDAPBindOK=Connect/Authenticate to LDAP server successful (Server=%s, Port=%s, Admin=%s, Password=%s) +LDAPBindKO=Connect/Authenticate to LDAP server failed (Server=%s, Port=%s, Admin=%s, Password=%s) +LDAPSetupForVersion3=LDAP server configured for version 3 +LDAPSetupForVersion2=LDAP server configured for version 2 +LDAPDolibarrMapping=Dolibarr Mapping +LDAPLdapMapping=LDAP Mapping +LDAPFieldLoginUnix=Login (unix) +LDAPFieldLoginExample=Example: uid +LDAPFilterConnection=Search filter +LDAPFilterConnectionExample=Example: &(objectClass=inetOrgPerson) +LDAPGroupFilterExample=Example: &(objectClass=groupOfUsers) +LDAPFieldLoginSamba=Login (samba, activedirectory) +LDAPFieldLoginSambaExample=Example: samaccountname +LDAPFieldFullname=Full name +LDAPFieldFullnameExample=Example: cn +LDAPFieldPasswordNotCrypted=Password not encrypted +LDAPFieldPasswordCrypted=Password encrypted +LDAPFieldPasswordExample=Example: userPassword +LDAPFieldCommonNameExample=Example: cn +LDAPFieldName=Name +LDAPFieldNameExample=Example: sn +LDAPFieldFirstName=First name +LDAPFieldFirstNameExample=Example: givenName +LDAPFieldMail=Email address +LDAPFieldMailExample=Example: mail +LDAPFieldPhone=Professional phone number +LDAPFieldPhoneExample=Example: telephonenumber +LDAPFieldHomePhone=Personal phone number +LDAPFieldHomePhoneExample=Example: homephone +LDAPFieldMobile=Cellular phone +LDAPFieldMobileExample=Example: mobile +LDAPFieldFax=Fax number +LDAPFieldFaxExample=Example: facsimiletelephonenumber +LDAPFieldAddress=Street +LDAPFieldAddressExample=Example: street +LDAPFieldZip=Zip +LDAPFieldZipExample=Example: postalcode +LDAPFieldTown=Town +LDAPFieldTownExample=Example: l +LDAPFieldCountry=Country +LDAPFieldDescription=Description +LDAPFieldDescriptionExample=Example: description +LDAPFieldNotePublic=Public Note +LDAPFieldNotePublicExample=Example: publicnote +LDAPFieldGroupMembers= Group members +LDAPFieldGroupMembersExample= Example: uniqueMember +LDAPFieldBirthdate=Birthdate +LDAPFieldCompany=Company +LDAPFieldCompanyExample=Example: o +LDAPFieldSid=SID +LDAPFieldSidExample=Example: objectsid +LDAPFieldEndLastSubscription=Date of subscription end +LDAPFieldTitle=Job position +LDAPFieldTitleExample=Example: title +LDAPFieldGroupid=Group id +LDAPFieldGroupidExample=Exemple : gidnumber +LDAPFieldUserid=User id +LDAPFieldUseridExample=Exemple : uidnumber +LDAPFieldHomedirectory=Home directory +LDAPFieldHomedirectoryExample=Exemple : homedirectory +LDAPFieldHomedirectoryprefix=Home directory prefix +LDAPSetupNotComplete=LDAP setup not complete (go on others tabs) +LDAPNoUserOrPasswordProvidedAccessIsReadOnly=No administrator or password provided. LDAP access will be anonymous and in read only mode. +LDAPDescContact=This page allows you to define LDAP attributes name in LDAP tree for each data found on Dolibarr contacts. +LDAPDescUsers=This page allows you to define LDAP attributes name in LDAP tree for each data found on Dolibarr users. +LDAPDescGroups=This page allows you to define LDAP attributes name in LDAP tree for each data found on Dolibarr groups. +LDAPDescMembers=This page allows you to define LDAP attributes name in LDAP tree for each data found on Dolibarr members module. +LDAPDescMembersTypes=This page allows you to define LDAP attributes name in LDAP tree for each data found on Dolibarr members types. +LDAPDescValues=Example values are designed for OpenLDAP with following loaded schemas: core.schema, cosine.schema, inetorgperson.schema). If you use thoose values and OpenLDAP, modify your LDAP config file slapd.conf to have all thoose schemas loaded. +ForANonAnonymousAccess=For an authenticated access (for a write access for example) +PerfDolibarr=Performance setup/optimizing report +YouMayFindPerfAdviceHere=This page provides some checks or advice related to performance. +NotInstalled=Not installed. +NotSlowedDownByThis=Not slowed down by this. +NotRiskOfLeakWithThis=Not risk of leak with this. +ApplicativeCache=Applicative cache +MemcachedNotAvailable=No applicative cache found. You can enhance performance by installing a cache server Memcached and a module able to use this cache server.
More information here http://wiki.dolibarr.org/index.php/Module_MemCached_EN.
Note that a lot of web hosting provider does not provide such cache server. +MemcachedModuleAvailableButNotSetup=Module memcached for applicative cache found but setup of module is not complete. +MemcachedAvailableAndSetup=Module memcached dedicated to use memcached server is enabled. +OPCodeCache=OPCode cache +NoOPCodeCacheFound=No OPCode cache found. Maybe you are using an OPCode cache other than XCache or eAccelerator (good), or maybe you don't have OPCode cache (very bad). +HTTPCacheStaticResources=HTTP cache for static resources (css, img, javascript) +FilesOfTypeCached=Files of type %s are cached by HTTP server +FilesOfTypeNotCached=Files of type %s are not cached by HTTP server +FilesOfTypeCompressed=Files of type %s are compressed by HTTP server +FilesOfTypeNotCompressed=Files of type %s are not compressed by HTTP server +CacheByServer=Cache by server +CacheByServerDesc=For example using the Apache directive "ExpiresByType image/gif A2592000" +CacheByClient=Cache by browser +CompressionOfResources=Compression of HTTP responses +CompressionOfResourcesDesc=For example using the Apache directive "AddOutputFilterByType DEFLATE" +TestNotPossibleWithCurrentBrowsers=Such an automatic detection is not possible with current browsers +DefaultValuesDesc=Here you may define the default value you wish to use when creating a new record, and/or default filters or the sort order when you list records. +DefaultCreateForm=Default values (to use on forms) +DefaultSearchFilters=Default search filters +DefaultSortOrder=Default sort orders +DefaultFocus=Default focus fields +DefaultMandatory=Mandatory form fields +##### Products ##### +ProductSetup=Products module setup +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 lines of items (otherwise show description in a tooltip popup) +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 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 +SetDefaultBarcodeTypeThirdParties=Default barcode type to use for third parties +UseUnits=Define a unit of measure for Quantity during order, proposal or invoice lines edition +ProductCodeChecker= Module for product code generation and checking (product or service) +ProductOtherConf= Product / Service configuration +IsNotADir=is not a directory! +##### Syslog ##### +SyslogSetup=Logs module setup +SyslogOutput=Logs outputs +SyslogFacility=Facility +SyslogLevel=Level +SyslogFilename=File name and path +YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file. +ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant +OnlyWindowsLOG_USER=On Windows, only the LOG_USER facility will be supported +CompressSyslogs=Compression and backup of debug log files (generated by module Log for debug) +SyslogFileNumberOfSaves=Number of backup logs to keep +ConfigureCleaningCronjobToSetFrequencyOfSaves=Configure cleaning scheduled job to set log backup frequency +##### Donations ##### +DonationsSetup=Donation module setup +DonationsReceiptModel=Template of donation receipt +##### Barcode ##### +BarcodeSetup=Barcode setup +PaperFormatModule=Print format module +BarcodeEncodeModule=Barcode encoding type +CodeBarGenerator=Barcode generator +ChooseABarCode=No generator defined +FormatNotSupportedByGenerator=Format not supported by this generator +BarcodeDescEAN8=Barcode of type EAN8 +BarcodeDescEAN13=Barcode of type EAN13 +BarcodeDescUPC=Barcode of type UPC +BarcodeDescISBN=Barcode of type ISBN +BarcodeDescC39=Barcode of type C39 +BarcodeDescC128=Barcode of type C128 +BarcodeDescDATAMATRIX=Barcode of type Datamatrix +BarcodeDescQRCODE=Barcode of type QR code +GenbarcodeLocation=Bar code generation command line tool (used by internal engine for some bar code types). Must be compatible with "genbarcode".
For example: /usr/local/bin/genbarcode +BarcodeInternalEngine=Internal engine +BarCodeNumberManager=Manager to auto define barcode numbers +##### Prelevements ##### +WithdrawalsSetup=Setup of module Direct Debit payments +##### ExternalRSS ##### +ExternalRSSSetup=External RSS imports setup +NewRSS=New RSS Feed +RSSUrl=RSS URL +RSSUrlExample=An interesting RSS feed +##### Mailing ##### +MailingSetup=EMailing module setup +MailingEMailFrom=Sender email (From) for emails sent by emailing module +MailingEMailError=Return Email (Errors-to) for emails with errors +MailingDelay=Seconds to wait after sending next message +##### Notification ##### +NotificationSetup=Email Notification module setup +NotificationEMailFrom=Sender email (From) for emails sent by the Notifications module +FixedEmailTarget=Recipient +NotificationDisableConfirmMessageContact=Hide the list of recipients (subscribed as contact) of notifications into the confirmation message +NotificationDisableConfirmMessageUser=Hide the list of recipients (subscribed as user) of notifications into the confirmation message +NotificationDisableConfirmMessageFix=Hide the list of recipients (subscribed as global email) of notifications into the confirmation message +##### Sendings ##### +SendingsSetup=Shipping module setup +SendingsReceiptModel=Sending receipt model +SendingsNumberingModules=Sendings numbering modules +SendingsAbility=Support shipping sheets for customer deliveries +NoNeedForDeliveryReceipts=In most cases, shipping sheets are used both as sheets for customer deliveries (list of products to send) and sheets that are received and signed by customer. Hence the product deliveries receipt is a duplicated feature and is rarely activated. +FreeLegalTextOnShippings=Free text on shipments +##### Deliveries ##### +DeliveryOrderNumberingModules=Products deliveries receipt numbering module +DeliveryOrderModel=Products deliveries receipt model +DeliveriesOrderAbility=Support products deliveries receipts +FreeLegalTextOnDeliveryReceipts=Free text on delivery receipts +##### FCKeditor ##### +AdvancedEditor=Advanced editor +ActivateFCKeditor=Activate advanced editor for: +FCKeditorForNotePublic=WYSIWIG creation/edition of the field "public notes" of elements +FCKeditorForNotePrivate=WYSIWIG creation/edition of the field "private notes" of elements +FCKeditorForCompany=WYSIWIG creation/edition of the field description of elements (except products/services) +FCKeditorForProduct=WYSIWIG creation/edition of the field description of products/services +FCKeditorForProductDetails=WYSIWIG creation/edition of products details lines for all entities (proposals, orders, invoices, etc...). 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. +FCKeditorForMailing= WYSIWIG creation/edition for mass eMailings (Tools->eMailing) +FCKeditorForUserSignature=WYSIWIG creation/edition of user signature +FCKeditorForMail=WYSIWIG creation/edition for all mail (except Tools->eMailing) +FCKeditorForTicket=WYSIWIG creation/edition for tickets +##### Stock ##### +StockSetup=Stock module setup +IfYouUsePointOfSaleCheckModule=If you use the Point of Sale module (POS) provided by default or an external module, this setup may be ignored by your POS module. Most POS modules are designed by default to create an invoice immediately and decrease stock irrespective of the options here. So if you need or not to have a stock decrease when registering a sale from your POS, check also your POS module setup. +##### Menu ##### +MenuDeleted=Menu deleted +Menu=Menu +Menus=Menus +TreeMenuPersonalized=Personalized menus +NotTopTreeMenuPersonalized=Personalized menus not linked to a top menu entry +NewMenu=New menu +MenuHandler=Menu handler +MenuModule=Source module +HideUnauthorizedMenu=Hide unauthorized menus also for internal users (just greyed otherwise) +DetailId=Id menu +DetailMenuHandler=Menu handler where to show new menu +DetailMenuModule=Module name if menu entry come from a module +DetailType=Type of menu (top or left) +DetailTitre=Menu label or label code for translation +DetailUrl=URL where menu send you (Absolute URL link or external link with http://) +DetailEnabled=Condition to show or not entry +DetailRight=Condition to display unauthorized grey menus +DetailLangs=Lang file name for label code translation +DetailUser=Intern / Extern / All +Target=Target +DetailTarget=Target for links (_blank top opens a new window) +DetailLevel=Level (-1:top menu, 0:header menu, >0 menu and sub menu) +ModifMenu=Menu change +DeleteMenu=Delete menu entry +ConfirmDeleteMenu=Are you sure you want to delete menu entry %s? +FailedToInitializeMenu=Failed to initialize menu +##### Tax ##### +TaxSetup=Taxes, social or fiscal taxes and dividends module setup +OptionVatMode=VAT due +OptionVATDefault=Standard basis +OptionVATDebitOption=Accrual basis +OptionVatDefaultDesc=VAT is due:
- on delivery of goods (based on invoice date)
- on payments for services +OptionVatDebitOptionDesc=VAT is due:
- on delivery of goods (based on invoice date)
- on invoice (debit) for services +OptionPaymentForProductAndServices=Cash basis for products and services +OptionPaymentForProductAndServicesDesc=VAT is due:
- on payment for goods
- on payments for services +SummaryOfVatExigibilityUsedByDefault=Time of VAT eligibility by default according to chosen option: +OnDelivery=On delivery +OnPayment=On payment +OnInvoice=On invoice +SupposedToBePaymentDate=Payment date used +SupposedToBeInvoiceDate=Invoice date used +Buy=Buy +Sell=Sell +InvoiceDateUsed=Invoice date used +YourCompanyDoesNotUseVAT=Your company has been defined to not use VAT (Home - Setup - Company/Organization), so there is no VAT options to setup. +AccountancyCode=Accounting Code +AccountancyCodeSell=Sale account. code +AccountancyCodeBuy=Purchase account. code +CREATE_NEW_VAT_WITHOUT_AUTO_PAYMENT=Keep the checkbox “Automatically create the payment” empty by default when creating a new tax +##### Agenda ##### +AgendaSetup=Events and agenda module setup +PasswordTogetVCalExport=Key to authorize export link +SecurityKey = Security Key +PastDelayVCalExport=Do not export event older than +AGENDA_USE_EVENT_TYPE=Use events types (managed in menu Setup -> Dictionaries -> Type of agenda events) +AGENDA_USE_EVENT_TYPE_DEFAULT=Automatically set this default value for type of event in event create form +AGENDA_DEFAULT_FILTER_TYPE=Automatically set this type of event in search filter of agenda view +AGENDA_DEFAULT_FILTER_STATUS=Automatically set this status for events in search filter of agenda view +AGENDA_DEFAULT_VIEW=Which view do you want to open by default when selecting menu Agenda +AGENDA_REMINDER_BROWSER=Enable event reminder on user's browser (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_SOUND=Enable sound notification +AGENDA_REMINDER_EMAIL=Enable event reminder by emails (remind option/delay can be defined on each event). +AGENDA_REMINDER_EMAIL_NOTE=Note: The frequency of the scheduled job %s must be enough to be sure that the remind are sent at the correct moment. +AGENDA_SHOW_LINKED_OBJECT=Show linked object into agenda view +##### Clicktodial ##### +ClickToDialSetup=Click To Dial module setup +ClickToDialUrlDesc=Url called when a click on phone picto is done. In URL, you can use tags
__PHONETO__ that will be replaced with the phone number of person to call
__PHONEFROM__ that will be replaced with phone number of calling person (yours)
__LOGIN__ that will be replaced with clicktodial login (defined on user card)
__PASS__ that will be replaced with clicktodial password (defined on user card). +ClickToDialDesc=This module change phone numbers, when using a desktop computer, into clickable links. A click will call the number. This can be used to start the phone call when using a soft phone on your desktop or when using a CTI system based on SIP protocol for example. Note: When using a smartphone, phone numbers are always clickable. +ClickToDialUseTelLink=Use just a link "tel:" on phone numbers +ClickToDialUseTelLinkDesc=Use this method if your users have a softphone or a software interface, installed on the same computer as the browser, and called when you click on a link starting with "tel:" in your browser. If you need a link that start with "sip:" or a full server solution (no need of local software installation), you must set this to "No" and fill the next field. +##### Point Of Sale (CashDesk) ##### +CashDesk=Point of Sale +CashDeskSetup=Point of Sales module setup +CashDeskThirdPartyForSell=Default generic third party to use for sales +CashDeskBankAccountForSell=Default account to use to receive cash payments +CashDeskBankAccountForCheque=Default account to use to receive payments by check +CashDeskBankAccountForCB=Default account to use to receive payments by credit cards +CashDeskBankAccountForSumup=Default bank account to use to receive payments by SumUp +CashDeskDoNotDecreaseStock=Disable stock decrease when a sale is done from Point of Sale (if "no", stock decrease is done for each sale done from POS, irrespective of the option set in module Stock). +CashDeskIdWareHouse=Force and restrict warehouse to use for stock decrease +StockDecreaseForPointOfSaleDisabled=Stock decrease from Point of Sale disabled +StockDecreaseForPointOfSaleDisabledbyBatch=Stock decrease in POS is not compatible with module Serial/Lot management (currently active) so stock decrease is disabled. +CashDeskYouDidNotDisableStockDecease=You did not disable stock decrease when making a sale from Point of Sale. Hence a warehouse is required. +CashDeskForceDecreaseStockLabel=Stock decrease for batch products was forced. +CashDeskForceDecreaseStockDesc=Decrease first by the oldest eatby and sellby dates. +CashDeskReaderKeyCodeForEnter=Key code for "Enter" defined in barcode reader (Example: 13) +##### Bookmark ##### +BookmarkSetup=Bookmark module setup +BookmarkDesc=This module allows you to manage bookmarks. You can also add shortcuts to any Dolibarr pages or external web sites on your left menu. +NbOfBoomarkToShow=Maximum number of bookmarks to show in left menu +##### WebServices ##### +WebServicesSetup=Webservices module setup +WebServicesDesc=By enabling this module, Dolibarr become a web service server to provide miscellaneous web services. +WSDLCanBeDownloadedHere=WSDL descriptor files of provided services can be download here +EndPointIs=SOAP clients must send their requests to the Dolibarr endpoint available at URL +##### API #### +ApiSetup=API module setup +ApiDesc=By enabling this module, Dolibarr become a REST server to provide miscellaneous web services. +ApiProductionMode=Enable production mode (this will activate use of a cache for services management) +ApiExporerIs=You can explore and test the APIs at URL +OnlyActiveElementsAreExposed=Only elements from enabled modules are exposed +ApiKey=Key for API +WarningAPIExplorerDisabled=The API explorer has been disabled. API explorer is not required to provide API services. It is a tool for developer to find/test REST APIs. If you need this tool, go into setup of module API REST to activate it. +##### Bank ##### +BankSetupModule=Bank module setup +FreeLegalTextOnChequeReceipts=Free text on check receipts +BankOrderShow=Display order of bank accounts for countries using "detailed bank number" +BankOrderGlobal=General +BankOrderGlobalDesc=General display order +BankOrderES=Spanish +BankOrderESDesc=Spanish display order +ChequeReceiptsNumberingModule=Check Receipts Numbering Module +##### Multicompany ##### +MultiCompanySetup=Multi-company module setup +##### Suppliers ##### +SuppliersSetup=Vendor module setup +SuppliersCommandModel=Complete template of Purchase Order +SuppliersCommandModelMuscadet=Complete template of Purchase Order (old implementation of cornas template) +SuppliersInvoiceModel=Complete template of Vendor Invoice +SuppliersInvoiceNumberingModel=Vendor invoices numbering models +IfSetToYesDontForgetPermission=If set to a non null value, don't forget to provide permissions to groups or users allowed for the second approval +##### GeoIPMaxmind ##### +GeoIPMaxmindSetup=GeoIP Maxmind module setup +PathToGeoIPMaxmindCountryDataFile=Path to file containing Maxmind ip to country translation.
Examples:
/usr/local/share/GeoIP/GeoIP.dat
/usr/share/GeoIP/GeoIP.dat
/usr/share/GeoIP/GeoLite2-Country.mmdb +NoteOnPathLocation=Note that your ip to country data file must be inside a directory your PHP can read (Check your PHP open_basedir setup and filesystem permissions). +YouCanDownloadFreeDatFileTo=You can download a free demo version of the Maxmind GeoIP country file at %s. +YouCanDownloadAdvancedDatFileTo=You can also download a more complete version, with updates, of the Maxmind GeoIP country file at %s. +TestGeoIPResult=Test of a conversion IP -> country +##### Projects ##### +ProjectsNumberingModules=Projects numbering module +ProjectsSetup=Project module setup +ProjectsModelModule=Project reports document model +TasksNumberingModules=Tasks numbering module +TaskModelModule=Tasks reports document model +UseSearchToSelectProject=Wait until a key is pressed before loading content of Project combo list.
This may improve performance if you have a large number of projects, but it is less convenient. +##### ECM (GED) ##### +##### Fiscal Year ##### +AccountingPeriods=Accounting periods +AccountingPeriodCard=Accounting period +NewFiscalYear=New accounting period +OpenFiscalYear=Open accounting period +CloseFiscalYear=Close accounting period +DeleteFiscalYear=Delete accounting period +ConfirmDeleteFiscalYear=Are you sure to delete this accounting period? +ShowFiscalYear=Show accounting period +AlwaysEditable=Can always be edited +MAIN_APPLICATION_TITLE=Force visible name of application (warning: setting your own name here may break autofill login feature when using DoliDroid mobile application) +NbMajMin=Minimum number of uppercase characters +NbNumMin=Minimum number of numeric characters +NbSpeMin=Minimum number of special characters +NbIteConsecutive=Maximum number of repeating same characters +NoAmbiCaracAutoGeneration=Do not use ambiguous characters ("1","l","i","|","0","O") for automatic generation +SalariesSetup=Setup of module salaries +SortOrder=Sort order +Format=Format +TypePaymentDesc=0:Customer payment type, 1:Vendor payment type, 2:Both customers and suppliers payment type +IncludePath=Include path (defined into variable %s) +ExpenseReportsSetup=Setup of module Expense Reports +TemplatePDFExpenseReports=Document templates to generate expense report document +ExpenseReportsRulesSetup=Setup of module Expense Reports - Rules +ExpenseReportNumberingModules=Expense reports numbering module +NoModueToManageStockIncrease=No module able to manage automatic stock increase has been activated. Stock increase will be done on manual input only. +YouMayFindNotificationsFeaturesIntoModuleNotification=You may find options for email notifications by enabling and configuring the module "Notification". +TemplatesForNotifications=Templates for notifications +ListOfNotificationsPerUser=List of automatic notifications per user* +ListOfNotificationsPerUserOrContact=List of possible automatic notifications (on business event) available per user* or per contact** +ListOfFixedNotifications=List of automatic fixed notifications +GoOntoUserCardToAddMore=Go to the tab "Notifications" of a user to add or remove notifications for users +GoOntoContactCardToAddMore=Go to the tab "Notifications" of a third party to add or remove notifications for contacts/addresses +Threshold=Threshold +BackupDumpWizard=Wizard to build the database dump file +BackupZipWizard=Wizard to build the archive of documents directory +SomethingMakeInstallFromWebNotPossible=Installation of external module is not possible from the web interface for the following reason: +SomethingMakeInstallFromWebNotPossible2=For this reason, process to upgrade described here is a manual process only a privileged user may perform. +InstallModuleFromWebHasBeenDisabledByFile=Install of external module from application has been disabled by your administrator. You must ask him to remove the file %s to allow this feature. +ConfFileMustContainCustom=Installing or building an external module from application need to save the module files into directory %s. To have this directory processed by Dolibarr, you must setup your conf/conf.php to add the 2 directive lines:
$dolibarr_main_url_root_alt='/custom';
$dolibarr_main_document_root_alt='%s/custom'; +HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over +HighlightLinesColor=Highlight color of the line when the mouse passes over (use 'ffffff' for no highlight) +HighlightLinesChecked=Highlight color of the line when it is checked (use 'ffffff' for no highlight) +UseBorderOnTable=Show left-right borders on tables +BtnActionColor=Color of the action button +TextBtnActionColor=Text color of the action button +TextTitleColor=Text color of Page title +LinkColor=Color of links +PressF5AfterChangingThis=Press CTRL+F5 on keyboard or clear your browser cache after changing this value to have it effective +NotSupportedByAllThemes=Will works with core themes, may not be supported by external themes +BackgroundColor=Background color +TopMenuBackgroundColor=Background color for Top menu +TopMenuDisableImages=Icon or Text in Top menu +LeftMenuBackgroundColor=Background color for Left menu +BackgroundTableTitleColor=Background color for Table title line +BackgroundTableTitleTextColor=Text color for Table title line +BackgroundTableTitleTextlinkColor=Text color for Table title link line +BackgroundTableLineOddColor=Background color for odd table lines +BackgroundTableLineEvenColor=Background color for even table lines +MinimumNoticePeriod=Minimum notice period (Your leave request must be done before this delay) +NbAddedAutomatically=Number of days added to counters of users (automatically) each month +EnterAnyCode=This field contains a reference to identify the line. Enter any value of your choice, but without special characters. +Enter0or1=Enter 0 or 1 +UnicodeCurrency=Enter here between braces, list of byte number that represent the currency symbol. For example: for $, enter [36] - for brazil real R$ [82,36] - for €, enter [8364] +ColorFormat=The RGB color is in HEX format, eg: FF0000 +PictoHelp=Icon name in format:
- image.png for an image file into the current theme directory
- image.png@module if file is into the directory /img/ of a module
- fa-xxx for a FontAwesome fa-xxx picto
- fonwtawesome_xxx_fa_color_size for a FontAwesome fa-xxx picto (with prefix, color and size set) +PositionIntoComboList=Position of line into combo lists +SellTaxRate=Sales tax rate +RecuperableOnly=Yes for VAT "Not Perceived but Recoverable" dedicated for some state in France. Keep value to "No" in all other cases. +UrlTrackingDesc=If the provider or transport service offers a page or web site to check the status of your shipments, you may enter it here. You can use the key {TRACKID} in the URL parameters so the system will replace it with the tracking number the user entered into the shipment card. +OpportunityPercent=When you create a lead, you will define an estimated amount of project/lead. According to status of the lead, this amount may be multiplied by this rate to evaluate a total amount all your leads may generate. Value is a percentage (between 0 and 100). +TemplateForElement=This mail template is related to what type of object? An email template is available only when using the "Send Email" button from the related object. +TypeOfTemplate=Type of template +TemplateIsVisibleByOwnerOnly=Template is visible to owner only +VisibleEverywhere=Visible everywhere +VisibleNowhere=Visible nowhere +FixTZ=TimeZone fix +FillFixTZOnlyIfRequired=Example: +2 (fill only if problem experienced) +ExpectedChecksum=Expected Checksum +CurrentChecksum=Current Checksum +ExpectedSize=Expected size +CurrentSize=Current size +ForcedConstants=Required constant values +MailToSendProposal=Customer proposals +MailToSendOrder=Sales orders +MailToSendInvoice=Customer invoices +MailToSendShipment=Shipments +MailToSendIntervention=Interventions +MailToSendSupplierRequestForQuotation=Quotation request +MailToSendSupplierOrder=Purchase orders +MailToSendSupplierInvoice=Vendor invoices +MailToSendContract=Contracts +MailToSendReception=Receptions +MailToThirdparty=Third parties +MailToMember=Members +MailToUser=Users +MailToProject=Projects +MailToTicket=Tickets +ByDefaultInList=Show by default on list view +YouUseLastStableVersion=You use the latest stable version +TitleExampleForMajorRelease=Example of message you can use to announce this major release (feel free to use it on your web sites) +TitleExampleForMaintenanceRelease=Example of message you can use to announce this maintenance release (feel free to use it on your web sites) +ExampleOfNewsMessageForMajorRelease=Dolibarr ERP & CRM %s is available. Version %s is a major release with a lot of new features for both users and developers. You can download it from the download area of https://www.dolibarr.org portal (subdirectory Stable versions). You can read ChangeLog for complete list of changes. +ExampleOfNewsMessageForMaintenanceRelease=Dolibarr ERP & CRM %s is available. Version %s is a maintenance version, so contains only bug fixes. We recommend all users to upgrade to this version. A maintenance release does not introduce new features or changes to the database. You may download it from the download area of https://www.dolibarr.org portal (subdirectory Stable versions). You can read the ChangeLog for complete list of changes. +MultiPriceRuleDesc=When option "Several levels of prices per product/service" is enabled, you can define different prices (one per price level) for each product. To save you time, here you may enter a rule to autocalculate a price for each level based on the price of the first level, so you will have to only enter a price for the first level for each product. This page is designed to save you time but is useful only if your prices for each level are relative to first level. You can ignore this page in most cases. +ModelModulesProduct=Templates for product documents +WarehouseModelModules=Templates for documents of warehouses +ToGenerateCodeDefineAutomaticRuleFirst=To be able to generate codes automatically, you must first define a manager to auto-define the barcode number. +SeeSubstitutionVars=See * note for list of possible substitution variables +SeeChangeLog=See ChangeLog file (english only) +AllPublishers=All publishers +UnknownPublishers=Unknown publishers +AddRemoveTabs=Add or remove tabs +AddDataTables=Add object tables +AddDictionaries=Add dictionaries tables +AddData=Add objects or dictionaries data +AddBoxes=Add widgets +AddSheduledJobs=Add scheduled jobs +AddHooks=Add hooks +AddTriggers=Add triggers +AddMenus=Add menus +AddPermissions=Add permissions +AddExportProfiles=Add export profiles +AddImportProfiles=Add import profiles +AddOtherPagesOrServices=Add other pages or services +AddModels=Add document or numbering templates +AddSubstitutions=Add keys substitutions +DetectionNotPossible=Detection not possible +UrlToGetKeyToUseAPIs=Url to get token to use API (once token has been received it is saved in database user table and must be provided on each API call) +ListOfAvailableAPIs=List of available APIs +activateModuleDependNotSatisfied=Module "%s" depends on module "%s", that is missing, so module "%1$s" may not work correctly. Please install module "%2$s" or disable module "%1$s" if you want to be safe from any surprise +CommandIsNotInsideAllowedCommands=The command you are trying to run is not in the list of allowed commands defined in parameter $dolibarr_main_restrict_os_commands in the conf.php file. +LandingPage=Landing page +SamePriceAlsoForSharedCompanies=If you use a multicompany module, with the choice "Single price", the price will also be the same for all companies if products are shared between environments +ModuleEnabledAdminMustCheckRights=Module has been activated. Permissions for activated module(s) were given to admin users only. You may need to grant permissions to other users or groups manually if necessary. +UserHasNoPermissions=This user has no permissions defined +TypeCdr=Use "None" if the date of payment term is date of invoice plus a delta in days (delta is field "%s")
Use "At end of month", if, after delta, the date must be increased to reach the end of month (+ an optional "%s" in days)
Use "Current/Next" to have payment term date being the first Nth of the month after delta (delta is field "%s", N is stored into field "%s") +BaseCurrency=Reference currency of the company (go into setup of company to change this) +WarningNoteModuleInvoiceForFrenchLaw=This module %s is compliant with French laws (Loi Finance 2016). +WarningNoteModulePOSForFrenchLaw=This module %s is compliant with French laws (Loi Finance 2016) because module Non Reversible Logs is automatically activated. +WarningInstallationMayBecomeNotCompliantWithLaw=You are trying to install module %s that is an external module. Activating an external module means you trust the publisher of that module and that you are sure that this module does not adversely impact the behavior of your application, and is compliant with laws of your country (%s). If the module introduces an illegal feature, you become responsible for the use of illegal software. +MAIN_PDF_MARGIN_LEFT=Left margin on PDF +MAIN_PDF_MARGIN_RIGHT=Right margin on PDF +MAIN_PDF_MARGIN_TOP=Top margin on PDF +MAIN_PDF_MARGIN_BOTTOM=Bottom margin on PDF +MAIN_DOCUMENTS_LOGO_HEIGHT=Height for logo on PDF +MAIN_GENERATE_PROPOSALS_WITH_PICTURE=Add column for picture on proposal lines +MAIN_DOCUMENTS_WITH_PICTURE_WIDTH=Width of the column if a picture is added on lines +MAIN_PDF_NO_SENDER_FRAME=Hide borders on sender address frame +MAIN_PDF_NO_RECIPENT_FRAME=Hide borders on recipent address frame +MAIN_PDF_HIDE_CUSTOMER_CODE=Hide customer code +MAIN_PDF_HIDE_SENDER_NAME=Hide sender/company name in address block +PROPOSAL_PDF_HIDE_PAYMENTTERM=Hide payments conditions +PROPOSAL_PDF_HIDE_PAYMENTMODE=Hide payment mode +MAIN_PDF_PROPAL_USE_ELECTRONIC_SIGNING=Add electronic sign in PDF +NothingToSetup=There is no specific setup required for this module. +SetToYesIfGroupIsComputationOfOtherGroups=Set this to yes if this group is a computation of other groups +EnterCalculationRuleIfPreviousFieldIsYes=Enter calculation rule if previous field was set to Yes.
For example:
CODEGRP1+CODEGRP2 +SeveralLangugeVariatFound=Several language variants found +RemoveSpecialChars=Remove special characters +COMPANY_AQUARIUM_CLEAN_REGEX=Regex filter to clean value (COMPANY_AQUARIUM_CLEAN_REGEX) +COMPANY_DIGITARIA_CLEAN_REGEX=Regex filter to clean value (COMPANY_DIGITARIA_CLEAN_REGEX) +COMPANY_DIGITARIA_UNIQUE_CODE=Duplicate not allowed +GDPRContact=Data Protection Officer (DPO, Data Privacy or GDPR contact) +GDPRContactDesc=If you store personal data in your Information System, you can name the contact who is responsible for the General Data Protection Regulation here +HelpOnTooltip=Help text to show on tooltip +HelpOnTooltipDesc=Put text or a translation key here for the text to show in a tooltip when this field appears in a form +YouCanDeleteFileOnServerWith=You can delete this file on the server with Command Line:
%s +ChartLoaded=Chart of account loaded +SocialNetworkSetup=Setup of module Social Networks +EnableFeatureFor=Enable features for %s +VATIsUsedIsOff=Note: The option to use Sales Tax or VAT has been set to Off in the menu %s - %s, so Sales tax or Vat used will always be 0 for sales. +SwapSenderAndRecipientOnPDF=Swap sender and recipient address position on PDF documents +FeatureSupportedOnTextFieldsOnly=Warning, feature supported on text fields and combo lists only. Also an URL parameter action=create or action=edit must be set OR page name must end with 'new.php' to trigger this feature. +EmailCollector=Email collector +EmailCollectors=Email collectors +EmailCollectorDescription=Add a scheduled job and a setup page to scan regularly email boxes (using IMAP protocol) and record emails received into your application, at the right place and/or create some records automatically (like leads). +NewEmailCollector=New Email Collector +EMailHost=Host of email IMAP server +MailboxSourceDirectory=Mailbox source directory +MailboxTargetDirectory=Mailbox target directory +EmailcollectorOperations=Operations to do by collector +EmailcollectorOperationsDesc=Operations are executed from top to bottom order +MaxEmailCollectPerCollect=Max number of emails collected per collect +CollectNow=Collect now +ConfirmCloneEmailCollector=Are you sure you want to clone the Email collector %s? +DateLastCollectResult=Date of latest collect try +DateLastcollectResultOk=Date of latest collect success +LastResult=Latest result +EmailCollectorHideMailHeaders=Do not include the content of email header into the saved content of collected e-mails +EmailCollectorHideMailHeadersHelp=When enabled, e-mail headers are not added at the end of the email content that is saved as an agenda event. +EmailCollectorConfirmCollectTitle=Email collect confirmation +EmailCollectorConfirmCollect=Do you want to run this collector now? +EmailCollectorExampleToCollectTicketRequestsDesc=Collect emails that match some rules and create automatically a ticket (Module Ticket must be enabled) with the email informations. You can use this collector if you provide some support by email, so your ticket request will be automatically generated. Activate also Collect_Responses to collect answers of your client directly on the ticket view (you must reply from Dolibarr). +EmailCollectorExampleToCollectTicketRequests=Example collecting the ticket request (first message only) +EmailCollectorExampleToCollectAnswersFromExternalEmailSoftwareDesc=Scan your mailbox "Sent" directory to find emails that was sent as an answer of another email directly from your email software and not from Dolibarr. If such an email is found, the event of answer is recorded into Dolibarr +EmailCollectorExampleToCollectAnswersFromExternalEmailSoftware=Example collecting e-mail answers sent from an external e-mail software +EmailCollectorExampleToCollectDolibarrAnswersDesc=Collect all emails that are an answer of an email sent from your application. An event (Module Agenda must be enabled) with the email response will be recorded at the good place. For example, if you send a commercial proposal, order, invoice or message for a ticket by email from the application, and the recipient answers your email, the system will automatically catch the answer and add it into your ERP. +EmailCollectorExampleToCollectDolibarrAnswers=Example collecting all ingoing messages being answers to messages sent from Dolibarr' +EmailCollectorExampleToCollectLeadsDesc=Collect emails that match some rules and create automatically a lead (Module Project must be enabled) with the email informations. You can use this collector if you want to follow your lead using the module Project (1 lead = 1 project), so your leads will be automatically generated. If the collector Collect_Responses is also enabled, when you send an email from your leads, proposals or any other object, you may also see answers of your customers or partners directly on the application.
Note: With this initial example, the title of the lead is generated including the email. If the thirdparty can't be found in database (new customer), the lead will be attached to the thirdparty with ID 1. +EmailCollectorExampleToCollectLeads=Example collecting leads +EmailCollectorExampleToCollectJobCandidaturesDesc=Collect emails applying to job offers (Module Recruitment must be enabled). You can complete this collector if you want to automatically create a candidature for a job request. Note: With this initial example, the title of the candidature is generated including the email. +EmailCollectorExampleToCollectJobCandidatures=Example collecting job candidatures received by e-mail +NoNewEmailToProcess=No new email (matching filters) to process +NothingProcessed=Nothing done +XEmailsDoneYActionsDone=%s emails pre-qualified, %s emails successfully processed (for %s record/actions done) +RecordEvent=Record an event in agenda (with type Email sent or received) +CreateLeadAndThirdParty=Create a lead (and a third party if necessary) +CreateTicketAndThirdParty=Create a ticket (linked to a third party if the third party was loaded by a previous operation or was guessed from a tracker in email header, without third party otherwise) +CodeLastResult=Latest result code +NbOfEmailsInInbox=Number of emails in source directory +LoadThirdPartyFromName=Load third party searching on %s (load only) +LoadThirdPartyFromNameOrCreate=Load third party searching on %s (create if not found) +AttachJoinedDocumentsToObject=Save attached files into object documents if a ref of an object is found into email topic. +WithDolTrackingID=Message from a conversation initiated by a first email sent from Dolibarr +WithoutDolTrackingID=Message from a conversation initiated by a first email NOT sent from Dolibarr +WithDolTrackingIDInMsgId=Message sent from Dolibarr +WithoutDolTrackingIDInMsgId=Message NOT sent from Dolibarr +CreateCandidature=Create job application +FormatZip=Zip +MainMenuCode=Menu entry code (mainmenu) +ECMAutoTree=Show automatic ECM tree +OperationParamDesc=Define the rules to use to extract or set values.
Example for operations that need to extract a name from email subject:
name=EXTRACT:SUBJECT:Message from company ([^\n]*)
Example for operations that create objects:
objproperty1=SET:the value to set
objproperty2=SET:a value including value of __objproperty1__
objproperty3=SETIFEMPTY:value used if objproperty3 is not already defined
objproperty4=EXTRACT:HEADER:X-Myheaderkey:\\s*([^\\s]*)
options_myextrafield1=EXTRACT:SUBJECT:([^\n]*)
object.objproperty5=EXTRACT:BODY:My company name is\\s([^\\s]*)

Use a ; char as separator to extract or set several properties. +OpeningHours=Opening hours +OpeningHoursDesc=Enter here the regular opening hours of your company. +ResourceSetup=Configuration of Resource module +UseSearchToSelectResource=Use a search form to choose a resource (rather than a drop-down list). +DisabledResourceLinkUser=Disable feature to link a resource to users +DisabledResourceLinkContact=Disable feature to link a resource to contacts +EnableResourceUsedInEventCheck=Prohibit the use of the same resource at the same time in the agenda +ConfirmUnactivation=Confirm module reset +OnMobileOnly=On small screen (smartphone) only +DisableProspectCustomerType=Disable the "Prospect + Customer" third party type (so third party must be "Prospect" or "Customer", but can't be both) +MAIN_OPTIMIZEFORTEXTBROWSER=Simplify interface for blind person +MAIN_OPTIMIZEFORTEXTBROWSERDesc=Enable this option if you are a blind person, or if you use the application from a text browser like Lynx or Links. +MAIN_OPTIMIZEFORCOLORBLIND=Change interface's color for color blind person +MAIN_OPTIMIZEFORCOLORBLINDDesc=Enable this option if you are a color blind person, in some case interface will change color setup to increase contrast. +Protanopia=Protanopia +Deuteranopes=Deuteranopes +Tritanopes=Tritanopes +ThisValueCanOverwrittenOnUserLevel=This value can be overwritten by each user from its user page - tab '%s' +DefaultCustomerType=Default thirdparty type for "New customer" creation form +ABankAccountMustBeDefinedOnPaymentModeSetup=Note: The bank account must be defined on the module of each payment mode (Paypal, Stripe, ...) to have this feature working. +RootCategoryForProductsToSell=Root category of products to sell +RootCategoryForProductsToSellDesc=If defined, only products inside this category or childs of this category will be available in the Point Of Sale +DebugBar=Debug Bar +DebugBarDesc=Toolbar that comes with a plenty of tools to simplify debugging +DebugBarSetup=DebugBar Setup +GeneralOptions=General Options +LogsLinesNumber=Number of lines to show on logs tab +UseDebugBar=Use the debug bar +DEBUGBAR_LOGS_LINES_NUMBER=Number of last log lines to keep in console +WarningValueHigherSlowsDramaticalyOutput=Warning, higher values slows dramaticaly output +ModuleActivated=Module %s is activated and slows the interface +ModuleActivatedWithTooHighLogLevel=Module %s is activated with a too high logging level (try to use a lower level for better performances and security) +ModuleSyslogActivatedButLevelNotTooVerbose=Module %s is activated and log level (%s) is correct (not too verbose) +IfYouAreOnAProductionSetThis=If you are on a production environment, you should set this property to %s. +AntivirusEnabledOnUpload=Antivirus enabled on uploaded files +SomeFilesOrDirInRootAreWritable=Some files or directories are not in a read-only mode +EXPORTS_SHARE_MODELS=Export models are share with everybody +ExportSetup=Setup of module Export +ImportSetup=Setup of module Import +InstanceUniqueID=Unique ID of the instance +SmallerThan=Smaller than +LargerThan=Larger than +IfTrackingIDFoundEventWillBeLinked=Note that If a tracking ID of an object is found into email, or if the email is an answer of an email aready collected and linked to an object, the created event will be automatically linked to the known related object. +WithGMailYouCanCreateADedicatedPassword=With a GMail account, if you enabled the 2 steps validation, it is recommanded to create a dedicated second password for the application instead of using your own account passsword from https://myaccount.google.com/. +EmailCollectorTargetDir=It may be a desired behaviour to move the email into another tag/directory when it was processed successfully. Just set name of directory here to use this feature (Do NOT use special characters in name). Note that you must also use a read/write login account. +EmailCollectorLoadThirdPartyHelp=You can use this action to use the email content to find and load an existing thirdparty in your database. The found (or created) thirdparty will be used for following actions that need it.
For example, if you want to create a thirdparty with a name extracted from a string 'Name: name to find' present into the body, use the sender email as email, you can set the parameter field like this:
'email=HEADER:^From:(.*);name=EXTRACT:BODY:Name:\\s([^\\s]*);client=SET:2;'
+EndPointFor=End point for %s : %s +DeleteEmailCollector=Delete email collector +ConfirmDeleteEmailCollector=Are you sure you want to delete this email collector? +RecipientEmailsWillBeReplacedWithThisValue=Recipient emails will be always replaced with this value +AtLeastOneDefaultBankAccountMandatory=At least 1 default bank account must be defined +RESTRICT_ON_IP=Allow API access to only certain client IPs (wildcard not allowed, use space between values). Empty means every clients can access. +IPListExample=127.0.0.1 192.168.0.2 [::1] +BaseOnSabeDavVersion=Based on the library SabreDAV version +NotAPublicIp=Not a public IP +MakeAnonymousPing=Make an anonymous Ping '+1' to the Dolibarr foundation server (done 1 time only after installation) to allow the foundation to count the number of Dolibarr installation. +FeatureNotAvailableWithReceptionModule=Feature not available when module Reception is enabled +EmailTemplate=Template for email +EMailsWillHaveMessageID=Emails will have a tag 'References' matching this syntax +PDF_SHOW_PROJECT=Show project on document +ShowProjectLabel=Project Label +PDF_INCLUDE_ALIAS_IN_THIRDPARTY_NAME=Include alias in thirdparty name +THIRDPARTY_ALIAS=Name thirdparty - Alias thirdparty +ALIAS_THIRDPARTY=Alias thirdparty - Name thirdparty +PDF_USE_ALSO_LANGUAGE_CODE=If you want to have some texts in your PDF duplicated in 2 different languages in the same generated PDF, you must set here this second language so generated PDF will contains 2 different languages in same page, the one chosen when generating PDF and this one (only few PDF templates support this). Keep empty for 1 language per PDF. +PDF_USE_A=Gererate PDF documents with format PDF/A instead of defaut format PDF +FafaIconSocialNetworksDesc=Enter here the code of a FontAwesome icon. If you don't know what is FontAwesome, you can use the generic value fa-address-book. +RssNote=Note: Each RSS feed definition provides a widget that you must enable to have it available in dashboard +JumpToBoxes=Jump to Setup -> Widgets +MeasuringUnitTypeDesc=Use here a value like "size", "surface", "volume", "weight", "time" +MeasuringScaleDesc=The scale is the number of places you have to move the decimal part to match the default reference unit. For "time" unit type, it is the number of seconds. Values between 80 and 99 are reserved values. +TemplateAdded=Template added +TemplateUpdated=Template updated +TemplateDeleted=Template deleted +MailToSendEventPush=Event reminder email +SwitchThisForABetterSecurity=Switching this value to %s is recommended for more security +DictionaryProductNature= Nature of product +CountryIfSpecificToOneCountry=Country (if specific to a given country) +YouMayFindSecurityAdviceHere=You may find security advisory here +ModuleActivatedMayExposeInformation=This PHP extension may expose sensitive data. If you don't need it, disable it. +ModuleActivatedDoNotUseInProduction=A module designed for the development has been enabled. Do not enable it on a production environment. +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 %s is used, show details of subproducts of a kit on PDF. +AskThisIDToYourBank=Contact your bank to get this ID +AdvancedModeOnly=Permision available in Advanced permission mode only +ConfFileIsReadableOrWritableByAnyUsers=The conf file is readable or writable by any users. Give permission to web server user and group only. +MailToSendEventOrganization=Event Organization +MailToPartnership=Partnership +AGENDA_EVENT_DEFAULT_STATUS=Default event status when creating a event from the form +YouShouldDisablePHPFunctions=You should disable PHP functions +IfCLINotRequiredYouShouldDisablePHPFunctions=Except if you need to run system commands in custom code, you shoud disable PHP functions +PHPFunctionsRequiredForCLI=For shell purpose (like scheduled job backup or running an anitivurs program), you must keep PHP functions +NoWritableFilesFoundIntoRootDir=No writable files or directories of the common programs were found into your root directory (Good) +RecommendedValueIs=Recommended: %s +Recommended=Recommended +NotRecommended=Not recommended +ARestrictedPath=Some restricted path +CheckForModuleUpdate=Check for external modules updates +CheckForModuleUpdateHelp=This action will connect to editors of external modules to check if a new version is available. +ModuleUpdateAvailable=An update is available +NoExternalModuleWithUpdate=No updates found for external modules +SwaggerDescriptionFile=Swagger API description file (for use with redoc for example) +YouEnableDeprecatedWSAPIsUseRESTAPIsInstead=You enabled deprecated WS API. You should use REST API instead. +RandomlySelectedIfSeveral=Randomly selected if several pictures are available +DatabasePasswordObfuscated=Database password is obfuscated in conf file +DatabasePasswordNotObfuscated=Database password is NOT obfuscated in conf file +APIsAreNotEnabled=APIs modules are not enabled +YouShouldSetThisToOff=You should set this to 0 or off +InstallAndUpgradeLockedBy=Install and upgrades are locked by the file %s +OldImplementation=Old implementation +PDF_SHOW_LINK_TO_ONLINE_PAYMENT=If some online payment modules are enabled (Paypal, Stripe, ...), add a link on the PDF to make the online payment +DashboardDisableGlobal=Disable globally all the thumbs of open objects +BoxstatsDisableGlobal=Disable totally box statistics +DashboardDisableBlocks=Thumbs of open objects (to process or late) on main dashboard +DashboardDisableBlockAgenda=Disable the thumb for agenda +DashboardDisableBlockProject=Disable the thumb for projects +DashboardDisableBlockCustomer=Disable the thumb for customers +DashboardDisableBlockSupplier=Disable the thumb for suppliers +DashboardDisableBlockContract=Disable the thumb for contracts +DashboardDisableBlockTicket=Disable the thumb for tickets +DashboardDisableBlockBank=Disable the thumb for banks +DashboardDisableBlockAdherent=Disable the thumb for memberships +DashboardDisableBlockExpenseReport=Disable the thumb for expense reports +DashboardDisableBlockHoliday=Disable the thumb for leaves +EnabledCondition=Condition to have field enabled (if not enabled, visibility will always be off) +IfYouUseASecondTaxYouMustSetYouUseTheMainTax=If you want to use a second tax, you must enable also the first sales tax +IfYouUseAThirdTaxYouMustSetYouUseTheMainTax=If you want to use a third tax, you must enable also the first sales tax +LanguageAndPresentation=Language and presentation +SkinAndColors=Skin and colors +IfYouUseASecondTaxYouMustSetYouUseTheMainTax=If you want to use a second tax, you must enable also the first sales tax +IfYouUseAThirdTaxYouMustSetYouUseTheMainTax=If you want to use a third tax, you must enable also the first sales tax +PDF_USE_1A=Generate PDF with PDF/A-1b format +MissingTranslationForConfKey = Missing translation for %s +NativeModules=Native modules +NoDeployedModulesFoundWithThisSearchCriteria=No modules found for these search criteria +API_DISABLE_COMPRESSION=Disable compression of API responses +EachTerminalHasItsOwnCounter=Each terminal use its own counter. +FillAndSaveAccountIdAndSecret=Fill and save account ID and secret first +PreviousHash=Previous hash +LateWarningAfter="Late" warning after +TemplateforBusinessCards=Template for a business card in different size +InventorySetup= Inventory Setup +ExportUseLowMemoryMode=Use a low memory mode +ExportUseLowMemoryModeHelp=Use the low memory mode to execute the exec of the dump (compression is done through a pipe instead of into the PHP memory). This method does not allow to check that file is completed and error message can't be reported if it fails. + +ModuleWebhookName = Webhook +ModuleWebhookDesc = Interface to catch dolibarr triggers and send it to an URL +WebhookSetup = Webhook setup +Settings = Settings +WebhookSetupPage = Webhook setup page +ShowQuickAddLink=Show a button to quickly add an element in top right menu + +HashForPing=Hash used for ping +ReadOnlyMode=Is instance in "Read Only" mode +DEBUGBAR_USE_LOG_FILE=Use the dolibarr.log file to trap Logs +UsingLogFileShowAllRecordOfSubrequestButIsSlower=Use the dolibarr.log file to trap Logs instead of live memory catching. It allows to catch all logs instead of only log of current process (so including the one of ajax subrequests pages) but will make your instance very very slow. Not recommended. +FixedOrPercent=Fixed (use keyword 'fixed') or percent (use keyword 'percent') +DefaultOpportunityStatus=Default opportunity status (first status when lead is created) + +IconAndText=Icon and text +TextOnly=Text only +IconOnlyAllTextsOnHover=Icon only - All texts appears under icon on mouse hover menu bar +IconOnlyTextOnHover=Icon only - Text of icon appears under icon on mouse hover the icon +IconOnly=Icon only - Text on tooltip only +INVOICE_ADD_ZATCA_QR_CODE=Show the ZATCA QR code on invoices +INVOICE_ADD_ZATCA_QR_CODEMore=Some Arabic countries need this QR Code on their invoices +INVOICE_ADD_SWISS_QR_CODE=Show the swiss QR-Bill code on invoices +UrlSocialNetworksDesc=Url link of social network. Use {socialid} for the variable part that contains the social network ID. +IfThisCategoryIsChildOfAnother=If this category is a child of another one +DarkThemeMode=Dark theme mode +AlwaysDisabled=Always disabled +AccordingToBrowser=According to browser +AlwaysEnabled=Always Enabled +DoesNotWorkWithAllThemes=Will not work with all themes +NoName=No name +ShowAdvancedOptions= Show advanced options +HideAdvancedoptions= Hide advanced options +CIDLookupURL=The module brings an URL that can be used by an external tool to get the name of a thirdparty or contact from its phone number. URL to use is: diff --git a/htdocs/langs/ms_MY/agenda.lang b/htdocs/langs/ms_MY/agenda.lang new file mode 100644 index 00000000000..d2d63b3a8e4 --- /dev/null +++ b/htdocs/langs/ms_MY/agenda.lang @@ -0,0 +1,177 @@ +# Dolibarr language file - Source file is en_US - agenda +IdAgenda=ID event +Actions=Events +Agenda=Agenda +TMenuAgenda=Agenda +Agendas=Agendas +LocalAgenda=Default calendar +ActionsOwnedBy=Event owned by +ActionsOwnedByShort=Owner +AffectedTo=Assigned to +Event=Event +Events=Events +EventsNb=Number of events +ListOfActions=List of events +EventReports=Event reports +Location=Location +ToUserOfGroup=Event assigned to any user in the group +EventOnFullDay=Event on all day(s) +MenuToDoActions=All incomplete events +MenuDoneActions=All terminated events +MenuToDoMyActions=My incomplete events +MenuDoneMyActions=My terminated events +ListOfEvents=List of events (default calendar) +ActionsAskedBy=Events reported by +ActionsToDoBy=Events assigned to +ActionsDoneBy=Events done by +ActionAssignedTo=Event assigned to +ViewCal=Month view +ViewDay=Day view +ViewWeek=Week view +ViewPerUser=Per user view +ViewPerType=Per type view +AutoActions= Automatic filling +AgendaAutoActionDesc= Here you may define events which you want Dolibarr to create automatically in Agenda. If nothing is checked, only manual actions will be included in logs and displayed in Agenda. Automatic tracking of business actions done on objects (validation, status change) will not be saved. +AgendaSetupOtherDesc= This page provides options to allow the export of your Dolibarr events into an external calendar (Thunderbird, Google Calendar etc...) +AgendaExtSitesDesc=This page allows to declare external sources of calendars to see their events into Dolibarr agenda. +ActionsEvents=Events for which Dolibarr will create an action in agenda automatically +EventRemindersByEmailNotEnabled=Event reminders by email was not enabled into %s module setup. +##### Agenda event labels ##### +NewCompanyToDolibarr=Third party %s created +COMPANY_MODIFYInDolibarr=Third party %s modified +COMPANY_DELETEInDolibarr=Third party %s deleted +ContractValidatedInDolibarr=Contract %s validated +CONTRACT_DELETEInDolibarr=Contract %s deleted +PropalClosedSignedInDolibarr=Proposal %s signed +PropalClosedRefusedInDolibarr=Proposal %s refused +PropalValidatedInDolibarr=Proposal %s validated +PropalBackToDraftInDolibarr=Proposal %s go back to draft status +PropalClassifiedBilledInDolibarr=Proposal %s classified billed +InvoiceValidatedInDolibarr=Invoice %s validated +InvoiceValidatedInDolibarrFromPos=Invoice %s validated from POS +InvoiceBackToDraftInDolibarr=Invoice %s go back to draft status +InvoiceDeleteDolibarr=Invoice %s deleted +InvoicePaidInDolibarr=Invoice %s changed to paid +InvoiceCanceledInDolibarr=Invoice %s canceled +MemberValidatedInDolibarr=Member %s validated +MemberModifiedInDolibarr=Member %s modified +MemberResiliatedInDolibarr=Member %s terminated +MemberDeletedInDolibarr=Member %s deleted +MemberExcludedInDolibarr=Member %s excluded +MemberSubscriptionAddedInDolibarr=Subscription %s for member %s added +MemberSubscriptionModifiedInDolibarr=Subscription %s for member %s modified +MemberSubscriptionDeletedInDolibarr=Subscription %s for member %s deleted +ShipmentValidatedInDolibarr=Shipment %s validated +ShipmentClassifyClosedInDolibarr=Shipment %s classified billed +ShipmentUnClassifyCloseddInDolibarr=Shipment %s classified re-open +ShipmentBackToDraftInDolibarr=Shipment %s go back to draft status +ShipmentDeletedInDolibarr=Shipment %s deleted +ShipmentCanceledInDolibarr=Shipment %s canceled +ReceptionValidatedInDolibarr=Reception %s validated +ReceptionClassifyClosedInDolibarr=Reception %s classified closed +OrderCreatedInDolibarr=Order %s created +OrderValidatedInDolibarr=Order %s validated +OrderDeliveredInDolibarr=Order %s classified delivered +OrderCanceledInDolibarr=Order %s canceled +OrderBilledInDolibarr=Order %s classified billed +OrderApprovedInDolibarr=Order %s approved +OrderRefusedInDolibarr=Order %s refused +OrderBackToDraftInDolibarr=Order %s go back to draft status +ProposalSentByEMail=Commercial proposal %s sent by email +ContractSentByEMail=Contract %s sent by email +OrderSentByEMail=Sales order %s sent by email +InvoiceSentByEMail=Customer invoice %s sent by email +SupplierOrderSentByEMail=Purchase order %s sent by email +ORDER_SUPPLIER_DELETEInDolibarr=Purchase order %s deleted +SupplierInvoiceSentByEMail=Vendor invoice %s sent by email +ShippingSentByEMail=Shipment %s sent by email +ShippingValidated= Shipment %s validated +InterventionSentByEMail=Intervention %s sent by email +ProposalDeleted=Proposal deleted +OrderDeleted=Order deleted +InvoiceDeleted=Invoice deleted +DraftInvoiceDeleted=Draft invoice deleted +CONTACT_CREATEInDolibarr=Contact %s created +CONTACT_MODIFYInDolibarr=Contact %s modified +CONTACT_DELETEInDolibarr=Contact %s deleted +PRODUCT_CREATEInDolibarr=Product %s created +PRODUCT_MODIFYInDolibarr=Product %s modified +PRODUCT_DELETEInDolibarr=Product %s deleted +HOLIDAY_CREATEInDolibarr=Request for leave %s created +HOLIDAY_MODIFYInDolibarr=Request for leave %s modified +HOLIDAY_APPROVEInDolibarr=Request for leave %s approved +HOLIDAY_VALIDATEInDolibarr=Request for leave %s validated +HOLIDAY_DELETEInDolibarr=Request for leave %s deleted +EXPENSE_REPORT_CREATEInDolibarr=Expense report %s created +EXPENSE_REPORT_VALIDATEInDolibarr=Expense report %s validated +EXPENSE_REPORT_APPROVEInDolibarr=Expense report %s approved +EXPENSE_REPORT_DELETEInDolibarr=Expense report %s deleted +EXPENSE_REPORT_REFUSEDInDolibarr=Expense report %s refused +PROJECT_CREATEInDolibarr=Project %s created +PROJECT_MODIFYInDolibarr=Project %s modified +PROJECT_DELETEInDolibarr=Project %s deleted +TICKET_CREATEInDolibarr=Ticket %s created +TICKET_MODIFYInDolibarr=Ticket %s modified +TICKET_ASSIGNEDInDolibarr=Ticket %s assigned +TICKET_CLOSEInDolibarr=Ticket %s closed +TICKET_DELETEInDolibarr=Ticket %s deleted +BOM_VALIDATEInDolibarr=BOM validated +BOM_UNVALIDATEInDolibarr=BOM unvalidated +BOM_CLOSEInDolibarr=BOM disabled +BOM_REOPENInDolibarr=BOM reopen +BOM_DELETEInDolibarr=BOM deleted +MRP_MO_VALIDATEInDolibarr=MO validated +MRP_MO_UNVALIDATEInDolibarr=MO set to draft status +MRP_MO_PRODUCEDInDolibarr=MO produced +MRP_MO_DELETEInDolibarr=MO deleted +MRP_MO_CANCELInDolibarr=MO canceled +PAIDInDolibarr=%s paid +##### End agenda events ##### +AgendaModelModule=Document templates for event +DateActionStart=Start date +DateActionEnd=End date +AgendaUrlOptions1=You can also add following parameters to filter output: +AgendaUrlOptions3=logina=%s to restrict output to actions owned by a user %s. +AgendaUrlOptionsNotAdmin=logina=!%s to restrict output to actions not owned by user %s. +AgendaUrlOptions4=logint=%s to restrict output to actions assigned to user %s (owner and others). +AgendaUrlOptionsProject=project=__PROJECT_ID__ to restrict output to actions linked to project __PROJECT_ID__. +AgendaUrlOptionsNotAutoEvent=notactiontype=systemauto to exclude automatic events. +AgendaUrlOptionsIncludeHolidays=includeholidays=1 to include events of holidays. +AgendaShowBirthdayEvents=Birthdays of contacts +AgendaHideBirthdayEvents=Hide birthdays of contacts +Busy=Busy +ExportDataset_event1=List of agenda events +DefaultWorkingDays=Default working days range in week (Example: 1-5, 1-6) +DefaultWorkingHours=Default working hours in day (Example: 9-18) +# External Sites ical +ExportCal=Export calendar +ExtSites=Import external calendars +ExtSitesEnableThisTool=Show external calendars (defined in global setup) in Agenda. Does not affect external calendars defined by users. +ExtSitesNbOfAgenda=Number of calendars +AgendaExtNb=Calendar no. %s +ExtSiteUrlAgenda=URL to access .ical file +ExtSiteNoLabel=No Description +VisibleTimeRange=Visible time range +VisibleDaysRange=Visible days range +AddEvent=Create event +MyAvailability=My availability +ActionType=Event type +DateActionBegin=Start event date +ConfirmCloneEvent=Are you sure you want to clone the event %s? +RepeatEvent=Repeat event +OnceOnly=Once only +EveryWeek=Every week +EveryMonth=Every month +DayOfMonth=Day of month +DayOfWeek=Day of week +DateStartPlusOne=Date start + 1 hour +SetAllEventsToTodo=Set all events to todo +SetAllEventsToInProgress=Set all events to in progress +SetAllEventsToFinished=Set all events to finished +ReminderTime=Reminder period before the event +TimeType=Duration type +ReminderType=Callback type +AddReminder=Create an automatic reminder notification for this event +ErrorReminderActionCommCreation=Error creating the reminder notification for this event +BrowserPush=Browser Popup Notification +ActiveByDefault=Enabled by default diff --git a/htdocs/langs/ms_MY/assets.lang b/htdocs/langs/ms_MY/assets.lang new file mode 100644 index 00000000000..fd7185d93c0 --- /dev/null +++ b/htdocs/langs/ms_MY/assets.lang @@ -0,0 +1,186 @@ +# Copyright (C) 2018-2022 Alexandre Spangaro +# +# 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 . + +# +# Generic +# +NewAsset=New asset +AccountancyCodeAsset=Accounting code (asset) +AccountancyCodeDepreciationAsset=Accounting code (depreciation asset account) +AccountancyCodeDepreciationExpense=Accounting code (depreciation expense account) +AssetsLines=Assets +DeleteType=Delete +DeleteAnAssetType=Delete an asset model +ConfirmDeleteAssetType=Are you sure you want to delete this asset model? +ShowTypeCard=Show model '%s' + +# Module label 'ModuleAssetsName' +ModuleAssetsName=Assets +# Module description 'ModuleAssetsDesc' +ModuleAssetsDesc=Assets description + +# +# Admin page +# +AssetSetup=Assets setup +AssetSetupPage=Assets setup page +ExtraFieldsAssetModel=Complementary attributes (Asset's model) + +AssetsType=Asset model +AssetsTypeId=Asset model id +AssetsTypeLabel=Asset model label +AssetsTypes=Assets models +ASSET_ACCOUNTANCY_CATEGORY=Fixed asset accounting group + +# +# Menu +# +MenuAssets=Assets +MenuNewAsset=New asset +MenuAssetModels=Model assets +MenuListAssets=List +MenuNewAssetModel=New asset's model +MenuListAssetModels=List + +# +# Module +# +ConfirmDeleteAsset=Do you really want to remove this asset? + +# +# Tab +# +AssetDepreciationOptions=Depreciation options +AssetAccountancyCodes=Accounting accounts +AssetDepreciation=Depreciation + +# +# Asset +# +Asset=Asset +Assets=Assets +AssetReversalAmountHT=Reversal amount (without taxes) +AssetAcquisitionValueHT=Acquisition amount (without taxes) +AssetRecoveredVAT=Recovered VAT +AssetReversalDate=Reversal date +AssetDateAcquisition=Acquisition date +AssetDateStart=Date of start-up +AssetAcquisitionType=Type of acquisition +AssetAcquisitionTypeNew=New +AssetAcquisitionTypeOccasion=Used +AssetType=Type of asset +AssetTypeIntangible=Intangible +AssetTypeTangible=Tangible +AssetTypeInProgress=In progress +AssetTypeFinancial=Financial +AssetNotDepreciated=Not depreciated +AssetDisposal=Disposal +AssetConfirmDisposalAsk=Are you sure you want to dispose of the asset %s? +AssetConfirmReOpenAsk=Are you sure you want to reopen the asset %s? + +# +# Asset status +# +AssetInProgress=In progress +AssetDisposed=Disposed +AssetRecorded=Accounted + +# +# Asset disposal +# +AssetDisposalDate=Date of disposal +AssetDisposalAmount=Disposal value +AssetDisposalType=Type of disposal +AssetDisposalDepreciated=Depreciate the year of transfer +AssetDisposalSubjectToVat=Disposal subject to VAT + +# +# Asset model +# +AssetModel=Asset's model +AssetModels=Asset's models + +# +# Asset depreciation options +# +AssetDepreciationOptionEconomic=Economic depreciation +AssetDepreciationOptionAcceleratedDepreciation=Accelerated depreciation (tax) +AssetDepreciationOptionDepreciationType=Depreciation type +AssetDepreciationOptionDepreciationTypeLinear=Linear +AssetDepreciationOptionDepreciationTypeDegressive=Degressive +AssetDepreciationOptionDepreciationTypeExceptional=Exceptional +AssetDepreciationOptionDegressiveRate=Degressive rate +AssetDepreciationOptionAcceleratedDepreciation=Accelerated depreciation (tax) +AssetDepreciationOptionDuration=Duration +AssetDepreciationOptionDurationType=Type duration +AssetDepreciationOptionDurationTypeAnnual=Annual +AssetDepreciationOptionDurationTypeMonthly=Monthly +AssetDepreciationOptionDurationTypeDaily=Daily +AssetDepreciationOptionRate=Rate (%%) +AssetDepreciationOptionAmountBaseDepreciationHT=Depreciation base (excl. VAT) +AssetDepreciationOptionAmountBaseDeductibleHT=Deductible base (excl. VAT) +AssetDepreciationOptionTotalAmountLastDepreciationHT=Total amount last depreciation (excl. VAT) + +# +# Asset accountancy codes +# +AssetAccountancyCodeDepreciationEconomic=Economic depreciation +AssetAccountancyCodeAsset=Asset +AssetAccountancyCodeDepreciationAsset=Depreciation +AssetAccountancyCodeDepreciationExpense=Depreciation expense +AssetAccountancyCodeValueAssetSold=Value of asset disposed +AssetAccountancyCodeReceivableOnAssignment=Receivable on disposal +AssetAccountancyCodeProceedsFromSales=Proceeds from disposal +AssetAccountancyCodeVatCollected=Collected VAT +AssetAccountancyCodeVatDeductible=Recovered VAT on assets +AssetAccountancyCodeDepreciationAcceleratedDepreciation=Accelerated depreciation (tax) +AssetAccountancyCodeAcceleratedDepreciation=Account +AssetAccountancyCodeEndowmentAcceleratedDepreciation=Depreciation expense +AssetAccountancyCodeProvisionAcceleratedDepreciation=Repossession/Provision + +# +# Asset depreciation +# +AssetBaseDepreciationHT=Depreciation basis (excl. VAT) +AssetDepreciationBeginDate=Start of depreciation on +AssetDepreciationDuration=Duration +AssetDepreciationRate=Rate (%%) +AssetDepreciationDate=Depreciation date +AssetDepreciationHT=Depreciation (excl. VAT) +AssetCumulativeDepreciationHT=Cumulative depreciation (excl. VAT) +AssetResidualHT=Residual value (excl. VAT) +AssetDispatchedInBookkeeping=Depreciation recorded +AssetFutureDepreciationLine=Future depreciation +AssetDepreciationReversal=Reversal + +# +# Errors +# +AssetErrorAssetOrAssetModelIDNotProvide=Id of the asset or the model sound has not been provided +AssetErrorFetchAccountancyCodesForMode=Error when retrieving the accounting accounts for the '%s' depreciation mode +AssetErrorDeleteAccountancyCodesForMode=Error when deleting accounting accounts from the '%s' depreciation mode +AssetErrorInsertAccountancyCodesForMode=Error when inserting the accounting accounts of the depreciation mode '%s' +AssetErrorFetchDepreciationOptionsForMode=Error when retrieving options for the '%s' depreciation mode +AssetErrorDeleteDepreciationOptionsForMode=Error when deleting the '%s' depreciation mode options +AssetErrorInsertDepreciationOptionsForMode=Error when inserting the '%s' depreciation mode options +AssetErrorFetchDepreciationLines=Error when retrieving recorded depreciation lines +AssetErrorClearDepreciationLines=Error when purging recorded depreciation lines (reversal and future) +AssetErrorAddDepreciationLine=Error when adding a depreciation line +AssetErrorCalculationDepreciationLines=Error when calculating the depreciation lines (recovery and future) +AssetErrorReversalDateNotProvidedForMode=The reversal date is not provided for the '%s' depreciation method +AssetErrorReversalDateNotGreaterThanCurrentBeginFiscalDateForMode=The reversal date must be greater than or equal to the beginning of the current fiscal year for the '%s' depreciation method +AssetErrorReversalAmountNotProvidedForMode=The reversal amount is not provided for the depreciation mode '%s'. +AssetErrorFetchCumulativeDepreciation=Error when retrieving the accumulated depreciation amount from the depreciation line +AssetErrorSetLastCumulativeDepreciation=Error when recording the last accumulated depreciation amount diff --git a/htdocs/langs/ms_MY/banks.lang b/htdocs/langs/ms_MY/banks.lang new file mode 100644 index 00000000000..10ba859e71f --- /dev/null +++ b/htdocs/langs/ms_MY/banks.lang @@ -0,0 +1,187 @@ +# Dolibarr language file - Source file is en_US - banks +Bank=Bank +MenuBankCash=Banks | Cash +MenuVariousPayment=Miscellaneous payments +MenuNewVariousPayment=New Miscellaneous payment +BankName=Bank name +FinancialAccount=Account +BankAccount=Bank account +BankAccounts=Bank accounts +BankAccountsAndGateways=Bank accounts | Gateways +ShowAccount=Show Account +AccountRef=Financial account ref +AccountLabel=Financial account label +CashAccount=Cash account +CashAccounts=Cash accounts +CurrentAccounts=Current accounts +SavingAccounts=Savings accounts +ErrorBankLabelAlreadyExists=Financial account label already exists +BankBalance=Balance +BankBalanceBefore=Balance before +BankBalanceAfter=Balance after +BalanceMinimalAllowed=Minimum allowed balance +BalanceMinimalDesired=Minimum desired balance +InitialBankBalance=Initial balance +EndBankBalance=End balance +CurrentBalance=Current balance +FutureBalance=Future balance +ShowAllTimeBalance=Show balance from start +AllTime=From start +Reconciliation=Reconciliation +RIB=Bank Account Number +IBAN=IBAN number +BIC=BIC/SWIFT code +SwiftValid=BIC/SWIFT valid +SwiftNotValid=BIC/SWIFT not valid +IbanValid=BAN valid +IbanNotValid=BAN not valid +StandingOrders=Direct debit orders +StandingOrder=Direct debit order +PaymentByDirectDebit=Payment by direct debit +PaymentByBankTransfers=Payments by credit transfer +PaymentByBankTransfer=Payment by credit transfer +AccountStatement=Account statement +AccountStatementShort=Statement +AccountStatements=Account statements +LastAccountStatements=Last account statements +IOMonthlyReporting=Monthly reporting +BankAccountDomiciliation=Bank address +BankAccountCountry=Account country +BankAccountOwner=Account owner name +BankAccountOwnerAddress=Account owner address +CreateAccount=Create account +NewBankAccount=New account +NewFinancialAccount=New financial account +MenuNewFinancialAccount=New financial account +EditFinancialAccount=Edit account +LabelBankCashAccount=Bank or cash label +AccountType=Account type +BankType0=Savings account +BankType1=Current or credit card account +BankType2=Cash account +AccountsArea=Accounts area +AccountCard=Account card +DeleteAccount=Delete account +ConfirmDeleteAccount=Are you sure you want to delete this account? +Account=Account +BankTransactionByCategories=Bank entries by categories +BankTransactionForCategory=Bank entries for category %s +RemoveFromRubrique=Remove link with category +RemoveFromRubriqueConfirm=Are you sure you want to remove link between the entry and the category? +ListBankTransactions=List of bank entries +IdTransaction=Transaction ID +BankTransactions=Bank entries +BankTransaction=Bank entry +ListTransactions=List entries +ListTransactionsByCategory=List entries/category +TransactionsToConciliate=Entries to reconcile +TransactionsToConciliateShort=To reconcile +Conciliable=Can be reconciled +Conciliate=Reconcile +Conciliation=Reconciliation +SaveStatementOnly=Save statement only +ReconciliationLate=Reconciliation late +IncludeClosedAccount=Include closed accounts +OnlyOpenedAccount=Only open accounts +AccountToCredit=Account to credit +AccountToDebit=Account to debit +DisableConciliation=Disable reconciliation feature for this account +ConciliationDisabled=Reconciliation feature disabled +LinkedToAConciliatedTransaction=Linked to a conciliated entry +StatusAccountOpened=Open +StatusAccountClosed=Closed +AccountIdShort=Number +LineRecord=Transaction +AddBankRecord=Add entry +AddBankRecordLong=Add entry manually +Conciliated=Reconciled +ReConciliedBy=Reconciled by +DateConciliating=Reconcile date +BankLineConciliated=Entry reconciled with bank receipt +BankLineReconciled=Reconciled +BankLineNotReconciled=Not reconciled +CustomerInvoicePayment=Customer payment +SupplierInvoicePayment=Vendor payment +SubscriptionPayment=Subscription payment +WithdrawalPayment=Debit payment order +SocialContributionPayment=Social/fiscal tax payment +BankTransfer=Credit transfer +BankTransfers=Credit transfers +MenuBankInternalTransfer=Internal transfer +TransferDesc=Use internal transfer to transfer from one account to another, the application will write two records: a debit in the source account and a credit in the target account. The same amount, label and date will be used for this transaction. +TransferFrom=From +TransferTo=To +TransferFromToDone=A transfer from %s to %s of %s %s has been recorded. +CheckTransmitter=Sender +ValidateCheckReceipt=Validate this check receipt? +ConfirmValidateCheckReceipt=Are you sure that you want to submit this check receipt for validation? No changes will be possible once validated. +DeleteCheckReceipt=Delete this check receipt? +ConfirmDeleteCheckReceipt=Are you sure you want to delete this check receipt? +BankChecks=Bank checks +BankChecksToReceipt=Checks awaiting deposit +BankChecksToReceiptShort=Checks awaiting deposit +ShowCheckReceipt=Show check deposit receipt +NumberOfCheques=No. of check +DeleteTransaction=Delete entry +ConfirmDeleteTransaction=Are you sure you want to delete this entry? +ThisWillAlsoDeleteBankRecord=This will also delete generated bank entry +BankMovements=Movements +PlannedTransactions=Planned entries +Graph=Graphs +ExportDataset_banque_1=Bank entries and account statement +ExportDataset_banque_2=Deposit slip +TransactionOnTheOtherAccount=Transaction on the other account +PaymentNumberUpdateSucceeded=Payment number updated successfully +PaymentNumberUpdateFailed=Payment number could not be updated +PaymentDateUpdateSucceeded=Payment date updated successfully +PaymentDateUpdateFailed=Payment date could not be updated +Transactions=Transactions +BankTransactionLine=Bank entry +AllAccounts=All bank and cash accounts +BackToAccount=Back to account +ShowAllAccounts=Show for all accounts +FutureTransaction=Future transaction. Unable to reconcile. +SelectChequeTransactionAndGenerate=Select/filter the checks which are to be included in the check deposit receipt. Then, click on "Create". +InputReceiptNumber=Choose the bank statement related with the conciliation. Use a sortable numeric value: YYYYMM or YYYYMMDD +EventualyAddCategory=Eventually, specify a category in which to classify the records +ToConciliate=To reconcile? +ThenCheckLinesAndConciliate=Then, check the lines present in the bank statement and click +DefaultRIB=Default BAN +AllRIB=All BAN +LabelRIB=BAN Label +NoBANRecord=No BAN record +DeleteARib=Delete BAN record +ConfirmDeleteRib=Are you sure you want to delete this BAN record? +RejectCheck=Check returned +ConfirmRejectCheck=Are you sure you want to mark this check as rejected? +RejectCheckDate=Date the check was returned +CheckRejected=Check returned +CheckRejectedAndInvoicesReopened=Check returned and invoices re-open +BankAccountModelModule=Document templates for bank accounts +DocumentModelSepaMandate=Template of SEPA mandate. Useful for European countries in EEC only. +DocumentModelBan=Template to print a page with BAN information. +NewVariousPayment=New miscellaneous payment +VariousPayment=Miscellaneous payment +VariousPayments=Miscellaneous payments +ShowVariousPayment=Show miscellaneous payment +AddVariousPayment=Add miscellaneous payment +VariousPaymentId=Miscellaneous payment ID +VariousPaymentLabel=Miscellaneous payment label +ConfirmCloneVariousPayment=Confirm the clone of a miscellaneous payment +SEPAMandate=SEPA mandate +YourSEPAMandate=Your SEPA mandate +FindYourSEPAMandate=This is your SEPA mandate to authorize our company to make direct debit order to your bank. Return it signed (scan of the signed document) or send it by mail to +AutoReportLastAccountStatement=Automatically fill the field 'number of bank statement' with last statement number when making reconciliation +CashControl=POS cash control +NewCashFence=New cash control (opening or closing) +BankColorizeMovement=Colorize movements +BankColorizeMovementDesc=If this function is enable, you can choose specific background color for debit or credit movements +BankColorizeMovementName1=Background color for debit movement +BankColorizeMovementName2=Background color for credit movement +IfYouDontReconcileDisableProperty=If you don't make the bank reconciliations on some bank accounts, disable the property "%s" on them to remove this warning. +NoBankAccountDefined=No bank account defined +NoRecordFoundIBankcAccount=No record found in bank account. Commonly, this occurs when a record has been deleted manually from the list of transaction in the bank account (for example during a reconciliation of the bank account). Another reason is that the payment was recorded when the module "%s" was disabled. +AlreadyOneBankAccount=Already one bank account defined +SEPAXMLPlacePaymentTypeInformationInCreditTransfertransactionInformation=SEPA transfer: 'Payment Type' at 'Credit Transfer' level +SEPAXMLPlacePaymentTypeInformationInCreditTransfertransactionInformationHelp=When generatin a SEPA XML file for Credit transfers, the section "PaymentTypeInformation" can now be placed inside the "CreditTransferTransactionInformation" section (instead of "Payment" section). We strongly recommend to keep this unchecked to place PaymentTypeInformation at Payment level, as all banks will not necessarily accept it at CreditTransferTransactionInformation level. Contact your bank before placing PaymentTypeInformation at CreditTransferTransactionInformation level. +ToCreateRelatedRecordIntoBank=To create missing related bank record diff --git a/htdocs/langs/ms_MY/bills.lang b/htdocs/langs/ms_MY/bills.lang new file mode 100644 index 00000000000..232b3bb02bd --- /dev/null +++ b/htdocs/langs/ms_MY/bills.lang @@ -0,0 +1,623 @@ +# Dolibarr language file - Source file is en_US - bills +Bill=Invoice +Bills=Invoices +BillsCustomers=Customer invoices +BillsCustomer=Customer invoice +BillsSuppliers=Vendor invoices +BillsCustomersUnpaid=Unpaid customer invoices +BillsCustomersUnpaidForCompany=Unpaid customer invoices for %s +BillsSuppliersUnpaid=Unpaid vendor invoices +BillsSuppliersUnpaidForCompany=Unpaid vendors invoices for %s +BillsLate=Late payments +BillsStatistics=Customers invoices statistics +BillsStatisticsSuppliers=Vendors invoices statistics +DisabledBecauseDispatchedInBookkeeping=Disabled because invoice was dispatched into bookkeeping +DisabledBecauseNotLastInvoice=Disabled because invoice is not erasable. Some invoices were recorded after this one and it will create holes in the counter. +DisabledBecauseNotErasable=Disabled because cannot be erased +InvoiceStandard=Standard invoice +InvoiceStandardAsk=Standard invoice +InvoiceStandardDesc=This kind of invoice is the common invoice. +InvoiceDeposit=Down payment invoice +InvoiceDepositAsk=Down payment invoice +InvoiceDepositDesc=This kind of invoice is done when a down payment has been received. +InvoiceProForma=Proforma invoice +InvoiceProFormaAsk=Proforma invoice +InvoiceProFormaDesc=Proforma invoice is an image of a true invoice but has no accountancy value. +InvoiceReplacement=Replacement invoice +InvoiceReplacementAsk=Replacement invoice for invoice +InvoiceReplacementDesc=Replacement invoice is used to completely replace an invoice with no payment already received.

Note: Only invoices with no payment on it can be replaced. If the invoice you replace is not yet closed, it will be automatically closed to 'abandoned'. +InvoiceAvoir=Credit note +InvoiceAvoirAsk=Credit note to correct invoice +InvoiceAvoirDesc=The credit note is a negative invoice used to correct the fact that an invoice shows an amount that differs from the amount actually paid (eg the customer paid too much by mistake, or will not pay the complete amount since some products were returned). +invoiceAvoirWithLines=Create Credit Note with lines from the origin invoice +invoiceAvoirWithPaymentRestAmount=Create Credit Note with remaining unpaid of origin invoice +invoiceAvoirLineWithPaymentRestAmount=Credit Note for remaining unpaid amount +ReplaceInvoice=Replace invoice %s +ReplacementInvoice=Replacement invoice +ReplacedByInvoice=Replaced by invoice %s +ReplacementByInvoice=Replaced by invoice +CorrectInvoice=Correct invoice %s +CorrectionInvoice=Correction invoice +UsedByInvoice=Used to pay invoice %s +ConsumedBy=Consumed by +NotConsumed=Not consumed +NoReplacableInvoice=No replaceable invoices +NoInvoiceToCorrect=No invoice to correct +InvoiceHasAvoir=Was source of one or several credit notes +CardBill=Invoice card +PredefinedInvoices=Predefined Invoices +Invoice=Invoice +PdfInvoiceTitle=Invoice +Invoices=Invoices +InvoiceLine=Invoice line +InvoiceCustomer=Customer invoice +CustomerInvoice=Customer invoice +CustomersInvoices=Customer invoices +SupplierInvoice=Vendor invoice +SuppliersInvoices=Vendor invoices +SupplierInvoiceLines=Vendor invoice lines +SupplierBill=Vendor invoice +SupplierBills=Vendor invoices +Payment=Payment +PaymentBack=Refund +CustomerInvoicePaymentBack=Refund +Payments=Payments +PaymentsBack=Refunds +paymentInInvoiceCurrency=in invoices currency +PaidBack=Paid back +DeletePayment=Delete payment +ConfirmDeletePayment=Are you sure you want to delete this payment? +ConfirmConvertToReduc=Do you want to convert this %s into an available credit? +ConfirmConvertToReduc2=The amount will be saved among all discounts and could be used as a discount for a current or a future invoice for this customer. +ConfirmConvertToReducSupplier=Do you want to convert this %s into an available credit? +ConfirmConvertToReducSupplier2=The amount will be saved among all discounts and could be used as a discount for a current or a future invoice for this vendor. +SupplierPayments=Vendor payments +ReceivedPayments=Received payments +ReceivedCustomersPayments=Payments received from customers +PayedSuppliersPayments=Payments paid to vendors +ReceivedCustomersPaymentsToValid=Received customers payments to validate +PaymentsReportsForYear=Payments reports for %s +PaymentsReports=Payments reports +PaymentsAlreadyDone=Payments already done +PaymentsBackAlreadyDone=Refunds already done +PaymentRule=Payment rule +PaymentMode=Payment method +PaymentModes=Payment methods +DefaultPaymentMode=Default Payment method +DefaultBankAccount=Default Bank Account +IdPaymentMode=Payment method (id) +CodePaymentMode=Payment method (code) +LabelPaymentMode=Payment method (label) +PaymentModeShort=Payment method +PaymentTerm=Payment Term +PaymentConditions=Payment Terms +PaymentConditionsShort=Payment Terms +PaymentAmount=Payment amount +PaymentHigherThanReminderToPay=Payment higher than reminder to pay +HelpPaymentHigherThanReminderToPay=Attention, the payment amount of one or more bills is higher than the outstanding amount to pay.
Edit your entry, otherwise confirm and consider creating a credit note for the excess received for each overpaid invoice. +HelpPaymentHigherThanReminderToPaySupplier=Attention, the payment amount of one or more bills is higher than the outstanding amount to pay.
Edit your entry, otherwise confirm and consider creating a credit note for the excess paid for each overpaid invoice. +ClassifyPaid=Classify 'Paid' +ClassifyUnPaid=Classify 'Unpaid' +ClassifyPaidPartially=Classify 'Paid partially' +ClassifyCanceled=Classify 'Abandoned' +ClassifyClosed=Classify 'Closed' +ClassifyUnBilled=Classify 'Unbilled' +CreateBill=Create Invoice +CreateCreditNote=Create credit note +AddBill=Create invoice or credit note +AddToDraftInvoices=Add to draft invoice +DeleteBill=Delete invoice +SearchACustomerInvoice=Search for a customer invoice +SearchASupplierInvoice=Search for a vendor invoice +CancelBill=Cancel an invoice +SendRemindByMail=Send reminder by email +DoPayment=Enter payment +DoPaymentBack=Enter refund +ConvertToReduc=Mark as credit available +ConvertExcessReceivedToReduc=Convert excess received into available credit +ConvertExcessPaidToReduc=Convert excess paid into available discount +EnterPaymentReceivedFromCustomer=Enter payment received from customer +EnterPaymentDueToCustomer=Make payment due to customer +DisabledBecauseRemainderToPayIsZero=Disabled because remaining unpaid is zero +PriceBase=Base price +BillStatus=Invoice status +StatusOfGeneratedInvoices=Status of generated invoices +BillStatusDraft=Draft (needs to be validated) +BillStatusPaid=Paid +BillStatusPaidBackOrConverted=Credit note refund or marked as credit available +BillStatusConverted=Paid (ready for consumption in final invoice) +BillStatusCanceled=Abandoned +BillStatusValidated=Validated (needs to be paid) +BillStatusStarted=Started +BillStatusNotPaid=Not paid +BillStatusNotRefunded=Not refunded +BillStatusClosedUnpaid=Closed (unpaid) +BillStatusClosedPaidPartially=Paid (partially) +BillShortStatusDraft=Draft +BillShortStatusPaid=Paid +BillShortStatusPaidBackOrConverted=Refunded or converted +Refunded=Refunded +BillShortStatusConverted=Paid +BillShortStatusCanceled=Abandoned +BillShortStatusValidated=Validated +BillShortStatusStarted=Started +BillShortStatusNotPaid=Not paid +BillShortStatusNotRefunded=Not refunded +BillShortStatusClosedUnpaid=Closed +BillShortStatusClosedPaidPartially=Paid (partially) +PaymentStatusToValidShort=To validate +ErrorVATIntraNotConfigured=Intra-Community VAT number not yet defined +ErrorNoPaiementModeConfigured=No default payment type defined. Go to Invoice module setup to fix this. +ErrorCreateBankAccount=Create a bank account, then go to Setup panel of Invoice module to define payment types +ErrorBillNotFound=Invoice %s does not exist +ErrorInvoiceAlreadyReplaced=Error, you tried to validate an invoice to replace invoice %s. But this one has already been replaced by invoice %s. +ErrorDiscountAlreadyUsed=Error, discount already used +ErrorInvoiceAvoirMustBeNegative=Error, correct invoice must have a negative amount +ErrorInvoiceOfThisTypeMustBePositive=Error, this type of invoice must have an amount excluding tax positive (or null) +ErrorCantCancelIfReplacementInvoiceNotValidated=Error, can't cancel an invoice that has been replaced by another invoice that is still in draft status +ErrorThisPartOrAnotherIsAlreadyUsedSoDiscountSerieCantBeRemoved=This part or another is already used so discount series cannot be removed. +ErrorInvoiceIsNotLastOfSameType=Error: The date of invoice %s is %s. It must be posterior or equal to last date for same type invoices (%s). Please change the invoice date. +BillFrom=From +BillTo=To +ActionsOnBill=Actions on invoice +RecurringInvoiceTemplate=Template / Recurring invoice +NoQualifiedRecurringInvoiceTemplateFound=No recurring template invoice qualified for generation. +FoundXQualifiedRecurringInvoiceTemplate=Found %s recurring template invoice(s) qualified for generation. +NotARecurringInvoiceTemplate=Not a recurring template invoice +NewBill=New invoice +LastBills=Latest %s invoices +LatestTemplateInvoices=Latest %s template invoices +LatestCustomerTemplateInvoices=Latest %s customer template invoices +LatestSupplierTemplateInvoices=Latest %s vendor template invoices +LastCustomersBills=Latest %s customer invoices +LastSuppliersBills=Latest %s vendor invoices +AllBills=All invoices +AllCustomerTemplateInvoices=All template invoices +OtherBills=Other invoices +DraftBills=Draft invoices +CustomersDraftInvoices=Customer draft invoices +SuppliersDraftInvoices=Vendor draft invoices +Unpaid=Unpaid +ErrorNoPaymentDefined=Error No payment defined +ConfirmDeleteBill=Are you sure you want to delete this invoice? +ConfirmValidateBill=Are you sure you want to validate this invoice with reference %s? +ConfirmUnvalidateBill=Are you sure you want to change invoice %s to draft status? +ConfirmClassifyPaidBill=Are you sure you want to change invoice %s to status paid? +ConfirmCancelBill=Are you sure you want to cancel invoice %s? +ConfirmCancelBillQuestion=Why do you want to classify this invoice 'abandoned'? +ConfirmClassifyPaidPartially=Are you sure you want to change invoice %s to status paid? +ConfirmClassifyPaidPartiallyQuestion=This invoice has not been paid completely. What is the reason for closing this invoice? +ConfirmClassifyPaidPartiallyReasonAvoir=Remaining unpaid (%s %s) is a discount granted because payment was made before term. I regularize the VAT with a credit note. +ConfirmClassifyPaidPartiallyReasonDiscount=Remaining unpaid (%s %s) is a discount granted because payment was made before term. +ConfirmClassifyPaidPartiallyReasonDiscountNoVat=Remaining unpaid (%s %s) is a discount granted because payment was made before term. I accept to lose the VAT on this discount. +ConfirmClassifyPaidPartiallyReasonDiscountVat=Remaining unpaid (%s %s) is a discount granted because payment was made before term. I recover the VAT on this discount without a credit note. +ConfirmClassifyPaidPartiallyReasonBadCustomer=Bad customer +ConfirmClassifyPaidPartiallyReasonBankCharge=Deduction by bank (intermediary bank fees) +ConfirmClassifyPaidPartiallyReasonProductReturned=Products partially returned +ConfirmClassifyPaidPartiallyReasonOther=Amount abandoned for other reason +ConfirmClassifyPaidPartiallyReasonDiscountNoVatDesc=This choice is possible if your invoice has been provided with suitable comments. (Example «Only the tax corresponding to the price that has been actually paid gives rights to deduction») +ConfirmClassifyPaidPartiallyReasonDiscountVatDesc=In some countries, this choice might be possible only if your invoice contains correct notes. +ConfirmClassifyPaidPartiallyReasonAvoirDesc=Use this choice if all other does not suit +ConfirmClassifyPaidPartiallyReasonBadCustomerDesc=A bad customer is a customer that refuses to pay his debt. +ConfirmClassifyPaidPartiallyReasonProductReturnedDesc=This choice is used when payment is not complete because some of products were returned +ConfirmClassifyPaidPartiallyReasonBankChargeDesc=The unpaid amount is intermediary bank fees, deducted directly from the correct amount paid by the Customer. +ConfirmClassifyPaidPartiallyReasonOtherDesc=Use this choice if all others are not suitable, for example in following situation:
- payment not complete because some products were shipped back
- amount claimed too important because a discount was forgotten
In all cases, amount over-claimed must be corrected in accountancy system by creating a credit note. +ConfirmClassifyAbandonReasonOther=Other +ConfirmClassifyAbandonReasonOtherDesc=This choice will be used in all other cases. For example because you plan to create a replacing invoice. +ConfirmCustomerPayment=Do you confirm this payment input for %s %s? +ConfirmSupplierPayment=Do you confirm this payment input for %s %s? +ConfirmValidatePayment=Are you sure you want to validate this payment? No change can be made once payment is validated. +ValidateBill=Validate invoice +UnvalidateBill=Unvalidate invoice +NumberOfBills=No. of invoices +NumberOfBillsByMonth=No. of invoices per month +AmountOfBills=Amount of invoices +AmountOfBillsHT=Amount of invoices (net of tax) +AmountOfBillsByMonthHT=Amount of invoices by month (net of tax) +UseSituationInvoices=Allow situation invoice +UseSituationInvoicesCreditNote=Allow situation invoice credit note +Retainedwarranty=Retained warranty +AllowedInvoiceForRetainedWarranty=Retained warranty usable on the following types of invoices +RetainedwarrantyDefaultPercent=Retained warranty default percent +RetainedwarrantyOnlyForSituation=Make "retained warranty" available only for situation invoices +RetainedwarrantyOnlyForSituationFinal=On situation invoices the global "retained warranty" deduction is applied only on the final situation +ToPayOn=To pay on %s +toPayOn=to pay on %s +RetainedWarranty=Retained Warranty +PaymentConditionsShortRetainedWarranty=Retained warranty payment terms +DefaultPaymentConditionsRetainedWarranty=Default retained warranty payment terms +setPaymentConditionsShortRetainedWarranty=Set retained warranty payment terms +setretainedwarranty=Set retained warranty +setretainedwarrantyDateLimit=Set retained warranty date limit +RetainedWarrantyDateLimit=Retained warranty date limit +RetainedWarrantyNeed100Percent=The situation invoice need to be at 100%% progress to be displayed on PDF +AlreadyPaid=Already paid +AlreadyPaidBack=Already paid back +AlreadyPaidNoCreditNotesNoDeposits=Already paid (without credit notes and down payments) +Abandoned=Abandoned +RemainderToPay=Remaining unpaid +RemainderToPayMulticurrency=Remaining unpaid, original currency +RemainderToTake=Remaining amount to take +RemainderToTakeMulticurrency=Remaining amount to take, original currency +RemainderToPayBack=Remaining amount to refund +RemainderToPayBackMulticurrency=Remaining amount to refund, original currency +NegativeIfExcessRefunded=negative if excess refunded +Rest=Pending +AmountExpected=Amount claimed +ExcessReceived=Excess received +ExcessReceivedMulticurrency=Excess received, original currency +NegativeIfExcessReceived=negative if excess received +ExcessPaid=Excess paid +ExcessPaidMulticurrency=Excess paid, original currency +EscompteOffered=Discount offered (payment before term) +EscompteOfferedShort=Discount +SendBillRef=Submission of invoice %s +SendReminderBillRef=Submission of invoice %s (reminder) +SendPaymentReceipt=Submission of payment receipt %s +NoDraftBills=No draft invoices +NoOtherDraftBills=No other draft invoices +NoDraftInvoices=No draft invoices +RefBill=Invoice ref +ToBill=To bill +RemainderToBill=Remainder to bill +SendBillByMail=Send invoice by email +SendReminderBillByMail=Send reminder by email +RelatedCommercialProposals=Related commercial proposals +RelatedRecurringCustomerInvoices=Related recurring customer invoices +MenuToValid=To valid +DateMaxPayment=Payment due on +DateInvoice=Invoice date +DatePointOfTax=Point of tax +NoInvoice=No invoice +NoOpenInvoice=No open invoice +NbOfOpenInvoices=Number of open invoices +ClassifyBill=Classify invoice +SupplierBillsToPay=Unpaid vendor invoices +CustomerBillsUnpaid=Unpaid customer invoices +NonPercuRecuperable=Non-recoverable +SetConditions=Set Payment Terms +SetMode=Set Payment Type +SetRevenuStamp=Set revenue stamp +Billed=Billed +RecurringInvoices=Recurring invoices +RecurringInvoice=Recurring invoice +RepeatableInvoice=Template invoice +RepeatableInvoices=Template invoices +RecurringInvoicesJob=Generation of recurring invoices (sales invoices) +RecurringSupplierInvoicesJob=Generation of recurring invoices (purchase invoices) +Repeatable=Template +Repeatables=Templates +ChangeIntoRepeatableInvoice=Convert into template invoice +CreateRepeatableInvoice=Create template invoice +CreateFromRepeatableInvoice=Create from template invoice +CustomersInvoicesAndInvoiceLines=Customer invoices and invoice details +CustomersInvoicesAndPayments=Customer invoices and payments +ExportDataset_invoice_1=Customer invoices and invoice details +ExportDataset_invoice_2=Customer invoices and payments +ProformaBill=Proforma Bill: +Reduction=Reduction +ReductionShort=Disc. +Reductions=Reductions +ReductionsShort=Disc. +Discounts=Discounts +AddDiscount=Create discount +AddRelativeDiscount=Create relative discount +EditRelativeDiscount=Edit relative discount +AddGlobalDiscount=Create absolute discount +EditGlobalDiscounts=Edit absolute discounts +AddCreditNote=Create credit note +ShowDiscount=Show discount +ShowReduc=Show the discount +ShowSourceInvoice=Show the source invoice +RelativeDiscount=Relative discount +GlobalDiscount=Global discount +CreditNote=Credit note +CreditNotes=Credit notes +CreditNotesOrExcessReceived=Credit notes or excess received +Deposit=Down payment +Deposits=Down payments +DiscountFromCreditNote=Discount from credit note %s +DiscountFromDeposit=Down payments from invoice %s +DiscountFromExcessReceived=Payments in excess of invoice %s +DiscountFromExcessPaid=Payments in excess of invoice %s +AbsoluteDiscountUse=This kind of credit can be used on invoice before its validation +CreditNoteDepositUse=Invoice must be validated to use this kind of credits +NewGlobalDiscount=New absolute discount +NewRelativeDiscount=New relative discount +DiscountType=Discount type +NoteReason=Note/Reason +ReasonDiscount=Reason +DiscountOfferedBy=Granted by +DiscountStillRemaining=Discounts or credits available +DiscountAlreadyCounted=Discounts or credits already consumed +CustomerDiscounts=Customer discounts +SupplierDiscounts=Vendors discounts +BillAddress=Bill address +HelpEscompte=This discount is a discount granted to customer because payment was made before term. +HelpAbandonBadCustomer=This amount has been abandoned (customer said to be a bad customer) and is considered as an exceptional loss. +HelpAbandonOther=This amount has been abandoned since it was an error (wrong customer or invoice replaced by another for example) +IdSocialContribution=Social/fiscal tax payment id +PaymentId=Payment id +PaymentRef=Payment ref. +InvoiceId=Invoice id +InvoiceRef=Invoice ref. +InvoiceDateCreation=Invoice creation date +InvoiceStatus=Invoice status +InvoiceNote=Invoice note +InvoicePaid=Invoice paid +InvoicePaidCompletely=Paid completely +InvoicePaidCompletelyHelp=Invoice that are paid completely. This excludes invoices that are paid partially. To get list of all 'Closed' or non 'Closed' invoices, prefer to use a filter on the invoice status. +OrderBilled=Order billed +DonationPaid=Donation paid +PaymentNumber=Payment number +RemoveDiscount=Remove discount +WatermarkOnDraftBill=Watermark on draft invoices (nothing if empty) +InvoiceNotChecked=No invoice selected +ConfirmCloneInvoice=Are you sure you want to clone this invoice %s? +DisabledBecauseReplacedInvoice=Action disabled because invoice has been replaced +DescTaxAndDividendsArea=This area presents a summary of all payments made for special expenses. Only records with payments during the fixed year are included here. +NbOfPayments=No. of payments +SplitDiscount=Split discount in two +ConfirmSplitDiscount=Are you sure you want to split this discount of %s %s into two smaller discounts? +TypeAmountOfEachNewDiscount=Input amount for each of two parts: +TotalOfTwoDiscountMustEqualsOriginal=The total of the two new discounts must be equal to the original discount amount. +ConfirmRemoveDiscount=Are you sure you want to remove this discount? +RelatedBill=Related invoice +RelatedBills=Related invoices +RelatedCustomerInvoices=Related customer invoices +RelatedSupplierInvoices=Related vendor invoices +LatestRelatedBill=Latest related invoice +WarningBillExist=Warning, one or more invoices already exist +MergingPDFTool=Merging PDF tool +AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice +PaymentOnDifferentThirdBills=Allow payments on different third parties bills but same parent company +PaymentNote=Payment note +ListOfPreviousSituationInvoices=List of previous situation invoices +ListOfNextSituationInvoices=List of next situation invoices +ListOfSituationInvoices=List of situation invoices +CurrentSituationTotal=Total current situation +DisabledBecauseNotEnouthCreditNote=To remove a situation invoice from cycle, this invoice's credit note total must cover this invoice total +RemoveSituationFromCycle=Remove this invoice from cycle +ConfirmRemoveSituationFromCycle=Remove this invoice %s from cycle ? +ConfirmOuting=Confirm outing +FrequencyPer_d=Every %s days +FrequencyPer_m=Every %s months +FrequencyPer_y=Every %s years +FrequencyUnit=Frequency unit +toolTipFrequency=Examples:
Set 7, Day: give a new invoice every 7 days
Set 3, Month: give a new invoice every 3 month +NextDateToExecution=Date for next invoice generation +NextDateToExecutionShort=Date next gen. +DateLastGeneration=Date of latest generation +DateLastGenerationShort=Date latest gen. +MaxPeriodNumber=Max. number of invoice generation +NbOfGenerationDone=Number of invoice generation already done +NbOfGenerationOfRecordDone=Number of record generation already done +NbOfGenerationDoneShort=Number of generation done +MaxGenerationReached=Maximum number of generations reached +InvoiceAutoValidate=Validate invoices automatically +GeneratedFromRecurringInvoice=Generated from template recurring invoice %s +DateIsNotEnough=Date not reached yet +InvoiceGeneratedFromTemplate=Invoice %s generated from recurring template invoice %s +GeneratedFromTemplate=Generated from template invoice %s +WarningInvoiceDateInFuture=Warning, the invoice date is higher than current date +WarningInvoiceDateTooFarInFuture=Warning, the invoice date is too far from current date +ViewAvailableGlobalDiscounts=View available discounts +GroupPaymentsByModOnReports=Group payments by mode on reports +# PaymentConditions +Statut=Status +PaymentConditionShortRECEP=Due Upon Receipt +PaymentConditionRECEP=Due Upon Receipt +PaymentConditionShort30D=30 days +PaymentCondition30D=30 days +PaymentConditionShort30DENDMONTH=30 days of month-end +PaymentCondition30DENDMONTH=Within 30 days following the end of the month +PaymentConditionShort60D=60 days +PaymentCondition60D=60 days +PaymentConditionShort60DENDMONTH=60 days of month-end +PaymentCondition60DENDMONTH=Within 60 days following the end of the month +PaymentConditionShortPT_DELIVERY=Delivery +PaymentConditionPT_DELIVERY=On delivery +PaymentConditionShortPT_ORDER=Order +PaymentConditionPT_ORDER=On order +PaymentConditionShortPT_5050=50-50 +PaymentConditionPT_5050=50%% in advance, 50%% on delivery +PaymentConditionShort10D=10 days +PaymentCondition10D=10 days +PaymentConditionShort10DENDMONTH=10 days of month-end +PaymentCondition10DENDMONTH=Within 10 days following the end of the month +PaymentConditionShort14D=14 days +PaymentCondition14D=14 days +PaymentConditionShort14DENDMONTH=14 days of month-end +PaymentCondition14DENDMONTH=Within 14 days following the end of the month +PaymentConditionShortDEP30PCTDEL=__DEPOSIT_PERCENT__%% deposit +PaymentConditionDEP30PCTDEL=__DEPOSIT_PERCENT__%% deposit, remainder on delivery +FixAmount=Fixed amount - 1 line with label '%s' +VarAmount=Variable amount (%% tot.) +VarAmountOneLine=Variable amount (%% tot.) - 1 line with label '%s' +VarAmountAllLines=Variable amount (%% tot.) - all lines from origin +DepositPercent=Deposit %% +DepositGenerationPermittedByThePaymentTermsSelected=This is permitted by the payment terms selected +GenerateDeposit=Generate a %s%% deposit invoice +ValidateGeneratedDeposit=Validate the generated deposit +DepositGenerated=Deposit generated +ErrorCanOnlyAutomaticallyGenerateADepositFromProposalOrOrder=You can only automatically generate a deposit from a proposal or an order +ErrorPaymentConditionsNotEligibleToDepositCreation=The chose payment conditions are not eligible for automatic deposit generation +# PaymentType +PaymentTypeVIR=Bank transfer +PaymentTypeShortVIR=Bank transfer +PaymentTypePRE=Direct debit payment order +PaymentTypeShortPRE=Debit payment order +PaymentTypeLIQ=Cash +PaymentTypeShortLIQ=Cash +PaymentTypeCB=Credit card +PaymentTypeShortCB=Credit card +PaymentTypeCHQ=Check +PaymentTypeShortCHQ=Check +PaymentTypeTIP=TIP (Documents against Payment) +PaymentTypeShortTIP=TIP Payment +PaymentTypeVAD=Online payment +PaymentTypeShortVAD=Online payment +PaymentTypeTRA=Bank draft +PaymentTypeShortTRA=Draft +PaymentTypeFAC=Factor +PaymentTypeShortFAC=Factor +PaymentTypeDC=Debit/Credit Card +PaymentTypePP=PayPal +BankDetails=Bank details +BankCode=Bank code +DeskCode=Branch code +BankAccountNumber=Account number +BankAccountNumberKey=Checksum +Residence=Address +IBANNumber=IBAN account number +IBAN=IBAN +CustomerIBAN=IBAN of customer +SupplierIBAN=IBAN of vendor +BIC=BIC/SWIFT +BICNumber=BIC/SWIFT code +ExtraInfos=Extra infos +RegulatedOn=Regulated on +ChequeNumber=Check N° +ChequeOrTransferNumber=Check/Transfer N° +ChequeBordereau=Check schedule +ChequeMaker=Check/Transfer sender +ChequeBank=Bank of Check +CheckBank=Check +NetToBePaid=Net to be paid +PhoneNumber=Tel +FullPhoneNumber=Telephone +TeleFax=Fax +PrettyLittleSentence=Accept the amount of payments due by checks issued in my name as a Member of an accounting association approved by the Fiscal Administration. +IntracommunityVATNumber=Intra-Community VAT ID +PaymentByChequeOrderedTo=Check payments (including tax) are payable to %s, send to +PaymentByChequeOrderedToShort=Check payments (incl. tax) are payable to +SendTo=sent to +PaymentByTransferOnThisBankAccount=Payment by transfer to the following bank account +VATIsNotUsedForInvoice=* Non applicable VAT art-293B of CGI +VATIsNotUsedForInvoiceAsso=* Non applicable VAT art-261-7 of CGI +LawApplicationPart1=By application of the law 80.335 of 12/05/80 +LawApplicationPart2=the goods remain the property of +LawApplicationPart3=the seller until full payment of +LawApplicationPart4=their price. +LimitedLiabilityCompanyCapital=SARL with Capital of +UseLine=Apply +UseDiscount=Use discount +UseCredit=Use credit +UseCreditNoteInInvoicePayment=Reduce amount to pay with this credit +MenuChequeDeposits=Check Deposits +MenuCheques=Checks +MenuChequesReceipts=Check receipts +NewChequeDeposit=New deposit +ChequesReceipts=Check receipts +ChequesArea=Check deposits area +ChequeDeposits=Check deposits +Cheques=Checks +DepositId=Id deposit +NbCheque=Number of checks +CreditNoteConvertedIntoDiscount=This %s has been converted into %s +UsBillingContactAsIncoiveRecipientIfExist=Use contact/address with type 'billing contact' instead of third-party address as recipient for invoices +ShowUnpaidAll=Show all unpaid invoices +ShowUnpaidLateOnly=Show late unpaid invoices only +PaymentInvoiceRef=Payment invoice %s +ValidateInvoice=Validate invoice +ValidateInvoices=Validate invoices +Cash=Cash +Reported=Delayed +DisabledBecausePayments=Not possible since there are some payments +CantRemovePaymentWithOneInvoicePaid=Can't remove payment since there is at least one invoice classified paid +CantRemovePaymentVATPaid=Can't remove payment since VAT declaration is classified paid +CantRemovePaymentSalaryPaid=Can't remove payment since salary is classified paid +ExpectedToPay=Expected payment +CantRemoveConciliatedPayment=Can't remove reconciled payment +PayedByThisPayment=Paid by this payment +ClosePaidInvoicesAutomatically=Classify automatically all standard, down payment or replacement invoices as "Paid" when payment is done entirely. +ClosePaidCreditNotesAutomatically=Classify automatically all credit notes as "Paid" when refund is done entirely. +ClosePaidContributionsAutomatically=Classify automatically all social or fiscal contributions as "Paid" when payment is done entirely. +ClosePaidVATAutomatically=Classify automatically VAT declaration as "Paid" when payment is done entirely. +ClosePaidSalaryAutomatically=Classify automatically salary as "Paid" when payment is done entirely. +AllCompletelyPayedInvoiceWillBeClosed=All invoices with no remainder to pay will be automatically closed with status "Paid". +ToMakePayment=Pay +ToMakePaymentBack=Pay back +ListOfYourUnpaidInvoices=List of unpaid invoices +NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third parties you are linked to as a sale representative. +RevenueStamp=Tax stamp +YouMustCreateInvoiceFromThird=This option is only available when creating an invoice from tab "Customer" of third party +YouMustCreateInvoiceFromSupplierThird=This option is only available when creating an invoice from tab "Vendor" of third party +YouMustCreateStandardInvoiceFirstDesc=You have to create a standard invoice first and convert it to "template" to create a new template invoice +PDFCrabeDescription=Invoice PDF template Crabe. A complete invoice template (old implementation of Sponge template) +PDFSpongeDescription=Invoice PDF template Sponge. A complete invoice template +PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for situation invoices +TerreNumRefModelDesc1=Return number in the format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequencial auto-incrementing number with no break and no return to 0 +MarsNumRefModelDesc1=Return number in the format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for down payment invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequencial auto-incrementing number with no break and no return to 0 +TerreNumRefModelError=A bill starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module. +CactusNumRefModelDesc1=Return number in the format %syymm-nnnn for standard invoices, %syymm-nnnn for credit notes and %syymm-nnnn for down payment invoices where yy is year, mm is month and nnnn is a sequencial auto-incrementing number with no break and no return to 0 +EarlyClosingReason=Early closing reason +EarlyClosingComment=Early closing note +##### Types de contacts ##### +TypeContact_facture_internal_SALESREPFOLL=Representative following-up customer invoice +TypeContact_facture_external_BILLING=Customer invoice contact +TypeContact_facture_external_SHIPPING=Customer shipping contact +TypeContact_facture_external_SERVICE=Customer service contact +TypeContact_invoice_supplier_internal_SALESREPFOLL=Representative following-up vendor invoice +TypeContact_invoice_supplier_external_BILLING=Vendor invoice contact +TypeContact_invoice_supplier_external_SHIPPING=Vendor shipping contact +TypeContact_invoice_supplier_external_SERVICE=Vendor service contact +# Situation invoices +InvoiceFirstSituationAsk=First situation invoice +InvoiceFirstSituationDesc=The situation invoices are tied to situations related to a progression, for example the progression of a construction. Each situation is tied to an invoice. +InvoiceSituation=Situation invoice +PDFInvoiceSituation=Situation invoice +InvoiceSituationAsk=Invoice following the situation +InvoiceSituationDesc=Create a new situation following an already existing one +SituationAmount=Situation invoice amount(net) +SituationDeduction=Situation subtraction +ModifyAllLines=Modify all lines +CreateNextSituationInvoice=Create next situation +ErrorFindNextSituationInvoice=Error unable to find next situation cycle ref +ErrorOutingSituationInvoiceOnUpdate=Unable to outing this situation invoice. +ErrorOutingSituationInvoiceCreditNote=Unable to outing linked credit note. +NotLastInCycle=This invoice is not the latest in cycle and must not be modified. +DisabledBecauseNotLastInCycle=The next situation already exists. +DisabledBecauseFinal=This situation is final. +situationInvoiceShortcode_AS=AS +situationInvoiceShortcode_S=S +CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation. +NoSituations=No open situations +InvoiceSituationLast=Final and general invoice +PDFCrevetteSituationNumber=Situation N°%s +PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT +PDFCrevetteSituationInvoiceTitle=Situation invoice +PDFCrevetteSituationInvoiceLine=Situation N°%s: Inv. N°%s on %s +TotalSituationInvoice=Total situation +invoiceLineProgressError=Invoice line progress can't be greater than or equal to the next invoice line +updatePriceNextInvoiceErrorUpdateline=Error: update price on invoice line: %s +ToCreateARecurringInvoice=To create a recurring invoice for this contract, first create this draft invoice, then convert it into an invoice template and define the frequency for generation of future invoices. +ToCreateARecurringInvoiceGene=To generate future invoices regularly and manually, just go on menu %s - %s - %s. +ToCreateARecurringInvoiceGeneAuto=If you need to have such invoices generated automatically, ask your administrator to enable and setup module %s. Note that both methods (manual and automatic) can be used together with no risk of duplication. +DeleteRepeatableInvoice=Delete template invoice +ConfirmDeleteRepeatableInvoice=Are your sure you want to delete the template invoice? +CreateOneBillByThird=Create one invoice per third party (otherwise, one invoice per selected object) +BillCreated=%s invoice(s) generated +BillXCreated=Invoice %s generated +StatusOfGeneratedDocuments=Status of document generation +DoNotGenerateDoc=Do not generate document file +AutogenerateDoc=Auto generate document file +AutoFillDateFrom=Set start date for service line with invoice date +AutoFillDateFromShort=Set start date +AutoFillDateTo=Set end date for service line with next invoice date +AutoFillDateToShort=Set end date +MaxNumberOfGenerationReached=Max number of gen. reached +BILL_DELETEInDolibarr=Invoice deleted +BILL_SUPPLIER_DELETEInDolibarr=Supplier invoice deleted +UnitPriceXQtyLessDiscount=Unit price x Qty - Discount +CustomersInvoicesArea=Customer billing area +SupplierInvoicesArea=Supplier billing area +SituationTotalRayToRest=Remainder to pay without taxe +PDFSituationTitle=Situation n° %d +SituationTotalProgress=Total progress %d %% +SearchUnpaidInvoicesWithDueDate=Search unpaid invoices with a due date = %s +NoPaymentAvailable=No payment available for %s +PaymentRegisteredAndInvoiceSetToPaid=Payment registered and invoice %s set to paid +SendEmailsRemindersOnInvoiceDueDate=Send reminder by email for unpaid invoices +MakePaymentAndClassifyPayed=Record payment +BulkPaymentNotPossibleForInvoice=Bulk payment is not possible for invoice %s (bad type or status) diff --git a/htdocs/langs/ms_MY/blockedlog.lang b/htdocs/langs/ms_MY/blockedlog.lang new file mode 100644 index 00000000000..12f28737d49 --- /dev/null +++ b/htdocs/langs/ms_MY/blockedlog.lang @@ -0,0 +1,57 @@ +BlockedLog=Unalterable Logs +Field=Field +BlockedLogDesc=This module tracks some events into an unalterable log (that you can't modify once recorded) into a block chain, in real time. This module provides compatibility with requirements of laws of some countries (like France with the law Finance 2016 - Norme NF525). +Fingerprints=Archived events and fingerprints +FingerprintsDesc=This is the tool to browse or extract the unalterable logs. Unalterable logs are generated and archived locally into a dedicated table, in real time when you record a business event. You can use this tool to export this archive and save it into an external support (some countries, like France, ask that you do it every year). Note that, there is no feature to purge this log and every change tried to be done directly into this log (by a hacker for example) will be reported with a non-valid fingerprint. If you really need to purge this table because you used your application for a demo/test purpose and want to clean your data to start your production, you can ask your reseller or integrator to reset your database (all your data will be removed). +CompanyInitialKey=Company initial key (hash of genesis block) +BrowseBlockedLog=Unalterable logs +ShowAllFingerPrintsMightBeTooLong=Show all archived logs (might be long) +ShowAllFingerPrintsErrorsMightBeTooLong=Show all non-valid archive logs (might be long) +DownloadBlockChain=Download fingerprints +KoCheckFingerprintValidity=Archived log entry is not valid. It means someone (a hacker?) has modified some data of this record after it was recorded, or has erased the previous archived record (check that line with previous # exists) or has modified checksum of the previous record. +OkCheckFingerprintValidity=Archived log record is valid. The data on this line was not modified and the entry follows the previous one. +OkCheckFingerprintValidityButChainIsKo=Archived log seems valid compared to previous one but the chain was corrupted previously. +AddedByAuthority=Stored into remote authority +NotAddedByAuthorityYet=Not yet stored into remote authority +ShowDetails=Show stored details +logPAYMENT_VARIOUS_CREATE=Payment (not assigned to an invoice) created +logPAYMENT_VARIOUS_MODIFY=Payment (not assigned to an invoice) modified +logPAYMENT_VARIOUS_DELETE=Payment (not assigned to an invoice) logical deletion +logPAYMENT_ADD_TO_BANK=Payment added to bank +logPAYMENT_CUSTOMER_CREATE=Customer payment created +logPAYMENT_CUSTOMER_DELETE=Customer payment logical deletion +logDONATION_PAYMENT_CREATE=Donation payment created +logDONATION_PAYMENT_DELETE=Donation payment logical deletion +logBILL_PAYED=Customer invoice paid +logBILL_UNPAYED=Customer invoice set unpaid +logBILL_VALIDATE=Customer invoice validated +logBILL_SENTBYMAIL=Customer invoice send by mail +logBILL_DELETE=Customer invoice logically deleted +logMODULE_RESET=Module BlockedLog was disabled +logMODULE_SET=Module BlockedLog was enabled +logDON_VALIDATE=Donation validated +logDON_MODIFY=Donation modified +logDON_DELETE=Donation logical deletion +logMEMBER_SUBSCRIPTION_CREATE=Member subscription created +logMEMBER_SUBSCRIPTION_MODIFY=Member subscription modified +logMEMBER_SUBSCRIPTION_DELETE=Member subscription logical deletion +logCASHCONTROL_VALIDATE=Cash desk closing recording +BlockedLogBillDownload=Customer invoice download +BlockedLogBillPreview=Customer invoice preview +BlockedlogInfoDialog=Log Details +ListOfTrackedEvents=List of tracked events +Fingerprint=Fingerprint +DownloadLogCSV=Export archived logs (CSV) +logDOC_PREVIEW=Preview of a validated document in order to print or download +logDOC_DOWNLOAD=Download of a validated document in order to print or send +DataOfArchivedEvent=Full datas of archived event +ImpossibleToReloadObject=Original object (type %s, id %s) not linked (see 'Full datas' column to get unalterable saved data) +BlockedLogAreRequiredByYourCountryLegislation=Unalterable Logs module may be required by the legislation of your country. Disabling this module may render any future transactions invalid with respect to the law and the use of legal software as they can not be validated by a tax audit. +BlockedLogActivatedBecauseRequiredByYourCountryLegislation=Unalterable Logs module was activated because of the legislation of your country. Disabling this module may render any future transactions invalid with respect to the law and the use of legal software as they cannot be validated by a tax audit. +BlockedLogDisableNotAllowedForCountry=List of countries where usage of this module is mandatory (just to prevent to disable the module by error, if your country is in this list, disable of module is not possible without editing this list first. Note also that enabling/disabling this module will keep a track into the unalterable log). +OnlyNonValid=Non-valid +TooManyRecordToScanRestrictFilters=Too many records to scan/analyze. Please restrict list with more restrictive filters. +RestrictYearToExport=Restrict month / year to export +BlockedLogEnabled=System to track events into unalterable logs has been enabled +BlockedLogDisabled=System to track events into unalterable logs has been disabled after some recording were done. We saved a special Fingerprint to track the chain as broken +BlockedLogDisabledBis=System to track events into unalterable logs has been disabled. This is possible because no record were done yet. diff --git a/htdocs/langs/ms_MY/bookmarks.lang b/htdocs/langs/ms_MY/bookmarks.lang new file mode 100644 index 00000000000..be0f2f7e25d --- /dev/null +++ b/htdocs/langs/ms_MY/bookmarks.lang @@ -0,0 +1,22 @@ +# Dolibarr language file - Source file is en_US - marque pages +AddThisPageToBookmarks=Add current page to bookmarks +Bookmark=Bookmark +Bookmarks=Bookmarks +ListOfBookmarks=List of bookmarks +EditBookmarks=List/edit bookmarks +NewBookmark=New bookmark +ShowBookmark=Show bookmark +OpenANewWindow=Open a new tab +ReplaceWindow=Replace current tab +BookmarkTargetNewWindowShort=New tab +BookmarkTargetReplaceWindowShort=Current tab +BookmarkTitle=Bookmark name +UrlOrLink=URL +BehaviourOnClick=Behaviour when a bookmark URL is selected +CreateBookmark=Create bookmark +SetHereATitleForLink=Set a name for the bookmark +UseAnExternalHttpLinkOrRelativeDolibarrLink=Use an external/absolute link (https://externalurl.com) or an internal/relative link (/mypage.php). You can also use phone like tel:0123456. +ChooseIfANewWindowMustBeOpenedOnClickOnBookmark=Choose if the linked page should open in the current tab or a new tab +BookmarksManagement=Bookmarks management +BookmarksMenuShortCut=Ctrl + shift + m +NoBookmarks=No bookmarks defined diff --git a/htdocs/langs/ms_MY/boxes.lang b/htdocs/langs/ms_MY/boxes.lang new file mode 100644 index 00000000000..4173d5e4c7e --- /dev/null +++ b/htdocs/langs/ms_MY/boxes.lang @@ -0,0 +1,121 @@ +# Dolibarr language file - Source file is en_US - boxes +BoxDolibarrStateBoard=Statistics on main business objects in database +BoxLoginInformation=Login Information +BoxLastRssInfos=RSS Information +BoxLastProducts=Latest %s Products/Services +BoxProductsAlertStock=Stock alerts for products +BoxLastProductsInContract=Latest %s contracted products/services +BoxLastSupplierBills=Latest Vendor invoices +BoxLastCustomerBills=Latest Customer invoices +BoxOldestUnpaidCustomerBills=Oldest unpaid customer invoices +BoxOldestUnpaidSupplierBills=Oldest unpaid vendor invoices +BoxLastProposals=Latest commercial proposals +BoxLastProspects=Latest modified prospects +BoxLastCustomers=Latest modified customers +BoxLastSuppliers=Latest modified suppliers +BoxLastCustomerOrders=Latest sales orders +BoxLastActions=Latest actions +BoxLastContracts=Latest contracts +BoxLastContacts=Latest contacts/addresses +BoxLastMembers=Latest members +BoxLastModifiedMembers=Latest modified members +BoxLastMembersSubscriptions=Latest member subscriptions +BoxFicheInter=Latest interventions +BoxCurrentAccounts=Open accounts balance +BoxTitleMemberNextBirthdays=Birthdays of this month (members) +BoxTitleMembersByType=Members by type and status +BoxTitleMembersSubscriptionsByYear=Members Subscriptions by year +BoxTitleLastRssInfos=Latest %s news from %s +BoxTitleLastProducts=Products/Services: last %s modified +BoxTitleProductsAlertStock=Products: stock alert +BoxTitleLastSuppliers=Latest %s recorded suppliers +BoxTitleLastModifiedSuppliers=Vendors: last %s modified +BoxTitleLastModifiedCustomers=Customers: last %s modified +BoxTitleLastCustomersOrProspects=Latest %s customers or prospects +BoxTitleLastCustomerBills=Latest %s modified Customer invoices +BoxTitleLastSupplierBills=Latest %s modified Vendor invoices +BoxTitleLastModifiedProspects=Prospects: last %s modified +BoxTitleLastModifiedMembers=Latest %s members +BoxTitleLastFicheInter=Latest %s modified interventions +BoxTitleOldestUnpaidCustomerBills=Customer Invoices: oldest %s unpaid +BoxTitleOldestUnpaidSupplierBills=Vendor Invoices: oldest %s unpaid +BoxTitleCurrentAccounts=Open Accounts: balances +BoxTitleSupplierOrdersAwaitingReception=Supplier orders awaiting reception +BoxTitleLastModifiedContacts=Contacts/Addresses: last %s modified +BoxMyLastBookmarks=Bookmarks: latest %s +BoxOldestExpiredServices=Oldest active expired services +BoxLastExpiredServices=Latest %s oldest contacts with active expired services +BoxTitleLastActionsToDo=Latest %s actions to do +BoxTitleOldestActionsToDo=Oldest %s event to do not completed +BoxTitleLastContracts=Latest %s contracts which were modified +BoxTitleLastModifiedDonations=Latest %s donations which were modified +BoxTitleLastModifiedExpenses=Latest %s expense reports which were modified +BoxTitleLatestModifiedBoms=Latest %s BOMs which were modified +BoxTitleLatestModifiedMos=Latest %s Manufacturing Orders which were modified +BoxTitleLastOutstandingBillReached=Customers with maximum outstanding exceeded +BoxGlobalActivity=Global activity (invoices, proposals, orders) +BoxGoodCustomers=Good customers +BoxTitleGoodCustomers=%s Good customers +BoxScheduledJobs=Scheduled jobs +BoxTitleFunnelOfProspection=Lead funnel +FailedToRefreshDataInfoNotUpToDate=Failed to refresh RSS flux. Latest successful refresh date: %s +LastRefreshDate=Latest refresh date +NoRecordedBookmarks=No bookmarks defined. +ClickToAdd=Click here to add. +NoRecordedCustomers=No recorded customers +NoRecordedContacts=No recorded contacts +NoActionsToDo=No actions to do +NoRecordedOrders=No recorded sales orders +NoRecordedProposals=No recorded proposals +NoRecordedInvoices=No recorded customer invoices +NoUnpaidCustomerBills=No unpaid customer invoices +NoUnpaidSupplierBills=No unpaid vendor invoices +NoModifiedSupplierBills=No recorded vendor invoices +NoRecordedProducts=No recorded products/services +NoRecordedProspects=No recorded prospects +NoContractedProducts=No products/services contracted +NoRecordedContracts=No recorded contracts +NoRecordedInterventions=No recorded interventions +BoxLatestSupplierOrders=Latest purchase orders +BoxLatestSupplierOrdersAwaitingReception=Latest Purchase Orders (with a pending reception) +NoSupplierOrder=No recorded purchase order +BoxCustomersInvoicesPerMonth=Customer Invoices per month +BoxSuppliersInvoicesPerMonth=Vendor Invoices per month +BoxCustomersOrdersPerMonth=Sales Orders per month +BoxSuppliersOrdersPerMonth=Vendor Orders per month +BoxProposalsPerMonth=Proposals per month +NoTooLowStockProducts=No products are under the low stock limit +BoxProductDistribution=Products/Services Distribution +ForObject=On %s +BoxTitleLastModifiedSupplierBills=Vendor Invoices: last %s modified +BoxTitleLatestModifiedSupplierOrders=Vendor Orders: last %s modified +BoxTitleLastModifiedCustomerBills=Customer Invoices: last %s modified +BoxTitleLastModifiedCustomerOrders=Sales Orders: last %s modified +BoxTitleLastModifiedPropals=Latest %s modified proposals +BoxTitleLatestModifiedJobPositions=Latest %s modified job positions +BoxTitleLatestModifiedCandidatures=Latest %s modified job applications +ForCustomersInvoices=Customers invoices +ForCustomersOrders=Customers orders +ForProposals=Proposals +LastXMonthRolling=The latest %s month rolling +ChooseBoxToAdd=Add widget to your dashboard +BoxAdded=Widget was added in your dashboard +BoxTitleUserBirthdaysOfMonth=Birthdays of this month (users) +BoxLastManualEntries=Latest record in accountancy entered manually or without source document +BoxTitleLastManualEntries=%s latest record entered manually or without source document +NoRecordedManualEntries=No manual entries record in accountancy +BoxSuspenseAccount=Count accountancy operation with suspense account +BoxTitleSuspenseAccount=Number of unallocated lines +NumberOfLinesInSuspenseAccount=Number of line in suspense account +SuspenseAccountNotDefined=Suspense account isn't defined +BoxLastCustomerShipments=Last customer shipments +BoxTitleLastCustomerShipments=Latest %s customer shipments +NoRecordedShipments=No recorded customer shipment +BoxCustomersOutstandingBillReached=Customers with oustanding limit reached +# Pages +UsersHome=Home users and groups +MembersHome=Home Membership +ThirdpartiesHome=Home Thirdparties +TicketsHome=Home Tickets +AccountancyHome=Home Accountancy +ValidatedProjects=Validated projects diff --git a/htdocs/langs/ms_MY/cashdesk.lang b/htdocs/langs/ms_MY/cashdesk.lang new file mode 100644 index 00000000000..92e16791f08 --- /dev/null +++ b/htdocs/langs/ms_MY/cashdesk.lang @@ -0,0 +1,145 @@ +# Language file - Source file is en_US - cashdesk +CashDeskMenu=Point of sale +CashDesk=Point of sale +CashDeskBankCash=Bank account (cash) +CashDeskBankCB=Bank account (card) +CashDeskBankCheque=Bank account (cheque) +CashDeskWarehouse=Warehouse +CashdeskShowServices=Selling services +CashDeskProducts=Products +CashDeskStock=Stock +CashDeskOn=on +CashDeskThirdParty=Third party +ShoppingCart=Shopping cart +NewSell=New sell +AddThisArticle=Add this article +RestartSelling=Go back on sell +SellFinished=Sale complete +PrintTicket=Print ticket +SendTicket=Send ticket +NoProductFound=No article found +ProductFound=product found +NoArticle=No article +Identification=Identification +Article=Article +Difference=Difference +TotalTicket=Total ticket +NoVAT=No VAT for this sale +Change=Excess received +BankToPay=Account for payment +ShowCompany=Show company +ShowStock=Show warehouse +DeleteArticle=Click to remove this article +FilterRefOrLabelOrBC=Search (Ref/Label) +UserNeedPermissionToEditStockToUsePos=You ask to decrease stock on invoice creation, so user that uses POS needs to have permission to edit stock. +DolibarrReceiptPrinter=Dolibarr Receipt Printer +PointOfSale=Point of Sale +PointOfSaleShort=POS +CloseBill=Close Bill +Floors=Floors +Floor=Floor +AddTable=Add table +Place=Place +TakeposConnectorNecesary='TakePOS Connector' required +OrderPrinters=Add a button to send the order to some given printers, without payment (for example to send an order to a kitchen) +NotAvailableWithBrowserPrinter=Not available when printer for receipt is set to browser +SearchProduct=Search product +Receipt=Receipt +Header=Header +Footer=Footer +AmountAtEndOfPeriod=Amount at end of period (day, month or year) +TheoricalAmount=Theorical amount +RealAmount=Real amount +CashFence=Cash box closing +CashFenceDone=Cash box closing done for the period +NbOfInvoices=Nb of invoices +Paymentnumpad=Type of Pad to enter payment +Numberspad=Numbers Pad +BillsCoinsPad=Coins and banknotes Pad +DolistorePosCategory=TakePOS modules and other POS solutions for Dolibarr +TakeposNeedsCategories=TakePOS needs at least one product categorie to work +TakeposNeedsAtLeastOnSubCategoryIntoParentCategory=TakePOS needs at least 1 product category under the category %s to work +OrderNotes=Can add some notes to each ordered items +CashDeskBankAccountFor=Default account to use for payments in +NoPaimementModesDefined=No paiment mode defined in TakePOS configuration +TicketVatGrouped=Group VAT by rate in tickets|receipts +AutoPrintTickets=Automatically print tickets|receipts +PrintCustomerOnReceipts=Print customer on tickets|receipts +EnableBarOrRestaurantFeatures=Enable features for Bar or Restaurant +ConfirmDeletionOfThisPOSSale=Do your confirm the deletion of this current sale ? +ConfirmDiscardOfThisPOSSale=Do you want to discard this current sale ? +History=History +ValidateAndClose=Validate and close +Terminal=Terminal +NumberOfTerminals=Number of Terminals +TerminalSelect=Select terminal you want to use: +POSTicket=POS Ticket +POSTerminal=POS Terminal +POSModule=POS Module +BasicPhoneLayout=Use basic layout for phones +SetupOfTerminalNotComplete=Setup of terminal %s is not complete +DirectPayment=Direct payment +DirectPaymentButton=Add a "Direct cash payment" button +InvoiceIsAlreadyValidated=Invoice is already validated +NoLinesToBill=No lines to bill +CustomReceipt=Custom Receipt +ReceiptName=Receipt Name +ProductSupplements=Manage supplements of products +SupplementCategory=Supplement category +ColorTheme=Color theme +Colorful=Colorful +HeadBar=Head Bar +SortProductField=Field for sorting products +Browser=Browser +BrowserMethodDescription=Simple and easy receipt printing. Only a few parameters to configure the receipt. Print via browser. +TakeposConnectorMethodDescription=External module with extra features. Posibility to print from the cloud. +PrintMethod=Print method +ReceiptPrinterMethodDescription=Powerful method with a lot of parameters. Full customizable with templates. The server hosting the application can't be in the Cloud (must be able to reach the printers in your network). +ByTerminal=By terminal +TakeposNumpadUsePaymentIcon=Use icon instead of text on payment buttons of numpad +CashDeskRefNumberingModules=Numbering module for POS sales +CashDeskGenericMaskCodes6 =
{TN} tag is used to add the terminal number +TakeposGroupSameProduct=Group same products lines +StartAParallelSale=Start a new parallel sale +SaleStartedAt=Sale started at %s +ControlCashOpening=Open the "Control cash box" popup when opening the POS +CloseCashFence=Close cash box control +CashReport=Cash report +MainPrinterToUse=Main printer to use +OrderPrinterToUse=Order printer to use +MainTemplateToUse=Main template to use +OrderTemplateToUse=Order template to use +BarRestaurant=Bar Restaurant +AutoOrder=Order by the customer himself +RestaurantMenu=Menu +CustomerMenu=Customer menu +ScanToMenu=Scan QR code to see the menu +ScanToOrder=Scan QR code to order +Appearance=Appearance +HideCategoryImages=Hide Category Images +HideProductImages=Hide Product Images +NumberOfLinesToShow=Number of lines of images to show +DefineTablePlan=Define tables plan +GiftReceiptButton=Add a "Gift receipt" button +GiftReceipt=Gift receipt +ModuleReceiptPrinterMustBeEnabled=Module Receipt printer must have been enabled first +AllowDelayedPayment=Allow delayed payment +PrintPaymentMethodOnReceipts=Print payment method on tickets|receipts +WeighingScale=Weighing scale +ShowPriceHT = Display the column with the price excluding tax (on screen) +ShowPriceHTOnReceipt = Display the column with the price excluding tax (on the receipt) +CustomerDisplay=Customer display +SplitSale=Split sale +PrintWithoutDetailsButton=Add "Print without details" button +PrintWithoutDetailsLabelDefault=Line label by default on printing without details +PrintWithoutDetails=Print without details +YearNotDefined=Year is not defined +TakeposBarcodeRuleToInsertProduct=Barcode rule to insert product +TakeposBarcodeRuleToInsertProductDesc=Rule to extract the product reference + a quantity from a scanned barcode.
If empty (default value), application will use the full barcode scanned to find the product.

If defined, syntax must be:
ref:NB+qu:NB+qd:NB+other:NB
where NB is the number of characters to use to extract data from the scanned barcode with:
  • ref : product reference
  • qu : quantity to set when inserting item (units)
  • qd : quantity to set when inserting item (decimals)
  • other : others characters
+AlreadyPrinted=Already printed +HideCategories=Hide categories +HideStockOnLine=Hide stock on line +ShowOnlyProductInStock=Show the products in stock +ShowCategoryDescription=Show category description +ShowProductReference=Show reference of products +UsePriceHT=Use price excl. taxes and not price incl. taxes diff --git a/htdocs/langs/ms_MY/categories.lang b/htdocs/langs/ms_MY/categories.lang new file mode 100644 index 00000000000..62c2752ff9f --- /dev/null +++ b/htdocs/langs/ms_MY/categories.lang @@ -0,0 +1,102 @@ +# Dolibarr language file - Source file is en_US - categories +Rubrique=Tag/Category +Rubriques=Tags/Categories +RubriquesTransactions=Tags/Categories of transactions +categories=tags/categories +NoCategoryYet=No tag/category of this type has been created +In=In +AddIn=Add in +modify=modify +Classify=Classify +CategoriesArea=Tags/Categories area +ProductsCategoriesArea=Product/Service tags/categories area +SuppliersCategoriesArea=Vendor tags/categories area +CustomersCategoriesArea=Customer tags/categories area +MembersCategoriesArea=Member tags/categories area +ContactsCategoriesArea=Contact tags/categories area +AccountsCategoriesArea=Bank account tags/categories area +ProjectsCategoriesArea=Project tags/categories area +UsersCategoriesArea=User tags/categories area +SubCats=Sub-categories +CatList=List of tags/categories +CatListAll=List of tags/categories (all types) +NewCategory=New tag/category +ModifCat=Modify tag/category +CatCreated=Tag/category created +CreateCat=Create tag/category +CreateThisCat=Create this tag/category +NoSubCat=No subcategory. +SubCatOf=Subcategory +FoundCats=Found tags/categories +ImpossibleAddCat=Impossible to add the tag/category %s +WasAddedSuccessfully=%s was added successfully. +ObjectAlreadyLinkedToCategory=Element is already linked to this tag/category. +ProductIsInCategories=Product/service is linked to following tags/categories +CompanyIsInCustomersCategories=This third party is linked to following customers/prospects tags/categories +CompanyIsInSuppliersCategories=This third party is linked to following vendors tags/categories +MemberIsInCategories=This member is linked to following members tags/categories +ContactIsInCategories=This contact is linked to following contacts tags/categories +ProductHasNoCategory=This product/service is not in any tags/categories +CompanyHasNoCategory=This third party is not in any tags/categories +MemberHasNoCategory=This member is not in any tags/categories +ContactHasNoCategory=This contact is not in any tags/categories +ProjectHasNoCategory=This project is not in any tags/categories +ClassifyInCategory=Add to tag/category +NotCategorized=Without tag/category +CategoryExistsAtSameLevel=This category already exists with this ref +ContentsVisibleByAllShort=Contents visible by all +ContentsNotVisibleByAllShort=Contents not visible by all +DeleteCategory=Delete tag/category +ConfirmDeleteCategory=Are you sure you want to delete this tag/category? +NoCategoriesDefined=No tag/category defined +SuppliersCategoryShort=Vendors tag/category +CustomersCategoryShort=Customers tag/category +ProductsCategoryShort=Products tag/category +MembersCategoryShort=Members tag/category +SuppliersCategoriesShort=Vendors tags/categories +CustomersCategoriesShort=Customers tags/categories +ProspectsCategoriesShort=Prospects tags/categories +CustomersProspectsCategoriesShort=Cust./Prosp. tags/categories +ProductsCategoriesShort=Products tags/categories +MembersCategoriesShort=Members tags/categories +ContactCategoriesShort=Contacts tags/categories +AccountsCategoriesShort=Accounts tags/categories +ProjectsCategoriesShort=Projects tags/categories +UsersCategoriesShort=Users tags/categories +StockCategoriesShort=Warehouse tags/categories +ThisCategoryHasNoItems=This category does not contain any items. +CategId=Tag/category id +ParentCategory=Parent tag/category +ParentCategoryLabel=Label of parent tag/category +CatSupList=List of vendors tags/categories +CatCusList=List of customers/prospects tags/categories +CatProdList=List of products tags/categories +CatMemberList=List of members tags/categories +CatContactList=List of contacts tags/categories +CatProjectsList=List of projects tags/categories +CatUsersList=List of users tags/categories +CatSupLinks=Links between vendors and tags/categories +CatCusLinks=Links between customers/prospects and tags/categories +CatContactsLinks=Links between contacts/addresses and tags/categories +CatProdLinks=Links between products/services and tags/categories +CatMembersLinks=Links between members and tags/categories +CatProjectsLinks=Links between projects and tags/categories +CatUsersLinks=Links between users and tags/categories +DeleteFromCat=Remove from tags/category +ExtraFieldsCategories=Complementary attributes +CategoriesSetup=Tags/categories setup +CategorieRecursiv=Link with parent tag/category automatically +CategorieRecursivHelp=If option is on, when you add a product into a subcategory, product will also be added into the parent category. +AddProductServiceIntoCategory=Add the following product/service +AddCustomerIntoCategory=Assign category to customer +AddSupplierIntoCategory=Assign category to supplier +AssignCategoryTo=Assign category to +ShowCategory=Show tag/category +ByDefaultInList=By default in list +ChooseCategory=Choose category +StocksCategoriesArea=Warehouse Categories +TicketsCategoriesArea=Tickets Categories +ActionCommCategoriesArea=Event Categories +WebsitePagesCategoriesArea=Page-Container Categories +KnowledgemanagementsCategoriesArea=KM article Categories +UseOrOperatorForCategories=Use 'OR' operator for categories diff --git a/htdocs/langs/ms_MY/commercial.lang b/htdocs/langs/ms_MY/commercial.lang new file mode 100644 index 00000000000..21d282cd794 --- /dev/null +++ b/htdocs/langs/ms_MY/commercial.lang @@ -0,0 +1,81 @@ +# Dolibarr language file - Source file is en_US - commercial +Commercial=Commerce +CommercialArea=Commerce area +Customer=Customer +Customers=Customers +Prospect=Prospect +Prospects=Prospects +DeleteAction=Delete an event +NewAction=New event +AddAction=Create event +AddAnAction=Create an event +AddActionRendezVous=Create a Rendez-vous event +ConfirmDeleteAction=Are you sure you want to delete this event? +CardAction=Event card +ActionOnCompany=Related company +ActionOnContact=Related contact +TaskRDVWith=Meeting with %s +ShowTask=Show task +ShowAction=Show event +ActionsReport=Events report +ThirdPartiesOfSaleRepresentative=Third parties with sales representative +SaleRepresentativesOfThirdParty=Sales representatives of third party +SalesRepresentative=Sales representative +SalesRepresentatives=Sales representatives +SalesRepresentativeFollowUp=Sales representative (follow-up) +SalesRepresentativeSignature=Sales representative (signature) +NoSalesRepresentativeAffected=No particular sales representative assigned +ShowCustomer=Show customer +ShowProspect=Show prospect +ListOfProspects=List of prospects +ListOfCustomers=List of customers +LastDoneTasks=Latest %s completed actions +LastActionsToDo=Oldest %s not completed actions +DoneAndToDoActions=Completed and To do events +DoneActions=Completed events +ToDoActions=Incomplete events +SendPropalRef=Submission of commercial proposal %s +SendOrderRef=Submission of order %s +StatusNotApplicable=Not applicable +StatusActionToDo=To do +StatusActionDone=Complete +StatusActionInProcess=In process +TasksHistoryForThisContact=Events for this contact +LastProspectDoNotContact=Do not contact +LastProspectNeverContacted=Never contacted +LastProspectToContact=To contact +LastProspectContactInProcess=Contact in process +LastProspectContactDone=Contact done +ActionAffectedTo=Event assigned to +ActionDoneBy=Event done by +ActionAC_TEL=Phone call +ActionAC_FAX=Send fax +ActionAC_PROP=Send proposal by mail +ActionAC_EMAIL=Send Email +ActionAC_EMAIL_IN=Reception of Email +ActionAC_RDV=Meetings +ActionAC_INT=Intervention on site +ActionAC_FAC=Send customer invoice by mail +ActionAC_REL=Send customer invoice by mail (reminder) +ActionAC_CLO=Close +ActionAC_EMAILING=Send mass email +ActionAC_COM=Send sales order by mail +ActionAC_SHIP=Send shipping by mail +ActionAC_SUP_ORD=Send purchase order by mail +ActionAC_SUP_INV=Send vendor invoice by mail +ActionAC_OTH=Other +ActionAC_OTH_AUTO=Other auto +ActionAC_MANUAL=Manually inserted events +ActionAC_AUTO=Automatically inserted events +ActionAC_OTH_AUTOShort=Other +ActionAC_EVENTORGANIZATION=Event organization events +Stats=Sales statistics +StatusProsp=Prospect status +DraftPropals=Draft commercial proposals +NoLimit=No limit +ToOfferALinkForOnlineSignature=Link for online signature +WelcomeOnOnlineSignaturePage=Welcome to the page to accept commercial proposals from %s +ThisScreenAllowsYouToSignDocFrom=This screen allow you to accept and sign, or refuse, a quote/commercial proposal +ThisIsInformationOnDocumentToSign=This is information on document to accept or refuse +SignatureProposalRef=Signature of quote/commercial proposal %s +FeatureOnlineSignDisabled=Feature for online signing disabled or document generated before the feature was enabled diff --git a/htdocs/langs/ms_MY/companies.lang b/htdocs/langs/ms_MY/companies.lang new file mode 100644 index 00000000000..99b9b7b8586 --- /dev/null +++ b/htdocs/langs/ms_MY/companies.lang @@ -0,0 +1,500 @@ +# Dolibarr language file - Source file is en_US - companies +ErrorCompanyNameAlreadyExists=Company name %s already exists. Choose another one. +ErrorSetACountryFirst=Set the country first +SelectThirdParty=Select a third party +ConfirmDeleteCompany=Are you sure you want to delete this company and all related information? +DeleteContact=Delete a contact/address +ConfirmDeleteContact=Are you sure you want to delete this contact and all related information? +MenuNewThirdParty=New Third Party +MenuNewCustomer=New Customer +MenuNewProspect=New Prospect +MenuNewSupplier=New Vendor +MenuNewPrivateIndividual=New private individual +NewCompany=New company (prospect, customer, vendor) +NewThirdParty=New Third Party (prospect, customer, vendor) +CreateDolibarrThirdPartySupplier=Create a third party (vendor) +CreateThirdPartyOnly=Create third party +CreateThirdPartyAndContact=Create a third party + a child contact +ProspectionArea=Prospection area +IdThirdParty=Id third party +IdCompany=Company Id +IdContact=Contact Id +ThirdPartyAddress=Third-party address +ThirdPartyContacts=Third-party contacts +ThirdPartyContact=Third-party contact/address +Company=Company +CompanyName=Company name +AliasNames=Alias name (commercial, trademark, ...) +AliasNameShort=Alias Name +Companies=Companies +CountryIsInEEC=Country is inside the European Economic Community +PriceFormatInCurrentLanguage=Price display format in the current language and currency +ThirdPartyName=Third-party name +ThirdPartyEmail=Third-party email +ThirdParty=Third-party +ThirdParties=Third-parties +ThirdPartyProspects=Prospects +ThirdPartyProspectsStats=Prospects +ThirdPartyCustomers=Customers +ThirdPartyCustomersStats=Customers +ThirdPartyCustomersWithIdProf12=Customers with %s or %s +ThirdPartySuppliers=Vendors +ThirdPartyType=Third-party type +Individual=Private individual +ToCreateContactWithSameName=Will automatically create a contact/address with same information as the third party under the third party. In most cases, even if your third party is a physical person, creating a third party alone is enough. +ParentCompany=Parent company +Subsidiaries=Subsidiaries +ReportByMonth=Report per month +ReportByCustomers=Report per customer +ReportByThirdparties=Report per thirdparty +ReportByQuarter=Report per rate +CivilityCode=Civility code +RegisteredOffice=Registered office +Lastname=Last name +Firstname=First name +RefEmployee=Employee reference +NationalRegistrationNumber=National registration number +PostOrFunction=Job position +UserTitle=Title +NatureOfThirdParty=Nature of Third party +NatureOfContact=Nature of Contact +Address=Address +State=State/Province +StateId=State ID +StateCode=State/Province code +StateShort=State +Region=Region +Region-State=Region - State +Country=Country +CountryCode=Country code +CountryId=Country ID +Phone=Phone +PhoneShort=Phone +Skype=Skype +Call=Call +Chat=Chat +PhonePro=Bus. phone +PhonePerso=Pers. phone +PhoneMobile=Mobile +No_Email=Refuse bulk emailings +Fax=Fax +Zip=Zip Code +Town=City +Web=Web +Poste= Position +DefaultLang=Default language +VATIsUsed=Sales tax used +VATIsUsedWhenSelling=This defines if this third party includes a sales tax or not when it makes an invoice to its own customers +VATIsNotUsed=Sales tax is not used +CopyAddressFromSoc=Copy address from third-party details +ThirdpartyNotCustomerNotSupplierSoNoRef=Third party neither customer nor vendor, no available referring objects +ThirdpartyIsNeitherCustomerNorClientSoCannotHaveDiscounts=Third party neither customer nor vendor, discounts are not available +PaymentBankAccount=Payment bank account +OverAllProposals=Proposals +OverAllOrders=Orders +OverAllInvoices=Invoices +OverAllSupplierProposals=Price requests +##### Local Taxes ##### +LocalTax1IsUsed=Use second tax +LocalTax1IsUsedES= RE is used +LocalTax1IsNotUsedES= RE is not used +LocalTax2IsUsed=Use third tax +LocalTax2IsUsedES= IRPF is used +LocalTax2IsNotUsedES= IRPF is not used +WrongCustomerCode=Customer code invalid +WrongSupplierCode=Vendor code invalid +CustomerCodeModel=Customer code model +SupplierCodeModel=Vendor code model +Gencod=Barcode +GencodBuyPrice=Barcode of price ref +##### Professional ID ##### +ProfId1Short=Prof. id 1 +ProfId2Short=Prof. id 2 +ProfId3Short=Prof. id 3 +ProfId4Short=Prof. id 4 +ProfId5Short=Prof. id 5 +ProfId6Short=Prof. id 6 +ProfId1=Professional ID 1 +ProfId2=Professional ID 2 +ProfId3=Professional ID 3 +ProfId4=Professional ID 4 +ProfId5=Professional ID 5 +ProfId6=Professional ID 6 +ProfId1AR=Prof Id 1 (CUIT/CUIL) +ProfId2AR=Prof Id 2 (Revenu brutes) +ProfId3AR=- +ProfId4AR=- +ProfId5AR=- +ProfId6AR=- +ProfId1AT=Prof Id 1 (USt.-IdNr) +ProfId2AT=Prof Id 2 (USt.-Nr) +ProfId3AT=Prof Id 3 (Handelsregister-Nr.) +ProfId4AT=- +ProfId5AT=EORI number +ProfId6AT=- +ProfId1AU=Prof Id 1 (ABN) +ProfId2AU=- +ProfId3AU=- +ProfId4AU=- +ProfId5AU=- +ProfId6AU=- +ProfId1BE=Prof Id 1 (Professional number) +ProfId2BE=- +ProfId3BE=- +ProfId4BE=- +ProfId5BE=EORI number +ProfId6BE=- +ProfId1BR=- +ProfId2BR=IE (Inscricao Estadual) +ProfId3BR=IM (Inscricao Municipal) +ProfId4BR=CPF +#ProfId5BR=CNAE +#ProfId6BR=INSS +ProfId1CH=UID-Nummer +ProfId2CH=- +ProfId3CH=Prof Id 1 (Federal number) +ProfId4CH=Prof Id 2 (Commercial Record number) +ProfId5CH=EORI number +ProfId6CH=- +ProfId1CL=Prof Id 1 (R.U.T.) +ProfId2CL=- +ProfId3CL=- +ProfId4CL=- +ProfId5CL=- +ProfId6CL=- +ProfId1CM=Id. prof. 1 (Trade Register) +ProfId2CM=Id. prof. 2 (Taxpayer No.) +ProfId3CM=Id. prof. 3 (No. of creation decree) +ProfId4CM=Id. prof. 4 (Deposit certificate No.) +ProfId5CM=Id. prof. 5 (Others) +ProfId6CM=- +ProfId1ShortCM=Trade Register +ProfId2ShortCM=Taxpayer No. +ProfId3ShortCM=No. of creation decree +ProfId4ShortCM=Deposit certificate No. +ProfId5ShortCM=Others +ProfId6ShortCM=- +ProfId1CO=Prof Id 1 (R.U.T.) +ProfId2CO=- +ProfId3CO=- +ProfId4CO=- +ProfId5CO=- +ProfId6CO=- +ProfId1DE=Prof Id 1 (USt.-IdNr) +ProfId2DE=Prof Id 2 (USt.-Nr) +ProfId3DE=Prof Id 3 (Handelsregister-Nr.) +ProfId4DE=- +ProfId5DE=EORI number +ProfId6DE=- +ProfId1ES=Prof Id 1 (CIF/NIF) +ProfId2ES=Prof Id 2 (Social security number) +ProfId3ES=Prof Id 3 (CNAE) +ProfId4ES=Prof Id 4 (Collegiate number) +ProfId5ES=Prof Id 5 (EORI number) +ProfId6ES=- +ProfId1FR=Prof Id 1 (SIREN) +ProfId2FR=Prof Id 2 (SIRET) +ProfId3FR=Prof Id 3 (NAF, old APE) +ProfId4FR=Prof Id 4 (RCS/RM) +ProfId5FR=Prof Id 5 (numéro EORI) +ProfId6FR=- +ProfId1ShortFR=SIREN +ProfId2ShortFR=SIRET +ProfId3ShortFR=NAF +ProfId4ShortFR=RCS +ProfId5ShortFR=EORI +ProfId6ShortFR=- +ProfId1GB=Registration Number +ProfId2GB=- +ProfId3GB=SIC +ProfId4GB=- +ProfId5GB=- +ProfId6GB=- +ProfId1HN=Id prof. 1 (RTN) +ProfId2HN=- +ProfId3HN=- +ProfId4HN=- +ProfId5HN=- +ProfId6HN=- +ProfId1IN=Prof Id 1 (TIN) +ProfId2IN=Prof Id 2 (PAN) +ProfId3IN=Prof Id 3 (SRVC TAX) +ProfId4IN=Prof Id 4 +ProfId5IN=Prof Id 5 +ProfId6IN=- +ProfId1IT=- +ProfId2IT=- +ProfId3IT=- +ProfId4IT=- +ProfId5IT=EORI number +ProfId6IT=- +ProfId1LU=Id. prof. 1 (R.C.S. Luxembourg) +ProfId2LU=Id. prof. 2 (Business permit) +ProfId3LU=- +ProfId4LU=- +ProfId5LU=EORI number +ProfId6LU=- +ProfId1MA=Id prof. 1 (R.C.) +ProfId2MA=Id prof. 2 (Patente) +ProfId3MA=Id prof. 3 (I.F.) +ProfId4MA=Id prof. 4 (C.N.S.S.) +ProfId5MA=Id prof. 5 (I.C.E.) +ProfId6MA=- +ProfId1MX=Prof Id 1 (R.F.C). +ProfId2MX=Prof Id 2 (R..P. IMSS) +ProfId3MX=Prof Id 3 (Profesional Charter) +ProfId4MX=- +ProfId5MX=- +ProfId6MX=- +ProfId1NL=KVK nummer +ProfId2NL=- +ProfId3NL=- +ProfId4NL=Burgerservicenummer (BSN) +ProfId5NL=EORI number +ProfId6NL=- +ProfId1PT=Prof Id 1 (NIPC) +ProfId2PT=Prof Id 2 (Social security number) +ProfId3PT=Prof Id 3 (Commercial Record number) +ProfId4PT=Prof Id 4 (Conservatory) +ProfId5PT=Prof Id 5 (EORI number) +ProfId6PT=- +ProfId1SN=RC +ProfId2SN=NINEA +ProfId3SN=- +ProfId4SN=- +ProfId5SN=- +ProfId6SN=- +ProfId1TN=Prof Id 1 (RC) +ProfId2TN=Prof Id 2 (Fiscal matricule) +ProfId3TN=Prof Id 3 (Douane code) +ProfId4TN=Prof Id 4 (BAN) +ProfId5TN=- +ProfId6TN=- +ProfId1US=Prof Id (FEIN) +ProfId2US=- +ProfId3US=- +ProfId4US=- +ProfId5US=- +ProfId6US=- +ProfId1RO=Prof Id 1 (CUI) +ProfId2RO=Prof Id 2 (Nr. Înmatriculare) +ProfId3RO=Prof Id 3 (CAEN) +ProfId4RO=Prof Id 5 (EUID) +ProfId5RO=Prof Id 5 (EORI number) +ProfId6RO=- +ProfId1RU=Prof Id 1 (OGRN) +ProfId2RU=Prof Id 2 (INN) +ProfId3RU=Prof Id 3 (KPP) +ProfId4RU=Prof Id 4 (OKPO) +ProfId5RU=- +ProfId6RU=- +ProfId1UA=Prof Id 1 (EDRPOU) +ProfId2UA=Prof Id 2 (DRFO) +ProfId3UA=Prof Id 3 (INN) +ProfId4UA=Prof Id 4 (Certificate) +ProfId5UA=Prof Id 5 (RNOKPP) +ProfId6UA=Prof Id 6 (TRDPAU) +ProfId1DZ=RC +ProfId2DZ=Art. +ProfId3DZ=NIF +ProfId4DZ=NIS +VATIntra=VAT ID +VATIntraShort=VAT ID +VATIntraSyntaxIsValid=Syntax is valid +VATReturn=VAT return +ProspectCustomer=Prospect / Customer +Prospect=Prospect +CustomerCard=Customer Card +Customer=Customer +CustomerRelativeDiscount=Relative customer discount +SupplierRelativeDiscount=Relative vendor discount +CustomerRelativeDiscountShort=Relative discount +CustomerAbsoluteDiscountShort=Absolute discount +CompanyHasRelativeDiscount=This customer has a default discount of %s%% +CompanyHasNoRelativeDiscount=This customer has no relative discount by default +HasRelativeDiscountFromSupplier=You have a default discount of %s%% from this vendor +HasNoRelativeDiscountFromSupplier=You have no default relative discount from this vendor +CompanyHasAbsoluteDiscount=This customer has discounts available (credits notes or down payments) for %s %s +CompanyHasDownPaymentOrCommercialDiscount=This customer has discounts available (commercial, down payments) for %s %s +CompanyHasCreditNote=This customer still has credit notes for %s %s +HasNoAbsoluteDiscountFromSupplier=You have no discount credit available from this vendor +HasAbsoluteDiscountFromSupplier=You have discounts available (credits notes or down payments) for %s %s from this vendor +HasDownPaymentOrCommercialDiscountFromSupplier=You have discounts available (commercial, down payments) for %s %s from this vendor +HasCreditNoteFromSupplier=You have credit notes for %s %s from this vendor +CompanyHasNoAbsoluteDiscount=This customer has no discount credit available +CustomerAbsoluteDiscountAllUsers=Absolute customer discounts (granted by all users) +CustomerAbsoluteDiscountMy=Absolute customer discounts (granted by yourself) +SupplierAbsoluteDiscountAllUsers=Absolute vendor discounts (entered by all users) +SupplierAbsoluteDiscountMy=Absolute vendor discounts (entered by yourself) +DiscountNone=None +Vendor=Vendor +Supplier=Vendor +AddContact=Create contact +AddContactAddress=Create contact/address +EditContact=Edit contact +EditContactAddress=Edit contact/address +Contact=Contact/Address +Contacts=Contacts/Addresses +ContactId=Contact id +ContactsAddresses=Contacts/Addresses +FromContactName=Name: +NoContactDefinedForThirdParty=No contact defined for this third party +NoContactDefined=No contact defined +DefaultContact=Default contact/address +ContactByDefaultFor=Default contact/address for +AddThirdParty=Create third party +DeleteACompany=Delete a company +PersonalInformations=Personal data +AccountancyCode=Accounting account +CustomerCode=Customer Code +SupplierCode=Vendor Code +CustomerCodeShort=Customer Code +SupplierCodeShort=Vendor Code +CustomerCodeDesc=Customer Code, unique for all customers +SupplierCodeDesc=Vendor Code, unique for all vendors +RequiredIfCustomer=Required if third party is a customer or prospect +RequiredIfSupplier=Required if third party is a vendor +ValidityControledByModule=Validity controlled by the module +ThisIsModuleRules=Rules for this module +ProspectToContact=Prospect to contact +CompanyDeleted=Company "%s" deleted from database. +ListOfContacts=List of contacts/addresses +ListOfContactsAddresses=List of contacts/addresses +ListOfThirdParties=List of Third Parties +ShowCompany=Third Party +ShowContact=Contact-Address +ContactsAllShort=All (No filter) +ContactType=Contact role +ContactForOrders=Order's contact +ContactForOrdersOrShipments=Order's or shipment's contact +ContactForProposals=Proposal's contact +ContactForContracts=Contract's contact +ContactForInvoices=Invoice's contact +NoContactForAnyOrder=This contact is not a contact for any order +NoContactForAnyOrderOrShipments=This contact is not a contact for any order or shipment +NoContactForAnyProposal=This contact is not a contact for any commercial proposal +NoContactForAnyContract=This contact is not a contact for any contract +NoContactForAnyInvoice=This contact is not a contact for any invoice +NewContact=New contact +NewContactAddress=New Contact/Address +MyContacts=My contacts +Capital=Capital +CapitalOf=Capital of %s +EditCompany=Edit company +ThisUserIsNot=This user is not a prospect, customer or vendor +VATIntraCheck=Check +VATIntraCheckDesc=The VAT ID must include the country prefix. The link %s uses the European VAT checker service (VIES) which requires internet access from the Dolibarr server. +VATIntraCheckURL=http://ec.europa.eu/taxation_customs/vies/vieshome.do +VATIntraCheckableOnEUSite=Check the intra-Community VAT ID on the European Commission website +VATIntraManualCheck=You can also check manually on the European Commission website %s +ErrorVATCheckMS_UNAVAILABLE=Check not possible. Check service is not provided by the member state (%s). +NorProspectNorCustomer=Not prospect, nor customer +JuridicalStatus=Business entity type +Workforce=Workforce +Staff=Employees +ProspectLevelShort=Potential +ProspectLevel=Prospect potential +ContactPrivate=Private +ContactPublic=Shared +ContactVisibility=Visibility +ContactOthers=Other +OthersNotLinkedToThirdParty=Others, not linked to a third party +ProspectStatus=Prospect status +PL_NONE=None +PL_UNKNOWN=Unknown +PL_LOW=Low +PL_MEDIUM=Medium +PL_HIGH=High +TE_UNKNOWN=- +TE_STARTUP=Startup +TE_GROUP=Large company +TE_MEDIUM=Medium company +TE_ADMIN=Governmental +TE_SMALL=Small company +TE_RETAIL=Retailer +TE_WHOLE=Wholesaler +TE_PRIVATE=Private individual +TE_OTHER=Other +StatusProspect-1=Do not contact +StatusProspect0=Never contacted +StatusProspect1=To be contacted +StatusProspect2=Contact in process +StatusProspect3=Contact done +ChangeDoNotContact=Change status to 'Do not contact' +ChangeNeverContacted=Change status to 'Never contacted' +ChangeToContact=Change status to 'To be contacted' +ChangeContactInProcess=Change status to 'Contact in process' +ChangeContactDone=Change status to 'Contact done' +ProspectsByStatus=Prospects by status +NoParentCompany=None +ExportCardToFormat=Export card to format +ContactNotLinkedToCompany=Contact not linked to any third party +DolibarrLogin=Dolibarr login +NoDolibarrAccess=No Dolibarr access +ExportDataset_company_1=Third-parties (companies/foundations/physical people) and their properties +ExportDataset_company_2=Contacts and their properties +ImportDataset_company_1=Third-parties and their properties +ImportDataset_company_2=Third-parties additional contacts/addresses and attributes +ImportDataset_company_3=Third-parties Bank accounts +ImportDataset_company_4=Third-parties Sales representatives (assign sales representatives/users to companies) +PriceLevel=Price Level +PriceLevelLabels=Price Level Labels +DeliveryAddress=Delivery address +AddAddress=Add address +SupplierCategory=Vendor category +JuridicalStatus200=Independent +DeleteFile=Delete file +ConfirmDeleteFile=Are you sure you want to delete this file? +AllocateCommercial=Assigned to sales representative +Organization=Organization +FiscalYearInformation=Fiscal Year +FiscalMonthStart=Starting month of the fiscal year +SocialNetworksInformation=Social networks +SocialNetworksFacebookURL=Facebook URL +SocialNetworksTwitterURL=Twitter URL +SocialNetworksLinkedinURL=Linkedin URL +SocialNetworksInstagramURL=Instagram URL +SocialNetworksYoutubeURL=Youtube URL +SocialNetworksGithubURL=Github URL +YouMustAssignUserMailFirst=You must create an email for this user prior to being able to add an email notification. +YouMustCreateContactFirst=To be able to add email notifications, you must first define contacts with valid emails for the third party +ListSuppliersShort=List of Vendors +ListProspectsShort=List of Prospects +ListCustomersShort=List of Customers +ThirdPartiesArea=Third Parties/Contacts +LastModifiedThirdParties=Latest %s Third Parties which were modified +UniqueThirdParties=Total number of Third Parties +InActivity=Open +ActivityCeased=Closed +ThirdPartyIsClosed=Third party is closed +ProductsIntoElements=List of products/services mapped to %s +CurrentOutstandingBill=Current outstanding bill +OutstandingBill=Max. for outstanding bill +OutstandingBillReached=Max. for outstanding bill reached +OrderMinAmount=Minimum amount for order +MonkeyNumRefModelDesc=Return a number in the format %syymm-nnnn for the customer code and %syymm-nnnn for the vendor code where yy is year, mm is month and nnnn is a sequencial auto-incrementing number with no break and no return to 0. +LeopardNumRefModelDesc=The code is free. This code can be modified at any time. +ManagingDirectors=Manager(s) name (CEO, director, president...) +MergeOriginThirdparty=Duplicate third party (third party you want to delete) +MergeThirdparties=Merge third parties +ConfirmMergeThirdparties=Are you sure you want to merge the chosen third party with the current one? All linked objects (invoices, orders, ...) will be moved to the current third party, after which the chosen third party will be deleted. +ThirdpartiesMergeSuccess=Third parties have been merged +SaleRepresentativeLogin=Login of sales representative +SaleRepresentativeFirstname=First name of sales representative +SaleRepresentativeLastname=Last name of sales representative +ErrorThirdpartiesMerge=There was an error when deleting the third parties. Please check the log. Changes have been reverted. +NewCustomerSupplierCodeProposed=Customer or Vendor code already used, a new code is suggested +KeepEmptyIfGenericAddress=Keep this field empty if this address is a generic address +#Imports +PaymentTypeCustomer=Payment Type - Customer +PaymentTermsCustomer=Payment Terms - Customer +PaymentTypeSupplier=Payment Type - Vendor +PaymentTermsSupplier=Payment Term - Vendor +PaymentTypeBoth=Payment Type - Customer and Vendor +MulticurrencyUsed=Use Multicurrency +MulticurrencyCurrency=Currency +InEEC=Europe (EEC) +RestOfEurope=Rest of Europe (EEC) +OutOfEurope=Out of Europe (EEC) +CurrentOutstandingBillLate=Current outstanding bill late +BecarefullChangeThirdpartyBeforeAddProductToInvoice=Be carefull, depending on your product price settings, you should change thirdparty before adding product to POS. diff --git a/htdocs/langs/ms_MY/compta.lang b/htdocs/langs/ms_MY/compta.lang new file mode 100644 index 00000000000..be76a3689eb --- /dev/null +++ b/htdocs/langs/ms_MY/compta.lang @@ -0,0 +1,303 @@ +# Dolibarr language file - Source file is en_US - compta +MenuFinancial=Billing | Payment +TaxModuleSetupToModifyRules=Go to Taxes module setup to modify rules for calculation +TaxModuleSetupToModifyRulesLT=Go to Company setup to modify rules for calculation +OptionMode=Option for accountancy +OptionModeTrue=Option Incomes-Expenses +OptionModeVirtual=Option Claims-Debts +OptionModeTrueDesc=In this context, the turnover is calculated over payments (date of payments). The validity of the figures is assured only if the book-keeping is scrutinized through the input/output on the accounts via invoices. +OptionModeVirtualDesc=In this context, the turnover is calculated over invoices (date of validation). When these invoices are due, whether they have been paid or not, they are listed in the turnover output. +FeatureIsSupportedInInOutModeOnly=Feature only available in CREDITS-DEBTS accountancy mode (See Accountancy module configuration) +VATReportBuildWithOptionDefinedInModule=Amounts shown here are calculated using rules defined by Tax module setup. +LTReportBuildWithOptionDefinedInModule=Amounts shown here are calculated using rules defined by Company setup. +Param=Setup +RemainingAmountPayment=Amount payment remaining: +Account=Account +Accountparent=Parent account +Accountsparent=Parent accounts +Income=Income +Outcome=Expense +MenuReportInOut=Income / Expense +ReportInOut=Balance of income and expenses +ReportTurnover=Turnover invoiced +ReportTurnoverCollected=Turnover collected +PaymentsNotLinkedToInvoice=Payments not linked to any invoice, so not linked to any third party +PaymentsNotLinkedToUser=Payments not linked to any user +Profit=Profit +AccountingResult=Accounting result +BalanceBefore=Balance (before) +Balance=Balance +Debit=Debit +Credit=Credit +Piece=Accounting Doc. +AmountHTVATRealReceived=Net collected +AmountHTVATRealPaid=Net paid +VATToPay=Tax sales +VATReceived=Tax received +VATToCollect=Tax purchases +VATSummary=Tax monthly +VATBalance=Tax Balance +VATPaid=Tax paid +LT1Summary=Tax 2 summary +LT2Summary=Tax 3 summary +LT1SummaryES=RE Balance +LT2SummaryES=IRPF Balance +LT1SummaryIN=CGST Balance +LT2SummaryIN=SGST Balance +LT1Paid=Tax 2 paid +LT2Paid=Tax 3 paid +LT1PaidES=RE Paid +LT2PaidES=IRPF Paid +LT1PaidIN=CGST Paid +LT2PaidIN=SGST Paid +LT1Customer=Tax 2 sales +LT1Supplier=Tax 2 purchases +LT1CustomerES=RE sales +LT1SupplierES=RE purchases +LT1CustomerIN=CGST sales +LT1SupplierIN=CGST purchases +LT2Customer=Tax 3 sales +LT2Supplier=Tax 3 purchases +LT2CustomerES=IRPF sales +LT2SupplierES=IRPF purchases +LT2CustomerIN=SGST sales +LT2SupplierIN=SGST purchases +VATCollected=VAT collected +StatusToPay=To pay +SpecialExpensesArea=Area for all special payments +VATExpensesArea=Area for all TVA payments +SocialContribution=Social or fiscal tax +SocialContributions=Social or fiscal taxes +SocialContributionsDeductibles=Deductible social or fiscal taxes +SocialContributionsNondeductibles=Nondeductible social or fiscal taxes +DateOfSocialContribution=Date of social or fiscal tax +LabelContrib=Label contribution +TypeContrib=Type contribution +MenuSpecialExpenses=Special expenses +MenuTaxAndDividends=Taxes and dividends +MenuSocialContributions=Social/fiscal taxes +MenuNewSocialContribution=New social/fiscal tax +NewSocialContribution=New social/fiscal tax +AddSocialContribution=Add social/fiscal tax +ContributionsToPay=Social/fiscal taxes to pay +AccountancyTreasuryArea=Billing and payment area +NewPayment=New payment +PaymentCustomerInvoice=Customer invoice payment +PaymentSupplierInvoice=vendor invoice payment +PaymentSocialContribution=Social/fiscal tax payment +PaymentVat=VAT payment +AutomaticCreationPayment=Automatically record the payment +ListPayment=List of payments +ListOfCustomerPayments=List of customer payments +ListOfSupplierPayments=List of vendor payments +DateStartPeriod=Date start period +DateEndPeriod=Date end period +newLT1Payment=New tax 2 payment +newLT2Payment=New tax 3 payment +LT1Payment=Tax 2 payment +LT1Payments=Tax 2 payments +LT2Payment=Tax 3 payment +LT2Payments=Tax 3 payments +newLT1PaymentES=New RE payment +newLT2PaymentES=New IRPF payment +LT1PaymentES=RE Payment +LT1PaymentsES=RE Payments +LT2PaymentES=IRPF Payment +LT2PaymentsES=IRPF Payments +VATPayment=Sales tax payment +VATPayments=Sales tax payments +VATDeclarations=VAT declarations +VATDeclaration=VAT declaration +VATRefund=Sales tax refund +NewVATPayment=New sales tax payment +NewLocalTaxPayment=New tax %s payment +Refund=Refund +SocialContributionsPayments=Social/fiscal taxes payments +ShowVatPayment=Show VAT payment +TotalToPay=Total to pay +BalanceVisibilityDependsOnSortAndFilters=Balance is visible in this list only if table is sorted on %s and filtered on 1 bank account (with no other filters) +CustomerAccountancyCode=Customer accounting code +SupplierAccountancyCode=Vendor accounting code +CustomerAccountancyCodeShort=Cust. account. code +SupplierAccountancyCodeShort=Sup. account. code +AccountNumber=Account number +NewAccountingAccount=New account +Turnover=Turnover invoiced +TurnoverCollected=Turnover collected +SalesTurnoverMinimum=Minimum turnover +ByExpenseIncome=By expenses & incomes +ByThirdParties=By third parties +ByUserAuthorOfInvoice=By invoice author +CheckReceipt=Check deposit +CheckReceiptShort=Check deposit +LastCheckReceiptShort=Latest %s check receipts +NewCheckReceipt=New discount +NewCheckDeposit=New check deposit +NewCheckDepositOn=Create receipt for deposit on account: %s +NoWaitingChecks=No checks awaiting deposit. +DateChequeReceived=Check receiving date +NbOfCheques=No. of checks +PaySocialContribution=Pay a social/fiscal tax +PayVAT=Pay a VAT declaration +PaySalary=Pay a salary card +ConfirmPaySocialContribution=Are you sure you want to classify this social or fiscal tax as paid ? +ConfirmPayVAT=Are you sure you want to classify this VAT declaration as paid ? +ConfirmPaySalary=Are you sure you want to classify this salary card as paid? +DeleteSocialContribution=Delete a social or fiscal tax payment +DeleteVAT=Delete a VAT declaration +DeleteSalary=Delete a salary card +DeleteVariousPayment=Delete a various payment +ConfirmDeleteSocialContribution=Are you sure you want to delete this social/fiscal tax payment ? +ConfirmDeleteVAT=Are you sure you want to delete this VAT declaration ? +ConfirmDeleteSalary=Are you sure you want to delete this salary ? +ConfirmDeleteVariousPayment=Are you sure you want to delete this various payment ? +ExportDataset_tax_1=Social and fiscal taxes and payments +CalcModeVATDebt=Mode %sVAT on commitment accounting%s. +CalcModeVATEngagement=Mode %sVAT on incomes-expenses%s. +CalcModeDebt=Analysis of known recorded documents even if they are not yet accounted in ledger. +CalcModeEngagement=Analysis of known recorded payments, even if they are not yet accounted in Ledger. +CalcModeBookkeeping=Analysis of data journalized in Bookkeeping Ledger table. +CalcModeLT1= Mode %sRE on customer invoices - suppliers invoices%s +CalcModeLT1Debt=Mode %sRE on customer invoices%s +CalcModeLT1Rec= Mode %sRE on suppliers invoices%s +CalcModeLT2= Mode %sIRPF on customer invoices - suppliers invoices%s +CalcModeLT2Debt=Mode %sIRPF on customer invoices%s +CalcModeLT2Rec= Mode %sIRPF on suppliers invoices%s +AnnualSummaryDueDebtMode=Balance of income and expenses, annual summary +AnnualSummaryInputOutputMode=Balance of income and expenses, annual summary +AnnualByCompanies=Balance of income and expenses, by predefined groups of account +AnnualByCompaniesDueDebtMode=Balance of income and expenses, detail by predefined groups, mode %sClaims-Debts%s said Commitment accounting. +AnnualByCompaniesInputOutputMode=Balance of income and expenses, detail by predefined groups, mode %sIncomes-Expenses%s said cash accounting. +SeeReportInInputOutputMode=See %sanalysis of payments%s for a calculation based on recorded payments made even if they are not yet accounted in Ledger +SeeReportInDueDebtMode=See %sanalysis of recorded documents%s for a calculation based on known recorded documents even if they are not yet accounted in Ledger +SeeReportInBookkeepingMode=See %sanalysis of bookeeping ledger table%s for a report based on Bookkeeping Ledger table +RulesAmountWithTaxIncluded=- Amounts shown are with all taxes included +RulesAmountWithTaxExcluded=- Amounts of invoices shown are with all taxes excluded +RulesResultDue=- It includes all invoices, expenses, VAT, donations, salaries, whether they are paid or not.
- It is based on the billing date of invoices and on the due date for expenses or tax payments. For salaries, the date of end of period is used. +RulesResultInOut=- It includes the real payments made on invoices, expenses, VAT and salaries.
- It is based on the payment dates of the invoices, expenses, VAT, donations and salaries. +RulesCADue=- It includes the customer's due invoices whether they are paid or not.
- It is based on the billing date of these invoices.
+RulesCAIn=- It includes all the effective payments of invoices received from customers.
- It is based on the payment date of these invoices
+RulesCATotalSaleJournal=It includes all credit lines from the Sale journal. +RulesSalesTurnoverOfIncomeAccounts=It includes (credit - debit) of lines for product accounts in group INCOME +RulesAmountOnInOutBookkeepingRecord=It includes record in your Ledger with accounting accounts that has the group "EXPENSE" or "INCOME" +RulesResultBookkeepingPredefined=It includes record in your Ledger with accounting accounts that has the group "EXPENSE" or "INCOME" +RulesResultBookkeepingPersonalized=It show record in your Ledger with accounting accounts grouped by personalized groups +SeePageForSetup=See menu %s for setup +DepositsAreNotIncluded=- Down payment invoices are not included +DepositsAreIncluded=- Down payment invoices are included +LT1ReportByMonth=Tax 2 report by month +LT2ReportByMonth=Tax 3 report by month +LT1ReportByCustomers=Report tax 2 by third party +LT2ReportByCustomers=Report tax 3 by third party +LT1ReportByCustomersES=Report by third party RE +LT2ReportByCustomersES=Report by third party IRPF +VATReport=Sales tax report +VATReportByPeriods=Sales tax report by period +VATReportByMonth=Sales tax report by month +VATReportByRates=Sales tax report by rate +VATReportByThirdParties=Sales tax report by third party +VATReportByCustomers=Sales tax report by customer +VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid +VATReportByQuartersInInputOutputMode=Report by Sales tax rate of the tax collected and paid +VATReportShowByRateDetails=Show details of this rate +LT1ReportByQuarters=Report tax 2 by rate +LT2ReportByQuarters=Report tax 3 by rate +LT1ReportByQuartersES=Report by RE rate +LT2ReportByQuartersES=Report by IRPF rate +SeeVATReportInInputOutputMode=See report %sVAT collection%s for a standard calculation +SeeVATReportInDueDebtMode=See report %sVAT on debit%s for a calculation with an option on the invoicing +RulesVATInServices=- For services, the report includes the VAT of payments actually received or paid on the basis of the date of payment. +RulesVATInProducts=- For material assets, the report includes the VAT on the basis of the date of payment. +RulesVATDueServices=- For services, the report includes VAT of due invoices, paid or not, based on the invoice date. +RulesVATDueProducts=- For material assets, the report includes the VAT of due invoices, based on the invoice date. +OptionVatInfoModuleComptabilite=Note: For material assets, it should use the date of delivery to be more fair. +ThisIsAnEstimatedValue=This is a preview, based on business events and not from the final ledger table, so final results may differ from this preview values +PercentOfInvoice=%%/invoice +NotUsedForGoods=Not used on goods +ProposalStats=Statistics on proposals +OrderStats=Statistics on orders +InvoiceStats=Statistics on bills +Dispatch=Dispatching +Dispatched=Dispatched +ToDispatch=To dispatch +ThirdPartyMustBeEditAsCustomer=Third party must be defined as a customer +SellsJournal=Sales Journal +PurchasesJournal=Purchases Journal +DescSellsJournal=Sales Journal +DescPurchasesJournal=Purchases Journal +CodeNotDef=Not defined +WarningDepositsNotIncluded=Down payment invoices are not included in this version with this accountancy module. +DatePaymentTermCantBeLowerThanObjectDate=Payment term date can't be lower than object date. +Pcg_version=Chart of accounts models +Pcg_type=Pcg type +Pcg_subtype=Pcg subtype +InvoiceLinesToDispatch=Invoice lines to dispatch +ByProductsAndServices=By product and service +RefExt=External ref +ToCreateAPredefinedInvoice=To create a template invoice, create a standard invoice, then, without validating it, click on button "%s". +LinkedOrder=Link to order +Mode1=Method 1 +Mode2=Method 2 +CalculationRuleDesc=To calculate total VAT, there is two methods:
Method 1 is rounding vat on each line, then summing them.
Method 2 is summing all vat on each line, then rounding result.
Final result may differs from few cents. Default mode is mode %s. +CalculationRuleDescSupplier=According to vendor, choose appropriate method to apply same calculation rule and get same result expected by your vendor. +TurnoverPerProductInCommitmentAccountingNotRelevant=The report of Turnover collected per product is not available. This report is only available for turnover invoiced. +TurnoverPerSaleTaxRateInCommitmentAccountingNotRelevant=The report of Turnover collected per sale tax rate is not available. This report is only available for turnover invoiced. +CalculationMode=Calculation mode +AccountancyJournal=Accounting code journal +ACCOUNTING_VAT_SOLD_ACCOUNT=Accounting account by default for VAT on sales (used if not defined on VAT dictionary setup) +ACCOUNTING_VAT_BUY_ACCOUNT=Accounting account by default for VAT on purchases (used if not defined on VAT dictionary setup) +ACCOUNTING_VAT_PAY_ACCOUNT=Accounting account by default for paying VAT +ACCOUNTING_ACCOUNT_CUSTOMER=Accounting account used for customer third parties +ACCOUNTING_ACCOUNT_CUSTOMER_Desc=The dedicated accounting account defined on third party card will be used for Subledger accounting only. This one will be used for General Ledger and as default value of Subledger accounting if dedicated customer accounting account on third party is not defined. +ACCOUNTING_ACCOUNT_SUPPLIER=Accounting account used for vendor third parties +ACCOUNTING_ACCOUNT_SUPPLIER_Desc=The dedicated accounting account defined on third party card will be used for Subledger accounting only. This one will be used for General Ledger and as default value of Subledger accounting if dedicated vendor accounting account on third party is not defined. +ConfirmCloneTax=Confirm the clone of a social/fiscal tax +ConfirmCloneVAT=Confirm the clone of a VAT declaration +ConfirmCloneSalary=Confirm the clone of a salary +CloneTaxForNextMonth=Clone it for next month +SimpleReport=Simple report +AddExtraReport=Extra reports (add foreign and national customer report) +OtherCountriesCustomersReport=Foreign customers report +BasedOnTwoFirstLettersOfVATNumberBeingDifferentFromYourCompanyCountry=Based on the two first letters of the VAT number being different from your own company's country code +SameCountryCustomersWithVAT=National customers report +BasedOnTwoFirstLettersOfVATNumberBeingTheSameAsYourCompanyCountry=Based on the two first letters of the VAT number being the same as your own company's country code +LinkedFichinter=Link to an intervention +ImportDataset_tax_contrib=Social/fiscal taxes +ImportDataset_tax_vat=Vat payments +ErrorBankAccountNotFound=Error: Bank account not found +FiscalPeriod=Accounting period +ListSocialContributionAssociatedProject=List of social contributions associated with the project +DeleteFromCat=Remove from accounting group +AccountingAffectation=Accounting assignment +LastDayTaxIsRelatedTo=Last day of period the tax is related to +VATDue=Sale tax claimed +ClaimedForThisPeriod=Claimed for the period +PaidDuringThisPeriod=Paid for this period +PaidDuringThisPeriodDesc=This is the sum of all payments linked to VAT declarations which have an end-of-period date in the selected date range +ByVatRate=By sale tax rate +TurnoverbyVatrate=Turnover invoiced by sale tax rate +TurnoverCollectedbyVatrate=Turnover collected by sale tax rate +PurchasebyVatrate=Purchase by sale tax rate +LabelToShow=Short label +PurchaseTurnover=Purchase turnover +PurchaseTurnoverCollected=Purchase turnover collected +RulesPurchaseTurnoverDue=- It includes the supplier's due invoices whether they are paid or not.
- It is based on the invoice date of these invoices.
+RulesPurchaseTurnoverIn=- It includes all the effective payments of invoices done to suppliers.
- It is based on the payment date of these invoices
+RulesPurchaseTurnoverTotalPurchaseJournal=It includes all debit lines from the purchase journal. +RulesPurchaseTurnoverOfExpenseAccounts=It includes (debit - credit) of lines for product accounts in group EXPENSE +ReportPurchaseTurnover=Purchase turnover invoiced +ReportPurchaseTurnoverCollected=Purchase turnover collected +IncludeVarpaysInResults = Include various payments in reports +IncludeLoansInResults = Include loans in reports +InvoiceLate30Days = Late (> 30 days) +InvoiceLate15Days = Late (15 to 30 days) +InvoiceLateMinus15Days = Late (< 15 days) +InvoiceNotLate = To be collected (< 15 days) +InvoiceNotLate15Days = To be collected (15 to 30 days) +InvoiceNotLate30Days = To be collected (> 30 days) +InvoiceToPay=To pay (< 15 days) +InvoiceToPay15Days=To pay (15 to 30 days) +InvoiceToPay30Days=To pay (> 30 days) +ConfirmPreselectAccount=Preselect accountancy code +ConfirmPreselectAccountQuestion=Are you sure you want to preselect the %s selected lines with this accountancy code ? +AmountPaidMustMatchAmountOfDownPayment=Amount paid must match amount of down payment diff --git a/htdocs/langs/ms_MY/contracts.lang b/htdocs/langs/ms_MY/contracts.lang new file mode 100644 index 00000000000..8d209623c1b --- /dev/null +++ b/htdocs/langs/ms_MY/contracts.lang @@ -0,0 +1,107 @@ +# Dolibarr language file - Source file is en_US - contracts +ContractsArea=Contracts area +ListOfContracts=List of contracts +AllContracts=All contracts +ContractCard=Contract card +ContractStatusNotRunning=Not running +ContractStatusDraft=Draft +ContractStatusValidated=Validated +ContractStatusClosed=Closed +ServiceStatusInitial=Not running +ServiceStatusRunning=Running +ServiceStatusNotLate=Running, not expired +ServiceStatusNotLateShort=Not expired +ServiceStatusLate=Running, expired +ServiceStatusLateShort=Expired +ServiceStatusClosed=Closed +ShowContractOfService=Show contract of service +Contracts=Contracts +ContractsSubscriptions=Contracts/Subscriptions +ContractsAndLine=Contracts and line of contracts +Contract=Contract +ContractLine=Contract line +ContractLines=Contract lines +Closing=Closing +NoContracts=No contracts +MenuServices=Services +MenuInactiveServices=Services not active +MenuRunningServices=Running services +MenuExpiredServices=Expired services +MenuClosedServices=Closed services +NewContract=New contract +NewContractSubscription=New contract or subscription +AddContract=Create contract +DeleteAContract=Delete a contract +ActivateAllOnContract=Activate all services +CloseAContract=Close a contract +ConfirmDeleteAContract=Are you sure you want to delete this contract and all its services? +ConfirmValidateContract=Are you sure you want to validate this contract under name %s? +ConfirmActivateAllOnContract=This will open all services (not yet active). Are you sure you want to open all services? +ConfirmCloseContract=This will close all services (expired or not). Are you sure you want to close this contract? +ConfirmCloseService=Are you sure you want to close this service with date %s? +ValidateAContract=Validate a contract +ActivateService=Activate service +ConfirmActivateService=Are you sure you want to activate this service with date %s? +RefContract=Contract reference +DateContract=Contract date +DateServiceActivate=Service activation date +ListOfServices=List of services +ListOfInactiveServices=List of not active services +ListOfExpiredServices=List of expired active services +ListOfClosedServices=List of closed services +ListOfRunningServices=List of running services +NotActivatedServices=Inactive services (among validated contracts) +BoardNotActivatedServices=Services to activate among validated contracts +BoardNotActivatedServicesShort=Services to activate +LastContracts=Latest %s contracts +LastModifiedServices=Latest %s modified services +ContractStartDate=Start date +ContractEndDate=End date +DateStartPlanned=Planned start date +DateStartPlannedShort=Planned start date +DateEndPlanned=Planned end date +DateEndPlannedShort=Planned end date +DateStartReal=Real start date +DateStartRealShort=Real start date +DateEndReal=Real end date +DateEndRealShort=Real end date +CloseService=Close service +BoardRunningServices=Services running +BoardRunningServicesShort=Services running +BoardExpiredServices=Services expired +BoardExpiredServicesShort=Services expired +ServiceStatus=Status of service +DraftContracts=Drafts contracts +CloseRefusedBecauseOneServiceActive=Contract can't be closed as there is at least one open service on it +ActivateAllContracts=Activate all contract lines +CloseAllContracts=Close all contract lines +DeleteContractLine=Delete a contract line +ConfirmDeleteContractLine=Are you sure you want to delete this contract line? +MoveToAnotherContract=Move service into another contract. +ConfirmMoveToAnotherContract=I choosed new target contract and confirm I want to move this service into this contract. +ConfirmMoveToAnotherContractQuestion=Choose in which existing contract (of same third party), you want to move this service to? +PaymentRenewContractId=Renew contract line (number %s) +ExpiredSince=Expiration date +NoExpiredServices=No expired active services +ListOfServicesToExpireWithDuration=List of Services to expire in %s days +ListOfServicesToExpireWithDurationNeg=List of Services expired from more than %s days +ListOfServicesToExpire=List of Services to expire +NoteListOfYourExpiredServices=This list contains only services of contracts for third parties you are linked to as a sale representative. +StandardContractsTemplate=Standard contracts template +ContactNameAndSignature=For %s, name and signature: +OnlyLinesWithTypeServiceAreUsed=Only lines with type "Service" will be cloned. +ConfirmCloneContract=Are you sure you want to clone the contract %s? +LowerDateEndPlannedShort=Lower planned end date of active services +SendContractRef=Contract information __REF__ +OtherContracts=Other contracts +##### Types de contacts ##### +TypeContact_contrat_internal_SALESREPSIGN=Sales representative signing contract +TypeContact_contrat_internal_SALESREPFOLL=Sales representative following-up contract +TypeContact_contrat_external_BILLING=Billing customer contact +TypeContact_contrat_external_CUSTOMER=Follow-up customer contact +TypeContact_contrat_external_SALESREPSIGN=Signing contract customer contact +HideClosedServiceByDefault=Hide closed services by default +ShowClosedServices=Show Closed Services +HideClosedServices=Hide Closed Services +UserStartingService=User starting service +UserClosingService=User closing service diff --git a/htdocs/langs/ms_MY/cron.lang b/htdocs/langs/ms_MY/cron.lang new file mode 100644 index 00000000000..9705f8823b0 --- /dev/null +++ b/htdocs/langs/ms_MY/cron.lang @@ -0,0 +1,93 @@ +# Dolibarr language file - Source file is en_US - cron +# About page +# Right +Permission23101 = Read Scheduled job +Permission23102 = Create/update Scheduled job +Permission23103 = Delete Scheduled job +Permission23104 = Execute Scheduled job +# Admin +CronSetup=Scheduled job management setup +URLToLaunchCronJobs=URL to check and launch qualified cron jobs from a browser +OrToLaunchASpecificJob=Or to check and launch a specific job from a browser +KeyForCronAccess=Security key for URL to launch cron jobs +FileToLaunchCronJobs=Command line to check and launch qualified cron jobs +CronExplainHowToRunUnix=On Unix environment you should use the following crontab entry to run the command line each 5 minutes +CronExplainHowToRunWin=On Microsoft(tm) Windows environment you can use Scheduled Task tools to run the command line each 5 minutes +CronMethodDoesNotExists=Class %s does not contains any method %s +CronMethodNotAllowed=Method %s of class %s is in blacklist of forbidden methods +CronJobDefDesc=Cron job profiles are defined into the module descriptor file. When module is activated, they are loaded and available so you can administer the jobs from the admin tools menu %s. +CronJobProfiles=List of predefined cron job profiles +# Menu +EnabledAndDisabled=Enabled and disabled +# Page list +CronLastOutput=Latest run output +CronLastResult=Latest result code +CronCommand=Command +CronList=Scheduled jobs +CronDelete=Delete scheduled jobs +CronConfirmDelete=Are you sure you want to delete these scheduled jobs? +CronExecute=Launch scheduled job +CronConfirmExecute=Are you sure you want to execute these scheduled jobs now? +CronInfo=Scheduled job module allows to schedule jobs to execute them automatically. Jobs can also be started manually. +CronTask=Job +CronNone=None +CronDtStart=Not before +CronDtEnd=Not after +CronDtNextLaunch=Next execution +CronDtLastLaunch=Start date of latest execution +CronDtLastResult=End date of latest execution +CronFrequency=Frequency +CronClass=Class +CronMethod=Method +CronModule=Module +CronNoJobs=No jobs registered +CronPriority=Priority +CronLabel=Label +CronNbRun=Number of launches +CronMaxRun=Maximum number of launches +CronEach=Every +JobFinished=Job launched and finished +Scheduled=Scheduled +#Page card +CronAdd= Add jobs +CronEvery=Execute job each +CronObject=Instance/Object to create +CronArgs=Parameters +CronSaveSucess=Save successfully +CronNote=Comment +CronFieldMandatory=Fields %s is mandatory +CronErrEndDateStartDt=End date cannot be before start date +StatusAtInstall=Status at module installation +CronStatusActiveBtn=Schedule +CronStatusInactiveBtn=Disable +CronTaskInactive=This job is disabled (not scheduled) +CronId=Id +CronClassFile=Filename with class +CronModuleHelp=Name of Dolibarr module directory (also work with external Dolibarr module).
For example to call the fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value for module is
product +CronClassFileHelp=The relative path and file name to load (path is relative to web server root directory).
For example to call the fetch method of Dolibarr Product object htdocs/product/class/product.class.php, the value for class file name is
product/class/product.class.php +CronObjectHelp=The object name to load.
For example to call the fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value for class file name is
Product +CronMethodHelp=The object method to launch.
For example to call the fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value for method is
fetch +CronArgsHelp=The method arguments.
For example to call the fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value for paramters can be
0, ProductRef +CronCommandHelp=The system command line to execute. +CronCreateJob=Create new Scheduled Job +CronFrom=From +# Info +# Common +CronType=Job type +CronType_method=Call method of a PHP Class +CronType_command=Shell command +CronCannotLoadClass=Cannot load class file %s (to use class %s) +CronCannotLoadObject=Class file %s was loaded, but object %s was not found into it +UseMenuModuleToolsToAddCronJobs=Go into menu "Home - Admin tools - Scheduled jobs" to see and edit scheduled jobs. +JobDisabled=Job disabled +MakeLocalDatabaseDumpShort=Local database backup +MakeLocalDatabaseDump=Create a local database dump. Parameters are: compression ('gz' or 'bz' or 'none'), backup type ('mysql', 'pgsql', 'auto'), 1, 'auto' or filename to build, number of backup files to keep +MakeSendLocalDatabaseDumpShort=Send local database backup +MakeSendLocalDatabaseDump=Send local database backup by email. Parameters are: to, from, subject, message, filename (Name of file sent), filter ('sql' for backup of database only) +WarningCronDelayed=Attention, for performance purpose, whatever is next date of execution of enabled jobs, your jobs may be delayed to a maximum of %s hours, before being run. +DATAPOLICYJob=Data cleaner and anonymizer +JobXMustBeEnabled=Job %s must be enabled +# Cron Boxes +LastExecutedScheduledJob=Last executed scheduled job +NextScheduledJobExecute=Next scheduled job to execute +NumberScheduledJobError=Number of scheduled jobs in error diff --git a/htdocs/langs/ms_MY/deliveries.lang b/htdocs/langs/ms_MY/deliveries.lang new file mode 100644 index 00000000000..cd8a36e6c70 --- /dev/null +++ b/htdocs/langs/ms_MY/deliveries.lang @@ -0,0 +1,33 @@ +# Dolibarr language file - Source file is en_US - deliveries +Delivery=Delivery +DeliveryRef=Ref Delivery +DeliveryCard=Receipt card +DeliveryOrder=Delivery receipt +DeliveryDate=Delivery date +CreateDeliveryOrder=Generate delivery receipt +DeliveryStateSaved=Delivery state saved +SetDeliveryDate=Set shipping date +ValidateDeliveryReceipt=Validate delivery receipt +ValidateDeliveryReceiptConfirm=Are you sure you want to validate this delivery receipt? +DeleteDeliveryReceipt=Delete delivery receipt +DeleteDeliveryReceiptConfirm=Are you sure you want to delete delivery receipt %s? +DeliveryMethod=Delivery method +TrackingNumber=Tracking number +DeliveryNotValidated=Delivery not validated +StatusDeliveryCanceled=Canceled +StatusDeliveryDraft=Draft +StatusDeliveryValidated=Received +# merou PDF model +NameAndSignature=Name and Signature: +ToAndDate=To___________________________________ on ____/_____/__________ +GoodStatusDeclaration=Have received the goods above in good condition, +Deliverer=Deliverer: +Sender=Sender +Recipient=Recipient +ErrorStockIsNotEnough=There's not enough stock +Shippable=Shippable +NonShippable=Not Shippable +ShowShippableStatus=Show shippable status +ShowReceiving=Show delivery receipt +NonExistentOrder=Nonexistent order +StockQuantitiesAlreadyAllocatedOnPreviousLines = Stock quantities already allocated on previous lines diff --git a/htdocs/langs/ms_MY/dict.lang b/htdocs/langs/ms_MY/dict.lang new file mode 100644 index 00000000000..0524cf1ca18 --- /dev/null +++ b/htdocs/langs/ms_MY/dict.lang @@ -0,0 +1,359 @@ +# Dolibarr language file - Source file is en_US - dict +CountryFR=France +CountryBE=Belgium +CountryIT=Italy +CountryES=Spain +CountryDE=Germany +CountryCH=Switzerland +# Warning, country code GB is for United Kingdom. UK Does not exists as country code in ISO standard. +CountryGB=United Kingdom +CountryUK=United Kingdom +CountryIE=Ireland +CountryCN=China +CountryTN=Tunisia +CountryUS=United States +CountryMA=Morocco +CountryDZ=Algeria +CountryCA=Canada +CountryTG=Togo +CountryGA=Gabon +CountryNL=Netherlands +CountryHU=Hungary +CountryRU=Russia +CountrySE=Sweden +CountryCI=Ivory Coast +CountrySN=Senegal +CountryAR=Argentina +CountryCM=Cameroon +CountryPT=Portugal +CountrySA=Saudi Arabia +CountryMC=Monaco +CountryAU=Australia +CountrySG=Singapore +CountryAF=Afghanistan +CountryAX=Åland Islands +CountryAL=Albania +CountryAS=American Samoa +CountryAD=Andorra +CountryAO=Angola +CountryAI=Anguilla +CountryAQ=Antarctica +CountryAG=Antigua and Barbuda +CountryAM=Armenia +CountryAW=Aruba +CountryAT=Austria +CountryAZ=Azerbaijan +CountryBS=Bahamas +CountryBH=Bahrain +CountryBD=Bangladesh +CountryBB=Barbados +CountryBY=Belarus +CountryBZ=Belize +CountryBJ=Benin +CountryBM=Bermuda +CountryBT=Bhutan +CountryBO=Bolivia +CountryBA=Bosnia and Herzegovina +CountryBW=Botswana +CountryBV=Bouvet Island +CountryBR=Brazil +CountryIO=British Indian Ocean Territory +CountryBN=Brunei Darussalam +CountryBG=Bulgaria +CountryBF=Burkina Faso +CountryBI=Burundi +CountryKH=Cambodia +CountryCV=Cape Verde +CountryKY=Cayman Islands +CountryCF=Central African Republic +CountryTD=Chad +CountryCL=Chile +CountryCX=Christmas Island +CountryCC=Cocos (Keeling) Islands +CountryCO=Colombia +CountryKM=Comoros +CountryCG=Congo +CountryCD=Congo, The Democratic Republic of the +CountryCK=Cook Islands +CountryCR=Costa Rica +CountryHR=Croatia +CountryCU=Cuba +CountryCY=Cyprus +CountryCZ=Czech Republic +CountryDK=Denmark +CountryDJ=Djibouti +CountryDM=Dominica +CountryDO=Dominican Republic +CountryEC=Ecuador +CountryEG=Egypt +CountrySV=El Salvador +CountryGQ=Equatorial Guinea +CountryER=Eritrea +CountryEE=Estonia +CountryET=Ethiopia +CountryFK=Falkland Islands +CountryFO=Faroe Islands +CountryFJ=Fiji Islands +CountryFI=Finland +CountryGF=French Guiana +CountryPF=French Polynesia +CountryTF=French Southern Territories +CountryGM=Gambia +CountryGE=Georgia +CountryGH=Ghana +CountryGI=Gibraltar +CountryGR=Greece +CountryGL=Greenland +CountryGD=Grenada +CountryGP=Guadeloupe +CountryGU=Guam +CountryGT=Guatemala +CountryGN=Guinea +CountryGW=Guinea-Bissau +CountryGY=Guyana +CountryHT=Haïti +CountryHM=Heard Island and McDonald +CountryVA=Holy See (Vatican City State) +CountryHN=Honduras +CountryHK=Hong Kong +CountryIS=Iceland +CountryIN=India +CountryID=Indonesia +CountryIR=Iran +CountryIQ=Iraq +CountryIL=Israel +CountryJM=Jamaica +CountryJP=Japan +CountryJO=Jordan +CountryKZ=Kazakhstan +CountryKE=Kenya +CountryKI=Kiribati +CountryKP=North Korea +CountryKR=South Korea +CountryKW=Kuwait +CountryKG=Kyrgyzstan +CountryLA=Lao +CountryLV=Latvia +CountryLB=Lebanon +CountryLS=Lesotho +CountryLR=Liberia +CountryLY=Libyan +CountryLI=Liechtenstein +CountryLT=Lithuania +CountryLU=Luxembourg +CountryMO=Macao +CountryMK=Macedonia, the former Yugoslav of +CountryMG=Madagascar +CountryMW=Malawi +CountryMY=Malaysia +CountryMV=Maldives +CountryML=Mali +CountryMT=Malta +CountryMH=Marshall Islands +CountryMQ=Martinique +CountryMR=Mauritania +CountryMU=Mauritius +CountryYT=Mayotte +CountryMX=Mexico +CountryFM=Micronesia +CountryMD=Moldova +CountryMN=Mongolia +CountryMS=Monserrat +CountryMZ=Mozambique +CountryMM=Myanmar (Burma) +CountryNA=Namibia +CountryNR=Nauru +CountryNP=Nepal +CountryAN=Netherlands Antilles +CountryNC=New Caledonia +CountryNZ=New Zealand +CountryNI=Nicaragua +CountryNE=Niger +CountryNG=Nigeria +CountryNU=Niue +CountryNF=Norfolk Island +CountryMP=Northern Mariana Islands +CountryNO=Norway +CountryOM=Oman +CountryPK=Pakistan +CountryPW=Palau +CountryPS=Palestinian Territory, Occupied +CountryPA=Panama +CountryPG=Papua New Guinea +CountryPY=Paraguay +CountryPE=Peru +CountryPH=Philippines +CountryPN=Pitcairn Islands +CountryPL=Poland +CountryPR=Puerto Rico +CountryQA=Qatar +CountryRE=Reunion +CountryRO=Romania +CountryRW=Rwanda +CountrySH=Saint Helena +CountryKN=Saint Kitts and Nevis +CountryLC=Saint Lucia +CountryPM=Saint Pierre and Miquelon +CountryVC=Saint Vincent and Grenadines +CountryWS=Samoa +CountrySM=San Marino +CountryST=Sao Tome and Principe +CountryRS=Serbia +CountrySC=Seychelles +CountrySL=Sierra Leone +CountrySK=Slovakia +CountrySI=Slovenia +CountrySB=Solomon Islands +CountrySO=Somalia +CountryZA=South Africa +CountryGS=South Georgia and the South Sandwich Islands +CountryLK=Sri Lanka +CountrySD=Sudan +CountrySR=Suriname +CountrySJ=Svalbard and Jan Mayen +CountrySZ=Swaziland +CountrySY=Syrian +CountryTW=Taiwan +CountryTJ=Tajikistan +CountryTZ=Tanzania +CountryTH=Thailand +CountryTL=Timor-Leste +CountryTK=Tokelau +CountryTO=Tonga +CountryTT=Trinidad and Tobago +CountryTR=Turkey +CountryTM=Turkmenistan +CountryTC=Turks and Caicos Islands +CountryTV=Tuvalu +CountryUG=Uganda +CountryUA=Ukraine +CountryAE=United Arab Emirates +CountryUM=United States Minor Outlying Islands +CountryUY=Uruguay +CountryUZ=Uzbekistan +CountryVU=Vanuatu +CountryVE=Venezuela +CountryVN=Viet Nam +CountryVG=Virgin Islands, British +CountryVI=Virgin Islands, U.S. +CountryWF=Wallis and Futuna +CountryEH=Western Sahara +CountryYE=Yemen +CountryZM=Zambia +CountryZW=Zimbabwe +CountryGG=Guernsey +CountryIM=Isle of Man +CountryJE=Jersey +CountryME=Montenegro +CountryBL=Saint Barthelemy +CountryMF=Saint Martin + +##### Civilities ##### +CivilityMME=Mrs. +CivilityMR=Mr. +CivilityMLE=Ms. +CivilityMTRE=Master +CivilityDR=Doctor +##### Currencies ##### +Currencyeuros=Euros +CurrencyAUD=AU Dollars +CurrencySingAUD=AU Dollar +CurrencyCAD=CAN Dollars +CurrencySingCAD=CAN Dollar +CurrencyCHF=Swiss Francs +CurrencySingCHF=Swiss Franc +CurrencyEUR=Euros +CurrencySingEUR=Euro +CurrencyFRF=French Francs +CurrencySingFRF=French Franc +CurrencyGBP=GB Pounds +CurrencySingGBP=GB Pound +CurrencyINR=Indian rupees +CurrencySingINR=Indian rupee +CurrencyMAD=Dirham +CurrencySingMAD=Dirham +CurrencyMGA=Ariary +CurrencySingMGA=Ariary +CurrencyMUR=Mauritius rupees +CurrencySingMUR=Mauritius rupee +CurrencyNOK=Norwegian krones +CurrencySingNOK=Norwegian kronas +CurrencyTND=Tunisian dinars +CurrencySingTND=Tunisian dinar +CurrencyUSD=US Dollars +CurrencySingUSD=US Dollar +CurrencyUAH=Hryvnia +CurrencySingUAH=Hryvnia +CurrencyXAF=CFA Francs BEAC +CurrencySingXAF=CFA Franc BEAC +CurrencyXOF=CFA Francs BCEAO +CurrencySingXOF=CFA Franc BCEAO +CurrencyXPF=CFP Francs +CurrencySingXPF=CFP Franc +CurrencyCentEUR=cents +CurrencyCentSingEUR=cent +CurrencyCentINR=paisa +CurrencyCentSingINR=paise +CurrencyThousandthSingTND=thousandth +#### Input reasons ##### +DemandReasonTypeSRC_INTE=Internet +DemandReasonTypeSRC_CAMP_MAIL=Mailing campaign +DemandReasonTypeSRC_CAMP_EMAIL=EMailing campaign +DemandReasonTypeSRC_CAMP_PHO=Phone campaign +DemandReasonTypeSRC_CAMP_FAX=Fax campaign +DemandReasonTypeSRC_COMM=Commercial contact +DemandReasonTypeSRC_SHOP=Shop contact +DemandReasonTypeSRC_WOM=Word of mouth +DemandReasonTypeSRC_PARTNER=Partner +DemandReasonTypeSRC_EMPLOYEE=Employee +DemandReasonTypeSRC_SPONSORING=Sponsorship +DemandReasonTypeSRC_SRC_CUSTOMER=Incoming contact of a customer +#### Paper formats #### +PaperFormatEU4A0=Format 4A0 +PaperFormatEU2A0=Format 2A0 +PaperFormatEUA0=Format A0 +PaperFormatEUA1=Format A1 +PaperFormatEUA2=Format A2 +PaperFormatEUA3=Format A3 +PaperFormatEUA4=Format A4 +PaperFormatEUA5=Format A5 +PaperFormatEUA6=Format A6 +PaperFormatUSLETTER=Format Letter US +PaperFormatUSLEGAL=Format Legal US +PaperFormatUSEXECUTIVE=Format Executive US +PaperFormatUSLEDGER=Format Ledger/Tabloid +PaperFormatCAP1=Format P1 Canada +PaperFormatCAP2=Format P2 Canada +PaperFormatCAP3=Format P3 Canada +PaperFormatCAP4=Format P4 Canada +PaperFormatCAP5=Format P5 Canada +PaperFormatCAP6=Format P6 Canada +#### Expense report categories #### +ExpAutoCat=Car +ExpCycloCat=Moped +ExpMotoCat=Motorbike +ExpAuto3CV=3 CV +ExpAuto4CV=4 CV +ExpAuto5CV=5 CV +ExpAuto6CV=6 CV +ExpAuto7CV=7 CV +ExpAuto8CV=8 CV +ExpAuto9CV=9 CV +ExpAuto10CV=10 CV +ExpAuto11CV=11 CV +ExpAuto12CV=12 CV +ExpAuto3PCV=3 CV and more +ExpAuto4PCV=4 CV and more +ExpAuto5PCV=5 CV and more +ExpAuto6PCV=6 CV and more +ExpAuto7PCV=7 CV and more +ExpAuto8PCV=8 CV and more +ExpAuto9PCV=9 CV and more +ExpAuto10PCV=10 CV and more +ExpAuto11PCV=11 CV and more +ExpAuto12PCV=12 CV and more +ExpAuto13PCV=13 CV and more +ExpCyclo=Capacity lower to 50cm3 +ExpMoto12CV=Motorbike 1 or 2 CV +ExpMoto345CV=Motorbike 3, 4 or 5 CV +ExpMoto5PCV=Motorbike 5 CV and more diff --git a/htdocs/langs/ms_MY/donations.lang b/htdocs/langs/ms_MY/donations.lang new file mode 100644 index 00000000000..d512abb2eea --- /dev/null +++ b/htdocs/langs/ms_MY/donations.lang @@ -0,0 +1,35 @@ +# Dolibarr language file - Source file is en_US - donations +Donation=Donation +Donations=Donations +DonationRef=Donation ref. +Donor=Donor +AddDonation=Create a donation +NewDonation=New donation +DeleteADonation=Delete a donation +ConfirmDeleteADonation=Are you sure you want to delete this donation? +PublicDonation=Public donation +DonationsArea=Donations area +DonationStatusPromiseNotValidated=Draft promise +DonationStatusPromiseValidated=Validated promise +DonationStatusPaid=Donation received +DonationStatusPromiseNotValidatedShort=Draft +DonationStatusPromiseValidatedShort=Validated +DonationStatusPaidShort=Received +DonationTitle=Donation receipt +DonationDate=Donation date +DonationDatePayment=Payment date +ValidPromess=Validate promise +DonationReceipt=Donation receipt +DonationsModels=Documents models for donation receipts +LastModifiedDonations=Latest %s modified donations +DonationRecipient=Donation recipient +IConfirmDonationReception=The recipient declare reception, as a donation, of the following amount +MinimumAmount=Minimum amount is %s +FreeTextOnDonations=Free text to show in footer +FrenchOptions=Options for France +DONATION_ART200=Show article 200 from CGI if you are concerned +DONATION_ART238=Show article 238 from CGI if you are concerned +DONATION_ART885=Show article 885 from CGI if you are concerned +DonationPayment=Donation payment +DonationValidated=Donation %s validated +DonationUseThirdparties=Use an existing thirdparty as coordinates of donators diff --git a/htdocs/langs/ms_MY/ecm.lang b/htdocs/langs/ms_MY/ecm.lang new file mode 100644 index 00000000000..494a6c55164 --- /dev/null +++ b/htdocs/langs/ms_MY/ecm.lang @@ -0,0 +1,49 @@ +# Dolibarr language file - Source file is en_US - ecm +ECMNbOfDocs=No. of documents in directory +ECMSection=Directory +ECMSectionManual=Manual directory +ECMSectionAuto=Automatic directory +ECMSectionsManual=Manual tree +ECMSectionsAuto=Automatic tree +ECMSections=Directories +ECMRoot=ECM Root +ECMNewSection=New directory +ECMAddSection=Add directory +ECMCreationDate=Creation date +ECMNbOfFilesInDir=Number of files in directory +ECMNbOfSubDir=Number of sub-directories +ECMNbOfFilesInSubDir=Number of files in sub-directories +ECMCreationUser=Creator +ECMArea=DMS/ECM area +ECMAreaDesc=The DMS/ECM (Document Management System / Electronic Content Management) area allows you to save, share and search quickly all kind of documents in Dolibarr. +ECMAreaDesc2=* Automatic directories are filled automatically when adding documents from card of an element.
* Manual directories can be used to save documents not linked to a particular element. +ECMSectionWasRemoved=Directory %s has been deleted. +ECMSectionWasCreated=Directory %s has been created. +ECMSearchByKeywords=Search by keywords +ECMSearchByEntity=Search by object +ECMSectionOfDocuments=Directories of documents +ECMTypeAuto=Automatic +ECMDocsBy=Documents linked to %s +ECMNoDirectoryYet=No directory created +ShowECMSection=Show directory +DeleteSection=Remove directory +ConfirmDeleteSection=Can you confirm you want to delete the directory %s? +ECMDirectoryForFiles=Relative directory for files +CannotRemoveDirectoryContainsFilesOrDirs=Removal not possible because it contains some files or sub-directories +CannotRemoveDirectoryContainsFiles=Removal not possible because it contains some files +ECMFileManager=File manager +ECMSelectASection=Select a directory in the tree... +DirNotSynchronizedSyncFirst=This directory seems to be created or modified outside ECM module. You must click on "Resync" button first to synchronize disk and database to get content of this directory. +ReSyncListOfDir=Resync list of directories +HashOfFileContent=Hash of file content +NoDirectoriesFound=No directories found +FileNotYetIndexedInDatabase=File not yet indexed into database (try to re-upload it) +ExtraFieldsEcmFiles=Extrafields Ecm Files +ExtraFieldsEcmDirectories=Extrafields Ecm Directories +ECMSetup=ECM Setup +GenerateImgWebp=Duplicate all images with another version with .webp format +ConfirmGenerateImgWebp=If you confirm, you will generate an image in .webp format for all images currently into this folder (subfolders are not included)... +ConfirmImgWebpCreation=Confirm all images duplication +SucessConvertImgWebp=Images successfully duplicated +ECMDirName=Dir name +ECMParentDirectory=Parent directory diff --git a/htdocs/langs/ms_MY/errors.lang b/htdocs/langs/ms_MY/errors.lang new file mode 100644 index 00000000000..44ce0211742 --- /dev/null +++ b/htdocs/langs/ms_MY/errors.lang @@ -0,0 +1,347 @@ +# Dolibarr language file - Source file is en_US - errors + +# No errors +NoErrorCommitIsDone=No error, we commit +# Errors +ErrorButCommitIsDone=Errors found but we validate despite this +ErrorBadEMail=Email %s is incorrect +ErrorBadMXDomain=Email %s seems incorrect (domain has no valid MX record) +ErrorBadUrl=Url %s is incorrect +ErrorBadValueForParamNotAString=Bad value for your parameter. It appends generally when translation is missing. +ErrorRefAlreadyExists=Reference %s already exists. +ErrorTitleAlreadyExists=Title %s already exists. +ErrorLoginAlreadyExists=Login %s already exists. +ErrorGroupAlreadyExists=Group %s already exists. +ErrorEmailAlreadyExists=Email %s already exists. +ErrorRecordNotFound=Record not found. +ErrorFailToCopyFile=Failed to copy file '%s' into '%s'. +ErrorFailToCopyDir=Failed to copy directory '%s' into '%s'. +ErrorFailToRenameFile=Failed to rename file '%s' into '%s'. +ErrorFailToDeleteFile=Failed to remove file '%s'. +ErrorFailToCreateFile=Failed to create file '%s'. +ErrorFailToRenameDir=Failed to rename directory '%s' into '%s'. +ErrorFailToCreateDir=Failed to create directory '%s'. +ErrorFailToDeleteDir=Failed to delete directory '%s'. +ErrorFailToMakeReplacementInto=Failed to make replacement into file '%s'. +ErrorFailToGenerateFile=Failed to generate file '%s'. +ErrorThisContactIsAlreadyDefinedAsThisType=This contact is already defined as contact for this type. +ErrorCashAccountAcceptsOnlyCashMoney=This bank account is a cash account, so it accepts payments of type cash only. +ErrorFromToAccountsMustDiffers=Source and targets bank accounts must be different. +ErrorBadThirdPartyName=Bad value for third-party name +ForbiddenBySetupRules=Forbidden by setup rules +ErrorProdIdIsMandatory=The %s is mandatory +ErrorAccountancyCodeCustomerIsMandatory=The accountancy code of customer %s is mandatory +ErrorBadCustomerCodeSyntax=Bad syntax for customer code +ErrorBadBarCodeSyntax=Bad syntax for barcode. May be you set a bad barcode type or you defined a barcode mask for numbering that does not match value scanned. +ErrorCustomerCodeRequired=Customer code required +ErrorBarCodeRequired=Barcode required +ErrorCustomerCodeAlreadyUsed=Customer code already used +ErrorBarCodeAlreadyUsed=Barcode already used +ErrorPrefixRequired=Prefix required +ErrorBadSupplierCodeSyntax=Bad syntax for vendor code +ErrorSupplierCodeRequired=Vendor code required +ErrorSupplierCodeAlreadyUsed=Vendor code already used +ErrorBadParameters=Bad parameters +ErrorWrongParameters=Wrong or missing parameters +ErrorBadValueForParameter=Wrong value '%s' for parameter '%s' +ErrorBadImageFormat=Image file has not a supported format (Your PHP does not support functions to convert images of this format) +ErrorBadDateFormat=Value '%s' has wrong date format +ErrorWrongDate=Date is not correct! +ErrorFailedToWriteInDir=Failed to write in directory %s +ErrorFoundBadEmailInFile=Found incorrect email syntax for %s lines in file (example line %s with email=%s) +ErrorUserCannotBeDelete=User cannot be deleted. Maybe it is associated to Dolibarr entities. +ErrorFieldsRequired=Some required fields have been left blank. +ErrorSubjectIsRequired=The email subject is required +ErrorFailedToCreateDir=Failed to create a directory. Check that Web server user has permissions to write into Dolibarr documents directory. If parameter safe_mode is enabled on this PHP, check that Dolibarr php files owns to web server user (or group). +ErrorNoMailDefinedForThisUser=No mail defined for this user +ErrorSetupOfEmailsNotComplete=Setup of emails is not complete +ErrorFeatureNeedJavascript=This feature need javascript to be activated to work. Change this in setup - display. +ErrorTopMenuMustHaveAParentWithId0=A menu of type 'Top' can't have a parent menu. Put 0 in parent menu or choose a menu of type 'Left'. +ErrorLeftMenuMustHaveAParentId=A menu of type 'Left' must have a parent id. +ErrorFileNotFound=File %s not found (Bad path, wrong permissions or access denied by PHP openbasedir or safe_mode parameter) +ErrorDirNotFound=Directory %s not found (Bad path, wrong permissions or access denied by PHP openbasedir or safe_mode parameter) +ErrorFunctionNotAvailableInPHP=Function %s is required for this feature but is not available in this version/setup of PHP. +ErrorDirAlreadyExists=A directory with this name already exists. +ErrorFileAlreadyExists=A file with this name already exists. +ErrorDestinationAlreadyExists=Another file with the name %s already exists. +ErrorPartialFile=File not received completely by server. +ErrorNoTmpDir=Temporary directy %s does not exists. +ErrorUploadBlockedByAddon=Upload blocked by a PHP/Apache plugin. +ErrorFileSizeTooLarge=File size is too large or file not provided. +ErrorFieldTooLong=Field %s is too long. +ErrorSizeTooLongForIntType=Size too long for int type (%s digits maximum) +ErrorSizeTooLongForVarcharType=Size too long for string type (%s chars maximum) +ErrorNoValueForSelectType=Please fill value for select list +ErrorNoValueForCheckBoxType=Please fill value for checkbox list +ErrorNoValueForRadioType=Please fill value for radio list +ErrorBadFormatValueList=The list value cannot have more than one comma: %s, but need at least one: key,value +ErrorFieldCanNotContainSpecialCharacters=The field %s must not contains special characters. +ErrorFieldCanNotContainSpecialNorUpperCharacters=The field %s must not contain special characters, nor upper case characters and cannot contain only numbers. +ErrorFieldMustHaveXChar=The field %s must have at least %s characters. +ErrorNoAccountancyModuleLoaded=No accountancy module activated +ErrorExportDuplicateProfil=This profile name already exists for this export set. +ErrorLDAPSetupNotComplete=Dolibarr-LDAP matching is not complete. +ErrorLDAPMakeManualTest=A .ldif file has been generated in directory %s. Try to load it manually from command line to have more information on errors. +ErrorCantSaveADoneUserWithZeroPercentage=Can't save an action with "status not started" if field "done by" is also filled. +ErrorRefAlreadyExists=Reference %s already exists. +ErrorPleaseTypeBankTransactionReportName=Please enter the bank statement name where the entry has to be reported (Format YYYYMM or YYYYMMDD) +ErrorRecordHasChildren=Failed to delete record since it has some child records. +ErrorRecordHasAtLeastOneChildOfType=Object %s has at least one child of type %s +ErrorRecordIsUsedCantDelete=Can't delete record. It is already used or included into another object. +ErrorModuleRequireJavascript=Javascript must not be disabled to have this feature working. To enable/disable Javascript, go to menu Home->Setup->Display. +ErrorPasswordsMustMatch=Both typed passwords must match each other +ErrorContactEMail=A technical error occured. Please, contact administrator to following email %s and provide the error code %s in your message, or add a screen copy of this page. +ErrorWrongValueForField=Field %s: '%s' does not match regex rule %s +ErrorHtmlInjectionForField=Field %s: The value '%s' contains a malicious data not allowed +ErrorFieldValueNotIn=Field %s: '%s' is not a value found in field %s of %s +ErrorFieldRefNotIn=Field %s: '%s' is not a %s existing ref +ErrorsOnXLines=%s errors found +ErrorFileIsInfectedWithAVirus=The antivirus program was not able to validate the file (file might be infected by a virus) +ErrorSpecialCharNotAllowedForField=Special characters are not allowed for field "%s" +ErrorNumRefModel=A reference exists into database (%s) and is not compatible with this numbering rule. Remove record or renamed reference to activate this module. +ErrorQtyTooLowForThisSupplier=Quantity too low for this vendor or no price defined on this product for this vendor +ErrorOrdersNotCreatedQtyTooLow=Some orders haven't been created because of too-low quantities +ErrorModuleSetupNotComplete=Setup of module %s looks to be uncomplete. Go on Home - Setup - Modules to complete. +ErrorBadMask=Error on mask +ErrorBadMaskFailedToLocatePosOfSequence=Error, mask without sequence number +ErrorBadMaskBadRazMonth=Error, bad reset value +ErrorMaxNumberReachForThisMask=Maximum number reached for this mask +ErrorCounterMustHaveMoreThan3Digits=Counter must have more than 3 digits +ErrorSelectAtLeastOne=Error, select at least one entry. +ErrorDeleteNotPossibleLineIsConsolidated=Delete not possible because record is linked to a bank transaction that is conciliated +ErrorProdIdAlreadyExist=%s is assigned to another third +ErrorFailedToSendPassword=Failed to send password +ErrorFailedToLoadRSSFile=Fails to get RSS feed. Try to add constant MAIN_SIMPLEXMLLOAD_DEBUG if error messages does not provide enough information. +ErrorForbidden=Access denied.
You try to access to a page, area or feature of a disabled module or without being in an authenticated session or that is not allowed to your user. +ErrorForbidden2=Permission for this login can be defined by your Dolibarr administrator from menu %s->%s. +ErrorForbidden3=It seems that Dolibarr is not used through an authenticated session. Take a look at Dolibarr setup documentation to know how to manage authentications (htaccess, mod_auth or other...). +ErrorForbidden4=Note: clear your browser cookies to destroy existing sessions for this login. +ErrorNoImagickReadimage=Class Imagick is not found in this PHP. No preview can be available. Administrators can disable this tab from menu Setup - Display. +ErrorRecordAlreadyExists=Record already exists +ErrorLabelAlreadyExists=This label already exists +ErrorCantReadFile=Failed to read file '%s' +ErrorCantReadDir=Failed to read directory '%s' +ErrorBadLoginPassword=Bad value for login or password +ErrorLoginDisabled=Your account has been disabled +ErrorFailedToRunExternalCommand=Failed to run external command. Check it is available and runnable by your PHP server user. Check also the command is not protected on shell level by a security layer like apparmor. +ErrorFailedToChangePassword=Failed to change password +ErrorLoginDoesNotExists=User with login %s could not be found. +ErrorLoginHasNoEmail=This user has no email address. Process aborted. +ErrorBadValueForCode=Bad value for security code. Try again with new value... +ErrorBothFieldCantBeNegative=Fields %s and %s can't be both negative +ErrorFieldCantBeNegativeOnInvoice=Field %s cannot be negative on this type of invoice. If you need to add a discount line, just create the discount first (from field '%s' in thirdparty card) and apply it to the invoice. +ErrorLinesCantBeNegativeForOneVATRate=Total of lines (net of tax) can't be negative for a given not null VAT rate (Found a negative total for VAT rate %s%%). +ErrorLinesCantBeNegativeOnDeposits=Lines can't be negative in a deposit. You will face problems when you will need to consume the deposit in final invoice if you do so. +ErrorQtyForCustomerInvoiceCantBeNegative=Quantity for line into customer invoices can't be negative +ErrorWebServerUserHasNotPermission=User account %s used to execute web server has no permission for that +ErrorNoActivatedBarcode=No barcode type activated +ErrUnzipFails=Failed to unzip %s with ZipArchive +ErrNoZipEngine=No engine to zip/unzip %s file in this PHP +ErrorFileMustBeADolibarrPackage=The file %s must be a Dolibarr zip package +ErrorModuleFileRequired=You must select a Dolibarr module package file +ErrorPhpCurlNotInstalled=The PHP CURL is not installed, this is essential to talk with Paypal +ErrorFailedToAddToMailmanList=Failed to add record %s to Mailman list %s or SPIP base +ErrorFailedToRemoveToMailmanList=Failed to remove record %s to Mailman list %s or SPIP base +ErrorNewValueCantMatchOldValue=New value can't be equal to old one +ErrorFailedToValidatePasswordReset=Failed to reinit password. May be the reinit was already done (this link can be used only one time). If not, try to restart the reinit process. +ErrorToConnectToMysqlCheckInstance=Connect to database fails. Check database server is running (for example, with mysql/mariadb, you can launch it from command line with 'sudo service mysql start'). +ErrorFailedToAddContact=Failed to add contact +ErrorDateMustBeBeforeToday=The date must be lower than today +ErrorDateMustBeInFuture=The date must be greater than today +ErrorPaymentModeDefinedToWithoutSetup=A payment mode was set to type %s but setup of module Invoice was not completed to define information to show for this payment mode. +ErrorPHPNeedModule=Error, your PHP must have module %s installed to use this feature. +ErrorOpenIDSetupNotComplete=You setup Dolibarr config file to allow OpenID authentication, but URL of OpenID service is not defined into constant %s +ErrorWarehouseMustDiffers=Source and target warehouses must differs +ErrorBadFormat=Bad format! +ErrorMemberNotLinkedToAThirpartyLinkOrCreateFirst=Error, this member is not yet linked to any third party. Link member to an existing third party or create a new third party before creating subscription with invoice. +ErrorThereIsSomeDeliveries=Error, there is some deliveries linked to this shipment. Deletion refused. +ErrorCantDeletePaymentReconciliated=Can't delete a payment that had generated a bank entry that was reconciled +ErrorCantDeletePaymentSharedWithPayedInvoice=Can't delete a payment shared by at least one invoice with status Paid +ErrorPriceExpression1=Cannot assign to constant '%s' +ErrorPriceExpression2=Cannot redefine built-in function '%s' +ErrorPriceExpression3=Undefined variable '%s' in function definition +ErrorPriceExpression4=Illegal character '%s' +ErrorPriceExpression5=Unexpected '%s' +ErrorPriceExpression6=Wrong number of arguments (%s given, %s expected) +ErrorPriceExpression8=Unexpected operator '%s' +ErrorPriceExpression9=An unexpected error occured +ErrorPriceExpression10=Operator '%s' lacks operand +ErrorPriceExpression11=Expecting '%s' +ErrorPriceExpression14=Division by zero +ErrorPriceExpression17=Undefined variable '%s' +ErrorPriceExpression19=Expression not found +ErrorPriceExpression20=Empty expression +ErrorPriceExpression21=Empty result '%s' +ErrorPriceExpression22=Negative result '%s' +ErrorPriceExpression23=Unknown or non set variable '%s' in %s +ErrorPriceExpression24=Variable '%s' exists but has no value +ErrorPriceExpressionInternal=Internal error '%s' +ErrorPriceExpressionUnknown=Unknown error '%s' +ErrorSrcAndTargetWarehouseMustDiffers=Source and target warehouses must differs +ErrorTryToMakeMoveOnProductRequiringBatchData=Error, trying to make a stock movement without lot/serial information, on product '%s' requiring lot/serial information +ErrorCantSetReceptionToTotalDoneWithReceptionToApprove=All recorded receptions must first be verified (approved or denied) before being allowed to do this action +ErrorCantSetReceptionToTotalDoneWithReceptionDenied=All recorded receptions must first be verified (approved) before being allowed to do this action +ErrorGlobalVariableUpdater0=HTTP request failed with error '%s' +ErrorGlobalVariableUpdater1=Invalid JSON format '%s' +ErrorGlobalVariableUpdater2=Missing parameter '%s' +ErrorGlobalVariableUpdater3=The requested data was not found in result +ErrorGlobalVariableUpdater4=SOAP client failed with error '%s' +ErrorGlobalVariableUpdater5=No global variable selected +ErrorFieldMustBeANumeric=Field %s must be a numeric value +ErrorMandatoryParametersNotProvided=Mandatory parameter(s) not provided +ErrorOppStatusRequiredIfAmount=You set an estimated amount for this lead. So you must also enter it's status. +ErrorFailedToLoadModuleDescriptorForXXX=Failed to load module descriptor class for %s +ErrorBadDefinitionOfMenuArrayInModuleDescriptor=Bad Definition Of Menu Array In Module Descriptor (bad value for key fk_menu) +ErrorSavingChanges=An error has occurred when saving the changes +ErrorWarehouseRequiredIntoShipmentLine=Warehouse is required on the line to ship +ErrorFileMustHaveFormat=File must have format %s +ErrorFilenameCantStartWithDot=Filename can't start with a '.' +ErrorSupplierCountryIsNotDefined=Country for this vendor is not defined. Correct this first. +ErrorsThirdpartyMerge=Failed to merge the two records. Request canceled. +ErrorStockIsNotEnoughToAddProductOnOrder=Stock is not enough for product %s to add it into a new order. +ErrorStockIsNotEnoughToAddProductOnInvoice=Stock is not enough for product %s to add it into a new invoice. +ErrorStockIsNotEnoughToAddProductOnShipment=Stock is not enough for product %s to add it into a new shipment. +ErrorStockIsNotEnoughToAddProductOnProposal=Stock is not enough for product %s to add it into a new proposal. +ErrorFailedToLoadLoginFileForMode=Failed to get the login key for mode '%s'. +ErrorModuleNotFound=File of module was not found. +ErrorFieldAccountNotDefinedForBankLine=Value for Accounting account not defined for source line id %s (%s) +ErrorFieldAccountNotDefinedForInvoiceLine=Value for Accounting account not defined for invoice id %s (%s) +ErrorFieldAccountNotDefinedForLine=Value for Accounting account not defined for the line (%s) +ErrorBankStatementNameMustFollowRegex=Error, bank statement name must follow the following syntax rule %s +ErrorPhpMailDelivery=Check that you don't use a too high number of recipients and that your email content is not similar to a Spam. Ask also your administrator to check firewall and server logs files for a more complete information. +ErrorUserNotAssignedToTask=User must be assigned to task to be able to enter time consumed. +ErrorTaskAlreadyAssigned=Task already assigned to user +ErrorModuleFileSeemsToHaveAWrongFormat=The module package seems to have a wrong format. +ErrorModuleFileSeemsToHaveAWrongFormat2=At least one mandatory directory must exists into zip of module: %s or %s +ErrorFilenameDosNotMatchDolibarrPackageRules=The name of the module package (%s) does not match expected name syntax: %s +ErrorDuplicateTrigger=Error, duplicate trigger name %s. Already loaded from %s. +ErrorNoWarehouseDefined=Error, no warehouses defined. +ErrorBadLinkSourceSetButBadValueForRef=The link you use is not valid. A 'source' for payment is defined, but value for 'ref' is not valid. +ErrorTooManyErrorsProcessStopped=Too many errors. Process was stopped. +ErrorMassValidationNotAllowedWhenStockIncreaseOnAction=Mass validation is not possible when option to increase/decrease stock is set on this action (you must validate one by one so you can define the warehouse to increase/decrease) +ErrorObjectMustHaveStatusDraftToBeValidated=Object %s must have status 'Draft' to be validated. +ErrorObjectMustHaveLinesToBeValidated=Object %s must have lines to be validated. +ErrorOnlyInvoiceValidatedCanBeSentInMassAction=Only validated invoices can be sent using the "Send by email" mass action. +ErrorChooseBetweenFreeEntryOrPredefinedProduct=You must choose if article is a predefined product or not +ErrorDiscountLargerThanRemainToPaySplitItBefore=The discount you try to apply is larger than remain to pay. Split the discount in 2 smaller discounts before. +ErrorFileNotFoundWithSharedLink=File was not found. May be the share key was modified or file was removed recently. +ErrorProductBarCodeAlreadyExists=The product barcode %s already exists on another product reference. +ErrorNoteAlsoThatSubProductCantBeFollowedByLot=Note also that using kits to have auto increase/decrease of subproducts is not possible when at least one subproduct (or subproduct of subproducts) needs a serial/lot number. +ErrorDescRequiredForFreeProductLines=Description is mandatory for lines with free product +ErrorAPageWithThisNameOrAliasAlreadyExists=The page/container %s has the same name or alternative alias that the one your try to use +ErrorDuringChartLoad=Error when loading chart of accounts. If few accounts were not loaded, you can still enter them manually. +ErrorBadSyntaxForParamKeyForContent=Bad syntax for param keyforcontent. Must have a value starting with %s or %s +ErrorVariableKeyForContentMustBeSet=Error, the constant with name %s (with text content to show) or %s (with external url to show) must be set. +ErrorURLMustEndWith=URL %s must end %s +ErrorURLMustStartWithHttp=URL %s must start with http:// or https:// +ErrorHostMustNotStartWithHttp=Host name %s must NOT start with http:// or https:// +ErrorNewRefIsAlreadyUsed=Error, the new reference is already used +ErrorDeletePaymentLinkedToAClosedInvoiceNotPossible=Error, delete payment linked to a closed invoice is not possible. +ErrorSearchCriteriaTooSmall=Search criteria too small. +ErrorObjectMustHaveStatusActiveToBeDisabled=Objects must have status 'Active' to be disabled +ErrorObjectMustHaveStatusDraftOrDisabledToBeActivated=Objects must have status 'Draft' or 'Disabled' to be enabled +ErrorNoFieldWithAttributeShowoncombobox=No fields has property 'showoncombobox' into definition of object '%s'. No way to show the combolist. +ErrorFieldRequiredForProduct=Field '%s' is required for product %s +ProblemIsInSetupOfTerminal=Problem is in setup of terminal %s. +ErrorAddAtLeastOneLineFirst=Add at least one line first +ErrorRecordAlreadyInAccountingDeletionNotPossible=Error, record is already transferred in accounting, deletion is not possible. +ErrorLanguageMandatoryIfPageSetAsTranslationOfAnother=Error, language is mandatory if you set the page as a translation of another one. +ErrorLanguageOfTranslatedPageIsSameThanThisPage=Error, language of translated page is same than this one. +ErrorBatchNoFoundForProductInWarehouse=No lot/serial found for product "%s" in warehouse "%s". +ErrorBatchNoFoundEnoughQuantityForProductInWarehouse=No enough quantity for this lot/serial for product "%s" in warehouse "%s". +ErrorOnlyOneFieldForGroupByIsPossible=Only 1 field for the 'Group by' is possible (others are discarded) +ErrorTooManyDifferentValueForSelectedGroupBy=Found too many different value (more than %s) for the field '%s', so we can't use it as a 'Group by' for graphics. The field 'Group By' has been removed. May be you wanted to use it as an X-Axis ? +ErrorReplaceStringEmpty=Error, the string to replace into is empty +ErrorProductNeedBatchNumber=Error, product '%s' need a lot/serial number +ErrorProductDoesNotNeedBatchNumber=Error, product '%s' does not accept a lot/serial number +ErrorFailedToReadObject=Error, failed to read object of type %s +ErrorParameterMustBeEnabledToAllwoThisFeature=Error, parameter %s must be enabled into conf/conf.php to allow use of Command Line Interface by the internal job scheduler +ErrorLoginDateValidity=Error, this login is outside the validity date range +ErrorValueLength=Length of field '%s' must be higher than '%s' +ErrorReservedKeyword=The word '%s' is a reserved keyword +ErrorNotAvailableWithThisDistribution=Not available with this distribution +ErrorPublicInterfaceNotEnabled=Public interface was not enabled +ErrorLanguageRequiredIfPageIsTranslationOfAnother=The language of new page must be defined if it is set as a translation of another page +ErrorLanguageMustNotBeSourceLanguageIfPageIsTranslationOfAnother=The language of new page must not be the source language if it is set as a translation of another page +ErrorAParameterIsRequiredForThisOperation=A parameter is mandatory for this operation +ErrorDateIsInFuture=Error, the date can't be in the future +ErrorAnAmountWithoutTaxIsRequired=Error, amount is mandatory +ErrorAPercentIsRequired=Error, please fill in the percentage correctly +ErrorYouMustFirstSetupYourChartOfAccount=You must first setup your chart of account +ErrorFailedToFindEmailTemplate=Failed to find template with code name %s +ErrorDurationForServiceNotDefinedCantCalculateHourlyPrice=Duration not defined on service. No way to calculate the hourly price. +ErrorActionCommPropertyUserowneridNotDefined=User's owner is required +ErrorActionCommBadType=Selected event type (id: %n, code: %s) do not exist in Event Type dictionary +CheckVersionFail=Version check fail +ErrorWrongFileName=Name of the file cannot have __SOMETHING__ in it +ErrorNotInDictionaryPaymentConditions=Not in Payment Terms Dictionary, please modify. +ErrorIsNotADraft=%s is not a draft +ErrorExecIdFailed=Can't execute command "id" +ErrorBadCharIntoLoginName=Unauthorized character in the login name +ErrorRequestTooLarge=Error, request too large +ErrorNotApproverForHoliday=You are not the approver for leave %s +ErrorAttributeIsUsedIntoProduct=This attribute is used in one or more product variants +ErrorAttributeValueIsUsedIntoProduct=This attribute value is used in one or more product variants +ErrorPaymentInBothCurrency=Error, all amounts must be entered in the same column +ErrorYouTryToPayInvoicesInACurrencyFromBankWithAnotherCurrency=You try to pay invoices in the currency %s from an account with the currency %s +ErrorInvoiceLoadThirdParty=Can't load third-party object for invoice "%s" +ErrorInvoiceLoadThirdPartyKey=Third-party key "%s" no set for invoice "%s" +ErrorDeleteLineNotAllowedByObjectStatus=Delete line is not allowed by current object status +ErrorAjaxRequestFailed=Request failed +ErrorThirpdartyOrMemberidIsMandatory=Third party or Member of partnership is mandatory + +# Warnings +WarningParamUploadMaxFileSizeHigherThanPostMaxSize=Your PHP parameter upload_max_filesize (%s) is higher than PHP parameter post_max_size (%s). This is not a consistent setup. +WarningPasswordSetWithNoAccount=A password was set for this member. However, no user account was created. So this password is stored but can't be used to login to Dolibarr. It may be used by an external module/interface but if you don't need to define any login nor password for a member, you can disable option "Manage a login for each member" from Member module setup. If you need to manage a login but don't need any password, you can keep this field empty to avoid this warning. Note: Email can also be used as a login if the member is linked to a user. +WarningMandatorySetupNotComplete=Click here to setup mandatory parameters +WarningEnableYourModulesApplications=Click here to enable your modules and applications +WarningSafeModeOnCheckExecDir=Warning, PHP option safe_mode is on so command must be stored inside a directory declared by php parameter safe_mode_exec_dir. +WarningBookmarkAlreadyExists=A bookmark with this title or this target (URL) already exists. +WarningPassIsEmpty=Warning, database password is empty. This is a security hole. You should add a password to your database and change your conf.php file to reflect this. +WarningConfFileMustBeReadOnly=Warning, your config file (htdocs/conf/conf.php) can be overwritten by the web server. This is a serious security hole. Modify permissions on file to be in read only mode for operating system user used by Web server. If you use Windows and FAT format for your disk, you must know that this file system does not allow to add permissions on file, so can't be completely safe. +WarningsOnXLines=Warnings on %s source record(s) +WarningNoDocumentModelActivated=No model, for document generation, has been activated. A model will be chosen by default until you check your module setup. +WarningLockFileDoesNotExists=Warning, once setup is finished, you must disable the installation/migration tools by adding a file install.lock into directory %s. Omitting the creation of this file is a grave security risk. +WarningUntilDirRemoved=All security warnings (visible by admin users only) will remain active as long as the vulnerability is present (or that constant MAIN_REMOVE_INSTALL_WARNING is added in Setup->Other Setup). +WarningCloseAlways=Warning, closing is done even if amount differs between source and target elements. Enable this feature with caution. +WarningUsingThisBoxSlowDown=Warning, using this box slow down seriously all pages showing the box. +WarningClickToDialUserSetupNotComplete=Setup of ClickToDial information for your user are not complete (see tab ClickToDial onto your user card). +WarningFeatureDisabledWithDisplayOptimizedForBlindNoJs=Feature disabled when display setup is optimized for blind person or text browsers. +WarningPaymentDateLowerThanInvoiceDate=Payment date (%s) is earlier than invoice date (%s) for invoice %s. +WarningTooManyDataPleaseUseMoreFilters=Too many data (more than %s lines). Please use more filters or set the constant %s to a higher limit. +WarningSomeLinesWithNullHourlyRate=Some times were recorded by some users while their hourly rate was not defined. A value of 0 %s per hour was used but this may result in wrong valuation of time spent. +WarningYourLoginWasModifiedPleaseLogin=Your login was modified. For security purpose you will have to login with your new login before next action. +WarningAnEntryAlreadyExistForTransKey=An entry already exists for the translation key for this language +WarningNumberOfRecipientIsRestrictedInMassAction=Warning, number of different recipient is limited to %s when using the mass actions on lists +WarningDateOfLineMustBeInExpenseReportRange=Warning, the date of line is not in the range of the expense report +WarningProjectDraft=Project is still in draft mode. Don't forget to validate it if you plan to use tasks. +WarningProjectClosed=Project is closed. You must re-open it first. +WarningSomeBankTransactionByChequeWereRemovedAfter=Some bank transaction were removed after that the receipt including them were generated. So nb of cheques and total of receipt may differ from number and total in list. +WarningFailedToAddFileIntoDatabaseIndex=Warning, failed to add file entry into ECM database index table +WarningTheHiddenOptionIsOn=Warning, the hidden option %s is on. +WarningCreateSubAccounts=Warning, you can't create directly a sub account, you must create a third party or an user and assign them an accounting code to find them in this list +WarningAvailableOnlyForHTTPSServers=Available only if using HTTPS secured connection. +WarningModuleXDisabledSoYouMayMissEventHere=Module %s has not been enabled. So you may miss a lot of event here. +WarningPaypalPaymentNotCompatibleWithStrict=The value 'Strict' makes the online payment features not working correctly. Use 'Lax' instead. +WarningThemeForcedTo=Warning, theme has been forced to %s by hidden constant MAIN_FORCETHEME + +# Validate +RequireValidValue = Value not valid +RequireAtLeastXString = Requires at least %s character(s) +RequireXStringMax = Requires %s character(s) max +RequireAtLeastXDigits = Requires at least %s digit(s) +RequireXDigitsMax = Requires %s digit(s) max +RequireValidNumeric = Requires a numeric value +RequireValidEmail = Email address is not valid +RequireMaxLength = Length must be less than %s chars +RequireMinLength = Length must be more than %s char(s) +RequireValidUrl = Require valid URL +RequireValidDate = Require a valid date +RequireANotEmptyValue = Is required +RequireValidDuration = Require a valid duration +RequireValidExistingElement = Require an existing value +RequireValidBool = Require a valid boolean +BadSetupOfField = Error bad setup of field +BadSetupOfFieldClassNotFoundForValidation = Error bad setup of field : Class not found for validation +BadSetupOfFieldFileNotFound = Error bad setup of field : File not found for inclusion +BadSetupOfFieldFetchNotCallable = Error bad setup of field : Fetch not callable on class diff --git a/htdocs/langs/ms_MY/eventorganization.lang b/htdocs/langs/ms_MY/eventorganization.lang new file mode 100644 index 00000000000..858e0937788 --- /dev/null +++ b/htdocs/langs/ms_MY/eventorganization.lang @@ -0,0 +1,169 @@ +# Copyright (C) 2021 Florian Henry +# Copyright (C) 2021 Dorian Vabre +# +# 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 . + +# +# Generic +# +ModuleEventOrganizationName = Event Organization +EventOrganizationDescription = Event Organization through Module Project +EventOrganizationDescriptionLong= Manage the organization of an event (show, conferences, attendees or speakers, with public pages for suggestion, vote or registration) +# +# Menu +# +EventOrganizationMenuLeft = Organized events +EventOrganizationConferenceOrBoothMenuLeft = Conference Or Booth + +PaymentEvent=Payment of event + +# +# Admin page +# +NewRegistration=Registration +EventOrganizationSetup=Event Organization setup +EventOrganization=Event organization +Settings=Settings +EventOrganizationSetupPage = Event Organization setup page +EVENTORGANIZATION_TASK_LABEL = Label of tasks to create automatically when project is validated +EVENTORGANIZATION_TASK_LABELTooltip = When you validate an event to organize, some tasks can be automatically created in the project

For example:
Send Call for Conferences
Send Call for Booths
Validate suggestions of Conferences
Validate application for Booths
Open subscriptions to the event for attendees
Send a remind of the event to speakers
Send a remind of the event to Booth hosters
Send a remind of the event to attendees +EVENTORGANIZATION_TASK_LABELTooltip2=Keep empty if you don't need to create tasks automatically. +EVENTORGANIZATION_CATEG_THIRDPARTY_CONF = Category to add to third-parties automatically created when someone suggests a conference +EVENTORGANIZATION_CATEG_THIRDPARTY_BOOTH = Category to add to third-parties automatically created when they suggests a booth +EVENTORGANIZATION_TEMPLATE_EMAIL_ASK_CONF = Template of email to send after receiving a suggestion of a conference. +EVENTORGANIZATION_TEMPLATE_EMAIL_ASK_BOOTH = Template of email to send after receiving a suggestion of a booth. +EVENTORGANIZATION_TEMPLATE_EMAIL_AFT_SUBS_BOOTH = Template of email to send after a registration to a booth has been paid. +EVENTORGANIZATION_TEMPLATE_EMAIL_AFT_SUBS_EVENT = Template of email to send after a registration to an event has been paid. +EVENTORGANIZATION_TEMPLATE_EMAIL_BULK_SPEAKER = Template of email to use when sending emails from the massaction "Send emails" to speakers +EVENTORGANIZATION_TEMPLATE_EMAIL_BULK_ATTENDES = Template of email to use when sending emails from the massaction "Send emails" on attendee list +EVENTORGANIZATION_FILTERATTENDEES_CAT = In the form to create/add an attendee, restricts the list of thirdparties to thirdparties in the category +EVENTORGANIZATION_FILTERATTENDEES_TYPE = In the form to create/add an attendee, restricts the list of thirdparties to thirdparties with the nature + +# +# Object +# +EventOrganizationConfOrBooth= Conference Or Booth +ManageOrganizeEvent = Manage the organization of an event +ConferenceOrBooth = Conference Or Booth +ConferenceOrBoothTab = Conference Or Booth +AmountPaid = Amount paid +DateOfRegistration = Date of registration +ConferenceOrBoothAttendee = Conference Or Booth Attendee + +# +# Template Mail +# +YourOrganizationEventConfRequestWasReceived = Your request for conference was received +YourOrganizationEventBoothRequestWasReceived = Your request for booth was received +EventOrganizationEmailAskConf = Request for conference +EventOrganizationEmailAskBooth = Request for booth +EventOrganizationEmailBoothPayment = Payment of your booth +EventOrganizationEmailRegistrationPayment = Registration for an event +EventOrganizationMassEmailAttendees = Communication to attendees +EventOrganizationMassEmailSpeakers = Communication to speakers +ToSpeakers=To speakers + +# +# Event +# +AllowUnknownPeopleSuggestConf=Allow people to suggest conferences +AllowUnknownPeopleSuggestConfHelp=Allow unknown people to suggest a conference they want to do +AllowUnknownPeopleSuggestBooth=Allow people to apply for a booth +AllowUnknownPeopleSuggestBoothHelp=Allow unknown people to apply for a booth +PriceOfRegistration=Price of registration +PriceOfRegistrationHelp=Price to pay to register or participate in the event +PriceOfBooth=Subscription price to stand a booth +PriceOfBoothHelp=Subscription price to stand a booth +EventOrganizationICSLink=Link ICS for conferences +ConferenceOrBoothInformation=Conference Or Booth informations +Attendees=Attendees +ListOfAttendeesOfEvent=List of attendees of the event project +DownloadICSLink = Download ICS link +EVENTORGANIZATION_SECUREKEY = Seed to secure the key for the public registration page to suggest a conference +SERVICE_BOOTH_LOCATION = Service used for the invoice row about a booth location +SERVICE_CONFERENCE_ATTENDEE_SUBSCRIPTION = Service used for the invoice row about an attendee subscription to an event +NbVotes=Number of votes +# +# Status +# +EvntOrgDraft = Draft +EvntOrgSuggested = Suggested +EvntOrgConfirmed = Confirmed +EvntOrgNotQualified = Not Qualified +EvntOrgDone = Done +EvntOrgCancelled = Cancelled +# +# Public page +# +SuggestForm = Suggestion page +SuggestOrVoteForConfOrBooth = Page for suggestion or vote +EvntOrgRegistrationHelpMessage = Here, you can vote for a conference or suggest a new one for the event. You can also apply to have a booth during the event. +EvntOrgRegistrationConfHelpMessage = Here, you can suggest a new conference to animate during the event. +EvntOrgRegistrationBoothHelpMessage = Here, you can apply to have a booth during the event. +ListOfSuggestedConferences = List of suggested conferences +ListOfSuggestedBooths = List of suggested booths +ListOfConferencesOrBooths=List of conferences or booths of event project +SuggestConference = Suggest a new conference +SuggestBooth = Suggest a booth +ViewAndVote = View and vote for suggested events +PublicAttendeeSubscriptionGlobalPage = Public link for registration to the event +PublicAttendeeSubscriptionPage = Public link for registration to this event only +MissingOrBadSecureKey = The security key is invalid or missing +EvntOrgWelcomeMessage = This form allows you to register as a new participant to the event : %s +EvntOrgDuration = This conference starts on %s and ends on %s. +ConferenceAttendeeFee = Conference attendee fee for the event : '%s' occurring from %s to %s. +BoothLocationFee = Booth location for the event : '%s' occurring from %s to %s +EventType = Event type +LabelOfBooth=Booth label +LabelOfconference=Conference label +ConferenceIsNotConfirmed=Registration not available, conference is not confirmed yet +DateMustBeBeforeThan=%s must be before %s +DateMustBeAfterThan=%s must be after %s + +NewSubscription=Registration +OrganizationEventConfRequestWasReceived=Your suggestion for a conference has been received +OrganizationEventBoothRequestWasReceived=Your request for a booth has been received +OrganizationEventPaymentOfBoothWasReceived=Your payment for your booth has been recorded +OrganizationEventPaymentOfRegistrationWasReceived=Your payment for your event registration has been recorded +OrganizationEventBulkMailToAttendees=This is a remind about your participation in the event as an attendee +OrganizationEventBulkMailToSpeakers=This is a reminder on your participation in the event as a speaker +OrganizationEventLinkToThirdParty=Link to third party (customer, supplier or partner) + +NewSuggestionOfBooth=Application for a booth +NewSuggestionOfConference=Application for a conference + +# +# Vote page +# +EvntOrgRegistrationWelcomeMessage = Welcome on the conference or booth suggestion page. +EvntOrgRegistrationConfWelcomeMessage = Welcome on the conference suggestion page. +EvntOrgRegistrationBoothWelcomeMessage = Welcome on the booth suggestion page. +EvntOrgVoteHelpMessage = Here, you can view and vote for the suggested events for the project +VoteOk = Your vote has been accepted. +AlreadyVoted = You have already voted for this event. +VoteError = An error has occurred during the vote, please try again. + +SubscriptionOk = Your registration has been validated +ConfAttendeeSubscriptionConfirmation = Confirmation of your subscription to an event +Attendee = Attendee +PaymentConferenceAttendee = Conference attendee payment +PaymentBoothLocation = Booth location payment +DeleteConferenceOrBoothAttendee=Remove attendee +RegistrationAndPaymentWereAlreadyRecorder=A registration and a payment were already recorded for the email %s +EmailAttendee=Attendee email +EmailCompanyForInvoice=Company email (for invoice, if different of attendee email) +ErrorSeveralCompaniesWithEmailContactUs=Several companies with this email has been found so we can't validate automaticaly your registration. Please contact us at %s for a manual validation +ErrorSeveralCompaniesWithNameContactUs=Several companies with this name has been found so we can't validate automaticaly your registration. Please contact us at %s for a manual validation +NoPublicActionsAllowedForThisEvent=No public actions are open to public for this event +MaxNbOfAttendees=Max number of attendees diff --git a/htdocs/langs/ms_MY/exports.lang b/htdocs/langs/ms_MY/exports.lang new file mode 100644 index 00000000000..6cd111f0b80 --- /dev/null +++ b/htdocs/langs/ms_MY/exports.lang @@ -0,0 +1,145 @@ +# Dolibarr language file - Source file is en_US - exports +ExportsArea=Exports +ImportArea=Import +NewExport=New Export +NewImport=New Import +ExportableDatas=Exportable dataset +ImportableDatas=Importable dataset +SelectExportDataSet=Choose dataset you want to export... +SelectImportDataSet=Choose dataset you want to import... +SelectExportFields=Choose the fields you want to export, or select a predefined export profile +SelectImportFields=Choose the source file fields you want to import and their target field in database by moving them up and down with anchor %s, or select a predefined import profile: +NotImportedFields=Fields of source file not imported +SaveExportModel=Save your selections as an export profile/template (for reuse). +SaveImportModel=Save this import profile (for reuse) ... +ExportModelName=Export profile name +ExportModelSaved=Export profile saved as %s. +ExportableFields=Exportable fields +ExportedFields=Exported fields +ImportModelName=Import profile name +ImportModelSaved=Import profile saved as %s. +ImportProfile=Import profile +DatasetToExport=Dataset to export +DatasetToImport=Import file into dataset +ChooseFieldsOrdersAndTitle=Choose fields order... +FieldsTitle=Fields title +FieldTitle=Field title +NowClickToGenerateToBuildExportFile=Now, select the file format in the combo box and click on "Generate" to build the export file... +AvailableFormats=Available Formats +LibraryShort=Library +ExportCsvSeparator=Csv caracter separator +ImportCsvSeparator=Csv caracter separator +Step=Step +FormatedImport=Import Assistant +FormatedImportDesc1=This module allows you to update existing data or add new objects into the database from a file without technical knowledge, using an assistant. +FormatedImportDesc2=First step is to choose the kind of data you want to import, then the format of the source file, then the fields you want to import. +FormatedExport=Export Assistant +FormatedExportDesc1=These tools allow the export of personalized data using an assistant, to help you in the process without requiring technical knowledge. +FormatedExportDesc2=First step is to choose a predefined dataset, then which fields you want to export, and in which order. +FormatedExportDesc3=When data to export are selected, you can choose the format of the output file. +Sheet=Sheet +NoImportableData=No importable data (no module with definitions to allow data imports) +FileSuccessfullyBuilt=File generated +SQLUsedForExport=SQL Request used to extract data +LineId=Id of line +LineLabel=Label of line +LineDescription=Description of line +LineUnitPrice=Unit price of line +LineVATRate=VAT Rate of line +LineQty=Quantity for line +LineTotalHT=Amount excl. tax for line +LineTotalTTC=Amount with tax for line +LineTotalVAT=Amount of VAT for line +TypeOfLineServiceOrProduct=Type of line (0=product, 1=service) +FileWithDataToImport=File with data to import +FileToImport=Source file to import +FileMustHaveOneOfFollowingFormat=File to import must have one of following formats +DownloadEmptyExampleShort=Download a sample file +DownloadEmptyExample=Download a template file with examples and information on fields you can import +StarAreMandatory=Into the template file, all fields with a * are mandatory fields +ChooseFormatOfFileToImport=Choose the file format to use as import file format by clicking on the %s icon to select it... +ChooseFileToImport=Upload file then click on the %s icon to select file as source import file... +SourceFileFormat=Source file format +FieldsInSourceFile=Fields in source file +FieldsInTargetDatabase=Target fields in Dolibarr database (bold=mandatory) +Field=Field +NoFields=No fields +MoveField=Move field column number %s +ExampleOfImportFile=Example_of_import_file +SaveImportProfile=Save this import profile +ErrorImportDuplicateProfil=Failed to save this import profile with this name. An existing profile already exists with this name. +TablesTarget=Targeted tables +FieldsTarget=Targeted fields +FieldTarget=Targeted field +FieldSource=Source field +NbOfSourceLines=Number of lines in source file +NowClickToTestTheImport=Check that the file format (field and string delimiters) of your file matches the options shown and that you have omitted the header line, or these will be flagged as errors in the following simulation.
Click on the "%s" button to run a check of the file structure/contents and simulate the import process.
No data will be changed in your database. +RunSimulateImportFile=Run Import Simulation +FieldNeedSource=This field requires data from the source file +SomeMandatoryFieldHaveNoSource=Some mandatory fields have no source from data file +InformationOnSourceFile=Information on source file +InformationOnTargetTables=Information on target fields +SelectAtLeastOneField=Switch at least one source field in the column of fields to export +SelectFormat=Choose this import file format +RunImportFile=Import Data +NowClickToRunTheImport=Check the results of the import simulation. Correct any errors and re-test.
When the simulation reports no errors you may proceed to import the data into the database. +DataLoadedWithId=The imported data will have an additional field in each database table with this import id: %s, to allow it to be searchable in the case of investigating a problem related to this import. +ErrorMissingMandatoryValue=Mandatory data is empty in the source file in column %s. +TooMuchErrors=There are still %s other source lines with errors but output has been limited. +TooMuchWarnings=There are still %s other source lines with warnings but output has been limited. +EmptyLine=Empty line (will be discarded) +CorrectErrorBeforeRunningImport=You must correct all errors before running the definitive import. +FileWasImported=File was imported with number %s. +YouCanUseImportIdToFindRecord=You can find all the imported records in your database by filtering on field import_key='%s'. +NbOfLinesOK=Number of lines with no errors and no warnings: %s. +NbOfLinesImported=Number of lines successfully imported: %s. +DataComeFromNoWhere=Value to insert comes from nowhere in source file. +DataComeFromFileFieldNb=Value to insert comes from column %s in source file. +DataComeFromIdFoundFromRef=Value that comes from column %s of source file will be used to find the id of the parent object to use (so the object %s that has the ref. from source file must exist in the database). +DataComeFromIdFoundFromCodeId=Code that comes from column %s of source file will be used to find the id of the parent object to use (so the code from source file must exist in the dictionary %s). Note that if you know the id, you can also use it in the source file instead of the code. Import should work in both cases. +DataIsInsertedInto=Data coming from source file will be inserted into the following field: +DataIDSourceIsInsertedInto=The id of the parent object, that was found using the data in the source file, will be inserted into the following field: +DataCodeIDSourceIsInsertedInto=The id of the parent line, that was found from code, will be inserted into the following field: +SourceRequired=Data value is mandatory +SourceExample=Example of possible data value +ExampleAnyRefFoundIntoElement=Any ref found for element %s +ExampleAnyCodeOrIdFoundIntoDictionary=Any code (or id) found into dictionary %s +CSVFormatDesc=Comma Separated Value file format (.csv).
This is a text file format where fields are separated by a separator [ %s ]. If separator is found inside a field content, field is rounded by round character [ %s ]. Escape character to escape round character is [ %s ]. +Excel95FormatDesc=Excel file format (.xls)
This is the native Excel 95 format (BIFF5). +Excel2007FormatDesc=Excel file format (.xlsx)
This is the native Excel 2007 format (SpreadsheetML). +TsvFormatDesc=Tab Separated Value file format (.tsv)
This is a text file format where fields are separated by a tabulator [tab]. +ExportFieldAutomaticallyAdded=Field %s was automatically added. It will avoid you to have similar lines to be treated as duplicate record (with this field added, all lines will own their own id and will differ). +CsvOptions=CSV format options +Separator=Field Separator +Enclosure=String Delimiter +SpecialCode=Special code +ExportStringFilter=%% allows replacing one or more characters in the text +ExportDateFilter=YYYY, YYYYMM, YYYYMMDD: filters by one year/month/day
YYYY+YYYY, YYYYMM+YYYYMM, YYYYMMDD+YYYYMMDD: filters over a range of years/months/days
> YYYY, > YYYYMM, > YYYYMMDD: filters on all following years/months/days
< YYYY, < YYYYMM, < YYYYMMDD: filters on all previous years/months/days +ExportNumericFilter=NNNNN filters by one value
NNNNN+NNNNN filters over a range of values
< NNNNN filters by lower values
> NNNNN filters by higher values +ImportFromLine=Import starting from line number +EndAtLineNb=End at line number +ImportFromToLine=Limit range (From - To). Eg. to omit header line(s). +SetThisValueTo2ToExcludeFirstLine=For example, set this value to 3 to exclude the 2 first lines.
If the header lines are NOT omitted, this will result in multiple errors in the Import Simulation. +KeepEmptyToGoToEndOfFile=Keep this field empty to process all lines to the end of the file. +SelectPrimaryColumnsForUpdateAttempt=Select column(s) to use as primary key for an UPDATE import +UpdateNotYetSupportedForThisImport=Update is not supported for this type of import (only insert) +NoUpdateAttempt=No update attempt was performed, only insert +ImportDataset_user_1=Users (employees or not) and properties +ComputedField=Computed field +## filters +SelectFilterFields=If you want to filter on some values, just input values here. +FilteredFields=Filtered fields +FilteredFieldsValues=Value for filter +FormatControlRule=Format control rule +## imports updates +KeysToUseForUpdates=Key (column) to use for updating existing data +NbInsert=Number of inserted lines: %s +NbUpdate=Number of updated lines: %s +MultipleRecordFoundWithTheseFilters=Multiple records have been found with these filters: %s +StocksWithBatch=Stocks and location (warehouse) of products with batch/serial number +WarningFirstImportedLine=The first line(s) will not be imported with the current selection +NotUsedFields=Fields of database not used +SelectImportFieldsSource = Choose the source file fields you want to import and their target field in database by choosing the fields in each select boxes, or select a predefined import profile: +MandatoryTargetFieldsNotMapped=Some mandatory target fields are not mapped +AllTargetMandatoryFieldsAreMapped=All target fields that need a mandatory value are mapped +ResultOfSimulationNoError=Result of simulation: No error diff --git a/htdocs/langs/ms_MY/help.lang b/htdocs/langs/ms_MY/help.lang new file mode 100644 index 00000000000..d699cb56fd2 --- /dev/null +++ b/htdocs/langs/ms_MY/help.lang @@ -0,0 +1,23 @@ +# Dolibarr language file - Source file is en_US - help +CommunitySupport=Forum/Wiki support +EMailSupport=Emails support +RemoteControlSupport=Online real-time / remote support +OtherSupport=Other support +ToSeeListOfAvailableRessources=To contact/see available resources: +HelpCenter=Help Center +DolibarrHelpCenter=Dolibarr Help and Support Center +ToGoBackToDolibarr=Otherwise, click here to continue to use Dolibarr. +TypeOfSupport=Type of support +TypeSupportCommunauty=Community (free) +TypeSupportCommercial=Commercial +TypeOfHelp=Type +NeedHelpCenter=Need help or support? +Efficiency=Efficiency +TypeHelpOnly=Help only +TypeHelpDev=Help+Development +TypeHelpDevForm=Help+Development+Training +BackToHelpCenter=Otherwise, go back to Help center home page. +LinkToGoldMember=You can call one of the trainers preselected by Dolibarr for your language (%s) by clicking their Widget (status and maximum price are automatically updated): +PossibleLanguages=Supported languages +SubscribeToFoundation=Help the Dolibarr project, subscribe to the foundation +SeeOfficalSupport=For official Dolibarr support in your language:
%s diff --git a/htdocs/langs/ms_MY/holiday.lang b/htdocs/langs/ms_MY/holiday.lang new file mode 100644 index 00000000000..831d306cc39 --- /dev/null +++ b/htdocs/langs/ms_MY/holiday.lang @@ -0,0 +1,149 @@ +# Dolibarr language file - Source file is en_US - holiday +HRM=HRM +Holidays=Leave +CPTitreMenu=Leave +MenuReportMonth=Monthly statement +MenuAddCP=New leave request +MenuCollectiveAddCP=New collective leave request +NotActiveModCP=You must enable the module Leave to view this page. +AddCP=Make a leave request +DateDebCP=Start date +DateFinCP=End date +DraftCP=Draft +ToReviewCP=Awaiting approval +ApprovedCP=Approved +CancelCP=Canceled +RefuseCP=Refused +ValidatorCP=Approver +ListeCP=List of leave +Leave=Leave request +LeaveId=Leave ID +ReviewedByCP=Will be approved by +UserID=User ID +UserForApprovalID=User for approval ID +UserForApprovalFirstname=First name of approval user +UserForApprovalLastname=Last name of approval user +UserForApprovalLogin=Login of approval user +DescCP=Description +SendRequestCP=Create leave request +DelayToRequestCP=Leave requests must be made at least %s day(s) before them. +MenuConfCP=Balance of leave +SoldeCPUser=Leave balance (in days) %s +ErrorEndDateCP=You must select an end date greater than the start date. +ErrorSQLCreateCP=An SQL error occurred during the creation: +ErrorIDFicheCP=An error has occurred, the leave request does not exist. +ReturnCP=Return to previous page +ErrorUserViewCP=You are not authorized to read this leave request. +InfosWorkflowCP=Information Workflow +RequestByCP=Requested by +TitreRequestCP=Leave request +TypeOfLeaveId=Type of leave ID +TypeOfLeaveCode=Type of leave code +TypeOfLeaveLabel=Type of leave label +NbUseDaysCP=Number of days of leave used +NbUseDaysCPHelp=The calculation takes into account the non-working days and the holidays defined in the dictionary. +NbUseDaysCPShort=Days of leave +NbUseDaysCPShortInMonth=Days of leave in month +DayIsANonWorkingDay=%s is a non-working day +DateStartInMonth=Start date in month +DateEndInMonth=End date in month +EditCP=Edit +DeleteCP=Delete +ActionRefuseCP=Refuse +ActionCancelCP=Cancel +StatutCP=Status +TitleDeleteCP=Delete the leave request +ConfirmDeleteCP=Confirm the deletion of this leave request? +ErrorCantDeleteCP=Error you don't have the right to delete this leave request. +CantCreateCP=You don't have the right to make leave requests. +InvalidValidatorCP=You must choose the approver for your leave request. +NoDateDebut=You must select a start date. +NoDateFin=You must select an end date. +ErrorDureeCP=Your leave request does not contain working day. +TitleValidCP=Approve the leave request +ConfirmValidCP=Are you sure you want to approve the leave request? +DateValidCP=Date approved +TitleToValidCP=Send leave request +ConfirmToValidCP=Are you sure you want to send the leave request? +TitleRefuseCP=Refuse the leave request +ConfirmRefuseCP=Are you sure you want to refuse the leave request? +NoMotifRefuseCP=You must choose a reason for refusing the request. +TitleCancelCP=Cancel the leave request +ConfirmCancelCP=Are you sure you want to cancel the leave request? +DetailRefusCP=Reason for refusal +DateRefusCP=Date of refusal +DateCancelCP=Date of cancellation +DefineEventUserCP=Assign an exceptional leave for a user +addEventToUserCP=Assign leave +NotTheAssignedApprover=You are not the assigned approver +MotifCP=Reason +UserCP=User +ErrorAddEventToUserCP=An error occurred while adding the exceptional leave. +AddEventToUserOkCP=The addition of the exceptional leave has been completed. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged +MenuLogCP=View change logs +LogCP=Log of all updates made to "Balance of Leave" +ActionByCP=Updated by +UserUpdateCP=Updated for +PrevSoldeCP=Previous Balance +NewSoldeCP=New Balance +alreadyCPexist=A leave request has already been done on this period. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Groups +users=Users +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation +FirstDayOfHoliday=Beginning day of leave request +LastDayOfHoliday=Ending day of leave request +BoxTitleLastLeaveRequests=Latest %s modified leave requests +HolidaysMonthlyUpdate=Monthly update +ManualUpdate=Manual update +HolidaysCancelation=Leave request cancelation +EmployeeLastname=Employee last name +EmployeeFirstname=Employee first name +TypeWasDisabledOrRemoved=Leave type (id %s) was disabled or removed +LastHolidays=Latest %s leave requests +AllHolidays=All leave requests +HalfDay=Half day +NotTheAssignedApprover=You are not the assigned approver +LEAVE_PAID=Paid vacation +LEAVE_SICK=Sick leave +LEAVE_OTHER=Other leave +LEAVE_PAID_FR=Paid vacation +## Configuration du Module ## +LastUpdateCP=Last automatic update of leave allocation +MonthOfLastMonthlyUpdate=Month of last automatic update of leave allocation +UpdateConfCPOK=Updated successfully. +Module27130Name= Management of leave requests +Module27130Desc= Management of leave requests +ErrorMailNotSend=An error occurred while sending email: +NoticePeriod=Notice period +#Messages +HolidaysToValidate=Validate leave requests +HolidaysToValidateBody=Below is a leave request to validate +HolidaysToValidateDelay=This leave request will take place within a period of less than %s days. +HolidaysToValidateAlertSolde=The user who made this leave request does not have enough available days. +HolidaysValidated=Validated leave requests +HolidaysValidatedBody=Your leave request for %s to %s has been validated. +HolidaysRefused=Request denied +HolidaysRefusedBody=Your leave request for %s to %s has been denied for the following reason: +HolidaysCanceled=Canceled leaved request +HolidaysCanceledBody=Your leave request for %s to %s has been canceled. +FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.
0: Not followed by a counter. +NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter +GoIntoDictionaryHolidayTypes=Go into Home - Setup - Dictionaries - Type of leave to setup the different types of leaves. +HolidaySetup=Setup of module Leave +HolidaysNumberingModules=Numbering models for leave requests +TemplatePDFHolidays=Template for leave requests PDF +FreeLegalTextOnHolidays=Free text on PDF +WatermarkOnDraftHolidayCards=Watermarks on draft leave requests +HolidaysToApprove=Holidays to approve +NobodyHasPermissionToValidateHolidays=Nobody has permission to validate holidays +HolidayBalanceMonthlyUpdate=Monthly update of holiday balance +XIsAUsualNonWorkingDay=%s is usualy a NON working day +BlockHolidayIfNegative=Block if balance negative +LeaveRequestCreationBlockedBecauseBalanceIsNegative=The creation of this leave request is blocked because your balance is negative +ErrorLeaveRequestMustBeDraftCanceledOrRefusedToBeDeleted=Leave request %s must be draft, canceled or refused to be deleted diff --git a/htdocs/langs/ms_MY/hrm.lang b/htdocs/langs/ms_MY/hrm.lang new file mode 100644 index 00000000000..cb55969895b --- /dev/null +++ b/htdocs/langs/ms_MY/hrm.lang @@ -0,0 +1,91 @@ +# Dolibarr language file - en_US - hrm + + +# Admin +HRM_EMAIL_EXTERNAL_SERVICE=Email to prevent HRM external service +Establishments=Establishments +Establishment=Establishment +NewEstablishment=New establishment +DeleteEstablishment=Delete establishment +ConfirmDeleteEstablishment=Are you sure you wish to delete this establishment? +OpenEtablishment=Open establishment +CloseEtablishment=Close establishment +# Dictionary +DictionaryPublicHolidays=Leave - Public holidays +DictionaryDepartment=HRM - Organizational Unit +DictionaryFunction=HRM - Job positions +# Module +Employees=Employees +Employee=Employee +NewEmployee=New employee +ListOfEmployees=List of employees +HrmSetup=HRM module setup +SkillsManagement=Skills management +HRM_MAXRANK=Maximum number of levels to rank a skill +HRM_DEFAULT_SKILL_DESCRIPTION=Default description of ranks when skill is created +deplacement=Shift +DateEval=Evaluation date +JobCard=Job card +JobPosition=Job +JobsPosition=Jobs +NewSkill=New Skill +SkillType=Skill type +Skilldets=List of ranks for this skill +Skilldet=Skill level +rank=Rank +ErrNoSkillSelected=No skill selected +ErrSkillAlreadyAdded=This skill is already in the list +SkillHasNoLines=This skill has no lines +skill=Skill +Skills=Skills +SkillCard=Skill card +EmployeeSkillsUpdated=Employee skills have been updated (see "Skills" tab of employee card) +Eval=Evaluation +Evals=Evaluations +NewEval=New evaluation +ValidateEvaluation=Validate evaluation +ConfirmValidateEvaluation=Are you sure you want to validate this evaluation with reference %s? +EvaluationCard=Evaluation card +RequiredRank=Required rank for this job +EmployeeRank=Employee rank for this skill +EmployeePosition=Employee position +EmployeePositions=Employee positions +EmployeesInThisPosition=Employees in this position +group1ToCompare=Usergroup to analyze +group2ToCompare=Second usergroup for comparison +OrJobToCompare=Compare to job skills requirements +difference=Difference +CompetenceAcquiredByOneOrMore=Competence acquired by one or more users but not requested by the second comparator +MaxlevelGreaterThan=Max level greater than the one requested +MaxLevelEqualTo=Max level equal to that demand +MaxLevelLowerThan=Max level lower than that demand +MaxlevelGreaterThanShort=Employee level greater than the one requested +MaxLevelEqualToShort=Employee level equals to that demand +MaxLevelLowerThanShort=Employee level lower than that demand +SkillNotAcquired=Skill not acquired by all users and requested by the second comparator +legend=Legend +TypeSkill=Skill type +AddSkill=Add skills to job +RequiredSkills=Required skills for this job +UserRank=User Rank +SkillList=Skill list +SaveRank=Save rank +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge +AbandonmentComment=Abandonment comment +DateLastEval=Date last evaluation +NoEval=No evaluation done for this employee +HowManyUserWithThisMaxNote=Number of users with this rank +HighestRank=Highest rank +SkillComparison=Skill comparison +ActionsOnJob=Events on this job +VacantPosition=job vacancy +VacantCheckboxHelper=Checking this option will show unfilled positions (job vacancy) +SaveAddSkill = Skill(s) added +SaveLevelSkill = Skill(s) level saved +DeleteSkill = Skill removed +SkillsExtraFields=Attributs supplémentaires (Compétences) +JobsExtraFields=Attributs supplémentaires (Emplois) +EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/ms_MY/install.lang b/htdocs/langs/ms_MY/install.lang new file mode 100644 index 00000000000..6aee82bacec --- /dev/null +++ b/htdocs/langs/ms_MY/install.lang @@ -0,0 +1,215 @@ +# Dolibarr language file - Source file is en_US - install +InstallEasy=Just follow the instructions step by step. +MiscellaneousChecks=Prerequisites check +ConfFileExists=Configuration file %s exists. +ConfFileDoesNotExistsAndCouldNotBeCreated=Configuration file %s does not exist and could not be created! +ConfFileCouldBeCreated=Configuration file %s could be created. +ConfFileIsNotWritable=Configuration file %s is not writable. Check permissions. For first install, your web server must be able to write into this file during configuration process ("chmod 666" for example on a Unix like OS). +ConfFileIsWritable=Configuration file %s is writable. +ConfFileMustBeAFileNotADir=Configuration file %s must be a file, not a directory. +ConfFileReload=Reloading parameters from configuration file. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. +PHPSupportPOSTGETOk=This PHP supports variables POST and GET. +PHPSupportPOSTGETKo=It's possible your PHP setup does not support variables POST and/or GET. Check the parameter variables_order in php.ini. +PHPSupportSessions=This PHP supports sessions. +PHPSupport=This PHP supports %s functions. +PHPMemoryOK=Your PHP max session memory is set to %s. This should be enough. +PHPMemoryTooLow=Your PHP max session memory is set to %s bytes. This is too low. Change your php.ini to set memory_limit parameter to at least %s bytes. +Recheck=Click here for a more detailed test +ErrorPHPDoesNotSupportSessions=Your PHP installation does not support sessions. This feature is required to allow Dolibarr to work. Check your PHP setup and permissions of the sessions directory. +ErrorPHPDoesNotSupport=Your PHP installation does not support %s functions. +ErrorDirDoesNotExists=Directory %s does not exist. +ErrorGoBackAndCorrectParameters=Go back and check/correct the parameters. +ErrorWrongValueForParameter=You may have typed a wrong value for parameter '%s'. +ErrorFailedToCreateDatabase=Failed to create database '%s'. +ErrorFailedToConnectToDatabase=Failed to connect to database '%s'. +ErrorDatabaseVersionTooLow=Database version (%s) too old. Version %s or higher is required. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. +ErrorConnectedButDatabaseNotFound=Connection to server successful but database '%s' not found. +ErrorDatabaseAlreadyExists=Database '%s' already exists. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions +IfDatabaseNotExistsGoBackAndUncheckCreate=If the database does not exist, go back and check option "Create database". +IfDatabaseExistsGoBackAndCheckCreate=If database already exists, go back and uncheck "Create database" option. +WarningBrowserTooOld=Version of browser is too old. Upgrading your browser to a recent version of Firefox, Chrome or Opera is highly recommended. +PHPVersion=PHP Version +License=Using license +ConfigurationFile=Configuration file +WebPagesDirectory=Directory where web pages are stored +DocumentsDirectory=Directory to store uploaded and generated documents +URLRoot=URL Root +ForceHttps=Force secure connections (https) +CheckToForceHttps=Check this option to force secure connections (https).
This requires that the web server is configured with an SSL certificate. +DolibarrDatabase=Dolibarr Database +DatabaseType=Database type +DriverType=Driver type +Server=Server +ServerAddressDescription=Name or ip address for the database server. Usually 'localhost' when the database server is hosted on the same server as the web server. +ServerPortDescription=Database server port. Keep empty if unknown. +DatabaseServer=Database server +DatabaseName=Database name +DatabasePrefix=Database table prefix +DatabasePrefixDescription=Database table prefix. If empty, defaults to llx_. +AdminLogin=User account for the Dolibarr database owner. +PasswordAgain=Retype password confirmation +AdminPassword=Password for Dolibarr database owner. +CreateDatabase=Create database +CreateUser=Create user account or grant user account permission on the Dolibarr database +DatabaseSuperUserAccess=Database server - Superuser access +CheckToCreateDatabase=Check the box if the database does not exist yet and so must be created.
In this case, you must also fill in the user name and password for the superuser account at the bottom of this page. +CheckToCreateUser=Check the box if:
the database user account does not yet exist and so must be created, or
if the user account exists but the database does not exist and permissions must be granted.
In this case, you must enter the user account and password and also the superuser account name and password at the bottom of this page. If this box is unchecked, database owner and password must already exist. +DatabaseRootLoginDescription=Superuser account name (to create new databases or new users), mandatory if the database or its owner does not already exist. +KeepEmptyIfNoPassword=Leave empty if superuser has no password (NOT recommended) +SaveConfigurationFile=Saving parameters to +ServerConnection=Server connection +DatabaseCreation=Database creation +CreateDatabaseObjects=Database objects creation +ReferenceDataLoading=Reference data loading +TablesAndPrimaryKeysCreation=Tables and Primary keys creation +CreateTableAndPrimaryKey=Create table %s +CreateOtherKeysForTable=Create foreign keys and indexes for table %s +OtherKeysCreation=Foreign keys and indexes creation +FunctionsCreation=Functions creation +AdminAccountCreation=Administrator login creation +PleaseTypePassword=Please type a password, empty passwords are not allowed! +PleaseTypeALogin=Please type a login! +PasswordsMismatch=Passwords differs, please try again! +SetupEnd=End of setup +SystemIsInstalled=This installation is complete. +SystemIsUpgraded=Dolibarr has been upgraded successfully. +YouNeedToPersonalizeSetup=You need to configure Dolibarr to suit your needs (appearance, features, ...). To do this, please follow the link below: +AdminLoginCreatedSuccessfuly=Dolibarr administrator login '%s' created successfully. +GoToDolibarr=Go to Dolibarr +GoToSetupArea=Go to Dolibarr (setup area) +MigrationNotFinished=The database version is not completely up to date: run the upgrade process again. +GoToUpgradePage=Go to upgrade page again +WithNoSlashAtTheEnd=Without the slash "/" at the end +DirectoryRecommendation=IMPORTANT: You must use a directory that is outside of the web pages (so do not use a subdirectory of previous parameter). +LoginAlreadyExists=Already exists +DolibarrAdminLogin=Dolibarr admin login +AdminLoginAlreadyExists=Dolibarr administrator account '%s' already exists. Go back if you want to create another one. +FailedToCreateAdminLogin=Failed to create Dolibarr administrator account. +WarningRemoveInstallDir=Warning, for security reasons, once the install or upgrade is complete, you should add a file called install.lock into the Dolibarr document directory in order to prevent the accidental/malicious use of the install tools again. +FunctionNotAvailableInThisPHP=Not available in this PHP +ChoosedMigrateScript=Choose migration script +DataMigration=Database migration (data) +DatabaseMigration=Database migration (structure + some data) +ProcessMigrateScript=Script processing +ChooseYourSetupMode=Choose your setup mode and click "Start"... +FreshInstall=Fresh install +FreshInstallDesc=Use this mode if this is your first install. If not, this mode can repair a incomplete previous install. If you want to upgrade your version, choose "Upgrade" mode. +Upgrade=Upgrade +UpgradeDesc=Use this mode if you have replaced old Dolibarr files with files from a newer version. This will upgrade your database and data. +Start=Start +InstallNotAllowed=Setup not allowed by conf.php permissions +YouMustCreateWithPermission=You must create file %s and set write permissions on it for the web server during install process. +CorrectProblemAndReloadPage=Please fix the problem and press F5 to reload the page. +AlreadyDone=Already migrated +DatabaseVersion=Database version +ServerVersion=Database server version +YouMustCreateItAndAllowServerToWrite=You must create this directory and allow for the web server to write into it. +DBSortingCollation=Character sorting order +YouAskDatabaseCreationSoDolibarrNeedToConnect=You selected create database %s, but for this, Dolibarr needs to connect to server %s with super user %s permissions. +YouAskLoginCreationSoDolibarrNeedToConnect=You selected create database user %s, but for this, Dolibarr needs to connect to server %s with super user %s permissions. +BecauseConnectionFailedParametersMayBeWrong=The database connection failed: the host or super user parameters must be wrong. +OrphelinsPaymentsDetectedByMethod=Orphans payment detected by method %s +RemoveItManuallyAndPressF5ToContinue=Remove it manually and press F5 to continue. +FieldRenamed=Field renamed +IfLoginDoesNotExistsCheckCreateUser=If the user does not exist yet, you must check option "Create user" +ErrorConnection=Server "%s", database name "%s", login "%s", or database password may be wrong or the PHP client version may be too old compared to the database version. +InstallChoiceRecommanded=Recommended choice to install version %s from your current version %s +InstallChoiceSuggested=Install choice suggested by installer. +MigrateIsDoneStepByStep=The targeted version (%s) has a gap of several versions. The install wizard will come back to suggest a further migration once this one is complete. +CheckThatDatabasenameIsCorrect=Check that the database name "%s" is correct. +IfAlreadyExistsCheckOption=If this name is correct and that database does not exist yet, you must check option "Create database". +OpenBaseDir=PHP openbasedir parameter +YouAskToCreateDatabaseSoRootRequired=You checked the box "Create database". For this, you need to provide the login/password of superuser (bottom of form). +YouAskToCreateDatabaseUserSoRootRequired=You checked the box "Create database owner". For this, you need to provide the login/password of superuser (bottom of form). +NextStepMightLastALongTime=The current step may take several minutes. Please wait until the next screen is shown completely before continuing. +MigrationCustomerOrderShipping=Migrate shipping for sales orders storage +MigrationShippingDelivery=Upgrade storage of shipping +MigrationShippingDelivery2=Upgrade storage of shipping 2 +MigrationFinished=Migration finished +LastStepDesc=Last step: Define here the login and password you wish to use to connect to Dolibarr. Do not lose this as it is the master account to administer all other/additional user accounts. +ActivateModule=Activate module %s +ShowEditTechnicalParameters=Click here to show/edit advanced parameters (expert mode) +WarningUpgrade=Warning:\nDid you run a database backup first?\nThis is highly recommended. Loss of data (due to for example bugs in mysql version 5.5.40/41/42/43) may be possible during this process, so it is essential to take a complete dump of your database before starting any migration.\n\nClick OK to start migration process... +ErrorDatabaseVersionForbiddenForMigration=Your database version is %s. It has a critical bug, making data loss possible if you make structural changes in your database, such as is required by the migration process. For his reason, migration will not be allowed until you upgrade your database to a layer (patched) version (list of known buggy versions: %s) +KeepDefaultValuesWamp=You used the Dolibarr setup wizard from DoliWamp, so values proposed here are already optimized. Change them only if you know what you are doing. +KeepDefaultValuesDeb=You used the Dolibarr setup wizard from a Linux package (Ubuntu, Debian, Fedora...), so the values proposed here are already optimized. Only the password of the database owner to create must be entered. Change other parameters only if you know what you are doing. +KeepDefaultValuesMamp=You used the Dolibarr setup wizard from DoliMamp, so the values proposed here are already optimized. Change them only if you know what you are doing. +KeepDefaultValuesProxmox=You used the Dolibarr setup wizard from a Proxmox virtual appliance, so the values proposed here are already optimized. Change them only if you know what you are doing. +UpgradeExternalModule=Run dedicated upgrade process of external module +SetAtLeastOneOptionAsUrlParameter=Set at least one option as a parameter in URL. For example: '...repair.php?standard=confirmed' +NothingToDelete=Nothing to clean/delete +NothingToDo=Nothing to do +######### +# upgrade +MigrationFixData=Fix for denormalized data +MigrationOrder=Data migration for customer's orders +MigrationSupplierOrder=Data migration for vendor's orders +MigrationProposal=Data migration for commercial proposals +MigrationInvoice=Data migration for customer's invoices +MigrationContract=Data migration for contracts +MigrationSuccessfullUpdate=Upgrade successful +MigrationUpdateFailed=Failed upgrade process +MigrationRelationshipTables=Data migration for relationship tables (%s) +MigrationPaymentsUpdate=Payment data correction +MigrationPaymentsNumberToUpdate=%s payment(s) to update +MigrationProcessPaymentUpdate=Update payment(s) %s +MigrationPaymentsNothingToUpdate=No more things to do +MigrationPaymentsNothingUpdatable=No more payments that can be corrected +MigrationContractsUpdate=Contract data correction +MigrationContractsNumberToUpdate=%s contract(s) to update +MigrationContractsLineCreation=Create contract line for contract ref %s +MigrationContractsNothingToUpdate=No more things to do +MigrationContractsFieldDontExist=Field fk_facture does not exist anymore. Nothing to do. +MigrationContractsEmptyDatesUpdate=Contract empty date correction +MigrationContractsEmptyDatesUpdateSuccess=Contract empty date correction done successfully +MigrationContractsEmptyDatesNothingToUpdate=No contract empty date to correct +MigrationContractsEmptyCreationDatesNothingToUpdate=No contract creation date to correct +MigrationContractsInvalidDatesUpdate=Bad value date contract correction +MigrationContractsInvalidDateFix=Correct contract %s (Contract date=%s, Starting service date min=%s) +MigrationContractsInvalidDatesNumber=%s contracts modified +MigrationContractsInvalidDatesNothingToUpdate=No date with bad value to correct +MigrationContractsIncoherentCreationDateUpdate=Bad value contract creation date correction +MigrationContractsIncoherentCreationDateUpdateSuccess=Bad value contract creation date correction done successfully +MigrationContractsIncoherentCreationDateNothingToUpdate=No bad value for contract creation date to correct +MigrationReopeningContracts=Open contract closed by error +MigrationReopenThisContract=Reopen contract %s +MigrationReopenedContractsNumber=%s contracts modified +MigrationReopeningContractsNothingToUpdate=No closed contract to open +MigrationBankTransfertsUpdate=Update links between bank entry and a bank transfer +MigrationBankTransfertsNothingToUpdate=All links are up to date +MigrationShipmentOrderMatching=Sendings receipt update +MigrationDeliveryOrderMatching=Delivery receipt update +MigrationDeliveryDetail=Delivery update +MigrationStockDetail=Update stock value of products +MigrationMenusDetail=Update dynamic menus tables +MigrationDeliveryAddress=Update delivery address in shipments +MigrationProjectTaskActors=Data migration for table llx_projet_task_actors +MigrationProjectUserResp=Data migration field fk_user_resp of llx_projet to llx_element_contact +MigrationProjectTaskTime=Update time spent in seconds +MigrationActioncommElement=Update data on actions +MigrationPaymentMode=Data migration for payment type +MigrationCategorieAssociation=Migration of categories +MigrationEvents=Migration of events to add event owner into assignment table +MigrationEventsContact=Migration of events to add event contact into assignment table +MigrationRemiseEntity=Update entity field value of llx_societe_remise +MigrationRemiseExceptEntity=Update entity field value of llx_societe_remise_except +MigrationUserRightsEntity=Update entity field value of llx_user_rights +MigrationUserGroupRightsEntity=Update entity field value of llx_usergroup_rights +MigrationUserPhotoPath=Migration of photo paths for users +MigrationFieldsSocialNetworks=Migration of users fields social networks (%s) +MigrationReloadModule=Reload module %s +MigrationResetBlockedLog=Reset module BlockedLog for v7 algorithm +MigrationImportOrExportProfiles=Migration of import or export profiles (%s) +ShowNotAvailableOptions=Show unavailable options +HideNotAvailableOptions=Hide unavailable options +ErrorFoundDuringMigration=Error(s) were reported during the migration process so next step is not available. To ignore errors, you can click here, but the application or some features may not work correctly until the errors are resolved. +YouTryInstallDisabledByDirLock=The application tried to self-upgrade, but the install/upgrade pages have been disabled for security (directory renamed with .lock suffix).
+YouTryInstallDisabledByFileLock=The application tried to self-upgrade, but the install/upgrade pages have been disabled for security (by the existence of a lock file install.lock in the dolibarr documents directory).
+ClickHereToGoToApp=Click here to go to your application +ClickOnLinkOrRemoveManualy=If an upgrade is in progress, please wait. If not, click on the following link. If you always see this same page, you must remove/rename the file install.lock in the documents directory. +Loaded=Loaded +FunctionTest=Function test diff --git a/htdocs/langs/ms_MY/interventions.lang b/htdocs/langs/ms_MY/interventions.lang new file mode 100644 index 00000000000..a57a84fc4c8 --- /dev/null +++ b/htdocs/langs/ms_MY/interventions.lang @@ -0,0 +1,70 @@ +# Dolibarr language file - Source file is en_US - interventions +Intervention=Intervention +Interventions=Interventions +InterventionCard=Intervention card +NewIntervention=New intervention +AddIntervention=Create intervention +ChangeIntoRepeatableIntervention=Change to repeatable intervention +ListOfInterventions=List of interventions +ActionsOnFicheInter=Actions on intervention +LastInterventions=Latest %s interventions +AllInterventions=All interventions +CreateDraftIntervention=Create draft +InterventionContact=Intervention contact +DeleteIntervention=Delete intervention +ValidateIntervention=Validate intervention +ModifyIntervention=Modify intervention +DeleteInterventionLine=Delete intervention line +ConfirmDeleteIntervention=Are you sure you want to delete this intervention? +ConfirmValidateIntervention=Are you sure you want to validate this intervention under name %s? +ConfirmModifyIntervention=Are you sure you want to modify this intervention? +ConfirmDeleteInterventionLine=Are you sure you want to delete this intervention line? +ConfirmCloneIntervention=Are you sure you want to clone this intervention? +NameAndSignatureOfInternalContact=Name and signature of intervening: +NameAndSignatureOfExternalContact=Name and signature of customer: +DocumentModelStandard=Standard document model for interventions +InterventionCardsAndInterventionLines=Interventions and lines of interventions +InterventionClassifyBilled=Classify "Billed" +InterventionClassifyUnBilled=Classify "Unbilled" +InterventionClassifyDone=Classify "Done" +StatusInterInvoiced=Billed +SendInterventionRef=Submission of intervention %s +SendInterventionByMail=Send intervention by email +InterventionCreatedInDolibarr=Intervention %s created +InterventionValidatedInDolibarr=Intervention %s validated +InterventionModifiedInDolibarr=Intervention %s modified +InterventionClassifiedBilledInDolibarr=Intervention %s set as billed +InterventionClassifiedUnbilledInDolibarr=Intervention %s set as unbilled +InterventionSentByEMail=Intervention %s sent by email +InterventionDeletedInDolibarr=Intervention %s deleted +InterventionsArea=Interventions area +DraftFichinter=Draft interventions +LastModifiedInterventions=Latest %s modified interventions +FichinterToProcess=Interventions to process +TypeContact_fichinter_external_CUSTOMER=Following-up customer contact +PrintProductsOnFichinter=Print also lines of type "product" (not only services) on intervention card +PrintProductsOnFichinterDetails=interventions generated from orders +UseServicesDurationOnFichinter=Use services duration for interventions generated from orders +UseDurationOnFichinter=Hides the duration field for intervention records +UseDateWithoutHourOnFichinter=Hides hours and minutes off the date field for intervention records +InterventionStatistics=Statistics of interventions +NbOfinterventions=No. of intervention cards +NumberOfInterventionsByMonth=No. of intervention cards by month (date of validation) +AmountOfInteventionNotIncludedByDefault=Amount of intervention is not included by default into profit (in most cases, timesheets are used to count time spent). Add option PROJECT_INCLUDE_INTERVENTION_AMOUNT_IN_PROFIT to 1 into home-setup-other to include them. +InterId=Intervention id +InterRef=Intervention ref. +InterDateCreation=Date creation intervention +InterDuration=Duration intervention +InterStatus=Status intervention +InterNote=Note intervention +InterLine=Line of intervention +InterLineId=Line id intervention +InterLineDate=Line date intervention +InterLineDuration=Line duration intervention +InterLineDesc=Line description intervention +RepeatableIntervention=Template of intervention +ToCreateAPredefinedIntervention=To create a predefined or recurring intervention, create a common intervention and convert it into intervention template +ConfirmReopenIntervention=Are you sure you want to open back the intervention %s? +GenerateInter=Generate intervention +FichinterNoContractLinked=Intervention %s has been created without a linked contract. +ErrorFicheinterCompanyDoesNotExist=Company does not exist. Intervention has not been created. diff --git a/htdocs/langs/ms_MY/intracommreport.lang b/htdocs/langs/ms_MY/intracommreport.lang new file mode 100644 index 00000000000..93c46f112bb --- /dev/null +++ b/htdocs/langs/ms_MY/intracommreport.lang @@ -0,0 +1,40 @@ +Module68000Name = Intracomm report +Module68000Desc = Intracomm report management (Support for French DEB/DES format) +IntracommReportSetup = Intracommreport module setup +IntracommReportAbout = About intracommreport + +# Setup +INTRACOMMREPORT_NUM_AGREMENT=Numéro d'agrément (délivré par le CISD de rattachement) +INTRACOMMREPORT_TYPE_ACTEUR=Type d'acteur +INTRACOMMREPORT_ROLE_ACTEUR=Rôle joué par l'acteur +INTRACOMMREPORT_NIV_OBLIGATION_INTRODUCTION=Niveau d'obligation sur les introductions +INTRACOMMREPORT_NIV_OBLIGATION_EXPEDITION=Niveau d'obligation sur les expéditions +INTRACOMMREPORT_CATEG_FRAISDEPORT=Catégorie de services de type "Frais de port" + +INTRACOMMREPORT_NUM_DECLARATION=Numéro de déclarant + +# Menu +MenuIntracommReport=Intracomm report +MenuIntracommReportNew=New declaration +MenuIntracommReportList=List + +# View +NewDeclaration=New declaration +Declaration=Declaration +AnalysisPeriod=Analysis period +TypeOfDeclaration=Type of declaration +DEB=Goods exchange declaration (DEB) +DES=Services exchange declaration (DES) + +# Export page +IntracommReportTitle=Preparation of an XML file in ProDouane format + +# List +IntracommReportList=List of generated declarations +IntracommReportNumber=Numero of declaration +IntracommReportPeriod=Period of analysis +IntracommReportTypeDeclaration=Type of declaration +IntracommReportDownload=download XML file + +# Invoice +IntracommReportTransportMode=Transport mode diff --git a/htdocs/langs/ms_MY/knowledgemanagement.lang b/htdocs/langs/ms_MY/knowledgemanagement.lang new file mode 100644 index 00000000000..bcdf9740cdd --- /dev/null +++ b/htdocs/langs/ms_MY/knowledgemanagement.lang @@ -0,0 +1,54 @@ +# Copyright (C) 2021 SuperAdmin +# +# 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 . + +# +# Generic +# + +# Module label 'ModuleKnowledgeManagementName' +ModuleKnowledgeManagementName = Knowledge Management System +# Module description 'ModuleKnowledgeManagementDesc' +ModuleKnowledgeManagementDesc=Manage a Knowledge Management (KM) or Help-Desk base + +# +# Admin page +# +KnowledgeManagementSetup = Knowledge Management System setup +Settings = Settings +KnowledgeManagementSetupPage = Knowledge Management System setup page + + +# +# About page +# +About = About +KnowledgeManagementAbout = About Knowledge Management +KnowledgeManagementAboutPage = Knowledge Management about page + +KnowledgeManagementArea = Knowledge Management +MenuKnowledgeRecord = Knowledge base +ListKnowledgeRecord = List of articles +NewKnowledgeRecord = New article +ValidateReply = Validate solution +KnowledgeRecords = Articles +KnowledgeRecord = Article +KnowledgeRecordExtraFields = Extrafields for Article +GroupOfTicket=Group of tickets +YouCanLinkArticleToATicketCategory=You can link an article to a ticket group (so the article will be suggested during qualification of new tickets) +SuggestedForTicketsInGroup=Suggested for tickets when group is + +SetObsolete=Set as obsolete +ConfirmCloseKM=Do you confirm the closing of this article as obsolete ? +ConfirmReopenKM=Do you want to restore this article to status "Validated" ? diff --git a/htdocs/langs/ms_MY/languages.lang b/htdocs/langs/ms_MY/languages.lang new file mode 100644 index 00000000000..c246ac8bc77 --- /dev/null +++ b/htdocs/langs/ms_MY/languages.lang @@ -0,0 +1,123 @@ +# Dolibarr language file - Source file is en_US - languages +Language_am_ET=Ethiopian +Language_ar_AR=Arabic +Language_ar_DZ=Arabic (Algeria) +Language_ar_EG=Arabic (Egypt) +Language_ar_JO=Arabic (Jordania) +Language_ar_MA=Arabic (Moroco) +Language_ar_SA=Arabic +Language_ar_TN=Arabic (Tunisia) +Language_ar_IQ=Arabic (Iraq) +Language_as_IN=Assamese +Language_az_AZ=Azerbaijani +Language_bn_BD=Bengali +Language_bn_IN=Bengali (India) +Language_bg_BG=Bulgarian +Language_bo_CN=Tibetan +Language_bs_BA=Bosnian +Language_ca_ES=Catalan +Language_cs_CZ=Czech +Language_cy_GB=Welsh +Language_da_DA=Danish +Language_da_DK=Danish +Language_de_DE=German +Language_de_AT=German (Austria) +Language_de_CH=German (Switzerland) +Language_el_GR=Greek +Language_el_CY=Greek (Cyprus) +Language_en_AE=English (United Arab Emirates) +Language_en_AU=English (Australia) +Language_en_CA=English (Canada) +Language_en_GB=English (United Kingdom) +Language_en_IN=English (India) +Language_en_NZ=English (New Zealand) +Language_en_SA=English (Saudi Arabia) +Language_en_SG=English (Singapore) +Language_en_US=English (United States) +Language_en_ZA=English (South Africa) +Language_es_ES=Spanish +Language_es_AR=Spanish (Argentina) +Language_es_BO=Spanish (Bolivia) +Language_es_CL=Spanish (Chile) +Language_es_CO=Spanish (Colombia) +Language_es_CR=Spanish (Costa Rica) +Language_es_DO=Spanish (Dominican Republic) +Language_es_EC=Spanish (Ecuador) +Language_es_GT=Spanish (Guatemala) +Language_es_HN=Spanish (Honduras) +Language_es_MX=Spanish (Mexico) +Language_es_PA=Spanish (Panama) +Language_es_PY=Spanish (Paraguay) +Language_es_PE=Spanish (Peru) +Language_es_PR=Spanish (Puerto Rico) +Language_es_US=Spanish (USA) +Language_es_UY=Spanish (Uruguay) +Language_es_GT=Spanish (Guatemala) +Language_es_VE=Spanish (Venezuela) +Language_et_EE=Estonian +Language_eu_ES=Basque +Language_fa_IR=Persian +Language_fi_FI=Finnish +Language_fr_BE=French (Belgium) +Language_fr_CA=French (Canada) +Language_fr_CH=French (Switzerland) +Language_fr_CI=French (Cost Ivory) +Language_fr_CM=French (Cameroun) +Language_fr_FR=French +Language_fr_GA=French (Gabon) +Language_fr_NC=French (New Caledonia) +Language_fr_SN=French (Senegal) +Language_fy_NL=Frisian +Language_gl_ES=Galician +Language_he_IL=Hebrew +Language_hi_IN=Hindi (India) +Language_hr_HR=Croatian +Language_hu_HU=Hungarian +Language_id_ID=Indonesian +Language_is_IS=Icelandic +Language_it_IT=Italian +Language_it_CH=Italian (Switzerland) +Language_ja_JP=Japanese +Language_ka_GE=Georgian +Language_kk_KZ=Kazakh +Language_km_KH=Khmer +Language_kn_IN=Kannada +Language_ko_KR=Korean +Language_lo_LA=Lao +Language_lt_LT=Lithuanian +Language_lv_LV=Latvian +Language_mk_MK=Macedonian +Language_mn_MN=Mongolian +Language_my_MM=Burmese +Language_nb_NO=Norwegian (Bokmål) +Language_ne_NP=Nepali +Language_nl_BE=Dutch (Belgium) +Language_nl_NL=Dutch +Language_pl_PL=Polish +Language_pt_AO=Portuguese (Angola) +Language_pt_MZ=Portuguese (Mozambique) +Language_pt_BR=Portuguese (Brazil) +Language_pt_PT=Portuguese +Language_ro_MD=Romanian (Moldavia) +Language_ro_RO=Romanian +Language_ru_RU=Russian +Language_ru_UA=Russian (Ukraine) +Language_ta_IN=Tamil +Language_tg_TJ=Tajik +Language_tr_TR=Turkish +Language_sl_SI=Slovenian +Language_sv_SV=Swedish +Language_sv_SE=Swedish +Language_sq_AL=Albanian +Language_sk_SK=Slovakian +Language_sr_RS=Serbian +Language_sw_SW=Kiswahili +Language_th_TH=Thai +Language_uk_UA=Ukrainian +Language_ur_PK=Urdu +Language_uz_UZ=Uzbek +Language_vi_VN=Vietnamese +Language_zh_CN=Chinese +Language_zh_TW=Chinese (Traditional) +Language_zh_HK=Chinese (Hong Kong) +Language_bh_MY=Malay diff --git a/htdocs/langs/ms_MY/ldap.lang b/htdocs/langs/ms_MY/ldap.lang new file mode 100644 index 00000000000..62f90d795a4 --- /dev/null +++ b/htdocs/langs/ms_MY/ldap.lang @@ -0,0 +1,31 @@ +# Dolibarr language file - Source file is en_US - ldap +YouMustChangePassNextLogon=Password for user %s on the domain %s must be changed. +UserMustChangePassNextLogon=User must change password on the domain %s +LDAPInformationsForThisContact=Information in LDAP database for this contact +LDAPInformationsForThisUser=Information in LDAP database for this user +LDAPInformationsForThisGroup=Information in LDAP database for this group +LDAPInformationsForThisMember=Information in LDAP database for this member +LDAPInformationsForThisMemberType=Information in LDAP database for this member type +LDAPAttributes=LDAP attributes +LDAPCard=LDAP card +LDAPRecordNotFound=Record not found in LDAP database +LDAPUsers=Users in LDAP database +LDAPFieldStatus=Status +LDAPFieldFirstSubscriptionDate=First subscription date +LDAPFieldFirstSubscriptionAmount=First subscription amount +LDAPFieldLastSubscriptionDate=Latest subscription date +LDAPFieldLastSubscriptionAmount=Latest subscription amount +LDAPFieldSkype=Skype id +LDAPFieldSkypeExample=Example: skypeName +UserSynchronized=User synchronized +GroupSynchronized=Group synchronized +MemberSynchronized=Member synchronized +MemberTypeSynchronized=Member type synchronized +ContactSynchronized=Contact synchronized +ForceSynchronize=Force synchronizing Dolibarr -> LDAP +ErrorFailedToReadLDAP=Failed to read LDAP database. Check LDAP module setup and database accessibility. +PasswordOfUserInLDAP=Password of user in LDAP +LDAPPasswordHashType=Password hash type +LDAPPasswordHashTypeExample=Type of password hash used on the server +SupportedForLDAPExportScriptOnly=Only supported by an ldap export script +SupportedForLDAPImportScriptOnly=Only supported by an ldap import script diff --git a/htdocs/langs/ms_MY/link.lang b/htdocs/langs/ms_MY/link.lang new file mode 100644 index 00000000000..1ffcd41a18b --- /dev/null +++ b/htdocs/langs/ms_MY/link.lang @@ -0,0 +1,11 @@ +# Dolibarr language file - Source file is en_US - languages +LinkANewFile=Link a new file/document +LinkedFiles=Linked files and documents +NoLinkFound=No registered links +LinkComplete=The file has been linked successfully +ErrorFileNotLinked=The file could not be linked +LinkRemoved=The link %s has been removed +ErrorFailedToDeleteLink= Failed to remove link '%s' +ErrorFailedToUpdateLink= Failed to update link '%s' +URLToLink=URL to link +OverwriteIfExists=Overwrite file if exists diff --git a/htdocs/langs/ms_MY/loan.lang b/htdocs/langs/ms_MY/loan.lang new file mode 100644 index 00000000000..d271ed0c140 --- /dev/null +++ b/htdocs/langs/ms_MY/loan.lang @@ -0,0 +1,34 @@ +# Dolibarr language file - Source file is en_US - loan +Loan=Loan +Loans=Loans +NewLoan=New Loan +ShowLoan=Show Loan +PaymentLoan=Loan payment +LoanPayment=Loan payment +ShowLoanPayment=Show Loan Payment +LoanCapital=Capital +Insurance=Insurance +Interest=Interest +Nbterms=Number of terms +Term=Term +LoanAccountancyCapitalCode=Accounting account capital +LoanAccountancyInsuranceCode=Accounting account insurance +LoanAccountancyInterestCode=Accounting account interest +ConfirmDeleteLoan=Confirm deleting this loan +LoanDeleted=Loan Deleted Successfully +ConfirmPayLoan=Confirm classify paid this loan +LoanPaid=Loan Paid +ListLoanAssociatedProject=List of loan associated with the project +AddLoan=Create loan +FinancialCommitment=Financial commitment +InterestAmount=Interest +CapitalRemain=Capital remain +TermPaidAllreadyPaid = This term is allready paid +CantUseScheduleWithLoanStartedToPaid = Can't use scheduler for a loan with payment started +CantModifyInterestIfScheduleIsUsed = You can't modify interest if you use schedule +# Admin +ConfigLoan=Configuration of the module loan +LOAN_ACCOUNTING_ACCOUNT_CAPITAL=Accounting account capital by default +LOAN_ACCOUNTING_ACCOUNT_INTEREST=Accounting account interest by default +LOAN_ACCOUNTING_ACCOUNT_INSURANCE=Accounting account insurance by default +CreateCalcSchedule=Edit financial commitment diff --git a/htdocs/langs/ms_MY/mailmanspip.lang b/htdocs/langs/ms_MY/mailmanspip.lang new file mode 100644 index 00000000000..bab4b3576b4 --- /dev/null +++ b/htdocs/langs/ms_MY/mailmanspip.lang @@ -0,0 +1,27 @@ +# Dolibarr language file - Source file is en_US - mailmanspip +MailmanSpipSetup=Mailman and SPIP module Setup +MailmanTitle=Mailman mailing list system +TestSubscribe=To test subscription to Mailman lists +TestUnSubscribe=To test unsubscribe from Mailman lists +MailmanCreationSuccess=Subscription test was executed successfully +MailmanDeletionSuccess=Unsubscription test was executed successfully +SynchroMailManEnabled=A Mailman update will be performed +SynchroSpipEnabled=A Spip update will be performed +DescADHERENT_MAILMAN_ADMINPW=Mailman administrator password +DescADHERENT_MAILMAN_URL=URL for Mailman subscriptions +DescADHERENT_MAILMAN_UNSUB_URL=URL for Mailman unsubscriptions +DescADHERENT_MAILMAN_LISTS=List(s) for automatic inscription of new members (separated by a comma) +SPIPTitle=SPIP Content Management System +DescADHERENT_SPIP_SERVEUR=SPIP Server +DescADHERENT_SPIP_DB=SPIP database name +DescADHERENT_SPIP_USER=SPIP database login +DescADHERENT_SPIP_PASS=SPIP database password +AddIntoSpip=Add into SPIP +AddIntoSpipConfirmation=Are you sure you want to add this member into SPIP? +AddIntoSpipError=Failed to add the user in SPIP +DeleteIntoSpip=Remove from SPIP +DeleteIntoSpipConfirmation=Are you sure you want to remove this member from SPIP? +DeleteIntoSpipError=Failed to suppress the user from SPIP +SPIPConnectionFailed=Failed to connect to SPIP +SuccessToAddToMailmanList=%s successfully added to mailman list %s or SPIP database +SuccessToRemoveToMailmanList=%s successfully removed from mailman list %s or SPIP database diff --git a/htdocs/langs/ms_MY/mails.lang b/htdocs/langs/ms_MY/mails.lang new file mode 100644 index 00000000000..afb4edb1fcc --- /dev/null +++ b/htdocs/langs/ms_MY/mails.lang @@ -0,0 +1,181 @@ +# Dolibarr language file - Source file is en_US - mails +Mailing=EMailing +EMailing=EMailing +EMailings=EMailings +AllEMailings=All eMailings +MailCard=EMailing card +MailRecipients=Recipients +MailRecipient=Recipient +MailTitle=Description +MailFrom=Sender +MailErrorsTo=Errors to +MailReply=Reply to +MailTo=Receiver(s) +MailToUsers=To user(s) +MailCC=Copy to +MailToCCUsers=Copy to users(s) +MailCCC=Cached copy to +MailTopic=Email subject +MailText=Message +MailFile=Attached files +MailMessage=Email body +SubjectNotIn=Not in Subject +BodyNotIn=Not in Body +ShowEMailing=Show emailing +ListOfEMailings=List of emailings +NewMailing=New emailing +EditMailing=Edit emailing +ResetMailing=Resend emailing +DeleteMailing=Delete emailing +DeleteAMailing=Delete an emailing +PreviewMailing=Preview emailing +CreateMailing=Create emailing +TestMailing=Test email +ValidMailing=Valid emailing +MailingStatusDraft=Draft +MailingStatusValidated=Validated +MailingStatusSent=Sent +MailingStatusSentPartialy=Sent partially +MailingStatusSentCompletely=Sent completely +MailingStatusError=Error +MailingStatusNotSent=Not sent +MailSuccessfulySent=Email (from %s to %s) successfully accepted for delivery +MailingSuccessfullyValidated=EMailing successfully validated +MailUnsubcribe=Unsubscribe +MailingStatusNotContact=Don't contact anymore +MailingStatusReadAndUnsubscribe=Read and unsubscribe +ErrorMailRecipientIsEmpty=Email recipient is empty +WarningNoEMailsAdded=No new Email to add to recipient's list. +ConfirmValidMailing=Are you sure you want to validate this emailing? +ConfirmResetMailing=Warning, by re-initializing emailing %s, you will allow the re-sending this email in a bulk mailing. Are you sure you want to do this? +ConfirmDeleteMailing=Are you sure you want to delete this emailing? +NbOfUniqueEMails=No. of unique emails +NbOfEMails=No. of EMails +TotalNbOfDistinctRecipients=Number of distinct recipients +NoTargetYet=No recipients defined yet (Go on tab 'Recipients') +NoRecipientEmail=No recipient email for %s +RemoveRecipient=Remove recipient +YouCanAddYourOwnPredefindedListHere=To create your email selector module, see htdocs/core/modules/mailings/README. +EMailTestSubstitutionReplacedByGenericValues=When using test mode, substitutions variables are replaced by generic values +MailingAddFile=Attach this file +NoAttachedFiles=No attached files +BadEMail=Bad value for Email +EMailNotDefined=Email not defined +ConfirmCloneEMailing=Are you sure you want to clone this emailing? +CloneContent=Clone message +CloneReceivers=Cloner recipients +DateLastSend=Date of latest sending +DateSending=Date sending +SentTo=Sent to %s +MailingStatusRead=Read +YourMailUnsubcribeOK=The email %s is correctly unsubscribe from mailing list +ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubscribe" feature +EMailSentToNRecipients=Email sent to %s recipients. +EMailSentForNElements=Email sent for %s elements. +XTargetsAdded=%s recipients added into target list +OnlyPDFattachmentSupported=If the PDF documents were already generated for the objects to send, they will be attached to email. If not, no email will be sent (also, note that only pdf documents are supported as attachments in mass sending in this version). +AllRecipientSelected=The recipients of the %s record selected (if their email is known). +GroupEmails=Group emails +OneEmailPerRecipient=One email per recipient (by default, one email per record selected) +WarningIfYouCheckOneRecipientPerEmail=Warning, if you check this box, it means only one email will be sent for several different record selected, so, if your message contains substitution variables that refers to data of a record, it becomes not possible to replace them. +ResultOfMailSending=Result of mass Email sending +NbSelected=Number selected +NbIgnored=Number ignored +NbSent=Number sent +SentXXXmessages=%s message(s) sent. +ConfirmUnvalidateEmailing=Are you sure you want to change email %s to draft status? +MailingModuleDescContactsWithThirdpartyFilter=Contact with customer filters +MailingModuleDescContactsByCompanyCategory=Contacts by third-party category +MailingModuleDescContactsByCategory=Contacts by categories +MailingModuleDescContactsByFunction=Contacts by position +MailingModuleDescEmailsFromFile=Emails from file +MailingModuleDescEmailsFromUser=Emails input by user +MailingModuleDescDolibarrUsers=Users with Emails +MailingModuleDescThirdPartiesByCategories=Third parties (by categories) +SendingFromWebInterfaceIsNotAllowed=Sending from web interface is not allowed. +EmailCollectorFilterDesc=All filters must match to have an email being collected + +# Libelle des modules de liste de destinataires mailing +LineInFile=Line %s in file +RecipientSelectionModules=Defined requests for recipient's selection +MailSelectedRecipients=Selected recipients +MailingArea=EMailings area +LastMailings=Latest %s emailings +TargetsStatistics=Targets statistics +NbOfCompaniesContacts=Unique contacts/addresses +MailNoChangePossible=Recipients for validated emailing can't be changed +SearchAMailing=Search mailing +SendMailing=Send emailing +SentBy=Sent by +MailingNeedCommand=Sending an emailing can be performed from command line. Ask your server administrator to launch the following command to send the emailing to all recipients: +MailingNeedCommand2=You can however send them online by adding parameter MAILING_LIMIT_SENDBYWEB with value of max number of emails you want to send by session. For this, go on Home - Setup - Other. +ConfirmSendingEmailing=If you want to send emailing directly from this screen, please confirm you are sure you want to send emailing now from your browser ? +LimitSendingEmailing=Note: Sending of emailings from web interface is done in several times for security and timeout reasons, %s recipients at a time for each sending session. +TargetsReset=Clear list +ToClearAllRecipientsClickHere=Click here to clear the recipient list for this emailing +ToAddRecipientsChooseHere=Add recipients by choosing from the lists +NbOfEMailingsReceived=Mass emailings received +NbOfEMailingsSend=Mass emailings sent +IdRecord=ID record +DeliveryReceipt=Delivery Ack. +YouCanUseCommaSeparatorForSeveralRecipients=You can use the comma separator to specify several recipients. +TagCheckMail=Track mail opening +TagUnsubscribe=Unsubscribe link +TagSignature=Signature of sending user +EMailRecipient=Recipient Email +TagMailtoEmail=Recipient Email (including html "mailto:" link) +NoEmailSentBadSenderOrRecipientEmail=No email sent. Bad sender or recipient email. Verify user profile. +# Module Notifications +Notifications=Notifications +NotificationsAuto=Notifications Auto. +NoNotificationsWillBeSent=No automatic email notifications are planned for this event type and company +ANotificationsWillBeSent=1 automatic notification will be sent by email +SomeNotificationsWillBeSent=%s automatic notifications will be sent by email +AddNewNotification=Subscribe to a new automatic email notification (target/event) +ListOfActiveNotifications=List of all active subscriptions (targets/events) for automatic email notification +ListOfNotificationsDone=List of all automatic email notifications sent +MailSendSetupIs=Configuration of email sending has been setup to '%s'. This mode can't be used to send mass emailing. +MailSendSetupIs2=You must first go, with an admin account, into menu %sHome - Setup - EMails%s to change parameter '%s' to use mode '%s'. With this mode, you can enter setup of the SMTP server provided by your Internet Service Provider and use Mass emailing feature. +MailSendSetupIs3=If you have any questions on how to setup your SMTP server, you can ask to %s. +YouCanAlsoUseSupervisorKeyword=You can also add the keyword __SUPERVISOREMAIL__ to have email being sent to the supervisor of user (works only if an email is defined for this supervisor) +NbOfTargetedContacts=Current number of targeted contact emails +UseFormatFileEmailToTarget=Imported file must have format email;name;firstname;other +UseFormatInputEmailToTarget=Enter a string with format email;name;firstname;other +MailAdvTargetRecipients=Recipients (advanced selection) +AdvTgtTitle=Fill input fields to preselect the third parties or contacts/addresses to target +AdvTgtSearchTextHelp=Use %% as wildcards. For example to find all item like jean, joe, jim, you can input j%%, you can also use ; as separator for value, and use ! for except this value. For example jean;joe;jim%%;!jimo;!jima%% will target all jean, joe, start with jim but not jimo and not everything that starts with jima +AdvTgtSearchIntHelp=Use interval to select int or float value +AdvTgtMinVal=Minimum value +AdvTgtMaxVal=Maximum value +AdvTgtSearchDtHelp=Use interval to select date value +AdvTgtStartDt=Start dt. +AdvTgtEndDt=End dt. +AdvTgtTypeOfIncudeHelp=Target Email of third party and email of contact of the third party, or just third-party email or just contact email +AdvTgtTypeOfIncude=Type of targeted email +AdvTgtContactHelp=Use only if you target contact into "Type of targeted email" +AddAll=Add all +RemoveAll=Remove all +ItemsCount=Item(s) +AdvTgtNameTemplate=Filter name +AdvTgtAddContact=Add emails according to criteria +AdvTgtLoadFilter=Load filter +AdvTgtDeleteFilter=Delete filter +AdvTgtSaveFilter=Save filter +AdvTgtCreateFilter=Create filter +AdvTgtOrCreateNewFilter=Name of new filter +NoContactWithCategoryFound=No category found linked to some contacts/addresses +NoContactLinkedToThirdpartieWithCategoryFound=No category found linked to some thirdparties +OutGoingEmailSetup=Outgoing emails +InGoingEmailSetup=Incoming emails +OutGoingEmailSetupForEmailing=Outgoing emails (for module %s) +DefaultOutgoingEmailSetup=Same configuration than the global Outgoing email setup +Information=Information +ContactsWithThirdpartyFilter=Contacts with third-party filter +Unanswered=Unanswered +Answered=Answered +IsNotAnAnswer=Is not answer (initial email) +IsAnAnswer=Is an answer of an initial email +RecordCreatedByEmailCollector=Record created by the Email Collector %s from email %s +DefaultBlacklistMailingStatus=Default value for field '%s' when creating a new contact +DefaultStatusEmptyMandatory=Empty but mandatory +WarningLimitSendByDay=WARNING: The setup or contract of your instance limits your number of emails per day to %s. Trying to send more may result in having your instance slow down or suspended. Please contact your support if you need a higher quota. diff --git a/htdocs/langs/ms_MY/main.lang b/htdocs/langs/ms_MY/main.lang new file mode 100644 index 00000000000..a8768f41cbd --- /dev/null +++ b/htdocs/langs/ms_MY/main.lang @@ -0,0 +1,1182 @@ +# Dolibarr language file - Source file is en_US - main +DIRECTION=ltr +# Note for Chinese: +# msungstdlight or cid0ct are for traditional Chinese (traditional does not render with Ubuntu pdf reader) +# stsongstdlight or cid0cs are for simplified Chinese +# To read Chinese pdf with Linux: sudo apt-get install poppler-data +FONTFORPDF=helvetica +FONTSIZEFORPDF=10 +SeparatorDecimal=. +SeparatorThousand=, +FormatDateShort=%m/%d/%Y +FormatDateShortInput=%m/%d/%Y +FormatDateShortJava=MM/dd/yyyy +FormatDateShortJavaInput=MM/dd/yyyy +FormatDateShortJQuery=mm/dd/yy +FormatDateShortJQueryInput=mm/dd/yy +FormatHourShortJQuery=HH:MI +FormatHourShort=%I:%M %p +FormatHourShortDuration=%H:%M +FormatDateTextShort=%b %d, %Y +FormatDateText=%B %d, %Y +FormatDateHourShort=%m/%d/%Y %I:%M %p +FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p +FormatDateHourTextShort=%b %d, %Y, %I:%M %p +FormatDateHourText=%B %d, %Y, %I:%M %p +DatabaseConnection=Database connection +NoTemplateDefined=No template available for this email type +AvailableVariables=Available substitution variables +NoTranslation=No translation +Translation=Translation +CurrentTimeZone=TimeZone PHP (server) +EmptySearchString=Enter non empty search criterias +EnterADateCriteria=Enter a date criteria +NoRecordFound=No record found +NoRecordDeleted=No record deleted +NotEnoughDataYet=Not enough data +NoError=No error +Error=Error +Errors=Errors +ErrorFieldRequired=Field '%s' is required +ErrorFieldFormat=Field '%s' has a bad value +ErrorFileDoesNotExists=File %s does not exist +ErrorFailedToOpenFile=Failed to open file %s +ErrorCanNotCreateDir=Cannot create dir %s +ErrorCanNotReadDir=Cannot read dir %s +ErrorConstantNotDefined=Parameter %s not defined +ErrorUnknown=Unknown error +ErrorSQL=SQL Error +ErrorLogoFileNotFound=Logo file '%s' was not found +ErrorGoToGlobalSetup=Go to 'Company/Organization' setup to fix this +ErrorGoToModuleSetup=Go to Module setup to fix this +ErrorFailedToSendMail=Failed to send mail (sender=%s, receiver=%s) +ErrorFileNotUploaded=File was not uploaded. Check that size does not exceed maximum allowed, that free space is available on disk and that there is not already a file with same name in this directory. +ErrorInternalErrorDetected=Error detected +ErrorWrongHostParameter=Wrong host parameter +ErrorYourCountryIsNotDefined=Your country is not defined. Go to Home-Setup-Edit and post the form again. +ErrorRecordIsUsedByChild=Failed to delete this record. This record is used by at least one child record. +ErrorWrongValue=Wrong value +ErrorWrongValueForParameterX=Wrong value for parameter %s +ErrorNoRequestInError=No request in error +ErrorServiceUnavailableTryLater=Service not available at the moment. Try again later. +ErrorDuplicateField=Duplicate value in a unique field +ErrorSomeErrorWereFoundRollbackIsDone=Some errors were found. Changes have been rolled back. +ErrorConfigParameterNotDefined=Parameter %s is not defined in the Dolibarr config file conf.php. +ErrorCantLoadUserFromDolibarrDatabase=Failed to find user %s in Dolibarr database. +ErrorNoVATRateDefinedForSellerCountry=Error, no vat rates defined for country '%s'. +ErrorNoSocialContributionForSellerCountry=Error, no social/fiscal taxes type defined for country '%s'. +ErrorFailedToSaveFile=Error, failed to save file. +ErrorCannotAddThisParentWarehouse=You are trying to add a parent warehouse which is already a child of a existing warehouse +FieldCannotBeNegative=Field "%s" cannot be negative +MaxNbOfRecordPerPage=Max. number of records per page +NotAuthorized=You are not authorized to do that. +SetDate=Set date +SelectDate=Select a date +SeeAlso=See also %s +SeeHere=See here +ClickHere=Click here +Here=Here +Apply=Apply +BackgroundColorByDefault=Default background color +FileRenamed=The file was successfully renamed +FileGenerated=The file was successfully generated +FileSaved=The file was successfully saved +FileUploaded=The file was successfully uploaded +FileTransferComplete=File(s) uploaded successfully +FilesDeleted=File(s) successfully deleted +FileWasNotUploaded=A file is selected for attachment but was not yet uploaded. Click on "Attach file" for this. +NbOfEntries=No. of entries +GoToWikiHelpPage=Read online help (Internet access needed) +GoToHelpPage=Read help +DedicatedPageAvailable=Dedicated help page related to your current screen +HomePage=Home Page +RecordSaved=Record saved +RecordDeleted=Record deleted +RecordGenerated=Record generated +LevelOfFeature=Level of features +NotDefined=Not defined +DolibarrInHttpAuthenticationSoPasswordUseless=Dolibarr authentication mode is set to %s in configuration file conf.php.
This means that the password database is external to Dolibarr, so changing this field may have no effect. +Administrator=Administrator +Undefined=Undefined +PasswordForgotten=Password forgotten? +NoAccount=No account? +SeeAbove=See above +HomeArea=Home +LastConnexion=Last login +PreviousConnexion=Previous login +PreviousValue=Previous value +ConnectedOnMultiCompany=Connected on environment +ConnectedSince=Connected since +AuthenticationMode=Authentication mode +RequestedUrl=Requested URL +DatabaseTypeManager=Database type manager +RequestLastAccessInError=Latest database access request error +ReturnCodeLastAccessInError=Return code for latest database access request error +InformationLastAccessInError=Information for latest database access request error +DolibarrHasDetectedError=Dolibarr has detected a technical error +YouCanSetOptionDolibarrMainProdToZero=You can read log file or set option $dolibarr_main_prod to '0' in your config file to get more information. +InformationToHelpDiagnose=This information can be useful for diagnostic purposes (you can set option $dolibarr_main_prod to '1' to hide sensitive information) +MoreInformation=More information +TechnicalInformation=Technical information +TechnicalID=Technical ID +LineID=Line ID +NotePublic=Note (public) +NotePrivate=Note (private) +PrecisionUnitIsLimitedToXDecimals=Dolibarr was setup to limit precision of unit prices to %s decimals. +DoTest=Test +ToFilter=Filter +NoFilter=No filter +WarningYouHaveAtLeastOneTaskLate=Warning, you have at least one element that has exceeded the tolerance time. +yes=yes +Yes=Yes +no=no +No=No +All=All +Home=Home +Help=Help +OnlineHelp=Online help +PageWiki=Wiki page +MediaBrowser=Media browser +Always=Always +Never=Never +Under=under +Period=Period +PeriodEndDate=End date for period +SelectedPeriod=Selected period +PreviousPeriod=Previous period +Activate=Activate +Activated=Activated +Closed=Closed +Closed2=Closed +NotClosed=Not closed +Enabled=Enabled +Enable=Enable +Deprecated=Deprecated +Disable=Disable +Disabled=Disabled +Add=Add +AddLink=Add link +RemoveLink=Remove link +AddToDraft=Add to draft +Update=Update +Close=Close +CloseAs=Set status to +CloseBox=Remove widget from your dashboard +Confirm=Confirm +ConfirmSendCardByMail=Do you really want to send the content of this card by mail to %s? +Delete=Delete +Remove=Remove +Resiliate=Terminate +Cancel=Cancel +Modify=Modify +Edit=Edit +Validate=Validate +ValidateAndApprove=Validate and Approve +ToValidate=To validate +NotValidated=Not validated +Save=Save +SaveAs=Save As +SaveAndStay=Save and stay +SaveAndNew=Save and new +TestConnection=Test connection +ToClone=Clone +ConfirmCloneAsk=Are you sure you want to clone the object %s? +ConfirmClone=Choose the data you want to clone: +NoCloneOptionsSpecified=No data to clone defined. +Of=of +Go=Go +Run=Run +CopyOf=Copy of +Show=Show +Hide=Hide +ShowCardHere=Show card +Search=Search +SearchOf=Search +SearchMenuShortCut=Ctrl + shift + f +QuickAdd=Quick add +QuickAddMenuShortCut=Ctrl + shift + l +Valid=Valid +Approve=Approve +Disapprove=Disapprove +ReOpen=Re-Open +Upload=Upload +ToLink=Link +Select=Select +SelectAll=Select all +Choose=Choose +Resize=Resize +ResizeOrCrop=Resize or Crop +Recenter=Recenter +Author=Author +User=User +Users=Users +Group=Group +Groups=Groups +UserGroup=User group +UserGroups=User groups +NoUserGroupDefined=No user group defined +Password=Password +PasswordRetype=Retype your password +NoteSomeFeaturesAreDisabled=Note that a lot of features/modules are disabled in this demonstration. +Name=Name +NameSlashCompany=Name / Company +Person=Person +Parameter=Parameter +Parameters=Parameters +Value=Value +PersonalValue=Personal value +NewObject=New %s +NewValue=New value +OldValue=Old value %s +CurrentValue=Current value +Code=Code +Type=Type +Language=Language +MultiLanguage=Multi-language +Note=Note +Title=Title +Label=Label +RefOrLabel=Ref. or label +Info=Log +Family=Family +Description=Description +Designation=Description +DescriptionOfLine=Description of line +DateOfLine=Date of line +DurationOfLine=Duration of line +ParentLine=Parent line ID +Model=Doc template +DefaultModel=Default doc template +Action=Event +About=About +Number=Number +NumberByMonth=Total reports by month +AmountByMonth=Amount by month +Numero=Number +Limit=Limit +Limits=Limits +Logout=Logout +NoLogoutProcessWithAuthMode=No applicative disconnect feature with authentication mode %s +Connection=Login +Setup=Setup +Alert=Alert +MenuWarnings=Alerts +Previous=Previous +Next=Next +Cards=Cards +Card=Card +Now=Now +HourStart=Start hour +Deadline=Deadline +Date=Date +DateAndHour=Date and hour +DateToday=Today's date +DateReference=Reference date +DateStart=Start date +DateEnd=End date +DateCreation=Creation date +DateCreationShort=Creat. date +IPCreation=Creation IP +DateModification=Modification date +DateModificationShort=Modif. date +IPModification=Modification IP +DateLastModification=Latest modification date +DateValidation=Validation date +DateSigning=Signing date +DateClosing=Closing date +DateDue=Due date +DateValue=Value date +DateValueShort=Value date +DateOperation=Operation date +DateOperationShort=Oper. Date +DateLimit=Limit date +DateRequest=Request date +DateProcess=Process date +DateBuild=Report build date +DatePayment=Date of payment +DateApprove=Approving date +DateApprove2=Approving date (second approval) +RegistrationDate=Registration date +UserCreation=Creation user +UserModification=Modification user +UserValidation=Validation user +UserCreationShort=Creat. user +UserModificationShort=Modif. user +UserValidationShort=Valid. user +DurationYear=year +DurationMonth=month +DurationWeek=week +DurationDay=day +DurationYears=years +DurationMonths=months +DurationWeeks=weeks +DurationDays=days +Year=Year +Month=Month +Week=Week +WeekShort=Week +Day=Day +Hour=Hour +Minute=Minute +Second=Second +Years=Years +Months=Months +Days=Days +days=days +Hours=Hours +Minutes=Minutes +Seconds=Seconds +Weeks=Weeks +Today=Today +Yesterday=Yesterday +Tomorrow=Tomorrow +Morning=Morning +Afternoon=Afternoon +Quadri=Quadri +MonthOfDay=Month of the day +DaysOfWeek=Days of week +HourShort=H +MinuteShort=mn +Rate=Rate +CurrencyRate=Currency conversion rate +UseLocalTax=Include tax +Bytes=Bytes +KiloBytes=Kilobytes +MegaBytes=Megabytes +GigaBytes=Gigabytes +TeraBytes=Terabytes +UserAuthor=Created by +UserModif=Updated by +b=b. +Kb=Kb +Mb=Mb +Gb=Gb +Tb=Tb +Cut=Cut +Copy=Copy +Paste=Paste +Default=Default +DefaultValue=Default value +DefaultValues=Default values/filters/sorting +Price=Price +PriceCurrency=Price (currency) +UnitPrice=Unit price +UnitPriceHT=Unit price (excl.) +UnitPriceHTCurrency=Unit price (excl.) (currency) +UnitPriceTTC=Unit price +PriceU=U.P. +PriceUHT=U.P. (net) +PriceUHTCurrency=U.P (net) (currency) +PriceUTTC=U.P. (inc. tax) +Amount=Amount +AmountInvoice=Invoice amount +AmountInvoiced=Amount invoiced +AmountInvoicedHT=Amount invoiced (excl. tax) +AmountInvoicedTTC=Amount invoiced (inc. tax) +AmountPayment=Payment amount +AmountHTShort=Amount (excl.) +AmountTTCShort=Amount (inc. tax) +AmountHT=Amount (excl. tax) +AmountTTC=Amount (inc. tax) +AmountVAT=Amount tax +MulticurrencyAlreadyPaid=Already paid, original currency +MulticurrencyRemainderToPay=Remain to pay, original currency +MulticurrencyPaymentAmount=Payment amount, original currency +MulticurrencyAmountHT=Amount (excl. tax), original currency +MulticurrencyAmountTTC=Amount (inc. of tax), original currency +MulticurrencyAmountVAT=Amount tax, original currency +MulticurrencySubPrice=Amount sub price multi currency +AmountLT1=Amount tax 2 +AmountLT2=Amount tax 3 +AmountLT1ES=Amount RE +AmountLT2ES=Amount IRPF +AmountTotal=Total amount +AmountAverage=Average amount +PriceQtyMinHT=Price quantity min. (excl. tax) +PriceQtyMinHTCurrency=Price quantity min. (excl. tax) (currency) +PercentOfOriginalObject=Percent of original object +AmountOrPercent=Amount or percent +Percentage=Percentage +Total=Total +SubTotal=Subtotal +TotalHTShort=Total (excl.) +TotalHT100Short=Total 100%% (excl.) +TotalHTShortCurrency=Total (excl. in currency) +TotalTTCShort=Total (inc. tax) +TotalHT=Total (excl. tax) +TotalHTforthispage=Total (excl. tax) for this page +Totalforthispage=Total for this page +TotalTTC=Total (inc. tax) +TotalTTCToYourCredit=Total (inc. tax) to your credit +TotalVAT=Total tax +TotalVATIN=Total IGST +TotalLT1=Total tax 2 +TotalLT2=Total tax 3 +TotalLT1ES=Total RE +TotalLT2ES=Total IRPF +TotalLT1IN=Total CGST +TotalLT2IN=Total SGST +HT=Excl. tax +TTC=Inc. tax +INCVATONLY=Inc. VAT +INCT=Inc. all taxes +VAT=Sales tax +VATIN=IGST +VATs=Sales taxes +VATINs=IGST taxes +LT1=Sales tax 2 +LT1Type=Sales tax 2 type +LT2=Sales tax 3 +LT2Type=Sales tax 3 type +LT1ES=RE +LT2ES=IRPF +LT1IN=CGST +LT2IN=SGST +LT1GC=Additionnal cents +VATRate=Tax Rate +RateOfTaxN=Rate of tax %s +VATCode=Tax Rate code +VATNPR=Tax Rate NPR +DefaultTaxRate=Default tax rate +Average=Average +Sum=Sum +Delta=Delta +StatusToPay=To pay +RemainToPay=Remain to pay +Module=Module/Application +Modules=Modules/Applications +Option=Option +Filters=Filters +List=List +FullList=Full list +FullConversation=Full conversation +Statistics=Statistics +OtherStatistics=Other statistics +Status=Status +Favorite=Favorite +ShortInfo=Info. +Ref=Ref. +ExternalRef=Ref. extern +RefSupplier=Ref. vendor +RefPayment=Ref. payment +CommercialProposalsShort=Commercial proposals +Comment=Comment +Comments=Comments +ActionsToDo=Events to do +ActionsToDoShort=To do +ActionsDoneShort=Done +ActionNotApplicable=Not applicable +ActionRunningNotStarted=To start +ActionRunningShort=In progress +ActionDoneShort=Finished +ActionUncomplete=Incomplete +LatestLinkedEvents=Latest %s linked events +CompanyFoundation=Company/Organization +Accountant=Accountant +ContactsForCompany=Contacts for this third party +ContactsAddressesForCompany=Contacts/addresses for this third party +AddressesForCompany=Addresses for this third party +ActionsOnCompany=Events for this third party +ActionsOnContact=Events for this contact/address +ActionsOnContract=Events for this contract +ActionsOnMember=Events about this member +ActionsOnProduct=Events about this product +NActionsLate=%s late +ToDo=To do +Completed=Completed +Running=In progress +RequestAlreadyDone=Request already recorded +Filter=Filter +FilterOnInto=Search criteria '%s' into fields %s +RemoveFilter=Remove filter +ChartGenerated=Chart generated +ChartNotGenerated=Chart not generated +GeneratedOn=Build on %s +Generate=Generate +Duration=Duration +TotalDuration=Total duration +Summary=Summary +DolibarrStateBoard=Database Statistics +DolibarrWorkBoard=Open Items +NoOpenedElementToProcess=No open element to process +Available=Available +NotYetAvailable=Not yet available +NotAvailable=Not available +Categories=Tags/categories +Category=Tag/category +By=By +From=From +FromDate=From +FromLocation=From +to=to +To=to +ToDate=to +ToLocation=to +at=at +and=and +or=or +Other=Other +Others=Others +OtherInformations=Other information +Workflow=Workflow +Quantity=Quantity +Qty=Qty +ChangedBy=Changed by +ApprovedBy=Approved by +ApprovedBy2=Approved by (second approval) +Approved=Approved +Refused=Refused +ReCalculate=Recalculate +ResultKo=Failure +Reporting=Reporting +Reportings=Reporting +Draft=Draft +Drafts=Drafts +StatusInterInvoiced=Invoiced +Validated=Validated +ValidatedToProduce=Validated (To produce) +Opened=Open +OpenAll=Open (All) +ClosedAll=Closed (All) +New=New +Discount=Discount +Unknown=Unknown +General=General +Size=Size +OriginalSize=Original size +Received=Received +Paid=Paid +Topic=Subject +ByCompanies=By third parties +ByUsers=By user +Links=Links +Link=Link +Rejects=Rejects +Preview=Preview +NextStep=Next step +Datas=Data +None=None +NoneF=None +NoneOrSeveral=None or several +Late=Late +LateDesc=An item is defined as Delayed as per the system configuration in menu Home - Setup - Alerts. +NoItemLate=No late item +Photo=Picture +Photos=Pictures +AddPhoto=Add picture +DeletePicture=Picture delete +ConfirmDeletePicture=Confirm picture deletion? +Login=Login +LoginEmail=Login (email) +LoginOrEmail=Login or Email +CurrentLogin=Current login +EnterLoginDetail=Enter login details +January=January +February=February +March=March +April=April +May=May +June=June +July=July +August=August +September=September +October=October +November=November +December=December +Month01=January +Month02=February +Month03=March +Month04=April +Month05=May +Month06=June +Month07=July +Month08=August +Month09=September +Month10=October +Month11=November +Month12=December +MonthShort01=Jan +MonthShort02=Feb +MonthShort03=Mar +MonthShort04=Apr +MonthShort05=May +MonthShort06=Jun +MonthShort07=Jul +MonthShort08=Aug +MonthShort09=Sep +MonthShort10=Oct +MonthShort11=Nov +MonthShort12=Dec +MonthVeryShort01=J +MonthVeryShort02=F +MonthVeryShort03=M +MonthVeryShort04=A +MonthVeryShort05=M +MonthVeryShort06=J +MonthVeryShort07=J +MonthVeryShort08=A +MonthVeryShort09=S +MonthVeryShort10=O +MonthVeryShort11=N +MonthVeryShort12=D +AttachedFiles=Attached files and documents +JoinMainDoc=Join main document +JoinMainDocOrLastGenerated=Send the main document or the last generated one if not found +DateFormatYYYYMM=YYYY-MM +DateFormatYYYYMMDD=YYYY-MM-DD +DateFormatYYYYMMDDHHMM=YYYY-MM-DD HH:SS +ReportName=Report name +ReportPeriod=Report period +ReportDescription=Description +Report=Report +Keyword=Keyword +Origin=Origin +Legend=Legend +Fill=Fill +Reset=Reset +File=File +Files=Files +NotAllowed=Not allowed +ReadPermissionNotAllowed=Read permission not allowed +AmountInCurrency=Amount in %s currency +Example=Example +Examples=Examples +NoExample=No example +FindBug=Report a bug +NbOfThirdParties=Number of third parties +NbOfLines=Number of lines +NbOfObjects=Number of objects +NbOfObjectReferers=Number of related items +Referers=Related items +TotalQuantity=Total quantity +DateFromTo=From %s to %s +DateFrom=From %s +DateUntil=Until %s +Check=Check +Uncheck=Uncheck +Internal=Internal +External=External +Internals=Internal +Externals=External +Warning=Warning +Warnings=Warnings +BuildDoc=Build Doc +Entity=Environment +Entities=Entities +CustomerPreview=Customer preview +SupplierPreview=Vendor preview +ShowCustomerPreview=Show customer preview +ShowSupplierPreview=Show vendor preview +RefCustomer=Ref. customer +InternalRef=Internal ref. +Currency=Currency +InfoAdmin=Information for administrators +Undo=Undo +Redo=Redo +ExpandAll=Expand all +UndoExpandAll=Undo expand +SeeAll=See all +Reason=Reason +FeatureNotYetSupported=Feature not yet supported +CloseWindow=Close window +Response=Response +Priority=Priority +SendByMail=Send by email +MailSentBy=Email sent by +NotSent=Not sent +TextUsedInTheMessageBody=Email body +SendAcknowledgementByMail=Send confirmation email +SendMail=Send email +Email=Email +NoEMail=No email +AlreadyRead=Already read +NotRead=Unread +NoMobilePhone=No mobile phone +Owner=Owner +FollowingConstantsWillBeSubstituted=The following constants will be replaced with the corresponding value. +Refresh=Refresh +BackToList=Back to list +BackToTree=Back to tree +GoBack=Go back +CanBeModifiedIfOk=Can be modified if valid +CanBeModifiedIfKo=Can be modified if not valid +ValueIsValid=Value is valid +ValueIsNotValid=Value is not valid +RecordCreatedSuccessfully=Record created successfully +RecordModifiedSuccessfully=Record modified successfully +RecordsModified=%s record(s) modified +RecordsDeleted=%s record(s) deleted +RecordsGenerated=%s record(s) generated +AutomaticCode=Automatic code +FeatureDisabled=Feature disabled +MoveBox=Move widget +Offered=Offered +NotEnoughPermissions=You don't have permission for this action +UserNotInHierachy=This action is reserved to the supervisors of this user +SessionName=Session name +Method=Method +Receive=Receive +CompleteOrNoMoreReceptionExpected=Complete or nothing more expected +ExpectedValue=Expected Value +ExpectedQty=Expected Qty +PartialWoman=Partial +TotalWoman=Total +NeverReceived=Never received +Canceled=Canceled +YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu Setup - Dictionaries +YouCanChangeValuesForThisListFrom=You can change values for this list from menu %s +YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record in module setup +Color=Color +Documents=Linked files +Documents2=Documents +UploadDisabled=Upload disabled +MenuAccountancy=Accounting +MenuECM=Documents +MenuAWStats=AWStats +MenuMembers=Members +MenuAgendaGoogle=Google agenda +MenuTaxesAndSpecialExpenses=Taxes | Special expenses +ThisLimitIsDefinedInSetup=Dolibarr limit (Menu home-setup-security): %s Kb, PHP limit: %s Kb +ThisLimitIsDefinedInSetupAt=Dolibarr limit (Menu %s): %s Kb, PHP limit (Param %s): %s Kb +NoFileFound=No documents uploaded +CurrentUserLanguage=Current language +CurrentTheme=Current theme +CurrentMenuManager=Current menu manager +Browser=Browser +Layout=Layout +Screen=Screen +DisabledModules=Disabled modules +For=For +ForCustomer=For customer +Signature=Signature +DateOfSignature=Date of signature +HidePassword=Show command with password hidden +UnHidePassword=Show real command with clear password +Root=Root +RootOfMedias=Root of public medias (/medias) +Informations=Information +Page=Page +Notes=Notes +AddNewLine=Add new line +AddFile=Add file +FreeZone=Free-text product +FreeLineOfType=Free-text item, type: +CloneMainAttributes=Clone object with its main attributes +ReGeneratePDF=Re-generate PDF +PDFMerge=PDF Merge +Merge=Merge +DocumentModelStandardPDF=Standard PDF template +PrintContentArea=Show page to print main content area +MenuManager=Menu manager +WarningYouAreInMaintenanceMode=Warning, you are in maintenance mode: only login %s is allowed to use the application in this mode. +CoreErrorTitle=System error +CoreErrorMessage=Sorry, an error occurred. Contact your system administrator to check the logs or disable $dolibarr_main_prod=1 to get more information. +CreditCard=Credit card +ValidatePayment=Validate payment +CreditOrDebitCard=Credit or debit card +FieldsWithAreMandatory=Fields with %s are mandatory +FieldsWithIsForPublic=Fields with %s are shown in public list of members. If you don't want this, uncheck the "public" box. +AccordingToGeoIPDatabase=(according to GeoIP conversion) +Line=Line +NotSupported=Not supported +RequiredField=Required field +Result=Result +ToTest=Test +ValidateBefore=Item must be validated before using this feature +Visibility=Visibility +Totalizable=Totalizable +TotalizableDesc=This field is totalizable in list +Private=Private +Hidden=Hidden +Resources=Resources +Source=Source +Prefix=Prefix +Before=Before +After=After +IPAddress=IP address +Frequency=Frequency +IM=Instant messaging +NewAttribute=New attribute +AttributeCode=Attribute code +URLPhoto=URL of photo/logo +SetLinkToAnotherThirdParty=Link to another third party +LinkTo=Link to +LinkToProposal=Link to proposal +LinkToExpedition= Link to expedition +LinkToOrder=Link to order +LinkToInvoice=Link to invoice +LinkToTemplateInvoice=Link to template invoice +LinkToSupplierOrder=Link to purchase order +LinkToSupplierProposal=Link to vendor proposal +LinkToSupplierInvoice=Link to vendor invoice +LinkToContract=Link to contract +LinkToIntervention=Link to intervention +LinkToTicket=Link to ticket +LinkToMo=Link to Mo +CreateDraft=Create draft +SetToDraft=Back to draft +ClickToEdit=Click to edit +ClickToRefresh=Click to refresh +EditWithEditor=Edit with CKEditor +EditWithTextEditor=Edit with Text editor +EditHTMLSource=Edit HTML Source +ObjectDeleted=Object %s deleted +ByCountry=By country +ByTown=By town +ByDate=By date +ByMonthYear=By month/year +ByYear=By year +ByMonth=By month +ByDay=By day +BySalesRepresentative=By sales representative +LinkedToSpecificUsers=Linked to a particular user contact +NoResults=No results +AdminTools=Admin Tools +SystemTools=System tools +ModulesSystemTools=Modules tools +Test=Test +Element=Element +NoPhotoYet=No pictures available yet +Dashboard=Dashboard +MyDashboard=My Dashboard +Deductible=Deductible +from=from +toward=toward +Access=Access +SelectAction=Select action +SelectTargetUser=Select target user/employee +HelpCopyToClipboard=Use Ctrl+C to copy to clipboard +SaveUploadedFileWithMask=Save file on server with name "%s" (otherwise "%s") +OriginFileName=Original filename +SetDemandReason=Set source +SetBankAccount=Define Bank Account +AccountCurrency=Account currency +ViewPrivateNote=View notes +XMoreLines=%s line(s) hidden +ShowMoreLines=Show more/less lines +PublicUrl=Public URL +AddBox=Add box +SelectElementAndClick=Select an element and click on %s +PrintFile=Print File %s +ShowTransaction=Show entry on bank account +ShowIntervention=Show intervention +ShowContract=Show contract +GoIntoSetupToChangeLogo=Go to Home - Setup - Company to change logo or go to Home - Setup - Display to hide. +Deny=Deny +Denied=Denied +ListOf=List of %s +ListOfTemplates=List of templates +Gender=Gender +Genderman=Male +Genderwoman=Female +Genderother=Other +ViewList=List view +ViewGantt=Gantt view +ViewKanban=Kanban view +Mandatory=Mandatory +Hello=Hello +GoodBye=GoodBye +Sincerely=Sincerely +ConfirmDeleteObject=Are you sure you want to delete this object? +DeleteLine=Delete line +ConfirmDeleteLine=Are you sure you want to delete this line? +ErrorPDFTkOutputFileNotFound=Error: the file was not generated. Please check that the 'pdftk' command is installed in a directory included in the $PATH environment variable (linux/unix only) or contact your system administrator. +NoPDFAvailableForDocGenAmongChecked=No PDF were available for the document generation among checked record +TooManyRecordForMassAction=Too many records selected for mass action. The action is restricted to a list of %s records. +NoRecordSelected=No record selected +MassFilesArea=Area for files built by mass actions +ShowTempMassFilesArea=Show area of files built by mass actions +ConfirmMassDeletion=Bulk Delete confirmation +ConfirmMassDeletionQuestion=Are you sure you want to delete the %s selected record(s)? +RelatedObjects=Related Objects +ClassifyBilled=Classify billed +ClassifyUnbilled=Classify unbilled +Progress=Progress +ProgressShort=Progr. +FrontOffice=Front office +BackOffice=Back office +Submit=Submit +View=View +Export=Export +Exports=Exports +ExportFilteredList=Export filtered list +ExportList=Export list +ExportOptions=Export Options +IncludeDocsAlreadyExported=Include docs already exported +ExportOfPiecesAlreadyExportedIsEnable=Export of pieces already exported is enable +ExportOfPiecesAlreadyExportedIsDisable=Export of pieces already exported is disable +AllExportedMovementsWereRecordedAsExported=All exported movements were recorded as exported +NotAllExportedMovementsCouldBeRecordedAsExported=Not all exported movements could be recorded as exported +Miscellaneous=Miscellaneous +Calendar=Calendar +GroupBy=Group by... +ViewFlatList=View flat list +ViewAccountList=View ledger +ViewSubAccountList=View subaccount ledger +RemoveString=Remove string '%s' +SomeTranslationAreUncomplete=Some of the languages offered may be only partially translated or may contain errors. Please help to correct your language by registering at https://transifex.com/projects/p/dolibarr/ to add your improvements. +DirectDownloadLink=Public download link +PublicDownloadLinkDesc=Only the link is required to download the file +DirectDownloadInternalLink=Private download link +PrivateDownloadLinkDesc=You need to be logged and you need permissions to view or download the file +Download=Download +DownloadDocument=Download document +ActualizeCurrency=Update currency rate +Fiscalyear=Fiscal year +ModuleBuilder=Module and Application Builder +SetMultiCurrencyCode=Set currency +BulkActions=Bulk actions +ClickToShowHelp=Click to show tooltip help +WebSite=Website +WebSites=Websites +WebSiteAccounts=Website accounts +ExpenseReport=Expense report +ExpenseReports=Expense reports +HR=HR +HRAndBank=HR and Bank +AutomaticallyCalculated=Automatically calculated +TitleSetToDraft=Go back to draft +ConfirmSetToDraft=Are you sure you want to go back to Draft status? +ImportId=Import id +Events=Events +EMailTemplates=Email templates +FileNotShared=File not shared to external public +Project=Project +Projects=Projects +LeadOrProject=Lead | Project +LeadsOrProjects=Leads | Projects +Lead=Lead +Leads=Leads +ListOpenLeads=List open leads +ListOpenProjects=List open projects +NewLeadOrProject=New lead or project +Rights=Permissions +LineNb=Line no. +IncotermLabel=Incoterms +TabLetteringCustomer=Customer lettering +TabLetteringSupplier=Vendor lettering +Monday=Monday +Tuesday=Tuesday +Wednesday=Wednesday +Thursday=Thursday +Friday=Friday +Saturday=Saturday +Sunday=Sunday +MondayMin=Mo +TuesdayMin=Tu +WednesdayMin=We +ThursdayMin=Th +FridayMin=Fr +SaturdayMin=Sa +SundayMin=Su +Day1=Monday +Day2=Tuesday +Day3=Wednesday +Day4=Thursday +Day5=Friday +Day6=Saturday +Day0=Sunday +ShortMonday=M +ShortTuesday=T +ShortWednesday=W +ShortThursday=T +ShortFriday=F +ShortSaturday=S +ShortSunday=S +one=one +two=two +three=three +four=four +five=five +six=six +seven=seven +eight=eight +nine=nine +ten=ten +eleven=eleven +twelve=twelve +thirteen=thirdteen +fourteen=fourteen +fifteen=fifteen +sixteen=sixteen +seventeen=seventeen +eighteen=eighteen +nineteen=nineteen +twenty=twenty +thirty=thirty +forty=forty +fifty=fifty +sixty=sixty +seventy=seventy +eighty=eighty +ninety=ninety +hundred=hundred +thousand=thousand +million=million +billion=billion +trillion=trillion +quadrillion=quadrillion +SelectMailModel=Select an email template +SetRef=Set ref +Select2ResultFoundUseArrows=Some results found. Use arrows to select. +Select2NotFound=No result found +Select2Enter=Enter +Select2MoreCharacter=or more character +Select2MoreCharacters=or more characters +Select2MoreCharactersMore=Search syntax:
| OR (a|b)
* Any character (a*b)
^ Start with (^ab)
$ End with (ab$)
+Select2LoadingMoreResults=Loading more results... +Select2SearchInProgress=Search in progress... +SearchIntoThirdparties=Third parties +SearchIntoContacts=Contacts +SearchIntoMembers=Members +SearchIntoUsers=Users +SearchIntoProductsOrServices=Products or services +SearchIntoBatch=Lots / Serials +SearchIntoProjects=Projects +SearchIntoMO=Manufacturing Orders +SearchIntoTasks=Tasks +SearchIntoCustomerInvoices=Customer invoices +SearchIntoSupplierInvoices=Vendor invoices +SearchIntoCustomerOrders=Sales orders +SearchIntoSupplierOrders=Purchase orders +SearchIntoCustomerProposals=Commercial proposals +SearchIntoSupplierProposals=Vendor proposals +SearchIntoInterventions=Interventions +SearchIntoContracts=Contracts +SearchIntoCustomerShipments=Customer shipments +SearchIntoExpenseReports=Expense reports +SearchIntoLeaves=Leave +SearchIntoTickets=Tickets +SearchIntoCustomerPayments=Customer payments +SearchIntoVendorPayments=Vendor payments +SearchIntoMiscPayments=Miscellaneous payments +CommentLink=Comments +NbComments=Number of comments +CommentPage=Comments space +CommentAdded=Comment added +CommentDeleted=Comment deleted +Everybody=Everybody +PayedBy=Paid by +PayedTo=Paid to +Monthly=Monthly +Quarterly=Quarterly +Annual=Annual +Local=Local +Remote=Remote +LocalAndRemote=Local and Remote +KeyboardShortcut=Keyboard shortcut +AssignedTo=Assigned to +Deletedraft=Delete draft +ConfirmMassDraftDeletion=Draft mass delete confirmation +FileSharedViaALink=File shared with a public link +SelectAThirdPartyFirst=Select a third party first... +YouAreCurrentlyInSandboxMode=You are currently in the %s "sandbox" mode +Inventory=Inventory +AnalyticCode=Analytic code +TMenuMRP=MRP +ShowCompanyInfos=Show company infos +ShowMoreInfos=Show More Infos +NoFilesUploadedYet=Please upload a document first +SeePrivateNote=See private note +PaymentInformation=Payment information +ValidFrom=Valid from +ValidUntil=Valid until +NoRecordedUsers=No users +ToClose=To close +ToRefuse=To refuse +ToProcess=To process +ToApprove=To approve +GlobalOpenedElemView=Global view +NoArticlesFoundForTheKeyword=No article found for the keyword '%s' +NoArticlesFoundForTheCategory=No article found for the category +ToAcceptRefuse=To accept | refuse +ContactDefault_agenda=Event +ContactDefault_commande=Order +ContactDefault_contrat=Contract +ContactDefault_facture=Invoice +ContactDefault_fichinter=Intervention +ContactDefault_invoice_supplier=Supplier Invoice +ContactDefault_order_supplier=Purchase Order +ContactDefault_project=Project +ContactDefault_project_task=Task +ContactDefault_propal=Proposal +ContactDefault_supplier_proposal=Supplier Proposal +ContactDefault_ticket=Ticket +ContactAddedAutomatically=Contact added from contact thirdparty roles +More=More +ShowDetails=Show details +CustomReports=Custom reports +StatisticsOn=Statistics on +SelectYourGraphOptionsFirst=Select your graph options to build a graph +Measures=Measures +XAxis=X-Axis +YAxis=Y-Axis +StatusOfRefMustBe=Status of %s must be %s +DeleteFileHeader=Confirm file delete +DeleteFileText=Do you really want delete this file? +ShowOtherLanguages=Show other languages +SwitchInEditModeToAddTranslation=Switch in edit mode to add translations for this language +NotUsedForThisCustomer=Not used for this customer +AmountMustBePositive=Amount must be positive +ByStatus=By status +InformationMessage=Information +Used=Used +ASAP=As Soon As Possible +CREATEInDolibarr=Record %s created +MODIFYInDolibarr=Record %s modified +DELETEInDolibarr=Record %s deleted +VALIDATEInDolibarr=Record %s validated +APPROVEDInDolibarr=Record %s approved +DefaultMailModel=Default Mail Model +PublicVendorName=Public name of vendor +DateOfBirth=Date of birth +SecurityTokenHasExpiredSoActionHasBeenCanceledPleaseRetry=Security token has expired, so action has been canceled. Please try again. +UpToDate=Up-to-date +OutOfDate=Out-of-date +EventReminder=Event Reminder +UpdateForAllLines=Update for all lines +OnHold=On hold +Civility=Civility +AffectTag=Affect Tag +CreateExternalUser=Create external user +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 +CopiedToClipboard=Copied to clipboard +InformationOnLinkToContract=This amount is only the total of all the lines of the contract. No notion of time is taken into consideration. +ConfirmCancel=Are you sure you want to cancel +EmailMsgID=Email MsgID +SetToEnabled=Set to enabled +SetToDisabled=Set to disabled +ConfirmMassEnabling=mass enabling confirmation +ConfirmMassEnablingQuestion=Are you sure you want to enable the %s selected record(s)? +ConfirmMassDisabling=mass disabling confirmation +ConfirmMassDisablingQuestion=Are you sure you want to disable the %s selected record(s)? +RecordsEnabled=%s record(s) enabled +RecordsDisabled=%s record(s) disabled +RecordEnabled=Record enabled +RecordDisabled=Record disabled +Forthcoming=Forthcoming +Currently=Currently +ConfirmMassLeaveApprovalQuestion=Are you sure you want to approve the %s selected record(s)? +ConfirmMassLeaveApproval=Mass leave approval confirmation +RecordAproved=Record approved +RecordsApproved=%s Record(s) approved +Properties=Properties +hasBeenValidated=%s has been validated +ClientTZ=Client Time Zone (user) +NotClosedYet=Not yet closed +ClearSignature=Reset signature +CanceledHidden=Canceled hidden +CanceledShown=Canceled shown +Terminate=Terminate +Terminated=Terminated +AddLineOnPosition=Add line on position (at the end if empty) +ConfirmAllocateCommercial=Assign sales representative confirmation +ConfirmAllocateCommercialQuestion=Are you sure you want to assign the %s selected record(s)? +CommercialsAffected=Sales representatives affected +CommercialAffected=Sales representative affected +YourMessage=Your message +YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. +UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/ms_MY/margins.lang b/htdocs/langs/ms_MY/margins.lang new file mode 100644 index 00000000000..a91b139ec7b --- /dev/null +++ b/htdocs/langs/ms_MY/margins.lang @@ -0,0 +1,45 @@ +# Dolibarr language file - Source file is en_US - marges + +Margin=Margin +Margins=Margins +TotalMargin=Total Margin +MarginOnProducts=Margin / Products +MarginOnServices=Margin / Services +MarginRate=Margin rate +MarkRate=Mark rate +DisplayMarginRates=Display margin rates +DisplayMarkRates=Display mark rates +InputPrice=Input price +margin=Profit margins management +margesSetup=Profit margins management setup +MarginDetails=Margin details +ProductMargins=Product margins +CustomerMargins=Customer margins +SalesRepresentativeMargins=Sales representative margins +ContactOfInvoice=Contact of invoice +UserMargins=User margins +ProductService=Product or Service +AllProducts=All products and services +ChooseProduct/Service=Choose product or service +ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined +ForceBuyingPriceIfNullDetails=If buying/cost price not provided when we add a new line, and this option is "ON", the margin will be 0%% on the new line (buying/cost price = selling price). If this option is "OFF" (recommended), margin will be equal to the value suggested by default (and may be 100%% if no default value can be found). +MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts +UseDiscountAsProduct=As a product +UseDiscountAsService=As a service +UseDiscountOnTotal=On subtotal +MARGIN_METHODE_FOR_DISCOUNT_DETAILS=Defines if a global discount is treated as a product, a service, or only on subtotal for margin calculation. +MARGIN_TYPE=Buying/Cost price suggested by default for margin calculation +MargeType1=Margin on Best vendor price +MargeType2=Margin on Weighted Average Price (WAP) +MargeType3=Margin on Cost Price +MarginTypeDesc=* Margin on best buying price = Selling price - Best vendor price defined on product card
* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best vendor price if WAP not yet defined
* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best vendor price if WAP not yet defined +CostPrice=Cost price +UnitCharges=Unit charges +Charges=Charges +AgentContactType=Commercial agent contact type +AgentContactTypeDetails=Define what contact type (linked on invoices) will be used for margin report per contact/address. Note that reading statistics on a contact is not reliable since in most cases the contact may not be defined explicitely on the invoices. +rateMustBeNumeric=Rate must be a numeric value +markRateShouldBeLesserThan100=Mark rate should be lower than 100 +ShowMarginInfos=Show margin infos +CheckMargins=Margins detail +MarginPerSaleRepresentativeWarning=The report of margin per user use the link between third parties and sale representatives to calculate the margin of each sale representative. Because some thirdparties may not have any dedicated sale representative and some third parties may be linked to several, some amounts may not be included into this report (if there is no sale representative) and some may appear on different lines (for each sale representative). diff --git a/htdocs/langs/ms_MY/members.lang b/htdocs/langs/ms_MY/members.lang new file mode 100644 index 00000000000..126063358d6 --- /dev/null +++ b/htdocs/langs/ms_MY/members.lang @@ -0,0 +1,230 @@ +# Dolibarr language file - Source file is en_US - members +MembersArea=Members area +MemberCard=Member card +SubscriptionCard=Subscription card +Member=Member +Members=Members +ShowMember=Show member card +UserNotLinkedToMember=User not linked to a member +ThirdpartyNotLinkedToMember=Third party not linked to a member +MembersTickets=Membership address sheet +FundationMembers=Foundation members +ListOfValidatedPublicMembers=List of validated public members +ErrorThisMemberIsNotPublic=This member is not public +ErrorMemberIsAlreadyLinkedToThisThirdParty=Another member (name: %s, login: %s) is already linked to a third party %s. Remove this link first because a third party can't be linked to only a member (and vice versa). +ErrorUserPermissionAllowsToLinksToItselfOnly=For security reasons, you must be granted permissions to edit all users to be able to link a member to a user that is not yours. +SetLinkToUser=Link to a Dolibarr user +SetLinkToThirdParty=Link to a Dolibarr third party +MembersCards=Generation of cards for members +MembersList=List of members +MembersListToValid=List of draft members (to be validated) +MembersListValid=List of valid members +MembersListUpToDate=List of valid members with up-to-date contribution +MembersListNotUpToDate=List of valid members with out-of-date contribution +MembersListExcluded=List of excluded members +MembersListResiliated=List of terminated members +MembersListQualified=List of qualified members +MenuMembersToValidate=Draft members +MenuMembersValidated=Validated members +MenuMembersExcluded=Excluded members +MenuMembersResiliated=Terminated members +MembersWithSubscriptionToReceive=Members with contribution to receive +MembersWithSubscriptionToReceiveShort=Contributions to receive +DateSubscription=Date of membership +DateEndSubscription=End date of membership +EndSubscription=End of membership +SubscriptionId=Contribution ID +WithoutSubscription=Without contribution +MemberId=Member Id +MemberRef=Member Ref +NewMember=New member +MemberType=Member type +MemberTypeId=Member type id +MemberTypeLabel=Member type label +MembersTypes=Members types +MemberStatusDraft=Draft (needs to be validated) +MemberStatusDraftShort=Draft +MemberStatusActive=Validated (waiting contribution) +MemberStatusActiveShort=Validated +MemberStatusActiveLate=Contribution expired +MemberStatusActiveLateShort=Expired +MemberStatusPaid=Subscription up to date +MemberStatusPaidShort=Up to date +MemberStatusExcluded=Excluded member +MemberStatusExcludedShort=Excluded +MemberStatusResiliated=Terminated member +MemberStatusResiliatedShort=Terminated +MembersStatusToValid=Draft members +MembersStatusExcluded=Excluded members +MembersStatusResiliated=Terminated members +MemberStatusNoSubscription=Validated (no contribution required) +MemberStatusNoSubscriptionShort=Validated +SubscriptionNotNeeded=No contribution required +NewCotisation=New contribution +PaymentSubscription=New contribution payment +SubscriptionEndDate=Subscription's end date +MembersTypeSetup=Members type setup +MemberTypeModified=Member type modified +DeleteAMemberType=Delete a member type +ConfirmDeleteMemberType=Are you sure you want to delete this member type? +MemberTypeDeleted=Member type deleted +MemberTypeCanNotBeDeleted=Member type can not be deleted +NewSubscription=New contribution +NewSubscriptionDesc=This form allows you to record your subscription as a new member of the foundation. If you want to renew your subscription (if already a member), please contact foundation board instead by email %s. +Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Duration +GetMembershipButtonLabel=Get membership +Subscriptions=Contributions +SubscriptionLate=Late +SubscriptionNotReceived=Contribution never received +ListOfSubscriptions=List of contributions +SendCardByMail=Send card by email +AddMember=Create member +NoTypeDefinedGoToSetup=No member types defined. Go to menu "Members types" +NewMemberType=New member type +WelcomeEMail=Welcome email +SubscriptionRequired=Contribution required +DeleteType=Delete +VoteAllowed=Vote allowed +Physical=Individual +Moral=Corporation +MorAndPhy=Corporation and Individual +Reenable=Re-Enable +ExcludeMember=Exclude a member +Exclude=Exclude +ConfirmExcludeMember=Are you sure you want to exclude this member ? +ResiliateMember=Terminate a member +ConfirmResiliateMember=Are you sure you want to terminate this member? +DeleteMember=Delete a member +ConfirmDeleteMember=Are you sure you want to delete this member (Deleting a member will delete all his contributions)? +DeleteSubscription=Delete a subscription +ConfirmDeleteSubscription=Are you sure you want to delete this contribution? +Filehtpasswd=htpasswd file +ValidateMember=Validate a member +ConfirmValidateMember=Are you sure you want to validate this member? +FollowingLinksArePublic=The following links are open pages not protected by any Dolibarr permission. They are not formatted pages, provided as example to show how to list members database. +PublicMemberList=Public member list +BlankSubscriptionForm=Public self-registration form +BlankSubscriptionFormDesc=Dolibarr can provide you a public URL/website to allow external visitors to ask to subscribe to the foundation. If an online payment module is enabled, a payment form may also be automatically provided. +EnablePublicSubscriptionForm=Enable the public website with self-subscription form +ForceMemberType=Force the member type +ExportDataset_member_1=Members and contributions +ImportDataset_member_1=Members +LastMembersModified=Latest %s modified members +LastSubscriptionsModified=Latest %s modified contributions +String=String +Text=Text +Int=Int +DateAndTime=Date and time +PublicMemberCard=Member public card +SubscriptionNotRecorded=Contribution not recorded +AddSubscription=Create contribution +ShowSubscription=Show contribution +# Label of email templates +SendingAnEMailToMember=Sending information email to member +SendingEmailOnAutoSubscription=Sending email on auto registration +SendingEmailOnMemberValidation=Sending email on new member validation +SendingEmailOnNewSubscription=Sending email on new contribution +SendingReminderForExpiredSubscription=Sending reminder for expired contributions +SendingEmailOnCancelation=Sending email on cancelation +SendingReminderActionComm=Sending reminder for agenda event +# Topic of email templates +YourMembershipRequestWasReceived=Your membership was received. +YourMembershipWasValidated=Your membership was validated +YourSubscriptionWasRecorded=Your new contribution was recorded +SubscriptionReminderEmail=contribution reminder +YourMembershipWasCanceled=Your membership was canceled +CardContent=Content of your member card +# Text of email templates +ThisIsContentOfYourMembershipRequestWasReceived=We want to let you know that your membership request was received.

+ThisIsContentOfYourMembershipWasValidated=We want to let you know that your membership was validated with the following information:

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

+ThisIsContentOfSubscriptionReminderEmail=We want to let you know that your subscription is about to expire or has already expired (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). We hope you will renew it.

+ThisIsContentOfYourCard=This is a summary of the information we have about you. Please contact us if anything is incorrect.

+DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Subject of the notification email received in case of auto-inscription of a guest +DescADHERENT_AUTOREGISTER_NOTIF_MAIL=Content of the notification email received in case of auto-inscription of a guest +DescADHERENT_EMAIL_TEMPLATE_AUTOREGISTER=Email template to use to send email to a member on member auto-registration +DescADHERENT_EMAIL_TEMPLATE_MEMBER_VALIDATION=Email template to use to send email to a member on member validation +DescADHERENT_EMAIL_TEMPLATE_SUBSCRIPTION=Email template to use to send email to a member on new contribution recording +DescADHERENT_EMAIL_TEMPLATE_REMIND_EXPIRATION=Email template to use to send email reminder when contribution is about to expire +DescADHERENT_EMAIL_TEMPLATE_CANCELATION=Email template to use to send email to a member on member cancelation +DescADHERENT_EMAIL_TEMPLATE_EXCLUSION=Email template to use to send email to a member on member exclusion +DescADHERENT_MAIL_FROM=Sender Email for automatic emails +DescADHERENT_ETIQUETTE_TYPE=Format of labels page +DescADHERENT_ETIQUETTE_TEXT=Text printed on member address sheets +DescADHERENT_CARD_TYPE=Format of cards page +DescADHERENT_CARD_HEADER_TEXT=Text printed on top of member cards +DescADHERENT_CARD_TEXT=Text printed on member cards (align on left) +DescADHERENT_CARD_TEXT_RIGHT=Text printed on member cards (align on right) +DescADHERENT_CARD_FOOTER_TEXT=Text printed on bottom of member cards +ShowTypeCard=Show type '%s' +HTPasswordExport=htpassword file generation +NoThirdPartyAssociatedToMember=No third party associated with this member +MembersAndSubscriptions=Members and Contributions +MoreActions=Complementary action on recording +MoreActionsOnSubscription=Complementary action suggested by default when recording a contribution, also done automatially on online payment of a contribution +MoreActionBankDirect=Create a direct entry on bank account +MoreActionBankViaInvoice=Create an invoice, and a payment on bank account +MoreActionInvoiceOnly=Create an invoice with no payment +LinkToGeneratedPages=Generation of business cards or address sheets +LinkToGeneratedPagesDesc=This screen allows you to generate PDF files with business cards for all your members or a particular member. +DocForAllMembersCards=Generate business cards for all members +DocForOneMemberCards=Generate business cards for a particular member +DocForLabels=Generate address sheets +SubscriptionPayment=Contribution payment +LastSubscriptionDate=Date of latest contribution payment +LastSubscriptionAmount=Amount of latest contribution +LastMemberType=Last Member type +MembersStatisticsByCountries=Members statistics by country +MembersStatisticsByState=Members statistics by state/province +MembersStatisticsByTown=Members statistics by town +MembersStatisticsByRegion=Members statistics by region +NbOfMembers=Total number of members +NbOfActiveMembers=Total number of current active members +NoValidatedMemberYet=No validated members found +MembersByCountryDesc=This screen shows you the statistics of members by countries. Graphs and charts depend on the availability of the Google online graph service as well as on the availability of a working internet connection. +MembersByStateDesc=This screen show you statistics of members by state/provinces/canton. +MembersByTownDesc=This screen show you statistics of members by town. +MembersByNature=This screen show you statistics of members by nature. +MembersByRegion=This screen show you statistics of members by region. +MembersStatisticsDesc=Choose statistics you want to read... +MenuMembersStats=Statistics +LastMemberDate=Latest membership date +LatestSubscriptionDate=Latest contribution date +MemberNature=Nature of the member +MembersNature=Nature of the members +Public=Information is public +NewMemberbyWeb=New member added. Awaiting approval +NewMemberForm=New member form +SubscriptionsStatistics=Contributions statistics +NbOfSubscriptions=Number of contributions +AmountOfSubscriptions=Amount collected from contributions +TurnoverOrBudget=Turnover (for a company) or Budget (for a foundation) +DefaultAmount=Default amount of contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s +MEMBER_NEWFORM_PAYONLINE=Jump on integrated online payment page +ByProperties=By nature +MembersStatisticsByProperties=Members statistics by nature +VATToUseForSubscriptions=VAT rate to use for contributionss +NoVatOnSubscription=No VAT for contributions +ADHERENT_PRODUCT_ID_FOR_SUBSCRIPTIONS=Product used for contribution line into invoice: %s +NameOrCompany=Name or company +SubscriptionRecorded=Contribution recorded +NoEmailSentToMember=No email sent to member +EmailSentToMember=Email sent to member at %s +SendReminderForExpiredSubscriptionTitle=Send reminder by email for expired contributions +SendReminderForExpiredSubscription=Send reminder by email to members when contribution is about to expire (parameter is number of days before end of membership to send the remind. It can be a list of days separated by a semicolon, for example '10;5;0;-5') +MembershipPaid=Membership paid for current period (until %s) +YouMayFindYourInvoiceInThisEmail=You may find your invoice attached to this email +XMembersClosed=%s member(s) closed +XExternalUserCreated=%s external user(s) created +ForceMemberNature=Force member nature (Individual or Corporation) +CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. +CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/ms_MY/modulebuilder.lang b/htdocs/langs/ms_MY/modulebuilder.lang new file mode 100644 index 00000000000..044360eb51d --- /dev/null +++ b/htdocs/langs/ms_MY/modulebuilder.lang @@ -0,0 +1,158 @@ +# Dolibarr language file - Source file is en_US - loan +IdModule= Module id +ModuleBuilderDesc=This tool must be used only by experienced users or developers. It provides utilities to build or edit your own module. Documentation for alternative manual development is here. +EnterNameOfModuleDesc=Enter the name of the module/application to create with no spaces. Use uppercase to separate words (For example: MyModule, EcommerceForShop, SyncWithMySystem...) +EnterNameOfObjectDesc=Enter the name of the object to create with no spaces. Use uppercase to separate words (For example: MyObject, Student, Teacher...). The CRUD class file, but also API file, pages to list/add/edit/delete object and SQL files will be generated. +EnterNameOfDictionaryDesc=Enter the name of the dictionary to create with no spaces. Use uppercase to separate words (For example: MyDico...). The class file, but also the SQL file will be generated. +ModuleBuilderDesc2=Path where modules are generated/edited (first directory for external modules defined into %s): %s +ModuleBuilderDesc3=Generated/editable modules found: %s +ModuleBuilderDesc4=A module is detected as 'editable' when the file %s exists in root of module directory +NewModule=New module +NewObjectInModulebuilder=New object +NewDictionary=New dictionary +ModuleName=Module name +ModuleKey=Module key +ObjectKey=Object key +DicKey=Dictionary key +ModuleInitialized=Module initialized +FilesForObjectInitialized=Files for new object '%s' initialized +FilesForObjectUpdated=Files for object '%s' updated (.sql files and .class.php file) +ModuleBuilderDescdescription=Enter here all general information that describe your module. +ModuleBuilderDescspecifications=You can enter here a detailed description of the specifications of your module that is not already structured into other tabs. So you have within easy reach all the rules to develop. Also this text content will be included into the generated documentation (see last tab). You can use Markdown format, but it is recommended to use Asciidoc format (comparison between .md and .asciidoc: http://asciidoctor.org/docs/user-manual/#compared-to-markdown). +ModuleBuilderDescobjects=Define here the objects you want to manage with your module. A CRUD DAO class, SQL files, page to list record of objects, to create/edit/view a record and an API will be generated. +ModuleBuilderDescmenus=This tab is dedicated to define menu entries provided by your module. +ModuleBuilderDescpermissions=This tab is dedicated to define the new permissions you want to provide with your module. +ModuleBuilderDesctriggers=This is the view of triggers provided by your module. To include code executed when a triggered business event is launched, just edit this file. +ModuleBuilderDeschooks=This tab is dedicated to hooks. +ModuleBuilderDescwidgets=This tab is dedicated to manage/build widgets. +ModuleBuilderDescbuildpackage=You can generate here a "ready to distribute" package file (a normalized .zip file) of your module and a "ready to distribute" documentation file. Just click on button to build the package or documentation file. +EnterNameOfModuleToDeleteDesc=You can delete your module. WARNING: All coding files of module (generated or created manually) AND structured data and documentation will be deleted! +EnterNameOfObjectToDeleteDesc=You can delete an object. WARNING: All coding files (generated or created manually) related to object will be deleted! +DangerZone=Danger zone +BuildPackage=Build package +BuildPackageDesc=You can generate a zip package of your application so your are ready to distribute it on any Dolibarr. You can also distribute it or sell it on marketplace like DoliStore.com. +BuildDocumentation=Build documentation +ModuleIsNotActive=This module is not activated yet. Go to %s to make it live or click here +ModuleIsLive=This module has been activated. Any change may break a current live feature. +DescriptionLong=Long description +EditorName=Name of editor +EditorUrl=URL of editor +DescriptorFile=Descriptor file of module +ClassFile=File for PHP DAO CRUD class +ApiClassFile=File for PHP API class +PageForList=PHP page for list of record +PageForCreateEditView=PHP page to create/edit/view a record +PageForAgendaTab=PHP page for event tab +PageForDocumentTab=PHP page for document tab +PageForNoteTab=PHP page for note tab +PageForContactTab=PHP page for contact tab +PathToModulePackage=Path to zip of module/application package +PathToModuleDocumentation=Path to file of module/application documentation (%s) +SpaceOrSpecialCharAreNotAllowed=Spaces or special characters are not allowed. +FileNotYetGenerated=File not yet generated +RegenerateClassAndSql=Force update of .class and .sql files +RegenerateMissingFiles=Generate missing files +SpecificationFile=File of documentation +LanguageFile=File for language +ObjectProperties=Object Properties +ConfirmDeleteProperty=Are you sure you want to delete the property %s? This will change code in PHP class but also remove column from table definition of object. +NotNull=Not NULL +NotNullDesc=1=Set database to NOT NULL, 0=Allow null values, -1=Allow null values by forcing value to NULL if empty ('' or 0) +SearchAll=Used for 'search all' +DatabaseIndex=Database index +FileAlreadyExists=File %s already exists +TriggersFile=File for triggers code +HooksFile=File for hooks code +ArrayOfKeyValues=Array of key-val +ArrayOfKeyValuesDesc=Array of keys and values if field is a combo list with fixed values +WidgetFile=Widget file +CSSFile=CSS file +JSFile=Javascript file +ReadmeFile=Readme file +ChangeLog=ChangeLog file +TestClassFile=File for PHP Unit Test class +SqlFile=Sql file +PageForLib=File for the common PHP library +PageForObjLib=File for the PHP library dedicated to object +SqlFileExtraFields=Sql file for complementary attributes +SqlFileKey=Sql file for keys +SqlFileKeyExtraFields=Sql file for keys of complementary attributes +AnObjectAlreadyExistWithThisNameAndDiffCase=An object already exists with this name and a different case +UseAsciiDocFormat=You can use Markdown format, but it is recommended to use Asciidoc format (omparison between .md and .asciidoc: http://asciidoctor.org/docs/user-manual/#compared-to-markdown) +IsAMeasure=Is a measure +DirScanned=Directory scanned +NoTrigger=No trigger +NoWidget=No widget +GoToApiExplorer=API explorer +ListOfMenusEntries=List of menu entries +ListOfDictionariesEntries=List of dictionaries entries +ListOfPermissionsDefined=List of defined permissions +SeeExamples=See examples here +EnabledDesc=Condition to have this field active (Examples: 1 or $conf->global->MYMODULE_MYOPTION) +VisibleDesc=Is the field visible ? (Examples: 0=Never visible, 1=Visible on list and create/update/view forms, 2=Visible on list only, 3=Visible on create/update/view form only (not list), 4=Visible on list and update/view form only (not create), 5=Visible on list end view form only (not create, not update).

Using a negative value means field is not shown by default on list but can be selected for viewing).

It can be an expression, for example:
preg_match('/public/', $_SERVER['PHP_SELF'])?0:1
($user->rights->holiday->define_holiday ? 1 : 0) +DisplayOnPdfDesc=Display this field on compatible PDF documents, you can manage position with "Position" field.
Currently, known compatibles PDF models are : eratosthene (order), espadon (ship), sponge (invoices), cyan (propal/quotation), cornas (supplier order)

For document :
0 = not displayed
1 = display
2 = display only if not empty

For document lines :
0 = not displayed
1 = displayed in a column
3 = display in line description column after the description
4 = display in description column after the description only if not empty +DisplayOnPdf=Display on PDF +IsAMeasureDesc=Can the value of field be cumulated to get a total into list? (Examples: 1 or 0) +SearchAllDesc=Is the field used to make a search from the quick search tool? (Examples: 1 or 0) +SpecDefDesc=Enter here all documentation you want to provide with your module that is not already defined by other tabs. You can use .md or better, the rich .asciidoc syntax. +LanguageDefDesc=Enter in this files, all the key and the translation for each language file. +MenusDefDesc=Define here the menus provided by your module +DictionariesDefDesc=Define here the dictionaries provided by your module +PermissionsDefDesc=Define here the new permissions provided by your module +MenusDefDescTooltip=The menus provided by your module/application are defined into the array $this->menus into the module descriptor file. You can edit manually this file or use the embedded editor.

Note: Once defined (and the module re-activated), the menus are also visible into the menu editor available to administrator users on %s. +DictionariesDefDescTooltip=The dictionaries provided by your module/application are defined into the array $this->dictionaries into the module descriptor file. You can edit manually this file or use the embedded editor.

Note: Once defined (and module re-activated), dictionaries are also visible into the setup area to administrator users on %s. +PermissionsDefDescTooltip=The permissions provided by your module/application are defined into the array $this->rights into the module descriptor file. You can edit manually this file or use the embedded editor.

Note: Once defined (and module re-activated), permissions are visible into the default permissions setup %s. +HooksDefDesc=Define in the module_parts['hooks'] property, in the module descriptor, the context of hooks you want to manage (list of contexts can be found by a search on 'initHooks(' in core code).
Edit the hook file to add code of your hooked functions (hookable functions can be found by a search on 'executeHooks' in core code). +TriggerDefDesc=Define in the trigger file the code that you want to execute when a business event external to your module is executed (events triggered by other modules). +SeeIDsInUse=See IDs in use in your installation +SeeReservedIDsRangeHere=See range of reserved IDs +ToolkitForDevelopers=Toolkit for Dolibarr developers +TryToUseTheModuleBuilder=If you have knowledge of SQL and PHP, you may use the native module builder wizard.
Enable the module %s and use the wizard by clicking the on the top right menu.
Warning: This is an advanced developer feature, do not experiment on your production site! +SeeTopRightMenu=See on the top right menu +AddLanguageFile=Add language file +YouCanUseTranslationKey=You can use here a key that is the translation key found into language file (see tab "Languages") +DropTableIfEmpty=(Destroy table if empty) +TableDoesNotExists=The table %s does not exists +TableDropped=Table %s deleted +InitStructureFromExistingTable=Build the structure array string of an existing table +UseAboutPage=Do not generate the About page +UseDocFolder=Disable the documentation folder +UseSpecificReadme=Use a specific ReadMe +ContentOfREADMECustomized=Note: The content of the README.md file has been replaced with the specific value defined into setup of ModuleBuilder. +RealPathOfModule=Real path of module +ContentCantBeEmpty=Content of file can't be empty +WidgetDesc=You can generate and edit here the widgets that will be embedded with your module. +CSSDesc=You can generate and edit here a file with personalized CSS embedded with your module. +JSDesc=You can generate and edit here a file with personalized Javascript embedded with your module. +CLIDesc=You can generate here some command line scripts you want to provide with your module. +CLIFile=CLI File +NoCLIFile=No CLI files +UseSpecificEditorName = Use a specific editor name +UseSpecificEditorURL = Use a specific editor URL +UseSpecificFamily = Use a specific family +UseSpecificAuthor = Use a specific author +UseSpecificVersion = Use a specific initial version +IncludeRefGeneration=The reference of object must be generated automatically by custom numbering rules +IncludeRefGenerationHelp=Check this if you want to include code to manage the generation of the reference automatically using custom numbering rules +IncludeDocGeneration=I want to generate some documents from templates for the object +IncludeDocGenerationHelp=If you check this, some code will be generated to add a "Generate document" box on the record. +ShowOnCombobox=Show value into combobox +KeyForTooltip=Key for tooltip +CSSClass=CSS for edit/create form +CSSViewClass=CSS for read form +CSSListClass=CSS for list +NotEditable=Not editable +ForeignKey=Foreign key +TypeOfFieldsHelp=Type of fields:
varchar(99), double(24,8), real, text, html, datetime, timestamp, integer, integer:ClassName:relativepath/to/classfile.class.php[:1[:filter]]
'1' means we add a + button after the combo to create the record
'filter' is a sql condition, example: 'status=1 AND fk_user=__USER_ID__ AND entity IN (__SHARED_ENTITIES__)' +AsciiToHtmlConverter=Ascii to HTML converter +AsciiToPdfConverter=Ascii to PDF converter +TableNotEmptyDropCanceled=Table not empty. Drop has been canceled. +ModuleBuilderNotAllowed=The module builder is available but not allowed to your user. +ImportExportProfiles=Import and export profiles +ValidateModBuilderDesc=Set this to 1 if you want to have the method $this->validateField() of object being called to validate the content of the field during insert or upadate. Set 0 if there is no validation required. +WarningDatabaseIsNotUpdated=Warning: The database is not updated automatically, you must destroy tables and disable-enable the module to have tables recreated +LinkToParentMenu=Parent menu (fk_xxxxmenu) +ListOfTabsEntries=List of tab entries +TabsDefDesc=Define here the tabs provided by your module +TabsDefDescTooltip=The tabs provided by your module/application are defined into the array $this->tabs into the module descriptor file. You can edit manually this file or use the embedded editor. +BadValueForType=Bad value for type %s diff --git a/htdocs/langs/ms_MY/mrp.lang b/htdocs/langs/ms_MY/mrp.lang new file mode 100644 index 00000000000..7f29b774b29 --- /dev/null +++ b/htdocs/langs/ms_MY/mrp.lang @@ -0,0 +1,114 @@ +Mrp=Manufacturing Orders +MOs=Manufacturing orders +ManufacturingOrder=Manufacturing Order +MRPDescription=Module to manage production and Manufacturing Orders (MO). +MRPArea=MRP Area +MrpSetupPage=Setup of module MRP +MenuBOM=Bills of material +LatestBOMModified=Latest %s Bills of materials modified +LatestMOModified=Latest %s Manufacturing Orders modified +Bom=Bills of Material +BillOfMaterials=Bill of Materials +BillOfMaterialsLines=Bill of Materials lines +BOMsSetup=Setup of module BOM +ListOfBOMs=List of bills of material - BOM +ListOfManufacturingOrders=List of Manufacturing Orders +NewBOM=New bill of materials +ProductBOMHelp=Product to create (or disassemble) with this BOM.
Note: Products with the property 'Nature of product' = 'Raw material' are not visible into this list. +BOMsNumberingModules=BOM numbering templates +BOMsModelModule=BOM document templates +MOsNumberingModules=MO numbering templates +MOsModelModule=MO document templates +FreeLegalTextOnBOMs=Free text on document of BOM +WatermarkOnDraftBOMs=Watermark on draft BOM +FreeLegalTextOnMOs=Free text on document of MO +WatermarkOnDraftMOs=Watermark on draft MO +ConfirmCloneBillOfMaterials=Are you sure you want to clone the bill of materials %s ? +ConfirmCloneMo=Are you sure you want to clone the Manufacturing Order %s ? +ManufacturingEfficiency=Manufacturing efficiency +ConsumptionEfficiency=Consumption efficiency +ValueOfMeansLoss=Value of 0.95 means an average of 5%% of loss during the manufacturing or the disassembly +ValueOfMeansLossForProductProduced=Value of 0.95 means an average of 5%% of loss of produced product +DeleteBillOfMaterials=Delete Bill Of Materials +DeleteMo=Delete Manufacturing Order +ConfirmDeleteBillOfMaterials=Are you sure you want to delete this Bill Of Materials? +ConfirmDeleteMo=Are you sure you want to delete this Manufacturing Order? +MenuMRP=Manufacturing Orders +NewMO=New Manufacturing Order +QtyToProduce=Qty to produce +DateStartPlannedMo=Date start planned +DateEndPlannedMo=Date end planned +KeepEmptyForAsap=Empty means 'As Soon As Possible' +EstimatedDuration=Estimated duration +EstimatedDurationDesc=Estimated duration to manufacture (or disassemble) this product using this BOM +ConfirmValidateBom=Are you sure you want to validate the BOM with the reference %s (you will be able to use it to build new Manufacturing Orders) +ConfirmCloseBom=Are you sure you want to cancel this BOM (you won't be able to use it to build new Manufacturing Orders anymore) ? +ConfirmReopenBom=Are you sure you want to re-open this BOM (you will be able to use it to build new Manufacturing Orders) +StatusMOProduced=Produced +QtyFrozen=Frozen Qty +QuantityFrozen=Frozen Quantity +QuantityConsumedInvariable=When this flag is set, the quantity consumed is always the value defined and is not relative to the quantity produced. +DisableStockChange=Stock change disabled +DisableStockChangeHelp=When this flag is set, there is no stock change on this product, whatever is the quantity consumed +BomAndBomLines=Bills Of Material and lines +BOMLine=Line of BOM +WarehouseForProduction=Warehouse for production +CreateMO=Create MO +ToConsume=To consume +ToProduce=To produce +ToObtain=To obtain +QtyAlreadyConsumed=Qty already consumed +QtyAlreadyProduced=Qty already produced +QtyRequiredIfNoLoss=Qty required if there is no loss (Manufacturing efficiency is 100%%) +ConsumeOrProduce=Consume or Produce +ConsumeAndProduceAll=Consume and Produce All +Manufactured=Manufactured +TheProductXIsAlreadyTheProductToProduce=The product to add is already the product to produce. +ForAQuantityOf=For a quantity to produce of %s +ForAQuantityToConsumeOf=For a quantity to disassemble of %s +ConfirmValidateMo=Are you sure you want to validate this Manufacturing Order? +ConfirmProductionDesc=By clicking on '%s', you will validate the consumption and/or production for the quantities set. This will also update the stock and record stock movements. +ProductionForRef=Production of %s +CancelProductionForRef=Cancellation of product stock decrementation for product %s +TooltipDeleteAndRevertStockMovement=Delete line and revert stock movement +AutoCloseMO=Close automatically the Manufacturing Order if quantities to consume and to produce are reached +NoStockChangeOnServices=No stock change on services +ProductQtyToConsumeByMO=Product quantity still to consume by open MO +ProductQtyToProduceByMO=Product quantity still to produce by open MO +AddNewConsumeLines=Add new line to consume +AddNewProduceLines=Add new line to produce +ProductsToConsume=Products to consume +ProductsToProduce=Products to produce +UnitCost=Unit cost +TotalCost=Total cost +BOMTotalCost=The cost to produce this BOM based on cost of each quantity and product to consume (use Cost price if defined, else Average Weighted Price if defined, else the Best purchase price) +GoOnTabProductionToProduceFirst=You must first have started the production to close a Manufacturing Order (See tab '%s'). But you can Cancel it. +ErrorAVirtualProductCantBeUsedIntoABomOrMo=A kit can't be used into a BOM or a MO +Workstation=Workstation +Workstations=Workstations +WorkstationsDescription=Workstations management +WorkstationSetup = Workstations setup +WorkstationSetupPage = Workstations setup page +WorkstationList=Workstation list +WorkstationCreate=Add new workstation +ConfirmEnableWorkstation=Are you sure you want to enable workstation %s ? +EnableAWorkstation=Enable a workstation +ConfirmDisableWorkstation=Are you sure you want to disable workstation %s ? +DisableAWorkstation=Disable a workstation +DeleteWorkstation=Delete +NbOperatorsRequired=Number of operators required +THMOperatorEstimated=Estimated operator THM +THMMachineEstimated=Estimated machine THM +WorkstationType=Workstation type +Human=Human +Machine=Machine +HumanMachine=Human / Machine +WorkstationArea=Workstation area +Machines=Machines +THMEstimatedHelp=This rate makes it possible to define a forecast cost of the item +BOM=Bill Of Materials +CollapseBOMHelp=You can define the default display of the details of the nomenclature in the configuration of the BOM module +MOAndLines=Manufacturing Orders and lines +MoChildGenerate=Generate Child Mo +ParentMo=MO Parent +MOChild=MO Child diff --git a/htdocs/langs/ms_MY/multicurrency.lang b/htdocs/langs/ms_MY/multicurrency.lang new file mode 100644 index 00000000000..26313c6bfb9 --- /dev/null +++ b/htdocs/langs/ms_MY/multicurrency.lang @@ -0,0 +1,38 @@ +# Dolibarr language file - Source file is en_US - multicurrency +MultiCurrency=Multi currency +ErrorAddRateFail=Error in added rate +ErrorAddCurrencyFail=Error in added currency +ErrorDeleteCurrencyFail=Error delete fail +multicurrency_syncronize_error=Synchronization error: %s +MULTICURRENCY_USE_RATE_ON_DOCUMENT_DATE=Use the date of the document to find the currency rate, instead of using the latest known rate +multicurrency_useOriginTx=When an object is created from another, keep the original rate from the source object (otherwise use the latest known rate) +CurrencyLayerAccount=CurrencyLayer API +CurrencyLayerAccount_help_to_synchronize=You must create an account on website %s to use this functionality.
Get your API key.
If you use a free account, you can't change the source currency (USD by default).
If your main currency is not USD, the application will automatically recalculate it.

You are limited to 1000 synchronizations per month. +multicurrency_appId=API key +multicurrency_appCurrencySource=Source currency +multicurrency_alternateCurrencySource=Alternate source currency +CurrenciesUsed=Currencies used +CurrenciesUsed_help_to_add=Add the different currencies and rates you need to use on your proposals, orders etc. +rate=rate +MulticurrencyReceived=Received, original currency +MulticurrencyRemainderToTake=Remaining amount, original currency +MulticurrencyPaymentAmount=Payment amount, original currency +AmountToOthercurrency=Amount To (in currency of receiving account) +CurrencyRateSyncSucceed=Currency rate synchronization done successfuly +MULTICURRENCY_USE_CURRENCY_ON_DOCUMENT=Use the currency of the document for online payments +TabTitleMulticurrencyRate=Rate list +ListCurrencyRate=List of exchange rates for the currency +CreateRate=Create a rate +FormCreateRate=Rate creation +FormUpdateRate=Rate modification +successRateCreate=Rate for currency %s has been added to the database +ConfirmDeleteLineRate=Are you sure you want to remove the %s rate for currency %s on %s date? +DeleteLineRate=Clear rate +successRateDelete=Rate deleted +errorRateDelete=Error when deleting the rate +successUpdateRate=Modification made +ErrorUpdateRate=Error when changing the rate +Codemulticurrency=currency code +UpdateRate=change the rate +CancelUpdate=cancel +NoEmptyRate=The rate field must not be empty diff --git a/htdocs/langs/ms_MY/oauth.lang b/htdocs/langs/ms_MY/oauth.lang new file mode 100644 index 00000000000..e3af5592a0e --- /dev/null +++ b/htdocs/langs/ms_MY/oauth.lang @@ -0,0 +1,36 @@ +# Dolibarr language file - Source file is en_US - oauth +ConfigOAuth=OAuth Configuration +OAuthServices=OAuth Services +ManualTokenGeneration=Manual token generation +TokenManager=Token Manager +IsTokenGenerated=Is token generated ? +NoAccessToken=No access token saved into local database +HasAccessToken=A token was generated and saved into local database +NewTokenStored=Token received and saved +ToCheckDeleteTokenOnProvider=Click here to check/delete authorization saved by %s OAuth provider +TokenDeleted=Token deleted +RequestAccess=Click here to request/renew access and receive a new token +DeleteAccess=Click here to delete token +UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credentials with your OAuth provider: +ListOfSupportedOauthProviders=Add your OAuth2 token providers. Then, go on your OAuth provider admin page to create/get an OAuth ID and Secret and save them here. Once done, switch on the other tab to generate your token. +OAuthSetupForLogin=Page to manage (generate/delete) OAuth tokens +SeePreviousTab=See previous tab +OAuthProvider=OAuth provider +OAuthIDSecret=OAuth ID and Secret +TOKEN_REFRESH=Token Refresh Present +TOKEN_EXPIRED=Token expired +TOKEN_EXPIRE_AT=Token expire at +TOKEN_DELETE=Delete saved token +OAUTH_GOOGLE_NAME=OAuth Google service +OAUTH_GOOGLE_ID=OAuth Google Id +OAUTH_GOOGLE_SECRET=OAuth Google Secret +OAUTH_GITHUB_NAME=OAuth GitHub service +OAUTH_GITHUB_ID=OAuth GitHub Id +OAUTH_GITHUB_SECRET=OAuth GitHub Secret +OAUTH_URL_FOR_CREDENTIAL=Go to this page to create or get your OAuth ID and Secret +OAUTH_STRIPE_TEST_NAME=OAuth Stripe Test +OAUTH_STRIPE_LIVE_NAME=OAuth Stripe Live +OAUTH_ID=OAuth ID +OAUTH_SECRET=OAuth secret +OAuthProviderAdded=OAuth provider added +AOAuthEntryForThisProviderAndLabelAlreadyHasAKey=An OAuth entry for this provider and label already exists diff --git a/htdocs/langs/ms_MY/opensurvey.lang b/htdocs/langs/ms_MY/opensurvey.lang new file mode 100644 index 00000000000..9fafacaf8bf --- /dev/null +++ b/htdocs/langs/ms_MY/opensurvey.lang @@ -0,0 +1,63 @@ +# Dolibarr language file - Source file is en_US - opensurvey +Survey=Poll +Surveys=Polls +OrganizeYourMeetingEasily=Organize your meetings and polls easily. First select the type of poll... +NewSurvey=New poll +OpenSurveyArea=Polls area +AddACommentForPoll=You can add a comment into poll... +AddComment=Add comment +CreatePoll=Create poll +PollTitle=Poll title +ToReceiveEMailForEachVote=Receive an email for each vote +TypeDate=Type date +TypeClassic=Type standard +OpenSurveyStep2=Select your dates among the free days (grey). The selected days are green. You can unselect a day previously selected by clicking again on it +RemoveAllDays=Remove all days +CopyHoursOfFirstDay=Copy hours of first day +RemoveAllHours=Remove all hours +SelectedDays=Selected days +TheBestChoice=The best choice currently is +TheBestChoices=The best choices currently are +with=with +OpenSurveyHowTo=If you agree to vote in this poll, you have to give your name, choose the values that fit best for you and validate with the plus button at the end of the line. +CommentsOfVoters=Comments of voters +ConfirmRemovalOfPoll=Are you sure you want to remove this poll (and all votes) +RemovePoll=Remove poll +UrlForSurvey=URL to communicate to get a direct access to poll +PollOnChoice=You are creating a poll to make a multi-choice for a poll. First enter all possible choices for your poll: +CreateSurveyDate=Create a date poll +CreateSurveyStandard=Create a standard poll +CheckBox=Simple checkbox +YesNoList=List (empty/yes/no) +PourContreList=List (empty/for/against) +AddNewColumn=Add new column +TitleChoice=Choice label +ExportSpreadsheet=Export result spreadsheet +ExpireDate=Limit date +NbOfSurveys=Number of polls +NbOfVoters=No. of voters +SurveyResults=Results +PollAdminDesc=You are allowed to change all vote lines of this poll with button "Edit". You can, as well, remove a column or a line with %s. You can also add a new column with %s. +5MoreChoices=5 more choices +Against=Against +YouAreInivitedToVote=You are invited to vote for this poll +VoteNameAlreadyExists=This name was already used for this poll +AddADate=Add a date +AddStartHour=Add start hour +AddEndHour=Add end hour +votes=vote(s) +NoCommentYet=No comments have been posted for this poll yet +CanComment=Voters can comment in the poll +YourVoteIsPrivate=This poll is private, nobody can see your vote. +YourVoteIsPublic=This poll is public, anybody with the link can see your vote. +CanSeeOthersVote=Voters can see other people's vote +SelectDayDesc=For each selected day, you can choose, or not, meeting hours in the following format:
- empty,
- "8h", "8H" or "8:00" to give a meeting's start hour,
- "8-11", "8h-11h", "8H-11H" or "8:00-11:00" to give a meeting's start and end hour,
- "8h15-11h15", "8H15-11H15" or "8:15-11:15" for the same thing but with minutes. +BackToCurrentMonth=Back to current month +ErrorOpenSurveyFillFirstSection=You haven't filled the first section of the poll creation +ErrorOpenSurveyOneChoice=Enter at least one choice +ErrorInsertingComment=There was an error while inserting your comment +MoreChoices=Enter more choices for the voters +SurveyExpiredInfo=The poll has been closed or voting delay has expired. +EmailSomeoneVoted=%s has filled a line.\nYou can find your poll at the link: \n%s +ShowSurvey=Show survey +UserMustBeSameThanUserUsedToVote=You must have voted and use the same user name that the one used to vote, to post a comment diff --git a/htdocs/langs/ms_MY/orders.lang b/htdocs/langs/ms_MY/orders.lang new file mode 100644 index 00000000000..aa7dd934ede --- /dev/null +++ b/htdocs/langs/ms_MY/orders.lang @@ -0,0 +1,201 @@ +# Dolibarr language file - Source file is en_US - orders +OrderExists=An order was already open linked to this proposal, so no other order was created automatically +OrdersArea=Customers orders area +SuppliersOrdersArea=Purchase orders area +OrderCard=Order card +OrderId=Order Id +Order=Order +PdfOrderTitle=Order +Orders=Orders +OrderLine=Order line +OrderDate=Order date +OrderDateShort=Order date +OrderToProcess=Order to process +NewOrder=New order +NewSupplierOrderShort=New order +NewOrderSupplier=New Purchase Order +ToOrder=Make order +MakeOrder=Make order +SupplierOrder=Purchase order +SuppliersOrders=Purchase orders +SaleOrderLines=Sales order lines +PurchaseOrderLines=Puchase order lines +SuppliersOrdersRunning=Current purchase orders +CustomerOrder=Sales Order +CustomersOrders=Sales Orders +CustomersOrdersRunning=Current sales orders +CustomersOrdersAndOrdersLines=Sales orders and order details +OrdersDeliveredToBill=Sales orders delivered to bill +OrdersToBill=Sales orders delivered +OrdersInProcess=Sales orders in process +OrdersToProcess=Sales orders to process +SuppliersOrdersToProcess=Purchase orders to process +SuppliersOrdersAwaitingReception=Purchase orders awaiting reception +AwaitingReception=Awaiting reception +StatusOrderCanceledShort=Canceled +StatusOrderDraftShort=Draft +StatusOrderValidatedShort=Validated +StatusOrderSentShort=In process +StatusOrderSent=Shipment in process +StatusOrderOnProcessShort=Ordered +StatusOrderProcessedShort=Processed +StatusOrderDelivered=Delivered +StatusOrderDeliveredShort=Delivered +StatusOrderToBillShort=Delivered +StatusOrderApprovedShort=Approved +StatusOrderRefusedShort=Refused +StatusOrderToProcessShort=To process +StatusOrderReceivedPartiallyShort=Partially received +StatusOrderReceivedAllShort=Products received +StatusOrderCanceled=Canceled +StatusOrderDraft=Draft (needs to be validated) +StatusOrderValidated=Validated +StatusOrderOnProcess=Ordered - Standby reception +StatusOrderOnProcessWithValidation=Ordered - Standby reception or validation +StatusOrderProcessed=Processed +StatusOrderToBill=Delivered +StatusOrderApproved=Approved +StatusOrderRefused=Refused +StatusOrderReceivedPartially=Partially received +StatusOrderReceivedAll=All products received +ShippingExist=A shipment exists +QtyOrdered=Qty ordered +ProductQtyInDraft=Product quantity into draft orders +ProductQtyInDraftOrWaitingApproved=Product quantity into draft or approved orders, not yet ordered +MenuOrdersToBill=Orders delivered +MenuOrdersToBill2=Billable orders +ShipProduct=Ship product +CreateOrder=Create Order +RefuseOrder=Refuse order +ApproveOrder=Approve order +Approve2Order=Approve order (second level) +UserApproval=User for approval +UserApproval2=User for approval (second level) +ValidateOrder=Validate order +UnvalidateOrder=Unvalidate order +DeleteOrder=Delete order +CancelOrder=Cancel order +OrderReopened= Order %s re-open +AddOrder=Create order +AddSupplierOrderShort=Create order +AddPurchaseOrder=Create purchase order +AddToDraftOrders=Add to draft order +ShowOrder=Show order +OrdersOpened=Orders to process +NoDraftOrders=No draft orders +NoOrder=No order +NoSupplierOrder=No purchase order +LastOrders=Latest %s sales orders +LastCustomerOrders=Latest %s sales orders +LastSupplierOrders=Latest %s purchase orders +LastModifiedOrders=Latest %s modified orders +AllOrders=All orders +NbOfOrders=Number of orders +OrdersStatistics=Order's statistics +OrdersStatisticsSuppliers=Purchase order statistics +NumberOfOrdersByMonth=Number of orders by month +AmountOfOrdersByMonthHT=Amount of orders by month (excl. tax) +ListOfOrders=List of orders +CloseOrder=Close order +ConfirmCloseOrder=Are you sure you want to set this order to delivered? Once an order is delivered, it can be set to billed. +ConfirmDeleteOrder=Are you sure you want to delete this order? +ConfirmValidateOrder=Are you sure you want to validate this order under name %s? +ConfirmUnvalidateOrder=Are you sure you want to restore order %s to draft status? +ConfirmCancelOrder=Are you sure you want to cancel this order? +ConfirmMakeOrder=Are you sure you want to confirm you made this order on %s? +GenerateBill=Generate invoice +ClassifyShipped=Classify delivered +PassedInShippedStatus=classified delivered +YouCantShipThis=I can't classify this. Please check user permissions +DraftOrders=Draft orders +DraftSuppliersOrders=Draft purchase orders +OnProcessOrders=In process orders +RefOrder=Ref. order +RefCustomerOrder=Ref. order for customer +RefOrderSupplier=Ref. order for vendor +RefOrderSupplierShort=Ref. order vendor +SendOrderByMail=Send order by mail +ActionsOnOrder=Events on order +NoArticleOfTypeProduct=No article of type 'product' so no shippable article for this order +OrderMode=Order method +AuthorRequest=Request author +UserWithApproveOrderGrant=Users granted with "approve orders" permission. +PaymentOrderRef=Payment of order %s +ConfirmCloneOrder=Are you sure you want to clone this order %s? +DispatchSupplierOrder=Receiving purchase order %s +FirstApprovalAlreadyDone=First approval already done +SecondApprovalAlreadyDone=Second approval already done +SupplierOrderReceivedInDolibarr=Purchase Order %s received %s +SupplierOrderSubmitedInDolibarr=Purchase Order %s submitted +SupplierOrderClassifiedBilled=Purchase Order %s set billed +OtherOrders=Other orders +SupplierOrderValidatedAndApproved=Supplier order is validated and approved : %s +SupplierOrderValidated=Supplier order is validated : %s +##### Types de contacts ##### +TypeContact_commande_internal_SALESREPFOLL=Representative following-up sales order +TypeContact_commande_internal_SHIPPING=Representative following-up shipping +TypeContact_commande_external_BILLING=Customer invoice contact +TypeContact_commande_external_SHIPPING=Customer shipping contact +TypeContact_commande_external_CUSTOMER=Customer contact following-up order +TypeContact_order_supplier_internal_SALESREPFOLL=Representative following-up purchase order +TypeContact_order_supplier_internal_SHIPPING=Representative following-up shipping +TypeContact_order_supplier_external_BILLING=Vendor invoice contact +TypeContact_order_supplier_external_SHIPPING=Vendor shipping contact +TypeContact_order_supplier_external_CUSTOMER=Vendor contact following-up order +Error_COMMANDE_SUPPLIER_ADDON_NotDefined=Constant COMMANDE_SUPPLIER_ADDON not defined +Error_COMMANDE_ADDON_NotDefined=Constant COMMANDE_ADDON not defined +Error_OrderNotChecked=No orders to invoice selected +# Order modes (how we receive order). Not the "why" are keys stored into dict.lang +OrderByMail=Mail +OrderByFax=Fax +OrderByEMail=Email +OrderByWWW=Online +OrderByPhone=Phone +# Documents models +PDFEinsteinDescription=A complete order model (old implementation of Eratosthene template) +PDFEratostheneDescription=A complete order model +PDFEdisonDescription=A simple order model +PDFProformaDescription=A complete Proforma invoice template +CreateInvoiceForThisCustomer=Bill orders +CreateInvoiceForThisSupplier=Bill orders +CreateInvoiceForThisReceptions=Bill receptions +NoOrdersToInvoice=No orders billable +CloseProcessedOrdersAutomatically=Classify "Processed" all selected orders. +OrderCreation=Order creation +Ordered=Ordered +OrderCreated=Your orders have been created +OrderFail=An error happened during your orders creation +CreateOrders=Create orders +ToBillSeveralOrderSelectCustomer=To create an invoice for several orders, click first onto customer, then choose "%s". +OptionToSetOrderBilledNotEnabled=Option from module Workflow, to set order to 'Billed' automatically when invoice is validated, is not enabled, so you will have to set the status of orders to 'Billed' manually after the invoice has been generated. +IfValidateInvoiceIsNoOrderStayUnbilled=If invoice validation is 'No', the order will remain to status 'Unbilled' until the invoice is validated. +CloseReceivedSupplierOrdersAutomatically=Close order to status "%s" automatically if all products are received. +SetShippingMode=Set shipping mode +WithReceptionFinished=With reception finished +#### supplier orders status +StatusSupplierOrderCanceledShort=Canceled +StatusSupplierOrderDraftShort=Draft +StatusSupplierOrderValidatedShort=Validated +StatusSupplierOrderSentShort=In process +StatusSupplierOrderSent=Shipment in process +StatusSupplierOrderOnProcessShort=Ordered +StatusSupplierOrderProcessedShort=Processed +StatusSupplierOrderDelivered=Delivered +StatusSupplierOrderDeliveredShort=Delivered +StatusSupplierOrderToBillShort=Delivered +StatusSupplierOrderApprovedShort=Approved +StatusSupplierOrderRefusedShort=Refused +StatusSupplierOrderToProcessShort=To process +StatusSupplierOrderReceivedPartiallyShort=Partially received +StatusSupplierOrderReceivedAllShort=Products received +StatusSupplierOrderCanceled=Canceled +StatusSupplierOrderDraft=Draft (needs to be validated) +StatusSupplierOrderValidated=Validated +StatusSupplierOrderOnProcess=Ordered - Standby reception +StatusSupplierOrderOnProcessWithValidation=Ordered - Standby reception or validation +StatusSupplierOrderProcessed=Processed +StatusSupplierOrderToBill=Delivered +StatusSupplierOrderApproved=Approved +StatusSupplierOrderRefused=Refused +StatusSupplierOrderReceivedPartially=Partially received +StatusSupplierOrderReceivedAll=All products received diff --git a/htdocs/langs/ms_MY/other.lang b/htdocs/langs/ms_MY/other.lang new file mode 100644 index 00000000000..9c0663919b1 --- /dev/null +++ b/htdocs/langs/ms_MY/other.lang @@ -0,0 +1,327 @@ +# Dolibarr language file - Source file is en_US - other +SecurityCode=Security code +NumberingShort=N° +Tools=Tools +TMenuTools=Tools +ToolsDesc=All tools not included in other menu entries are grouped here.
All the tools can be accessed via the left menu. +Birthday=Birthday +BirthdayAlertOn=birthday alert active +BirthdayAlertOff=birthday alert inactive +TransKey=Translation of the key TransKey +MonthOfInvoice=Month (number 1-12) of invoice date +TextMonthOfInvoice=Month (text) of invoice date +PreviousMonthOfInvoice=Previous month (number 1-12) of invoice date +TextPreviousMonthOfInvoice=Previous month (text) of invoice date +NextMonthOfInvoice=Following month (number 1-12) of invoice date +TextNextMonthOfInvoice=Following month (text) of invoice date +PreviousMonth=Previous month +CurrentMonth=Current month +ZipFileGeneratedInto=Zip file generated into %s. +DocFileGeneratedInto=Doc file generated into %s. +JumpToLogin=Disconnected. Go to login page... +MessageForm=Message on online payment form +MessageOK=Message on the return page for a validated payment +MessageKO=Message on the return page for a canceled payment +ContentOfDirectoryIsNotEmpty=Content of this directory is not empty. +DeleteAlsoContentRecursively=Check to delete all content recursively +PoweredBy=Powered by +YearOfInvoice=Year of invoice date +PreviousYearOfInvoice=Previous year of invoice date +NextYearOfInvoice=Following year of invoice date +DateNextInvoiceBeforeGen=Date of next invoice (before generation) +DateNextInvoiceAfterGen=Date of next invoice (after generation) +GraphInBarsAreLimitedToNMeasures=Grapics are limited to %s measures in 'Bars' mode. The mode 'Lines' was automatically selected instead. +OnlyOneFieldForXAxisIsPossible=Only 1 field is currently possible as X-Axis. Only the first selected field has been selected. +AtLeastOneMeasureIsRequired=At least 1 field for measure is required +AtLeastOneXAxisIsRequired=At least 1 field for X-Axis is required +LatestBlogPosts=Latest Blog Posts +notiftouser=To users +notiftofixedemail=To fixed mail +notiftouserandtofixedemail=To user and fixed mail +Notify_ORDER_VALIDATE=Sales order validated +Notify_ORDER_SENTBYMAIL=Sales order sent by mail +Notify_ORDER_SUPPLIER_SENTBYMAIL=Purchase order sent by email +Notify_ORDER_SUPPLIER_VALIDATE=Purchase order recorded +Notify_ORDER_SUPPLIER_APPROVE=Purchase order approved +Notify_ORDER_SUPPLIER_REFUSE=Purchase order refused +Notify_PROPAL_VALIDATE=Customer proposal validated +Notify_PROPAL_CLOSE_SIGNED=Customer proposal closed signed +Notify_PROPAL_CLOSE_REFUSED=Customer proposal closed refused +Notify_PROPAL_SENTBYMAIL=Commercial proposal sent by mail +Notify_WITHDRAW_TRANSMIT=Transmission withdrawal +Notify_WITHDRAW_CREDIT=Credit withdrawal +Notify_WITHDRAW_EMIT=Perform withdrawal +Notify_COMPANY_CREATE=Third party created +Notify_COMPANY_SENTBYMAIL=Mails sent from third party card +Notify_BILL_VALIDATE=Customer invoice validated +Notify_BILL_UNVALIDATE=Customer invoice unvalidated +Notify_BILL_PAYED=Customer invoice paid +Notify_BILL_CANCEL=Customer invoice canceled +Notify_BILL_SENTBYMAIL=Customer invoice sent by mail +Notify_BILL_SUPPLIER_VALIDATE=Vendor invoice validated +Notify_BILL_SUPPLIER_PAYED=Vendor invoice paid +Notify_BILL_SUPPLIER_SENTBYMAIL=Vendor invoice sent by mail +Notify_BILL_SUPPLIER_CANCELED=Vendor invoice cancelled +Notify_CONTRACT_VALIDATE=Contract validated +Notify_FICHINTER_VALIDATE=Intervention validated +Notify_FICHINTER_ADD_CONTACT=Added contact to Intervention +Notify_FICHINTER_SENTBYMAIL=Intervention sent by mail +Notify_SHIPPING_VALIDATE=Shipping validated +Notify_SHIPPING_SENTBYMAIL=Shipping sent by mail +Notify_MEMBER_VALIDATE=Member validated +Notify_MEMBER_MODIFY=Member modified +Notify_MEMBER_SUBSCRIPTION=Member subscribed +Notify_MEMBER_RESILIATE=Member terminated +Notify_MEMBER_DELETE=Member deleted +Notify_PROJECT_CREATE=Project creation +Notify_TASK_CREATE=Task created +Notify_TASK_MODIFY=Task modified +Notify_TASK_DELETE=Task deleted +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 +MaxSize=Maximum size +AttachANewFile=Attach a new file/document +LinkedObject=Linked object +NbOfActiveNotifications=Number of notifications (no. of recipient emails) +PredefinedMailTest=__(Hello)__\nThis is a test mail sent to __EMAIL__.\nThe lines are separated by a carriage return.\n\n__USER_SIGNATURE__ +PredefinedMailTestHtml=__(Hello)__
This is a test mail sent to __EMAIL__ (the word test must be in bold).
The lines are separated by a carriage return.

__USER_SIGNATURE__ +PredefinedMailContentContract=__(Hello)__\n\n\n__(Sincerely)__\n\n__USER_SIGNATURE__ +PredefinedMailContentSendInvoice=__(Hello)__\n\nPlease find invoice __REF__ attached \n\n__ONLINE_PAYMENT_TEXT_AND_URL__\n\n__(Sincerely)__\n\n__USER_SIGNATURE__ +PredefinedMailContentSendInvoiceReminder=__(Hello)__\n\nWe would like to remind you that the invoice __REF__ seems to have not been paid. A copy of the invoice is attached as a reminder.\n\n__ONLINE_PAYMENT_TEXT_AND_URL__\n\n__(Sincerely)__\n\n__USER_SIGNATURE__ +PredefinedMailContentSendProposal=__(Hello)__\n\nPlease find commercial proposal __REF__ attached \n\n\n__(Sincerely)__\n\n__USER_SIGNATURE__ +PredefinedMailContentSendSupplierProposal=__(Hello)__\n\nPlease find price request __REF__ attached\n\n\n__(Sincerely)__\n\n__USER_SIGNATURE__ +PredefinedMailContentSendOrder=__(Hello)__\n\nPlease find order __REF__ attached\n\n\n__(Sincerely)__\n\n__USER_SIGNATURE__ +PredefinedMailContentSendSupplierOrder=__(Hello)__\n\nPlease find our order __REF__ attached\n\n\n__(Sincerely)__\n\n__USER_SIGNATURE__ +PredefinedMailContentSendSupplierInvoice=__(Hello)__\n\nPlease find invoice __REF__ attached\n\n\n__(Sincerely)__\n\n__USER_SIGNATURE__ +PredefinedMailContentSendShipping=__(Hello)__\n\nPlease find shipping __REF__ attached\n\n\n__(Sincerely)__\n\n__USER_SIGNATURE__ +PredefinedMailContentSendFichInter=__(Hello)__\n\nPlease find intervention __REF__ attached\n\n\n__(Sincerely)__\n\n__USER_SIGNATURE__ +PredefinedMailContentLink=You can click on the link below to make your payment if it is not already done.\n\n%s\n\n +PredefinedMailContentGeneric=__(Hello)__\n\n\n__(Sincerely)__\n\n__USER_SIGNATURE__ +PredefinedMailContentSendActionComm=Event reminder "__EVENT_LABEL__" on __EVENT_DATE__ at __EVENT_TIME__

This is an automatic message, please do not reply. +DemoDesc=Dolibarr is a compact ERP/CRM supporting several business modules. A demo showcasing all modules makes no sense as this scenario never occurs (several hundred available). So, several demo profiles are available. +ChooseYourDemoProfil=Choose the demo profile that best suits your needs... +ChooseYourDemoProfilMore=...or build your own profile
(manual module selection) +DemoFundation=Manage members of a foundation +DemoFundation2=Manage members and bank account of a foundation +DemoCompanyServiceOnly=Company or freelance selling service only +DemoCompanyShopWithCashDesk=Manage a shop with a cash box +DemoCompanyProductAndStocks=Shop selling products with Point Of Sales +DemoCompanyManufacturing=Company manufacturing products +DemoCompanyAll=Company with multiple activities (all main modules) +CreatedBy=Created by %s +ModifiedBy=Modified by %s +ValidatedBy=Validated by %s +SignedBy=Signed by %s +ClosedBy=Closed by %s +CreatedById=User id who created +ModifiedById=User id who made latest change +ValidatedById=User id who validated +CanceledById=User id who canceled +ClosedById=User id who closed +CreatedByLogin=User login who created +ModifiedByLogin=User login who made latest change +ValidatedByLogin=User login who validated +CanceledByLogin=User login who canceled +ClosedByLogin=User login who closed +FileWasRemoved=File %s was removed +DirWasRemoved=Directory %s was removed +FeatureNotYetAvailable=Feature not yet available in the current version +FeatureNotAvailableOnDevicesWithoutMouse=Feature not available on devices without mouse +FeaturesSupported=Supported features +Width=Width +Height=Height +Depth=Depth +Top=Top +Bottom=Bottom +Left=Left +Right=Right +CalculatedWeight=Calculated weight +CalculatedVolume=Calculated volume +Weight=Weight +WeightUnitton=ton +WeightUnitkg=kg +WeightUnitg=g +WeightUnitmg=mg +WeightUnitpound=pound +WeightUnitounce=ounce +Length=Length +LengthUnitm=m +LengthUnitdm=dm +LengthUnitcm=cm +LengthUnitmm=mm +Surface=Area +SurfaceUnitm2=m² +SurfaceUnitdm2=dm² +SurfaceUnitcm2=cm² +SurfaceUnitmm2=mm² +SurfaceUnitfoot2=ft² +SurfaceUnitinch2=in² +Volume=Volume +VolumeUnitm3=m³ +VolumeUnitdm3=dm³ (L) +VolumeUnitcm3=cm³ (ml) +VolumeUnitmm3=mm³ (µl) +VolumeUnitfoot3=ft³ +VolumeUnitinch3=in³ +VolumeUnitounce=ounce +VolumeUnitlitre=litre +VolumeUnitgallon=gallon +SizeUnitm=m +SizeUnitdm=dm +SizeUnitcm=cm +SizeUnitmm=mm +SizeUnitinch=inch +SizeUnitfoot=foot +SizeUnitpoint=point +BugTracker=Bug tracker +SendNewPasswordDesc=This form allows you to request a new password. It will be sent to your email address.
Change will become effective once you click on the confirmation link in the email.
Check your inbox. +BackToLoginPage=Back to login page +AuthenticationDoesNotAllowSendNewPassword=Authentication mode is %s.
In this mode, Dolibarr can't know nor change your password.
Contact your system administrator if you want to change your password. +EnableGDLibraryDesc=Install or enable GD library on your PHP installation to use this option. +ProfIdShortDesc=Prof Id %s is an information depending on third party country.
For example, for country %s, it's code %s. +DolibarrDemo=Dolibarr ERP/CRM demo +StatsByNumberOfUnits=Statistics for sum of qty of products/services +StatsByNumberOfEntities=Statistics for number of referring entities (no. of invoices, or orders...) +NumberOfProposals=Number of proposals +NumberOfCustomerOrders=Number of sales orders +NumberOfCustomerInvoices=Number of customer invoices +NumberOfSupplierProposals=Number of vendor proposals +NumberOfSupplierOrders=Number of purchase orders +NumberOfSupplierInvoices=Number of vendor invoices +NumberOfContracts=Number of contracts +NumberOfMos=Number of manufacturing orders +NumberOfUnitsProposals=Number of units on proposals +NumberOfUnitsCustomerOrders=Number of units on sales orders +NumberOfUnitsCustomerInvoices=Number of units on customer invoices +NumberOfUnitsSupplierProposals=Number of units on vendor proposals +NumberOfUnitsSupplierOrders=Number of units on purchase orders +NumberOfUnitsSupplierInvoices=Number of units on vendor invoices +NumberOfUnitsContracts=Number of units on contracts +NumberOfUnitsMos=Number of units to produce in manufacturing orders +EMailTextInterventionAddedContact=A new intervention %s has been assigned to you. +EMailTextInterventionValidated=The intervention %s has been validated. +EMailTextInvoiceValidated=Invoice %s has been validated. +EMailTextInvoicePayed=Invoice %s has been paid. +EMailTextProposalValidated=Proposal %s has been validated. +EMailTextProposalClosedSigned=Proposal %s has been closed signed. +EMailTextOrderValidated=Order %s has been validated. +EMailTextOrderApproved=Order %s has been approved. +EMailTextOrderValidatedBy=Order %s has been recorded by %s. +EMailTextOrderApprovedBy=Order %s has been approved by %s. +EMailTextOrderRefused=Order %s has been refused. +EMailTextOrderRefusedBy=Order %s has been refused by %s. +EMailTextExpeditionValidated=Shipping %s has been validated. +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 OR new height. Ratio will be kept during resizing... +NewLength=New width +NewHeight=New height +NewSizeAfterCropping=New size after cropping +DefineNewAreaToPick=Define new area on image to pick (left click on image then drag until you reach the opposite corner) +CurrentInformationOnImage=This tool was designed to help you to resize or crop an image. This is the information on the current edited image +ImageEditor=Image editor +YouReceiveMailBecauseOfNotification=You receive this message because your email has been added to list of targets to be informed of particular events into %s software of %s. +YouReceiveMailBecauseOfNotification2=This event is the following: +ThisIsListOfModules=This is a list of modules preselected by this demo profile (only most common modules are visible in this demo). Edit this to have a more personalized demo and click on "Start". +UseAdvancedPerms=Use the advanced permissions of some modules +FileFormat=File format +SelectAColor=Choose a color +AddFiles=Add Files +StartUpload=Start upload +CancelUpload=Cancel upload +FileIsTooBig=Files is too big +PleaseBePatient=Please be patient... +NewPassword=New password +ResetPassword=Reset password +RequestToResetPasswordReceived=A request to change your password has been received. +NewKeyIs=This is your new keys to login +NewKeyWillBe=Your new key to login to software will be +ClickHereToGoTo=Click here to go to %s +YouMustClickToChange=You must however first click on the following link to validate this password change +ConfirmPasswordChange=Confirm password change +ForgetIfNothing=If you didn't request this change, just forget this email. Your credentials are kept safe. +IfAmountHigherThan=If amount higher than %s +SourcesRepository=Repository for sources +Chart=Chart +PassEncoding=Password encoding +PermissionsAdd=Permissions added +PermissionsDelete=Permissions removed +YourPasswordMustHaveAtLeastXChars=Your password must have at least %s chars +PasswordNeedAtLeastXUpperCaseChars=The password need at least %s upper case chars +PasswordNeedAtLeastXDigitChars=The password need at least %s numeric chars +PasswordNeedAtLeastXSpecialChars=The password need at least %s special chars +PasswordNeedNoXConsecutiveChars=The password must not have %s consecutive similar chars +YourPasswordHasBeenReset=Your password has been reset successfully +ApplicantIpAddress=IP address of applicant +SMSSentTo=SMS sent to %s +MissingIds=Missing ids +ThirdPartyCreatedByEmailCollector=Third party created by email collector from email MSGID %s +ContactCreatedByEmailCollector=Contact/address created by email collector from email MSGID %s +ProjectCreatedByEmailCollector=Project created by email collector from email MSGID %s +TicketCreatedByEmailCollector=Ticket created by email collector from email MSGID %s +OpeningHoursFormatDesc=Use a - to separate opening and closing hours.
Use a space to enter different ranges.
Example: 8-12 14-18 +SuffixSessionName=Suffix for session name +LoginWith=Login with %s + +##### Export ##### +ExportsArea=Exports area +AvailableFormats=Available formats +LibraryUsed=Library used +LibraryVersion=Library version +ExportableDatas=Exportable data +NoExportableData=No exportable data (no modules with exportable data loaded, or missing permissions) +##### External sites ##### +WebsiteSetup=Setup of module website +WEBSITE_PAGEURL=URL of page +WEBSITE_TITLE=Title +WEBSITE_DESCRIPTION=Description +WEBSITE_IMAGE=Image +WEBSITE_IMAGEDesc=Relative path of the image media. You can keep this empty as this is rarely used (it can be used by dynamic content to show a thumbnail in a list of blog posts). Use __WEBSITE_KEY__ in the path if path depends on website name (for example: image/__WEBSITE_KEY__/stories/myimage.png). +WEBSITE_KEYWORDS=Keywords +LinesToImport=Lines to import + +MemoryUsage=Memory usage +RequestDuration=Duration of request +ProductsPerPopularity=Products/Services by popularity +PopuProp=Products/Services by popularity in Proposals +PopuCom=Products/Services by popularity in Orders +ProductStatistics=Products/Services Statistics +NbOfQtyInOrders=Qty in orders +SelectTheTypeOfObjectToAnalyze=Select an object to view its statistics... + +ConfirmBtnCommonContent = Are you sure you want to "%s" ? +ConfirmBtnCommonTitle = Confirm your action +CloseDialog = Close +Autofill = Autofill + +# externalsite +ExternalSiteSetup=Setup link to external website +ExternalSiteURL=External Site URL of HTML iframe content +ExternalSiteModuleNotComplete=Module ExternalSite was not configured properly. +ExampleMyMenuEntry=My menu entry + +# FTP +FTPClientSetup=FTP or SFTP Client module setup +NewFTPClient=New FTP/FTPS connection setup +FTPArea=FTP/FTPS Area +FTPAreaDesc=This screen shows a view of an FTP et SFTP server. +SetupOfFTPClientModuleNotComplete=The setup of the FTP or SFTP client module seems to be incomplete +FTPFeatureNotSupportedByYourPHP=Your PHP does not support FTP or SFTP functions +FailedToConnectToFTPServer=Failed to connect to server (server %s, port %s) +FailedToConnectToFTPServerWithCredentials=Failed to login to server with defined login/password +FTPFailedToRemoveFile=Failed to remove file %s. +FTPFailedToRemoveDir=Failed to remove directory %s: check permissions and that the directory is empty. +FTPPassiveMode=Passive mode +ChooseAFTPEntryIntoMenu=Choose a FTP/SFTP site from the menu... +FailedToGetFile=Failed to get files %s diff --git a/htdocs/langs/ms_MY/partnership.lang b/htdocs/langs/ms_MY/partnership.lang new file mode 100644 index 00000000000..5abf907730f --- /dev/null +++ b/htdocs/langs/ms_MY/partnership.lang @@ -0,0 +1,94 @@ +# Copyright (C) 2021 NextGestion +# +# 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 . + +# +# Generic +# +ModulePartnershipName=Partnership management +PartnershipDescription=Module Partnership management +PartnershipDescriptionLong= Module Partnership management +Partnership=Partnership +AddPartnership=Add partnership +CancelPartnershipForExpiredMembers=Partnership: Cancel partnership of members with expired subscriptions +PartnershipCheckBacklink=Partnership: Check referring backlink + +# +# Menu +# +NewPartnership=New Partnership +ListOfPartnerships=List of partnership + +# +# Admin page +# +PartnershipSetup=Partnership setup +PartnershipAbout=About Partnership +PartnershipAboutPage=Partnership about page +partnershipforthirdpartyormember=Partner status must be set on a 'thirdparty' or a 'member' +PARTNERSHIP_IS_MANAGED_FOR=Partnership managed for +PARTNERSHIP_BACKLINKS_TO_CHECK=Backlinks to check +PARTNERSHIP_NBDAYS_AFTER_MEMBER_EXPIRATION_BEFORE_CANCEL=Nb of days before cancelling status of a partnership when a subscription has expired +ReferingWebsiteCheck=Check of website referring +ReferingWebsiteCheckDesc=You can enable a feature to check that your partners has added a backlink to your website domains on their own website. +PublicFormRegistrationPartnerDesc=Dolibarr can provide you a public URL/website to allow external visitors to request to be part of the partnership program. + +# +# Object +# +DeletePartnership=Delete a partnership +PartnershipDedicatedToThisThirdParty=Partnership dedicated to this third party +PartnershipDedicatedToThisMember=Partnership dedicated to this member +DatePartnershipStart=Start date +DatePartnershipEnd=End date +ReasonDecline=Decline reason +ReasonDeclineOrCancel=Decline reason +PartnershipAlreadyExist=Partnership already exist +ManagePartnership=Manage partnership +BacklinkNotFoundOnPartnerWebsite=Backlink not found on partner website +ConfirmClosePartnershipAsk=Are you sure you want to cancel this partnership? +PartnershipType=Partnership type +PartnershipRefApproved=Partnership %s approved +KeywordToCheckInWebsite=If you want to check that a given keyword is present into the website of each partner, define this keyword here +PartnershipDraft=Draft +PartnershipAccepted=Accepted +PartnershipRefused=Refused +PartnershipCanceled=Canceled +PartnershipManagedFor=Partners are + +# +# Template Mail +# +SendingEmailOnPartnershipWillSoonBeCanceled=Partnership will soon be canceled +SendingEmailOnPartnershipRefused=Partnership refused +SendingEmailOnPartnershipAccepted=Partnership accepted +SendingEmailOnPartnershipCanceled=Partnership canceled + +YourPartnershipWillSoonBeCanceledTopic=Partnership will soon be canceled +YourPartnershipRefusedTopic=Partnership refused +YourPartnershipAcceptedTopic=Partnership accepted +YourPartnershipCanceledTopic=Partnership canceled + +YourPartnershipWillSoonBeCanceledContent=We inform you that your partnership will soon be canceled (Backlink not found) +YourPartnershipRefusedContent=We inform you that your partnership request has been refused. +YourPartnershipAcceptedContent=We inform you that your partnership request has been accepted. +YourPartnershipCanceledContent=We inform you that your partnership has been canceled. + +CountLastUrlCheckError=Number of errors for last URL check +LastCheckBacklink=Date of last URL check +ReasonDeclineOrCancel=Decline reason + +NewPartnershipRequest=New partnership request +NewPartnershipRequestDesc=This form allows you to request to be part of one of our partnership program. If you need help to fill this form, please contact by email %s. + diff --git a/htdocs/langs/ms_MY/paybox.lang b/htdocs/langs/ms_MY/paybox.lang new file mode 100644 index 00000000000..a2bfb1773e4 --- /dev/null +++ b/htdocs/langs/ms_MY/paybox.lang @@ -0,0 +1,30 @@ +# Dolibarr language file - Source file is en_US - paybox +PayBoxSetup=PayBox module setup +PayBoxDesc=This module offer pages to allow payment on Paybox by customers. This can be used for a free payment or for a payment on a particular Dolibarr object (invoice, order, ...) +FollowingUrlAreAvailableToMakePayments=Following URLs are available to offer a page to a customer to make a payment on Dolibarr objects +PaymentForm=Payment form +WelcomeOnPaymentPage=Welcome to our online payment service +ThisScreenAllowsYouToPay=This screen allow you to make an online payment to %s. +ThisIsInformationOnPayment=This is information on payment to do +ToComplete=To complete +YourEMail=Email to receive payment confirmation +Creditor=Creditor +PaymentCode=Payment code +PayBoxDoPayment=Pay with Paybox +YouWillBeRedirectedOnPayBox=You will be redirected on secured Paybox page to input you credit card information +Continue=Next +SetupPayBoxToHavePaymentCreatedAutomatically=Setup your Paybox with url %s to have payment created automatically when validated by Paybox. +YourPaymentHasBeenRecorded=This page confirms that your payment has been recorded. Thank you. +YourPaymentHasNotBeenRecorded=Your payment has NOT been recorded and the transaction has been canceled. Thank you. +AccountParameter=Account parameters +UsageParameter=Usage parameters +InformationToFindParameters=Help to find your %s account information +PAYBOX_CGI_URL_V2=Url of Paybox CGI module for payment +CSSUrlForPaymentForm=CSS style sheet url for payment form +NewPayboxPaymentReceived=New Paybox payment received +NewPayboxPaymentFailed=New Paybox payment tried but failed +PAYBOX_PAYONLINE_SENDEMAIL=Email notification after payment attempt (success or fail) +PAYBOX_PBX_SITE=Value for PBX SITE +PAYBOX_PBX_RANG=Value for PBX Rang +PAYBOX_PBX_IDENTIFIANT=Value for PBX ID +PAYBOX_HMAC_KEY=HMAC key diff --git a/htdocs/langs/ms_MY/paypal.lang b/htdocs/langs/ms_MY/paypal.lang new file mode 100644 index 00000000000..a935cd38434 --- /dev/null +++ b/htdocs/langs/ms_MY/paypal.lang @@ -0,0 +1,37 @@ +# Dolibarr language file - Source file is en_US - paypal +PaypalSetup=PayPal module setup +PaypalDesc=This module allows payment by customers via PayPal. This can be used for a ad-hoc payment or for a payment related to a Dolibarr object (invoice, order, ...) +PaypalOrCBDoPayment=Pay with PayPal (Card or PayPal) +PaypalDoPayment=Pay with PayPal +PAYPAL_API_SANDBOX=Mode test/sandbox +PAYPAL_API_USER=API username +PAYPAL_API_PASSWORD=API password +PAYPAL_API_SIGNATURE=API signature +PAYPAL_SSLVERSION=Curl SSL Version +PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Offer "integral" payment (Credit card+PayPal) or "PayPal" only +PaypalModeIntegral=Integral +PaypalModeOnlyPaypal=PayPal only +ONLINE_PAYMENT_CSS_URL=Optional URL of CSS stylesheet on online payment page +ThisIsTransactionId=This is id of transaction: %s +PAYPAL_ADD_PAYMENT_URL=Include the PayPal payment url when you send a document by email +NewOnlinePaymentReceived=New online payment received +NewOnlinePaymentFailed=New online payment tried but failed +ONLINE_PAYMENT_SENDEMAIL=Email address for notifications after each payment attempt (for success and fail) +ReturnURLAfterPayment=Return URL after payment +ValidationOfOnlinePaymentFailed=Validation of online payment failed +PaymentSystemConfirmPaymentPageWasCalledButFailed=Payment confirmation page was called by payment system returned an error +SetExpressCheckoutAPICallFailed=SetExpressCheckout API call failed. +DoExpressCheckoutPaymentAPICallFailed=DoExpressCheckoutPayment API call failed. +DetailedErrorMessage=Detailed Error Message +ShortErrorMessage=Short Error Message +ErrorCode=Error Code +ErrorSeverityCode=Error Severity Code +OnlinePaymentSystem=Online payment system +PaypalLiveEnabled=PayPal "live" mode enabled (otherwise test/sandbox mode) +PaypalImportPayment=Import PayPal payments +PostActionAfterPayment=Post actions after payments +ARollbackWasPerformedOnPostActions=A rollback was performed on all Post actions. You must complete post actions manually if they are necessary. +ValidationOfPaymentFailed=Validation of payment has failed +CardOwner=Card holder +PayPalBalance=Paypal credit +OnlineSubscriptionPaymentLine=Online subscription recorded on %s
Paid via %s
Originating IP address: %s
Transaction ID: %s diff --git a/htdocs/langs/ms_MY/printing.lang b/htdocs/langs/ms_MY/printing.lang new file mode 100644 index 00000000000..bd9094f213d --- /dev/null +++ b/htdocs/langs/ms_MY/printing.lang @@ -0,0 +1,54 @@ +# Dolibarr language file - Source file is en_US - printing +Module64000Name=One click Printing +Module64000Desc=Enable One click Printing System +PrintingSetup=Setup of One click Printing System +PrintingDesc=This module adds a Print button to various modules to allow documents to be printed directly to a printer with no need to open the document into another application. +MenuDirectPrinting=One click Printing jobs +DirectPrint=One click Print +PrintingDriverDesc=Configuration variables for printing driver. +ListDrivers=List of drivers +PrintTestDesc=List of Printers. +FileWasSentToPrinter=File %s was sent to printer +ViaModule=via the module +NoActivePrintingModuleFound=No active driver to print document. Check setup of module %s. +PleaseSelectaDriverfromList=Please select a driver from list. +PleaseConfigureDriverfromList=Please configure the selected driver from list. +SetupDriver=Driver setup +TargetedPrinter=Targeted printer +UserConf=Setup per user +PRINTGCP_INFO=Google OAuth API setup +PRINTGCP_AUTHLINK=Authentication +PRINTGCP_TOKEN_ACCESS=Google Cloud Print OAuth Token +PrintGCPDesc=This driver allows sending documents directly to a printer using Google Cloud Print. +GCP_Name=Name +GCP_displayName=Display Name +GCP_Id=Printer Id +GCP_OwnerName=Owner Name +GCP_State=Printer State +GCP_connectionStatus=Online State +GCP_Type=Printer Type +PrintIPPDesc=This driver allows sending of documents directly to a printer. It requires a Linux system with CUPS installed. +PRINTIPP_HOST=Print server +PRINTIPP_PORT=Port +PRINTIPP_USER=Login +PRINTIPP_PASSWORD=Password +NoDefaultPrinterDefined=No default printer defined +DefaultPrinter=Default printer +Printer=Printer +IPP_Uri=Printer Uri +IPP_Name=Printer Name +IPP_State=Printer State +IPP_State_reason=State reason +IPP_State_reason1=State reason1 +IPP_BW=BW +IPP_Color=Color +IPP_Device=Device +IPP_Media=Printer media +IPP_Supported=Type of media +DirectPrintingJobsDesc=This page lists printing jobs found for available printers. +GoogleAuthNotConfigured=Google OAuth has not been setup. Enable module OAuth and set a Google ID/Secret. +GoogleAuthConfigured=Google OAuth credentials were found into setup of module OAuth. +PrintingDriverDescprintgcp=Configuration variables for printing driver Google Cloud Print. +PrintingDriverDescprintipp=Configuration variables for printing driver Cups. +PrintTestDescprintgcp=List of Printers for Google Cloud Print. +PrintTestDescprintipp=List of Printers for Cups. diff --git a/htdocs/langs/ms_MY/productbatch.lang b/htdocs/langs/ms_MY/productbatch.lang new file mode 100644 index 00000000000..4bd64f44577 --- /dev/null +++ b/htdocs/langs/ms_MY/productbatch.lang @@ -0,0 +1,46 @@ +# ProductBATCH language file - Source file is en_US - ProductBATCH +ManageLotSerial=Use lot/serial number +ProductStatusOnBatch=Yes (lot required) +ProductStatusOnSerial=Yes (unique serial number required) +ProductStatusNotOnBatch=No (lot/serial not used) +ProductStatusOnBatchShort=Lot +ProductStatusOnSerialShort=Serial +ProductStatusNotOnBatchShort=No +Batch=Lot/Serial +atleast1batchfield=Eat-by date or Sell-by date or Lot/Serial number +batch_number=Lot/Serial number +BatchNumberShort=Lot/Serial +EatByDate=Eat-by date +SellByDate=Sell-by date +DetailBatchNumber=Lot/Serial details +printBatch=Lot/Serial: %s +printEatby=Eat-by: %s +printSellby=Sell-by: %s +printQty=Qty: %d +AddDispatchBatchLine=Add a line for Shelf Life dispatching +WhenProductBatchModuleOnOptionAreForced=When module Lot/Serial is on, automatic stock decrease is forced to 'Decrease real stocks on shipping validation' and automatic increase mode is forced to 'Increase real stocks on manual dispatching into warehouses' and can't be edited. Other options can be defined as you want. +ProductDoesNotUseBatchSerial=This product does not use lot/serial number +ProductLotSetup=Setup of module lot/serial +ShowCurrentStockOfLot=Show current stock for couple product/lot +ShowLogOfMovementIfLot=Show log of movements for couple product/lot +StockDetailPerBatch=Stock detail per lot +SerialNumberAlreadyInUse=Serial number %s is already used for product %s +TooManyQtyForSerialNumber=You can only have one product %s for serial number %s +ManageLotMask=Custom mask +CustomMasks=Option to define a different numbering mask for each product +BatchLotNumberingModules=Numbering rule for automatic generation of lot number +BatchSerialNumberingModules=Numbering rule for automatic generation of serial number (for products with property 1 unique lot/serial for each product) +QtyToAddAfterBarcodeScan=Qty to %s for each barcode/lot/serial scanned +LifeTime=Life span (in days) +EndOfLife=End of life +ManufacturingDate=Manufacturing date +DestructionDate=Destruction date +FirstUseDate=First use date +QCFrequency=Quality control frequency (in days) +ShowAllLots=Show all lots +HideLots=Hide lots +#Traceability - qc status +OutOfOrder=Out of order +InWorkingOrder=In working order +ToReplace=Replace +CantMoveNonExistantSerial=Error. You ask a move on a record for a serial that does not exists anymore. May be you take the same serial on same warehouse several times in same shipment or it was used by another shipment. Remove this shipment and prepare another one. diff --git a/htdocs/langs/ms_MY/products.lang b/htdocs/langs/ms_MY/products.lang new file mode 100644 index 00000000000..94d77315217 --- /dev/null +++ b/htdocs/langs/ms_MY/products.lang @@ -0,0 +1,429 @@ +# Dolibarr language file - Source file is en_US - products +ProductRef=Product ref. +ProductLabel=Product label +ProductLabelTranslated=Translated product label +ProductDescription=Product description +ProductDescriptionTranslated=Translated product description +ProductNoteTranslated=Translated product note +ProductServiceCard=Products/Services card +TMenuProducts=Products +TMenuServices=Services +Products=Products +Services=Services +Product=Product +Service=Service +ProductId=Product/service id +Create=Create +Reference=Reference +NewProduct=New product +NewService=New service +ProductVatMassChange=Global VAT Update +ProductVatMassChangeDesc=This tool updates the VAT rate defined on ALL products and services! +MassBarcodeInit=Mass barcode init +MassBarcodeInitDesc=This page can be used to initialize a barcode on objects that does not have barcode defined. Check before that setup of module barcode is complete. +ProductAccountancyBuyCode=Accounting code (purchase) +ProductAccountancyBuyIntraCode=Accounting code (purchase intra-community) +ProductAccountancyBuyExportCode=Accounting code (purchase import) +ProductAccountancySellCode=Accounting code (sale) +ProductAccountancySellIntraCode=Accounting code (sale intra-Community) +ProductAccountancySellExportCode=Accounting code (sale export) +ProductOrService=Product or Service +ProductsAndServices=Products and Services +ProductsOrServices=Products or Services +ProductsPipeServices=Products | Services +ProductsOnSale=Products for sale +ProductsOnPurchase=Products for purchase +ProductsOnSaleOnly=Products for sale only +ProductsOnPurchaseOnly=Products for purchase only +ProductsNotOnSell=Products not for sale and not for purchase +ProductsOnSellAndOnBuy=Products for sale and for purchase +ServicesOnSale=Services for sale +ServicesOnPurchase=Services for purchase +ServicesOnSaleOnly=Services for sale only +ServicesOnPurchaseOnly=Services for purchase only +ServicesNotOnSell=Services not for sale and not for purchase +ServicesOnSellAndOnBuy=Services for sale and for purchase +LastModifiedProductsAndServices=Latest %s products/services which were modified +LastRecordedProducts=Latest %s recorded products +LastRecordedServices=Latest %s recorded services +CardProduct0=Product +CardProduct1=Service +Stock=Stock +MenuStocks=Stocks +Stocks=Stocks and location (warehouse) of products +Movements=Movements +Sell=Sell +Buy=Purchase +OnSell=For sale +OnBuy=For purchase +NotOnSell=Not for sale +ProductStatusOnSell=For sale +ProductStatusNotOnSell=Not for sale +ProductStatusOnSellShort=For sale +ProductStatusNotOnSellShort=Not for sale +ProductStatusOnBuy=For purchase +ProductStatusNotOnBuy=Not for purchase +ProductStatusOnBuyShort=For purchase +ProductStatusNotOnBuyShort=Not for purchase +UpdateVAT=Update vat +UpdateDefaultPrice=Update default price +UpdateLevelPrices=Update prices for each level +AppliedPricesFrom=Applied from +SellingPrice=Selling price +SellingPriceHT=Selling price (excl. tax) +SellingPriceTTC=Selling price (inc. tax) +SellingMinPriceTTC=Minimum Selling price (inc. tax) +CostPriceDescription=This price field (excl. tax) can be used to capture the average amount this product costs to your company. It may be any price you calculate yourself, for example, from the average buying price plus average production and distribution cost. +CostPriceUsage=This value could be used for margin calculation. +ManufacturingPrice=Manufacturing price +SoldAmount=Sold amount +PurchasedAmount=Purchased amount +NewPrice=New price +MinPrice=Min. selling price +EditSellingPriceLabel=Edit selling price label +CantBeLessThanMinPrice=The selling price can't be lower than minimum allowed for this product (%s without tax). This message can also appears if you type a too important discount. +ContractStatusClosed=Closed +ErrorProductAlreadyExists=A product with reference %s already exists. +ErrorProductBadRefOrLabel=Wrong value for reference or label. +ErrorProductClone=There was a problem while trying to clone the product or service. +ErrorPriceCantBeLowerThanMinPrice=Error, price can't be lower than minimum price. +Suppliers=Vendors +SupplierRef=Vendor SKU +ShowProduct=Show product +ShowService=Show service +ProductsAndServicesArea=Product and Services area +ProductsArea=Product area +ServicesArea=Services area +ListOfStockMovements=List of stock movements +BuyingPrice=Buying price +PriceForEachProduct=Products with specific prices +SupplierCard=Vendor card +PriceRemoved=Price removed +BarCode=Barcode +BarcodeType=Barcode type +SetDefaultBarcodeType=Set barcode type +BarcodeValue=Barcode value +NoteNotVisibleOnBill=Note (not visible on invoices, proposals...) +ServiceLimitedDuration=If product is a service with limited duration: +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 several products) +VariantsAbility=Enable Variants (variations of products, for example color, size) +AssociatedProducts=Kits +AssociatedProductsNumber=Number of products composing this kit +ParentProductsNumber=Number of parent packaging product +ParentProducts=Parent products +IfZeroItIsNotAVirtualProduct=If 0, this product is not a kit +IfZeroItIsNotUsedByVirtualProduct=If 0, this product is not used by any kit +KeywordFilter=Keyword filter +CategoryFilter=Category filter +ProductToAddSearch=Search product to add +NoMatchFound=No match found +ListOfProductsServices=List of products/services +ProductAssociationList=List of products/services that are component(s) of this kit +ProductParentList=List of kits with this product as a component +ErrorAssociationIsFatherOfThis=One of selected product is parent with current product +DeleteProduct=Delete a product/service +ConfirmDeleteProduct=Are you sure you want to delete this product/service? +ProductDeleted=Product/Service "%s" deleted from database. +ExportDataset_produit_1=Products +ExportDataset_service_1=Services +ImportDataset_produit_1=Products +ImportDataset_service_1=Services +DeleteProductLine=Delete product line +ConfirmDeleteProductLine=Are you sure you want to delete this product line? +ProductSpecial=Special +QtyMin=Min. purchase quantity +PriceQtyMin=Price quantity min. +PriceQtyMinCurrency=Price (currency) for this qty. +WithoutDiscount=Without discount +VATRateForSupplierProduct=VAT Rate (for this vendor/product) +DiscountQtyMin=Discount for this qty. +NoPriceDefinedForThisSupplier=No price/qty defined for this vendor/product +NoSupplierPriceDefinedForThisProduct=No vendor price/qty defined for this product +PredefinedItem=Predefined item +PredefinedProductsToSell=Predefined Product +PredefinedServicesToSell=Predefined Service +PredefinedProductsAndServicesToSell=Predefined products/services to sell +PredefinedProductsToPurchase=Predefined product to purchase +PredefinedServicesToPurchase=Predefined services to purchase +PredefinedProductsAndServicesToPurchase=Predefined products/services to purchase +NotPredefinedProducts=Not predefined products/services +GenerateThumb=Generate thumb +ServiceNb=Service #%s +ListProductServiceByPopularity=List of products/services by popularity +ListProductByPopularity=List of products by popularity +ListServiceByPopularity=List of services by popularity +Finished=Manufactured product +RowMaterial=Raw Material +ConfirmCloneProduct=Are you sure you want to clone product or service %s? +CloneContentProduct=Clone all main information of the product/service +ClonePricesProduct=Clone prices +CloneCategoriesProduct=Clone linked tags/categories +CloneCompositionProduct=Clone virtual products/services +CloneCombinationsProduct=Clone the product variants +ProductIsUsed=This product is used +NewRefForClone=Ref. of new product/service +SellingPrices=Selling prices +BuyingPrices=Buying prices +CustomerPrices=Customer prices +SuppliersPrices=Vendor prices +SuppliersPricesOfProductsOrServices=Vendor prices (of products or services) +CustomCode=Customs|Commodity|HS code +CountryOrigin=Country of origin +RegionStateOrigin=Region of origin +StateOrigin=State|Province of origin +Nature=Nature of product (raw/manufactured) +NatureOfProductShort=Nature of product +NatureOfProductDesc=Raw material or manufactured product +ShortLabel=Short label +Unit=Unit +p=u. +set=set +se=set +second=second +s=s +hour=hour +h=h +day=day +d=d +kilogram=kilogram +kg=Kg +gram=gram +g=g +meter=meter +m=m +lm=lm +m2=m² +m3=m³ +liter=liter +l=L +unitP=Piece +unitSET=Set +unitS=Second +unitH=Hour +unitD=Day +unitG=Gram +unitM=Meter +unitLM=Linear meter +unitM2=Square meter +unitM3=Cubic meter +unitL=Liter +unitT=ton +unitKG=kg +unitG=Gram +unitMG=mg +unitLB=pound +unitOZ=ounce +unitM=Meter +unitDM=dm +unitCM=cm +unitMM=mm +unitFT=ft +unitIN=in +unitM2=Square meter +unitDM2=dm² +unitCM2=cm² +unitMM2=mm² +unitFT2=ft² +unitIN2=in² +unitM3=Cubic meter +unitDM3=dm³ +unitCM3=cm³ +unitMM3=mm³ +unitFT3=ft³ +unitIN3=in³ +unitOZ3=ounce +unitgallon=gallon +ProductCodeModel=Product ref template +ServiceCodeModel=Service ref template +CurrentProductPrice=Current price +AlwaysUseNewPrice=Always use current price of product/service +AlwaysUseFixedPrice=Use the fixed price +PriceByQuantity=Different prices by quantity +DisablePriceByQty=Disable prices by quantity +PriceByQuantityRange=Quantity range +MultipriceRules=Automatic prices for segment +UseMultipriceRules=Use price segment rules (defined into product module setup) to auto calculate prices of all other segments according to first segment +PercentVariationOver=%% variation over %s +PercentDiscountOver=%% discount over %s +KeepEmptyForAutoCalculation=Keep empty to have this calculated automatically from weight or volume of products +VariantRefExample=Examples: COL, SIZE +VariantLabelExample=Examples: Color, Size +### composition fabrication +Build=Produce +ProductsMultiPrice=Products and prices for each price segment +ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices) +ProductSellByQuarterHT=Products turnover quarterly before tax +ServiceSellByQuarterHT=Services turnover quarterly before tax +Quarter1=1st. Quarter +Quarter2=2nd. Quarter +Quarter3=3rd. Quarter +Quarter4=4th. Quarter +BarCodePrintsheet=Print barcodes +PageToGenerateBarCodeSheets=With this tool, you can print sheets of barcode stickers. Choose format of your sticker page, type of barcode and value of barcode, then click on button %s. +NumberOfStickers=Number of stickers to print on page +PrintsheetForOneBarCode=Print several stickers for one barcode +BuildPageToPrint=Generate page to print +FillBarCodeTypeAndValueManually=Fill barcode type and value manually. +FillBarCodeTypeAndValueFromProduct=Fill barcode type and value from barcode of a product. +FillBarCodeTypeAndValueFromThirdParty=Fill barcode type and value from barcode of a third party. +DefinitionOfBarCodeForProductNotComplete=Definition of type or value of barcode not complete for product %s. +DefinitionOfBarCodeForThirdpartyNotComplete=Definition of type or value of barcode non complete for third party %s. +BarCodeDataForProduct=Barcode information of product %s: +BarCodeDataForThirdparty=Barcode information of third party %s: +ResetBarcodeForAllRecords=Define barcode value for all record (this will also reset barcode value already defined with new values) +PriceByCustomer=Different prices for each customer +PriceCatalogue=A single sell price per product/service +PricingRule=Rules for selling prices +AddCustomerPrice=Add price by customer +ForceUpdateChildPriceSoc=Set same price on customer's subsidiaries +PriceByCustomerLog=Log of previous customer prices +MinimumPriceLimit=Minimum price can't be lower then %s +MinimumRecommendedPrice=Minimum recommended price is: %s +PriceExpressionEditor=Price expression editor +PriceExpressionSelected=Selected price expression +PriceExpressionEditorHelp1="price = 2 + 2" or "2 + 2" for setting the price. Use ; to separate expressions +PriceExpressionEditorHelp2=You can access ExtraFields with variables like #extrafield_myextrafieldkey# and global variables with #global_mycode# +PriceExpressionEditorHelp3=In both product/service and vendor prices there are these variables available:
#tva_tx# #localtax1_tx# #localtax2_tx# #weight# #length# #surface# #price_min# +PriceExpressionEditorHelp4=In product/service price only: #supplier_min_price#
In vendor prices only: #supplier_quantity# and #supplier_tva_tx# +PriceExpressionEditorHelp5=Available global values: +PriceMode=Price mode +PriceNumeric=Number +DefaultPrice=Default price +DefaultPriceLog=Log of previous default prices +ComposedProductIncDecStock=Increase/Decrease stock on parent change +ComposedProduct=Child products +MinSupplierPrice=Minimum buying price +MinCustomerPrice=Minimum selling price +NoDynamicPrice=No dynamic price +DynamicPriceConfiguration=Dynamic price configuration +DynamicPriceDesc=You may define mathematical formulae to calculate Customer or Vendor prices. Such formulas can use all mathematical operators, some constants and variables. You can define here the variables you wish to use. If the variable needs an automatic update, you may define the external URL to allow Dolibarr to update the value automatically. +AddVariable=Add Variable +AddUpdater=Add Updater +GlobalVariables=Global variables +VariableToUpdate=Variable to update +GlobalVariableUpdaters=External updaters for variables +GlobalVariableUpdaterType0=JSON data +GlobalVariableUpdaterHelp0=Parses JSON data from specified URL, VALUE specifies the location of relevant value, +GlobalVariableUpdaterHelpFormat0=Format for request {"URL": "http://example.com/urlofjson", "VALUE": "array1,array2,targetvalue"} +GlobalVariableUpdaterType1=WebService data +GlobalVariableUpdaterHelp1=Parses WebService data from specified URL, NS specifies the namespace, VALUE specifies the location of relevant value, DATA should contain the data to send and METHOD is the calling WS method +GlobalVariableUpdaterHelpFormat1=Format for request is {"URL": "http://example.com/urlofws", "VALUE": "array,targetvalue", "NS": "http://example.com/urlofns", "METHOD": "myWSMethod", "DATA": {"your": "data", "to": "send"}} +UpdateInterval=Update interval (minutes) +LastUpdated=Latest update +CorrectlyUpdated=Correctly updated +PropalMergePdfProductActualFile=Files use to add into PDF Azur are/is +PropalMergePdfProductChooseFile=Select PDF files +IncludingProductWithTag=Including products/services with the tag +DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer +WarningSelectOneDocument=Please select at least one document +DefaultUnitToShow=Unit +NbOfQtyInProposals=Qty in proposals +ClinkOnALinkOfColumn=Click on a link of column %s to get a detailed view... +ProductsOrServicesTranslations=Products/Services translations +TranslatedLabel=Translated label +TranslatedDescription=Translated description +TranslatedNote=Translated notes +ProductWeight=Weight for 1 product +ProductVolume=Volume for 1 product +WeightUnits=Weight unit +VolumeUnits=Volume unit +WidthUnits=Width unit +LengthUnits=Length unit +HeightUnits=Height unit +SurfaceUnits=Surface unit +SizeUnits=Size unit +DeleteProductBuyPrice=Delete buying price +ConfirmDeleteProductBuyPrice=Are you sure you want to delete this buying price? +SubProduct=Sub product +ProductSheet=Product sheet +ServiceSheet=Service sheet +PossibleValues=Possible values +GoOnMenuToCreateVairants=Go on menu %s - %s to prepare attribute variants (like colors, size, ...) +UseProductFournDesc=Add a feature to define the product description defined by the vendors (for each vendor reference) in addition to the description for customers +ProductSupplierDescription=Vendor description for the product +UseProductSupplierPackaging=Use packaging on supplier prices (recalculate quantities according to packaging set on supplier price when adding/updating line in supplier documents) +PackagingForThisProduct=Packaging +PackagingForThisProductDesc=You will automaticaly purchase a multiple of this quantity. +QtyRecalculatedWithPackaging=The quantity of the line were recalculated according to supplier packaging + +#Attributes +VariantAttributes=Variant attributes +ProductAttributes=Variant attributes for products +ProductAttributeName=Variant attribute %s +ProductAttribute=Variant attribute +ProductAttributeDeleteDialog=Are you sure you want to delete this attribute? All values will be deleted +ProductAttributeValueDeleteDialog=Are you sure you want to delete the value "%s" with reference "%s" of this attribute? +ProductCombinationDeleteDialog=Are you sure want to delete the variant of the product "%s"? +ProductCombinationAlreadyUsed=There was an error while deleting the variant. Please check it is not being used in any object +ProductCombinations=Variants +PropagateVariant=Propagate variants +HideProductCombinations=Hide products variant in the products selector +ProductCombination=Variant +NewProductCombination=New variant +EditProductCombination=Editing variant +NewProductCombinations=New variants +EditProductCombinations=Editing variants +SelectCombination=Select combination +ProductCombinationGenerator=Variants generator +Features=Features +PriceImpact=Price impact +ImpactOnPriceLevel=Impact on price level %s +ApplyToAllPriceImpactLevel= Apply to all levels +ApplyToAllPriceImpactLevelHelp=By clicking here you set the same price impact on all levels +WeightImpact=Weight impact +NewProductAttribute=New attribute +NewProductAttributeValue=New attribute value +ErrorCreatingProductAttributeValue=There was an error while creating the attribute value. It could be because there is already an existing value with that reference +ProductCombinationGeneratorWarning=If you continue, before generating new variants, all previous ones will be DELETED. Already existing ones will be updated with the new values +TooMuchCombinationsWarning=Generating lots of variants may result in high CPU, memory usage and Dolibarr not able to create them. Enabling the option "%s" may help reduce memory usage. +DoNotRemovePreviousCombinations=Do not remove previous variants +UsePercentageVariations=Use percentage variations +PercentageVariation=Percentage variation +ErrorDeletingGeneratedProducts=There was an error while trying to delete existing product variants +NbOfDifferentValues=No. of different values +NbProducts=Number of products +ParentProduct=Parent product +HideChildProducts=Hide variant products +ShowChildProducts=Show variant products +NoEditVariants=Go to Parent product card and edit variants price impact in the variants tab +ConfirmCloneProductCombinations=Would you like to copy all the product variants to the other parent product with the given reference? +CloneDestinationReference=Destination product reference +ErrorCopyProductCombinations=There was an error while copying the product variants +ErrorDestinationProductNotFound=Destination product not found +ErrorProductCombinationNotFound=Product variant not found +ActionAvailableOnVariantProductOnly=Action only available on the variant of product +ProductsPricePerCustomer=Product prices per customers +ProductSupplierExtraFields=Additional Attributes (Supplier Prices) +DeleteLinkedProduct=Delete the child product linked to the combination +AmountUsedToUpdateWAP=Amount to use to update the Weighted Average Price +PMPValue=Weighted average price +PMPValueShort=WAP +mandatoryperiod=Mandatory periods +mandatoryPeriodNeedTobeSet=Note: Period (start and end date) must be defined +mandatoryPeriodNeedTobeSetMsgValidate=A service requires a start and end period +mandatoryHelper=Check this if you want a message to the user when creating / validating an invoice, commercial proposal, sales order without entering a start and end date on lines with this service.
Note that the message is a warning and not a blocking error. +DefaultBOM=Default BOM +DefaultBOMDesc=The default BOM recommended to use to manufacture this product. This field can be set only if nature of product is '%s'. +Rank=Rank +MergeOriginProduct=Duplicate product (product you want to delete) +MergeProducts=Merge products +ConfirmMergeProducts=Are you sure you want to merge the chosen product with the current one? All linked objects (invoices, orders, ...) will be moved to the current product, after which the chosen product will be deleted. +ProductsMergeSuccess=Products have been merged +ErrorsProductsMerge=Errors in products merge +SwitchOnSaleStatus=Switch on sale status +SwitchOnPurchaseStatus=Switch on purchase status +StockMouvementExtraFields= Extra Fields (stock mouvement) +InventoryExtraFields= Extra Fields (inventory) +ScanOrTypeOrCopyPasteYourBarCodes=Scan or type or copy/paste your barcodes +PuttingPricesUpToDate=Update prices with current known prices +PMPExpected=Expected PMP +ExpectedValuation=Expected Valuation +PMPReal=Real PMP +RealValuation=Real Valuation +ConfirmEditExtrafield = Select the extrafield you want modify +ConfirmEditExtrafieldQuestion = Are you sure you want to modify this extrafield? +ModifyValueExtrafields = Modify value of an extrafield diff --git a/htdocs/langs/ms_MY/projects.lang b/htdocs/langs/ms_MY/projects.lang new file mode 100644 index 00000000000..8cf5e79f071 --- /dev/null +++ b/htdocs/langs/ms_MY/projects.lang @@ -0,0 +1,297 @@ +# Dolibarr language file - Source file is en_US - projects +RefProject=Ref. project +ProjectRef=Project ref. +ProjectId=Project Id +ProjectLabel=Project label +ProjectsArea=Projects Area +ProjectStatus=Project status +SharedProject=Everybody +PrivateProject=Assigned contacts +ProjectsImContactFor=Projects for which I am explicitly a contact +AllAllowedProjects=All project I can read (mine + public) +AllProjects=All projects +MyProjectsDesc=This view is limited to the projects that you are a contact for +ProjectsPublicDesc=This view presents all projects you are allowed to read. +TasksOnProjectsPublicDesc=This view presents all tasks on projects you are allowed to read. +ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed to read. +ProjectsDesc=This view presents all projects (your user permissions grant you permission to view everything). +TasksOnProjectsDesc=This view presents all tasks on all projects (your user permissions grant you permission to view everything). +MyTasksDesc=This view is limited to the projects or tasks that you are a contact for +OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible). +ClosedProjectsAreHidden=Closed projects are not visible. +TasksPublicDesc=This view presents all projects and tasks you are allowed to read. +TasksDesc=This view presents all projects and tasks (your user permissions grant you permission to view everything). +AllTaskVisibleButEditIfYouAreAssigned=All tasks for qualified projects are visible, but you can enter time only for task assigned to selected user. Assign task if you need to enter time on it. +OnlyYourTaskAreVisible=Only tasks assigned to you are visible. If you need to enter time on a task and if the task is not visible here, then you need to assign the task to yourself. +ImportDatasetTasks=Tasks of projects +ProjectCategories=Project tags/categories +NewProject=New project +AddProject=Create project +DeleteAProject=Delete a project +DeleteATask=Delete a task +ConfirmDeleteAProject=Are you sure you want to delete this project? +ConfirmDeleteATask=Are you sure you want to delete this task? +OpenedProjects=Open projects +OpenedTasks=Open tasks +OpportunitiesStatusForOpenedProjects=Leads amount of open projects by status +OpportunitiesStatusForProjects=Leads amount of projects by status +ShowProject=Show project +ShowTask=Show task +SetProject=Set project +NoProject=No project defined or owned +NbOfProjects=Number of projects +NbOfTasks=Number of tasks +TimeSpent=Time spent +TimeSpentByYou=Time spent by you +TimeSpentByUser=Time spent by user +TimesSpent=Time spent +TaskId=Task ID +RefTask=Task ref. +LabelTask=Task label +TaskTimeSpent=Time spent on tasks +TaskTimeUser=User +TaskTimeNote=Note +TaskTimeDate=Date +TasksOnOpenedProject=Tasks on open projects +WorkloadNotDefined=Workload not defined +NewTimeSpent=Time spent +MyTimeSpent=My time spent +BillTime=Bill the time spent +BillTimeShort=Bill time +TimeToBill=Time not billed +TimeBilled=Time billed +Tasks=Tasks +Task=Task +TaskDateStart=Task start date +TaskDateEnd=Task end date +TaskDescription=Task description +NewTask=New task +AddTask=Create task +AddTimeSpent=Create time spent +AddHereTimeSpentForDay=Add here time spent for this day/task +AddHereTimeSpentForWeek=Add here time spent for this week/task +Activity=Activity +Activities=Tasks/activities +MyActivities=My tasks/activities +MyProjects=My projects +MyProjectsArea=My projects Area +DurationEffective=Effective duration +ProgressDeclared=Declared real progress +TaskProgressSummary=Task progress +CurentlyOpenedTasks=Curently open tasks +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 +ListWarehouseAssociatedProject=List of warehouses associated to the project +ListProposalsAssociatedProject=List of the commercial proposals related to the project +ListOrdersAssociatedProject=List of sales orders related to the project +ListInvoicesAssociatedProject=List of customer invoices related to the project +ListPredefinedInvoicesAssociatedProject=List of customer template invoices related to the project +ListSupplierOrdersAssociatedProject=List of purchase orders related to the project +ListSupplierInvoicesAssociatedProject=List of vendor invoices related to the project +ListContractAssociatedProject=List of contracts related to the project +ListShippingAssociatedProject=List of shippings related to the project +ListFichinterAssociatedProject=List of interventions related to the project +ListExpenseReportsAssociatedProject=List of expense reports related to the project +ListDonationsAssociatedProject=List of donations related to the project +ListVariousPaymentsAssociatedProject=List of miscellaneous payments related to the project +ListSalariesAssociatedProject=List of payments of salaries related to the project +ListActionsAssociatedProject=List of events related to the project +ListMOAssociatedProject=List of manufacturing orders related to the project +ListTaskTimeUserProject=List of time consumed on tasks of project +ListTaskTimeForTask=List of time consumed on task +ActivityOnProjectToday=Activity on project today +ActivityOnProjectYesterday=Activity on project yesterday +ActivityOnProjectThisWeek=Activity on project this week +ActivityOnProjectThisMonth=Activity on project this month +ActivityOnProjectThisYear=Activity on project this year +ChildOfProjectTask=Child of project/task +ChildOfTask=Child of task +TaskHasChild=Task has child +NotOwnerOfProject=Not owner of this private project +AffectedTo=Allocated to +CantRemoveProject=This project can't be removed as it is referenced by some other objects (invoice, orders or other). See tab '%s'. +ValidateProject=Validate projet +ConfirmValidateProject=Are you sure you want to validate this project? +CloseAProject=Close project +ConfirmCloseAProject=Are you sure you want to close this project? +AlsoCloseAProject=Also close project (keep it open if you still need to follow production tasks on it) +ReOpenAProject=Open project +ConfirmReOpenAProject=Are you sure you want to re-open this project? +ProjectContact=Contacts of project +TaskContact=Task contacts +ActionsOnProject=Events on project +YouAreNotContactOfProject=You are not a contact of this private project +UserIsNotContactOfProject=User is not a contact of this private project +DeleteATimeSpent=Delete time spent +ConfirmDeleteATimeSpent=Are you sure you want to delete this time spent? +DoNotShowMyTasksOnly=See also tasks not assigned to me +ShowMyTasksOnly=View only tasks assigned to me +TaskRessourceLinks=Contacts of task +ProjectsDedicatedToThisThirdParty=Projects dedicated to this third party +NoTasks=No tasks for this project +LinkedToAnotherCompany=Linked to other third party +TaskIsNotAssignedToUser=Task not assigned to user. Use button '%s' to assign task now. +ErrorTimeSpentIsEmpty=Time spent is empty +TimeRecordingRestrictedToNMonthsBack=Time recording is restricted to %s months back +ThisWillAlsoRemoveTasks=This action will also delete all tasks of project (%s tasks at the moment) and all inputs of time spent. +IfNeedToUseOtherObjectKeepEmpty=If some objects (invoice, order, ...), belonging to another third party, must be linked to the project to create, keep this empty to have the project being multi third parties. +CloneTasks=Clone tasks +CloneContacts=Clone contacts +CloneNotes=Clone notes +CloneProjectFiles=Clone project joined files +CloneTaskFiles=Clone task(s) joined files (if task(s) cloned) +CloneMoveDate=Update project/tasks dates from now? +ConfirmCloneProject=Are you sure to clone this project? +ProjectReportDate=Change task dates according to new project start date +ErrorShiftTaskDate=Impossible to shift task date according to new project start date +ProjectsAndTasksLines=Projects and tasks +ProjectCreatedInDolibarr=Project %s created +ProjectValidatedInDolibarr=Project %s validated +ProjectModifiedInDolibarr=Project %s modified +TaskCreatedInDolibarr=Task %s created +TaskModifiedInDolibarr=Task %s modified +TaskDeletedInDolibarr=Task %s deleted +OpportunityStatus=Lead status +OpportunityStatusShort=Lead status +OpportunityProbability=Lead probability +OpportunityProbabilityShort=Lead probab. +OpportunityAmount=Lead amount +OpportunityAmountShort=Lead amount +OpportunityWeightedAmount=Opportunity weighted amount +OpportunityWeightedAmountShort=Opp. weighted amount +OpportunityAmountAverageShort=Average lead amount +OpportunityAmountWeigthedShort=Weighted lead amount +WonLostExcluded=Won/Lost excluded +##### Types de contacts ##### +TypeContact_project_internal_PROJECTLEADER=Project leader +TypeContact_project_external_PROJECTLEADER=Project leader +TypeContact_project_internal_PROJECTCONTRIBUTOR=Contributor +TypeContact_project_external_PROJECTCONTRIBUTOR=Contributor +TypeContact_project_task_internal_TASKEXECUTIVE=Task executive +TypeContact_project_task_external_TASKEXECUTIVE=Task executive +TypeContact_project_task_internal_TASKCONTRIBUTOR=Contributor +TypeContact_project_task_external_TASKCONTRIBUTOR=Contributor +SelectElement=Select element +AddElement=Link to element +LinkToElementShort=Link to +# Documents models +DocumentModelBeluga=Project document template for linked objects overview +DocumentModelBaleine=Project document template for tasks +DocumentModelTimeSpent=Project report template for time spent +PlannedWorkload=Planned workload +PlannedWorkloadShort=Workload +ProjectReferers=Related items +ProjectMustBeValidatedFirst=Project must be validated first +MustBeValidatedToBeSigned=%s must be validated first to be set to Signed. +FirstAddRessourceToAllocateTime=Assign a user resource as contact of project to allocate time +InputPerDay=Input per day +InputPerWeek=Input per week +InputPerMonth=Input per month +InputDetail=Input detail +TimeAlreadyRecorded=This is time spent already recorded for this task/day and user %s +ProjectsWithThisUserAsContact=Projects with this user as contact +ProjectsWithThisContact=Projects with this contact +TasksWithThisUserAsContact=Tasks assigned to this user +ResourceNotAssignedToProject=Not assigned to project +ResourceNotAssignedToTheTask=Not assigned to the task +NoUserAssignedToTheProject=No users assigned to this project +TimeSpentBy=Time spent by +TasksAssignedTo=Tasks assigned to +AssignTaskToMe=Assign task to myself +AssignTaskToUser=Assign task to %s +SelectTaskToAssign=Select task to assign... +AssignTask=Assign +ProjectOverview=Overview +ManageTasks=Use projects to follow tasks and/or report time spent (timesheets) +ManageOpportunitiesStatus=Use projects to follow leads/opportinuties +ProjectNbProjectByMonth=No. of created projects by month +ProjectNbTaskByMonth=No. of created tasks by month +ProjectOppAmountOfProjectsByMonth=Amount of leads by month +ProjectWeightedOppAmountOfProjectsByMonth=Weighted amount of leads by month +ProjectOpenedProjectByOppStatus=Open project|lead by lead status +ProjectsStatistics=Statistics on projects or leads +TasksStatistics=Statistics on tasks of projects or leads +TaskAssignedToEnterTime=Task assigned. Entering time on this task should be possible. +IdTaskTime=Id task time +YouCanCompleteRef=If you want to complete the ref with some suffix, it is recommanded to add a - character to separate it, so the automatic numbering will still work correctly for next projects. For example %s-MYSUFFIX +OpenedProjectsByThirdparties=Open projects by third parties +OnlyOpportunitiesShort=Only leads +OpenedOpportunitiesShort=Open leads +NotOpenedOpportunitiesShort=Not an open lead +NotAnOpportunityShort=Not a lead +OpportunityTotalAmount=Total amount of leads +OpportunityPonderatedAmount=Weighted amount of leads +OpportunityPonderatedAmountDesc=Leads amount weighted with probability +OppStatusPROSP=Prospection +OppStatusQUAL=Qualification +OppStatusPROPO=Proposal +OppStatusNEGO=Negociation +OppStatusPENDING=Pending +OppStatusWON=Won +OppStatusLOST=Lost +Budget=Budget +AllowToLinkFromOtherCompany=Allow to link project from other company

Supported values:
- Keep empty: Can link any project of the company (default)
- "all": Can link any projects, even projects of other companies
- A list of third-party ids separated by commas: can link all projects of these third partys (Example: 123,4795,53)
+LatestProjects=Latest %s projects +LatestModifiedProjects=Latest %s modified projects +OtherFilteredTasks=Other filtered tasks +NoAssignedTasks=No assigned tasks found (assign project/tasks to the current user from the top select box to enter time on it) +ThirdPartyRequiredToGenerateInvoice=A third party must be defined on project to be able to invoice it. +ThirdPartyRequiredToGenerateInvoice=A third party must be defined on project to be able to invoice it. +ChooseANotYetAssignedTask=Choose a task not yet assigned to you +# Comments trans +AllowCommentOnTask=Allow user comments on tasks +AllowCommentOnProject=Allow user comments on projects +DontHavePermissionForCloseProject=You do not have permissions to close the project %s +DontHaveTheValidateStatus=The project %s must be open to be closed +RecordsClosed=%s project(s) closed +SendProjectRef=Information project %s +ModuleSalaryToDefineHourlyRateMustBeEnabled=Module 'Salaries' must be enabled to define employee hourly rate to have time spent valorized +NewTaskRefSuggested=Task ref already used, a new task ref is required +TimeSpentInvoiced=Time spent billed +TimeSpentForIntervention=Time spent +TimeSpentForInvoice=Time spent +OneLinePerUser=One line per user +ServiceToUseOnLines=Service to use on lines by default +InvoiceGeneratedFromTimeSpent=Invoice %s has been generated from time spent on project +InterventionGeneratedFromTimeSpent=Intervention %s has been generated from time spent on project +ProjectBillTimeDescription=Check if you enter timesheet on tasks of project AND you plan to generate invoice(s) from the timesheet to bill the customer of the project (do not check if you plan to create invoice that is not based on entered timesheets). Note: To generate invoice, go on tab 'Time spent' of the project and select lines to include. +ProjectFollowOpportunity=Follow opportunity +ProjectFollowTasks=Follow tasks or time spent +Usage=Usage +UsageOpportunity=Usage: Opportunity +UsageTasks=Usage: Tasks +UsageBillTimeShort=Usage: Bill time +InvoiceToUse=Draft invoice to use +InterToUse=Draft intervention to use +NewInvoice=New invoice +NewInter=New intervention +OneLinePerTask=One line per task +OneLinePerPeriod=One line per period +OneLinePerTimeSpentLine=One line for each time spent declaration +AddDetailDateAndDuration=With date and duration into line description +RefTaskParent=Ref. Parent Task +ProfitIsCalculatedWith=Profit is calculated using +AddPersonToTask=Add also to tasks +UsageOrganizeEvent=Usage: Event Organization +PROJECT_CLASSIFY_CLOSED_WHEN_ALL_TASKS_DONE=Classify project as closed when all its tasks are completed (100%% progress) +PROJECT_CLASSIFY_CLOSED_WHEN_ALL_TASKS_DONE_help=Note: existing projects with all tasks at 100 %% progress won't be affected: you will have to close them manually. This option only affects open projects. +SelectLinesOfTimeSpentToInvoice=Select lines of time spent that are unbilled, then bulk action "Generate Invoice" to bill them +ProjectTasksWithoutTimeSpent=Project tasks without time spent +FormForNewLeadDesc=Thanks to fill the following form to contact us. You can also send us an email directly to %s. +ProjectsHavingThisContact=Projects having this contact +StartDateCannotBeAfterEndDate=End date cannot be before start date +ErrorPROJECTLEADERRoleMissingRestoreIt=The "PROJECTLEADER" role is missing or has been de-activited, please restore in the dictionary of contact types +LeadPublicFormDesc=You can enable here a public page to allow your prospects to make a first contact to you from a public online form +EnablePublicLeadForm=Enable the public form for contact +NewLeadbyWeb=Your message or request has been recorded. We will answer or contact your soon. +NewLeadForm=New contact form +LeadFromPublicForm=Online lead from public form +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/ms_MY/propal.lang b/htdocs/langs/ms_MY/propal.lang new file mode 100644 index 00000000000..d86268dcc44 --- /dev/null +++ b/htdocs/langs/ms_MY/propal.lang @@ -0,0 +1,113 @@ +# Dolibarr language file - Source file is en_US - propal +Proposals=Commercial proposals +Proposal=Commercial proposal +ProposalShort=Proposal +ProposalsDraft=Draft commercial proposals +ProposalsOpened=Open commercial proposals +CommercialProposal=Commercial proposal +PdfCommercialProposalTitle=Proposal +ProposalCard=Proposal card +NewProp=New commercial proposal +NewPropal=New proposal +Prospect=Prospect +DeleteProp=Delete commercial proposal +ValidateProp=Validate commercial proposal +AddProp=Create proposal +ConfirmDeleteProp=Are you sure you want to delete this commercial proposal? +ConfirmValidateProp=Are you sure you want to validate this commercial proposal under name %s? +LastPropals=Latest %s proposals +LastModifiedProposals=Latest %s modified proposals +AllPropals=All proposals +SearchAProposal=Search a proposal +NoProposal=No proposal +ProposalsStatistics=Commercial proposal's statistics +NumberOfProposalsByMonth=Number by month +AmountOfProposalsByMonthHT=Amount by month (excl. tax) +NbOfProposals=Number of commercial proposals +ShowPropal=Show proposal +PropalsDraft=Drafts +PropalsOpened=Open +PropalStatusDraft=Draft (needs to be validated) +PropalStatusValidated=Validated (proposal is open) +PropalStatusSigned=Signed (needs billing) +PropalStatusNotSigned=Not signed (closed) +PropalStatusBilled=Billed +PropalStatusDraftShort=Draft +PropalStatusValidatedShort=Validated (open) +PropalStatusClosedShort=Closed +PropalStatusSignedShort=Signed +PropalStatusNotSignedShort=Not signed +PropalStatusBilledShort=Billed +PropalsToClose=Commercial proposals to close +PropalsToBill=Signed commercial proposals to bill +ListOfProposals=List of commercial proposals +ActionsOnPropal=Events on proposal +RefProposal=Commercial proposal ref +SendPropalByMail=Send commercial proposal by mail +DatePropal=Date of proposal +DateEndPropal=Validity ending date +ValidityDuration=Validity duration +SetAcceptedRefused=Set accepted/refused +ErrorPropalNotFound=Propal %s not found +AddToDraftProposals=Add to draft proposal +NoDraftProposals=No draft proposals +CopyPropalFrom=Create commercial proposal by copying existing proposal +CreateEmptyPropal=Create empty commercial proposal or from list of products/services +DefaultProposalDurationValidity=Default commercial proposal validity duration (in days) +DefaultPuttingPricesUpToDate=By default update prices with current known prices on cloning a proposal +UseCustomerContactAsPropalRecipientIfExist=Use contact/address with type 'Contact following-up proposal' if defined instead of third party address as proposal recipient address +ConfirmClonePropal=Are you sure you want to clone the commercial proposal %s? +ConfirmReOpenProp=Are you sure you want to open back the commercial proposal %s? +ProposalsAndProposalsLines=Commercial proposal and lines +ProposalLine=Proposal line +ProposalLines=Proposal lines +AvailabilityPeriod=Availability delay +SetAvailability=Set availability delay +AfterOrder=after order +OtherProposals=Other proposals +##### Availability ##### +AvailabilityTypeAV_NOW=Immediate +AvailabilityTypeAV_1W=1 week +AvailabilityTypeAV_2W=2 weeks +AvailabilityTypeAV_3W=3 weeks +AvailabilityTypeAV_1M=1 month +##### Types de contacts ##### +TypeContact_propal_internal_SALESREPFOLL=Representative following-up proposal +TypeContact_propal_external_BILLING=Customer invoice contact +TypeContact_propal_external_CUSTOMER=Customer contact following-up proposal +TypeContact_propal_external_SHIPPING=Customer contact for delivery +# Document models +DocModelAzurDescription=A complete proposal model (old implementation of Cyan template) +DocModelCyanDescription=A complete proposal model +DefaultModelPropalCreate=Default model creation +DefaultModelPropalToBill=Default template when closing a business proposal (to be invoiced) +DefaultModelPropalClosed=Default template when closing a business proposal (unbilled) +ProposalCustomerSignature=Written acceptance, company stamp, date and signature +ProposalsStatisticsSuppliers=Vendor proposals statistics +CaseFollowedBy=Case followed by +SignedOnly=Signed only +NoSign=Set not signed +NoSigned=set not signed +CantBeNoSign=cannot be set not signed +ConfirmMassNoSignature=Bulk Not signed confirmation +ConfirmMassNoSignatureQuestion=Are you sure you want to set not signed the selected records ? +IsNotADraft=is not a draft +PassedInOpenStatus=has been validated +Sign=Sign +Signed=signed +ConfirmMassValidation=Bulk Validate confirmation +ConfirmMassSignature=Bulk Signature confirmation +ConfirmMassValidationQuestion=Are you sure you want to validate the selected records ? +ConfirmMassSignatureQuestion=Are you sure you want to sign the selected records ? +IdProposal=Proposal ID +IdProduct=Product ID +LineBuyPriceHT=Buy Price Amount net of tax for line +SignPropal=Accept proposal +RefusePropal=Refuse proposal +Sign=Sign +NoSign=Set not signed +PropalAlreadySigned=Proposal already accepted +PropalAlreadyRefused=Proposal already refused +PropalSigned=Proposal accepted +PropalRefused=Proposal refused +ConfirmRefusePropal=Are you sure you want to refuse this commercial proposal? diff --git a/htdocs/langs/ms_MY/receiptprinter.lang b/htdocs/langs/ms_MY/receiptprinter.lang new file mode 100644 index 00000000000..df844b18958 --- /dev/null +++ b/htdocs/langs/ms_MY/receiptprinter.lang @@ -0,0 +1,84 @@ +# Dolibarr language file - Source file is en_US - receiptprinter +ReceiptPrinterSetup=Setup of module ReceiptPrinter +PrinterAdded=Printer %s added +PrinterUpdated=Printer %s updated +PrinterDeleted=Printer %s deleted +TestSentToPrinter=Test Sent To Printer %s +ReceiptPrinter=Receipt printers +ReceiptPrinterDesc=Setup of receipt printers +ReceiptPrinterTemplateDesc=Setup of Templates +ReceiptPrinterTypeDesc=Example of possible values for the field "Parameters" according to the type of driver +ReceiptPrinterProfileDesc=Description of Receipt Printer's Profile +ListPrinters=List of Printers +SetupReceiptTemplate=Template Setup +CONNECTOR_DUMMY=Dummy Printer +CONNECTOR_NETWORK_PRINT=Network Printer +CONNECTOR_FILE_PRINT=Local Printer +CONNECTOR_WINDOWS_PRINT=Local Windows Printer +CONNECTOR_CUPS_PRINT=Cups Printer +CONNECTOR_DUMMY_HELP=Fake Printer for test, does nothing +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 +CONNECTOR_CUPS_PRINT_HELP=CUPS printer name, example: HPRT_TP805L +PROFILE_DEFAULT=Default Profile +PROFILE_SIMPLE=Simple Profile +PROFILE_EPOSTEP=Epos Tep Profile +PROFILE_P822D=P822D Profile +PROFILE_STAR=Star Profile +PROFILE_DEFAULT_HELP=Default Profile suitable for Epson printers +PROFILE_SIMPLE_HELP=Simple Profile No Graphics +PROFILE_EPOSTEP_HELP=Epos Tep Profile +PROFILE_P822D_HELP=P822D Profile No Graphics +PROFILE_STAR_HELP=Star Profile +DOL_LINE_FEED=Skip line +DOL_ALIGN_LEFT=Left align text +DOL_ALIGN_CENTER=Center text +DOL_ALIGN_RIGHT=Right align text +DOL_USE_FONT_A=Use font A of printer +DOL_USE_FONT_B=Use font B of printer +DOL_USE_FONT_C=Use font C of printer +DOL_PRINT_BARCODE=Print barcode +DOL_PRINT_BARCODE_CUSTOMER_ID=Print barcode customer id +DOL_CUT_PAPER_FULL=Cut ticket completely +DOL_CUT_PAPER_PARTIAL=Cut ticket partially +DOL_OPEN_DRAWER=Open cash drawer +DOL_ACTIVATE_BUZZER=Activate buzzer +DOL_PRINT_QRCODE=Print QR Code +DOL_PRINT_LOGO=Print logo of my company +DOL_PRINT_LOGO_OLD=Print logo of my company (old printers) +DOL_BOLD=Bold +DOL_BOLD_DISABLED=Disable bold +DOL_DOUBLE_HEIGHT=Double height size +DOL_DOUBLE_WIDTH=Double width size +DOL_DEFAULT_HEIGHT_WIDTH=Default height and width size +DOL_UNDERLINE=Enable underline +DOL_UNDERLINE_DISABLED=Disable underline +DOL_BEEP=Beep sound +DOL_BEEP_ALTERNATIVE=Beep sound (alternative mode) +DOL_PRINT_CURR_DATE=Print current date/time +DOL_PRINT_TEXT=Print text +DateInvoiceWithTime=Invoice date and time +YearInvoice=Invoice year +DOL_VALUE_MONTH_LETTERS=Invoice month in letters +DOL_VALUE_MONTH=Invoice month +DOL_VALUE_DAY=Invoice day +DOL_VALUE_DAY_LETTERS=Inovice day in letters +DOL_LINE_FEED_REVERSE=Line feed reverse +InvoiceID=Invoice ID +InvoiceRef=Invoice ref +DOL_PRINT_OBJECT_LINES=Invoice lines +DOL_VALUE_CUSTOMER_FIRSTNAME=Customer first name +DOL_VALUE_CUSTOMER_LASTNAME=Customer last name +DOL_VALUE_CUSTOMER_MAIL=Customer mail +DOL_VALUE_CUSTOMER_PHONE=Customer phone +DOL_VALUE_CUSTOMER_MOBILE=Customer mobile +DOL_VALUE_CUSTOMER_SKYPE=Customer Skype +DOL_VALUE_CUSTOMER_TAX_NUMBER=Customer tax number +DOL_VALUE_CUSTOMER_ACCOUNT_BALANCE=Customer account balance +DOL_VALUE_MYSOC_NAME=Your company name +VendorLastname=Vendor last name +VendorFirstname=Vendor first name +VendorEmail=Vendor email +DOL_VALUE_CUSTOMER_POINTS=Customer points +DOL_VALUE_OBJECT_POINTS=Object points diff --git a/htdocs/langs/ms_MY/receptions.lang b/htdocs/langs/ms_MY/receptions.lang new file mode 100644 index 00000000000..ece006d0bb6 --- /dev/null +++ b/htdocs/langs/ms_MY/receptions.lang @@ -0,0 +1,53 @@ +# Dolibarr language file - Source file is en_US - receptions +ReceptionDescription=Vendor reception management (Create reception documents) +ReceptionsSetup=Vendor Reception setup +RefReception=Ref. reception +Reception=Reception +Receptions=Receptions +AllReceptions=All Receptions +Reception=Reception +Receptions=Receptions +ShowReception=Show Receptions +ReceptionsArea=Receptions area +ListOfReceptions=List of receptions +ReceptionMethod=Reception method +LastReceptions=Latest %s receptions +StatisticsOfReceptions=Statistics for receptions +NbOfReceptions=Number of receptions +NumberOfReceptionsByMonth=Number of receptions by month +ReceptionCard=Reception card +NewReception=New reception +CreateReception=Create reception +QtyInOtherReceptions=Qty in other receptions +OtherReceptionsForSameOrder=Other receptions for this order +ReceptionsAndReceivingForSameOrder=Receptions and receipts for this order +ReceptionsToValidate=Receptions to validate +StatusReceptionCanceled=Canceled +StatusReceptionDraft=Draft +StatusReceptionValidated=Validated (products to receive or already received) +StatusReceptionValidatedToReceive=Validated (products to receive) +StatusReceptionValidatedReceived=Validated (products received) +StatusReceptionProcessed=Processed +StatusReceptionDraftShort=Draft +StatusReceptionValidatedShort=Validated +StatusReceptionProcessedShort=Processed +ReceptionSheet=Reception sheet +ConfirmDeleteReception=Are you sure you want to delete this reception? +ConfirmValidateReception=Are you sure you want to validate this reception with reference %s? +ConfirmCancelReception=Are you sure you want to cancel this reception? +StatsOnReceptionsOnlyValidated=Statistics conducted on receptions only validated. Date used is date of validation of reception (planed delivery date is not always known). +SendReceptionByEMail=Send reception by email +SendReceptionRef=Submission of reception %s +ActionsOnReception=Events on reception +ReceptionCreationIsDoneFromOrder=For the moment, creation of a new reception is done from the Purchase Order. +ReceptionLine=Reception line +ProductQtyInReceptionAlreadySent=Product quantity from open sales order already sent +ProductQtyInSuppliersReceptionAlreadyRecevied=Product quantity from open supplier order already received +ValidateOrderFirstBeforeReception=You must first validate the order before being able to make receptions. +ReceptionsNumberingModules=Numbering module for receptions +ReceptionsReceiptModel=Document templates for receptions +NoMorePredefinedProductToDispatch=No more predefined products to dispatch +ReceptionExist=A reception exists +ReceptionBackToDraftInDolibarr=Reception %s back to draft +ReceptionClassifyClosedInDolibarr=Reception %s classified Closed +ReceptionUnClassifyCloseddInDolibarr=Reception %s re-open diff --git a/htdocs/langs/ms_MY/recruitment.lang b/htdocs/langs/ms_MY/recruitment.lang new file mode 100644 index 00000000000..888f6fe5225 --- /dev/null +++ b/htdocs/langs/ms_MY/recruitment.lang @@ -0,0 +1,78 @@ +# Copyright (C) 2020 Laurent Destailleur +# +# 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 . + +# +# Generic +# + +# Module label 'ModuleRecruitmentName' +ModuleRecruitmentName = Recruitment +# Module description 'ModuleRecruitmentDesc' +ModuleRecruitmentDesc = Manage and follow recruitment campaigns for new job positions + +# +# Admin page +# +RecruitmentSetup = Recruitment setup +Settings = Settings +RecruitmentSetupPage = Enter here the setup of main options for the recruitment module +RecruitmentArea=Recruitement area +PublicInterfaceRecruitmentDesc=Public pages of jobs are public URLs to show and answer to open jobs. There is one different link for each open job, found on each job record. +EnablePublicRecruitmentPages=Enable public pages of open jobs + +# +# About page +# +About = About +RecruitmentAbout = About Recruitment +RecruitmentAboutPage = Recruitment about page +NbOfEmployeesExpected=Expected nb of employees +JobLabel=Label of job position +WorkPlace=Work place +DateExpected=Expected date +FutureManager=Future manager +ResponsibleOfRecruitement=Responsible of recruitment +IfJobIsLocatedAtAPartner=If job is located at a partner place +PositionToBeFilled=Job position +PositionsToBeFilled=Job positions +ListOfPositionsToBeFilled=List of job positions +NewPositionToBeFilled=New job positions + +JobOfferToBeFilled=Job position to be filled +ThisIsInformationOnJobPosition=Information of the job position to be filled +ContactForRecruitment=Contact for recruitment +EmailRecruiter=Email recruiter +ToUseAGenericEmail=To use a generic email. If not defined, the email of the responsible of recruitment will be used +NewCandidature=New application +ListOfCandidatures=List of applications +RequestedRemuneration=Requested remuneration +ProposedRemuneration=Proposed remuneration +ContractProposed=Contract proposed +ContractSigned=Contract signed +ContractRefused=Contract refused +RecruitmentCandidature=Application +JobPositions=Job positions +RecruitmentCandidatures=Applications +InterviewToDo=Interview to do +AnswerCandidature=Application answer +YourCandidature=Your application +YourCandidatureAnswerMessage=Thanks you for your application.
... +JobClosedTextCandidateFound=The job position is closed. The position has been filled. +JobClosedTextCanceled=The job position is closed. +ExtrafieldsJobPosition=Complementary attributes (job positions) +ExtrafieldsApplication=Complementary attributes (job applications) +MakeOffer=Make an offer +WeAreRecruiting=We are recruiting. This is a list of open positions to be filled... +NoPositionOpen=No positions open at the moment diff --git a/htdocs/langs/ms_MY/resource.lang b/htdocs/langs/ms_MY/resource.lang new file mode 100644 index 00000000000..e8574dc680f --- /dev/null +++ b/htdocs/langs/ms_MY/resource.lang @@ -0,0 +1,39 @@ +# Dolibarr language file - Source file is en_US - resource +MenuResourceIndex=Resources +MenuResourceAdd=New resource +DeleteResource=Delete resource +ConfirmDeleteResourceElement=Confirm delete the resource for this element +NoResourceInDatabase=No resource in database. +NoResourceLinked=No resource linked +ActionsOnResource=Events about this resource +ResourcePageIndex=Resources list +ResourceSingular=Resource +ResourceCard=Resource card +AddResource=Create a resource +ResourceFormLabel_ref=Resource name +ResourceType=Resource type +ResourceFormLabel_description=Resource description + +ResourcesLinkedToElement=Resources linked to element + +ShowResource=Show resource + +ResourceElementPage=Element resources +ResourceCreatedWithSuccess=Resource successfully created +RessourceLineSuccessfullyDeleted=Resource line successfully deleted +RessourceLineSuccessfullyUpdated=Resource line successfully updated +ResourceLinkedWithSuccess=Resource linked with success + +ConfirmDeleteResource=Confirm to delete this resource +RessourceSuccessfullyDeleted=Resource successfully deleted +DictionaryResourceType=Type of resources + +SelectResource=Select resource + +IdResource=Id resource +AssetNumber=Serial number +ResourceTypeCode=Resource type code +ImportDataset_resource_1=Resources + +ErrorResourcesAlreadyInUse=Some resources are in use +ErrorResourceUseInEvent=%s used in %s event diff --git a/htdocs/langs/ms_MY/salaries.lang b/htdocs/langs/ms_MY/salaries.lang new file mode 100644 index 00000000000..20a10694500 --- /dev/null +++ b/htdocs/langs/ms_MY/salaries.lang @@ -0,0 +1,27 @@ +# Dolibarr language file - Source file is en_US - salaries +SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accounting account used for user third parties +SALARIES_ACCOUNTING_ACCOUNT_PAYMENT_Desc=The dedicated accounting account defined on user card will be used for Subledger accounting only. This one will be used for General Ledger and as default value of Subledger accounting if dedicated user accounting account on user is not defined. +SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accounting account by default for wage payments +CREATE_NEW_SALARY_WITHOUT_AUTO_PAYMENT=By default, leave empty the option "Automatically create a total payment" when creating a Salary +Salary=Salary +Salaries=Salaries +NewSalary=New salary +AddSalary=Add salary +NewSalaryPayment=New salary card +AddSalaryPayment=Add salary payment +SalaryPayment=Salary payment +SalariesPayments=Salaries payments +SalariesPaymentsOf=Salaries payments of %s +ShowSalaryPayment=Show salary payment +THM=Average hourly rate +TJM=Average daily rate +CurrentSalary=Current salary +THMDescription=This value may be used to calculate the cost of time consumed on a project entered by users if module project is used +TJMDescription=This value is currently for information only and is not used for any calculation +LastSalaries=Latest %s salaries +AllSalaries=All salaries +SalariesStatistics=Salary statistics +SalariesAndPayments=Salaries and payments +ConfirmDeleteSalaryPayment=Do you want to delete this salary payment ? +FillFieldFirst=Fill employee field first +UpdateAmountWithLastSalary=Set amount with last salary diff --git a/htdocs/langs/ms_MY/sendings.lang b/htdocs/langs/ms_MY/sendings.lang new file mode 100644 index 00000000000..8f10b1e9404 --- /dev/null +++ b/htdocs/langs/ms_MY/sendings.lang @@ -0,0 +1,76 @@ +# Dolibarr language file - Source file is en_US - sendings +RefSending=Ref. shipment +Sending=Shipment +Sendings=Shipments +AllSendings=All Shipments +Shipment=Shipment +Shipments=Shipments +ShowSending=Show Shipments +Receivings=Delivery Receipts +SendingsArea=Shipments area +ListOfSendings=List of shipments +SendingMethod=Shipping method +LastSendings=Latest %s shipments +StatisticsOfSendings=Statistics for shipments +NbOfSendings=Number of shipments +NumberOfShipmentsByMonth=Number of shipments by month +SendingCard=Shipment card +NewSending=New shipment +CreateShipment=Create shipment +QtyShipped=Qty shipped +QtyShippedShort=Qty ship. +QtyPreparedOrShipped=Qty prepared or shipped +QtyToShip=Qty to ship +QtyToReceive=Qty to receive +QtyReceived=Qty received +QtyInOtherShipments=Qty in other shipments +KeepToShip=Remain to ship +KeepToShipShort=Remain +OtherSendingsForSameOrder=Other shipments for this order +SendingsAndReceivingForSameOrder=Shipments and receipts for this order +SendingsToValidate=Shipments to validate +StatusSendingCanceled=Canceled +StatusSendingCanceledShort=Canceled +StatusSendingDraft=Draft +StatusSendingValidated=Validated (products to ship or already shipped) +StatusSendingProcessed=Processed +StatusSendingDraftShort=Draft +StatusSendingValidatedShort=Validated +StatusSendingProcessedShort=Processed +SendingSheet=Shipment sheet +ConfirmDeleteSending=Are you sure you want to delete this shipment? +ConfirmValidateSending=Are you sure you want to validate this shipment with reference %s? +ConfirmCancelSending=Are you sure you want to cancel this shipment? +DocumentModelMerou=Merou A5 model +WarningNoQtyLeftToSend=Warning, no products waiting to be shipped. +StatsOnShipmentsOnlyValidated=Statistics are only for validated shipments. Date used is the date of validation of shipment (planned delivery date is not always known) +DateDeliveryPlanned=Planned date of delivery +RefDeliveryReceipt=Ref delivery receipt +StatusReceipt=Status delivery receipt +DateReceived=Date delivery received +ClassifyReception=Classify reception +SendShippingByEMail=Send shipment by email +SendShippingRef=Submission of shipment %s +ActionsOnShipping=Events on shipment +LinkToTrackYourPackage=Link to track your package +ShipmentCreationIsDoneFromOrder=For the moment, creation of a new shipment is done from the Sales Order record. +ShipmentLine=Shipment line +ProductQtyInCustomersOrdersRunning=Product quantity from open sales orders +ProductQtyInSuppliersOrdersRunning=Product quantity from open purchase orders +ProductQtyInShipmentAlreadySent=Product quantity from open sales order already sent +ProductQtyInSuppliersShipmentAlreadyRecevied=Product quantity from open purchase orders already received +NoProductToShipFoundIntoStock=No product to ship found in warehouse %s. Correct stock or go back to choose another warehouse. +WeightVolShort=Weight/Vol. +ValidateOrderFirstBeforeShipment=You must first validate the order before being able to make shipments. + +# Sending methods +# ModelDocument +DocumentModelTyphon=More complete document model for delivery receipts (logo...) +DocumentModelStorm=More complete document model for delivery receipts and extrafields compatibility (logo...) +Error_EXPEDITION_ADDON_NUMBER_NotDefined=Constant EXPEDITION_ADDON_NUMBER not defined +SumOfProductVolumes=Sum of product volumes +SumOfProductWeights=Sum of product weights + +# warehouse details +DetailWarehouseNumber= Warehouse details +DetailWarehouseFormat= W:%s (Qty: %d) diff --git a/htdocs/langs/ms_MY/sms.lang b/htdocs/langs/ms_MY/sms.lang new file mode 100644 index 00000000000..055085eb16a --- /dev/null +++ b/htdocs/langs/ms_MY/sms.lang @@ -0,0 +1,51 @@ +# Dolibarr language file - Source file is en_US - sms +Sms=Sms +SmsSetup=SMS setup +SmsDesc=This page allows you to define global options on SMS features +SmsCard=SMS Card +AllSms=All SMS campaigns +SmsTargets=Targets +SmsRecipients=Targets +SmsRecipient=Target +SmsTitle=Description +SmsFrom=Sender +SmsTo=Target +SmsTopic=Topic of SMS +SmsText=Message +SmsMessage=SMS Message +ShowSms=Show SMS +ListOfSms=List SMS campaigns +NewSms=New SMS campaign +EditSms=Edit SMS +ResetSms=New sending +DeleteSms=Delete SMS campaign +DeleteASms=Remove a SMS campaign +PreviewSms=Previuw SMS +PrepareSms=Prepare SMS +CreateSms=Create SMS +SmsResult=Result of SMS sending +TestSms=Test SMS +ValidSms=Validate SMS +ApproveSms=Approve SMS +SmsStatusDraft=Draft +SmsStatusValidated=Validated +SmsStatusApproved=Approved +SmsStatusSent=Sent +SmsStatusSentPartialy=Sent partially +SmsStatusSentCompletely=Sent completely +SmsStatusError=Error +SmsStatusNotSent=Not sent +SmsSuccessfulySent=SMS correctly sent (from %s to %s) +ErrorSmsRecipientIsEmpty=Number of target is empty +WarningNoSmsAdded=No new phone number to add to target list +ConfirmValidSms=Do you confirm validation of this campaign? +NbOfUniqueSms=No. of unique phone numbers +NbOfSms=No. of phone numbers +ThisIsATestMessage=This is a test message +SendSms=Send SMS +SmsInfoCharRemain=No. of remaining characters +SmsInfoNumero= (international format i.e.: +33899701761) +DelayBeforeSending=Delay before sending (minutes) +SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider. +SmsNoPossibleRecipientFound=No target available. Check setup of your SMS provider. +DisableStopIfSupported=Disable STOP message (if supported) diff --git a/htdocs/langs/ms_MY/stocks.lang b/htdocs/langs/ms_MY/stocks.lang new file mode 100644 index 00000000000..7137edcf576 --- /dev/null +++ b/htdocs/langs/ms_MY/stocks.lang @@ -0,0 +1,317 @@ +# Dolibarr language file - Source file is en_US - stocks +WarehouseCard=Warehouse card +Warehouse=Warehouse +Warehouses=Warehouses +ParentWarehouse=Parent warehouse +NewWarehouse=New warehouse / Stock Location +WarehouseEdit=Modify warehouse +MenuNewWarehouse=New warehouse +WarehouseSource=Source warehouse +WarehouseSourceNotDefined=No warehouse defined, +AddWarehouse=Create warehouse +AddOne=Add one +DefaultWarehouse=Default warehouse +WarehouseTarget=Target warehouse +ValidateSending=Confirm shipment +CancelSending=Cancel shipment +DeleteSending=Delete shipment +Stock=Stock +Stocks=Stocks +MissingStocks=Missing stocks +StockAtDate=Stocks at date +StockAtDateInPast=Date in the past +StockAtDateInFuture=Date in the future +StocksByLotSerial=Stocks by lot/serial +LotSerial=Lots/Serials +LotSerialList=List of lot/serials +Movements=Movements +ErrorWarehouseRefRequired=Warehouse reference name is required +ListOfWarehouses=List of warehouses +ListOfStockMovements=List of stock movements +ListOfInventories=List of inventories +MovementId=Movement ID +StockMovementForId=Movement ID %d +ListMouvementStockProject=List of stock movements associated to project +StocksArea=Warehouses area +AllWarehouses=All warehouses +IncludeEmptyDesiredStock=Include also negative stock with undefined desired stock +IncludeAlsoDraftOrders=Include also draft orders +Location=Location +LocationSummary=Short name of location +NumberOfDifferentProducts=Number of unique products +NumberOfProducts=Total number of products +LastMovement=Latest movement +LastMovements=Latest movements +Units=Units +Unit=Unit +StockCorrection=Stock correction +CorrectStock=Correct stock +StockTransfer=Stock transfer +TransferStock=Transfer stock +MassStockTransferShort=Mass stock transfer +StockMovement=Stock movement +StockMovements=Stock movements +NumberOfUnit=Number of units +UnitPurchaseValue=Unit purchase price +StockTooLow=Stock too low +StockLowerThanLimit=Stock lower than alert limit (%s) +EnhancedValue=Value +EnhancedValueOfWarehouses=Warehouses value +UserWarehouseAutoCreate=Create a user warehouse automatically when creating a user +AllowAddLimitStockByWarehouse=Manage also value for minimum and desired stock per pairing (product-warehouse) in addition to the value for minimum and desired stock per product +RuleForWarehouse=Rule for warehouses +WarehouseAskWarehouseOnThirparty=Set a warehouse on Third-parties +WarehouseAskWarehouseDuringPropal=Set a warehouse on Commercial proposals +WarehouseAskWarehouseDuringOrder=Set a warehouse on Sales Orders +WarehouseAskWarehouseDuringProject=Set a warehouse on Projects +UserDefaultWarehouse=Set a warehouse on Users +MainDefaultWarehouse=Default warehouse +MainDefaultWarehouseUser=Use a default warehouse for each user +MainDefaultWarehouseUserDesc=By activating this option, during creation of a product, the warehouse assigned to the product will be defined on this one. If no warehouse is defined on the user, the default warehouse is defined. +IndependantSubProductStock=Product stock and subproduct stock are independent +QtyDispatched=Quantity dispatched +QtyDispatchedShort=Qty dispatched +QtyToDispatchShort=Qty to dispatch +OrderDispatch=Item receipts +RuleForStockManagementDecrease=Choose Rule for automatic stock decrease (manual decrease is always possible, even if an automatic decrease rule is activated) +RuleForStockManagementIncrease=Choose Rule for automatic stock increase (manual increase is always possible, even if an automatic increase rule is activated) +DeStockOnBill=Decrease real stocks on validation of customer invoice/credit note +DeStockOnValidateOrder=Decrease real stocks on validation of sales order +DeStockOnShipment=Decrease real stocks on shipping validation +DeStockOnShipmentOnClosing=Decrease real stocks when shipping is set to closed +ReStockOnBill=Increase real stocks on validation of vendor invoice/credit note +ReStockOnValidateOrder=Increase real stocks on purchase order approval +ReStockOnDispatchOrder=Increase real stocks on manual dispatching into warehouse, after purchase order receipt of goods +StockOnReception=Increase real stocks on validation of reception +StockOnReceptionOnClosing=Increase real stocks when reception is set to closed +OrderStatusNotReadyToDispatch=Order has not yet or no more a status that allows dispatching of products in stock warehouses. +StockDiffPhysicTeoric=Explanation for difference between physical and virtual stock +NoPredefinedProductToDispatch=No predefined products for this object. So no dispatching in stock is required. +DispatchVerb=Dispatch +StockLimitShort=Limit for alert +StockLimit=Stock limit for alert +StockLimitDesc=(empty) means no warning.
0 can be used to trigger a warning as soon as the stock is empty. +PhysicalStock=Physical Stock +RealStock=Real Stock +RealStockDesc=Physical/real stock is the stock currently in the warehouses. +RealStockWillAutomaticallyWhen=The real stock will be modified according to this rule (as defined in the Stock module): +VirtualStock=Virtual stock +VirtualStockAtDate=Virtual stock at a future date +VirtualStockAtDateDesc=Virtual stock once all the pending orders that are planned to be processed before the chosen date will be finished +VirtualStockDesc=Virtual stock is the calculated stock available once all open/pending actions (that affect stocks) are closed (purchase orders received, sales orders shipped, manufacturing orders produced, etc) +AtDate=At date +IdWarehouse=Id warehouse +DescWareHouse=Description warehouse +LieuWareHouse=Localisation warehouse +WarehousesAndProducts=Warehouses and products +WarehousesAndProductsBatchDetail=Warehouses and products (with detail per lot/serial) +AverageUnitPricePMPShort=Weighted average price +AverageUnitPricePMPDesc=The input average unit price we had to expense to get 1 unit of product into our stock. +SellPriceMin=Selling Unit Price +EstimatedStockValueSellShort=Value for sell +EstimatedStockValueSell=Value for sell +EstimatedStockValueShort=Input stock value +EstimatedStockValue=Input stock value +DeleteAWarehouse=Delete a warehouse +ConfirmDeleteWarehouse=Are you sure you want to delete the warehouse %s? +PersonalStock=Personal stock %s +ThisWarehouseIsPersonalStock=This warehouse represents personal stock of %s %s +SelectWarehouseForStockDecrease=Choose warehouse to use for stock decrease +SelectWarehouseForStockIncrease=Choose warehouse to use for stock increase +NoStockAction=No stock action +DesiredStock=Desired Stock +DesiredStockDesc=This stock amount will be the value used to fill the stock by replenishment feature. +StockToBuy=To order +Replenishment=Replenishment +ReplenishmentOrders=Replenishment orders +VirtualDiffersFromPhysical=According to increase/decrease stock options, physical stock and virtual stock (physical stock + open orders) may differ +UseRealStockByDefault=Use real stock, instead of virtual stock, for replenishment feature +ReplenishmentCalculation=Amount to order will be (desired quantity - real stock) instead of (desired quantity - virtual stock) +UseVirtualStock=Use virtual stock +UsePhysicalStock=Use physical stock +CurentSelectionMode=Current selection mode +CurentlyUsingVirtualStock=Virtual stock +CurentlyUsingPhysicalStock=Physical stock +RuleForStockReplenishment=Rule for stocks replenishment +SelectProductWithNotNullQty=Select at least one product with a qty not null and a vendor +AlertOnly= Alerts only +IncludeProductWithUndefinedAlerts = Include also negative stock for products with no desired quantity defined, to restore them to 0 +WarehouseForStockDecrease=The warehouse %s will be used for stock decrease +WarehouseForStockIncrease=The warehouse %s will be used for stock increase +ForThisWarehouse=For this warehouse +ReplenishmentStatusDesc=This is a list of all products with a stock lower than desired stock (or lower than alert value if checkbox "alert only" is checked). Using the checkbox, you can create purchase orders to fill the difference. +ReplenishmentStatusDescPerWarehouse=If you want a replenishment based on desired quantity defined per warehouse, you must add a filter on the warehouse. +ReplenishmentOrdersDesc=This is a list of all open purchase orders including predefined products. Only open orders with predefined products, so orders that may affect stocks, are visible here. +Replenishments=Replenishments +NbOfProductBeforePeriod=Quantity of product %s in stock before selected period (< %s) +NbOfProductAfterPeriod=Quantity of product %s in stock after selected period (> %s) +MassMovement=Mass movement +SelectProductInAndOutWareHouse=Select a source warehouse and a target warehouse, a product and a quantity then click "%s". Once this is done for all required movements, click on "%s". +RecordMovement=Record transfer +ReceivingForSameOrder=Receipts for this order +StockMovementRecorded=Stock movements recorded +RuleForStockAvailability=Rules on stock requirements +StockMustBeEnoughForInvoice=Stock level must be enough to add product/service to invoice (check is done on current real stock when adding a line into invoice whatever the rule for automatic stock change) +StockMustBeEnoughForOrder=Stock level must be enough to add product/service to order (check is done on current real stock when adding a line into order whatever the rule for automatic stock change) +StockMustBeEnoughForShipment= Stock level must be enough to add product/service to shipment (check is done on current real stock when adding a line into shipment whatever the rule for automatic stock change) +MovementLabel=Label of movement +TypeMovement=Direction of movement +DateMovement=Date of movement +InventoryCode=Movement or inventory code +IsInPackage=Contained into package +WarehouseAllowNegativeTransfer=Stock can be negative +qtyToTranferIsNotEnough=You don't have enough stock from your source warehouse and your setup does not allow negative stocks. +qtyToTranferLotIsNotEnough=You don't have enough stock, for this lot number, from your source warehouse and your setup does not allow negative stocks (Qty for product '%s' with lot '%s' is %s in warehouse '%s'). +ShowWarehouse=Show warehouse +MovementCorrectStock=Stock correction for product %s +MovementTransferStock=Stock transfer of product %s into another warehouse +InventoryCodeShort=Inv./Mov. code +NoPendingReceptionOnSupplierOrder=No pending reception due to open purchase order +ThisSerialAlreadyExistWithDifferentDate=This lot/serial number (%s) already exists but with different eatby or sellby date (found %s but you enter %s). +OpenAnyMovement=Open (all movement) +OpenInternal=Open (only internal movement) +UseDispatchStatus=Use a dispatch status (approve/refuse) for product lines on purchase order reception +OptionMULTIPRICESIsOn=Option "several prices per segment" is on. It means a product has several selling price so value for sell can't be calculated +ProductStockWarehouseCreated=Stock limit for alert and desired optimal stock correctly created +ProductStockWarehouseUpdated=Stock limit for alert and desired optimal stock correctly updated +ProductStockWarehouseDeleted=Stock limit for alert and desired optimal stock correctly deleted +AddNewProductStockWarehouse=Set new limit for alert and desired optimal stock +AddStockLocationLine=Decrease quantity then click to split the line +InventoryDate=Inventory date +Inventories=Inventories +NewInventory=New inventory +inventorySetup = Inventory Setup +inventoryCreatePermission=Create new inventory +inventoryReadPermission=View inventories +inventoryWritePermission=Update inventories +inventoryValidatePermission=Validate inventory +inventoryDeletePermission=Delete inventory +inventoryTitle=Inventory +inventoryListTitle=Inventories +inventoryListEmpty=No inventory in progress +inventoryCreateDelete=Create/Delete inventory +inventoryCreate=Create new +inventoryEdit=Edit +inventoryValidate=Validated +inventoryDraft=Running +inventorySelectWarehouse=Warehouse choice +inventoryConfirmCreate=Create +inventoryOfWarehouse=Inventory for warehouse: %s +inventoryErrorQtyAdd=Error: one quantity is less than zero +inventoryMvtStock=By inventory +inventoryWarningProductAlreadyExists=This product is already into list +SelectCategory=Category filter +SelectFournisseur=Vendor filter +inventoryOnDate=Inventory +INVENTORY_USE_INVENTORY_DATE_FOR_DATE_OF_MVT=Stock movements will have the date of inventory (instead of the date of inventory validation) +inventoryChangePMPPermission=Allow to change PMP value for a product +ColumnNewPMP=New unit PMP +OnlyProdsInStock=Do not add product without stock +TheoricalQty=Theorical qty +TheoricalValue=Theorical qty +LastPA=Last BP +CurrentPA=Curent BP +RecordedQty=Recorded Qty +RealQty=Real Qty +RealValue=Real Value +RegulatedQty=Regulated Qty +AddInventoryProduct=Add product to inventory +AddProduct=Add +ApplyPMP=Apply PMP +FlushInventory=Flush inventory +ConfirmFlushInventory=Do you confirm this action? +InventoryFlushed=Inventory flushed +ExitEditMode=Exit edition +inventoryDeleteLine=Delete line +RegulateStock=Regulate Stock +ListInventory=List +StockSupportServices=Stock management supports Services +StockSupportServicesDesc=By default, you can stock only products of type "product". You may also stock a product of type "service" if both module Services and this option are enabled. +ReceiveProducts=Receive items +StockIncreaseAfterCorrectTransfer=Increase by correction/transfer +StockDecreaseAfterCorrectTransfer=Decrease by correction/transfer +StockIncrease=Stock increase +StockDecrease=Stock decrease +InventoryForASpecificWarehouse=Inventory for a specific warehouse +InventoryForASpecificProduct=Inventory for a specific product +StockIsRequiredToChooseWhichLotToUse=Stock is required to choose which lot to use +ForceTo=Force to +AlwaysShowFullArbo=Display full tree of warehouse on popup of warehouse links (Warning: This may decrease dramatically performances) +StockAtDatePastDesc=You can view here the stock (real stock) at a given date in the past +StockAtDateFutureDesc=You can view here the stock (virtual stock) at a given date in the future +CurrentStock=Current stock +InventoryRealQtyHelp=Set value to 0 to reset qty
Keep field empty, or remove line, to keep unchanged +UpdateByScaning=Complete real qty by scaning +UpdateByScaningProductBarcode=Update by scan (product barcode) +UpdateByScaningLot=Update by scan (lot|serial barcode) +DisableStockChangeOfSubProduct=Deactivate the stock change for all the subproducts of this Kit during this movement. +ImportFromCSV=Import CSV list of movement +ChooseFileToImport=Upload file then click on the %s icon to select file as source import file... +SelectAStockMovementFileToImport=select a stock movement file to import +InfoTemplateImport=Uploaded file needs to have this format (* are mandatory fields):
Source Warehouse* | Target Warehouse* | Product* | Quantity* | Lot/serial number
CSV character separator must be "%s" +LabelOfInventoryMovemement=Inventory %s +ReOpen=Reopen +ConfirmFinish=Do you confirm the closing of the inventory ? This will generate all stock movements to update your stock to the real qty you entered into the inventory. +ObjectNotFound=%s not found +MakeMovementsAndClose=Generate movements and close +AutofillWithExpected=Fill real quantity with expected quantity +ShowAllBatchByDefault=By default, show batch details on product "stock" tab +CollapseBatchDetailHelp=You can set batch detail default display in stocks module configuration +ErrorWrongBarcodemode=Unknown Barcode mode +ProductDoesNotExist=Product does not exist +ErrorSameBatchNumber=Several record for the batch number were found in the inventory sheet. No way to know which one to increase. +ProductBatchDoesNotExist=Product with batch/serial does not exist +ProductBarcodeDoesNotExist=Product with barcode does not exist +WarehouseId=Warehouse ID +WarehouseRef=Warehouse Ref +SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ToStart=Start +InventoryStartedShort=Started +ErrorOnElementsInventory=Operation canceled for the following reason: +ErrorCantFindCodeInInventory=Can't find the following code in inventory +QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requested barcode. You can close the Scanner tool. +StockChangeDisabled=Change on stock disabled +NoWarehouseDefinedForTerminal=No warehouse defined for terminal +ClearQtys=Clear all quantities +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=Settings +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/ms_MY/stripe.lang b/htdocs/langs/ms_MY/stripe.lang new file mode 100644 index 00000000000..2c95bcfce27 --- /dev/null +++ b/htdocs/langs/ms_MY/stripe.lang @@ -0,0 +1,71 @@ +# Dolibarr language file - Source file is en_US - stripe +StripeSetup=Stripe module setup +StripeDesc=Offer your customers an online payment page for payments with credit/debit cards via Stripe. This can be used to allow your customers to make ad-hoc payments or for payments related to a particular Dolibarr object (invoice, order, ...) +StripeOrCBDoPayment=Pay with credit card or Stripe +FollowingUrlAreAvailableToMakePayments=Following URLs are available to offer a page to a customer to make a payment on Dolibarr objects +PaymentForm=Payment form +WelcomeOnPaymentPage=Welcome to our online payment service +ThisScreenAllowsYouToPay=This screen allow you to make an online payment to %s. +ThisIsInformationOnPayment=This is information on payment to do +ToComplete=To complete +YourEMail=Email to receive payment confirmation +STRIPE_PAYONLINE_SENDEMAIL=Email notification after a payment attempt (success or fail) +Creditor=Creditor +PaymentCode=Payment code +StripeDoPayment=Pay with Stripe +YouWillBeRedirectedOnStripe=You will be redirected on secured Stripe page to input you credit card information +Continue=Next +ToOfferALinkForOnlinePayment=URL for %s payment +ToOfferALinkForOnlinePaymentOnOrder=URL to offer a %s online payment page for a sales order +ToOfferALinkForOnlinePaymentOnInvoice=URL to offer a %s online payment page for a customer invoice +ToOfferALinkForOnlinePaymentOnContractLine=URL to offer a %s online payment page for a contract line +ToOfferALinkForOnlinePaymentOnFreeAmount=URL to offer a %s online payment page of any amount with no existing object +ToOfferALinkForOnlinePaymentOnMemberSubscription=URL to offer a %s online payment page for a member subscription +ToOfferALinkForOnlinePaymentOnDonation=URL to offer a %s online payment page for payment of a donation +YouCanAddTagOnUrl=You can also add url parameter &tag=value to any of those URL (mandatory only for payment not linked to an object) to add your own payment comment tag.
For the URL of payments with no existing object, you may also add the parameter &noidempotency=1 so the same link with same tag can be used several times (some payment mode may limit the payment to 1 for each different link without this parameter) +SetupStripeToHavePaymentCreatedAutomatically=Setup your Stripe with url %s to have payment created automatically when validated by Stripe. +AccountParameter=Account parameters +UsageParameter=Usage parameters +InformationToFindParameters=Help to find your %s account information +STRIPE_CGI_URL_V2=Url of Stripe CGI module for payment +CSSUrlForPaymentForm=CSS style sheet url for payment form +NewStripePaymentReceived=New Stripe payment received +NewStripePaymentFailed=New Stripe payment tried but failed +FailedToChargeCard=Failed to charge card +STRIPE_TEST_SECRET_KEY=Secret test key +STRIPE_TEST_PUBLISHABLE_KEY=Publishable test key +STRIPE_TEST_WEBHOOK_KEY=Webhook test key +STRIPE_LIVE_SECRET_KEY=Secret live key +STRIPE_LIVE_PUBLISHABLE_KEY=Publishable live key +STRIPE_LIVE_WEBHOOK_KEY=Webhook live key +ONLINE_PAYMENT_WAREHOUSE=Stock to use for stock decrease when online payment is done
(TODO When option to decrease stock is done on an action on invoice and the online payment generate itself the invoice ?) +StripeLiveEnabled=Stripe live enabled (otherwise test/sandbox mode) +StripeImportPayment=Import Stripe payments +ExampleOfTestCreditCard=Example of credit card for test: %s => valid, %s => error CVC, %s => expired, %s => charge fails +StripeGateways=Stripe gateways +OAUTH_STRIPE_TEST_ID=Stripe Connect Client ID (ca_...) +OAUTH_STRIPE_LIVE_ID=Stripe Connect Client ID (ca_...) +BankAccountForBankTransfer=Bank account for fund payouts +StripeAccount=Stripe account +StripeChargeList=List of Stripe charges +StripeTransactionList=List of Stripe transactions +StripeCustomerId=Stripe customer id +StripePaymentModes=Stripe payment modes +LocalID=Local ID +StripeID=Stripe ID +NameOnCard=Name on card +CardNumber=Card Number +ExpiryDate=Expiry Date +CVN=CVN +DeleteACard=Delete Card +ConfirmDeleteCard=Are you sure you want to delete this Credit or Debit card? +CreateCustomerOnStripe=Create customer on Stripe +CreateCardOnStripe=Create card on Stripe +ShowInStripe=Show in Stripe +StripeUserAccountForActions=User account to use for email notification of some Stripe events (Stripe payouts) +StripePayoutList=List of Stripe payouts +ToOfferALinkForTestWebhook=Link to setup Stripe WebHook to call the IPN (test mode) +ToOfferALinkForLiveWebhook=Link to setup Stripe WebHook to call the IPN (live mode) +PaymentWillBeRecordedForNextPeriod=Payment will be recorded for the next period. +ClickHereToTryAgain=Click here to try again... +CreationOfPaymentModeMustBeDoneFromStripeInterface=Due to Strong Customer Authentication rules, creation of a card must be done from Stripe backoffice. You can click here to switch on Stripe customer record: %s diff --git a/htdocs/langs/ms_MY/supplier_proposal.lang b/htdocs/langs/ms_MY/supplier_proposal.lang new file mode 100644 index 00000000000..a68319fb2df --- /dev/null +++ b/htdocs/langs/ms_MY/supplier_proposal.lang @@ -0,0 +1,58 @@ +# Dolibarr language file - Source file is en_US - supplier_proposal +SupplierProposal=Vendor commercial proposals +supplier_proposalDESC=Manage price requests to suppliers +SupplierProposalNew=New price request +CommRequest=Price request +CommRequests=Price requests +SearchRequest=Find a request +DraftRequests=Draft requests +SupplierProposalsDraft=Draft vendor proposals +LastModifiedRequests=Latest %s modified price requests +RequestsOpened=Open price requests +SupplierProposalArea=Vendor proposals area +SupplierProposalShort=Vendor proposal +SupplierProposals=Vendor proposals +SupplierProposalsShort=Vendor proposals +AskPrice=Price request +NewAskPrice=New price request +ShowSupplierProposal=Show price request +AddSupplierProposal=Create a price request +SupplierProposalRefFourn=Vendor ref +SupplierProposalDate=Delivery date +SupplierProposalRefFournNotice=Before closing to "Accepted", think to grasp suppliers references. +ConfirmValidateAsk=Are you sure you want to validate this price request under name %s? +DeleteAsk=Delete request +ValidateAsk=Validate request +SupplierProposalStatusDraft=Draft (needs to be validated) +SupplierProposalStatusValidated=Validated (request is open) +SupplierProposalStatusClosed=Closed +SupplierProposalStatusSigned=Accepted +SupplierProposalStatusNotSigned=Refused +SupplierProposalStatusDraftShort=Draft +SupplierProposalStatusValidatedShort=Validated +SupplierProposalStatusClosedShort=Closed +SupplierProposalStatusSignedShort=Accepted +SupplierProposalStatusNotSignedShort=Refused +CopyAskFrom=Create a price request by copying an existing request +CreateEmptyAsk=Create blank request +ConfirmCloneAsk=Are you sure you want to clone the price request %s? +ConfirmReOpenAsk=Are you sure you want to open back the price request %s? +SendAskByMail=Send price request by mail +SendAskRef=Sending the price request %s +SupplierProposalCard=Request card +ConfirmDeleteAsk=Are you sure you want to delete this price request %s? +ActionsOnSupplierProposal=Events on price request +DocModelAuroreDescription=A complete request model (logo...) +CommercialAsk=Price request +DefaultModelSupplierProposalCreate=Default model creation +DefaultModelSupplierProposalToBill=Default template when closing a price request (accepted) +DefaultModelSupplierProposalClosed=Default template when closing a price request (refused) +ListOfSupplierProposals=List of vendor proposal requests +ListSupplierProposalsAssociatedProject=List of vendor proposals associated with project +SupplierProposalsToClose=Vendor proposals to close +SupplierProposalsToProcess=Vendor proposals to process +LastSupplierProposals=Latest %s price requests +AllPriceRequests=All requests +TypeContact_supplier_proposal_external_SHIPPING=Vendor contact for delivery +TypeContact_supplier_proposal_external_BILLING=Vendor contact for billing +TypeContact_supplier_proposal_external_SERVICE=Representative following-up proposal diff --git a/htdocs/langs/ms_MY/suppliers.lang b/htdocs/langs/ms_MY/suppliers.lang new file mode 100644 index 00000000000..4d2b37fa316 --- /dev/null +++ b/htdocs/langs/ms_MY/suppliers.lang @@ -0,0 +1,57 @@ +# Dolibarr language file - Source file is en_US - vendors +Suppliers=Vendors +SuppliersInvoice=Vendor invoice +SupplierInvoices=Vendor invoices +ShowSupplierInvoice=Show Vendor Invoice +NewSupplier=New vendor +NewSupplierInvoice = New vendor invoice +History=History +ListOfSuppliers=List of vendors +ShowSupplier=Show vendor +OrderDate=Order date +BuyingPriceMin=Best buying price +BuyingPriceMinShort=Best buying price +TotalBuyingPriceMinShort=Total of subproducts buying prices +TotalSellingPriceMinShort=Total of subproducts selling prices +SomeSubProductHaveNoPrices=Some sub-products have no price defined +AddSupplierPrice=Add buying price +ChangeSupplierPrice=Change buying price +SupplierPrices=Vendor prices +ReferenceSupplierIsAlreadyAssociatedWithAProduct=This vendor reference is already associated with a product: %s +NoRecordedSuppliers=No vendor recorded +SupplierPayment=Vendor payment +SuppliersArea=Vendor area +RefSupplierShort=Ref. vendor +Availability=Availability +ExportDataset_fournisseur_1=Vendor invoices and invoice details +ExportDataset_fournisseur_2=Vendor invoices and payments +ExportDataset_fournisseur_3=Purchase orders and order details +ApproveThisOrder=Approve this order +ConfirmApproveThisOrder=Are you sure you want to approve order %s? +DenyingThisOrder=Deny this order +ConfirmDenyingThisOrder=Are you sure you want to deny this order %s? +ConfirmCancelThisOrder=Are you sure you want to cancel this order %s? +AddSupplierOrder=Create Purchase Order +AddSupplierInvoice=Create vendor invoice +ListOfSupplierProductForSupplier=List of products and prices for vendor %s +SentToSuppliers=Sent to vendors +ListOfSupplierOrders=List of purchase orders +MenuOrdersSupplierToBill=Purchase orders to invoice +NbDaysToDelivery=Delivery delay (days) +DescNbDaysToDelivery=The longest delivery delay of the products from this order +SupplierReputation=Vendor reputation +ReferenceReputation=Reference reputation +DoNotOrderThisProductToThisSupplier=Do not order +NotTheGoodQualitySupplier=Low quality +ReputationForThisProduct=Reputation +BuyerName=Buyer name +AllProductServicePrices=All product / service prices +AllProductReferencesOfSupplier=All references of vendor +BuyingPriceNumShort=Vendor prices +RepeatableSupplierInvoice=Template supplier invoice +RepeatableSupplierInvoices=Template supplier invoices +RepeatableSupplierInvoicesList=Template supplier invoices +RecurringSupplierInvoices=Recurring supplier invoices +ToCreateAPredefinedSupplierInvoice=In order to create template supplier invoice, you must create a standard invoice, then, without validating it, click on the "%s" button. +GeneratedFromSupplierTemplate=Generated from supplier invoice template %s +SupplierInvoiceGeneratedFromTemplate=Supplier invoice %s Generated from supplier invoice template %s diff --git a/htdocs/langs/ms_MY/ticket.lang b/htdocs/langs/ms_MY/ticket.lang new file mode 100644 index 00000000000..995fddc90a3 --- /dev/null +++ b/htdocs/langs/ms_MY/ticket.lang @@ -0,0 +1,352 @@ +# en_US lang file for module ticket +# Copyright (C) 2013 Jean-François FERRY +# +# 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 . + +# +# Generic +# + +Module56000Name=Tickets +Module56000Desc=Ticket system for issue or request management + +Permission56001=See tickets +Permission56002=Modify tickets +Permission56003=Delete tickets +Permission56004=Manage tickets +Permission56005=See tickets of all third parties (not effective for external users, always be limited to the third party they depend on) + +TicketDictType=Ticket - Types +TicketDictCategory=Ticket - Groupes +TicketDictSeverity=Ticket - Severities +TicketDictResolution=Ticket - Resolution + +TicketTypeShortCOM=Commercial question +TicketTypeShortHELP=Request for functionnal help +TicketTypeShortISSUE=Issue or bug +TicketTypeShortPROBLEM=Problem +TicketTypeShortREQUEST=Change or enhancement request +TicketTypeShortPROJET=Project +TicketTypeShortOTHER=Other + +TicketSeverityShortLOW=Low +TicketSeverityShortNORMAL=Normal +TicketSeverityShortHIGH=High +TicketSeverityShortBLOCKING=Critical, Blocking + +TicketCategoryShortOTHER=Other + +ErrorBadEmailAddress=Field '%s' incorrect +MenuTicketMyAssign=My tickets +MenuTicketMyAssignNonClosed=My open tickets +MenuListNonClosed=Open tickets + +TypeContact_ticket_internal_CONTRIBUTOR=Contributor +TypeContact_ticket_internal_SUPPORTTEC=Assigned user +TypeContact_ticket_external_SUPPORTCLI=Customer contact / incident tracking +TypeContact_ticket_external_CONTRIBUTOR=External contributor + +OriginEmail=Reporter Email +Notify_TICKET_SENTBYMAIL=Send ticket message by email + +# Status +Read=Read +Assigned=Assigned +InProgress=In progress +NeedMoreInformation=Waiting for reporter feedback +NeedMoreInformationShort=Waiting for feedback +Answered=Answered +Waiting=Waiting +SolvedClosed=Solved +Deleted=Deleted + +# Dict +Type=Type +Severity=Severity +TicketGroupIsPublic=Group is public +TicketGroupIsPublicDesc=If a ticket group is public, it will be visible in the form when creating a ticket from the public interface + +# Email templates +MailToSendTicketMessage=To send email from ticket message + +# +# Admin page +# +TicketSetup=Ticket module setup +TicketSettings=Settings +TicketSetupPage= +TicketPublicAccess=A public interface requiring no identification is available at the following url +TicketSetupDictionaries=The type of ticket, severity and analytic codes are configurable from dictionaries +TicketParamModule=Module variable setup +TicketParamMail=Email setup +TicketEmailNotificationFrom=Sender e-mail for notification on answers +TicketEmailNotificationFromHelp=Sender e-mail to use to send the notification email when an answer is provided inside the backoffice. For example noreply@example.com +TicketEmailNotificationTo=Notify ticket creation to this e-mail address +TicketEmailNotificationToHelp=If present, this e-mail address will be notified of a ticket creation +TicketNewEmailBodyLabel=Text message sent after creating a ticket +TicketNewEmailBodyHelp=The text specified here will be inserted into the email confirming the creation of a new ticket from the public interface. Information on the consultation of the ticket are automatically added. +TicketParamPublicInterface=Public interface setup +TicketsEmailMustExist=Require an existing email address to create a ticket +TicketsEmailMustExistHelp=In the public interface, the email address should already be filled in the database to create a new ticket. +TicketCreateThirdPartyWithContactIfNotExist=Ask name and company name for unknown emails. +TicketCreateThirdPartyWithContactIfNotExistHelp=Check if a thirdparty or a contact exists for the email entered. If not, ask a name and a company name to create a third party with contact. +PublicInterface=Public interface +TicketUrlPublicInterfaceLabelAdmin=Alternative URL for public interface +TicketUrlPublicInterfaceHelpAdmin=It is possible to define an alias to the web server and thus make available the public interface with another URL (the server must act as a proxy on this new URL) +TicketPublicInterfaceTextHomeLabelAdmin=Welcome text of the public interface +TicketPublicInterfaceTextHome=You can create a support ticket or view existing from its identifier tracking ticket. +TicketPublicInterfaceTextHomeHelpAdmin=The text defined here will appear on the home page of the public interface. +TicketPublicInterfaceTopicLabelAdmin=Interface title +TicketPublicInterfaceTopicHelp=This text will appear as the title of the public interface. +TicketPublicInterfaceTextHelpMessageLabelAdmin=Help text to the message entry +TicketPublicInterfaceTextHelpMessageHelpAdmin=This text will appear above the message input area of the user. +ExtraFieldsTicket=Extra attributes +TicketCkEditorEmailNotActivated=HTML editor is not activated. Please put FCKEDITOR_ENABLE_MAIL content to 1 to get it. +TicketsDisableEmail=Do not send emails for ticket creation or message recording +TicketsDisableEmailHelp=By default, emails are sent when new tickets or messages created. Enable this option to disable *all* email notifications +TicketsLogEnableEmail=Enable log by email +TicketsLogEnableEmailHelp=At each change, an email will be sent **to each contact** associated with the ticket. +TicketParams=Params +TicketsShowModuleLogo=Display the logo of the module in the public interface +TicketsShowModuleLogoHelp=Enable this option to hide the logo module in the pages of the public interface +TicketsShowCompanyLogo=Display the logo of the company in the public interface +TicketsShowCompanyLogoHelp=Enable this option to hide the logo of the main company in the pages of the public interface +TicketsEmailAlsoSendToMainAddress=Also send a notification to the main email address +TicketsEmailAlsoSendToMainAddressHelp=Enable this option to also send an email to the address defined into setup "%s" (see tab "%s") +TicketsLimitViewAssignedOnly=Restrict the display to tickets assigned to the current user (not effective for external users, always be limited to the third party they depend on) +TicketsLimitViewAssignedOnlyHelp=Only tickets assigned to the current user will be visible. Does not apply to a user with tickets management rights. +TicketsActivatePublicInterface=Activate public interface +TicketsActivatePublicInterfaceHelp=Public interface allow any visitors to create tickets. +TicketsAutoAssignTicket=Automatically assign the user who created the ticket +TicketsAutoAssignTicketHelp=When creating a ticket, the user can be automatically assigned to the ticket. +TicketNumberingModules=Tickets numbering module +TicketsModelModule=Document templates for tickets +TicketNotifyTiersAtCreation=Notify third party at creation +TicketsDisableCustomerEmail=Always disable emails when a ticket is created from public interface +TicketsPublicNotificationNewMessage=Send email(s) when a new message/comment is added to a ticket +TicketsPublicNotificationNewMessageHelp=Send email(s) when a new message is added from public interface (to assigned user or the notifications email to (update) and/or the notifications email to) +TicketPublicNotificationNewMessageDefaultEmail=Notifications email to (update) +TicketPublicNotificationNewMessageDefaultEmailHelp=Send an email to this address for each new message notifications if the ticket doesn't have a user assigned to it or if the user doesn't have any known email. +TicketsAutoReadTicket=Automatically mark the ticket as read (when created from backoffice) +TicketsAutoReadTicketHelp=Automatically mark the ticket as read when created from backoffice. When ticket is create from the public interface, ticket remains with the status "Not Read". +TicketsDelayBeforeFirstAnswer=A new ticket should receive a first answer before (hours): +TicketsDelayBeforeFirstAnswerHelp=If a new ticket has not received an answer after this time period (in hours), an important warning icon will be displayed in the list view. +TicketsDelayBetweenAnswers=An unresolved ticket should not be unactive during (hours): +TicketsDelayBetweenAnswersHelp=If an unresolved ticket that has already received an answer has not had further interaction after this time period (in hours), a warning icon will be displayed in the list view. +TicketsAutoNotifyClose=Automatically notify thirdparty when closing a ticket +TicketsAutoNotifyCloseHelp=When closing a ticket, you will be proposed to send a message to one of thirdparty's contacts. On mass closing, a message will be sent to one contact of the thirdparty linked to the ticket. +TicketWrongContact=Provided contact is not part of current ticket contacts. Email not sent. +TicketChooseProductCategory=Product category for ticket support +TicketChooseProductCategoryHelp=Select the product category of ticket support. This will be used to automatically link a contract to a ticket. + +# +# Index & list page +# +TicketsIndex=Tickets area +TicketList=List of tickets +TicketAssignedToMeInfos=This page display ticket list created by or assigned to current user +NoTicketsFound=No ticket found +NoUnreadTicketsFound=No unread ticket found +TicketViewAllTickets=View all tickets +TicketViewNonClosedOnly=View only open tickets +TicketStatByStatus=Tickets by status +OrderByDateAsc=Sort by ascending date +OrderByDateDesc=Sort by descending date +ShowAsConversation=Show as conversation list +MessageListViewType=Show as table list +ConfirmMassTicketClosingSendEmail=Automatically send emails when closing tickets +ConfirmMassTicketClosingSendEmailQuestion=Do you want to notify thirdparties when closing these tickets ? + +# +# Ticket card +# +Ticket=Ticket +TicketCard=Ticket card +CreateTicket=Create ticket +EditTicket=Edit ticket +TicketsManagement=Tickets Management +CreatedBy=Created by +NewTicket=New Ticket +SubjectAnswerToTicket=Ticket answer +TicketTypeRequest=Request type +TicketCategory=Ticket categorization +SeeTicket=See ticket +TicketMarkedAsRead=Ticket has been marked as read +TicketReadOn=Read on +TicketCloseOn=Closing date +MarkAsRead=Mark ticket as read +TicketHistory=Ticket history +AssignUser=Assign to user +TicketAssigned=Ticket is now assigned +TicketChangeType=Change type +TicketChangeCategory=Change analytic code +TicketChangeSeverity=Change severity +TicketAddMessage=Add a message +AddMessage=Add a message +MessageSuccessfullyAdded=Ticket added +TicketMessageSuccessfullyAdded=Message successfully added +TicketMessagesList=Message list +NoMsgForThisTicket=No message for this ticket +TicketProperties=Classification +LatestNewTickets=Latest %s newest tickets (not read) +TicketSeverity=Severity +ShowTicket=See ticket +RelatedTickets=Related tickets +TicketAddIntervention=Create intervention +CloseTicket=Close|Solve ticket +AbandonTicket=Abandon ticket +CloseATicket=Close|Solve a ticket +ConfirmCloseAticket=Confirm ticket closing +ConfirmAbandonTicket=Do you confirm the closing of the ticket to status 'Abandonned' +ConfirmDeleteTicket=Please confirm ticket deleting +TicketDeletedSuccess=Ticket deleted with success +TicketMarkedAsClosed=Ticket marked as closed +TicketDurationAuto=Calculated duration +TicketDurationAutoInfos=Duration calculated automatically from intervention related +TicketUpdated=Ticket updated +SendMessageByEmail=Send message by email +TicketNewMessage=New message +ErrorMailRecipientIsEmptyForSendTicketMessage=Recipient is empty. No email send +TicketGoIntoContactTab=Please go into "Contacts" tab to select them +TicketMessageMailIntro=Introduction +TicketMessageMailIntroHelp=This text is added only at the beginning of the email and will not be saved. +TicketMessageMailIntroLabelAdmin=Introduction text to all ticket answers +TicketMessageMailIntroText=Hello,
A new answer has been added to a ticket that you follow. Here is the message:
+TicketMessageMailIntroHelpAdmin=This text will be inserted before the answer when replying to a ticket from Dolibarr +TicketMessageMailSignature=Signature +TicketMessageMailSignatureHelp=This text is added only at the end of the email and will not be saved. +TicketMessageMailSignatureText=Message sent by %s via Dolibarr +TicketMessageMailSignatureLabelAdmin=Signature of response email +TicketMessageMailSignatureHelpAdmin=This text will be inserted after the response message. +TicketMessageHelp=Only this text will be saved in the message list on ticket card. +TicketMessageSubstitutionReplacedByGenericValues=Substitutions variables are replaced by generic values. +TimeElapsedSince=Time elapsed since +TicketTimeToRead=Time elapsed before read +TicketTimeElapsedBeforeSince=Time elapsed before / since +TicketContacts=Contacts ticket +TicketDocumentsLinked=Documents linked to ticket +ConfirmReOpenTicket=Confirm reopen this ticket ? +TicketMessageMailIntroAutoNewPublicMessage=A new message was posted on the ticket with the subject %s: +TicketAssignedToYou=Ticket assigned +TicketAssignedEmailBody=You have been assigned the ticket #%s by %s +MarkMessageAsPrivate=Mark message as private +TicketMessagePrivateHelp=This message will not display to external users +TicketEmailOriginIssuer=Issuer at origin of the tickets +InitialMessage=Initial Message +LinkToAContract=Link to a contract +TicketPleaseSelectAContract=Select a contract +UnableToCreateInterIfNoSocid=Can not create an intervention when no third party is defined +TicketMailExchanges=Mail exchanges +TicketInitialMessageModified=Initial message modified +TicketMessageSuccesfullyUpdated=Message successfully updated +TicketChangeStatus=Change status +TicketConfirmChangeStatus=Confirm the status change: %s ? +TicketLogStatusChanged=Status changed: %s to %s +TicketNotNotifyTiersAtCreate=Not notify company at create +NotifyThirdpartyOnTicketClosing=Contacts to notify while closing the ticket +TicketNotifyAllTiersAtClose=All related contacts +TicketNotNotifyTiersAtClose=No related contact +Unread=Unread +TicketNotCreatedFromPublicInterface=Not available. Ticket was not created from public interface. +ErrorTicketRefRequired=Ticket reference name is required +TicketsDelayForFirstResponseTooLong=Too much time elapsed since ticket opening without any answer. +TicketsDelayFromLastResponseTooLong=Too much time elapsed since last answer on this ticket. +TicketNoContractFoundToLink=No contract was found to be automatically linked to this ticket. Please link a contract manually. +TicketManyContractsLinked=Many contracts have been automatically linked to this ticket. Make sure to verify which should be chosen. + +# +# Logs +# +TicketLogMesgReadBy=Ticket %s read by %s +NoLogForThisTicket=No log for this ticket yet +TicketLogAssignedTo=Ticket %s assigned to %s +TicketLogPropertyChanged=Ticket %s modified: classification from %s to %s +TicketLogClosedBy=Ticket %s closed by %s +TicketLogReopen=Ticket %s re-open + +# +# Public pages +# +TicketSystem=Ticket system +ShowListTicketWithTrackId=Display ticket list from track ID +ShowTicketWithTrackId=Display ticket from track ID +TicketPublicDesc=You can create a support ticket or check from an existing ID. +YourTicketSuccessfullySaved=Ticket has been successfully saved! +MesgInfosPublicTicketCreatedWithTrackId=A new ticket has been created with ID %s and Ref %s. +PleaseRememberThisId=Please keep the tracking number that we might ask you later. +TicketNewEmailSubject=Ticket creation confirmation - Ref %s (public ticket ID %s) +TicketNewEmailSubjectCustomer=New support ticket +TicketNewEmailBody=This is an automatic email to confirm you have registered a new ticket. +TicketNewEmailBodyCustomer=This is an automatic email to confirm a new ticket has just been created into your account. +TicketNewEmailBodyInfosTicket=Information for monitoring the ticket +TicketNewEmailBodyInfosTrackId=Ticket tracking number: %s +TicketNewEmailBodyInfosTrackUrl=You can view the progress of the ticket by clicking the following link +TicketNewEmailBodyInfosTrackUrlCustomer=You can view the progress of the ticket in the specific interface by clicking the following link +TicketCloseEmailBodyInfosTrackUrlCustomer=You can consult the history of this ticket by clicking the following link +TicketEmailPleaseDoNotReplyToThisEmail=Please do not reply directly to this email! Use the link to reply into the interface. +TicketPublicInfoCreateTicket=This form allows you to record a support ticket in our management system. +TicketPublicPleaseBeAccuratelyDescribe=Please accurately describe the problem. Provide the most information possible to allow us to correctly identify your request. +TicketPublicMsgViewLogIn=Please enter ticket tracking ID +TicketTrackId=Public Tracking ID +OneOfTicketTrackId=One of your tracking ID +ErrorTicketNotFound=Ticket with tracking ID %s not found! +Subject=Subject +ViewTicket=View ticket +ViewMyTicketList=View my ticket list +ErrorEmailMustExistToCreateTicket=Error: email address not found in our database +TicketNewEmailSubjectAdmin=New ticket created - Ref %s (public ticket ID %s) +TicketNewEmailBodyAdmin=

Ticket has just been created with ID #%s, see information:

+SeeThisTicketIntomanagementInterface=See ticket in management interface +TicketPublicInterfaceForbidden=The public interface for the tickets was not enabled +ErrorEmailOrTrackingInvalid=Bad value for tracking ID or email +OldUser=Old user +NewUser=New user +NumberOfTicketsByMonth=Number of tickets per month +NbOfTickets=Number of tickets +# notifications +TicketCloseEmailSubjectCustomer=Ticket closed +TicketCloseEmailBodyCustomer=This is an automatic message to notify you that ticket %s has just been closed. +TicketCloseEmailSubjectAdmin=Ticket closed - Réf %s (public ticket ID %s) +TicketCloseEmailBodyAdmin=A ticket with ID #%s has just been closed, see information: +TicketNotificationEmailSubject=Ticket %s updated +TicketNotificationEmailBody=This is an automatic message to notify you that ticket %s has just been updated +TicketNotificationRecipient=Notification recipient +TicketNotificationLogMessage=Log message +TicketNotificationEmailBodyInfosTrackUrlinternal=View ticket into interface +TicketNotificationNumberEmailSent=Notification email sent: %s + +ActionsOnTicket=Events on ticket + +# +# Boxes +# +BoxLastTicket=Latest created tickets +BoxLastTicketDescription=Latest %s created tickets +BoxLastTicketContent= +BoxLastTicketNoRecordedTickets=No recent unread tickets +BoxLastModifiedTicket=Latest modified tickets +BoxLastModifiedTicketDescription=Latest %s modified tickets +BoxLastModifiedTicketContent= +BoxLastModifiedTicketNoRecordedTickets=No recent modified tickets +BoxTicketType=Distribution of open tickets by type +BoxTicketSeverity=Number of open tickets by severity +BoxNoTicketSeverity=No tickets opened +BoxTicketLastXDays=Number of new tickets by days the last %s days +BoxTicketLastXDayswidget = Number of new tickets by days the last X days +BoxNoTicketLastXDays=No new tickets the last %s days +BoxNumberOfTicketByDay=Number of new tickets by day +BoxNewTicketVSClose=Number of tickets versus closed tickets (today) +TicketCreatedToday=Ticket created today +TicketClosedToday=Ticket closed today +KMFoundForTicketGroup=We found topics and FAQs that may answers your question, thanks to check them before submitting the ticket diff --git a/htdocs/langs/ms_MY/trips.lang b/htdocs/langs/ms_MY/trips.lang new file mode 100644 index 00000000000..9210ede360c --- /dev/null +++ b/htdocs/langs/ms_MY/trips.lang @@ -0,0 +1,150 @@ +# Dolibarr language file - Source file is en_US - trips +ShowExpenseReport=Show expense report +Trips=Expense reports +TripsAndExpenses=Expenses reports +TripsAndExpensesStatistics=Expense reports statistics +TripCard=Expense report card +AddTrip=Create expense report +ListOfTrips=List of expense reports +ListOfFees=List of fees +TypeFees=Types of fees +ShowTrip=Show expense report +NewTrip=New expense report +LastExpenseReports=Latest %s expense reports +AllExpenseReports=All expense reports +CompanyVisited=Company/organization visited +FeesKilometersOrAmout=Amount or kilometers +DeleteTrip=Delete expense report +ConfirmDeleteTrip=Are you sure you want to delete this expense report? +ListTripsAndExpenses=List of expense reports +ListToApprove=Waiting for approval +ExpensesArea=Expense reports area +ClassifyRefunded=Classify 'Refunded' +ExpenseReportWaitingForApproval=A new expense report has been submitted for approval +ExpenseReportWaitingForApprovalMessage=A new expense report has been submitted and is waiting for approval.
- User: %s
- Period: %s
Click here to validate: %s +ExpenseReportWaitingForReApproval=An expense report has been submitted for re-approval +ExpenseReportWaitingForReApprovalMessage=An expense report has been submitted and is waiting for re-approval.
The %s, you refused to approve the expense report for this reason: %s.
A new version has been proposed and waiting for your approval.
- User: %s
- Period: %s
Click here to validate: %s +ExpenseReportApproved=An expense report was approved +ExpenseReportApprovedMessage=The expense report %s was approved.
- User: %s
- Approved by: %s
Click here to show the expense report: %s +ExpenseReportRefused=An expense report was refused +ExpenseReportRefusedMessage=The expense report %s was refused.
- User: %s
- Refused by: %s
- Motive for refusal: %s
Click here to show the expense report: %s +ExpenseReportCanceled=An expense report was canceled +ExpenseReportCanceledMessage=The expense report %s was canceled.
- User: %s
- Canceled by: %s
- Motive for cancellation: %s
Click here to show the expense report: %s +ExpenseReportPaid=An expense report was paid +ExpenseReportPaidMessage=The expense report %s was paid.
- User: %s
- Paid by: %s
Click here to show the expense report: %s +TripId=Id expense report +AnyOtherInThisListCanValidate=Person to be informed for validating the request. +TripSociete=Information company +TripNDF=Informations expense report +PDFStandardExpenseReports=Standard template to generate a PDF document for expense report +ExpenseReportLine=Expense report line +TF_OTHER=Other +TF_TRIP=Transportation +TF_LUNCH=Lunch +TF_METRO=Metro +TF_TRAIN=Train +TF_BUS=Bus +TF_CAR=Car +TF_PEAGE=Toll +TF_ESSENCE=Fuel +TF_HOTEL=Hotel +TF_TAXI=Taxi +EX_KME=Mileage costs +EX_FUE=Fuel CV +EX_HOT=Hotel +EX_PAR=Parking CV +EX_TOL=Toll CV +EX_TAX=Various Taxes +EX_IND=Indemnity transportation subscription +EX_SUM=Maintenance supply +EX_SUO=Office supplies +EX_CAR=Car rental +EX_DOC=Documentation +EX_CUR=Customers receiving +EX_OTR=Other receiving +EX_POS=Postage +EX_CAM=CV maintenance and repair +EX_EMM=Employees meal +EX_GUM=Guests meal +EX_BRE=Breakfast +EX_FUE_VP=Fuel PV +EX_TOL_VP=Toll PV +EX_PAR_VP=Parking PV +EX_CAM_VP=PV maintenance and repair +DefaultCategoryCar=Default transportation mode +DefaultRangeNumber=Default range number +UploadANewFileNow=Upload a new document now +Error_EXPENSEREPORT_ADDON_NotDefined=Error, the rule for expense report numbering ref was not defined into setup of module 'Expense Report' +ErrorDoubleDeclaration=You have declared another expense report into a similar date range. +AucuneLigne=There is no expense report declared yet +ModePaiement=Payment mode +VALIDATOR=User responsible for approval +VALIDOR=Approved by +AUTHOR=Recorded by +AUTHORPAIEMENT=Paid by +REFUSEUR=Denied by +CANCEL_USER=Deleted by +MOTIF_REFUS=Reason +MOTIF_CANCEL=Reason +DATE_REFUS=Deny date +DATE_SAVE=Validation date +DATE_CANCEL=Cancelation date +DATE_PAIEMENT=Payment date +ExpenseReportRef=Ref. expense report +ValidateAndSubmit=Validate and submit for approval +ValidatedWaitingApproval=Validated (waiting for approval) +NOT_AUTHOR=You are not the author of this expense report. Operation cancelled. +ConfirmRefuseTrip=Are you sure you want to deny this expense report? +ValideTrip=Approve expense report +ConfirmValideTrip=Are you sure you want to approve this expense report? +PaidTrip=Pay an expense report +ConfirmPaidTrip=Are you sure you want to change status of this expense report to "Paid"? +ConfirmCancelTrip=Are you sure you want to cancel this expense report? +BrouillonnerTrip=Move back expense report to status "Draft" +ConfirmBrouillonnerTrip=Are you sure you want to move this expense report to status "Draft"? +SaveTrip=Validate expense report +ConfirmSaveTrip=Are you sure you want to validate this expense report? +NoTripsToExportCSV=No expense report to export for this period. +ExpenseReportPayment=Expense report payment +ExpenseReportsToApprove=Expense reports to approve +ExpenseReportsToPay=Expense reports to pay +ConfirmCloneExpenseReport=Are you sure you want to clone this expense report ? +ExpenseReportsIk=Configuration of mileage charges +ExpenseReportsRules=Expense report rules +ExpenseReportIkDesc=You can modify the calculation of kilometers expense by category and range who they are previously defined. d is the distance in kilometers +ExpenseReportRulesDesc=You can define max amount rules for expense reports. These rules will be applied when a new expense is added to an expense report +expenseReportOffset=Offset +expenseReportCoef=Coefficient +expenseReportTotalForFive=Example with d = 5 +expenseReportRangeFromTo=from %d to %d +expenseReportRangeMoreThan=more than %d +expenseReportCoefUndefined=(value not defined) +expenseReportCatDisabled=Category disabled - see the c_exp_tax_cat dictionary +expenseReportRangeDisabled=Range disabled - see the c_exp_tax_range dictionay +expenseReportPrintExample=offset + (d x coef) = %s +ExpenseReportApplyTo=Apply to +ExpenseReportDomain=Domain to apply +ExpenseReportLimitOn=Limit on +ExpenseReportDateStart=Date start +ExpenseReportDateEnd=Date end +ExpenseReportLimitAmount=Max amount +ExpenseReportRestrictive=Exceeding forbidden +AllExpenseReport=All type of expense report +OnExpense=Expense line +ExpenseReportRuleSave=Expense report rule saved +ExpenseReportRuleErrorOnSave=Error: %s +RangeNum=Range %d +ExpenseReportConstraintViolationError=Max amount exceeded (rule %s): %s is higher than %s (Exceeding forbidden) +byEX_DAY=by day (limitation to %s) +byEX_MON=by month (limitation to %s) +byEX_YEA=by year (limitation to %s) +byEX_EXP=by line (limitation to %s) +ExpenseReportConstraintViolationWarning=Max amount exceeded (rule %s): %s is higher than %s (Exceeding authorized) +nolimitbyEX_DAY=by day (no limitation) +nolimitbyEX_MON=by month (no limitation) +nolimitbyEX_YEA=by year (no limitation) +nolimitbyEX_EXP=by line (no limitation) +CarCategory=Vehicle category +ExpenseRangeOffset=Offset amount: %s +RangeIk=Mileage range +AttachTheNewLineToTheDocument=Attach the line to an uploaded document diff --git a/htdocs/langs/ms_MY/users.lang b/htdocs/langs/ms_MY/users.lang new file mode 100644 index 00000000000..d3cbbe0fa0b --- /dev/null +++ b/htdocs/langs/ms_MY/users.lang @@ -0,0 +1,130 @@ +# Dolibarr language file - Source file is en_US - users +HRMArea=HRM area +UserCard=User card +GroupCard=Group card +Permission=Permission +Permissions=Permissions +EditPassword=Edit password +SendNewPassword=Regenerate and send password +SendNewPasswordLink=Send link to reset password +ReinitPassword=Regenerate password +PasswordChangedTo=Password changed to: %s +SubjectNewPassword=Your new password for %s +GroupRights=Group permissions +UserRights=User permissions +Credentials=Credentials +UserGUISetup=User Display Setup +DisableUser=Disable +DisableAUser=Disable a user +DeleteUser=Delete +DeleteAUser=Delete a user +EnableAUser=Enable a user +DeleteGroup=Delete +DeleteAGroup=Delete a group +ConfirmDisableUser=Are you sure you want to disable user %s? +ConfirmDeleteUser=Are you sure you want to delete user %s? +ConfirmDeleteGroup=Are you sure you want to delete group %s? +ConfirmEnableUser=Are you sure you want to enable user %s? +ConfirmReinitPassword=Are you sure you want to generate a new password for user %s? +ConfirmSendNewPassword=Are you sure you want to generate and send new password for user %s? +NewUser=New user +CreateUser=Create user +LoginNotDefined=Login is not defined. +NameNotDefined=Name is not defined. +ListOfUsers=List of users +SuperAdministrator=Super Administrator +SuperAdministratorDesc=Global administrator +AdministratorDesc=Administrator +DefaultRights=Default Permissions +DefaultRightsDesc=Define here the default permissions that are automatically granted to a new user (to modify permissions for existing users, go to the user card). +DolibarrUsers=Dolibarr users +LastName=Last name +FirstName=First name +ListOfGroups=List of groups +NewGroup=New group +CreateGroup=Create group +RemoveFromGroup=Remove from group +PasswordChangedAndSentTo=Password changed and sent to %s. +PasswordChangeRequest=Request to change password for %s +PasswordChangeRequestSent=Request to change password for %s sent to %s. +IfLoginExistPasswordRequestSent=If this login is a valid account, an email to reset password has been sent. +IfEmailExistPasswordRequestSent=If this email is a valid account, an email to reset password has been sent. +ConfirmPasswordReset=Confirm password reset +MenuUsersAndGroups=Users & Groups +LastGroupsCreated=Latest %s groups created +LastUsersCreated=Latest %s users created +ShowGroup=Show group +ShowUser=Show user +NonAffectedUsers=Non assigned users +UserModified=User modified successfully +PhotoFile=Photo file +ListOfUsersInGroup=List of users in this group +ListOfGroupsForUser=List of groups for this user +LinkToCompanyContact=Link to third party / contact +LinkedToDolibarrMember=Link to member +LinkedToDolibarrUser=Link to user +LinkedToDolibarrThirdParty=Link to third party +CreateDolibarrLogin=Create a user +CreateDolibarrThirdParty=Create a third party +LoginAccountDisableInDolibarr=Account disabled in Dolibarr. +UsePersonalValue=Use personal value +InternalUser=Internal user +ExportDataset_user_1=Users and their properties +DomainUser=Domain user %s +Reactivate=Reactivate +CreateInternalUserDesc=This form allows you to create an internal user in your company/organization. To create an external user (customer, vendor etc. ..), use the button 'Create Dolibarr User' from that third-party's contact card. +InternalExternalDesc=An internal user is a user that is part of your company/organization, or is a partner user outside of your organization that may need to see more data than data related to his company (the permission system will define what he can or can't see or do).
An external user is a customer, vendor or other that must view ONLY data related to himself (Creating an external user for a third-party can be done from the contact record of the third-party).

In both cases, you must grant permissions on the features that the user need. +PermissionInheritedFromAGroup=Permission granted because inherited from one of a user's group. +Inherited=Inherited +UserWillBe=Created user will be +UserWillBeInternalUser=Created user will be an internal user (because not linked to a particular third party) +UserWillBeExternalUser=Created user will be an external user (because linked to a particular third party) +IdPhoneCaller=Id phone caller +NewUserCreated=User %s created +NewUserPassword=Password change for %s +NewPasswordValidated=Your new password have been validated and must be used now to login. +EventUserModified=User %s modified +UserDisabled=User %s disabled +UserEnabled=User %s activated +UserDeleted=User %s removed +NewGroupCreated=Group %s created +GroupModified=Group %s modified +GroupDeleted=Group %s removed +ConfirmCreateContact=Are you sure you want to create a Dolibarr account for this contact? +ConfirmCreateLogin=Are you sure you want to create a Dolibarr account for this member? +ConfirmCreateThirdParty=Are you sure you want to create a third party for this member? +LoginToCreate=Login to create +NameToCreate=Name of third party to create +YourRole=Your roles +YourQuotaOfUsersIsReached=Your quota of active users is reached ! +NbOfUsers=Number of users +NbOfPermissions=Number of permissions +DontDowngradeSuperAdmin=Only a superadmin can downgrade a superadmin +HierarchicalResponsible=Supervisor +HierarchicView=Hierarchical view +UseTypeFieldToChange=Use field Type to change +OpenIDURL=OpenID URL +LoginUsingOpenID=Use OpenID to login +WeeklyHours=Hours worked (per week) +ExpectedWorkedHours=Expected hours worked per week +ColorUser=Color of the user +DisabledInMonoUserMode=Disabled in maintenance mode +UserAccountancyCode=User accounting code +UserLogoff=User logout +UserLogged=User logged +DateOfEmployment=Employment date +DateEmployment=Employment +DateEmploymentStart=Employment Start Date +DateEmploymentEnd=Employment End Date +RangeOfLoginValidity=Access validity date range +CantDisableYourself=You can't disable your own user record +ForceUserExpenseValidator=Force expense report validator +ForceUserHolidayValidator=Force leave request validator +ValidatorIsSupervisorByDefault=By default, the validator is the supervisor of the user. Keep empty to keep this behaviour. +UserPersonalEmail=Personal email +UserPersonalMobile=Personal mobile phone +WarningNotLangOfInterface=Warning, this is the main language the user speak, not the language of the interface he choosed to see. To change the interface language visible by this user, go on tab %s +DateLastLogin=Date last login +DatePreviousLogin=Date previous login +IPLastLogin=IP last login +IPPreviousLogin=IP previous login diff --git a/htdocs/langs/ms_MY/website.lang b/htdocs/langs/ms_MY/website.lang new file mode 100644 index 00000000000..2bf46e63e9d --- /dev/null +++ b/htdocs/langs/ms_MY/website.lang @@ -0,0 +1,147 @@ +# Dolibarr language file - Source file is en_US - website +Shortname=Code +WebsiteSetupDesc=Create here the websites you wish to use. Then go into menu Websites to edit them. +DeleteWebsite=Delete website +ConfirmDeleteWebsite=Are you sure you want to delete this web site? All its pages and content will also be removed. The files uploaded (like into the medias directory, the ECM module, ...) will remain. +WEBSITE_TYPE_CONTAINER=Type of page/container +WEBSITE_PAGE_EXAMPLE=Web page to use as example +WEBSITE_PAGENAME=Page name/alias +WEBSITE_ALIASALT=Alternative page names/aliases +WEBSITE_ALIASALTDesc=Use here list of other name/aliases so the page can also be accessed using this other names/aliases (for example the old name after renaming the alias to keep backlink on old link/name working). Syntax is:
alternativename1, alternativename2, ... +WEBSITE_CSS_URL=URL of external CSS file +WEBSITE_CSS_INLINE=CSS file content (common to all pages) +WEBSITE_JS_INLINE=Javascript file content (common to all pages) +WEBSITE_HTML_HEADER=Addition at bottom of HTML Header (common to all pages) +WEBSITE_ROBOT=Robot file (robots.txt) +WEBSITE_HTACCESS=Website .htaccess file +WEBSITE_MANIFEST_JSON=Website manifest.json file +WEBSITE_README=README.md file +WEBSITE_KEYWORDSDesc=Use a comma to separate values +EnterHereLicenseInformation=Enter here meta data or license information to fille a README.md file. if you distribute your website as a template, the file will be included into the temptate package. +HtmlHeaderPage=HTML header (specific to this page only) +PageNameAliasHelp=Name or alias of the page.
This alias is also used to forge a SEO URL when website is ran from a Virtual host of a Web server (like Apacke, Nginx, ...). Use the button "%s" to edit this alias. +EditTheWebSiteForACommonHeader=Note: If you want to define a personalized header for all pages, edit the header on the site level instead of on the page/container. +MediaFiles=Media library +EditCss=Edit website properties +EditMenu=Edit menu +EditMedias=Edit medias +EditPageMeta=Edit page/container properties +EditInLine=Edit inline +AddWebsite=Add website +Webpage=Web page/container +AddPage=Add page/container +PageContainer=Page +PreviewOfSiteNotYetAvailable=The preview of your website %s is not yet available. You must first 'Import a full website template' or just 'Add a page/container'. +RequestedPageHasNoContentYet=Requested page with id %s has no content yet, or cache file .tpl.php was removed. Edit content of the page to solve this. +SiteDeleted=Web site '%s' deleted +PageContent=Page/Contenair +PageDeleted=Page/Contenair '%s' of website %s deleted +PageAdded=Page/Contenair '%s' added +ViewSiteInNewTab=View site in new tab +ViewPageInNewTab=View page in new tab +SetAsHomePage=Set as Home page +RealURL=Real URL +ViewWebsiteInProduction=View web site using home URLs +SetHereVirtualHost=Use with Apache/NGinx/...
Create on your web server (Apache, Nginx, ...) a dedicated Virtual Host with PHP enabled and a Root directory on
%s +ExampleToUseInApacheVirtualHostConfig=Example to use in Apache virtual host setup: +YouCanAlsoTestWithPHPS=Use with PHP embedded server
On develop environment, you may prefer to test the site with the PHP embedded web server (PHP 5.5 required) by running
php -S 0.0.0.0:8080 -t %s +YouCanAlsoDeployToAnotherWHP=Run your web site with another Dolibarr Hosting provider
If you don't have a web server like Apache or NGinx available on internet, you can export and import your web site onto another Dolibarr instance provided by another Dolibarr hosting provider that provide full integration with the Website module. You can find a list of some Dolibarr hosting providers on https://saas.dolibarr.org +CheckVirtualHostPerms=Check also that the virtual host user (for example www-data) has %s permissions on files into
%s +ReadPerm=Read +WritePerm=Write +TestDeployOnWeb=Test/deploy on web +PreviewSiteServedByWebServer=Preview %s in a new tab.

The %s will be served by an external web server (like Apache, Nginx, IIS). You must install and setup this server before to point to directory:
%s
URL served by external server:
%s +PreviewSiteServedByDolibarr=Preview %s in a new tab.

The %s will be served by Dolibarr server so it does not need any extra web server (like Apache, Nginx, IIS) to be installed.
The inconvenient is that the URLs of pages are not user friendly and start with the path of your Dolibarr.
URL served by Dolibarr:
%s

To use your own external web server to serve this web site, create a virtual host on your web server that points on directory
%s
then enter the name of this virtual server in the properties of this website and click on the link "Test/Deploy on the web". +VirtualHostUrlNotDefined=URL of the virtual host served by external web server not defined +NoPageYet=No pages yet +YouCanCreatePageOrImportTemplate=You can create a new page or import a full website template +SyntaxHelp=Help on specific syntax tips +YouCanEditHtmlSourceckeditor=You can edit HTML source code using the "Source" button in editor. +YouCanEditHtmlSource=
You can include PHP code into this source using tags <?php ?>. The following global variables are available: $conf, $db, $mysoc, $user, $website, $websitepage, $weblangs, $pagelangs.

You can also include content of another Page/Container with the following syntax:
<?php includeContainer('alias_of_container_to_include'); ?>

You can make a redirect to another Page/Container with the following syntax (Note: do not output any content before a redirect):
<?php redirectToContainer('alias_of_container_to_redirect_to'); ?>

To add a link to another page, use the syntax:
<a href="alias_of_page_to_link_to.php">mylink<a>

To include a link to download a file stored into the documents directory, use the document.php wrapper:
Example, for a file into documents/ecm (need to be logged), syntax is:
<a href="/document.php?modulepart=ecm&file=[relative_dir/]filename.ext">
For a file into documents/medias (open directory for public access), syntax is:
<a href="/document.php?modulepart=medias&file=[relative_dir/]filename.ext">
For a file shared with a share link (open access using the sharing hash key of file), syntax is:
<a href="/document.php?hashp=publicsharekeyoffile">

To include an image stored into the documents directory, use the viewimage.php wrapper:
Example, for an image into documents/medias (open directory for public access), syntax is:
<img src="/viewimage.php?modulepart=medias&file=[relative_dir/]filename.ext">
+#YouCanEditHtmlSource2=
To include a image shared publicaly, use the viewimage.php wrapper:
Example with a shared key 123456789, syntax is:
<img src="/viewimage.php?hashp=12345679012...">
+YouCanEditHtmlSource2=For an image shared with a share link (open access using the sharing hash key of file), syntax is:
<img src="/viewimage.php?hashp=12345679012...">
+YouCanEditHtmlSourceMore=
More examples of HTML or dynamic code available on the wiki documentation
. +ClonePage=Clone page/container +CloneSite=Clone site +SiteAdded=Website added +ConfirmClonePage=Please enter code/alias of new page and if it is a translation of the cloned page. +PageIsANewTranslation=The new page is a translation of the current page ? +LanguageMustNotBeSameThanClonedPage=You clone a page as a translation. The language of the new page must be different than language of source page. +ParentPageId=Parent page ID +WebsiteId=Website ID +CreateByFetchingExternalPage=Create page/container by fetching page from external URL... +OrEnterPageInfoManually=Or create page from scratch or from a page template... +FetchAndCreate=Fetch and Create +ExportSite=Export website +ImportSite=Import website template +IDOfPage=Id of page +Banner=Banner +BlogPost=Blog post +WebsiteAccount=Website account +WebsiteAccounts=Website accounts +AddWebsiteAccount=Create web site account +BackToListForThirdParty=Back to list for the third-party +DisableSiteFirst=Disable website first +MyContainerTitle=My web site title +AnotherContainer=This is how to include content of another page/container (you may have an error here if you enable dynamic code because the embedded subcontainer may not exists) +SorryWebsiteIsCurrentlyOffLine=Sorry, this website is currently off line. Please comme back later... +WEBSITE_USE_WEBSITE_ACCOUNTS=Enable the web site account table +WEBSITE_USE_WEBSITE_ACCOUNTSTooltip=Enable the table to store web site accounts (login/pass) for each website / third party +YouMustDefineTheHomePage=You must first define the default Home page +OnlyEditionOfSourceForGrabbedContentFuture=Warning: Creating a web page by importing an external web page is reserved for experienced users. Depending on the complexity of source page, the result of importation may differ from the original. Also if the source page uses common CSS styles or conflicting javascript, it may break the look or features of the Website editor when working on this page. This method is a quicker way to create a page but it is recommended to create your new page from scratch or from a suggested page template.
Note also that the inline editor may not works correclty when used on a grabbed external page. +OnlyEditionOfSourceForGrabbedContent=Only edition of HTML source is possible when content was grabbed from an external site +GrabImagesInto=Grab also images found into css and page. +ImagesShouldBeSavedInto=Images should be saved into directory +WebsiteRootOfImages=Root directory for website images +SubdirOfPage=Sub-directory dedicated to page +AliasPageAlreadyExists=Alias page %s already exists +CorporateHomePage=Corporate Home page +EmptyPage=Empty page +ExternalURLMustStartWithHttp=External URL must start with http:// or https:// +ZipOfWebsitePackageToImport=Upload the Zip file of the website template package +ZipOfWebsitePackageToLoad=or Choose an available embedded website template package +ShowSubcontainers=Show dynamic content +InternalURLOfPage=Internal URL of page +ThisPageIsTranslationOf=This page/container is a translation of +ThisPageHasTranslationPages=This page/container has translation +NoWebSiteCreateOneFirst=No website has been created yet. Create one first. +GoTo=Go to +DynamicPHPCodeContainsAForbiddenInstruction=You add dynamic PHP code that contains the PHP instruction '%s' that is forbidden by default as dynamic content (see hidden options WEBSITE_PHP_ALLOW_xxx to increase list of allowed commands). +NotAllowedToAddDynamicContent=You don't have permission to add or edit PHP dynamic content in websites. Ask permission or just keep code into php tags unmodified. +ReplaceWebsiteContent=Search or Replace website content +DeleteAlsoJs=Delete also all javascript files specific to this website? +DeleteAlsoMedias=Delete also all medias files specific to this website? +MyWebsitePages=My website pages +SearchReplaceInto=Search | Replace into +ReplaceString=New string +CSSContentTooltipHelp=Enter here CSS content. To avoid any conflict with the CSS of the application, be sure to prepend all declaration with the .bodywebsite class. For example:

#mycssselector, input.myclass:hover { ... }
must be
.bodywebsite #mycssselector, .bodywebsite input.myclass:hover { ... }

Note: If you have a large file without this prefix, you can use 'lessc' to convert it to append the .bodywebsite prefix everywhere. +LinkAndScriptsHereAreNotLoadedInEditor=Warning: This content is output only when site is accessed from a server. It is not used in Edit mode so if you need to load javascript files also in edit mode, just add your tag 'script src=...' into the page. +Dynamiccontent=Sample of a page with dynamic content +ImportSite=Import website template +EditInLineOnOff=Mode 'Edit inline' is %s +ShowSubContainersOnOff=Mode to execute 'dynamic content' is %s +GlobalCSSorJS=Global CSS/JS/Header file of web site +BackToHomePage=Back to home page... +TranslationLinks=Translation links +YouTryToAccessToAFileThatIsNotAWebsitePage=You try to access to a page that is not available.
(ref=%s, type=%s, status=%s) +UseTextBetween5And70Chars=For good SEO practices, use a text between 5 and 70 characters +MainLanguage=Main language +OtherLanguages=Other languages +UseManifest=Provide a manifest.json file +PublicAuthorAlias=Public author alias +AvailableLanguagesAreDefinedIntoWebsiteProperties=Available languages are defined into website properties +ReplacementDoneInXPages=Replacement done in %s pages or containers +RSSFeed=RSS Feed +RSSFeedDesc=You can get a RSS feed of latest articles with type 'blogpost' using this URL +PagesRegenerated=%s page(s)/container(s) regenerated +RegenerateWebsiteContent=Regenerate web site cache files +AllowedInFrames=Allowed in Frames +DefineListOfAltLanguagesInWebsiteProperties=Define list of all available languages into web site properties. +GenerateSitemaps=Generate website sitemap file +ConfirmGenerateSitemaps=If you confirm, you will erase the existing sitemap file... +ConfirmSitemapsCreation=Confirm sitemap generation +SitemapGenerated=Sitemap file %s generated +ImportFavicon=Favicon +ErrorFaviconType=Favicon must be png +ErrorFaviconSize=Favicon must be sized 16x16, 32x32 or 64x64 +FaviconTooltip=Upload an image which needs to be a png (16x16, 32x32 or 64x64) diff --git a/htdocs/langs/ms_MY/withdrawals.lang b/htdocs/langs/ms_MY/withdrawals.lang new file mode 100644 index 00000000000..82cd908c6a8 --- /dev/null +++ b/htdocs/langs/ms_MY/withdrawals.lang @@ -0,0 +1,159 @@ +# Dolibarr language file - Source file is en_US - withdrawals +CustomersStandingOrdersArea=Payments by Direct debit orders +SuppliersStandingOrdersArea=Payments by Credit transfer +StandingOrdersPayment=Direct debit payment orders +StandingOrderPayment=Direct debit payment order +NewStandingOrder=New direct debit order +NewPaymentByBankTransfer=New payment by credit transfer +StandingOrderToProcess=To process +PaymentByBankTransferReceipts=Credit transfer orders +PaymentByBankTransferLines=Credit transfer order lines +WithdrawalsReceipts=Direct debit orders +WithdrawalReceipt=Direct debit order +BankTransferReceipts=Credit transfer orders +BankTransferReceipt=Credit transfer order +LatestBankTransferReceipts=Latest %s credit transfer orders +LastWithdrawalReceipts=Latest %s direct debit files +WithdrawalsLine=Direct debit order line +CreditTransfer=Credit transfer +CreditTransferLine=Credit transfer line +WithdrawalsLines=Direct debit order lines +CreditTransferLines=Credit transfer lines +RequestStandingOrderToTreat=Requests for direct debit payment order to process +RequestStandingOrderTreated=Requests for direct debit payment order processed +RequestPaymentsByBankTransferToTreat=Requests for credit transfer to process +RequestPaymentsByBankTransferTreated=Requests for credit transfer processed +NotPossibleForThisStatusOfWithdrawReceiptORLine=Not yet possible. Withdraw status must be set to 'credited' before declaring reject on specific lines. +NbOfInvoiceToWithdraw=No. of qualified customer invoices with waiting direct debit order +NbOfInvoiceToWithdrawWithInfo=No. of customer invoice with direct debit payment orders having defined bank account information +NbOfInvoiceToPayByBankTransfer=No. of qualified supplier invoices waiting for a payment by credit transfer +SupplierInvoiceWaitingWithdraw=Vendor invoice waiting for payment by credit transfer +InvoiceWaitingWithdraw=Invoice waiting for direct debit +InvoiceWaitingPaymentByBankTransfer=Invoice waiting for credit transfer +AmountToWithdraw=Amount to withdraw +AmountToTransfer=Amount to transfer +NoInvoiceToWithdraw=No invoice open for '%s' is waiting. Go on tab '%s' on invoice card to make a request. +NoSupplierInvoiceToWithdraw=No supplier invoice with open 'Direct credit requests' is waiting. Go on tab '%s' on invoice card to make a request. +ResponsibleUser=User Responsible +WithdrawalsSetup=Direct debit payment setup +CreditTransferSetup=Credit transfer setup +WithdrawStatistics=Direct debit payment statistics +CreditTransferStatistics=Credit transfer statistics +Rejects=Rejects +LastWithdrawalReceipt=Latest %s direct debit receipts +MakeWithdrawRequest=Make a direct debit payment request +MakeBankTransferOrder=Make a credit transfer request +WithdrawRequestsDone=%s direct debit payment requests recorded +BankTransferRequestsDone=%s credit transfer requests recorded +ThirdPartyBankCode=Third-party bank code +NoInvoiceCouldBeWithdrawed=No invoice debited successfully. Check that invoices are on companies with a valid IBAN and that IBAN has a UMR (Unique Mandate Reference) with mode %s. +WithdrawalCantBeCreditedTwice=This withdrawal receipt is already marked as credited; this can't be done twice, as this would potentially create duplicate payments and bank entries. +ClassCredited=Classify credited +ClassDebited=Classify debited +ClassCreditedConfirm=Are you sure you want to classify this withdrawal receipt as credited on your bank account? +TransData=Transmission date +TransMetod=Transmission method +Send=Send +Lines=Lines +StandingOrderReject=Issue a rejection +WithdrawsRefused=Direct debit refused +WithdrawalRefused=Withdrawal refused +CreditTransfersRefused=Credit transfers refused +WithdrawalRefusedConfirm=Are you sure you want to enter a withdrawal rejection for society +RefusedData=Date of rejection +RefusedReason=Reason for rejection +RefusedInvoicing=Billing the rejection +NoInvoiceRefused=Do not charge the rejection +InvoiceRefused=Invoice refused (Charge the rejection to customer) +StatusDebitCredit=Status debit/credit +StatusWaiting=Waiting +StatusTrans=Sent +StatusDebited=Debited +StatusCredited=Credited +StatusPaid=Paid +StatusRefused=Refused +StatusMotif0=Unspecified +StatusMotif1=Insufficient funds +StatusMotif2=Request contested +StatusMotif3=No direct debit payment order +StatusMotif4=Sales Order +StatusMotif5=RIB unusable +StatusMotif6=Account without balance +StatusMotif7=Judicial Decision +StatusMotif8=Other reason +CreateForSepaFRST=Create direct debit file (SEPA FRST) +CreateForSepaRCUR=Create direct debit file (SEPA RCUR) +CreateAll=Create direct debit file +CreateFileForPaymentByBankTransfer=Create file for credit transfer +CreateSepaFileForPaymentByBankTransfer=Create credit transfer file (SEPA) +CreateGuichet=Only office +CreateBanque=Only bank +OrderWaiting=Waiting for treatment +NotifyTransmision=Record file transmission of order +NotifyCredit=Record credit of order +NumeroNationalEmetter=National Transmitter Number +WithBankUsingRIB=For bank accounts using RIB +WithBankUsingBANBIC=For bank accounts using IBAN/BIC/SWIFT +BankToReceiveWithdraw=Receiving Bank Account +BankToPayCreditTransfer=Bank Account used as source of payments +CreditDate=Credit on +WithdrawalFileNotCapable=Unable to generate withdrawal receipt file for your country %s (Your country is not supported) +ShowWithdraw=Show Direct Debit Order +IfInvoiceNeedOnWithdrawPaymentWontBeClosed=However, if invoice has at least one direct debit payment order not yet processed, it won't be set as paid to allow prior withdrawal management. +DoStandingOrdersBeforePayments=This tab allows you to request a direct debit payment order. Once done, go into menu Bank->Payment by direct debit to generate and manage the direct debit order. When direct debit order is closed, payment on invoices will be automatically recorded, and invoices closed if remainder to pay is null. +DoCreditTransferBeforePayments=This tab allows you to request a credit transfer order. Once done, go into menu Bank->Payment by credit transfer to generate and manage the credit transfer order. When credit transfer order is closed, payment on invoices will be automatically recorded, and invoices closed if remainder to pay is null. +WithdrawalFile=Debit order file +CreditTransferFile=Credit transfer file +SetToStatusSent=Set to status "File Sent" +ThisWillAlsoAddPaymentOnInvoice=This will also record payments on invoices and will classify them as "Paid" if remain to pay is null +StatisticsByLineStatus=Statistics by status of lines +RUM=UMR +DateRUM=Mandate signature date +RUMLong=Unique Mandate Reference +RUMWillBeGenerated=If empty, a UMR (Unique Mandate Reference) will be generated once the bank account information is saved. +WithdrawMode=Direct debit mode (FRST or RECUR) +WithdrawRequestAmount=Amount of Direct debit request: +BankTransferAmount=Amount of Credit Transfer request: +WithdrawRequestErrorNilAmount=Unable to create direct debit request for empty amount. +SepaMandate=SEPA Direct Debit Mandate +SepaMandateShort=SEPA Mandate +PleaseReturnMandate=Please return this mandate form by email to %s or by mail to +SEPALegalText=By signing this mandate form, you authorize (A) %s to send instructions to your bank to debit your account and (B) your bank to debit your account in accordance with the instructions from %s. As part of your rights, you are entitled to a refund from your bank under the terms and conditions of your agreement with your bank. Your rights regarding the above mandate are explained in a statement that you can obtain from your bank. +CreditorIdentifier=Creditor Identifier +CreditorName=Creditor Name +SEPAFillForm=(B) Please complete all the fields marked * +SEPAFormYourName=Your name +SEPAFormYourBAN=Your Bank Account Name (IBAN) +SEPAFormYourBIC=Your Bank Identifier Code (BIC) +SEPAFrstOrRecur=Type of payment +ModeRECUR=Recurring payment +ModeFRST=One-off payment +PleaseCheckOne=Please check one only +CreditTransferOrderCreated=Credit transfer order %s created +DirectDebitOrderCreated=Direct debit order %s created +AmountRequested=Amount requested +SEPARCUR=SEPA CUR +SEPAFRST=SEPA FRST +ExecutionDate=Execution date +CreateForSepa=Create direct debit file +ICS=Creditor Identifier - ICS +IDS=Debitor Identifier +END_TO_END="EndToEndId" SEPA XML tag - Unique id assigned per transaction +USTRD="Unstructured" SEPA XML tag +ADDDAYS=Add days to Execution Date +NoDefaultIBANFound=No default IBAN found for this third party +### Notifications +InfoCreditSubject=Payment of direct debit payment order %s by the bank +InfoCreditMessage=The direct debit payment order %s has been paid by the bank
Data of payment: %s +InfoTransSubject=Transmission of direct debit payment order %s to bank +InfoTransMessage=The direct debit payment order %s has been sent to bank by %s %s.

+InfoTransData=Amount: %s
Method: %s
Date: %s +InfoRejectSubject=Direct debit payment order refused +InfoRejectMessage=Hello,

the direct debit payment order of invoice %s related to the company %s, with an amount of %s has been refused by the bank.

--
%s +ModeWarning=Option for real mode was not set, we stop after this simulation +ErrorCompanyHasDuplicateDefaultBAN=Company with id %s has more than one default bank account. No way to know wich one to use. +ErrorICSmissing=Missing ICS in Bank account %s +TotalAmountOfdirectDebitOrderDiffersFromSumOfLines=Total amount of direct debit order differs from sum of lines +WarningSomeDirectDebitOrdersAlreadyExists=Warning: There is already some pending Direct Debit orders (%s) requested for an amount of %s +WarningSomeCreditTransferAlreadyExists=Warning: There is already some pending Credit Transfer (%s) requested for an amount of %s +UsedFor=Used for %s diff --git a/htdocs/langs/ms_MY/workflow.lang b/htdocs/langs/ms_MY/workflow.lang new file mode 100644 index 00000000000..2d7914f6139 --- /dev/null +++ b/htdocs/langs/ms_MY/workflow.lang @@ -0,0 +1,36 @@ +# Dolibarr language file - Source file is en_US - workflow +WorkflowSetup=Workflow module setup +WorkflowDesc=This module provides some automatic actions. By default, the workflow is open (you can do things in the order you want) but here you can activate some automatic actions. +ThereIsNoWorkflowToModify=There is no workflow modifications available with the activated modules. +# Autocreate +descWORKFLOW_PROPAL_AUTOCREATE_ORDER=Automatically create a sales order after a commercial proposal is signed (the new order will have same amount as the proposal) +descWORKFLOW_PROPAL_AUTOCREATE_INVOICE=Automatically create a customer invoice after a commercial proposal is signed (the new invoice will have same amount as the proposal) +descWORKFLOW_CONTRACT_AUTOCREATE_INVOICE=Automatically create a customer invoice after a contract is validated +descWORKFLOW_ORDER_AUTOCREATE_INVOICE=Automatically create a customer invoice after a sales order is closed (the new invoice will have same amount as the order) +descWORKFLOW_TICKET_CREATE_INTERVENTION=On ticket creation, automatically create an intervention. +# Autoclassify customer proposal or order +descWORKFLOW_ORDER_CLASSIFY_BILLED_PROPAL=Classify linked source proposal as billed when sales order is set to billed (and if the amount of the order is the same as the total amount of the signed linked proposal) +descWORKFLOW_INVOICE_CLASSIFY_BILLED_PROPAL=Classify linked source proposal as billed when customer invoice is validated (and if the amount of the invoice is the same as the total amount of the signed linked proposal) +descWORKFLOW_INVOICE_AMOUNT_CLASSIFY_BILLED_ORDER=Classify linked source sales order as billed when customer invoice is validated (and if the amount of the invoice is the same as the total amount of the linked order) +descWORKFLOW_INVOICE_CLASSIFY_BILLED_ORDER=Classify linked source sales order as billed when customer invoice is set to paid (and if the amount of the invoice is the same as the total amount of the linked order) +descWORKFLOW_ORDER_CLASSIFY_SHIPPED_SHIPPING=Classify linked source sales order as shipped when a shipment is validated (and if the quantity shipped by all shipments is the same as in the order to update) +descWORKFLOW_ORDER_CLASSIFY_SHIPPED_SHIPPING_CLOSED=Classify linked source sales order as shipped when a shipment is closed (and if the quantity shipped by all shipments is the same as in the order to update) +# Autoclassify purchase proposal +descWORKFLOW_ORDER_CLASSIFY_BILLED_SUPPLIER_PROPOSAL=Classify linked source vendor proposal as billed when vendor invoice is validated (and if the amount of the invoice is the same as the total amount of the linked proposal) +# Autoclassify purchase order +descWORKFLOW_INVOICE_AMOUNT_CLASSIFY_BILLED_SUPPLIER_ORDER=Classify linked source purchase order as billed when vendor invoice is validated (and if the amount of the invoice is the same as the total amount of the linked order) +descWORKFLOW_ORDER_CLASSIFY_RECEIVED_RECEPTION=Classify linked source purchase order as received when a reception is validated (and if the quantity received by all receptions is the same as in the purchase order to update) +descWORKFLOW_ORDER_CLASSIFY_RECEIVED_RECEPTION_CLOSED=Classify linked source purchase order as received when a reception is closed (and if the quantity received by all rceptions is the same as in the purchase order to update) +# Autoclassify purchase invoice +descWORKFLOW_BILL_ON_RECEPTION=Classify receptions to "billed" when a linked supplier order is validated +# Automatically link ticket to contract +descWORKFLOW_TICKET_LINK_CONTRACT=When creating a ticket, link available contracts of matching thirdparty +descWORKFLOW_TICKET_USE_PARENT_COMPANY_CONTRACTS=When linking contracts, search among those of parents companies +# Autoclose intervention +descWORKFLOW_TICKET_CLOSE_INTERVENTION=Close all interventions linked to the ticket when a ticket is closed +AutomaticCreation=Automatic creation +AutomaticClassification=Automatic classification +# Autoclassify shipment +descWORKFLOW_SHIPPING_CLASSIFY_CLOSED_INVOICE=Classify linked source shipment as closed when customer invoice is validated +AutomaticClosing=Automatic closing +AutomaticLinking=Automatic linking diff --git a/htdocs/langs/ms_MY/zapier.lang b/htdocs/langs/ms_MY/zapier.lang new file mode 100644 index 00000000000..b4cc4ccba4a --- /dev/null +++ b/htdocs/langs/ms_MY/zapier.lang @@ -0,0 +1,21 @@ +# Copyright (C) 2019 Frédéric FRANCE +# +# 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 . + +ModuleZapierForDolibarrName = Zapier for Dolibarr +ModuleZapierForDolibarrDesc = Zapier for Dolibarr module +ZapierForDolibarrSetup=Setup of Zapier for Dolibarr +ZapierDescription=Interface with Zapier +ZapierAbout=About the module Zapier +ZapierSetupPage=There is no need for a setup on Dolibarr side to use Zapier. However, you must generate and publish a package on zapier to be able to use Zapier with Dolibarr. See documentation on this wiki page. diff --git a/htdocs/langs/nb_NO/accountancy.lang b/htdocs/langs/nb_NO/accountancy.lang index 2797847c77a..ab895b875db 100644 --- a/htdocs/langs/nb_NO/accountancy.lang +++ b/htdocs/langs/nb_NO/accountancy.lang @@ -48,8 +48,9 @@ CountriesNotInEEC=Land ikke i EEC CountriesInEECExceptMe=Land i EEC unntatt %s CountriesExceptMe=Alle land unntatt %s AccountantFiles=Eksporter kildedokumenter -ExportAccountingSourceDocHelp=Med dette verktøyet kan du eksportere kildehendelsene (liste i CSV og PDF-er) som brukes til å generere regnskapet ditt. +ExportAccountingSourceDocHelp=With this tool, you can search and export the source events that are used to generate your accountancy.
The exported ZIP file will contain the lists of requested items in CSV, as well as their attached files in their original format (PDF, ODT, DOCX...). ExportAccountingSourceDocHelp2=For å eksportere journalene dine, bruk menyoppføringen %s - %s. +ExportAccountingProjectHelp=Specify a project if you need an accounting report only for a specific project. Expense reports and loan payments are not included in project reports. VueByAccountAccounting=Vis etter regnskapskonto VueBySubAccountAccounting=Vis etter regnskaps-subkonto @@ -161,7 +162,7 @@ BANK_DISABLE_DIRECT_INPUT=Deaktiver direkteregistrering av transaksjoner på ban ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL=Aktiver eksportutkast i journal ACCOUNTANCY_COMBO_FOR_AUX=Enable combo list for subsidiary account (may be slow if you have a lot of third parties, break ability to search on a part of value) ACCOUNTING_DATE_START_BINDING=Definer en dato for å starte binding og overføring i regnskap. Etter denne datoen vil ikke transaksjonene bli overført til regnskap. -ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=Velg regnskapsvisning som standard ved overføring av regnskap +ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=On accountancy transfer, what is the period selected by default ACCOUNTING_SELL_JOURNAL=Salgsjournal ACCOUNTING_PURCHASE_JOURNAL=Innkjøpsjournal @@ -182,7 +183,7 @@ DONATION_ACCOUNTINGACCOUNT=Regnskapskonto for registrering av donasjoner ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=Regnskapskonto for å registrere abonnementer ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=Regnskapskonto som standard for å registrere kundeinnskudd -UseAuxiliaryAccountOnCustomerDeposit=Use sub-accounts on customer deposit lines +UseAuxiliaryAccountOnCustomerDeposit=Store customer account as individual account in subsidiary ledger for lines of down payments (if disabled, individual account for down payment lines will remain empty) ACCOUNTING_PRODUCT_BUY_ACCOUNT=Regnskapskonto som standard for de kjøpte varene (brukt hvis ikke definert i produktarket) ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT=Regnskapskonto som standard for kjøpte produkter i EU (brukt hvis ikke definert i produktarket) @@ -332,7 +333,7 @@ ACCOUNTING_DISABLE_BINDING_ON_EXPENSEREPORTS=Deaktiver binding og overføring ti ## Export NotifiedExportDate=Flag exported lines as Exported (to modify a line, you will need to delete the whole transaction and re-transfert it into accounting) -NotifiedValidationDate=Validate and Lock the exported entries (same effect than the "Closure" feature, modification and deletion of the lines will DEFINITELY not be possible) +NotifiedValidationDate=Validate and Lock the exported entries (same effect than the "%s" feature, modification and deletion of the lines will DEFINITELY not be possible) DateValidationAndLock=Datovalidering og lås ConfirmExportFile=Bekreftelse på generering av regnskapseksportfilen ? ExportDraftJournal=Eksporter utkastjournal @@ -427,6 +428,7 @@ SorryThisModuleIsNotCompatibleWithTheExperimentalFeatureOfSituationInvoices=Sorr AccountancyErrorMismatchLetterCode=Mismatch in reconcile code AccountancyErrorMismatchBalanceAmount=Saldoen (%s) er ikke lik 0 AccountancyErrorLetteringBookkeeping=Det har oppstått feil angående transaksjonene: %s +ErrorAccountNumberAlreadyExists=The accounting number %s already exists ## Import ImportAccountingEntries=Regnskapsposter diff --git a/htdocs/langs/nb_NO/holiday.lang b/htdocs/langs/nb_NO/holiday.lang index ba51387b850..7ba17e62941 100644 --- a/htdocs/langs/nb_NO/holiday.lang +++ b/htdocs/langs/nb_NO/holiday.lang @@ -4,6 +4,7 @@ Holidays=Permisjon CPTitreMenu=Permisjon MenuReportMonth=Månedlig uttalelse MenuAddCP=Ny feriesøknad +MenuCollectiveAddCP=New collective leave request NotActiveModCP=Du må aktivere modulen Permisjon for å vise denne siden. AddCP=Opprett feriesøknad DateDebCP=Startdato @@ -79,6 +80,8 @@ MotifCP=Begrunnelse UserCP=Bruker ErrorAddEventToUserCP=En feil oppsto ved opprettelse av ekstraordinær ferie AddEventToUserOkCP=Opprettelse av ekstraordinær ferie er utført +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=Vis endringslogger LogCP=Log of all updates made to "Balance of Leave" ActionByCP=Oppdatert av @@ -86,6 +89,13 @@ UserUpdateCP=Oppdatert for PrevSoldeCP=Forrige balanse NewSoldeCP=Ny balanse alreadyCPexist=En feriesøknad er allerede utført for denne perioden +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Grupper +users=Brukere +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Første dag for permisjon LastDayOfHoliday=Siste dag for permisjon BoxTitleLastLeaveRequests=Siste %s endrede ferieforespørsler diff --git a/htdocs/langs/nb_NO/hrm.lang b/htdocs/langs/nb_NO/hrm.lang index 15245345151..2d214e6d142 100644 --- a/htdocs/langs/nb_NO/hrm.lang +++ b/htdocs/langs/nb_NO/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Åpne firma CloseEtablishment=Lukk firma # Dictionary DictionaryPublicHolidays=Permisjon - helligdager -DictionaryDepartment=HRM - Departementliste +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM - Jobbstillinger # Module Employees=Ansatte @@ -70,9 +70,9 @@ RequiredSkills=Nødvendig kompetanse for denne jobben UserRank=Brukerrangering SkillList=Ferdighetsliste SaveRank=Lagre rangering -knowHow=Know how -HowToBe=How to be -knowledge=Kunnskap +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Kunnskap AbandonmentComment=Abandonment comment DateLastEval=Date last evaluation NoEval=Ingen evaluering gjort for denne ansatte @@ -88,3 +88,4 @@ DeleteSkill = Skill removed SkillsExtraFields=Attributs supplémentaires (Compétences) JobsExtraFields=Attributs supplémentaires (Emplois) EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/nb_NO/install.lang b/htdocs/langs/nb_NO/install.lang index c6833cd2b5d..4605a2e999d 100644 --- a/htdocs/langs/nb_NO/install.lang +++ b/htdocs/langs/nb_NO/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=Konfigurasjonsfil %s er ikke skrivbar. Sjekk tillat ConfFileIsWritable=Konfigurasjonsfil %s er skrivbar. ConfFileMustBeAFileNotADir=Konfigurasjonsfil %s må være en fil, ikke en katalog. ConfFileReload=Laster parametere fra konfigurasjonsfilen på nytt. -NoReadableConfFileSoStartInstall=Konfigurasjonsfilen conf/conf.php eksisterer ikke eller kan ikke gjenopprettes. Vi kjører installasjonsprosessen for å prøve å initialisere den. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=Dette PHP støtter variablene POST og GET. PHPSupportPOSTGETKo=Det er mulig at ditt PHP-oppsett ikke støtter variablene POST og/eller GET. Sjekk parametrene variables_order i php.ini. PHPSupportSessions=Denne PHP støtter sesjoner. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Du har kanskje skrevet feil verdi for parameteren '% ErrorFailedToCreateDatabase=Kunne ikke opprette database '%s'. ErrorFailedToConnectToDatabase=Kunne ikke koble til database '%s'. ErrorDatabaseVersionTooLow=Databaseversjonen (%s) er for gammel. Versjon %s eller senere kreves -ErrorPHPVersionTooLow=PHP-versjonen er for gammel. Versjon %s er nødvendig. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Tilkobling til server vellykket, men database '%s' ikke funnet. ErrorDatabaseAlreadyExists=Database '%s' finnes allerede. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=Hvis databasen ikke finnes, gå tilbake og kryss av alternativet "Opprett database". IfDatabaseExistsGoBackAndCheckCreate=Hvis databasen allerede eksisterer, gå tilbake og fjern "Opprett database" alternativet. WarningBrowserTooOld=Nettleseren din er utdatert. Det anbefales å oppgradere til siste versjon av Firefox, Chrome eller Opera. diff --git a/htdocs/langs/nb_NO/main.lang b/htdocs/langs/nb_NO/main.lang index a685755c59d..002c7a202be 100644 --- a/htdocs/langs/nb_NO/main.lang +++ b/htdocs/langs/nb_NO/main.lang @@ -345,7 +345,7 @@ KiloBytes=Kilobyte MegaBytes=Megabyte GigaBytes=Gigabyte TeraBytes=Terabyte -UserAuthor=Opprettet av +UserAuthor=Laget av UserModif=Oppdatert av b=b. Kb=Kb @@ -712,6 +712,7 @@ FeatureDisabled=Funksjonen er slått av MoveBox=Flytt widget Offered=Tilbudt NotEnoughPermissions=Du har ikke tillatelse til å gjøre denne handlingen +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=Sesjonnavn Method=Metode Receive=Motta @@ -801,6 +802,7 @@ URLPhoto=Url til bilde/logo SetLinkToAnotherThirdParty=Link til en annen tredjepart LinkTo=Lenke til LinkToProposal=Lenke til tilbud +LinkToExpedition= Link to expedition LinkToOrder=Lenke til ordre LinkToInvoice=Lenke til faktura LinkToTemplateInvoice=Link til fakturamal @@ -1174,6 +1176,7 @@ ConfirmAllocateCommercial=Assign sales representative confirmation ConfirmAllocateCommercialQuestion=Are you sure you want to assign the %s selected record(s)? CommercialsAffected=Sales representatives affected CommercialAffected=Sales representative affected -YourMessage=Din melding +YourMessage=Your message YourMessageHasBeenReceived=Meldingen din er mottatt. Vi vil svare eller kontakte deg så snart som mulig. UrlToCheck=URL for å sjekke +Automation=Automation diff --git a/htdocs/langs/nb_NO/members.lang b/htdocs/langs/nb_NO/members.lang index a461ba8ceda..737c0666b06 100644 --- a/htdocs/langs/nb_NO/members.lang +++ b/htdocs/langs/nb_NO/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=End date of membership EndSubscription=End of membership SubscriptionId=Contribution ID WithoutSubscription=Without contribution -MemberId=Medlems-ID +MemberId=Member Id +MemberRef=Member Ref NewMember=Nytt medlem MemberType=Medlemstype MemberTypeId=Medlemstype-ID @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Medlemstype kan ikke slettes NewSubscription=Nytt bidrag NewSubscriptionDesc=Med dette skjemaet kan du ta opp abonnement som nytt medlem av organisasjonen. Hvis du ønsker å fornye abonnementet (hvis du allerede er medlem), vennligst kontakt organisasjonsstyret i stedet ved e-post %s. Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Varighet +GetMembershipButtonLabel=Get membership Subscriptions=Contributions SubscriptionLate=Forsinket SubscriptionNotReceived=Contribution never received @@ -135,7 +142,7 @@ CardContent=Innhold på medlemskortet ditt # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=Din forespørsel om medlemskap ble mottatt.

ThisIsContentOfYourMembershipWasValidated=Ditt medlemskap ble validert med følgende opplysninger:

-ThisIsContentOfYourSubscriptionWasRecorded=Det nye abonnementet ditt ble registrert.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=Vi vil fortelle deg at abonnementet ditt er i ferd med å utløpe eller allerede er utløpt (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Vi håper du vil fornye det.

ThisIsContentOfYourCard=Dette er et sammendrag av informasjonen vi har om deg. Ta kontakt med oss hvis noe er feil.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Emnet i e-post som mottas i tilfelle auto-inskripsjon av en gjest @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=Omsetning (for et selskap) eller Budsjett (for en organisasjon) DefaultAmount=Default amount of contribution -CanEditAmount=Visitor can choose/edit amount of its contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Gå til online betalingsside ByProperties=Etter egenskap MembersStatisticsByProperties=Medlemsstatistikk etter egenskap diff --git a/htdocs/langs/nb_NO/projects.lang b/htdocs/langs/nb_NO/projects.lang index 5e694e906dd..f3bcad43f4c 100644 --- a/htdocs/langs/nb_NO/projects.lang +++ b/htdocs/langs/nb_NO/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=Tidsbruk fakturert TimeSpentForIntervention=Tid brukt TimeSpentForInvoice=Tid brukt OneLinePerUser=Én linje per bruker -ServiceToUseOnLines=Tjeneste for bruk på linjer +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=Faktura %s er generert fra tid brukt på prosjekt InterventionGeneratedFromTimeSpent=Intervention %s has been generated from time spent on project ProjectBillTimeDescription=Sjekk om du legger inn timeliste på prosjektoppgaver, OG planlegger å generere faktura (er) fra timelisten for å fakturere kunden til prosjektet (ikke kryss av om du planlegger å opprette faktura som ikke er basert på innlagte timelister). Merk: For å generere faktura, gå til fanen 'Tidsbruk' av prosjektet og velg linjer du vil inkludere. @@ -294,3 +294,4 @@ EnablePublicLeadForm=Aktiver det offentlige skjemaet for kontakt NewLeadbyWeb=Din melding eller forespørsel er registrert. Vi vil svare eller kontakte deg snart. NewLeadForm=Nytt kontaktskjema LeadFromPublicForm=Online mulighet fra offentlig form +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/nb_NO/stocks.lang b/htdocs/langs/nb_NO/stocks.lang index 6ad2315b946..f0230b8431c 100644 --- a/htdocs/langs/nb_NO/stocks.lang +++ b/htdocs/langs/nb_NO/stocks.lang @@ -265,6 +265,7 @@ ProductBarcodeDoesNotExist=Product with barcode does not exist WarehouseId=Lager-ID WarehouseRef=Lager Ref SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ToStart=Start InventoryStartedShort=Startet ErrorOnElementsInventory=Operation canceled for the following reason: ErrorCantFindCodeInInventory=Can't find the following code in inventory @@ -272,3 +273,45 @@ QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requ StockChangeDisabled=Change on stock disabled NoWarehouseDefinedForTerminal=No warehouse defined for terminal ClearQtys=Clear all quantities +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=Innstillinger +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/nb_NO/ticket.lang b/htdocs/langs/nb_NO/ticket.lang index 203e5da2ac4..bc9e688db75 100644 --- a/htdocs/langs/nb_NO/ticket.lang +++ b/htdocs/langs/nb_NO/ticket.lang @@ -90,8 +90,8 @@ TicketPublicAccess=Et offentlig grensesnitt som ikke krever identifikasjon er ti TicketSetupDictionaries=Typen av billett, alvorlighetsgrad og analytiske koder kan konfigureres fra ordbøker TicketParamModule=Oppsett av modulvariabler TicketParamMail=Epostoppsett -TicketEmailNotificationFrom=Avsender e-post for billettsvar -TicketEmailNotificationFromHelp=Avsender e-post for billettsvar sendt fra Dolibarr +TicketEmailNotificationFrom=Sender e-mail for notification on answers +TicketEmailNotificationFromHelp=Sender e-mail to use to send the notification email when an answer is provided inside the backoffice. For example noreply@example.com TicketEmailNotificationTo=Gi beskjed om opprettelse av billett til denne e-postadressen TicketEmailNotificationToHelp=Hvis tilstede, vil denne e-postadressen bli varslet om en billettoppretting TicketNewEmailBodyLabel=Tekstmelding sendt etter å ha opprettet en billett diff --git a/htdocs/langs/nl_BE/hrm.lang b/htdocs/langs/nl_BE/hrm.lang index a8577d55908..cf330ae1f6d 100644 --- a/htdocs/langs/nl_BE/hrm.lang +++ b/htdocs/langs/nl_BE/hrm.lang @@ -7,5 +7,4 @@ DeleteEstablishment=Verwijderen inrichting ConfirmDeleteEstablishment=Weet U zeker dat U deze inrichting wilt verwijderen ? OpenEtablishment=Open inrichting CloseEtablishment=Sluit inrichting -DictionaryDepartment=HRM - afdelingen lijst ListOfEmployees=Lijst van werknemers diff --git a/htdocs/langs/nl_BE/main.lang b/htdocs/langs/nl_BE/main.lang index cb91c64d6a6..f6d2fa70c33 100644 --- a/htdocs/langs/nl_BE/main.lang +++ b/htdocs/langs/nl_BE/main.lang @@ -62,6 +62,7 @@ UserCreationShort=Creat. gebruiker UserModificationShort=Modif. gebruiker UserValidationShort=Geldig. gebruiker CurrencyRate=Wisselkoers van valuta +UserAuthor=Gemaakt door Amount=Hoeveelheid MulticurrencyRemainderToPay=Blijf betalen, oorspronkelijke valuta MulticurrencyAmountHT=Bedrag (excl. Btw), oorspronkelijke valuta diff --git a/htdocs/langs/nl_BE/members.lang b/htdocs/langs/nl_BE/members.lang index 89979e6cc3a..deae7d94f52 100644 --- a/htdocs/langs/nl_BE/members.lang +++ b/htdocs/langs/nl_BE/members.lang @@ -1,2 +1,13 @@ # Dolibarr language file - Source file is en_US - members +MemberCard=Lidmaatschapskaart +ShowMember=Toon lidmaatschapskaart +FundationMembers=Stichtingsleden / -donateurs +SetLinkToUser=Link naar een Dolibarr gebruiker MemberStatusDraft=Conceptfactuur (moet worden gevalideerd) +NewSubscriptionDesc=Met dit formulier kunt u uw abonnement te nemen als nieuw lid van de stichting. Wilt u uw abonnement te verlengen (indien reeds lid is), dan kunt u in plaats daarvan contact op met stichtingsbestuur via e-mail %s. +AddMember=Creeer lid +NoTypeDefinedGoToSetup=Geen lidtypes ingesteld. Ga naar Home->Setup->Ledentypes +PublicMemberCard=Publieke lidmaatschapskaart +MembersStatisticsByState=Leden statistieken per staat / provincie +MembersStatisticsDesc=Kies de statistieken die u wilt lezen ... +TurnoverOrBudget=Omzet (voor een bedrijf) of Budget (voor een stichting) diff --git a/htdocs/langs/nl_NL/accountancy.lang b/htdocs/langs/nl_NL/accountancy.lang index 20b781bc8a9..5af82a1b012 100644 --- a/htdocs/langs/nl_NL/accountancy.lang +++ b/htdocs/langs/nl_NL/accountancy.lang @@ -48,8 +48,9 @@ CountriesNotInEEC=Landen buiten de EU CountriesInEECExceptMe=EU landen behalve %s CountriesExceptMe=Alle landen behalve %s AccountantFiles=Bron-documenten exporteren -ExportAccountingSourceDocHelp=Met deze tool kunt u de bron events (lijst in CSV en PDF) exporteren die zijn gebruikt om om uw boekhouding te genereren. +ExportAccountingSourceDocHelp=With this tool, you can search and export the source events that are used to generate your accountancy.
The exported ZIP file will contain the lists of requested items in CSV, as well as their attached files in their original format (PDF, ODT, DOCX...). ExportAccountingSourceDocHelp2=Gebruik het menu-item %s - %s om uw dagboeken te exporteren. +ExportAccountingProjectHelp=Specify a project if you need an accounting report only for a specific project. Expense reports and loan payments are not included in project reports. VueByAccountAccounting=Overzicht per grootboekrekening VueBySubAccountAccounting=Overzicht op volgorde subrekening @@ -161,7 +162,7 @@ BANK_DISABLE_DIRECT_INPUT=Rechtstreeks boeken van transactie in bankboek uitzett ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL=Schakel concept export van het journaal in ACCOUNTANCY_COMBO_FOR_AUX=Schakel combolijst in voor dochteronderneming-account (kan traag zijn als je veel derden hebt, verbreek de mogelijkheid om op een deel van de waarde te zoeken) ACCOUNTING_DATE_START_BINDING=Definieer een startdatum voor het koppelen en doorboeken naar de boekhouding. Transacties voor deze datum worden niet doorgeboekt naar de boekhouding. -ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=Selecteer bij boekhoudkundige overdracht standaard periodeweergave +ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=On accountancy transfer, what is the period selected by default ACCOUNTING_SELL_JOURNAL=Verkoopboek ACCOUNTING_PURCHASE_JOURNAL=Inkoopboek @@ -182,7 +183,7 @@ DONATION_ACCOUNTINGACCOUNT=Grootboeknummer voor donaties ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=Grootboekrekening om abonnementen te registreren ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=Standaard grootboekrekening voor storting door klant -UseAuxiliaryAccountOnCustomerDeposit=Use sub-accounts on customer deposit lines +UseAuxiliaryAccountOnCustomerDeposit=Store customer account as individual account in subsidiary ledger for lines of down payments (if disabled, individual account for down payment lines will remain empty) ACCOUNTING_PRODUCT_BUY_ACCOUNT=Standaard grootboekrekening voor de gekochte producten (gebruikt indien niet gedefinieerd in de productfiche) ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT=Grootboekrekening standaard voor de gekochte producten binnen de EU (gebruikt indien niet gedefinieerd in het productblad) @@ -279,10 +280,10 @@ DescVentilExpenseReportMore=Als u een account instelt op het type onkostendeclar DescVentilDoneExpenseReport=Hier kunt u de lijst raadplegen van kostenregels met hun tegenrekening Closure=Jaarafsluiting -DescClosure=Consult here the number of movements by month who are not yet validated & locked -OverviewOfMovementsNotValidated=Overview of movements not validated and locked -AllMovementsWereRecordedAsValidated=All movements were recorded as validated and locked -NotAllMovementsCouldBeRecordedAsValidated=Not all movements could be recorded as validated and locked +DescClosure=Raadpleeg hier het aantal bewegingen per maand die nog niet gevalideerd & vergrendeld zijn +OverviewOfMovementsNotValidated=Overzicht van bewegingen niet gevalideerd en vergrendeld +AllMovementsWereRecordedAsValidated=Alle bewegingen werden geregistreerd als gevalideerd en vergrendeld +NotAllMovementsCouldBeRecordedAsValidated=Niet alle bewegingen konden als gevalideerd en vergrendeld worden geregistreerd ValidateMovements=Valideer wijzigingen DescValidateMovements=Elke wijziging of verwijdering van inboeken, afletteren en verwijderingen is verboden. Alle boekingen moeten worden gevalideerd, anders is afsluiten niet mogelijk @@ -290,7 +291,7 @@ ValidateHistory=Automatisch boeken AutomaticBindingDone=Automatische bindings uitgevoerd (%s) - Automatische binding was niet mogelijk voor record (%s) ErrorAccountancyCodeIsAlreadyUse=Fout. U kunt geen grootboekrekening verwijderen welke in gebruik is. -MvtNotCorrectlyBalanced=Movement not correctly balanced. Debit = %s & Credit = %s +MvtNotCorrectlyBalanced=Beweging niet correct gebalanceerd. Debet = %s & Credit = %s Balancing=Balansen FicheVentilation=Koppelen card GeneralLedgerIsWritten=Grootboek transacties @@ -303,7 +304,7 @@ NotYetAccounted=Nog niet overgezet naar boekhouding ShowTutorial=Handleiding weergeven NotReconciled=Niet afgestemd WarningRecordWithoutSubledgerAreExcluded=Pas op, alle bewerkingen zonder gedefinieerde sub grootboekrekening worden gefilterd en uitgesloten van deze weergave -AccountRemovedFromCurrentChartOfAccount=Accounting account that does not exist in the current chart of accounts +AccountRemovedFromCurrentChartOfAccount=Boekhoudrekening die niet bestaat in het huidige rekeningschema ## Admin BindingOptions=Koppelmogelijkheden @@ -332,7 +333,7 @@ ACCOUNTING_DISABLE_BINDING_ON_EXPENSEREPORTS=Schakel het koppelen en doorboeken ## Export NotifiedExportDate=Geëxporteerde regels markeren als geëxporteerd (om een regel te wijzigen, moet u de hele transactie verwijderen en opnieuw in de boekhouding opnemen) -NotifiedValidationDate=Valideer en vergrendel de geëxporteerde items (hetzelfde effect als de functie "Sluiting", wijziging en verwijdering van de regels is ZEKER niet mogelijk) +NotifiedValidationDate=Validate and Lock the exported entries (same effect than the "%s" feature, modification and deletion of the lines will DEFINITELY not be possible) DateValidationAndLock=Datum validatie en vergrendelen ConfirmExportFile=Bevestiging van het genereren van het boekhoudkundige exportbestand ? ExportDraftJournal=Journaal exporteren @@ -398,19 +399,19 @@ Calculated=Berekend Formula=Formule ## Reconcile -Unlettering=Unreconcile -AccountancyNoLetteringModified=No reconcile modified -AccountancyOneLetteringModifiedSuccessfully=One reconcile successfully modified -AccountancyLetteringModifiedSuccessfully=%s reconcile successfully modified -AccountancyNoUnletteringModified=No unreconcile modified -AccountancyOneUnletteringModifiedSuccessfully=One unreconcile successfully modified -AccountancyUnletteringModifiedSuccessfully=%s unreconcile successfully modified +Unlettering=niet afstemmen +AccountancyNoLetteringModified=Geen afstemming gewijzigd +AccountancyOneLetteringModifiedSuccessfully=Eén afstemming succesvol gewijzigd +AccountancyLetteringModifiedSuccessfully=%s afstemming succesvol gewijzigd +AccountancyNoUnletteringModified=Geen verzoening gewijzigd +AccountancyOneUnletteringModifiedSuccessfully=Eén onafstemming succesvol gewijzigd +AccountancyUnletteringModifiedSuccessfully=%s afstemmen succesvol gewijzigd ## Confirm box -ConfirmMassUnlettering=Bulk Unreconcile confirmation -ConfirmMassUnletteringQuestion=Are you sure you want to Unreconcile the %s selected record(s)? +ConfirmMassUnlettering=Bulk verwijderen afstemming bevestiging +ConfirmMassUnletteringQuestion=Weet u zeker dat u de %s geselecteerde record(s) ongedaan wilt maken? ConfirmMassDeleteBookkeepingWriting=Bevestiging bulk verwijdering -ConfirmMassDeleteBookkeepingWritingQuestion=This will delete the transaction from the accounting (all lines related to the same transaction will be deleted) Are you sure you want to delete the %s selected record(s)? +ConfirmMassDeleteBookkeepingWritingQuestion=Hiermee wordt de transactie uit de boekhouding verwijderd (alle regels die betrekking hebben op dezelfde transactie worden verwijderd) Weet u zeker dat u de geselecteerde record(en) van %s wilt verwijderen? ## Error SomeMandatoryStepsOfSetupWereNotDone=Sommige verplichte stappen zijn nog niet volledig uitgevoerd. Maak deze alsnog. @@ -424,9 +425,10 @@ Binded=Geboekte regels ToBind=Te boeken regels UseMenuToSetBindindManualy=Regels die nog niet zijn gebonden, gebruik het menu %s om de binding handmatig te maken SorryThisModuleIsNotCompatibleWithTheExperimentalFeatureOfSituationInvoices=Sorry, deze module is niet compatibel met de experimentele functie van situatiefacturen -AccountancyErrorMismatchLetterCode=Mismatch in reconcile code -AccountancyErrorMismatchBalanceAmount=The balance (%s) is not equal to 0 -AccountancyErrorLetteringBookkeeping=Errors have occurred concerning the transactions: %s +AccountancyErrorMismatchLetterCode=Komt niet overeen in afstemmingscode +AccountancyErrorMismatchBalanceAmount=Het saldo (%s) is niet gelijk aan 0 +AccountancyErrorLetteringBookkeeping=Er zijn fouten opgetreden met betrekking tot de transacties: %s +ErrorAccountNumberAlreadyExists=The accounting number %s already exists ## Import ImportAccountingEntries=Boekingen diff --git a/htdocs/langs/nl_NL/holiday.lang b/htdocs/langs/nl_NL/holiday.lang index 6a53892fd5e..1cd2349ccd0 100644 --- a/htdocs/langs/nl_NL/holiday.lang +++ b/htdocs/langs/nl_NL/holiday.lang @@ -4,6 +4,7 @@ Holidays=Vertrekken CPTitreMenu=Vertrekken MenuReportMonth=Maandoverzicht MenuAddCP=Nieuw verlofverzoek +MenuCollectiveAddCP=New collective leave request NotActiveModCP=U moet de module Verlaten inschakelen om deze pagina te bekijken. AddCP=Aanmaken verlofverzoek DateDebCP=Begindatum @@ -27,7 +28,7 @@ DescCP=Beschrijving SendRequestCP=Aanmaken verlofverzoek DelayToRequestCP=Verlofverzoeken moeten tenminste %s dag van te voren worden ingediend. MenuConfCP=Saldo van verlof -SoldeCPUser=Leave balance (in days) %s +SoldeCPUser=Saldo laten staan (in dagen) %s ErrorEndDateCP=U moet een einddatum kiezen die na de startdatum ligt. ErrorSQLCreateCP=Er is een SQL fout ontstaan bij het aanmaken: ErrorIDFicheCP=Fout. Verlofverzoek bestaat niet. @@ -79,6 +80,8 @@ MotifCP=Reden UserCP=Gebruiker ErrorAddEventToUserCP=Er is een fout ontstaan bij het toekennen van het uitzonderlijk verlof. AddEventToUserOkCP=Het uitzonderlijk verlof is toegevoegd. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=Raadplegen log van wijzigingen LogCP=Logboek van alle updates van "Verlofsaldo" ActionByCP=Bijgewerkt door @@ -86,6 +89,13 @@ UserUpdateCP=Bijgewerkt voor PrevSoldeCP=Vorig saldo NewSoldeCP=Nieuw saldo alreadyCPexist=U heeft een verlofverzoek aangemaakt welke reeds bestaat voor deze periode. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Groepen +users=Gebruikers +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Begin dag verlofaanvraag LastDayOfHoliday=Einde verlofdag aanvraag BoxTitleLastLeaveRequests=Laatste %s aangepaste verlofverzoeken @@ -133,7 +143,7 @@ WatermarkOnDraftHolidayCards=Watermerken op ontwerp verlofaanvragen HolidaysToApprove=Vakanties goed te keuren NobodyHasPermissionToValidateHolidays=Niemand heeft toestemming om vakanties te valideren HolidayBalanceMonthlyUpdate=Maandelijkse update van de vrije dagen -XIsAUsualNonWorkingDay=%s is usualy a NON working day -BlockHolidayIfNegative=Block if balance negative -LeaveRequestCreationBlockedBecauseBalanceIsNegative=The creation of this leave request is blocked because your balance is negative -ErrorLeaveRequestMustBeDraftCanceledOrRefusedToBeDeleted=Leave request %s must be draft, canceled or refused to be deleted +XIsAUsualNonWorkingDay=%s is meestal een NIET-werkdag +BlockHolidayIfNegative=Blokkeren als saldo negatief +LeaveRequestCreationBlockedBecauseBalanceIsNegative=Het aanmaken van deze verlofaanvraag is geblokkeerd omdat je saldo negatief is +ErrorLeaveRequestMustBeDraftCanceledOrRefusedToBeDeleted=Verlofverzoek %s moet worden opgesteld, geannuleerd of worden geweigerd om te worden verwijderd diff --git a/htdocs/langs/nl_NL/hrm.lang b/htdocs/langs/nl_NL/hrm.lang index b0dc4b94884..462eb5cdfc9 100644 --- a/htdocs/langs/nl_NL/hrm.lang +++ b/htdocs/langs/nl_NL/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Open vestiging CloseEtablishment=Sluit vestiging # Dictionary DictionaryPublicHolidays=Verlof - Feestdagen -DictionaryDepartment=HRM - Afdelingslijst +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM - Vacatures # Module Employees=Werknemers @@ -20,62 +20,72 @@ Employee=Werknemer NewEmployee=Nieuwe werknemer ListOfEmployees=Werknemers lijst HrmSetup=Instellingen HRM module -HRM_MAXRANK=Maximum rank for a skill -HRM_DEFAULT_SKILL_DESCRIPTION=Default description of ranks when skill is created -deplacement=Shift -DateEval=Evaluation date -JobCard=Job card -Job=Taak -Jobs=Jobs -NewSkill=New Skill -SkillType=Skill type -Skilldets=List of ranks for this skill -Skilldet=Skill level -rank=Rank -ErrNoSkillSelected=No skill selected -ErrSkillAlreadyAdded=This skill is already in the list -SkillHasNoLines=This skill has no lines -skill=Skill -Skills=Skills -SkillCard=Skill card -EmployeeSkillsUpdated=Employee skills have been updated (see "Skills" tab of employee card) -Eval=Evaluation -Evals=Evaluations -NewEval=New evaluation -ValidateEvaluation=Validate evaluation -ConfirmValidateEvaluation=Are you sure you want to validate this evaluation with reference %s? -EvaluationCard=Evaluation card -RequiredRank=Required rank for this job -EmployeeRank=Employee rank for this skill -Position=Positie -Positions=Positions -PositionCard=Position card -EmployeesInThisPosition=Employees in this position -group1ToCompare=Usergroup to analyze -group2ToCompare=Second usergroup for comparison -OrJobToCompare=Compare to job skills requirements +SkillsManagement=Vaardighedenbeheer +HRM_MAXRANK=Maximaal aantal niveaus om een vaardigheid te rangschikken +HRM_DEFAULT_SKILL_DESCRIPTION=Standaardbeschrijving van rangen wanneer vaardigheid is gemaakt +deplacement=dienst\n +DateEval=Evaluatie datum +JobCard=Werk kaart +JobPosition=Taak +JobsPosition=Banen +NewSkill=Nieuwe vaardigheid +SkillType=Vaardigheidstype: +Skilldets=Lijst met rangen voor deze vaardigheid +Skilldet=Vaardigheidsniveau +rank=Rang +ErrNoSkillSelected=Geen vaardigheid geselecteerd +ErrSkillAlreadyAdded=Deze vaardigheid staat al in de lijst +SkillHasNoLines=Deze vaardigheid heeft geen regels +skill=Vaardigheid +Skills=Vaardigheden +SkillCard=Vaardigheidskaart +EmployeeSkillsUpdated=Vaardigheden van werknemers zijn bijgewerkt (zie tabblad "Vaardigheden" van werknemerskaart) +Eval=Evaluatie +Evals=Evaluaties +NewEval=Nieuwe evaluatie +ValidateEvaluation=Evaluatie valideren +ConfirmValidateEvaluation=Weet u zeker dat u deze evaluatie wilt valideren met referentie %s ? +EvaluationCard=Evaluatiekaart +RequiredRank=Vereiste rang voor deze baan +EmployeeRank=Werknemersrang voor deze vaardigheid +EmployeePosition=Functie werknemer +EmployeePositions=Werknemersfuncties +EmployeesInThisPosition=Medewerkers in deze functie +group1ToCompare=Gebruikersgroep om te analyseren +group2ToCompare=Tweede gebruikersgroep ter vergelijking +OrJobToCompare=Vergelijk met vereisten voor beroepsvaardigheden difference=Verschil -CompetenceAcquiredByOneOrMore=Competence acquired by one or more users but not requested by the second comparator -MaxlevelGreaterThan=Max level greater than the one requested -MaxLevelEqualTo=Max level equal to that demand -MaxLevelLowerThan=Max level lower than that demand -MaxlevelGreaterThanShort=Employee level greater than the one requested -MaxLevelEqualToShort=Employee level equals to that demand -MaxLevelLowerThanShort=Employee level lower than that demand -SkillNotAcquired=Skill not acquired by all users and requested by the second comparator +CompetenceAcquiredByOneOrMore=Competentie verworven door een of meer gebruikers maar niet gevraagd door de tweede vergelijker +MaxlevelGreaterThan=Maximaal niveau hoger dan het gevraagde +MaxLevelEqualTo=Max niveau gelijk aan die vraag +MaxLevelLowerThan=Max niveau lager dan die vraag +MaxlevelGreaterThanShort=Werknemersniveau hoger dan gevraagd +MaxLevelEqualToShort=Werknemersniveau is gelijk aan die vraag +MaxLevelLowerThanShort=Werknemersniveau lager dan die vraag +SkillNotAcquired=Vaardigheid niet verworven door alle gebruikers en gevraagd door de tweede vergelijker legend=Legende -TypeSkill=Skill type -AddSkill=Add skills to job -RequiredSkills=Required skills for this job -UserRank=User Rank -SkillList=Skill list -SaveRank=Save rank -knowHow=Know how -HowToBe=How to be -knowledge=Knowledge -AbandonmentComment=Abandonment comment -DateLastEval=Date last evaluation -NoEval=No evaluation done for this employee -HowManyUserWithThisMaxNote=Number of users with this rank -HighestRank=Highest rank -SkillComparison=Skill comparison +TypeSkill=Vaardigheidstype: +AddSkill=Vaardigheden toevoegen aan baan +RequiredSkills=Vereiste vaardigheden voor deze baan +UserRank=Gebruikersrang +SkillList=Vaardighedenlijst +SaveRank=Rang opslaan +TypeKnowHow=Weet hoe +TypeHowToBe=Hoe te zijn +TypeKnowledge=Kennis +AbandonmentComment=Verlatingscommentaar +DateLastEval=Datum laatste evaluatie +NoEval=Geen evaluatie gedaan voor deze werknemer +HowManyUserWithThisMaxNote=Aantal gebruikers met deze rang +HighestRank=hoogste rang +SkillComparison=Vaardigheidsvergelijking +ActionsOnJob=Evenementen op deze baan +VacantPosition=vacature +VacantCheckboxHelper=Als u deze optie aanvinkt, worden openstaande vacatures weergegeven (vacature) +SaveAddSkill = Vaardigheid(en) toegevoegd +SaveLevelSkill = Vaardigheidsniveau opgeslagen +DeleteSkill = Vaardigheid verwijderd +SkillsExtraFields=Attributs supplémentaires (Compétences) +JobsExtraFields=Attributs supplémentaires (Werknemers) +EvaluationsExtraFields=Attributs supplémentaires (Evaluaties) +NeedBusinessTravels=Zakenreizen nodig diff --git a/htdocs/langs/nl_NL/install.lang b/htdocs/langs/nl_NL/install.lang index 80850992128..e73a3129bdd 100644 --- a/htdocs/langs/nl_NL/install.lang +++ b/htdocs/langs/nl_NL/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=Configuratiebestand %s kan niet worden beschreven. ConfFileIsWritable=Configuratiebestand %s kan voor schrijven geopend worden. ConfFileMustBeAFileNotADir=Configuratiebestand %s moet een bestand zijn en geen map. ConfFileReload=Parameters opnieuw laden uit configuratiebestand. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=Het configuratiebestand conf/conf.php bestaat niet of is niet leesbaar. We zullen het installatieproces uitvoeren om te proberen het te initialiseren. PHPSupportPOSTGETOk=Deze PHP installatie ondersteunt POST en GET. PHPSupportPOSTGETKo=Het is mogelijk dat uw PHP-setup geen ondersteuning biedt voor variabelen POST en / of GET. Controleer de parameter variables_order in php.ini. PHPSupportSessions=Deze PHP installatie ondersteund sessies. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=U heeft de parameter '%s' mogelijk verkeerd ingestel ErrorFailedToCreateDatabase=De database '%s' kon niet worden gecreëerd. ErrorFailedToConnectToDatabase=Het is niet gelukt om een verbinding met de database '%s' te maken. ErrorDatabaseVersionTooLow=Database versie (%s) is te oud. Versie %s of hoger is vereist. -ErrorPHPVersionTooLow=De geïnstalleerde PHP versie is te oud. Versie %s is nodig. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Verbinding met server gelukt maar database '%s' niet gevonden. ErrorDatabaseAlreadyExists=Database '%s' bestaat al. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=Als de database niet bestaat, gaat u terug en vinkt u de optie "Create database" aan. IfDatabaseExistsGoBackAndCheckCreate=Wanneer de database al bestaat, ga dan terug en vink "Creëer database" uit. WarningBrowserTooOld=Versie van browser is te oud. Het wordt ten zeerste aanbevolen om uw browser te upgraden naar een recente versie van Firefox, Chrome of Opera. diff --git a/htdocs/langs/nl_NL/main.lang b/htdocs/langs/nl_NL/main.lang index 5cbc2aaf8f2..d07f0299a3f 100644 --- a/htdocs/langs/nl_NL/main.lang +++ b/htdocs/langs/nl_NL/main.lang @@ -88,7 +88,7 @@ FileWasNotUploaded=Een bestand is geselecteerd als bijlage, maar is nog niet ge NbOfEntries=Aantal inzendingen GoToWikiHelpPage=Lees de online hulptekst (internettoegang vereist) GoToHelpPage=Lees de hulptekst -DedicatedPageAvailable=Dedicated help page related to your current screen +DedicatedPageAvailable=Speciale helppagina gerelateerd aan uw huidige scherm HomePage=Startpagina RecordSaved=Item opgeslagen RecordDeleted=Item verwijderd @@ -115,7 +115,7 @@ ReturnCodeLastAccessInError=Retourcode voor de meest recente fout bij het toegan InformationLastAccessInError=Informatie voor de meest recente database-toegangsverzoekfout DolibarrHasDetectedError=Dolibarr heeft een technische fout gedetecteerd YouCanSetOptionDolibarrMainProdToZero=U kunt het logbestand lezen of de optie $dolibarr_main_prod instellen op '0' in uw configuratiebestand voor meer informatie. -InformationToHelpDiagnose=This information can be useful for diagnostic purposes (you can set option $dolibarr_main_prod to '1' to hide sensitive information) +InformationToHelpDiagnose=Deze informatie kan nuttig zijn voor diagnostische doeleinden (u kunt optie $dolibarr_main_prod instellen op '1' om gevoelige informatie te verbergen) MoreInformation=Meer informatie TechnicalInformation=Technische gegevens TechnicalID=Technische ID @@ -212,8 +212,8 @@ User=Gebruiker Users=Gebruikers Group=Groep Groups=Groepen -UserGroup=User group -UserGroups=User groups +UserGroup=Gebruikersgroep +UserGroups=Gebruikersgroepen NoUserGroupDefined=Geen gebruikersgroep gedefinieerd Password=Wachtwoord PasswordRetype=Herhaal uw wachtwoord @@ -244,6 +244,7 @@ Designation=Omschrijving DescriptionOfLine=Regelomschrijving DateOfLine=Datum van regel DurationOfLine=Duur van de lijn +ParentLine=Bovenliggende lijn-ID Model=Document sjabloon DefaultModel=Standaard document sjabloon Action=Actie @@ -344,7 +345,7 @@ KiloBytes=KiloBytes MegaBytes=MegaBytes GigaBytes=GigaBytes TeraBytes=Terabytes -UserAuthor=opgemaakt door +UserAuthor=Aangemaakt door UserModif=Bijgewerkt door b=b Kb=Kb @@ -517,6 +518,7 @@ or=of Other=Overig Others=Overigen OtherInformations=Overige informatie +Workflow=Workflow Quantity=Hoeveelheid Qty=Aantal ChangedBy=Veranderd door @@ -619,6 +621,7 @@ MonthVeryShort11=N MonthVeryShort12=D AttachedFiles=Bijgevoegde bestanden en documenten JoinMainDoc=Word hoofddocument +JoinMainDocOrLastGenerated=Stuur het hoofddocument of het laatst gegenereerde document indien niet gevonden DateFormatYYYYMM=JJJJ-MM DateFormatYYYYMMDD=JJJJ-MM-DD DateFormatYYYYMMDDHHMM=JJJJ-MM-DD HH: SS @@ -709,6 +712,7 @@ FeatureDisabled=Functie uitgeschakeld MoveBox=Verplaats widget Offered=Aanbod NotEnoughPermissions=U heeft geen toestemming voor deze actie +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=Sessienaam Method=Methode Receive=Ontvangen @@ -798,6 +802,7 @@ URLPhoto=Url van foto / logo SetLinkToAnotherThirdParty=Link naar een andere derde LinkTo=Link naar LinkToProposal=Link naar offerte +LinkToExpedition= Link to expedition LinkToOrder=gekoppeld aan bestelling LinkToInvoice=Link naar factuur LinkToTemplateInvoice=Link naar sjabloon-factuur @@ -909,7 +914,7 @@ ViewFlatList=Weergeven als lijst ViewAccountList=Grootboek bekijken ViewSubAccountList=Bekijk het grootboek van de subrekening RemoveString='%s' string verwijderen -SomeTranslationAreUncomplete=Some of the languages offered may be only partially translated or may contain errors. Please help to correct your language by registering at https://transifex.com/projects/p/dolibarr/ to add your improvements. +SomeTranslationAreUncomplete=Sommige van de aangeboden talen zijn mogelijk slechts gedeeltelijk vertaald of kunnen fouten bevatten. Help uw taal te corrigeren door u te registreren op https://transifex.com/projects/p/dolibarr/ om uw verbeteringen toe te voegen. DirectDownloadLink=Openbare downloadlink PublicDownloadLinkDesc=Alleen de link is vereist om het bestand te downloaden DirectDownloadInternalLink=Privé downloadlink @@ -1161,6 +1166,17 @@ Properties=Eigenschappen hasBeenValidated=%s is gevalideerd ClientTZ=Tijdzone van de gebruiker NotClosedYet=Nog niet gesloten -ClearSignature=Reset signature -CanceledHidden=Canceled hidden -CanceledShown=Canceled shown +ClearSignature=Handtekening resetten +CanceledHidden=Geannuleerd verborgen +CanceledShown=Geannuleerd weergegeven +Terminate=Afbreken +Terminated=Verwijderd +AddLineOnPosition=Lijn op positie toevoegen (aan het einde indien leeg) +ConfirmAllocateCommercial=Bevestiging van verkoopvertegenwoordiger toewijzen +ConfirmAllocateCommercialQuestion=Weet u zeker dat u de geselecteerde record(s) %s wilt toewijzen? +CommercialsAffected=Betrokken verkoopvertegenwoordigers +CommercialAffected=Betrokken verkoopvertegenwoordiger +YourMessage=Uw bericht +YourMessageHasBeenReceived=Je bericht is ontvangen. We zullen zo snel mogelijk antwoorden of contact met je opnemen. +UrlToCheck=URL om te controleren +Automation=Automatisering diff --git a/htdocs/langs/nl_NL/members.lang b/htdocs/langs/nl_NL/members.lang index d6af5dc2441..0035743d751 100644 --- a/htdocs/langs/nl_NL/members.lang +++ b/htdocs/langs/nl_NL/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=Einddatum lidmaatschap EndSubscription=Einde lidmaatschap SubscriptionId=Bijdrage ID WithoutSubscription=Zonder bijdrage -MemberId=Lid ID +MemberId=Member Id +MemberRef=Member Ref NewMember=Nieuw lid MemberType=Type lid MemberTypeId=Lidtype id @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Lid kan niet worden verwijderd NewSubscription=Nieuwe bijdrage NewSubscriptionDesc=Met dit formulier kunt u lid worden van de vereniging. Als u uw lidmaatschap wilt verlengen (indien u al lid bent), kunt u contact opnemen met het bestuur via e-mail %s. Subscription=Bijdrage +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Duur +GetMembershipButtonLabel=Get membership Subscriptions=Bijdragen SubscriptionLate=Laat SubscriptionNotReceived=Bijdrage nooit ontvangen @@ -135,7 +142,7 @@ CardContent=Inhoud van uw lidmaatschapskaart # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=We willen je laten weten dat je lidmaatschapsverzoek is ontvangen.

ThisIsContentOfYourMembershipWasValidated=We willen u laten weten dat uw lidmaatschap is gevalideerd met de volgende informatie:

-ThisIsContentOfYourSubscriptionWasRecorded=We willen u laten weten dat uw nieuwe abonnement is toegevoegd.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=We willen je laten weten dat je abonnement bijna verloopt of al is verlopen (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). We hopen dat je het zult vernieuwen.

ThisIsContentOfYourCard=Dit is een samenvatting van de informatie die we over u hebben. Neem contact met ons op als er iets niet klopt.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Onderwerp van de ontvangen e-mail in geval van automatische inschrijving van een gast @@ -187,7 +194,7 @@ MembersByRegion=Dit scherm toont u statistieken van leden per regio. MembersStatisticsDesc=Kies de statistieken die u wilt lezen... MenuMembersStats=Statistiek LastMemberDate=Laatste lidmaatschapsdatum -LatestSubscriptionDate=Latest contribution date +LatestSubscriptionDate=Datum laatste bijdrage MemberNature=Aard van het lid MembersNature=Aard van de leden Public=Informatie is openbaar @@ -198,25 +205,26 @@ NbOfSubscriptions=Aantal bijdragen AmountOfSubscriptions=Bedrag uit bijdragen TurnoverOrBudget=Omzet (voor een bedrijf) of budget (voor een vereniging) DefaultAmount=Bedrag standaardbijdrage -CanEditAmount=Bezoekers kunnen het bedrag van hun bijdrage wijzigen +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Spring op geïntegreerde online betaalpagina ByProperties=Van nature MembersStatisticsByProperties=Ledenstatistieken per aard VATToUseForSubscriptions=BTW-tarief voor bijdragen NoVatOnSubscription=Geen BTW voor bijdragen -ADHERENT_PRODUCT_ID_FOR_SUBSCRIPTIONS=Product used for contribution line into invoice: %s +ADHERENT_PRODUCT_ID_FOR_SUBSCRIPTIONS=Product gebruikt voor bijdrageregel op factuur: %s NameOrCompany=Naam of bedrijf SubscriptionRecorded=Bijdrage toegevoegd NoEmailSentToMember=Geen e-mail verzonden naar lid EmailSentToMember=E-mail verzonden naar lid op %s SendReminderForExpiredSubscriptionTitle=Stuur herinneringse-mail voor verlopen bijdragen -SendReminderForExpiredSubscription=Send reminder by email to members when contribution is about to expire (parameter is number of days before end of membership to send the remind. It can be a list of days separated by a semicolon, for example '10;5;0;-5') +SendReminderForExpiredSubscription=Stuur een herinnering per e-mail naar leden wanneer de bijdrage bijna verloopt (parameter is het aantal dagen voor het einde van het lidmaatschap om de herinnering te verzenden. Het kan een lijst met dagen zijn, gescheiden door een puntkomma, bijvoorbeeld '10;5;0;-5 ') MembershipPaid=Lidmaatschap betaald voor huidige periode (tot %s) YouMayFindYourInvoiceInThisEmail=Mogelijk vindt u uw factuur bij deze e-mail XMembersClosed=%s lid (leden) gesloten XExternalUserCreated=%s externe gebruiker(s) aangemaakt ForceMemberNature=Forceer de aard van het lid (individueel of corporatie) CreateDolibarrLoginDesc=Het maken van een gebruikerslogin voor leden geeft toegang tot de applicatie. Afhankelijk van de verleende rechten, zullen ze (bijvoorbeeld) al dan niet hun eigen bestand kunnen raadplegen of aanpassen. -CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +CreateDolibarrThirdPartyDesc=Een derde partij is de rechtspersoon die op de factuur wordt gebruikt als u besluit voor elke bijdrage een factuur te genereren. U kunt deze later tijdens het opnemen van de bijdrage maken. MemberFirstname=Voornaam lid MemberLastname=Naam lid diff --git a/htdocs/langs/nl_NL/projects.lang b/htdocs/langs/nl_NL/projects.lang index 6e3a080beb1..6d974c93227 100644 --- a/htdocs/langs/nl_NL/projects.lang +++ b/htdocs/langs/nl_NL/projects.lang @@ -6,7 +6,7 @@ ProjectLabel=Projectlabel ProjectsArea=Project omgeving ProjectStatus=Project status SharedProject=Iedereen -PrivateProject=Assigned contacts +PrivateProject=Toegewezen contacten ProjectsImContactFor=Projecten waarvoor ik expliciet contactpersoon ben AllAllowedProjects=Alle projecten die ik kan lezen (mine + public) AllProjects=Alle projecten @@ -190,7 +190,7 @@ PlannedWorkload=Geplande workload PlannedWorkloadShort=Workload ProjectReferers=Gerelateerde items ProjectMustBeValidatedFirst=Project moet eerst worden gevalideerd -MustBeValidatedToBeSigned=%s must be validated first to be set to Signed. +MustBeValidatedToBeSigned=%s moet eerst worden gevalideerd om te worden ingesteld op Ondertekend. FirstAddRessourceToAllocateTime=Wijs een gebruikersresource toe als contactpersoon van het project om tijd toe te wijzen InputPerDay=Input per dag InputPerWeek=Input per week @@ -198,7 +198,7 @@ InputPerMonth=Input per maand InputDetail=Invoerdetail TimeAlreadyRecorded=Dit is de tijdsbesteding die al is vastgelegd voor deze taak / dag en gebruiker %s ProjectsWithThisUserAsContact=Projecten met deze gebruiker als contact -ProjectsWithThisContact=Projects with this contact +ProjectsWithThisContact=Projecten met dit contact TasksWithThisUserAsContact=Taken toegekend aan gebruiker ResourceNotAssignedToProject=Niet toegewezen aan project ResourceNotAssignedToTheTask=Niet toegewezen aan de taak @@ -259,7 +259,7 @@ TimeSpentInvoiced=Tijd besteed gefactureerd TimeSpentForIntervention=Bestede tijd TimeSpentForInvoice=Bestede tijd OneLinePerUser=Eén regel per gebruiker -ServiceToUseOnLines=Service voor gebruik op lijnen +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=Factuur %s is gegenereerd op basis van de tijd besteed aan het project InterventionGeneratedFromTimeSpent=Interventie %s is gegenereerd op basis van tijd besteed aan project ProjectBillTimeDescription=Controleer of u urenstaat invoert voor taken van het project EN u van plan bent om facturen uit de urenstaat te genereren om de klant van het project te factureren (controleer niet of u een factuur wilt creëren die niet is gebaseerd op ingevoerde urenstaten). Opmerking: Om de factuur te genereren, gaat u naar het tabblad 'Bestede tijd' van het project en selecteert u de regels die u wilt opnemen. @@ -276,7 +276,7 @@ NewInter=Nieuwe interventie OneLinePerTask=Eén regel per taak OneLinePerPeriod=Eén regel per periode OneLinePerTimeSpentLine=Eén regel voor elke tijdsbestedingsdeclaratie -AddDetailDateAndDuration=With date and duration into line description +AddDetailDateAndDuration=Met datum en duur in regelbeschrijving RefTaskParent=Ref. Bovenliggende taak ProfitIsCalculatedWith=Winst wordt berekend met AddPersonToTask=Voeg ook toe aan taken @@ -284,13 +284,14 @@ UsageOrganizeEvent=Gebruik: Evenementenorganisatie PROJECT_CLASSIFY_CLOSED_WHEN_ALL_TASKS_DONE=Classificeer project als gesloten wanneer alle taken zijn voltooid (100%% voortgang) PROJECT_CLASSIFY_CLOSED_WHEN_ALL_TASKS_DONE_help=Opmerking: de voortgang van bestaande projecten met alle taken op 100%% wordt niet beïnvloed: u zult ze handmatig moeten sluiten. Deze optie is alleen van invloed op open projecten. SelectLinesOfTimeSpentToInvoice=Selecteer tijdsregels die niet zijn gefactureerd en vervolgens de bulkactie "Factuur genereren" om ze te factureren -ProjectTasksWithoutTimeSpent=Project tasks without time spent -FormForNewLeadDesc=Thanks to fill the following form to contact us. You can also send us an email directly to %s. -ProjectsHavingThisContact=Projects having this contact +ProjectTasksWithoutTimeSpent=Projecttaken zonder tijdsbesteding +FormForNewLeadDesc=Bedankt om het volgende formulier in te vullen om contact met ons op te nemen. U kunt ons ook rechtstreeks een e-mail sturen naar %s . +ProjectsHavingThisContact=Projecten met dit contact StartDateCannotBeAfterEndDate=Einddatum kan niet vóór startdatum liggen -ErrorPROJECTLEADERRoleMissingRestoreIt=The "PROJECTLEADER" role is missing or has been de-activited, please restore in the dictionary of contact types -LeadPublicFormDesc=You can enable here a public page to allow your prospects to make a first contact to you from a public online form -EnablePublicLeadForm=Enable the public form for contact -NewLeadbyWeb=Your message or request has been recorded. We will answer or contact your soon. -NewLeadForm=New contact form -LeadFromPublicForm=Online lead from public form +ErrorPROJECTLEADERRoleMissingRestoreIt=De rol "PROJECTLEADER" ontbreekt of is gedeactiveerd, herstel deze in het woordenboek van contacttypes +LeadPublicFormDesc=U kunt hier een openbare pagina inschakelen zodat uw prospects een eerste contact met u kunnen opnemen vanuit een openbaar online formulier +EnablePublicLeadForm=Schakel het openbare formulier in voor contact +NewLeadbyWeb=Uw bericht of verzoek is opgenomen. Wij zullen spoedig antwoorden of contact met u opnemen. +NewLeadForm=Nieuw contactformulier +LeadFromPublicForm=Online lead uit openbare vorm +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/nl_NL/stocks.lang b/htdocs/langs/nl_NL/stocks.lang index aa26e6ddf0d..51d84cdaf06 100644 --- a/htdocs/langs/nl_NL/stocks.lang +++ b/htdocs/langs/nl_NL/stocks.lang @@ -12,9 +12,9 @@ AddWarehouse=Aanmaken magazijn AddOne=Voeg toe DefaultWarehouse=Standaardmagazijn WarehouseTarget=Doelmagazijn -ValidateSending=Confirm shipment -CancelSending=Cancel shipment -DeleteSending=Delete shipment +ValidateSending=Bevestig verzending +CancelSending=Annuleer verzending +DeleteSending=Verwijder verzending Stock=Voorraad Stocks=Voorraden MissingStocks=Ontbrekende voorraad @@ -62,8 +62,8 @@ AllowAddLimitStockByWarehouse=Beheer ook de waarde voor minimale en gewenste voo RuleForWarehouse=Voorwaarden magazijnen WarehouseAskWarehouseOnThirparty=Stel een magazijn in op Derden WarehouseAskWarehouseDuringPropal=Stel een magazijn in op offertes -WarehouseAskWarehouseDuringOrder=Set a warehouse on Sales Orders -WarehouseAskWarehouseDuringProject=Set a warehouse on Projects +WarehouseAskWarehouseDuringOrder=Stel een magazijn in op verkoop orders +WarehouseAskWarehouseDuringProject=Stel een magazijn in op projecten UserDefaultWarehouse=Stel een magazijn in op gebruikers MainDefaultWarehouse=Standaardmagazijn MainDefaultWarehouseUser=Gebruik standaard magazijn voor elke gebruiker @@ -96,7 +96,7 @@ RealStock=Werkelijke voorraad RealStockDesc=Fysieke/echte voorraad is de voorraad die momenteel in de magazijnen aanwezig is. RealStockWillAutomaticallyWhen=De werkelijke voorraad wordt aangepast volgens deze regel (zoals gedefinieerd in de module Voorraad): VirtualStock=Virtuele voorraad -VirtualStockAtDate=Virtual stock at a future date +VirtualStockAtDate=Virtuele voorraad op een toekomstige datum VirtualStockAtDateDesc=Virtuele voorraad zodra alle lopende bestellingen die gepland zijn om vóór de gekozen datum te worden verwerkt, zijn voltooid VirtualStockDesc=Virtuele voorraad is de berekende voorraad die beschikbaar is zodra alle openstaande / lopende acties (die van invloed zijn op voorraden) zijn gesloten (inkooporders ontvangen, verkooporders verzonden, productieorders geproduceerd, enz.) AtDate=op datum @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Voorraad alarm en gewenste optimale voorraad correc ProductStockWarehouseUpdated=Voorraad alarm en gewenste optimale voorraad correct bijgewerkt ProductStockWarehouseDeleted=Voorraad alarm en gewenste optimale voorraad correct verwijderd AddNewProductStockWarehouse=Stel nieuwe limiet in voor waarschuwing en gewenste optimale voorraad -AddStockLocationLine=Verlaag de hoeveelheid en klik vervolgens op een ​​ander magazijn om dit product toe te voegen +AddStockLocationLine=Verlaag het aantal en klik om de regel te splitsen InventoryDate=Datum inventarisatie Inventories=Inventariseringen NewInventory=Nieuwe inventarisatie @@ -195,7 +195,7 @@ inventoryEdit=Bewerken inventoryValidate=Gevalideerd inventoryDraft=Lopende inventorySelectWarehouse=Magazijn -inventoryConfirmCreate=Create +inventoryConfirmCreate=Maak aan inventoryOfWarehouse=Voorraad voor magazijn: %s inventoryErrorQtyAdd=Fout: één hoeveelheid is kleiner dan nul inventoryMvtStock=Inventarisatie @@ -207,10 +207,10 @@ INVENTORY_USE_INVENTORY_DATE_FOR_DATE_OF_MVT=Voorraadbewegingen hebben de datum inventoryChangePMPPermission=Sta toe om de PMP-waarde voor een product te wijzigen ColumnNewPMP=Nieuwe eenheid PMP OnlyProdsInStock=Voeg geen product toe zonder voorraad -TheoricalQty=Theorical qty -TheoricalValue=Theorical qty +TheoricalQty=theoretische aantal +TheoricalValue=theoretische aantal LastPA=Laatste BP -CurrentPA=Curent BP +CurrentPA=Huidige BP RecordedQty=Aantal opgenomen RealQty=Echte aantal RealValue=Werkelijke waarde @@ -221,7 +221,7 @@ ApplyPMP=Pas PMP toe FlushInventory=Voorraad op 'nul' zetten ConfirmFlushInventory=Bevestigen? InventoryFlushed=Inventarisatie opgeschoond -ExitEditMode=Exit editie +ExitEditMode=Editie afsluiten inventoryDeleteLine=Verwijderen regel RegulateStock=Voorraad reguleren ListInventory=Lijstoverzicht @@ -241,7 +241,7 @@ StockAtDatePastDesc=U kunt hier de echte voorraad op een bepaalde datum in het v StockAtDateFutureDesc=U kunt hier de voorraad (virtuele voorraad) op een bepaalde datum in de toekomst bekijken CurrentStock=Huidige voorraad InventoryRealQtyHelp=Stel de waarde in op 0 om het aantal te resetten
Veld leeg laten of regel verwijderen om ongewijzigd te houden -UpdateByScaning=Complete real qty by scaning +UpdateByScaning=Voltooi het werkelijke aantal door te scannen UpdateByScaningProductBarcode=Update door scan (product barcode) UpdateByScaningLot=Update door scan (partij/serie barcode) DisableStockChangeOfSubProduct=De-activeer tijdens deze bewerking de voorraad voor alle subproducten van deze kit. @@ -254,20 +254,64 @@ ReOpen=Heropenen ConfirmFinish=Bevestigt u de sluiting van de inventarisatie? Hiermee worden alle voorraadbewegingen gegenereerd om uw voorraad bij te werken naar de werkelijke hoeveelheid die u in de inventarisatie hebt ingevoerd. ObjectNotFound=%s niet gevonden MakeMovementsAndClose=Bewegingen genereren en sluiten -AutofillWithExpected=Replace real quantity with expected quantity +AutofillWithExpected=Vul de werkelijke hoeveelheid in met de verwachte hoeveelheid ShowAllBatchByDefault=Toon standaard batchgegevens op het tabblad "voorraad" van het product CollapseBatchDetailHelp=U kunt de standaardweergave van batchdetails instellen in de configuratie van de voorraadmodule -ErrorWrongBarcodemode=Unknown Barcode mode -ProductDoesNotExist=Product does not exist -ErrorSameBatchNumber=Several record for the batch number were found in the inventory sheet. No way to know which one to increase. -ProductBatchDoesNotExist=Product with batch/serial does not exist -ProductBarcodeDoesNotExist=Product with barcode does not exist -WarehouseId=Warehouse ID -WarehouseRef=Warehouse Ref -SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ErrorWrongBarcodemode=Onbekende streepjescode modus +ProductDoesNotExist=Product bestaat niet +ErrorSameBatchNumber=Op het inventarisblad werden verschillende records voor het batchnummer gevonden. Geen mogelijke manier om te bepalen welke te verhogen. +ProductBatchDoesNotExist=Product met batch/serienummer bestaat niet +ProductBarcodeDoesNotExist=Product met streepjescode bestaat niet +WarehouseId=Magazijn ID +WarehouseRef=Magazijnreferentie +SaveQtyFirst=Sla eerst de werkelijk geïnventariseerde hoeveelheden op, voordat u vraagt om de voorraadverplaatsing aan te maken. +ToStart=Start InventoryStartedShort=Gestart -ErrorOnElementsInventory=Operation canceled for the following reason: -ErrorCantFindCodeInInventory=Can't find the following code in inventory -QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requested barcode. You can close the Scanner tool. -StockChangeDisabled=Change on stock disabled -NoWarehouseDefinedForTerminal=No warehouse defined for terminal +ErrorOnElementsInventory=Bewerking geannuleerd om de volgende reden: +ErrorCantFindCodeInInventory=Kan de volgende code niet vinden in de inventaris +QtyWasAddedToTheScannedBarcode=Succes! De hoeveelheid is toegevoegd aan alle gevraagde streepjescodes. U kunt de scannertool sluiten. +StockChangeDisabled=Wijziging op voorraad is uitgeschakeld +NoWarehouseDefinedForTerminal=Geen magazijn gedefinieerd voor terminal +ClearQtys=Wis alle hoeveelheden +ModuleStockTransferName=Geavanceerde voorraadoverdracht +ModuleStockTransferDesc=Geavanceerd beheer van Stock Transfer, met generatie van transferblad +StockTransferNew=Nieuwe voorraad overdracht +StockTransferList=Lijst met voorraadoverdrachten +ConfirmValidateStockTransfer=Weet u zeker dat u deze aandelenoverdracht wilt valideren met referentie %s ? +ConfirmDestock=Afname van voorraden met overdracht %s +ConfirmDestockCancel=Afname van voorraden annuleren met overboeking %s +DestockAllProduct=Afname van voorraden +DestockAllProductCancel=Annuleer voorraadafname +ConfirmAddStock=Voorraden vergroten met overdracht %s +ConfirmAddStockCancel=Toename van voorraden annuleren met overboeking %s +AddStockAllProduct=Toename van voorraden +AddStockAllProductCancel=Annuleer verhoging van de voorraden +DatePrevueDepart=Beoogde vertrekdatum +DateReelleDepart=Echte vertrekdatum +DatePrevueArrivee=Geplande aankomstdatum +DateReelleArrivee=Echte aankomstdatum +HelpWarehouseStockTransferSource=Als dit magazijn is ingesteld, zijn alleen hijzelf en de onderliggende items beschikbaar als bronmagazijn +HelpWarehouseStockTransferDestination=Als dit magazijn is ingesteld, zijn alleen hijzelf en zijn kinderen beschikbaar als bestemmingsmagazijn +LeadTimeForWarning=Doorlooptijd vóór alarm (in dagen) +TypeContact_stocktransfer_internal_STFROM=Afzender van aandelenoverdracht +TypeContact_stocktransfer_internal_STDEST=Ontvanger van aandelenoverdracht +TypeContact_stocktransfer_internal_STRESP=Verantwoordelijk voor voorraadoverdracht +StockTransferSheet=Overboekingsblad voorraden +StockTransferSheetProforma=Proforma aandelenoverdrachtsblad +StockTransferDecrementation=Bronmagazijnen verkleinen +StockTransferIncrementation=Bestemmingsmagazijnen vergroten +StockTransferDecrementationCancel=Afbouw van bronmagazijnen annuleren +StockTransferIncrementationCancel=Verhoging van bestemmingsmagazijnen annuleren +StockStransferDecremented=Bronmagazijnen afgenomen +StockStransferDecrementedCancel=Afname van bronmagazijnen geannuleerd +StockStransferIncremented=Gesloten - Voorraden overgedragen +StockStransferIncrementedShort=Overgedragen aandelen +StockStransferIncrementedShortCancel=Toename bestemmingsmagazijnen geannuleerd +StockTransferNoBatchForProduct=Product %s gebruikt geen batch, wis batch online en probeer het opnieuw +StockTransferSetup = Configuratie van de Aandelenoverdrachtmodule +Settings=Instellingen +StockTransferSetupPage = Configuratiepagina voor aandelenoverdrachtmodule +StockTransferRightRead=Aandelenoverdrachten lezen +StockTransferRightCreateUpdate=Aanmaken/bijwerken van aandelenoverdrachten +StockTransferRightDelete=Aandelenoverdrachten verwijderen +BatchNotFound=Lot / serienummer niet gevonden voor dit product diff --git a/htdocs/langs/nl_NL/ticket.lang b/htdocs/langs/nl_NL/ticket.lang index c0a06054ace..55c5e8259e0 100644 --- a/htdocs/langs/nl_NL/ticket.lang +++ b/htdocs/langs/nl_NL/ticket.lang @@ -90,15 +90,17 @@ TicketPublicAccess=Een openbare interface waarbij geen identificatie vereist is, TicketSetupDictionaries=Het type ticket, ernst en analysecodes zijn configureerbaar vanuit woordenboeken TicketParamModule=Module variabele instelling TicketParamMail=E-mail set-up -TicketEmailNotificationFrom=Sender e-mail for ticket answers -TicketEmailNotificationFromHelp=Sender e-mail for ticket answers sent from Dolibarr -TicketEmailNotificationTo=Notify ticket creation to this e-mail address -TicketEmailNotificationToHelp=If present, this e-mail address will be notified of a ticket creation +TicketEmailNotificationFrom=Sender e-mail for notification on answers +TicketEmailNotificationFromHelp=Sender e-mail to use to send the notification email when an answer is provided inside the backoffice. For example noreply@example.com +TicketEmailNotificationTo=Meld het aanmaken van tickets naar dit e-mailadres +TicketEmailNotificationToHelp=Indien aanwezig, wordt dit e-mailadres op de hoogte gebracht van het aanmaken van een ticket TicketNewEmailBodyLabel=SMS verzonden na het maken van een ticket TicketNewEmailBodyHelp=De tekst die hier wordt opgegeven, wordt in de e-mail ingevoegd die bevestigt dat er een nieuwe ticket is aangemaakt in de openbare interface. Informatie over de raadpleging van de ticket wordt automatisch toegevoegd. TicketParamPublicInterface=Instellingen openbare interface TicketsEmailMustExist=Vereist een bestaand e-mailadres om een ​​ticket aan te maken TicketsEmailMustExistHelp=In de openbare interface moet het e-mailadres al in de database zijn ingevuld om een ​​nieuwe ticket aan te kunnen maken. +TicketCreateThirdPartyWithContactIfNotExist=Vraag naam en bedrijfsnaam voor onbekende e-mails. +TicketCreateThirdPartyWithContactIfNotExistHelp=Controleer of er een derde partij of een contactpersoon bestaat voor het ingevoerde e-mailadres. Zo niet, vraag dan een naam en een bedrijfsnaam om een derde partij met contact aan te maken. PublicInterface=Publieke interface TicketUrlPublicInterfaceLabelAdmin=Alternatieve URL voor openbare interface TicketUrlPublicInterfaceHelpAdmin=Het is mogelijk om een alias voor de webserver te definiëren en zo de openbare interface met een andere URL beschikbaar te stellen (de server moet als proxy op deze nieuwe URL fungeren) @@ -136,17 +138,17 @@ TicketsPublicNotificationNewMessage=Stuur e-mail(s) wanneer een nieuw bericht/op TicketsPublicNotificationNewMessageHelp=Stuur e-mail (s) wanneer een nieuw bericht is toegevoegd vanuit de openbare interface (naar de toegewezen gebruiker of de e-mail met meldingen naar (update) en / of de e-mail met meldingen naar) TicketPublicNotificationNewMessageDefaultEmail=E-mailmeldingen voor (update) TicketPublicNotificationNewMessageDefaultEmailHelp=Stuur een e-mail naar dit adres voor elke nieuw berichtmelding als er geen gebruiker aan het ticket is toegewezen of als de gebruiker geen bekend e-mailadres heeft. -TicketsAutoReadTicket=Automatically mark the ticket as read (when created from backoffice) -TicketsAutoReadTicketHelp=Automatically mark the ticket as read when created from backoffice. When ticket is create from the public interface, ticket remains with the status "Not Read". -TicketsDelayBeforeFirstAnswer=A new ticket should receive a first answer before (hours): -TicketsDelayBeforeFirstAnswerHelp=If a new ticket has not received an answer after this time period (in hours), an important warning icon will be displayed in the list view. -TicketsDelayBetweenAnswers=An unresolved ticket should not be unactive during (hours): -TicketsDelayBetweenAnswersHelp=If an unresolved ticket that has already received an answer has not had further interaction after this time period (in hours), a warning icon will be displayed in the list view. -TicketsAutoNotifyClose=Automatically notify thirdparty when closing a ticket -TicketsAutoNotifyCloseHelp=When closing a ticket, you will be proposed to send a message to one of thirdparty's contacts. On mass closing, a message will be sent to one contact of the thirdparty linked to the ticket. -TicketWrongContact=Provided contact is not part of current ticket contacts. Email not sent. -TicketChooseProductCategory=Product category for ticket support -TicketChooseProductCategoryHelp=Select the product category of ticket support. This will be used to automatically link a contract to a ticket. +TicketsAutoReadTicket=Markeer het ticket automatisch als gelezen (indien aangemaakt vanuit backoffice) +TicketsAutoReadTicketHelp=Markeer het ticket automatisch als gelezen wanneer het vanuit de backoffice wordt aangemaakt. Wanneer een ticket wordt aangemaakt vanuit de openbare interface, blijft het ticket met de status "Niet gelezen". +TicketsDelayBeforeFirstAnswer=Een nieuw ticket moet een eerste antwoord ontvangen vóór (uren): +TicketsDelayBeforeFirstAnswerHelp=Als een nieuw ticket na deze periode (in uren) geen antwoord heeft gekregen, wordt er een belangrijk waarschuwingspictogram weergegeven in de lijstweergave. +TicketsDelayBetweenAnswers=Een onopgelost ticket mag niet inactief zijn tijdens (uren): +TicketsDelayBetweenAnswersHelp=Als een onopgelost ticket waarop al een antwoord is ontvangen na deze tijdsperiode (in uren) geen verdere interactie heeft gehad, wordt een waarschuwingspictogram weergegeven in de lijstweergave. +TicketsAutoNotifyClose=Automatisch derden op de hoogte stellen bij het sluiten van een ticket +TicketsAutoNotifyCloseHelp=Bij het sluiten van een ticket wordt u voorgesteld een bericht te sturen naar een van de contacten van derden. Bij massale sluiting wordt er een bericht gestuurd naar één contactpersoon van de derde partij die aan het ticket is gekoppeld. +TicketWrongContact=Mits contact maakt geen deel uit van de huidige ticketcontacten. E-mail niet verzonden. +TicketChooseProductCategory=Productcategorie voor ticketondersteuning +TicketChooseProductCategoryHelp=Selecteer de productcategorie van ticketondersteuning. Hiermee wordt automatisch een contract aan een ticket gekoppeld. # # Index & list page @@ -163,8 +165,8 @@ OrderByDateAsc=Sorteer op oplopende datum OrderByDateDesc=Sorteer op aflopende datum ShowAsConversation=Weergeven als conversatielijst MessageListViewType=Weergeven als tabellijst -ConfirmMassTicketClosingSendEmail=Automatically send emails when closing tickets -ConfirmMassTicketClosingSendEmailQuestion=Do you want to notify thirdparties when closing these tickets ? +ConfirmMassTicketClosingSendEmail=Automatisch e-mails verzenden bij het sluiten van tickets +ConfirmMassTicketClosingSendEmailQuestion=Wilt u derden verwittigen bij het afsluiten van deze tickets? # # Ticket card @@ -219,12 +221,12 @@ ErrorMailRecipientIsEmptyForSendTicketMessage=Geadresseerde is leeg. Geen e-mail TicketGoIntoContactTab=Ga naar het tabblad "Contacten" om ze te selecteren TicketMessageMailIntro=Introductie TicketMessageMailIntroHelp=Deze tekst wordt alleen aan het begin van de e-mail toegevoegd en zal niet worden opgeslagen. -TicketMessageMailIntroLabelAdmin=Introduction text to all ticket answers -TicketMessageMailIntroText=Hello,
A new answer has been added to a ticket that you follow. Here is the message:
-TicketMessageMailIntroHelpAdmin=This text will be inserted before the answer when replying to a ticket from Dolibarr +TicketMessageMailIntroLabelAdmin=Introductietekst voor alle ticketantwoorden +TicketMessageMailIntroText=Hallo,
Er is een nieuw antwoord toegevoegd aan een ticket dat je volgt. Hier is het bericht:
+TicketMessageMailIntroHelpAdmin=Deze tekst wordt voor het antwoord ingevoegd bij het beantwoorden van een ticket van Dolibarr TicketMessageMailSignature=Handtekening TicketMessageMailSignatureHelp=Deze tekst wordt alleen aan het einde van de e-mail toegevoegd en wordt niet opgeslagen. -TicketMessageMailSignatureText=Message sent by %s via Dolibarr +TicketMessageMailSignatureText=Bericht verzonden door %s via Dolibarr TicketMessageMailSignatureLabelAdmin=Handtekening van reactie e-mail TicketMessageMailSignatureHelpAdmin=Deze tekst wordt ingevoegd na het antwoordbericht. TicketMessageHelp=Alleen deze tekst zal worden bewaard in de berichtenlijst op de ticketkaart. @@ -252,16 +254,16 @@ TicketChangeStatus=Verander status TicketConfirmChangeStatus=Bevestig de statusverandering: %s? TicketLogStatusChanged=Status gewijzigd: %s in %s TicketNotNotifyTiersAtCreate=Geen bedrijf melden bij aanmaken -NotifyThirdpartyOnTicketClosing=Contacts to notify while closing the ticket -TicketNotifyAllTiersAtClose=All related contacts -TicketNotNotifyTiersAtClose=No related contact +NotifyThirdpartyOnTicketClosing=Contacten om op de hoogte te stellen tijdens het sluiten van het ticket +TicketNotifyAllTiersAtClose=Alle gerelateerde contacten +TicketNotNotifyTiersAtClose=Geen gerelateerd contact Unread=Niet gelezen TicketNotCreatedFromPublicInterface=Niet beschikbaar. Ticket is niet gemaakt vanuit de openbare interface. ErrorTicketRefRequired=Naam van ticket is vereist -TicketsDelayForFirstResponseTooLong=Too much time elapsed since ticket opening without any answer. -TicketsDelayFromLastResponseTooLong=Too much time elapsed since last answer on this ticket. -TicketNoContractFoundToLink=No contract was found to be automatically linked to this ticket. Please link a contract manually. -TicketManyContractsLinked=Many contracts have been automatically linked to this ticket. Make sure to verify which should be chosen. +TicketsDelayForFirstResponseTooLong=Er is te veel tijd verstreken sinds het openen van het ticket zonder enig antwoord. +TicketsDelayFromLastResponseTooLong=Er is te veel tijd verstreken sinds het laatste antwoord op dit ticket. +TicketNoContractFoundToLink=Er is geen contract gevonden dat automatisch aan dit ticket is gekoppeld. Koppel een contract a.u.b. handmatig. +TicketManyContractsLinked=Veel contracten zijn automatisch aan dit ticket gekoppeld. Zorg ervoor dat u controleert welke moet worden gekozen. # # Logs @@ -289,9 +291,9 @@ TicketNewEmailBody=Dit is een automatische e-mail om te bevestigen dat je een ni TicketNewEmailBodyCustomer=Dit is een automatische e-mail om te bevestigen dat er zojuist een nieuw ticket is aangemaakt in uw account. TicketNewEmailBodyInfosTicket=Informatie voor het bewaken van het ticket TicketNewEmailBodyInfosTrackId=Ticket volgnummer: %s -TicketNewEmailBodyInfosTrackUrl=You can view the progress of the ticket by clicking the following link +TicketNewEmailBodyInfosTrackUrl=U kunt de voortgang van het ticket bekijken door op de volgende link te klikken: TicketNewEmailBodyInfosTrackUrlCustomer=U kunt de voortgang van het ticket bekijken in de specifieke interface door op de volgende link te klikken -TicketCloseEmailBodyInfosTrackUrlCustomer=You can consult the history of this ticket by clicking the following link +TicketCloseEmailBodyInfosTrackUrlCustomer=U kunt de geschiedenis van dit ticket raadplegen door op de volgende link te klikken TicketEmailPleaseDoNotReplyToThisEmail=Beantwoord deze e-mail niet rechtstreeks! Gebruik de link om in de gebruikersinterface te antwoorden. TicketPublicInfoCreateTicket=Met dit formulier kunt u een support ticket vastleggen in ons ticket beheersysteem. TicketPublicPleaseBeAccuratelyDescribe=Beschrijf alstublieft het probleem zo nauwkeurig mogelijk. Geef alle beschikbare informatie om ons in staat te stellen uw verzoek op de juiste manier te kunnen identificeren en te behandelen . @@ -313,10 +315,10 @@ NewUser=Nieuwe gebruiker NumberOfTicketsByMonth=Aantal tickets per maand NbOfTickets=Aantal tickets # notifications -TicketCloseEmailSubjectCustomer=Ticket closed -TicketCloseEmailBodyCustomer=This is an automatic message to notify you that ticket %s has just been closed. -TicketCloseEmailSubjectAdmin=Ticket closed - Réf %s (public ticket ID %s) -TicketCloseEmailBodyAdmin=A ticket with ID #%s has just been closed, see information: +TicketCloseEmailSubjectCustomer=Ticket gesloten +TicketCloseEmailBodyCustomer=Dit is een automatisch bericht om u te informeren dat ticket %s zojuist is gesloten. +TicketCloseEmailSubjectAdmin=Ticket gesloten - Réf %s (openbaar ticket ID %s) +TicketCloseEmailBodyAdmin=Een ticket met ID #%s is zojuist gesloten, zie informatie: TicketNotificationEmailSubject=Ticket %s bijgewerkt TicketNotificationEmailBody=Dit is een automatisch bericht om u te laten weten dat ticket %s zojuist is bijgewerkt TicketNotificationRecipient=Kennisgeving ontvanger @@ -344,7 +346,7 @@ BoxTicketLastXDays=Aantal nieuwe tickets per dag, de laatste %s dagen BoxTicketLastXDayswidget = Aantal nieuwe tickets per dag van de afgelopen X dagen BoxNoTicketLastXDays=Geen nieuwe tickets de laatste %s dagen BoxNumberOfTicketByDay=Aantal nieuwe tickets per dag -BoxNewTicketVSClose=Number of tickets versus closed tickets (today) +BoxNewTicketVSClose=Aantal tickets versus gesloten tickets (vandaag) TicketCreatedToday=Ticket vandaag aangemaakt TicketClosedToday=Ticket vandaag gesloten KMFoundForTicketGroup=We hebben onderwerpen en veelgestelde vragen (FAQs) gevonden die uw vraag kunnen beantwoorden. Bedankt voor het eerst raadplegen en/of controleren van deze bronnen voordat u een ticket indient diff --git a/htdocs/langs/pl_PL/holiday.lang b/htdocs/langs/pl_PL/holiday.lang index 213cee94d5b..c94b56efc64 100644 --- a/htdocs/langs/pl_PL/holiday.lang +++ b/htdocs/langs/pl_PL/holiday.lang @@ -4,6 +4,7 @@ Holidays=Pozostawiać CPTitreMenu=Pozostawiać MenuReportMonth=Miesięczne zestawienie MenuAddCP=Nowy wniosek urlopowy +MenuCollectiveAddCP=New collective leave request NotActiveModCP=Aby wyświetlić tę stronę, musisz włączyć moduł Wyjdź. AddCP=Stwórz wniosek urlopowy DateDebCP=Data rozpoczęcia @@ -79,6 +80,8 @@ MotifCP=Powód UserCP=Użytkownik ErrorAddEventToUserCP=Wystąpił błąd podczas dodawania wyjątkowy urlop. AddEventToUserOkCP=Dodanie wyjątkowe prawo zostało zakończone. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=Pokaż log zmian LogCP=Dziennik wszystkich aktualizacji dotyczących „Bilansu urlopów” ActionByCP=aktualizowany przez @@ -86,6 +89,13 @@ UserUpdateCP=Zaktualizowano dla PrevSoldeCP=Poprzedni Saldo NewSoldeCP=New Balance alreadyCPexist=Wniosek urlopowy na ten okres czasu został już zrobiony. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Grupy +users=Użytkownicy +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Początek wniosku o urlop LastDayOfHoliday=Końcowy dzień wniosku o urlop BoxTitleLastLeaveRequests=Ostatnie %s modyfikowanych wniosków urlopowych diff --git a/htdocs/langs/pl_PL/hrm.lang b/htdocs/langs/pl_PL/hrm.lang index 2ca1781fee0..8330a87bc8c 100644 --- a/htdocs/langs/pl_PL/hrm.lang +++ b/htdocs/langs/pl_PL/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Otwórz kierownictwo CloseEtablishment=Zakończ kierownictwo # Dictionary DictionaryPublicHolidays=Urlop - święta państwowe -DictionaryDepartment=HR - Lisa departamentów +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=Zarządzanie personelem - stanowiska pracy # Module Employees=Zatrudnionych @@ -20,13 +20,14 @@ Employee=Pracownik NewEmployee=Nowy pracownik ListOfEmployees=Lista pracowników HrmSetup=Ustawianie modułu HR -HRM_MAXRANK=Maximum rank for a skill +SkillsManagement=Skills management +HRM_MAXRANK=Maximum number of levels to rank a skill HRM_DEFAULT_SKILL_DESCRIPTION=Default description of ranks when skill is created deplacement=Shift DateEval=Evaluation date JobCard=Job card -Job=Zadanie -Jobs=Jobs +JobPosition=Zadanie +JobsPosition=Jobs NewSkill=New Skill SkillType=Skill type Skilldets=List of ranks for this skill @@ -47,9 +48,8 @@ ConfirmValidateEvaluation=Are you sure you want to validate this evaluation with EvaluationCard=Evaluation card RequiredRank=Required rank for this job EmployeeRank=Employee rank for this skill -Position=Pozycja -Positions=Positions -PositionCard=Position card +EmployeePosition=Employee position +EmployeePositions=Employee positions EmployeesInThisPosition=Employees in this position group1ToCompare=Usergroup to analyze group2ToCompare=Second usergroup for comparison @@ -70,12 +70,22 @@ RequiredSkills=Required skills for this job UserRank=User Rank SkillList=Skill list SaveRank=Save rank -knowHow=Know how -HowToBe=How to be -knowledge=Knowledge +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=Abandonment comment DateLastEval=Date last evaluation NoEval=No evaluation done for this employee HowManyUserWithThisMaxNote=Number of users with this rank HighestRank=Highest rank SkillComparison=Skill comparison +ActionsOnJob=Events on this job +VacantPosition=job vacancy +VacantCheckboxHelper=Checking this option will show unfilled positions (job vacancy) +SaveAddSkill = Skill(s) added +SaveLevelSkill = Skill(s) level saved +DeleteSkill = Skill removed +SkillsExtraFields=Attributs supplémentaires (Compétences) +JobsExtraFields=Attributs supplémentaires (Emplois) +EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/pl_PL/install.lang b/htdocs/langs/pl_PL/install.lang index d80d2337213..24a06369132 100644 --- a/htdocs/langs/pl_PL/install.lang +++ b/htdocs/langs/pl_PL/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=Plik konfiguracyjny %s nie jest zapisywalny. Spra ConfFileIsWritable=Plik konfiguracyjny %s ma uprawnienia do zapisu. ConfFileMustBeAFileNotADir=Plik konfiguracyjny %s musi być plikiem, a nie katalogiem. ConfFileReload=Ponowne ładowanie parametrów z pliku konfiguracyjnego. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=PHP obsługuje zmienne POST i GET. PHPSupportPOSTGETKo=Możliwe, że Twoja konfiguracja PHP nie obsługuje zmiennych POST i / lub GET. Sprawdź parametr variable_order w php.ini. PHPSupportSessions=PHP obsługuje sesje. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Możliwe, że wprowadzono nieprawidłową wartość ErrorFailedToCreateDatabase=Utworzenie bazy danych '%s' nie powiodło się. ErrorFailedToConnectToDatabase=Połączenie z bazą danych '%s' nie powiodło się. ErrorDatabaseVersionTooLow=Wersja (%s) bazy danych jest zbyt stara. Wymagana jest wersja %s lub wyższa. -ErrorPHPVersionTooLow=Wersja PHP zbyt stara. Wymagana wersja to przynajmniej %s. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Połączenie z serwerem powiodło się, ale nie znaleziono bazy danych „%s”. ErrorDatabaseAlreadyExists=Baza danych '%s' już istnieje. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=Jeśli baza danych nie istnieje, wróć i zaznacz opcję „Utwórz bazę danych”. IfDatabaseExistsGoBackAndCheckCreate=Jeśli baza danych istnieje, w poprzednim kroku odznacz opcję "Utwórz bazę danych". WarningBrowserTooOld=Wersja przeglądarki jest zbyt stara. Zdecydowanie zalecamy uaktualnienie przeglądarki do najnowszej wersji Firefox, Chrome lub Opera. diff --git a/htdocs/langs/pl_PL/main.lang b/htdocs/langs/pl_PL/main.lang index 88b8bc002a5..7adb3235288 100644 --- a/htdocs/langs/pl_PL/main.lang +++ b/htdocs/langs/pl_PL/main.lang @@ -244,6 +244,7 @@ Designation=Opis DescriptionOfLine=Opis pozycji DateOfLine=Data linii DurationOfLine=Czas trwania linii +ParentLine=Parent line ID Model=Szablon dokumentu DefaultModel=Domyślny szablon dokumentu Action=Działanie @@ -344,7 +345,7 @@ KiloBytes=Kilobajtów MegaBytes=MB GigaBytes=GB TeraBytes=Terabajtów -UserAuthor=Utworzony przez +UserAuthor=Created by UserModif=Poprawiony przez b=b. Kb=Kb @@ -517,6 +518,7 @@ or=lub Other=Inny Others=Inne OtherInformations=Inne informacje +Workflow=Workflow Quantity=Ilość Qty=Ilość ChangedBy=Zmieniona przez @@ -619,6 +621,7 @@ MonthVeryShort11=N MonthVeryShort12=D AttachedFiles=Dołączone pliki i dokumenty JoinMainDoc=Dołącz główny dokument +JoinMainDocOrLastGenerated=Send the main document or the last generated one if not found DateFormatYYYYMM=RRRR-MM DateFormatYYYYMMDD=RRRR-MM-DD DateFormatYYYYMMDDHHMM=RRRR-MM-DD GG: SS @@ -709,6 +712,7 @@ FeatureDisabled=Funkcja wyłączona MoveBox=Przenieś widget Offered=Oferowany NotEnoughPermissions=Nie masz uprawnień do tego działania +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=Nazwa sesji Method=Metoda Receive=Odbiór @@ -798,6 +802,7 @@ URLPhoto=Url ze zdjęciem / logo SetLinkToAnotherThirdParty=Link do innego kontrahenta LinkTo=Link do LinkToProposal=Link do oferty +LinkToExpedition= Link to expedition LinkToOrder=Link do zamówienia LinkToInvoice=Link do faktury LinkToTemplateInvoice=Link do szablonu faktury @@ -1164,3 +1169,14 @@ NotClosedYet=Not yet closed ClearSignature=Reset signature CanceledHidden=Canceled hidden CanceledShown=Canceled shown +Terminate=Zakończ +Terminated=Terminated +AddLineOnPosition=Add line on position (at the end if empty) +ConfirmAllocateCommercial=Assign sales representative confirmation +ConfirmAllocateCommercialQuestion=Are you sure you want to assign the %s selected record(s)? +CommercialsAffected=Sales representatives affected +CommercialAffected=Sales representative affected +YourMessage=Your message +YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. +UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/pl_PL/members.lang b/htdocs/langs/pl_PL/members.lang index 6ca91abfedd..6b8d8a7298e 100644 --- a/htdocs/langs/pl_PL/members.lang +++ b/htdocs/langs/pl_PL/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=End date of membership EndSubscription=End of membership SubscriptionId=Contribution ID WithoutSubscription=Without contribution -MemberId=ID członka +MemberId=Member Id +MemberRef=Member Ref NewMember=Nowy członek MemberType=Typ członka MemberTypeId=ID typu członka @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Nie można usunąć typu członka NewSubscription=Nowe Wkład NewSubscriptionDesc=Ta forma pozwala na nagrywanie abonament jako nowy członek fundacji. Jeśli chcesz odnowić subskrypcję (jeśli jest już członkiem), prosimy o kontakt z Rady Fundacji zamiast e-mailem %s. Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Czas trwania +GetMembershipButtonLabel=Get membership Subscriptions=Contributions SubscriptionLate=Późno SubscriptionNotReceived=Contribution never received @@ -135,7 +142,7 @@ CardContent=Treść Twojej karty członka # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=Chcemy Cię poinformować, że otrzymaliśmy Twoją prośbę o członkostwo.

ThisIsContentOfYourMembershipWasValidated=Chcemy Cię poinformować, że Twoje członkostwo zostało zweryfikowane przy użyciu następujących informacji:

-ThisIsContentOfYourSubscriptionWasRecorded=Chcemy Cię poinformować, że Twoja nowa subskrypcja została nagrana.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=Chcemy Cię poinformować, że Twoja subskrypcja wkrótce wygaśnie lub już wygasła (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Mamy nadzieję, że ją odnowisz.

ThisIsContentOfYourCard=To jest podsumowanie informacji, które posiadamy o Tobie. Skontaktuj się z nami, jeśli coś jest nie tak.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Temat powiadomienia e-mail otrzymanego w przypadku automatycznego wpisu gościa @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=Obrót (dla firmy) lub Budżet (na fundamencie) DefaultAmount=Default amount of contribution -CanEditAmount=Visitor can choose/edit amount of its contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Przejdź na zintegrowanej stronie płatności online ByProperties=Przez naturę MembersStatisticsByProperties=Statystyki członków według natury @@ -218,3 +226,5 @@ XExternalUserCreated=%s utworzono użytkowników zewnętrznych ForceMemberNature=Charakter członka siły (osoba fizyczna lub korporacja) CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/pl_PL/projects.lang b/htdocs/langs/pl_PL/projects.lang index 81cdf6e56e2..0adebbec1a1 100644 --- a/htdocs/langs/pl_PL/projects.lang +++ b/htdocs/langs/pl_PL/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=Rozliczony czas spędzony TimeSpentForIntervention=Czas spędzony TimeSpentForInvoice=Czas spędzony OneLinePerUser=Jedna linia na użytkownika -ServiceToUseOnLines=Usługa do wykorzystania na liniach +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=Faktura %s została wygenerowana na podstawie czasu spędzonego nad projektem InterventionGeneratedFromTimeSpent=Intervention %s has been generated from time spent on project ProjectBillTimeDescription=Sprawdź, czy wprowadzasz grafik dla zadań projektu ORAZ planujesz wygenerować fakturę (y) z grafiku, aby wystawić fakturę klientowi projektu (nie sprawdzaj, czy planujesz utworzyć fakturę, która nie jest oparta na wprowadzonych grafikach). Uwaga: Aby wygenerować fakturę, przejdź do zakładki „Czas spędzony” projektu i wybierz wiersze do uwzględnienia. @@ -294,3 +294,4 @@ EnablePublicLeadForm=Enable the public form for contact NewLeadbyWeb=Your message or request has been recorded. We will answer or contact your soon. NewLeadForm=New contact form LeadFromPublicForm=Online lead from public form +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/pl_PL/stocks.lang b/htdocs/langs/pl_PL/stocks.lang index 3f8795a5052..117d51b9fdc 100644 --- a/htdocs/langs/pl_PL/stocks.lang +++ b/htdocs/langs/pl_PL/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Limit zapasu dla ostrzeżenia i pożądany optymaln ProductStockWarehouseUpdated=Limit zapasu dla ostrzeżenia i pożądany optymalny zapas prawidłowo zaktualizowany ProductStockWarehouseDeleted=Limit zapasu dla ostrzeżenia i pożądany optymalny zapas prawidłowo usunięty AddNewProductStockWarehouse=Ustaw nowy limit dla ostrzeżenia i pożądany optymalny zapas -AddStockLocationLine=Zmniejsz ilość, a następnie kliknij, aby dodać kolejny magazyn dla tego produktu +AddStockLocationLine=Decrease quantity then click to split the line InventoryDate=Data inwentaryzacji Inventories=Inwentaryzacje NewInventory=Nowa inwentaryzacja @@ -254,7 +254,7 @@ ReOpen=Otworzyć na nowo ConfirmFinish=Czy potwierdzasz zamknięcie inwentaryzacji? Spowoduje to wygenerowanie wszystkich ruchów zapasów, aby zaktualizować stan zapasów do rzeczywistej ilości wprowadzonej do zapasów. ObjectNotFound=Nie znaleziono %s MakeMovementsAndClose=Zainicjuj przemieszczenia zapasów i zamknij -AutofillWithExpected=Replace real quantity with expected quantity +AutofillWithExpected=Wypełnij rzeczywistą ilość ilością oczekiwaną ShowAllBatchByDefault=Domyślnie wyświetlaj szczegóły partii na karcie „magazyn” produktu CollapseBatchDetailHelp=Możesz ustawić domyślne wyświetlanie szczegółów partii w konfiguracji modułu zapasów ErrorWrongBarcodemode=Unknown Barcode mode @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Product with barcode does not exist WarehouseId=Warehouse ID WarehouseRef=Warehouse Ref SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ToStart=Start InventoryStartedShort=Rozpoczęto ErrorOnElementsInventory=Operation canceled for the following reason: ErrorCantFindCodeInInventory=Can't find the following code in inventory QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requested barcode. You can close the Scanner tool. StockChangeDisabled=Change on stock disabled NoWarehouseDefinedForTerminal=No warehouse defined for terminal +ClearQtys=Clear all quantities +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=Ustawienia +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/pt_AO/projects.lang b/htdocs/langs/pt_AO/projects.lang new file mode 100644 index 00000000000..f5f817beac1 --- /dev/null +++ b/htdocs/langs/pt_AO/projects.lang @@ -0,0 +1,2 @@ +# Dolibarr language file - Source file is en_US - projects +ServiceToUseOnLines=Service to use on lines by default diff --git a/htdocs/langs/pt_BR/hrm.lang b/htdocs/langs/pt_BR/hrm.lang index c7e24c6b4ea..60dd9050bd3 100644 --- a/htdocs/langs/pt_BR/hrm.lang +++ b/htdocs/langs/pt_BR/hrm.lang @@ -3,5 +3,5 @@ HRM_EMAIL_EXTERNAL_SERVICE=E-mail para evitar HRM serviço externo Establishments=Estabelecimentos DeleteEstablishment=Excluir estabelecimento ConfirmDeleteEstablishment=Tem certeza de que deseja excluir este estabelecimento? -DictionaryDepartment=RH - Lista de departamentos DictionaryFunction=RH - Cargos +HrmSetup=Configuração do módulo RH diff --git a/htdocs/langs/pt_BR/install.lang b/htdocs/langs/pt_BR/install.lang index 5604382edbd..bcc4805396b 100644 --- a/htdocs/langs/pt_BR/install.lang +++ b/htdocs/langs/pt_BR/install.lang @@ -13,7 +13,6 @@ ErrorWrongValueForParameter=Você pode ter digitado um valor incorreto para o pa ErrorFailedToCreateDatabase=Erro ao criar a base de dados' %s'. ErrorFailedToConnectToDatabase=Falha ao conectar com o banco de dados' %s'. ErrorDatabaseVersionTooLow=Versao do banco de dados (%s) é muito antiga. Versao %s ou maior e requerida. -ErrorPHPVersionTooLow=A versão do PHP é muito antiga. Versão %s é requerida. ErrorDatabaseAlreadyExists=Base de dados' %s' já existe. IfDatabaseExistsGoBackAndCheckCreate=Caso dados já existe, volte e desmarque a opção "Criar uma base de dados". License=Usando licença diff --git a/htdocs/langs/pt_BR/intracommreport.lang b/htdocs/langs/pt_BR/intracommreport.lang new file mode 100644 index 00000000000..a4106ad1cee --- /dev/null +++ b/htdocs/langs/pt_BR/intracommreport.lang @@ -0,0 +1,5 @@ +# Dolibarr language file - Source file is en_US - intracommreport +Module68000Name =Relatório de comunicação interna +Module68000Desc =Gerenciamento de relatórios intracomm (suporte para o formato francês DEB/DES) +IntracommReportSetup =Configuração do módulo do relatório intracomm +MenuIntracommReport=Relatório de comunicação interna diff --git a/htdocs/langs/pt_BR/main.lang b/htdocs/langs/pt_BR/main.lang index 761005516d0..600b1b54dad 100644 --- a/htdocs/langs/pt_BR/main.lang +++ b/htdocs/langs/pt_BR/main.lang @@ -23,6 +23,7 @@ DatabaseConnection=Login à Base de Dados NoTemplateDefined=Nenhum modelo disponível para este tipo de email CurrentTimeZone=Timezone PHP (do servidor apache) EmptySearchString=Digite critérios na pesquisa +EnterADateCriteria=Insira um critério de data NoRecordFound=Nenhum registro encontrado NoRecordDeleted=Nenhum registro foi deletado NotEnoughDataYet=Sem dados suficientes @@ -85,6 +86,7 @@ RequestLastAccessInError=Últimos erros de acesso ao banco de dados ReturnCodeLastAccessInError=Código de retorno do último erro de acesso ao banco de dados InformationLastAccessInError=Informação do último erro de acesso ao banco de dados YouCanSetOptionDolibarrMainProdToZero=Você pode ler o arquivo de log ou definir a opção $ dolibarr_main_prod como '0' no seu arquivo de configuração para obter mais informações. +InformationToHelpDiagnose=Essas informações podem ser úteis para fins de diagnóstico (você pode definir a opção $dolibarr_main_prod como '1' para ocultar informações confidenciais) LineID=ID da linha PrecisionUnitIsLimitedToXDecimals=Dolibarr está configurado para limitar a precisão dos preços unitários a %s Decimais. NoFilter=Nenhum filtro @@ -132,6 +134,8 @@ ResizeOrCrop=Redimensionar ou cortar Recenter=Recolocar no centro User=Usuário Users=Usuário +UserGroup=Grupo de usuários +UserGroups=Grupos de usuários NoUserGroupDefined=Nenhum grupo definido pelo usuário PasswordRetype=Repetir Senha NoteSomeFeaturesAreDisabled=Antenção, só poucos módulos/funcionalidade foram ativados nesta demo @@ -142,10 +146,12 @@ CurrentValue=Valor atual MultiLanguage=Multi Idioma RefOrLabel=Ref. da etiqueta DescriptionOfLine=Descrição da Linha +ParentLine=ID da linha superior Model=Modelo de Documento DefaultModel=Modelo de documento padrão Action=Ação About=Acerca de +NumberByMonth=Total de relatórios por mês Limit=Límite Logout=Sair NoLogoutProcessWithAuthMode=No recurso de desconexão aplicativo com modo de autenticação @@ -184,7 +190,6 @@ Morning=Manha Quadri=Trimistre CurrencyRate=Taxa de conversão moeda UseLocalTax=Incluindo taxa -UserAuthor=Criado por UserModif=Modificado por Default=Padrao DefaultValue=Valor por default @@ -195,11 +200,13 @@ UnitPriceHTCurrency=Preço unitário (sem) (Moeda) UnitPriceTTC=Preço Unit. Total PriceU=Preço Unit. PriceUHT=Preço Unit. +PriceUHTCurrency=U.P (líquido) (moeda) PriceUTTC=U.P. (inc. Impostos) Amount=Valor AmountInvoice=Valor Fatura AmountInvoiced=Valor faturado AmountInvoicedHT=Valor faturado (sem imposto) +AmountInvoicedTTC=Valor faturado (incluindo impostos) AmountPayment=Valor Pagamento AmountHTShort=Quantidade (liq.) AmountTTCShort=Valor (incl. taxas) @@ -211,6 +218,7 @@ MulticurrencyRemainderToPay=Permanecer para pagar, moeda original MulticurrencyAmountHT=Valor (sem impostos) moeda original MulticurrencyAmountTTC=Quantia (com as taxas), na moeda original MulticurrencyAmountVAT=Valor das taxas, na moeda original +MulticurrencySubPrice=Valor do subpreço multimoeda AmountLT1=Valor taxa 2 AmountLT2=Valor taxa 3 AmountLT1ES=Valor RE @@ -219,6 +227,8 @@ AmountTotal=Valor Total AmountAverage=Valor médio PriceQtyMinHT=Quantidade de preço min. (sem imposto) PriceQtyMinHTCurrency=Quantidade de preço min. (sem imposto) (moeda) +PercentOfOriginalObject=Porcentagem do objeto original +AmountOrPercent=Quantidade ou porcentagem TotalHTShort=Total (liq.) TotalHT100Short=Total 100%% (liq.) TotalHTShortCurrency=Total (excluindo em moeda) @@ -241,6 +251,7 @@ VATINs=Impostos IGST LT1Type=Tipo de imposto sobre vendas 2 LT2Type=Tipo de imposto sobre vendas 3 VATRate=Taxa ICMS +RateOfTaxN=Taxa de imposto %s VATCode=Codigo do ICMS VATNPR=Valor taxa NPR DefaultTaxRate=Taxa de imposto padrão @@ -286,8 +297,11 @@ to=para To=para ToDate=para ToLocation=para +at=no OtherInformations=Outra informação +Workflow=Fluxo de Trabalho ApprovedBy2=Aprovado pelo (segunda aprovação) +ValidatedToProduce=Validado (Para produzir) OpenAll=Abertos(todos) ClosedAll=Fechados(Todos) ByUsers=Pelo usuário @@ -307,6 +321,7 @@ MonthShort10=Out MonthShort12=Dez AttachedFiles=Arquivos e Documentos Anexos JoinMainDoc=Junte-se ao documento principal +JoinMainDocOrLastGenerated=Envie o documento principal ou o último gerado se não for encontrado ReportPeriod=Periodo de Análise Fill=Preencher Reset=Resetar @@ -321,6 +336,7 @@ Entities=Entidadees CustomerPreview=Historico Cliente SupplierPreview=Visualização do fornecedor ShowCustomerPreview=Ver Historico Cliente +InternalRef=Ref. interna SeeAll=Ver tudo SendByMail=Envio por e-mail MailSentBy=Mail enviado por @@ -394,6 +410,7 @@ LinkToSupplierOrder=Link para Ordem de compra LinkToSupplierInvoice=Link para a fatura do fornecedor LinkToContract=Link para o Contrato LinkToIntervention=Link para a Intervensão +LinkToMo=Link para Mo SetToDraft=Voltar para modo rascunho ClickToRefresh=Clique para atualizar EditWithEditor=Editar com o CKEditor @@ -426,6 +443,7 @@ XMoreLines=%s linha(s) escondidas ShowMoreLines=Mostrar mais / menos linhas PublicUrl=URL pública AddBox=Adicionar caixa +SelectElementAndClick=Selecione um elemento e clique em %s PrintFile=Imprimir arquivo %s ShowTransaction=Mostrar entrada na conta bancária ShowIntervention=Mostrar intervençao @@ -467,9 +485,14 @@ Miscellaneous=Variados Calendar=Calendário GroupBy=Agrupar por ViewFlatList=Visão da lista resumida +ViewAccountList=Ver razão +ViewSubAccountList=Ver razão da subconta RemoveString=Remover string '%s' +SomeTranslationAreUncomplete=Alguns dos idiomas oferecidos podem estar parcialmente traduzidos ou podem conter erros. Ajude a corrigir seu idioma registrando-se em https://transifex.com/projects/p/dolibarr/ para adicionar suas melhorias. DirectDownloadLink=Link de download público +PublicDownloadLinkDesc=Apenas o link é necessário para baixar o arquivo DirectDownloadInternalLink=Link privado para baixar +PrivateDownloadLinkDesc=Você precisa estar logado e precisa de permissões para visualizar ou baixar o arquivo Download=Baixar DownloadDocument=Descarregar documento ActualizeCurrency=Atualizar taxa de câmbio @@ -521,6 +544,7 @@ Monthly=Por mês Remote=Controlo remoto Deletedraft=Excluir rascunho ConfirmMassDraftDeletion=Confirmação de exclusão de massa de esboço +FileSharedViaALink=Arquivo compartilhado com um link público SelectAThirdPartyFirst=Selecione um terceiro primeiro ... YouAreCurrentlyInSandboxMode=No momento você está no %s modo "caixa de areia" AnalyticCode=Código analitico @@ -532,6 +556,7 @@ PaymentInformation=Informações de Pagamento ValidFrom=Válido de NoRecordedUsers=Sem Usuários ToClose=Para Fechar +ToRefuse=Recusar ToProcess=A processar ToApprove=Para Aprovar GlobalOpenedElemView=Visão Global @@ -556,6 +581,20 @@ ByStatus=Por status Used=Usado ASAP=O mais breve possível CREATEInDolibarr=Registro %s criado +DefaultMailModel=Modelo de correio padrão DateOfBirth=Data de nascimento +SecurityTokenHasExpiredSoActionHasBeenCanceledPleaseRetry=O token de segurança expirou, então a ação foi cancelada. Por favor, tente novamente. +UpToDate=Atualizado +OutOfDate=Desatualizado +UpdateForAllLines=Atualização para todas as linhas OnHold=Em espera +Civility=Civilidade +AffectTag=Afetar Tag +CreateExternalUser=Criar usuário externo +ConfirmAffectTag=Efeito de etiqueta em massa +ConfirmAffectTagQuestion=Tem certeza de que deseja afetar as tags nos %s registros selecionados? +CategTypeNotFound=Nenhum tipo de tag encontrado para o tipo de registro +CopiedToClipboard=Copiado para a área de transferência ClientTZ=Fuso Horário do cliente (usuário) +Terminate=Concluir +Terminated=Encerrado diff --git a/htdocs/langs/pt_BR/members.lang b/htdocs/langs/pt_BR/members.lang index a16f6934198..c83bc985139 100644 --- a/htdocs/langs/pt_BR/members.lang +++ b/htdocs/langs/pt_BR/members.lang @@ -12,7 +12,6 @@ ErrorUserPermissionAllowsToLinksToItselfOnly=Por razões de segurança, você de SetLinkToThirdParty=Link para um fornecedor Dolibarr MembersListResiliated=Lista de membros encerrados MenuMembersResiliated=Membros encerrados -MemberId=Id adesão MemberStatusDraft=Minuta (requer confirmação) MemberStatusDraftShort=Minuta MemberStatusActiveLateShort=Vencido diff --git a/htdocs/langs/pt_BR/oauth.lang b/htdocs/langs/pt_BR/oauth.lang index e91d8d1d365..83d1f02bb40 100644 --- a/htdocs/langs/pt_BR/oauth.lang +++ b/htdocs/langs/pt_BR/oauth.lang @@ -20,7 +20,5 @@ TOKEN_EXPIRED=Token vencido TOKEN_EXPIRE_AT=Token expira no TOKEN_DELETE=Excluir token salvo OAUTH_GOOGLE_NAME=Serviço do Google OAuth -OAUTH_GOOGLE_DESC=Ir para esta página e depois "Credenciais" para criar credenciais do OAuth OAUTH_GITHUB_NAME=Serviço OAuth GitHub OAUTH_GITHUB_SECRET=OAuth GitHub secreto -OAUTH_GITHUB_DESC=Vá para esta página e, em seguida, "Registrar um novo aplicativo" para criar credenciais do OAuth diff --git a/htdocs/langs/pt_BR/projects.lang b/htdocs/langs/pt_BR/projects.lang index 3d2653e0910..41784864569 100644 --- a/htdocs/langs/pt_BR/projects.lang +++ b/htdocs/langs/pt_BR/projects.lang @@ -146,7 +146,7 @@ TimeSpentInvoiced=Tempo gasto faturado TimeSpentForIntervention=Dispêndio de tempo TimeSpentForInvoice=Dispêndio de tempo OneLinePerUser=Uma linha por usuário -ServiceToUseOnLines=Serviço para usar em linhas +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=Fatura %s foi gerada a partir do tempo gasto no projeto ProjectBillTimeDescription=Verifique se você inseriu a planilha de horas nas tarefas do projeto e planeja gerar faturas a partir da planilha de horas para cobrar do cliente do projeto (não verifique se planeja criar faturas que não sejam baseadas nas planilhas de horas inseridas). Nota: Para gerar fatura, vá na guia 'Tempo gasto' do projeto e selecione as linhas a serem incluídas. ProjectFollowOpportunity=Seguir oportunidade diff --git a/htdocs/langs/pt_BR/stocks.lang b/htdocs/langs/pt_BR/stocks.lang index 5c10bf68ee4..baaf149427c 100644 --- a/htdocs/langs/pt_BR/stocks.lang +++ b/htdocs/langs/pt_BR/stocks.lang @@ -145,8 +145,10 @@ ImportFromCSV=Importar lista de movimentos em CSV LabelOfInventoryMovemement=Inventario 1%s ObjectNotFound=1%s nao encontrado MakeMovementsAndClose=Gerar movimentos e fechar +AutofillWithExpected=Inserir quantidade real com quantidade esperada ErrorWrongBarcodemode=Modo de código de barras desconhecido ProductDoesNotExist=Produto não existe ProductBatchDoesNotExist=Produto com lote / serial não existe ProductBarcodeDoesNotExist=Produto com código de barras não existe +ToStart=Inicio InventoryStartedShort=Iniciado diff --git a/htdocs/langs/pt_MZ/accountancy.lang b/htdocs/langs/pt_MZ/accountancy.lang new file mode 100644 index 00000000000..90584e4bd28 --- /dev/null +++ b/htdocs/langs/pt_MZ/accountancy.lang @@ -0,0 +1,235 @@ +# Dolibarr language file - Source file is en_US - accountancy +ACCOUNTING_EXPORT_SEPARATORCSV=Separador de coluna para arquivo de exportação +ACCOUNTING_EXPORT_DATE=Formato de data para arquivo de exportação +ACCOUNTING_EXPORT_PIECE=Exportar a quantidade de peça +ACCOUNTING_EXPORT_GLOBAL_ACCOUNT=Exportação com conta global? +ACCOUNTING_EXPORT_LABEL=Exportar a Descrição? +ACCOUNTING_EXPORT_AMOUNT=Exportar o montante? +ACCOUNTING_EXPORT_DEVISE=Exportar Moedas +Selectformat=Selecione o formato do arquivo +ACCOUNTING_EXPORT_FORMAT=Selecione o formato do arquivo +ACCOUNTING_EXPORT_ENDLINE=Selecione o tipo de retorno do frete +ACCOUNTING_EXPORT_PREFIX_SPEC=Especifique o prefixo do nome do arquivo +DefaultForService=Padrão para serviço +ProductForThisThirdparty=Produto para este terceiro +ServiceForThisThirdparty=Serviço para este terceiro +CantSuggest=Não posso sugerir +AccountancySetupDoneFromAccountancyMenu=A maioria das configurações da Contabilidade é feita a partir do menu %s +ConfigAccountingExpert=Configuração do módulo de contabilidade (dupla entrada) +Journalization=Lançamento no Livro +Chartofaccounts=Plano de contas +ChartOfSubaccounts=Plano de contas individuais +InvoiceLabel=Rótulo da fatura +OverviewOfAmountOfLinesNotBound=Visão geral do montante das linhas não vinculadas a uma conta contábil +OverviewOfAmountOfLinesBound=Visão geral do montante das linhas já vinculadas a uma conta contábil +DeleteCptCategory=Remover conta contábil do grupo +ConfirmDeleteCptCategory=Tem certeza de que deseja remover essa conta contábil do grupo de contas contábeis? +JournalizationInLedgerStatus=Situação do registro do diário +GroupIsEmptyCheckSetup=O grupo está vazio, verifique a configuração do grupo de contabilidade personalizado +AccountantFiles=Exportar documentos de origem +ExportAccountingSourceDocHelp=With this tool, you can search and export the source events that are used to generate your accountancy.
The exported ZIP file will contain the lists of requested items in CSV, as well as their attached files in their original format (PDF, ODT, DOCX...). +VueByAccountAccounting=Ver por conta contábil +MainAccountForCustomersNotDefined=Conta contábil principal para clientes não definidos na configuração +MainAccountForUsersNotDefined=Conta contábil principal para usuários não definidos na configuração +MainAccountForVatPaymentNotDefined=Conta contábil principal para o pagamento do IVA não definido na configuração +MainAccountForSubscriptionPaymentNotDefined=Conta contábil principal para pagamento de assinatura não definida na configuração +AccountancyAreaDescIntro=O uso do módulo Contabilidade é feito em diversas etapas: +AccountancyAreaDescActionOnce=As ações a seguir são normalmente realizadas apenas uma vez, ou uma vez por ano... +AccountancyAreaDescActionFreq=As ações a seguir são normalmente executadas a cada mês, semana ou dia para grandes empresas... +AccountancyAreaDescChartModel=ETAPA %s: Verifique se existe um modelo de plano de contas ou crie um no menu %s +AccountancyAreaDescChart=PASSO %s: Selecione e | ou conclua seu plano de contas no menu %s +AccountancyAreaDescVat=PASSO %s: defina contas contábeis para cada taxa de IVA. Para isso, use a entrada de menu %s. +AccountancyAreaDescSal=PASSO %s: Defina contas contábeis padrão para pagamento de salários. Para isso, use a entrada de menu %s. +AccountancyAreaDescDonation=PASSO %s: Defina contas contábeis padrão para doação. Para isso, use a entrada de menu %s. +AccountancyAreaDescSubscription=Etapa %s: defina contas contábeis padrão para assinatura de membros. Para isso, use a entrada de menu %s. +AccountancyAreaDescMisc=PASSO %s: Defina a conta padrão obrigatória e contas contábeis padrão para transações diversas. Para isso, use a entrada de menu %s. +AccountancyAreaDescLoan=PASSO %s: Defina contas contábeis padrão para empréstimos. Para isso, use a entrada de menu %s. +AccountancyAreaDescBank=PASSO %s:Defina contabilidade e código de diário para cada banco e contas contábil. Para isso, use o menu de entradas %s. +AccountancyAreaDescBind=PASSO %s: verifique a ligação entre as linhas %s existentes e a conta contábil feita, de modo que o aplicativo poderá periodizar transações no Livro de Registro em um clique. Complete as ligações faltantes. Para isso, use a entrada de menu %s. +AccountancyAreaDescWriteRecords=PASSO %s: efetue as transações no Livro de Registro. Para isso, vá para o menu %s e clique no botão %s . +AccountancyAreaDescAnalyze=ETAPA %s: Adicionar ou editar as transações existentes, gerar os relatórios e exportar. +AccountancyAreaDescClosePeriod=ETAPA %s: Fechar o período de forma que não possamos fazer modificações no futuro. +Selectchartofaccounts=Selecione gráfico ativo de contas +ChangeAndLoad=Alterar e carregar +Addanaccount=Adicionar uma conta contábil +AccountAccounting=Conta contábil +SubledgerAccount=Conta Subledger +SubledgerAccountLabel=Rótulo da conta de subconta +ShowAccountingAccount=Mostrar conta contábil +ShowAccountingJournal=Mostrar contabilidade +AccountAccountingSuggest=Sugerir Conta de Contabilidade +MenuBankAccounts=Contas bancárias +MenuVatAccounts=Contas de Impostos sobre valor agregado +MenuLoanAccounts=Contas de empréstimos +MenuProductsAccounts=Contas de produto +MenuClosureAccounts=Contas de encerramento +MenuAccountancyClosure=Fechamento +MenuAccountancyValidationMovements=Validar movimentações +ProductsBinding=Contas dos produtos +TransferInAccounting=Transferência em contabilidade +Binding=Vinculando para as contas +CustomersVentilation=Vinculando as faturas do cliente +ExpenseReportsVentilation=Relatório de despesas obrigatórias +Bookkeeping=Razão +ObjectsRef=Referência da fonte do objeto +CAHTF=Total de fornecedores antes de impostos +TotalExpenseReport=Relatório de despesas totais +InvoiceLines=Linhas da fatura a vincular +InvoiceLinesDone=Linhas das faturas vinculadas +ExpenseReportLines=Relatórios de linhas de despesas obrigatórias +ExpenseReportLinesDone=Relatórios de linhas de despesas vinculadas +IntoAccount=Vincular linha com conta contábil +LineId=Linha da ID +Processing=Processando +EndProcessing=Processo foi finalizado. +LineOfExpenseReport=Relatório de linha de despesas +NoAccountSelected=Nenhuma conta da Contabilidade selecionada +VentilatedinAccount=Vinculado a conta contábil com sucesso +NotVentilatedinAccount=Não vinculado a conta contábil +XLineSuccessfullyBinded=%s produtos / serviços vinculados com sucesso a uma conta contábil +XLineFailedToBeBinded=%s produtos/serviços não estão vinculados a qualquer conta da Contabilidade +ACCOUNTING_LIST_SORT_VENTILATION_TODO=Iniciar a página "Vinculações a fazer" ordenando pelos elementos mais recentes +ACCOUNTING_LIST_SORT_VENTILATION_DONE=Iniciar a página "Vinculações feitas" ordenando pelos elementos mais recentes +ACCOUNTING_LENGTH_DESCRIPTION=Truncar a descrição de Produtos & Serviços nas listagens, após x caracteres (Melhor = 50) +ACCOUNTING_LENGTH_DESCRIPTION_ACCOUNT=Truncar a descrição da conta de Produtos & Serviços nas listagens, após X caracteres (Melhor = 50) +ACCOUNTING_LENGTH_GACCOUNT=Comprimento das contas de contabilidade geral (se o valor configurado for 6, a conta '706' aparecerá como '706000' na tela) +ACCOUNTING_LENGTH_AACCOUNT=Comprimento das contas de contabilidade de terceiros (se você definir o valor para 6 aqui, a conta "401" aparecerá como '401000' na tela) +ACCOUNTING_MANAGE_ZERO=Permitir gerenciar diferentes números de zeros no final de uma conta contábil. Necessário para alguns países (como a Suíça). Se definido como desativado (padrão), você pode definir os dois parâmetros a seguir para solicitar que o aplicativo adicione zeros virtuais. +BANK_DISABLE_DIRECT_INPUT=Desabilitar o registro direto da transação na conta bancária +ACCOUNTING_SELL_JOURNAL=Diário de Vendas +ACCOUNTING_PURCHASE_JOURNAL=Diário de Compras +ACCOUNTING_MISCELLANEOUS_JOURNAL=Diário diversos +ACCOUNTING_EXPENSEREPORT_JOURNAL=Diário de relatórios de despesas +ACCOUNTING_RESULT_PROFIT=Conta de contabilidade de resultado (Lucro) +ACCOUNTING_RESULT_LOSS=Conta contábil do resultado (perda) +ACCOUNTING_CLOSURE_DEFAULT_JOURNAL=Jornal de encerramento +ACCOUNTING_ACCOUNT_TRANSFER_CASH=Conta contábil da transferência bancária transitória +TransitionalAccount=Conta de transferência bancária transitória +ACCOUNTING_ACCOUNT_SUSPENSE=Conta contábil de espera +DONATION_ACCOUNTINGACCOUNT=Conta contábil para registro de doações. +ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=Conta contábil para registrar assinaturas +ACCOUNTING_PRODUCT_BUY_ACCOUNT=Conta contábil padrão para produtos comprados (usada se não definida na folha de produtos) +ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT=Conta contábil padrão para os produtos comprados na CEE (usada se não definida na planilha de produtos) +ACCOUNTING_PRODUCT_BUY_EXPORT_ACCOUNT=Conta contábil padrão para os produtos comprados e importados da CEE (usados ​​se não definidos na folha do produto) +ACCOUNTING_PRODUCT_SOLD_ACCOUNT=Conta contábil padrão para os produtos vendidos (usado se não estiver definido na folha do produto) +ACCOUNTING_PRODUCT_SOLD_INTRA_ACCOUNT=Conta contábil por padrão para os produtos vendidos na EEC (usada se não definida na planilha de produtos) +ACCOUNTING_PRODUCT_SOLD_EXPORT_ACCOUNT=Conta contábil por padrão para os produtos vendidos e exportados para fora da EEC (usados ​​se não definidos na folha do produto) +ACCOUNTING_SERVICE_BUY_ACCOUNT=Conta contábil padrão para os serviços comprados (se não for definido na listagem de serviços) +ACCOUNTING_SERVICE_BUY_INTRA_ACCOUNT=Conta contábil padrão para os serviços comprados no EEC (usada se não definida na planilha de serviços) +ACCOUNTING_SERVICE_BUY_EXPORT_ACCOUNT=Conta contábil padrão para os serviços comprados e importados do EEC (usados ​​se não definidos na ficha de serviço) +ACCOUNTING_SERVICE_SOLD_ACCOUNT=Conta contábil padrão para os serviços vendidos (se não for definido na listagem de serviços) +ACCOUNTING_SERVICE_SOLD_INTRA_ACCOUNT=Conta contábil por padrão para os serviços vendidos na EEC (usada se não definida na ficha de serviço) +ACCOUNTING_SERVICE_SOLD_EXPORT_ACCOUNT=Conta contábil por padrão para os serviços vendidos e exportados para fora do EEC (usados ​​se não definidos na ficha de serviço) +LabelAccount=Conta rótulo +JournalLabel=Rótulo de jornal +TransactionNumShort=Nº da transação +AccountingAccountGroupsDesc=Você pode definir aqui alguns grupos de contabilidade. Eles serão usados ​​para relatórios contábeis personalizados. +NotMatch=Não Definido +DelMonth=Mês a excluir +DelYear=Ano a ser deletado +DelJournal=Resumo a ser deletado +VATAccountNotDefined=Conta para IVA não definida +ThirdpartyAccountNotDefined=Conta para terceiro não definida +ProductAccountNotDefined=Conta para produto não definida +FeeAccountNotDefined=Conta por taxa não definida +BankAccountNotDefined=Conta para o banco não definida +CustomerInvoicePayment=Contas Recebidas +ThirdPartyAccount=Conta de terceiros +ListeMvts=Lista de movimentações +ErrorDebitCredit=Débito e Crédito não pode ter valor preenchido ao mesmo tempo +AddCompteFromBK=Adicionar contas contábeis ao grupo +ReportThirdParty=Listar conta de terceiros +DescThirdPartyReport=Consulte aqui a lista de clientes e fornecedores de terceiros e suas contas contábeis +ListAccounts=Lista das contas contábeis +UnknownAccountForThirdparty=Conta de terceiros desconhecida. Nós usaremos %s +UnknownAccountForThirdpartyBlocking=Conta de terceiros desconhecida. Erro de bloqueio +ThirdpartyAccountNotDefinedOrThirdPartyUnknownSubledgerIgnored=Terceiros desconhecido e subconta não definida no pagamento. Manteremos o valor da conta do subconjunto vazio. +UnknownAccountForThirdpartyAndWaitingAccountNotDefinedBlocking=Conta de terceiros desconhecida e conta em espera não definida. Erro de bloqueio +OpeningBalance=Saldo inicial +ShowOpeningBalance=Mostrar saldo inicial +HideOpeningBalance=Ocultar saldo inicial +Pcgtype=Plano de Contas +PcgtypeDesc=O grupo de contas é usado como critério predefinido de 'filtro' e 'agrupamento' para alguns relatórios contábeis. Por exemplo, 'RENDA' ou 'DESPESA' são usados ​​como grupos para contas contábeis de produtos para criar o relatório de despesas / receitas. +Reconcilable=Reconciliável +TotalVente=Volume total negociado sem Impostos +TotalMarge=Margem de vendas totais +DescVentilCustomer=Consulte aqui a lista linhas de pedidos de clientes vinculadas (ou não) a uma conta contábil de produto +DescVentilMore=Na maioria dos casos, se você usar produtos ou serviços predefinidos e definir o número da conta no cartão de produto / serviço, o aplicativo poderá fazer toda a ligação entre suas linhas de fatura e a conta contábil de seu plano de contas, apenas em um clique com o botão "%s" . Se a conta não foi definida em cartões de produtos / serviços ou se você ainda tiver algumas linhas não vinculadas a uma conta, será necessário fazer uma ligação manual no menu " %s ". +DescVentilDoneCustomer=Consulte aqui a lista com as linhas das faturas dos clientes e a conta da Contabilidade dos seus produtos +DescVentilTodoCustomer=Linhas da fatura ainda não vinculadas à conta da Contabilidade do produto +ChangeAccount=Mudar a conta da Contabilidade do produto/serviço para as linhas selecionadas com a seguinte conta da Contabilidade +DescVentilSupplier=Consulte aqui a lista de linhas de fatura de fornecedor vinculadas ou não vinculadas a uma conta contábil do produto (somente registro ainda não transferido será visível na contabilidade) +DescVentilDoneSupplier=Consulte aqui a lista das linhas de faturas de fornecedores e sua conta contábil +DescVentilTodoExpenseReport=Relatórios de linhas de despesas de ligação já não estão vinculadas com uma conta contábil com taxa +DescVentilExpenseReport=Consulte aqui a lista de relatório de linhas de despesas vinculadas (ou não) a uma conta contábil com taxa +DescVentilExpenseReportMore=Se você configurar uma conta contábil no tipo de linhas de relatório de despesas, o aplicativo poderá fazer toda a ligação entre suas linhas de relatório de despesas e a conta contábil do seu plano de contas, em apenas um clique com o botão "%s" . Se a conta não foi definida no dicionário de taxas ou se você ainda tiver algumas linhas não vinculadas a nenhuma conta, será necessário fazer uma ligação manual no menu " %s ". +DescVentilDoneExpenseReport=Consulte aqui a lista dos relatórios de linha de despesas e sua conta contábil de taxas +DescValidateMovements=Qualquer modificação ou exclusão de escrita, letras e exclusões será proibida. Todas as entradas para um exercício devem ser validadas, caso contrário, o fechamento não será possível +ValidateHistory=Vincular Automaticamente +ErrorAccountancyCodeIsAlreadyUse=Erro, você não pode excluir esta conta contábil, pois ela esta em uso +GeneralLedgerIsWritten=As transações estão escritas no Razão +ListOfProductsWithoutAccountingAccount=Lista de produtos não vinculados a qualquer conta da Contabilidade +ChangeBinding=Alterar a vinculação +Accounted=Contas no livro de contas +NotYetAccounted=Ainda não transferida para a contabilidade +ShowTutorial=Mostrar tutorial +NotReconciled=Não conciliada +AddAccountFromBookKeepingWithNoCategories=Conta disponível porém ainda não no grupo personalizado +CategoryDeleted=A categoria para a conta contábil foi removida +AccountingJournals=Relatórios da contabilidade +AccountingJournal=Livro de Registro de contabilidade +NewAccountingJournal=Novo Livro de Registro contábil +NatureOfJournal=Natureza do Relatório +AccountingJournalType2=De vendas +AccountingJournalType9=Novo +ErrorAccountingJournalIsAlreadyUse=Esta Livro de Registro já está sendo usado +NumberOfAccountancyEntries=Número de entradas +NumberOfAccountancyMovements=Número de movimentos +NotifiedValidationDate=Validate and Lock the exported entries (same effect than the "%s" feature, modification and deletion of the lines will DEFINITELY not be possible) +ExportDraftJournal=Livro de Registro de rascunho de exportação +Selectmodelcsv=Escolha um modelo de exportação +Modelcsv_CEGID=Exportar para CEGID Expert Comptable +Modelcsv_COALA=Exportação para Sage Coala +Modelcsv_bob50=Exportação para Sage BOB 50 +Modelcsv_quadratus=Exportação para Quadratus QuadraCompta +Modelcsv_ebp=Exportar para EBP +Modelcsv_cogilog=Exportar para Cogilog +Modelcsv_LDCompta=Exportar para LD Compta (v9) (Teste) +Modelcsv_LDCompta10=Exportação para LD Compta (v10 ou superior) +Modelcsv_openconcerto=Exportar para OpenConcerto (Teste) +Modelcsv_FEC=Exportar FEC +Modelcsv_Sage50_Swiss=Exportação para Sage 50 Suíça +ChartofaccountsId=ID do gráfico de contas +InitAccountancy=Contabilidade Inicial +InitAccountancyDesc=Esta página pode ser usado para inicializar um código de barras em objetos que não têm código de barras definidas. Verifique que o módulo de código de barras tenha sido instalado antes. +DefaultBindingDesc=Esta página pode ser usada para definir a conta padrão a ser usada para conectar o registro das transações sobre o pagamento de salários, doações, taxas e o IVA quando nenhuma conta da Contabilidade específica tiver sido definida. +DefaultClosureDesc=Esta página pode ser usada para definir parâmetros usados ​​para fechamentos contábeis. +OptionModeProductSell=Modo vendas +OptionModeProductSellIntra=Vendas de modo exportadas na CEE +OptionModeProductSellExport=Vendas de modo exportadas em outros países +OptionModeProductBuy=Modo compras +OptionModeProductBuyIntra=Compras no modo importadas na CEE +OptionModeProductBuyExport=Modo adquirido importado de outros países +OptionModeProductSellDesc=Exibir todos os produtos sem uma conta da Contabilidade definida para compras. +OptionModeProductSellIntraDesc=Mostrar todos os produtos com conta contábil para vendas no EEC. +OptionModeProductSellExportDesc=Mostrar todos os produtos com conta contábil para outras vendas externas. +OptionModeProductBuyDesc=Exibir todos os produtos sem uma conta da Contabilidade definida para compras. +OptionModeProductBuyIntraDesc=Mostre todos os produtos com conta contábil para compras no EEC. +OptionModeProductBuyExportDesc=Mostre todos os produtos com conta contábil para outras compras no exterior. +CleanFixHistory=Remover o código contábil de linhas que não existem nos gráficos de conta +CleanHistory=Redefinir todas as vinculações para o ano selecionado +PredefinedGroups=Grupos predefinidos +WithoutValidAccount=Sem conta dedicada válida +ValueNotIntoChartOfAccount=Este valor da conta contábil não existe no gráfico de conta +AccountRemovedFromGroup=Conta removida do grupo +SaleLocal=Venda local +SaleExport=Venda de exportação +SaleEEC=Venda na CEE +SaleEECWithVAT=A venda na CEE com um IVA não nulo; portanto, supomos que essa NÃO seja uma venda intracomunitária e a conta sugerida é a conta padrão do produto. +SaleEECWithoutVATNumber=Venda na CEE sem IVA, mas o ID do IVA de terceiros não está definido. Recorremos à conta do produto para vendas padrão. Você pode corrigir o ID do IVA de terceiros ou a conta do produto, se necessário. +Range=Faixa da conta da Contabilidade +ConfirmMassDeleteBookkeepingWriting=Confirmação exclusão em massa +SomeMandatoryStepsOfSetupWereNotDone=Algumas etapas obrigatórias de configuração não foram feitas, preencha-as +ErrorNoAccountingCategoryForThisCountry=Nenhum Plano de Contas Contábil disponível para este país %s (Veja Home - Configurações- Dicionário) +ExportNotSupported=O formato de exportação definido não é suportado nesta página +DateExport=Data de exportação diff --git a/htdocs/langs/pt_MZ/agenda.lang b/htdocs/langs/pt_MZ/agenda.lang new file mode 100644 index 00000000000..c820a537f0a --- /dev/null +++ b/htdocs/langs/pt_MZ/agenda.lang @@ -0,0 +1,140 @@ +# Dolibarr language file - Source file is en_US - agenda +IdAgenda=ID do evento +LocalAgenda=Calendário padrão +ActionsOwnedBy=Evento de propriedade do +Event=Ação +ListOfActions=Lista de eventos +EventReports=Relatório de eventos +ToUserOfGroup=Evento atribuído a qualquer usuário do grupo +EventOnFullDay=Evento no(s) dia(s) todo +MenuToDoMyActions=Meus eventos incompletos +MenuDoneMyActions=Meus eventos terminados +ListOfEvents=Lista de eventos (calendário padrão) +ActionsAskedBy=Eventos relatados pelo +ActionsDoneBy=Eventos feito por +ActionAssignedTo=Evento atribuído para +ViewCal=Ver Mês +ViewDay=Ver dia +ViewWeek=ver semana +ViewPerUser=Visão do usuário +ViewPerType=Por visualização de tipo +AgendaAutoActionDesc=Aqui voce pode definir eventos, os quais voce quer que o Dolibarr crie automáticamente na Agenda. Se nada estiver ticado, só as ações manuais serão incluidas nos logs e mostradas na Agenda. Acompanhamento automático de ações de negócio feitas nos objetos (Validação, alteração de situação) não serão salvas. +AgendaSetupOtherDesc=Esta página fornece opções para exportar seus eventos Dolibarr, para um calendário externo(Thunderbird, google calendar, etc...) +AgendaExtSitesDesc=Essa página permite declarar calendários externos para serem visto nos eventos da agenda Dolibarr. +ActionsEvents=Eventos no qual Dolibarr cria uma ação na agenda automáticamente. +EventRemindersByEmailNotEnabled=Lembretes por e-mail desabilitados no %s módulo setup +NewCompanyToDolibarr=Terceiro %s criados +COMPANY_MODIFYInDolibarr=Terceiro %s modificado +COMPANY_DELETEInDolibarr=Terceiro %s excluído +ContractValidatedInDolibarr=Contrato %s validado +PropalClosedSignedInDolibarr=Proposta %s assinada +PropalClosedRefusedInDolibarr=Proposta %s declinada +PropalClassifiedBilledInDolibarr=Proposta %s classificada faturada +InvoiceValidatedInDolibarr=Fatura %s validada +InvoiceValidatedInDolibarrFromPos=Fatura %s validada no POS +InvoiceBackToDraftInDolibarr=Fatura %s voltou para o status de rascunho +InvoiceDeleteDolibarr=Fatura %s deletada +InvoicePaidInDolibarr=Fatura %s marcada paga +InvoiceCanceledInDolibarr=Fatura %s cancelada +MemberValidatedInDolibarr=Membro %s validado +MemberResiliatedInDolibarr=Membro %s finalizado +MemberDeletedInDolibarr=Membro %s cancelado +MemberSubscriptionAddedInDolibarr=Adicionada inscrição %spara membro %s +MemberSubscriptionModifiedInDolibarr=Modificada %s inscrição para %smembro +MemberSubscriptionDeletedInDolibarr=Deletada inscrição %spara membro %s +ShipmentValidatedInDolibarr=Envio %s validado +ShipmentClassifyClosedInDolibarr=Expedição%s classificado(s) e faturado(s) +ShipmentUnClassifyCloseddInDolibarr=Remessa %s classificada como reaberta +ShipmentBackToDraftInDolibarr=Embarque %s voltou à situação rascunho +ShipmentDeletedInDolibarr=Envio %s cancelado +ReceptionValidatedInDolibarr=Recepção %s validada +OrderCreatedInDolibarr=Pedido %s criado +OrderValidatedInDolibarr=Pedido %s validado +OrderDeliveredInDolibarr=Ordem %s classificadas entregues +OrderCanceledInDolibarr=Pedido %s cancelado +OrderBilledInDolibarr=Ordem %s classificadas faturado +OrderApprovedInDolibarr=Pedido %s aprovado +OrderRefusedInDolibarr=Pedido %s recusado +OrderBackToDraftInDolibarr=Pedido %s voltou para o status de rascunho +ProposalSentByEMail=Proposta comercial 1%s enviada por e-mail +ContractSentByEMail=Contrato%s enviado por e-mail +OrderSentByEMail=Ped. de venda 1%s enviado por e-mail +InvoiceSentByEMail=Fat. %s do cliente enviada por e-mail +ORDER_SUPPLIER_DELETEInDolibarr=Pedido de compra %s excluído +SupplierInvoiceSentByEMail=Fatura %s do fornec. enviada por e-mail +ShippingSentByEMail=Embarque %s enviado por e-mail +ShippingValidated=Envio %s validado +ProposalDeleted=Proposta excluída +OrderDeleted=Pedido excluído +InvoiceDeleted=Fatura excluída +DraftInvoiceDeleted=Rascunho da fatura excluído +CONTACT_CREATEInDolibarr=Contato %s criado +CONTACT_MODIFYInDolibarr=Contato %s modificado +CONTACT_DELETEInDolibarr=Contato %s excluído +PRODUCT_CREATEInDolibarr=Produto %s criado +PRODUCT_MODIFYInDolibarr=Produto %s modificado +PRODUCT_DELETEInDolibarr=Produto%s exluído +HOLIDAY_CREATEInDolibarr=Solicitação de licença %s criada +HOLIDAY_MODIFYInDolibarr=Solicitação de licença %s alterada +HOLIDAY_APPROVEInDolibarr=Solicitação de licença %s aprovada +HOLIDAY_VALIDATEInDolibarr=Solicitação de licença %s validada +HOLIDAY_DELETEInDolibarr=Solicitação de licença %s excluída +EXPENSE_REPORT_CREATEInDolibarr=Relatório de despesas %s criado +EXPENSE_REPORT_VALIDATEInDolibarr=relatório de despesas %s validado +EXPENSE_REPORT_APPROVEInDolibarr=Relatório de despesas %s aprovado +EXPENSE_REPORT_DELETEInDolibarr=Realtório de despesas %s excluído +EXPENSE_REPORT_REFUSEDInDolibarr=Relatório de despesas %s rejeitado +PROJECT_MODIFYInDolibarr=Projeto %s modificado +PROJECT_DELETEInDolibarr=Projeto %s excluído +TICKET_CREATEInDolibarr=Bilhete %s criado +TICKET_MODIFYInDolibarr=Bilhete %s modificado +TICKET_ASSIGNEDInDolibarr=Ticket 1%s atribuído +TICKET_CLOSEInDolibarr=Bilhete %s fechado +TICKET_DELETEInDolibarr=Bilhete %s excluido +BOM_VALIDATEInDolibarr=BOM validado +BOM_UNVALIDATEInDolibarr=BOM não validado +BOM_CLOSEInDolibarr=BOM desativado +BOM_REOPENInDolibarr=BOM reaberto +BOM_DELETEInDolibarr=BOM excluído +MRP_MO_VALIDATEInDolibarr=MO validado +MRP_MO_UNVALIDATEInDolibarr=MO definido para o status de rascunho +MRP_MO_PRODUCEDInDolibarr=MO produzido +MRP_MO_DELETEInDolibarr=MO excluído +MRP_MO_CANCELInDolibarr=MO cancelado +PAIDInDolibarr=%s pago +AgendaModelModule=Modelos de documentos para o evento +DateActionEnd=Data de término +AgendaUrlOptions1=Você também pode adicionar os seguintes parâmetros nos filtros de saída: +AgendaUrlOptions3=logina=%s para restringir a saída para ações criada pelo usuário %s. +AgendaUrlOptionsNotAdmin=logina=!%s para restringir a saída das ações não pertencentes ao usuário%s. +AgendaUrlOptions4=logint=%s para restringir a saída às ações atribuídas ao usuário %s (proprietário e outros). +AgendaUrlOptionsProject=projeto=__PROJECT_ID__ para restringir a saída para ações ligadas ao __PROJECT_ID__. +AgendaUrlOptionsIncludeHolidays=includeholidays = 1 para incluir eventos de licenças. +AgendaShowBirthdayEvents=Aniversários de contatos +AgendaHideBirthdayEvents=Ocultar datas de nascimento dos contatos +ExportDataset_event1=Lista dos eventos da agenda +DefaultWorkingDays=Padrão dias úteis por semana (Exemplo: 1-5, 1-6) +DefaultWorkingHours=Padrão horas de trabalho em dia (Exemplo: 9-18) +AgendaExtNb=Calendário n°. %s +ExtSiteUrlAgenda=URL para acessar arquivos .ical +ExtSiteNoLabel=Sem descrição +VisibleDaysRange=Intervalo de dias visíveis +AddEvent=Adicionar evento +MyAvailability=Minha disponibilidade +DateActionBegin=Iniciar a data do evento +ConfirmCloneEvent=Tem certeza que deseja clonar o evento %s? +RepeatEvent=Repita evento +OnceOnly=Apenas uma vez +EveryWeek=Toda semana +EveryMonth=Todo mês +DateStartPlusOne=Data de início + 1 hora +SetAllEventsToTodo=Defina todos os eventos para todo +SetAllEventsToInProgress=Defina todos os eventos como em andamento +SetAllEventsToFinished=Definir todos os eventos como concluídos +ReminderTime=Período de lembrete antes do evento +TimeType=Tipo de duração +ReminderType=Tipo de retorno de chamada +AddReminder=Criar uma notificação de lembrete automática para este evento +ErrorReminderActionCommCreation=Erro ao criar a notificação de lembrete para este evento +BrowserPush=Notificação de pop-up do navegador +ActiveByDefault=Ativado por padrão diff --git a/htdocs/langs/pt_MZ/assets.lang b/htdocs/langs/pt_MZ/assets.lang new file mode 100644 index 00000000000..00729988913 --- /dev/null +++ b/htdocs/langs/pt_MZ/assets.lang @@ -0,0 +1,6 @@ +# Dolibarr language file - Source file is en_US - assets +DeleteType=Excluir +DeleteAnAssetType=Excluir um tipo de recurso +ConfirmDeleteAssetType=Tem certeza de que deseja excluir este tipo de recurso? +AssetsTypeId=Id Tipo de ativo +AssetsTypeLabel=Rótulo do tipo de ativo diff --git a/htdocs/langs/pt_MZ/banks.lang b/htdocs/langs/pt_MZ/banks.lang new file mode 100644 index 00000000000..a73d2eb2682 --- /dev/null +++ b/htdocs/langs/pt_MZ/banks.lang @@ -0,0 +1,5 @@ +# Dolibarr language file - Source file is en_US - banks +BankAccounts=Contas bancárias +StatusAccountClosed=Fechado +WithdrawalPayment=Pedido com pagamento por débito +SocialContributionPayment=Pagamento de imposto social / fiscal diff --git a/htdocs/langs/pt_MZ/bills.lang b/htdocs/langs/pt_MZ/bills.lang new file mode 100644 index 00000000000..9fc6a662566 --- /dev/null +++ b/htdocs/langs/pt_MZ/bills.lang @@ -0,0 +1,405 @@ +# Dolibarr language file - Source file is en_US - bills +BillsCustomers=Faturas de clientes +BillsCustomer=Fatura de cliente +BillsSuppliers=Faturas de fornecedores +BillsCustomersUnpaid=Faturas de clientes não pagos +BillsCustomersUnpaidForCompany=Faturas de clientes não pagas para %s +BillsLate=Pagamentos atrasados +BillsStatistics=Estatísticas de faturas de clientes +DisabledBecauseDispatchedInBookkeeping=Desativado porque a nota fiscal foi despachada na contabilidade +DisabledBecauseNotLastInvoice=Desativado porque a fatura não é apagável. Algumas faturas foram gravadas após esta e ele criará buracos no balcão. +DisabledBecauseNotErasable=Desativada já que não pode ser apagada +InvoiceStandard=Fatura padrão +InvoiceStandardAsk=Fatura padrão +InvoiceStandardDesc=Esse tipo de fatura é a fatura comum. +InvoiceDepositDesc=Este tipo de fatura é feita quando um pagamento inicial foi recebido. +InvoiceProForma=Fatura pro-forma +InvoiceProFormaAsk=Fatura pro-forma +InvoiceProFormaDesc=Fatura pro-forma é uma imagem verdadeira de fatura porem não tem valor contábil. +InvoiceReplacement=Fatura de substituição +InvoiceReplacementAsk=Fatura de substituição por fatura +InvoiceReplacementDesc=Fatura de Substituição é usada para substituir completamente uma fatura sem pagamento já recebido.

Nota: Somente faturas sem pagamento podem ser substituídas. Se a fatura substituída ainda não estiver fechada, ela será automaticamente fechada como 'Abandonada'. +InvoiceAvoir=Nota de crédito +InvoiceAvoirAsk=Nota de crédito para fatura correta +InvoiceAvoirDesc=A nota de crédito é uma fatura negativa usada para corrigir o fato de que uma fatura mostra um valor que difere do valor efetivamente pago (por exemplo, o cliente pagou muito por engano ou não pagará o valor total desde que alguns produtos foram devolvidos). +invoiceAvoirWithLines=Criar Nota de Crédito conforme a fatura original +invoiceAvoirWithPaymentRestAmount=Cirar nota de credito com restante não pago da fatura original +invoiceAvoirLineWithPaymentRestAmount=Nota de credito para valor restante não pago +ReplaceInvoice=Substituir fatura %s +ReplacementInvoice=Fatura de substituição +ReplacedByInvoice=Substituido por fatura %s +ReplacementByInvoice=Substituido por fatura +CorrectInvoice=Fatura correta %s +CorrectionInvoice=Correção de fatura +UsedByInvoice=Usado para pagar fatura %s +NotConsumed=Não consumida +NoReplacableInvoice=Nenhuma fatura substituível +NoInvoiceToCorrect=Nenhuma fatura para corrigir +InvoiceHasAvoir=Foi fonte de uma ou várias notas de crédito +CardBill=Ficha da fatura +InvoiceCustomer=Fatura de cliente +CustomerInvoice=Fatura de cliente +CustomersInvoices=Faturas de Clientes +SupplierInvoice=Fatura do fornecedores +SuppliersInvoices=Faturas de fornecedores +SupplierInvoiceLines=Linhas de Faturas de Fornecedores +SupplierBill=Fatura do fornecedores +SupplierBills=Faturas de fornecedores +PaymentBack=Reembolso +CustomerInvoicePaymentBack=Reembolso +PaidBack=Reembolso pago +DeletePayment=Deletar pagamento +ConfirmDeletePayment=Você tem certeza que deseja excluir este pagamento? +ConfirmConvertToReduc2=O valor será salvo junto a todos os descontos e poderá ser usado como desconto em uma fatura atual ou futura deste cliente. +ConfirmConvertToReducSupplier=Deseja converter este %s em um crédito disponível? +ConfirmConvertToReducSupplier2=O valor será salvo junto a todos os descontos e poderá ser usado como desconto em uma fatura atual ou futura deste fornecedor. +SupplierPayments=Pagamentos do fornecedor +ReceivedCustomersPayments=Pagamentos recebidos de cliente +PayedSuppliersPayments=Pagamentos pagos a fornecedores +ReceivedCustomersPaymentsToValid=Pagamentos recebidos de cliente para validar +PaymentsReportsForYear=Relatórios de pagamentos por %s +PaymentsAlreadyDone=Pagamentos já feitos +PaymentsBackAlreadyDone=Reembolsos já realizados +PaymentRule=Regra de pagamento +PaymentMode=Forma de pagamento +PaymentModes=Formas de pagamento +DefaultPaymentMode=Forma de pagamento padrão +DefaultBankAccount=Conta Bancária padrão +IdPaymentMode=Forma de pagamento (ID) +CodePaymentMode=Forma de pagamento (código) +LabelPaymentMode=Forma de pagamento (etiqueta) +PaymentModeShort=Forma de pagamento +PaymentTerm=Termo de pagamento +PaymentAmount=Valor a ser pago +PaymentHigherThanReminderToPay=Pagamento superior ao valor a ser pago +ClassifyPaid=Classificar 'pago' +ClassifyUnPaid=Classificar 'Não pago' +ClassifyPaidPartially=Classificar 'parcialmente pago' +ClassifyCanceled=Classificar 'Abandonado' +ClassifyClosed=Classificar 'fechado' +ClassifyUnBilled=Classificar "à faturar" +AddBill=Adicionar fatura ou nota de crédito +AddToDraftInvoices=Adicionar para rascunho de fatura +DeleteBill=Deletar fatura +SearchACustomerInvoice=Procurar fatura de cliente +SearchASupplierInvoice=Procurar uma fatura de fornecedor +SendRemindByMail=Enviar o restante por e-mail +DoPayment=Pagamentos +DoPaymentBack=Insira o reembolso +EnterPaymentReceivedFromCustomer=Entrar pagamento recebido de cliente +EnterPaymentDueToCustomer=Realizar pagamento devido para cliente +DisabledBecauseRemainderToPayIsZero=Desabilitado porque o restante a pagar é zero +PriceBase=Preço base +BillStatus=Status de fatura +StatusOfGeneratedInvoices=Situação das faturas geradas +BillStatusDraft=Rascunho (precisa ser validada) +BillStatusPaid=Pago +BillStatusConverted=Pago (Pronto para consumo na fatura final) +BillStatusCanceled=Abandonado +BillStatusValidated=Validado (precisa ser pago) +BillStatusStarted=Iniciado +BillStatusNotPaid=Não pago +BillStatusClosedUnpaid=Fechado (não pago) +BillStatusClosedPaidPartially=Pago (parcialmente) +BillShortStatusDraft=Minuta +BillShortStatusPaid=Pago +BillShortStatusCanceled=Abandonado +BillShortStatusValidated=Validado +BillShortStatusStarted=Iniciado +BillShortStatusNotPaid=Não pago +BillShortStatusClosedUnpaid=Fechado +BillShortStatusClosedPaidPartially=Pago (parcialmente) +PaymentStatusToValidShort=Para validar +ErrorNoPaiementModeConfigured=Nenhum tipo de pagamento padrão definido. Vá para a configuração do módulo Invoice para corrigir isso. +ErrorCreateBankAccount=Crie uma conta bancária e acesse o painel Configuração do módulo Fatura para definir os tipos de pagamento +ErrorBillNotFound=Fatura %s não existe +ErrorDiscountAlreadyUsed=Erro, desconto já utilizado +ErrorInvoiceAvoirMustBeNegative=Erro, fatura atual precisa ter um valor negativo +ErrorInvoiceOfThisTypeMustBePositive=Erro. Este tipo de fatura deve ter um valor excluindo imposto positivo (ou nulo) +ErrorCantCancelIfReplacementInvoiceNotValidated=Erro, não se pode cancelar uma fatura que foi substituida por outra fatura que ainda esta como rascunho +BillFrom=De +BillTo=Para +ActionsOnBill=Ações na fatura +RecurringInvoiceTemplate=Modelo / nota fiscal recorrente +NoQualifiedRecurringInvoiceTemplateFound=Nenhum tema de fatura recorrente qualificado para a geração +FoundXQualifiedRecurringInvoiceTemplate=Encontrado(s) %s tema(s) de fatura(s) recorrente(s) qualificado(s) para a geração. +NotARecurringInvoiceTemplate=Não é um tema de fatura recorrente +LastBills=Últimas notas %s +LatestTemplateInvoices=Últimas faturas do modelo %s +LatestCustomerTemplateInvoices=Últimas faturas do modelo de cliente %s +LatestSupplierTemplateInvoices=Últimas faturas de modelo de fornecedor %s +LastCustomersBills=Últimas notas de clientes %s +LastSuppliersBills=Últimas faturas de fornecedor %s +AllBills=Todas faturas +AllCustomerTemplateInvoices=Todas as faturas do modelo +DraftBills=Rascunho de faturas +CustomersDraftInvoices=Faturas de rascunho do cliente +SuppliersDraftInvoices=Faturas de fornecedores - Rascunho +Unpaid=Não pago +ErrorNoPaymentDefined=Erro. Nenhum pagamento definido +ConfirmDeleteBill=Você tem certeza que deseja excluir esta fatura? +ConfirmValidateBill=Você tem certeza que deseja validar esta fatura com referência %s? +ConfirmUnvalidateBill=Você tem certeza que deseja mudar a situação da fatura %s para rascunho? +ConfirmClassifyPaidBill=Você tem certeza que deseja mudar a situação da fatura %s para paga? +ConfirmCancelBill=Você tem certeza que deseja cancelar a fatura %s? +ConfirmCancelBillQuestion=Por quê você deseja classificar esta fatura 'abandonada'? +ConfirmClassifyPaidPartially=Você tem certeza que deseja mudar a situação da fatura %s para paga? +ConfirmClassifyPaidPartiallyQuestion=Esta fatura não foi paga completamente. Qual é o motivo para fechar esta fatura? +ConfirmClassifyPaidPartiallyReasonDiscount=Restante não remunerado (%s %s) é um desconto concedido porque o pagamento foi feito antes do prazo. +ConfirmClassifyPaidPartiallyReasonDiscountNoVat=Restante para pagar (%s %s) é um desconto concedido porque o pagamento foi feito antes do prazo. Eu aceitei perder o IVA neste desconto. +ConfirmClassifyPaidPartiallyReasonDiscountVat=Restante para pagar (%s %s) é um desconto concedido porque o pagamento foi feito antes do prazo. Eu recuperei o IVA neste desconto sem uma nota de crédito. +ConfirmClassifyPaidPartiallyReasonBadCustomer=Cliente mau +ConfirmClassifyPaidPartiallyReasonBankCharge=Dedução por banco (taxas bancárias intermediárias) +ConfirmClassifyPaidPartiallyReasonProductReturned=Produtos parcialmente devolvido +ConfirmClassifyPaidPartiallyReasonOther=Quantia abandonada por outro motivo +ConfirmClassifyPaidPartiallyReasonAvoirDesc=Use essa escolha se as outras não se adequar +ConfirmClassifyPaidPartiallyReasonProductReturnedDesc=Essa escolha é usado quando o pagamento não é completo porque alguns produtos foram devolvidos +ConfirmClassifyPaidPartiallyReasonBankChargeDesc=O valor não pago sãotaxas bancárias intermediárias, deduzidas diretamente do valor correto pago pelo Cliente. +ConfirmClassifyAbandonReasonOther=Outros +ConfirmClassifyAbandonReasonOtherDesc=Essa escolha será usado em todos os outros casos. Por exemplo porque você planeja criar fatura de substituição. +ConfirmCustomerPayment=Você confirma o recebimento de pagamento para %s %s? +ConfirmSupplierPayment=Você confirma o recebimento de pagamento para %s %s? +ConfirmValidatePayment=Você tem certeza que deseja validar este pagamento? Nenhuma alteração poderá ser feita após a validação do pagamento. +ValidateBill=Validar faturao +UnvalidateBill=Desvalidar fatura +NumberOfBills=Nº. de faturas +NumberOfBillsByMonth=Nº. de faturas por mês +AmountOfBills=Quantidade de faturas +AmountOfBillsByMonthHT=Quantidade de faturas por mês (líquido de taxa) +UseSituationInvoices=Permitir fatura de situação +UseSituationInvoicesCreditNote=Permitir nota de crédito da fatura da situação +Retainedwarranty=Garantia retida +AllowedInvoiceForRetainedWarranty=Garantia estendida utilizável nos seguintes tipos de faturas +RetainedwarrantyDefaultPercent=Porcentagem padrão de garantia retida +RetainedwarrantyOnlyForSituation=Disponibilizar "garantia retida" apenas para faturas de situação +RetainedwarrantyOnlyForSituationFinal=Nas faturas de situação, a dedução global de "garantia retida" é aplicada apenas na situação final +ToPayOn=Para pagar em %s +toPayOn=para pagar em %s +RetainedWarranty=Garantia Retida +PaymentConditionsShortRetainedWarranty=Condições de pagamento da garantia estendida +DefaultPaymentConditionsRetainedWarranty=Termos de pagamento padrão da garantia estendida +setPaymentConditionsShortRetainedWarranty=Definir condições de pagamento da garantia estendida +setretainedwarranty=Definir garantia estendida +setretainedwarrantyDateLimit=Definir limite de data de garantia estendida +RetainedWarrantyDateLimit=Limite de data de garantia estendida +RetainedWarrantyNeed100Percent=O progresso da fatura precisa estar em 100%% para que possa ser exibida em PDF +AlreadyPaid=Já está pago +AlreadyPaidBack=Já está estornado +Abandoned=Abandonado +RemainderToPay=Restante para pagar +RemainderToTake=Restante para pegar +RemainderToPayBack=Valor restante a reembolsar +Rest=Pedente +AmountExpected=Quantidade reivindicada +ExcessReceived=Excesso recebido +EscompteOffered=Desconto oferecido (pagamento antes do prazo) +SendBillRef=Enviar fatura %s +SendReminderBillRef=Enviar fatura %s (restante) +NoDraftBills=Nenhum rascunho de faturas +NoOtherDraftBills=Nenhum outro rascunho de faturas +NoDraftInvoices=Nenhum rascunho de faturas +RefBill=Ref. de fatura +ToBill=Faturar +SendBillByMail=Enviar a fatura por e-mail +SendReminderBillByMail=Enviar o restante por e-mail +RelatedRecurringCustomerInvoices=Faturas recorrentes relacionadas ao cliente +MenuToValid=Validar +ClassifyBill=Classificar fatura +CustomerBillsUnpaid=Faturas de clientes não pagos +SetConditions=Definir condições de pagamento +SetMode=Definir tipo de pagamento +SetRevenuStamp=Definir o selo da receita +RepeatableInvoice=Fatura pré-definida +RepeatableInvoices=Faturas pré-definidas +Repeatable=Pré-definida +Repeatables=Pré-definidas +ChangeIntoRepeatableInvoice=Converter em pré-definida +CreateRepeatableInvoice=Criar fatura pré-definida +CreateFromRepeatableInvoice=Criar de fatura pré-definida +CustomersInvoicesAndInvoiceLines=Faturas do cliente e detalhes da fatura +CustomersInvoicesAndPayments=Faturas de cliente e pagamentos +ExportDataset_invoice_1=Faturas do cliente e detalhes da fatura +ExportDataset_invoice_2=Faturas de clientes e pagamentos +ProformaBill=Conta pro-forma: +Reductions=Reduções +AddDiscount=Criar desconto +EditGlobalDiscounts=Editar desconto fixo +ShowDiscount=Mostrar desconto +ShowReduc=Mostrar desconto +ShowSourceInvoice=Mostrar fatura de origem +GlobalDiscount=Desconto global +CreditNote=Nota de crédito +CreditNotes=Notas de crédito +Deposit=Depósito +Deposits=Depósitos +DiscountFromCreditNote=Desconto de nota de crédito %s +DiscountFromDeposit=Pagamentos a partir de depósito na fatura %s +AbsoluteDiscountUse=Esse tipo de crédito pode ser usado na fatura antes da validação +DiscountOfferedBy=Concedido por +BillAddress=Endereço de cobrança +IdSocialContribution=ID contribuição social +PaymentId=ID pagamento +PaymentRef=Ref. do pagamento +InvoiceId=ID fatura +InvoiceRef=Ref. fatura +InvoiceDateCreation=Data da criação da fatura +InvoiceStatus=Status da fatura +InvoiceNote=Nota de fatura +InvoicePaidCompletely=Pago completamente +InvoicePaidCompletelyHelp=Fatura que é paga completamente. Isso exclui faturas pagas parcialmente. Para obter uma lista de todas as faturas 'Fechadas' ou 'não Fechadas', prefira usar um filtro no status da fatura. +OrderBilled=Encomenda faturada +DonationPaid=Doação paga +RemoveDiscount=Remover desconto +WatermarkOnDraftBill=Marca d'água nos rascunhos de faturas (nada se vazio) +ConfirmCloneInvoice=Você tem certeza que deseja clonar esta fatura %s? +DescTaxAndDividendsArea=Esta área apresenta um resumo de todos os pagamentos feitos para despesas especiais. Apenas registros com pagamentos durante o ano fixo são incluídos aqui. +NbOfPayments=Nº. de pagamentos +SplitDiscount=Dividir desconto em dois +ConfirmSplitDiscount=Tem certeza de que deseja dividir este desconto de %s %s em dois descontos menores? +ConfirmRemoveDiscount=Você tem certeza que deseja remover este desconto? +RelatedSupplierInvoices=Faturas de fornecedores relacionadas +LatestRelatedBill=Últimas fatura correspondente +MergingPDFTool=Mesclando ferramenta PDF +AmountPaymentDistributedOnInvoice=Valor do pagamento distribuído na fatura +ListOfPreviousSituationInvoices=Lista de faturas na situação anterior +ListOfNextSituationInvoices=Lista das faturas na próxima situação +FrequencyPer_d=A cada %s dias +FrequencyPer_m=A cada %s meses +FrequencyPer_y=A cada %s anos +toolTipFrequency=Exemplos:
fixar 7, Day : dê uma nova fatura a cada 7 dias
Set 3, Month : dê uma nova fatura a cada 3 meses +NextDateToExecutionShort=Data da próxima geração. +DateLastGenerationShort=Data da última geração. +MaxPeriodNumber=Máx. número de geração de fatura +InvoiceAutoValidate=Validar as faturas automaticamente +GeneratedFromRecurringInvoice=Gerar a partir do tem de fatura recorrente %s +DateIsNotEnough=Data ainda não alcançada +InvoiceGeneratedFromTemplate=Fatura %s gerada a partir do tema de fatura recorrente %s +GeneratedFromTemplate=Gerado a partir da fatura do modelo %s +WarningInvoiceDateInFuture=Atenção, a data da fatura é superior à data atual +GroupPaymentsByModOnReports=Agrupar pagamentos por modo nos relatórios +PaymentConditionShortRECEP=Após o recebimento +PaymentConditionRECEP=Após o recebimento +PaymentConditionShort30DENDMONTH=30 dias do fim do mês +PaymentCondition30DENDMONTH=Dentro de 30 dias após o fim do mês +PaymentConditionShort60DENDMONTH=60 dias do fim do mês +PaymentCondition60DENDMONTH=Dentro de 60 dias após o fim do mês +PaymentConditionShortPT_DELIVERY=Na entrega +PaymentConditionPT_ORDER=No pedido +PaymentConditionPT_5050=50%% adiantado e 50%% na entrega +FixAmount=Valor fixo - 1 linha com o rótulo '%s' +VarAmount=Variavel valor (%% total) +PaymentTypePRE=Pedido com pagamento em Débito direto +PaymentTypeShortPRE=Pedido com pagamento por débito +PaymentTypeLIQ=Dinheiro +PaymentTypeShortLIQ=Dinheiro +PaymentTypeCB=Cartão de credito +PaymentTypeShortCB=Cartão de credito +PaymentTypeTIP=TIP (Documentos contra Pagamento) +PaymentTypeShortTIP=Pagamento TIP +PaymentTypeTRA=Cheque administrativo +PaymentTypeShortTRA=Minuta +PaymentTypeDC=Cartão de débito / crédito +BankDetails=Detalhes bancário +BankCode=Código bancário +BankAccountNumber=Número da conta +BankAccountNumberKey=Soma de verificação +Residence=Endereço +IBAN=Agencia +CustomerIBAN=IBAN do cliente +SupplierIBAN=IBAN do fornecedor +BICNumber=Código BIC/SWIFT +ExtraInfos=Informações extras +RegulatedOn=Regulamentado em +ChequeNumber=Nº do Cheque +ChequeOrTransferNumber=Nº do cheque/transferência +ChequeBordereau=Verificar agendamento +NetToBePaid=Líquido a ser pago +PhoneNumber=Telefone +FullPhoneNumber=Telefone +PrettyLittleSentence=Aceito o valor do pagamento devido pelo cheque emitido em meu nome como membro de uma associação de contabilidade aprovado pelo administração fiscal. +IntracommunityVATNumber=ID do IVA intracomunitário +PaymentByChequeOrderedTo=Cheque pagamentos (incluindo impostos) são pagas para %s, enviar para +PaymentByChequeOrderedToShort=Cheque pagamentos (incl. Imposto) são pagas para +SendTo=Enviar para +VATIsNotUsedForInvoice=* Não aplicável IVA art-293B de CGI +LawApplicationPart1=Pela aplicação da lei 80.335 de 12/05/80 +LawApplicationPart2=os bens permanece propriedade de +LawApplicationPart4=preço dele. +LimitedLiabilityCompanyCapital=SARL com capital de +UseDiscount=Usar desconto +UseCredit=Usar crédito +UseCreditNoteInInvoicePayment=Reduzir o valor a ser pago com esse crédito +MenuChequeDeposits=Verificar depósitos +MenuCheques=Cheques +MenuChequesReceipts=Verificar recibos +NewChequeDeposit=Novo depósito +ChequesReceipts=Verificar recibos +ChequesArea=Verifique a área de depósitos +ChequeDeposits=Verificar depósitos +DepositId=Depósito Id +CreditNoteConvertedIntoDiscount=Este %s foi convertido em %s +UsBillingContactAsIncoiveRecipientIfExist=Usar contato/endereço com o tipo 'contato de cobrança' em vez de endereço de terceiros como destinatário para faturas +ShowUnpaidAll=Mostras todas as faturas não pagas +ShowUnpaidLateOnly=Mostrar todas as faturas atrasadas não pagas +PaymentInvoiceRef=Pagamento de fatura %s +ValidateInvoice=validar fatura +Cash=DinheiroCash +DisabledBecausePayments=Não é possivel devido alguns pagamentos +CantRemovePaymentWithOneInvoicePaid=Não posso remover pagamento ao menos que o última fatura sejá classificada como pago +ExpectedToPay=Esperando pagamento +ClosePaidInvoicesAutomatically=Classifique automaticamente todas as faturas padrão, adiantadas ou de reposição como "Pagas" quando o pagamento for feito inteiramente. +ClosePaidCreditNotesAutomatically=Classifique automaticamente todas as notas de crédito como "Pagas" quando o reembolso for totalmente realizado. +ClosePaidContributionsAutomatically=Classifique automaticamente todas as contribuições sociais ou fiscais como "Pagas" quando o pagamento for feito inteiramente. +AllCompletelyPayedInvoiceWillBeClosed=Todas as faturas sem saldo a pagar serão fechadas automaticamente com o status "Pago". +ToMakePaymentBack=Pagar de volta +NoteListOfYourUnpaidInvoices=Nota: Essa lista contém faturas de terceiros que você está a ligado como representante de vendas. +RevenueStamp=Carimbo de imposto +YouMustCreateInvoiceFromThird=Esta opção só está disponível ao criar uma fatura na guia "Cliente" de terceiros +YouMustCreateInvoiceFromSupplierThird=Essa opção só está disponível ao criar uma fatura na guia "Fornecedor" de terceiros +YouMustCreateStandardInvoiceFirstDesc=Você deve criar antes uma fatura padrão e convertê-la em um "tema" para criar um novo tema de fatura +PDFCrabeDescription=Modelo de fatura PDF Crabe. Um modelo de fatura completo (implementação antiga do modelo Sponge) +PDFCrevetteDescription=Tema Crevette para fatura em PDF. Um tema completo para a situação das faturas +TerreNumRefModelError=Uma conta começa com %syymm já existe e não é compatível com esse modelo de sequência. Remova ou renomeie ele para ativar esse módulo. +EarlyClosingReason=Motivo de fechamento antecipado +EarlyClosingComment=Nota de fechamento antecipado +TypeContact_facture_internal_SALESREPFOLL=Representativo seguindo de fatura de cliente +TypeContact_facture_external_BILLING=Contato de fatura de cliente +TypeContact_facture_external_SHIPPING=Contato de envio de cliente +TypeContact_facture_external_SERVICE=Contato de serviço de cliente +TypeContact_invoice_supplier_internal_SALESREPFOLL=Fatura de fornecedor subsequente representativa +TypeContact_invoice_supplier_external_BILLING=Contato da fatura do fornecedor +TypeContact_invoice_supplier_external_SHIPPING=Contato de remessa do fornecedor +InvoiceFirstSituationAsk=Primeira situação da fatura +InvoiceFirstSituationDesc=A situação faturas são amarradas às situações relacionadas com uma progressão, por exemplo, a progressão de uma construção. Cada situação é amarrada a uma fatura. +InvoiceSituation=Situação da fatura +PDFInvoiceSituation=Situação da fatura +InvoiceSituationAsk=Fatura acompanhando a situação +InvoiceSituationDesc=Criar uma nova situação na sequência de um um já existente +SituationAmount=Situação montante da fatura (líquida) +SituationDeduction=Situação subtração +CreateNextSituationInvoice=Criar proxima situação +NotLastInCycle=Esta fatura não é a última do ciclo e não deve ser modificada. +DisabledBecauseNotLastInCycle=A próxima situação já existe. +CantBeLessThanMinPercent=O progresso não pode ser menor do que o seu valor na situação anterior. +NoSituations=Não há situações em aberto +InvoiceSituationLast=Fatura final e geral +PDFCrevetteSituationNumber=Situação Nº %s +PDFCrevetteSituationInvoiceLineDecompte=Situação da fatura - CONTAR +PDFCrevetteSituationInvoiceTitle=Situação da fatura +PDFCrevetteSituationInvoiceLine=Situação N°. %s: Inv. N°. %s em %s +invoiceLineProgressError=A linha de progresso da fatura não pode ser maior ou igual à próxima linha da fatura +updatePriceNextInvoiceErrorUpdateline=Erro: atualize o preço na linha da fatura: %s +ToCreateARecurringInvoice=Para criar uma fatura recorrente para este contrato, crie primeiro este rascunho de fatura, converta-a em um tema de fatura e defina então a frequência de geração das próximas faturas. +ToCreateARecurringInvoiceGene=Para gerar as futuras faturas regular e manualmente, siga para o menu %s - %s - %s. +ToCreateARecurringInvoiceGeneAuto=Se você precisar que essas faturas sejam geradas automaticamente, peça ao seu administrador para ativar e configurar o módulo %s. Note que ambos os métodos (manual e automático) podem ser usados juntos sem risco de duplicação. +DeleteRepeatableInvoice=Excluir tema de fatura +ConfirmDeleteRepeatableInvoice=Você tem certeza que deseja excluir o tema de fatura? +BillCreated=%s fatura (s) gerada (s) +StatusOfGeneratedDocuments=Status da geração de documentos +DoNotGenerateDoc=Não gere arquivo de documento +BILL_DELETEInDolibarr=Fatura excluída +BILL_SUPPLIER_DELETEInDolibarr=Fatura de fornecedor excluída +UnitPriceXQtyLessDiscount=Preço unitário x Qtd. - Desconto +CustomersInvoicesArea=Área de cobrança do cliente +SupplierInvoicesArea=Área de cobrança do cliente +SituationTotalRayToRest=Restante a pagar sem imposto diff --git a/htdocs/langs/pt_MZ/blockedlog.lang b/htdocs/langs/pt_MZ/blockedlog.lang new file mode 100644 index 00000000000..68b870cf136 --- /dev/null +++ b/htdocs/langs/pt_MZ/blockedlog.lang @@ -0,0 +1,29 @@ +# Dolibarr language file - Source file is en_US - blockedlog +BlockedLog=Logs nao modificaveis +BlockedLogDesc=Este módulo rastreia alguns eventos em um log inalterável (que você não pode modificar uma vez gravado) em uma cadeia de blocos, em tempo real. Este módulo oferece compatibilidade com os requisitos das leis de alguns países (como a França com a lei Finance 2016 - Norme NF525). +Fingerprints=Eventos e impressoes digitais arquivados +FingerprintsDesc=Esta é a ferramenta para procurar ou extrair os logs inalteráveis. Logs inalteráveis são gerados e arquivados localmente em uma tabela dedicada, em tempo real, quando você registra um evento de negócios. Você pode usar essa ferramenta para exportar esse arquivo e salvá-lo em um suporte externo (alguns países, como a França, pedem que você faça isso todos os anos). Note que, não há nenhum recurso para limpar este log e todas as mudanças tentadas ser feitas diretamente neste log (por um hacker, por exemplo) serão reportadas com uma impressão digital não válida. Se você realmente precisar limpar essa tabela porque usou seu aplicativo para fins de demonstração / teste e deseja limpar seus dados para iniciar sua produção, peça ao seu revendedor ou integrador para redefinir seu banco de dados (todos os seus dados serão removidos). +CompanyInitialKey=Chave inicial da empresa (hash do bloco genesis) +BrowseBlockedLog=Logs nao modificaveis +ShowAllFingerPrintsMightBeTooLong=Mostrar todos os Logs Arquivados (pode ser demorado) +ShowAllFingerPrintsErrorsMightBeTooLong=Mostrar todos os arquivos de log inválidos (pode demorar) +DownloadBlockChain=Baixar impressoes digitais +KoCheckFingerprintValidity=A entrada de registro arquivada não é válida. Isso significa que alguém (um hacker?) Modificou alguns dados deste registro depois que ele foi gravado, ou apagou o registro arquivado anterior (verifique se a linha com o anterior # existe) ou modificou a soma de verificação do registro anterior. +OkCheckFingerprintValidity=O registro de log arquivado é válido. Os dados nesta linha não foram modificados e a entrada segue a anterior. +OkCheckFingerprintValidityButChainIsKo=O log arquivado parece válido em comparação com o anterior, mas a cadeia foi previamente corrompida. +AddedByAuthority=Salvo na autoridade remota +ShowDetails=Mostrar detalhes salvos +logPAYMENT_VARIOUS_CREATE=Pagamento (não atribuído a uma fatura) criado +logPAYMENT_VARIOUS_MODIFY=Pagamento (não atribuído a uma fatura) modificado +logPAYMENT_VARIOUS_DELETE=Pagamento (não atribuído a uma fatura) exclusão lógica +logBILL_VALIDATE=Fatura de cliente confirmada +logBILL_SENTBYMAIL=Fatura do cliente enviada por email +logCASHCONTROL_VALIDATE=Registro de fechamento de caixa +Fingerprint=Impressao digial +logDOC_PREVIEW=Pré -visualização de um documento validado para imprimir ou baixar +DataOfArchivedEvent=Dados completos do evento arquivado +ImpossibleToReloadObject=Objeto original (tipo %s, id %s) não vinculado (consulte a coluna 'Dados completos' para obter dados salvos inalterados) +BlockedLogActivatedBecauseRequiredByYourCountryLegislation=O módulo Logs Inalteráveis ​​foi ativado por causa da legislação do seu país. A desativação deste módulo pode invalidar quaisquer transações futuras com relação à lei e ao uso de software legal, já que elas não podem ser validadas por uma auditoria fiscal. +BlockedLogDisableNotAllowedForCountry=Lista de países onde o uso deste módulo é obrigatório (apenas para evitar desabilitar o módulo por erro, se o seu país estiver nesta lista, desabilitar o módulo não é possível sem primeiro editar esta lista. Note também que habilitar / desabilitar este módulo irá manter uma faixa no log inalterável). +OnlyNonValid=Nao valido +RestrictYearToExport=Limitar mes / ano a se exportar diff --git a/htdocs/langs/pt_MZ/bookmarks.lang b/htdocs/langs/pt_MZ/bookmarks.lang new file mode 100644 index 00000000000..89de31ef04f --- /dev/null +++ b/htdocs/langs/pt_MZ/bookmarks.lang @@ -0,0 +1,11 @@ +# Dolibarr language file - Source file is en_US - bookmarks +AddThisPageToBookmarks=Adicione a página atual aos marcadores +ListOfBookmarks=Lista de marcadores +OpenANewWindow=Abra uma nova aba +ReplaceWindow=Substituir guia atual +BookmarkTargetReplaceWindowShort=Guia atual +BehaviourOnClick=Comportamento quando a URL de marcador é selecionada +SetHereATitleForLink=Definir um nome para o marcador +ChooseIfANewWindowMustBeOpenedOnClickOnBookmark=Escolha se a página vinculada deve abrir na guia atual ou em uma nova guia +BookmarksManagement=Gestor de marcadores +BookmarksMenuShortCut=Ctrl + Shift + M diff --git a/htdocs/langs/pt_MZ/boxes.lang b/htdocs/langs/pt_MZ/boxes.lang new file mode 100644 index 00000000000..b2b9318dd4d --- /dev/null +++ b/htdocs/langs/pt_MZ/boxes.lang @@ -0,0 +1,98 @@ +# Dolibarr language file - Source file is en_US - boxes +BoxDolibarrStateBoard=Estatísticas sobre os principais objetos de negócios no banco de dados +BoxLoginInformation=Informações de Login +BoxLastRssInfos=Informação de RSS +BoxLastProducts=Últimos %s Produtos/Serviços +BoxProductsAlertStock=Alertas de estoque para produtos +BoxLastProductsInContract=Últimos %s produtos/serviços contratados +BoxLastSupplierBills=Últimas faturas de fornecedores +BoxLastCustomerBills=Faturas mais recentes do cliente +BoxOldestUnpaidSupplierBills=Faturas mais antigas de fornecedores não pagas +BoxLastProposals=Últimas propostas comerciais +BoxLastProspects=Últimos prospectos de cliente modificados +BoxLastCustomerOrders=Últimas encomendas +BoxLastContacts=Últimos contatos/endereços +BoxLastModifiedMembers=Últimos membros modificados +BoxLastMembersSubscriptions=Últimas inscrições de membros +BoxCurrentAccounts=Saldo das contas ativas +BoxTitleMemberNextBirthdays=Aniversários deste mês (membros) +BoxTitleMembersSubscriptionsByYear=Assinaturas de membros por ano +BoxTitleLastRssInfos=Últimas %s novidades de %s +BoxTitleLastProducts=Produtos/Serviços: %s modificado +BoxTitleProductsAlertStock=Produtos: alerta de estoque +BoxTitleLastSuppliers=Últimos %s fornecedores registrados +BoxTitleLastModifiedSuppliers=Fornecedores: último %s modificado +BoxTitleLastModifiedCustomers=Clientes: último %s modificado +BoxTitleLastCustomersOrProspects=Últimos %s clientes ou prospectos de cliente +BoxTitleLastCustomerBills=Últimas %s faturas de cliente modificadas mais recentes +BoxTitleLastSupplierBills=Últimas %s faturas de fornecedor modificadas mais recentes +BoxTitleLastModifiedProspects=Perspectivas: último %s modificado +BoxTitleOldestUnpaidCustomerBills=Faturas do cliente: o mais antigo %s não pago +BoxTitleOldestUnpaidSupplierBills=Faturas de fornecedores: %smais antigas não pagas +BoxTitleCurrentAccounts=Contas abertas: saldos +BoxTitleSupplierOrdersAwaitingReception=Pedidos de fornecedores aguardando recepção +BoxTitleLastModifiedContacts=Contatos/Endereços: último %s modificado +BoxMyLastBookmarks=Marcadores: mais recente %s +BoxOldestExpiredServices=Mais antigos serviços ativos expirados +BoxLastExpiredServices=Ultimo %s dos contatos com serviço vencido ativo +BoxTitleLastContracts=Contratos %s mais recentes que foram modificados +BoxTitleLastModifiedDonations=Doações mais recentes %s que foram modificadas +BoxTitleLastModifiedExpenses=Relatórios de despesas %s mais recentes que foram modificados +BoxTitleLatestModifiedBoms=Últimos BOMs %s que foram modificados +BoxTitleLatestModifiedMos=Pedidos de fabricação %s mais recentes que foram modificados +BoxTitleLastOutstandingBillReached=Clientes com máximo pendente excedido +BoxGlobalActivity=Atividade global (faturas, propostas, pedidos) +BoxScheduledJobs=Tarefas agendadas +BoxTitleFunnelOfProspection=Funil de lead +FailedToRefreshDataInfoNotUpToDate=Falha ao atualizar o fluxo de RSS. Data de atualização mais recente com êxito: %s +LastRefreshDate=Ultima data atualizacao +NoRecordedBookmarks=Nenhum marcador definido. +NoRecordedContacts=Nenhum contato registrado +NoActionsToDo=Nenhuma ação para fazer +NoRecordedProposals=Nenhum possível cliente registrado +NoRecordedInvoices=Nenhuma nota fiscal registrada +NoUnpaidCustomerBills=Não há notas fiscais de clientes não pagas +NoUnpaidSupplierBills=Nenhuma fatura de fornecedor não paga +NoRecordedProducts=Nenhum registro de produtos/serviços +NoRecordedProspects=Nenhum registro de possíveis clientes +NoContractedProducts=Nenhum produtos/serviços contratados +NoRecordedContracts=Nenhum registro de contratos +NoRecordedInterventions=Nenhum registro de intervenções +BoxLatestSupplierOrdersAwaitingReception=Últimos pedidos (com uma recepção pendente) +BoxCustomersInvoicesPerMonth=Faturas do cliente por mês +BoxSuppliersInvoicesPerMonth=Faturas de fornecedores por mês +BoxCustomersOrdersPerMonth=Pedidos de vendas por mês +BoxSuppliersOrdersPerMonth=Ordens do fornecedor por mês +NoTooLowStockProducts=Nenhum produto está sob o limite de estoque baixo +BoxProductDistribution=Distribuição de Produtos / Serviços +ForObject=Em %s +BoxTitleLastModifiedSupplierBills=Faturas de Fornecedores: últimos%s modificadas +BoxTitleLatestModifiedSupplierOrders=Ordens do Vendedor: último %s modificado +BoxTitleLastModifiedCustomerBills=Faturas do cliente: último %s modificado +BoxTitleLastModifiedCustomerOrders=Pedidos de Vendas: último %s modificado +BoxTitleLastModifiedPropals=Últimas %s propostas modificadas +BoxTitleLatestModifiedJobPositions=Últimos cargos modificados %s +BoxTitleLatestModifiedCandidatures=Aplicativos de trabalho modificados %s mais recentes +ForCustomersInvoices=Faturas de clientes +ForCustomersOrders=Pedidos de clientes +LastXMonthRolling=Ultima %s mensal +ChooseBoxToAdd=Adicionar widget para sua area de notificacoes +BoxAdded=A ferramenta foi adicionada no seu painel +BoxTitleUserBirthdaysOfMonth=Aniversários deste mês (usuários) +BoxLastManualEntries=Registro mais recente na contabilidade inserido manualmente ou sem documento de origem +BoxTitleLastManualEntries=%s último registro inserido manualmente ou sem documento de origem +NoRecordedManualEntries=Nenhuma entrada manual registrada na contabilidade +BoxSuspenseAccount=Operação de contabilidade com conta suspensa +BoxTitleSuspenseAccount=Número de linhas não alocadas +NumberOfLinesInSuspenseAccount=Número de linha na conta suspensa +SuspenseAccountNotDefined=A conta suspensa não está definida +BoxLastCustomerShipments=Últimos envios de clientes +BoxTitleLastCustomerShipments=%s remessas de clientes mais recentes +NoRecordedShipments=Nenhuma remessa de cliente registrada +BoxCustomersOutstandingBillReached=Clientes com limite pendente atingido +UsersHome=Usuários e grupos domésticos +MembersHome=Sócio da casa +ThirdpartiesHome=Terceiros domésticos +TicketsHome=Início Tickets +AccountancyHome=Início contabilidade +ValidatedProjects=Projetos validados diff --git a/htdocs/langs/pt_MZ/cashdesk.lang b/htdocs/langs/pt_MZ/cashdesk.lang new file mode 100644 index 00000000000..ba8dd6ccdde --- /dev/null +++ b/htdocs/langs/pt_MZ/cashdesk.lang @@ -0,0 +1,92 @@ +# Dolibarr language file - Source file is en_US - cashdesk +CashdeskShowServices=Serviços de venda +CashDeskStock=Estoque +CashDeskOn=ligar +NewSell=Nova venda +AddThisArticle=Adicionar esse artigo +RestartSelling=Voltar na venda +SellFinished=Venda completada +PrintTicket=Imprimir tíquete +SendTicket=Enviar ticket +TotalTicket=Total do tíquite +NoVAT=Nenhum IVA para essa venda +Change=Excesso recebido +ShowCompany=Mostar empresa +DeleteArticle=Clique para remover esse artigo +FilterRefOrLabelOrBC=Procurar (Ref/Rótulo) +DolibarrReceiptPrinter=Impressão de Recibo Dolibarr +PointOfSale=Ponto de vendas +PointOfSaleShort=PDV +CloseBill=Fechar fatura +TakeposConnectorNecesary='TakePOS Connector' é requerido +Receipt=Recibo +Header=Cabeçalho +Footer=Rodapé +AmountAtEndOfPeriod=Montante no final do período (dia, mês ou ano) +TheoricalAmount=Quantidade teórica +RealAmount=Quantidade real +NbOfInvoices=Núm. de faturas +Paymentnumpad=Tipo de Pad para inserir pagamento +Numberspad=Números de Pad +BillsCoinsPad=Almofada de moedas e notas +DolistorePosCategory=Módulos TakePOS e outras soluções de PDV para Dolibarr +TakeposNeedsCategories=TakePOS precisa de pelo menos uma categoria de produto para funcionar +TakeposNeedsAtLeastOnSubCategoryIntoParentCategory=TakePOS precisa de pelo menos 1 categoria de produto na categoria %s para funcionar +CashDeskBankAccountFor=Conta padrão a ser usada para pagamentos em +NoPaimementModesDefined=Nenhum modo de embalagem definido na configuração do TakePOS +TicketVatGrouped=Agrupar IVA por taxa em tickets | recibos +AutoPrintTickets=Imprimir automaticamente tickets | recibos +PrintCustomerOnReceipts=Imprimir cliente em tickets | recibos +EnableBarOrRestaurantFeatures=Ativar recursos para Bar ou Restaurante +ConfirmDeletionOfThisPOSSale=Você confirma a exclusão desta venda atual? +ConfirmDiscardOfThisPOSSale=Deseja descartar esta venda atual? +ValidateAndClose=Validar e fechar +NumberOfTerminals=Número de terminais +TerminalSelect=Selecione o terminal que você deseja usar: +POSTicket=PDV Ticket +POSTerminal=Terminal PDV +POSModule=Módulo PDV +BasicPhoneLayout=Usar layout básico para telefones +SetupOfTerminalNotComplete=A configuração do terminal 1%s não está concluída +DirectPayment=Pagamento direto +DirectPaymentButton=Adicionar um botão "Pagamento direto em dinheiro" +InvoiceIsAlreadyValidated=A fatura já está validada +NoLinesToBill=Nenhuma linha para cobrança +CustomReceipt=Recibo personalizado +ReceiptName=Nome do recibo +SupplementCategory=Categoria de suplemento +ColorTheme=Tema de cores +Colorful=Colorido +HeadBar=Barra principal +SortProductField=Campo para classificação de produtos +BrowserMethodDescription=Impressão de recibo simples e fácil. Apenas alguns parâmetros para configurar o recebimento. \nImprimir via navegador. +TakeposConnectorMethodDescription=Módulo externo com recursos extras. Possibilidade de imprimir a partir da nuvem. +PrintMethod=Método de impressão +ByTerminal=Pelo terminal +TakeposNumpadUsePaymentIcon=Use o ícone em vez do texto nos botões de pagamento do teclado numérico +CashDeskRefNumberingModules=Módulo de numeração para vendas PDV +CashDeskGenericMaskCodes6 =
A tag {TN} é usada para adicionar o número do terminal +TakeposGroupSameProduct=Agrupe as mesmas linhas de produtos +StartAParallelSale=Iniciar uma nova venda paralela +SaleStartedAt=Venda iniciada às %s +CashReport=Relatório de caixa +MainPrinterToUse=Impressora principal a ser usada +OrderPrinterToUse=Solicite impressora a ser usada +MainTemplateToUse=Modelo principal a ser usado +OrderTemplateToUse=Modelo de pedido a ser usado +BarRestaurant=Bar Restaurante +AutoOrder=Encomendado pelo próprio cliente +CustomerMenu=Menu do cliente +ScanToMenu=Digitalize o código QR para ver o menu +ScanToOrder=Digitalize o código QR para fazer o pedido +Appearance=Aparência +HideCategoryImages=Ocultar imagens da categoria +HideProductImages=Ocultar imagens do produto +NumberOfLinesToShow=Número de linhas de imagens a mostrar +DefineTablePlan=Definir plano de tabelas +GiftReceiptButton=Adicionar um botão "Recibo para presente" +GiftReceipt=Recibo de presente +ModuleReceiptPrinterMustBeEnabled=A impressora de recibos do módulo deve ter sido habilitada primeiro +AllowDelayedPayment=Permitir pagamento atrasado +PrintPaymentMethodOnReceipts=Imprimir forma de pagamento em tickets | recibos +WeighingScale=Balança diff --git a/htdocs/langs/pt_MZ/categories.lang b/htdocs/langs/pt_MZ/categories.lang new file mode 100644 index 00000000000..90fd95922d2 --- /dev/null +++ b/htdocs/langs/pt_MZ/categories.lang @@ -0,0 +1,90 @@ +# Dolibarr language file - Source file is en_US - categories +Rubrique=Tag/Categoria +Rubriques=Tags/Categorias +RubriquesTransactions=Tags/Categorias de transações +categories=tags/categorias +NoCategoryYet=Nenhuma categoria deste tipo foi criada +In=Em +CategoriesArea=Área Tags / Categorias +ProductsCategoriesArea=Área de categorias de produtos e serviços +SuppliersCategoriesArea=Área de categorias de fornecedores +CustomersCategoriesArea=Área de categorias do cliente +MembersCategoriesArea=Área de categorias de membros +ContactsCategoriesArea=Área de categorias de contatos/endereços +AccountsCategoriesArea=Área de categorias de bancos +ProjectsCategoriesArea=Área de categorias de projetos +UsersCategoriesArea=Área de categorias de usuários +CatList=Lista de tags/categorias +CatListAll=Lista tags / categorias (todos os tipos) +NewCategory=Nova tag/categoria +ModifCat=Modificar tag/categoria +CatCreated=Tag/categoria criada +CreateCat=Criar tag/categoria +CreateThisCat=Criar esta tag/categoria +NoSubCat=Nenhuma subcategoria. +FoundCats=Encontrada tags / categorias +ImpossibleAddCat=Impossível associar a tag/categoria %s +WasAddedSuccessfully=Foi adicionado com êxito. +ObjectAlreadyLinkedToCategory=Elemento já está ligada a esta tag / categoria. +ProductIsInCategories=Produto / serviço está ligada à seguintes tags / categorias +CompanyIsInCustomersCategories=Este Terceiro está vinculado às seguintes tags/categorias de Clientes/Prospects +MemberIsInCategories=Esse membro está vinculado a seguintes membros tags / categorias +ContactIsInCategories=Este contato é ligado à sequência de contatos tags / categorias +ProductHasNoCategory=Este produto / serviço não está em nenhuma tags / categorias +CompanyHasNoCategory=Este terceiro nao tem nenhuma tag/categoria +MemberHasNoCategory=Este membro não está em nenhum tags / categorias +ContactHasNoCategory=Este contato não está em nenhum tags / categorias +ProjectHasNoCategory=Este projeto nao esta em nenhuma tag/categoria +ClassifyInCategory=Adicionar para tag / categoria +NotCategorized=Sem tag / categoria +CategoryExistsAtSameLevel=Esta categoria já existe na mesma localização +ContentsVisibleByAllShort=Conteúdo visivel por todos +ContentsNotVisibleByAllShort=Conteúdo não visivel por todos +DeleteCategory=Excluir tag / categoria +ConfirmDeleteCategory=Tem certeza que quer deleitar esta tag/categoria? +NoCategoriesDefined=Nenhuma tag / categoria definida +CustomersCategoryShort=Clientes tag / categoria +ProductsCategoryShort=Produtos tag / categoria +MembersCategoryShort=Membros tag / categoria +CustomersCategoriesShort=Clientes tags / categorias +ProspectsCategoriesShort=Tag/categoria Prospecção +CustomersProspectsCategoriesShort=Categorias de cliente deste terceiro +ProductsCategoriesShort=Produtos tags / categorias +MembersCategoriesShort=Tag / categorias de Membros +ContactCategoriesShort=Contatos tags / categorias +AccountsCategoriesShort=Tags/categorias Contas +ProjectsCategoriesShort=Projetos tags/categorias +UsersCategoriesShort=Tags / categorias de usuários +StockCategoriesShort=Tags / categorias de armazém +ThisCategoryHasNoItems=Esta categoria não contém nenhum item. +CategId=ID Tag / categoria +ParentCategory=Tag / categoria principal +ParentCategoryLabel=Rótulo tag / categoria principal +CatSupList=Lista tags / categorias de fornecedores +CatCusList=Lista de clientes / clientes potenciais / categorias +CatProdList=Lista de produtos tags / categorias +CatMemberList=Lista de membros tags / categorias +CatContactList=Lista tags / categorias de contatos +CatProjectsList=Lista tags / categorias de projetos +CatUsersList=Lista tags / categorias de usuários +CatSupLinks=Links entre fornecedores e tags / categorias +CatCusLinks=Relação/links entre clientes / perspectivas e tags / categorias +CatContactsLinks=Links entre contatos / endereços e tags / categorias +CatProdLinks=Relação/links entre produtos / serviços e tags / categorias +CatMembersLinks=Ligações entre os membros e tags / categorias +CatProjectsLinks=Links entre projetos e tags/categorias +CatUsersLinks=Links entre usuários e tags / categorias +ExtraFieldsCategories=atributos complementares +CategoriesSetup=Configuração Tags / categorias +CategorieRecursiv=Fazer a ligação com os pais tag/categoria automaticamente +CategorieRecursivHelp=Se a opção estiver ativada, quando você adicionar um produto a uma subcategoria, o produto também será adicionado à categoria pai. +AddProductServiceIntoCategory=Adicione o seguinte produto / serviço +AddCustomerIntoCategory=Atribuir categoria ao cliente +AddSupplierIntoCategory=Atribuir categoria ao fornecedor +ShowCategory=Mostrar tag / categoria +ChooseCategory=Escolher categoria +StocksCategoriesArea=Categorias de Armazém +ActionCommCategoriesArea=Categorias de Eventos +WebsitePagesCategoriesArea=Categorias de contêiner de página +KnowledgemanagementsCategoriesArea=Categorias de artigos KM +UseOrOperatorForCategories=Use o operador 'OR' para categorias diff --git a/htdocs/langs/pt_MZ/commercial.lang b/htdocs/langs/pt_MZ/commercial.lang new file mode 100644 index 00000000000..493791da89d --- /dev/null +++ b/htdocs/langs/pt_MZ/commercial.lang @@ -0,0 +1,62 @@ +# Dolibarr language file - Source file is en_US - commercial +Commercial=Comercial +CommercialArea=Área comercial +Prospects=Prospectos de cliente +DeleteAction=Excluir um evento +AddAction=Adicionar evento +AddAnAction=Adicionar um evento +AddActionRendezVous=Criar um evento de reunião +ConfirmDeleteAction=Tem certeza que quer deleitaar este evento ? +CardAction=Ficha de evento +ActionOnContact=Contato relacionado +ShowTask=Mostrar tarefa +ShowAction=Mostrar evento +ActionsReport=Relatório de eventos +SaleRepresentativesOfThirdParty=Representantes de vendas de terceiros +SalesRepresentative=Representante comercial +SalesRepresentatives=Representantes comerciais +SalesRepresentativeFollowUp=Representante comercial (seguindo) +SalesRepresentativeSignature=Representante comercial (assinatura) +NoSalesRepresentativeAffected=Nenhum particular foi designado para representante comercial +ShowCustomer=Mostrar cliente +ShowProspect=Mostrar prospecto de cliente +ListOfProspects=Lista de prospectos de cliente +ListOfCustomers=Lista de clientes +LastDoneTasks=Últimas %s ações completadas +LastActionsToDo=%s ações não concluídas mais antigas +DoneAndToDoActions=Concluída e para fazer eventos +DoneActions=Eventos concluídos +ToDoActions=Eventos não concluídos +SendPropalRef=Enviar orçamento %s +SendOrderRef=Enviar pedido %s +StatusNotApplicable=Não aplicavel +StatusActionToDo=Para fazer +StatusActionDone=Concluído +StatusActionInProcess=Em andamento +TasksHistoryForThisContact=Eventos para esse contato +LastProspectNeverContacted=Nunca contactado +LastProspectContactInProcess=Contato em andamento +LastProspectContactDone=Contato feito +ActionAffectedTo=Evento atribuído para +ActionDoneBy=Evento feito por +ActionAC_TEL=Chamada telefônica +ActionAC_PROP=Enviar proposta por correio +ActionAC_EMAIL=Enviar e-mail +ActionAC_INT=Intervenção no lugar +ActionAC_FAC=Enviar fatura de cliente por correio +ActionAC_REL=Enviar fatura de cliente por correio (lembrete) +ActionAC_EMAILING=Enviar emails massivos +ActionAC_COM=Envia pedido de venda por email +ActionAC_SHIP=Enviar frete por correio +ActionAC_SUP_ORD=Enviar pedido por correio +ActionAC_SUP_INV=Enviar fatura do fornecedor por email +ActionAC_OTH=Outros +ActionAC_OTH_AUTOShort=Outros +Stats=Estatísticas de vendas +StatusProsp=Status de prospecto de cliente +DraftPropals=Minutas de orçamentos +ToOfferALinkForOnlineSignature=Link para assinatura on-line +WelcomeOnOnlineSignaturePage=Bem-vindo à página para aceitar propostas comerciais de %s +ThisScreenAllowsYouToSignDocFrom=Esta tela permite que você aceite e assine ou recuse um orçamento / proposta comercial +SignatureProposalRef=Assinatura da cotação / proposta comercial %s +FeatureOnlineSignDisabled=Recurso para assinatura online desabilitado ou documento gerado antes que o recurso fosse ativado diff --git a/htdocs/langs/pt_MZ/companies.lang b/htdocs/langs/pt_MZ/companies.lang new file mode 100644 index 00000000000..4f29abde47f --- /dev/null +++ b/htdocs/langs/pt_MZ/companies.lang @@ -0,0 +1,273 @@ +# Dolibarr language file - Source file is en_US - companies +ErrorCompanyNameAlreadyExists=Já existe uma empresa com o nome %s. Escolha um outro. +ErrorSetACountryFirst=Defina o país primeiro +ConfirmDeleteCompany=Tem certeza de que deseja excluir esta empresa e todas as informações relacionadas? +DeleteContact=Excluir um contato/endereço +ConfirmDeleteContact=Tem certeza de que deseja excluir este contato e todas as informações relacionadas? +MenuNewProspect=Novo Provável Cliente +MenuNewPrivateIndividual=Novo particular +NewCompany=Nova Empresa (prospecto, cliente, fornecedor) +NewThirdParty=Novo Terceiro (provável cliente, cliente, fornecedor) +CreateDolibarrThirdPartySupplier=Crie um terceiro (fornecedor) +CreateThirdPartyOnly=Adicionar terceiro +CreateThirdPartyAndContact=Criar um terceiro + um contato interno +ProspectionArea=Área de prospecção +IdThirdParty=ID do terceiro +IdCompany=ID da empresa +IdContact=ID do contato +ThirdPartyAddress=Endereço do terceiro +ThirdPartyContact=Contato / endereço de terceiro +AliasNames=Nome de fantasia (nome comercial, marca registrada etc.) +AliasNameShort=Nome alternativo +CountryIsInEEC=País está dentro da Comunidade Econômica Européia +PriceFormatInCurrentLanguage=Formato de apresentação do preço na linguagem atual e tipo de moeda +ThirdPartyName=Nome do terceiro +ThirdPartyEmail=E-mail do terceiro +ThirdPartyProspects=Prospectos de cliente +ThirdPartyProspectsStats=Prospectos de cliente +ThirdPartyCustomersWithIdProf12=Clientes com %s ou %s +ThirdPartySuppliers=Vendedores +Individual=Pessoa física +ToCreateContactWithSameName=Irá automaticamente criar um contato/endereço com a mesma informação do terceiro. Na maioria dos casos, mesmo que o terceiro seja uma pessoa física, a criação de um único terceiro é suficiente. +ParentCompany=Matriz +Subsidiaries=Filiais +ReportByMonth=Relatório por mês +ReportByCustomers=Relatório por cliente +ReportByThirdparties=Relatório por terceiro +ReportByQuarter=Relatório por taxa +CivilityCode=Forma de tratamento +RegisteredOffice=Escritório registrado +Lastname=Sobrenome +Firstname=Primeiro nome +RefEmployee=Referência do funcionário +NationalRegistrationNumber=Número de registro nacional +PostOrFunction=Cargo +NatureOfContact=Natureza do Contato +Address=Endereço +State=Estado/Província +StateCode=Código do Estado / Cidade +StateShort=Status do Cadastro +Region=Região +Region-State=Região - Estado +CountryCode=Código do país +Call=Chamar +PhonePro=Telefone comercial +PhonePerso=Tel. particular +PhoneMobile=Celular +No_Email=Recusar e-mails em massa +Zip=CEP +Town=Município +Web=Website +DefaultLang=Idioma padrão +VATIsUsed=Imposto usado sobre vendas +VATIsUsedWhenSelling=Aqui se define se esse terceiro inclui ou não um imposto sobre vendas quando faz uma fatura para seus próprios clientes +VATIsNotUsed=O imposto sobre vendas não é usado +CopyAddressFromSoc=Copie o endereço do terceiro +ThirdpartyNotCustomerNotSupplierSoNoRef=Terceiros nem cliente nem fornecedor, não há objetos de referência disponíveis +ThirdpartyIsNeitherCustomerNorClientSoCannotHaveDiscounts=Não existem descontos nem do cliente, fornecedor ou terceiro +PaymentBankAccount=Pagamento conta bancária +OverAllOrders=Pedidos +OverAllSupplierProposals=Solicitações de preço +LocalTax1IsUsed=Utilizar segundo imposto +LocalTax1IsUsedES=É usado RE +LocalTax1IsNotUsedES=Não é usado RE +LocalTax2IsUsed=Utilizar terceiro imposto +LocalTax2IsUsedES=É usado IRPF +LocalTax2IsNotUsedES=Não é usado IRPF +WrongCustomerCode=Código de cliente inválido +WrongSupplierCode=Código do fornecedor inválido +CustomerCodeModel=Modelo de código de cliente +SupplierCodeModel=Modelo de código do fornecedor +ProfId1Short=ID prof. 1 +ProfId2Short=ID prof. 2 +ProfId3Short=ID prof. 3 +ProfId4Short=ID prof. 4 +ProfId5Short=ID prof. 5 +ProfId6Short=ID prof. 6 +ProfId1=ID profissional 1 +ProfId2=ID profissional 2 +ProfId3=ID profissional 3 +ProfId4=ID profissional 4 +ProfId5=ID profissional 5 +ProfId6=ID profissional 6 +ProfId1AT=Prof Id 1 (IVA) +ProfId2AT=Prof Id 2 (Inscrição Estadual) +ProfId3AT=Prof Id 3 (Inscrição Municipal) +ProfId1BE=Prof Id 1 (Número profissional) +ProfId4BR=CNPJ/CPF +ProfId1CH=Número UID +ProfId3CH=Prof Id 1 (Número federal) +ProfId4CH=Prof Id 2 (Número gravado comercial) +ProfId1CM=Id. prof. 1 (Registro Comercial) +ProfId2CM=Id. prof. 2 (nº de Contribuinte) +ProfId1DE=Prof Id 1 (IVA) +ProfId2DE=Prof Id 2 (Inscrição Estadual) +ProfId3DE=Prof Id 3 (Inscrição Municipal) +ProfId2ES=Prof Id 2 (Número de seguro social) +ProfId4ES=Prof Id 4 (Número do colegial) +ProfId1FR=SIREN +ProfId2FR=SIRET +ProfId3FR=NAF (Ex APE) +ProfId4FR=RCS/RM +ProfId1GB=Número do registro +ProfId4IN=ID prof. 4 +ProfId5IN=ID prof. 5 +ProfId1LU=Id. prof. 1 (R.C.S. Luxemburgo) +ProfId2LU=Id. prof. 2 (Permissão para negócios) +ProfId1PT=NIPC +ProfId2PT=Núm. Segurança Social +ProfId3PT=Num. Reg. Comercial +ProfId4PT=Conservatória +ProfId1TN=RC +ProfId2TN=Matrícula Fiscal +ProfId3TN=Código na Alfandega +ProfId4TN=CCC +ProfId1US=Id do Prof (FEIN) +ProfId2RO=Prof Id 2 (nº de registro) +ProfId3DZ=Numero do Contribuinte +ProfId4DZ=Numero de Identificação Social +VATIntra=ID do IVA +VATIntraShort=ID do IVA +VATIntraSyntaxIsValid=Sintaxe é válida +ProspectCustomer=Possível cliente / Cliente +CustomerRelativeDiscount=Desconto relativo do cliente +CustomerRelativeDiscountShort=Desconto relativo +CompanyHasRelativeDiscount=Esse cliente tem um desconto padrão de %s%% +CompanyHasNoRelativeDiscount=Esse cliente não tem desconto relativo por padrão +HasRelativeDiscountFromSupplier=Desconto padrão de %s%%deste fornecedor +HasNoRelativeDiscountFromSupplier=Não existe desconto padrão para este fornecedor +CompanyHasCreditNote=Esse cliente ainda tem notas de crédito por %s %s +HasNoAbsoluteDiscountFromSupplier=Não existe desconto de crédito desse fornecedor +HasAbsoluteDiscountFromSupplier=Existem descontos disponíveis (Notas de credito or pagamentos baixados) para %s%s deste fornecedor +HasDownPaymentOrCommercialDiscountFromSupplier=Existem descontos disponíveis(Comercial, pagamentos baixados) para %s%s deste fornecedor +HasCreditNoteFromSupplier=Existem notas de crédito %s %s deste fornecedor +CompanyHasNoAbsoluteDiscount=Esse cliente não tem desconto de crédito disponível +CustomerAbsoluteDiscountAllUsers=Descontos absolutos do cliente (concedidos por todos os usuários) +CustomerAbsoluteDiscountMy=Descontos absolutos do cliente (concedidos por você) +SupplierAbsoluteDiscountAllUsers=Descontos absolutos de fornecedores (inseridos por todos os usuários) +SupplierAbsoluteDiscountMy=Descontos absolutos de fornecedores (inseridos por você) +DiscountNone=Nenhum +AddContact=Adicionar contato +AddContactAddress=Adicionar contato/endereço +EditContact=Editar contato +EditContactAddress=Editar contato/endereço +Contact=Contato / Endereço +Contacts=Contatos/Endereços +ContactId=ID do contato +ContactsAddresses=Contatos/Endereços +NoContactDefinedForThirdParty=Nenhum contato foi definido para esse terceiro +NoContactDefined=Sem contato definido +DefaultContact=Contato/endereço padrão +ContactByDefaultFor=Endereço/contacto padrão para +AddThirdParty=Adicionar terceiro +DeleteACompany=Excluir empresa +PersonalInformations=Dados pessoais +AccountancyCode=Conta contábil +CustomerCode=Código de Cliente +SupplierCode=Código Fornecedor +CustomerCodeShort=Código de Cliente +SupplierCodeShort=Código Fornecedor +SupplierCodeDesc=Código do Fornecedor, exclusivo para todos os fornecedores +RequiredIfCustomer=Necessário se o terceiro for um cliente ou um possível cliente +RequiredIfSupplier=Obrigatório se terceiros são fornecedores +ProspectToContact=Prospecto de cliente a contactar +CompanyDeleted=A empresa "%s" foi excluída do banco de dados. +ListOfContacts=Lista de contatos/endereços +ListOfContactsAddresses=Lista de contatos/endereços +ShowContact=Contato - Endereço +ContactForOrders=Contato de pedidos +ContactForOrdersOrShipments=Contato do pedido ou da remessa +ContactForProposals=Contato de orçamentos +ContactForContracts=Contato de contratos +ContactForInvoices=Contato de faturas +NoContactForAnyOrder=Esse contato não é de nenhum pedido +NoContactForAnyOrderOrShipments=Este contato não é um contato para qualquer pedido ou remessa +NoContactForAnyProposal=Esse contato não é de nenhum orçamento +NoContactForAnyContract=Esse contato não é de nenhum contrato +NoContactForAnyInvoice=Esse contato não é de nenhuma fatura +NewContact=Novo contato +NewContactAddress=Novo contato / endereço +MyContacts=Meus contatos +CapitalOf=Capital de %s +EditCompany=Editar empresa +ThisUserIsNot=Este usuário não é um cliente em potencial, cliente ou fornecedor +VATIntraCheckDesc=O ID do IVA deve incluir o prefixo do país. O link %s usa o serviço europeu de verificação de IVA (VIES), que requer acesso à Internet do servidor Dolibarr. +ErrorVATCheckMS_UNAVAILABLE=Verificação não é possível. Verifique o serviço não é necessário por um membro de estado (%s). +NorProspectNorCustomer=Nem possivel cliente, nem cliente +JuridicalStatus=Tipo de entidade comercial +ProspectLevelShort=Pos. Cli. +ProspectLevel=Possível cliente +ContactPublic=Compartilhado +ContactVisibility=Visível +ContactOthers=Outros +OthersNotLinkedToThirdParty=Outros, não esta vinculado a terceiros +ProspectStatus=Status de possível cliente +PL_UNKNOWN=Desconhecido +PL_MEDIUM=Médio +TE_GROUP=Empresa de grande porte +TE_MEDIUM=Empresa de médio porte +TE_ADMIN=Governo +TE_SMALL=Empresa de pequeno porte +TE_RETAIL=Revendedor/Varejista +TE_WHOLE=Atacadista +TE_PRIVATE=Autônomo +TE_OTHER=Outros +StatusProspect1=A contactar +StatusProspect2=Contato em andamento +StatusProspect3=Contato feito +ChangeDoNotContact=Alterar status para 'Não contactar' +ChangeNeverContacted=Trocar status para 'Nunca entrar em contato' +ChangeToContact=Alterar status para 'A contactar' +ChangeContactInProcess=Trocar status para 'Contato em andamento' +ChangeContactDone=Trocar status para 'Contato feito' +ProspectsByStatus=Prospectos por status +NoParentCompany=Nenhum +ContactNotLinkedToCompany=Contato não esta vinculado a nenhum terceiro +NoDolibarrAccess=Sem acesso ao Dolibarr +ExportDataset_company_1=Terceiros(Companhias/fundações/pessoas físicas) e suas propriedades +ImportDataset_company_2=Contatos/Enderecos adicionais e atributos de terceiros +ImportDataset_company_4=Vendedores de terceiros (assinalar vendedores/usuários para empresas) +PriceLevelLabels=Etiquetas de nível de preço +DeliveryAddress=Endereço de entrega +AddAddress=Adicionar endereço +DeleteFile=Excluir arquivo +ConfirmDeleteFile=Você tem certeza que deseja deletar esse arquivo? +AllocateCommercial=Designado para representante comercial +Organization=Organização +FiscalMonthStart=Primeiro mês do ano fiscal +SocialNetworksInformation=Redes sociais +SocialNetworksFacebookURL=URL Facebook +SocialNetworksTwitterURL=URL Twitter +SocialNetworksLinkedinURL=URL LinkedIn +SocialNetworksInstagramURL=URL Instagram +SocialNetworksYoutubeURL=URL YouTube +SocialNetworksGithubURL=URL GitHub +YouMustAssignUserMailFirst=Você deve criar um e-mail para este usuário antes de poder adicionar uma notificação por e-mail. +YouMustCreateContactFirst=Para estar apto a adicionar notificações por e-mail, você deve primeiramente definir contatos com e-mails válidos para o terceiro +ListSuppliersShort=Lista de fornecedores +ListProspectsShort=Lista de Prováveis Clientes +LastModifiedThirdParties=Últimos %sTerceiros modificados +UniqueThirdParties=Número total de terceiros +ActivityCeased=Inativo +ThirdPartyIsClosed=O terceiro está fechado +CurrentOutstandingBill=Notas aberta correntes +OutstandingBill=Conta excelente +OutstandingBillReached=Máx. para dívida a ser alcançado +LeopardNumRefModelDesc=O código é livre. Esse código pode ser modificado a qualquer hora. +ManagingDirectors=Nome do Representante(CEO,Diretor,Presidente...) +MergeOriginThirdparty=Duplicar terceiros (terceiros que deseja excluir) +MergeThirdparties=Mesclar terceiros +ThirdpartiesMergeSuccess=Terceiros foram mesclados +SaleRepresentativeLogin=Login para o representante de vendas +SaleRepresentativeLastname=Sobrenome do representante de vendas +ErrorThirdpartiesMerge=Houve um erro ao excluir os terceiros. Por favor, verifique o log. As alterações foram revertidas. +NewCustomerSupplierCodeProposed=Código de cliente/fornecedor já em uso, sugerido o uso de um novo código +KeepEmptyIfGenericAddress=Mantenha este campo vazio se este endereço for um endereço genérico +PaymentTypeCustomer=Tipo de pagamento - Cliente +PaymentTermsCustomer=Termos de pagamento - Cliente +PaymentTypeSupplier=Tipo de pagamento - Fornecedor +PaymentTermsSupplier=Termos de pagamento - Fornecedor +PaymentTypeBoth=Tipo de Pagamento - Cliente e Fornecedor +MulticurrencyUsed=Uso de Multimoeda +CurrentOutstandingBillLate=Atual fatura pendente atrasada +BecarefullChangeThirdpartyBeforeAddProductToInvoice=Cuidado, dependendo das configurações de preço do produto, você deve trocar de fornecedor antes de adicionar o produto ao PDV. diff --git a/htdocs/langs/pt_MZ/compta.lang b/htdocs/langs/pt_MZ/compta.lang new file mode 100644 index 00000000000..55154a3b678 --- /dev/null +++ b/htdocs/langs/pt_MZ/compta.lang @@ -0,0 +1,174 @@ +# Dolibarr language file - Source file is en_US - compta +MenuFinancial=Faturamento | Forma de pagamento +TaxModuleSetupToModifyRules=Vá para configuração do módulo Impostos para modificar regras de cálculo +TaxModuleSetupToModifyRulesLT=Vá até Configuração >> Empresa para modificar as regras de cálculo +OptionMode=Opção de Administração Contabilidade +OptionModeTrue=Opção Rendimentos-Despesas +OptionModeTrueDesc=Neste método, o balanço calcula-se sobre a base das faturas pagas.\nA validade dos valores não está garantida pois a Administração da Contabilidade pasa rigurosamente pelas entradas/saidas das contas mediante as faturas.\nNota : Nesta Versão, Dolibarr utiliza a data da fatura ao estado ' Validada ' e não a data do estado ' paga '. +OptionModeVirtualDesc=neste método, o balanço se calcula sobre a base das faturas validadas. pagas o não, aparecen ao resultado em quanto sejam discolocaçãos. +FeatureIsSupportedInInOutModeOnly=função disponível somente ao modo contas CREDITOS-dividas (Véase a configuração do módulo contas) +VATReportBuildWithOptionDefinedInModule=Os valores aqui apresentados são calculados usando as regras definidas pela configuração do módulo Fiscal. +LTReportBuildWithOptionDefinedInModule=Valores mostrados aqui são calculados usando as regras definidas nas configurações da empresa. +Param=Configuração +RemainingAmountPayment=Pagamento da quantia restante: +Accountparent=Conta principal +Accountsparent=Conta principal +Income=Rendimentos +MenuReportInOut=Rendimentos/Despesas +PaymentsNotLinkedToInvoice=pagamentos vinculados a Nenhuma fatura, por o que nenhum Fornecedor +PaymentsNotLinkedToUser=pagamentos não vinculados a um usuário +Profit=Lucro +AccountingResult=Resultado contábil +BalanceBefore=Balanço (antes) +Piece=Doc. contábil +AmountHTVATRealPaid=líquido pago +VATToPay=Vendas de impostos +VATToCollect=Compras fiscais +VATBalance=balanço de impostos +LT1Summary=Resumo da taxa 2 +LT2Summary=Resumo taxa 3 +LT1SummaryES=RE Balançete +LT2SummaryES=Saldo de IRPF +LT1SummaryIN=Balanço fiscal +LT2SummaryIN=Balanço Fiscal +LT1Paid=Taxa 2 pago +LT2Paid=Taxa 3 pago +LT1PaidES=RE Pago +LT2PaidES=IRPF pago +LT1PaidIN=CGST pago +LT2PaidIN=SGST pago +LT1Customer=2 vendas de taxas +LT1Supplier=Compra de taxas 2 compras +LT1CustomerES=RE vendas +LT1SupplierES=RE compras +LT1CustomerIN=CGST vendas +LT1SupplierIN=Compras do CGST +LT2Customer=Taxa 3 vendas +LT2Supplier=3 compras de taxas +LT2CustomerES=IRPF de vendas +LT2SupplierES=IRPF de compras +LT2CustomerIN=Vendas de SGST +LT2SupplierIN=Compras SGST +VATCollected=IVA recuperado +VATExpensesArea=Área para todos os pagamentos de IVA +SocialContribution=Contribuição fiscal ou social +SocialContributions=Encargos sociais e fiscais +SocialContributionsDeductibles=Contribuições fiscais ou sociais dedutíveis +SocialContributionsNondeductibles=Contribuições fiscais ou sociais não dedutíveis +DateOfSocialContribution=Data do imposto social ou fiscal +LabelContrib=Rótulo da contribuição +TypeContrib=Tipo de contribuição +MenuSpecialExpenses=Despesas especiais +MenuSocialContributions=Contribuições fiscais/sociais +MenuNewSocialContribution=Nova contribuição fiscal/social +NewSocialContribution=Nova contribuição fiscal/social +ContributionsToPay=Encargos sociais / fiscais para pagar +PaymentCustomerInvoice=Pagamento de fatura de cliente +PaymentSupplierInvoice=pagamento de fatura do fornecedor +PaymentSocialContribution=Pagamento de imposto social / fiscal +PaymentVat=Pagamento de IVA +ListOfSupplierPayments=Lista de pagamentos do fornecedor +DateStartPeriod=Período de início e data +DateEndPeriod=Período e data final +newLT1Payment=Novo pagamento da taxa 2 +newLT2Payment=Novo pagamento da taxa 3 +LT1Payment=Pagamento da taxa 2 +LT1Payments=Pagamentos da taxa 2 +LT2Payment=Pagamento da taxa 3 +LT2Payments=Pagamentos da taxa 3 +newLT1PaymentES=Novo RE pagamento +newLT2PaymentES=Novo pagamento de IRPF +LT1PaymentES=RE pagamento +LT1PaymentsES=RE pagamentos +LT2PaymentES=Pagamento de IRPF +LT2PaymentsES=Pagamentos de IRPF +VATPayment=Pagamento da taxa de venda +VATPayments=Pagamentos da taxa de venda +VATDeclarations=Declarações de IVA +VATDeclaration=Declaração de IVA +VATRefund=Reembolso da taxa sobre vendas +SocialContributionsPayments=Pagamentos de impostos sociais / fiscais +ShowVatPayment=Ver Pagamentos de IVA +TotalToPay=Total a pagar +CustomerAccountancyCode=Código contábil do cliente +SupplierAccountancyCode=Código contábil do fornecedor +CustomerAccountancyCodeShort=Cod. cont. cli. +SupplierAccountancyCodeShort=Cod. cont. forn. +AccountNumber=Número da conta +ByExpenseIncome=Por despesas & receitas +ByThirdParties=Por Fornecedor +CheckReceipt=Depósito de cheque +CheckReceiptShort=Depósito de cheque +LastCheckReceiptShort=Últimos %s recibos de cheque +NoWaitingChecks=Sem cheques a depositar. +NbOfCheques=Nº. de cheques +PaySocialContribution=Quitar um encargo fiscal/social +DeleteSocialContribution=Excluir um pagamento taxa social ou fiscal +ExportDataset_tax_1=Encargos fiscais e sociais e pagamentos +CalcModeVATDebt=Modo% S VAT compromisso da contabilidade% s. +CalcModeVATEngagement=Modo% SVAT sobre os rendimentos e as despesas% s. +CalcModeLT1=Modo %sRE nas faturas dos clientes - faturas dos fornecedores%s +CalcModeLT1Debt=Modo %sRE nas faturas dos clientes%s +CalcModeLT1Rec=Modo %sRE nas faturas dos fornecedores%s +CalcModeLT2=Modo %sIRPF nas faturas de clientes - fornecedores%s +CalcModeLT2Debt=Modo %sIRPF nas faturas de clientes%s +CalcModeLT2Rec=Modo %sIRPF nas faturas de fornecedores%s +AnnualSummaryDueDebtMode=Balanço de receitas e despesas, resumo anual +AnnualSummaryInputOutputMode=Balanço de receitas e despesas, resumo anual +AnnualByCompanies=Saldo de receitas e despesas, por grupos de conta predefinidos +AnnualByCompaniesDueDebtMode=Saldo de receitas e despesas, detalhe por grupos predefinidos, modo %sClaims-Debts%s disse Contabilidade de Compromisso . +AnnualByCompaniesInputOutputMode=Saldo de receitas e despesas, detalhe por grupos predefinidos, modo %sIncomes-Expenses%s chamada fluxo de caixa . +RulesAmountWithTaxIncluded=- Valores apresentados estão com todos os impostos incluídos +RulesCADue=- Inclui as faturas do cliente, pagas ou não. -
É baseado na data de cobrança dessas faturas.
+RulesCAIn=- Inclui todos os pagamentos efetivos de faturas recebidas de clientes.
- É baseado na data de pagamento dessas faturas
+RulesAmountOnInOutBookkeepingRecord=Inclui registro em seu Ledger com contas contábeis que tem o grupo "DESPESAS" ou "RENDIMENTO" +RulesResultBookkeepingPredefined=Inclui registro em seu Ledger com contas contábeis que tem o grupo "DESPESAS" ou "RENDIMENTO" +RulesResultBookkeepingPersonalized=Mostra registro em seu Livro de Registro com contas contábeis agrupadas por grupos personalizados +SeePageForSetup=Consulte o menu %s para configurar +LT1ReportByCustomersES=Relatorio por terceiro RE +LT2ReportByCustomersES=Relatório de fornecedores do IRPF +VATReportByCustomersInInputOutputMode=Relatório do IVA cliente recolhido e pago +LT1ReportByQuartersES=Relatorio por rata RE +LT2ReportByQuartersES=Relatorio por rata IRPF +OptionVatInfoModuleComptabilite=Nota: Para os bens materiais, sería necessário utilizar a data de entregas para para ser mais justo. +NotUsedForGoods=Bens não utilizados +ProposalStats=As estatísticas sobre as propostas +OrderStats=Estatísticas de comandos +ThirdPartyMustBeEditAsCustomer=Fornecedor deve ser definido como um cliente +SellsJournal=Diário de Vendas +PurchasesJournal=Diário de Compras +DescSellsJournal=Diário de Vendas +DescPurchasesJournal=Diário de Compras +CodeNotDef=Não Definida +DatePaymentTermCantBeLowerThanObjectDate=Data Prazo de pagamento não pode ser inferior a data da compra ou aquisição +Pcg_version=Modelos de carta de contas +Pcg_subtype=PCG subtipo +InvoiceLinesToDispatch=Linhas de nota fiscal para envio +RefExt=Ref externo +ToCreateAPredefinedInvoice=Para criar um modelo de fatura, crie uma fatura padrão e, sem validá-la, clique no botão%s +LinkedOrder=Linque para o pedido +CalculationRuleDesc=Para calcular o total do VAT, há dois métodos:
Método 1 é arredondamento cuba em cada linha, em seguida, soma-los.
Método 2 é somando tudo cuba em cada linha, em seguida, o arredondamento resultado.
Resultado final pode difere de alguns centavos. O modo padrão é o modo% s. +CalculationRuleDescSupplier=De acordo com o fornecedor, escolha o método apropriado para aplicar a mesma regra de cálculo e obter o mesmo resultado esperado pelo fornecedor. +CalculationMode=Forma de cálculo +AccountancyJournal=código do Livro de Registro contábil +ACCOUNTING_VAT_PAY_ACCOUNT=Conta da contabilidade padrão para o pagamento de IVA[] +ACCOUNTING_ACCOUNT_CUSTOMER=Conta contábil usada para terceiros de clientes +ACCOUNTING_ACCOUNT_SUPPLIER_Desc=A conta contábil dedicada definida no cartão de terceiros será usada apenas para a contabilidade da subconta. Este será usado para contabilidade geral e como valor padrão da contabilidade do Contador, se a conta contábil do fornecedor dedicada a terceiros não estiver definida. +CloneTaxForNextMonth=Clonar para o proximo mes +AddExtraReport=Relatórios extra (adicionar relatório de clientes estrangeiros e nacionais) +OtherCountriesCustomersReport=Relação de clientes estrangeiros +BasedOnTwoFirstLettersOfVATNumberBeingDifferentFromYourCompanyCountry=Com base nas duas primeiras letras do número de IVA sendo diferente do código de país da sua própria empresa +SameCountryCustomersWithVAT=Informar os clientes nacionais +BasedOnTwoFirstLettersOfVATNumberBeingTheSameAsYourCompanyCountry=Com base nas duas primeiras letras do número de IVA sendo o mesmo que o código do país da sua própria empresa +LinkedFichinter=Vincular a uma intervenção +ImportDataset_tax_contrib=Contribuições fiscais/sociais +LabelToShow=Etiqueta curta +PurchaseTurnover=Rotatividade de compras +PurchaseTurnoverCollected=Rotatividade de compras coletadas +RulesPurchaseTurnoverDue=- Inclui as faturas de fornecedores, pagas ou não.
- É baseado na data da fatura.
+RulesPurchaseTurnoverIn=- Inclui todos os pagamentos efetivos das faturas feitas aos fornecedores.
- É baseado na data de pagamento dessas faturas.
+RulesPurchaseTurnoverTotalPurchaseJournal=Inclui todas as linhas de débito no diário de compras. +ReportPurchaseTurnover=Volume de negócios de compra faturada +ReportPurchaseTurnoverCollected=Rotatividade de compras coletadas +IncludeVarpaysInResults =Incluir vários pagamentos nos relatórios +IncludeLoansInResults =Incluir empréstimos nos relatórios diff --git a/htdocs/langs/pt_MZ/contracts.lang b/htdocs/langs/pt_MZ/contracts.lang new file mode 100644 index 00000000000..d79009052c7 --- /dev/null +++ b/htdocs/langs/pt_MZ/contracts.lang @@ -0,0 +1,5 @@ +# Dolibarr language file - Source file is en_US - contracts +ContractStatusDraft=Minuta +ContractStatusValidated=Validada +ContractsSubscriptions=Contratos/Assinaturas +ContractEndDate=Data de término diff --git a/htdocs/langs/pt_MZ/cron.lang b/htdocs/langs/pt_MZ/cron.lang new file mode 100644 index 00000000000..65d861f5bc3 --- /dev/null +++ b/htdocs/langs/pt_MZ/cron.lang @@ -0,0 +1,54 @@ +# Dolibarr language file - Source file is en_US - cron +Permission23101 =Leia trabalho Programado +Permission23102 =Criar / atualização de tarefa agendada +Permission23103 =Excluir trabalho agendado +Permission23104 =Executar trabalho agendado +CronSetup=Configuração do gerenciamento de trabalho agendado +KeyForCronAccess=Chave seguranca para URL que lanca tarefas cron +FileToLaunchCronJobs=Linha de comando para checar e iniciar tarefas cron qualificadas +CronExplainHowToRunUnix=No ambiente Unix você deve usar a seguinte entrada crontab para executar a linha de comando a cada 5 minutos +CronExplainHowToRunWin=No ambiente Microsoft (tm) Windows, você pode usar as ferramentas Tarefas agendadas para executar a linha de comando a cada 5 minutos +CronMethodDoesNotExists=A classe %s não contém método %s algum +CronJobDefDesc=Os perfis de trabalho do Cron são definidos no arquivo do descritor do módulo. Quando o módulo é ativado, eles são carregados e disponíveis para que você possa administrar os trabalhos no menu de ferramentas de administração %s. +CronJobProfiles=Lista de perfis de tarefa cron predefinidas +CronLastOutput=Saída da última execução +CronLastResult=Código do último resultado +CronList=As tarefas agendadas +CronDelete=Excluir tarefas agendadas +CronConfirmDelete=Você tem certeza que deseja excluir esses cron jobs agendados? +CronExecute=Lançar Tarefas agendadas +CronConfirmExecute=Você tem certeza que deseja executar agora estas tarefas agendadas? +CronInfo=O módulo de Tarefa Agendada permite agendar tarefas para executá-las automaticamente. As tarefas também podem ser iniciadas manualmente. +CronNone=Nenhum +CronDtEnd=Não depois +CronDtNextLaunch=Próxima execução +CronFrequency=Frequencia +CronNoJobs=Nenhuma tarefa registrada +CronNbRun=Número de lançamentos +CronMaxRun=Número máximo de lançamentos +JobFinished=Trabalho iniciado e terminado +CronAdd=Adicionar tarefa +CronObject=Instância/Objeto a se criar +CronSaveSucess=Salvo com sucesso +CronNote=Comentario +CronFieldMandatory=O campo %s é obrigatório +CronErrEndDateStartDt=A data final não pode ser anterior a data de início +StatusAtInstall=Status na instalação do módulo +CronClassFile=Nome de arquivo com classe +CronModuleHelp=Nome do diretório do módulo Dolibarr (também trabalhe com o módulo Dolibarr externo).
Por exemplo, para chamar o método fetch do objeto do produto Dolibarr /htdocs/product/class/product.class.php, o valor para module é o product +CronClassFileHelp=O caminho relativo e o nome do arquivo a ser carregado (o caminho é relativo ao diretório-raiz do servidor da web).
Por exemplo, para chamar o método fetch do objeto Product do Dolibarr htdocs / product / class / product.class.php , o valor para o nome do arquivo de classe é product / class / product.class.php +CronObjectHelp=O nome do objeto a ser carregado.
Por exemplo, para chamar o método fetch do objeto do produto Dolibarr /htdocs/product/class/product.class.php, o valor para o nome do arquivo de classe é Produto +CronMethodHelp=O método do objeto a ser lançado.
Por exemplo, para chamar o método fetch do objeto Product do Dolibarr /htdocs/product/class/product.class.php, o valor para o método é fetch +CronArgsHelp=Os argumentos do método.
Por exemplo, para chamar o método fetch do objeto Dolibarr Product /htdocs/product/class/product.class.php, o valor dos parâmetros pode ser 0, ProductRef +CronCommandHelp=A linha de comando de sistema que deve ser executada. +CronCreateJob=Criar uma nova Tarefa agendada +CronType_method=Chamar método de uma Classe PHP +CronType_command=Comando Shell +CronCannotLoadClass=Não é possível carregar o arquivo de classe %s (para usar a classe %s) +CronCannotLoadObject=O arquivo de classe %s foi carregado, mas o objeto %s não foi encontrado nele +UseMenuModuleToolsToAddCronJobs=Vá para o menu "Página inicial - Ferramentas administrativas - Trabalhos agendados" para ver e editar os trabalhos agendados. +JobDisabled=Tarefa desativada +MakeLocalDatabaseDumpShort=Backup do banco de dados local +MakeLocalDatabaseDump=Crie um despejo de banco de dados local. Os parâmetros são: compression ('gz' ou 'bz' ou 'none'), tipo de backup ('mysql', 'pgsql', 'auto'), 1, 'auto' ou nome de arquivo para construir, número de arquivos de backup para manter +WarningCronDelayed=Atenção, para fins de desempenho, seja qual for a próxima data de execução de tarefas habilitadas, suas tarefas podem ser atrasadas em até um máximo de %s horas, antes de serem executadas. +DATAPOLICYJob=Limpador de dados e anonimizador diff --git a/htdocs/langs/pt_MZ/deliveries.lang b/htdocs/langs/pt_MZ/deliveries.lang new file mode 100644 index 00000000000..61344cf4b60 --- /dev/null +++ b/htdocs/langs/pt_MZ/deliveries.lang @@ -0,0 +1,25 @@ +# Dolibarr language file - Source file is en_US - deliveries +Delivery=Entrega +DeliveryRef=Ref. entrega +DeliveryCard=Cartão de recibo +DeliveryOrder=Recibo de entrega +DeliveryStateSaved=Estado de entrega salvo +SetDeliveryDate=Indicar a Data de Envio +ValidateDeliveryReceipt=Confirmar a Nota de Entrega +ValidateDeliveryReceiptConfirm=Você tem certeza que deseja validar este comprovante de entrega? +DeleteDeliveryReceipt=Excluir recibo de entrega +DeleteDeliveryReceiptConfirm=Você tem certeza que deseja excluir o comprovante de entrega %s? +DeliveryMethod=Método de entrega +TrackingNumber=Número de rastreamento +StatusDeliveryDraft=Minuta +StatusDeliveryValidated=Recebida +NameAndSignature=Nome e assinatura: +GoodStatusDeclaration=Recebi a mercadorias acima em bom estado, +Deliverer=Entregador : +Sender=Remetente +ErrorStockIsNotEnough=Não existe estoque suficiente +Shippable=Disponivel para envio +NonShippable=Não disponivel para envio +ShowShippableStatus=Mostrar status entregável +ShowReceiving=Mostrar recibo de entrega +NonExistentOrder=Pedido inexistente diff --git a/htdocs/langs/pt_MZ/dict.lang b/htdocs/langs/pt_MZ/dict.lang new file mode 100644 index 00000000000..c7d7ae905d8 --- /dev/null +++ b/htdocs/langs/pt_MZ/dict.lang @@ -0,0 +1,110 @@ +# Dolibarr language file - Source file is en_US - dict +CountryBE=Bélgica +CountryCH=Suíça +CountryDZ=Argélia +CountryCA=Canadá +CountryRU=Rússia +CountryAX=Ilhas Åland +CountryBJ=Benim +CountryBN=Brunei +CountryBG=Bulgária +CountryBF=Burquina Faso +CountryBI=Burúndi +CountryCF=República Centro-Africana +CountryKM=Comores +CountryCZ=República Tcheca +CountryFO=Ilhas Féroe +CountryFJ=República de Fíji +CountryTF=Território das Terras Austrais e Antárticas Francesas +CountryGE=Geórgia +CountryGL=Groenlândia +CountryHT=Haiti +CountryHM=Ilha Heard e Ilhas McDonald +CountryVA=Santa Sé (Estado da Cidade do Vaticano) +CountryIS=Islândia +CountryIR=Irã +CountryKR=Coreia do Sul +CountryKG=Quirguistão +CountryLA=Laos +CountryMK=Macedônia, antiga República iugoslava da +CountryMW=Maláui +CountryML=Máli +CountryMM=Mianmar (Birmânia) +CountryNC=Nova Caledônia +CountryPS=Território Palestino, Ocupado +CountryPN=Ilhas Picárnia +CountryKN=São Cristóvão e Nevis +CountryPM=São Pedro e Miquelon +CountrySC=Seicheles +CountryGS=Ilhas Geórgias do Sul e Sandwich do Sul +CountryTC=Ilhas Turks e Caicos +CountryUA=Ucrânia +CountryUM=Ilhas Menores Distantes dos Estados Unidos +CountryVN=Vietnã +CountryVI=Ilhas Virgens, EUA +CountryEH=Saara Ocidental +CountryZW=Zimbábue +CountryBL=São Bartolomeu +CountryMF=São Martinho +CivilityMLE=Srta. +CivilityMTRE=Me. +CurrencyAUD=Dólares australianos +CurrencySingAUD=Dólar australiano +CurrencyCAD=Dólares canadenses +CurrencySingCAD=Dólar canadense +CurrencySingCHF=Franco suíço +CurrencyFRF=Francos franceses +CurrencyGBP=Libras esterlinas +CurrencySingGBP=Libra esterlina +CurrencyINR=Rupias indianas +CurrencyMAD=Dirhames +CurrencySingMAD=Dirhames +CurrencyMGA=Ariaris +CurrencySingMGA=Ariari +CurrencyMUR=Rupias mauricianas +CurrencySingMUR=Rupia mauriciana +CurrencyNOK=Coroas norueguesas +CurrencySingNOK=Coroas norueguesas +CurrencyTND=Dinares tunisianos +CurrencySingTND=Dinar tunisiano +CurrencyUSD=Dólares americanos +CurrencySingUSD=Dólar americano +CurrencyUAH=Grívnias +CurrencySingUAH=Grívnia +CurrencyXPF=Francos CFP +CurrencyCentEUR=centavos +CurrencyCentSingEUR=centavo +CurrencyCentINR=paise +DemandReasonTypeSRC_CAMP_MAIL=Campanha por correspondência +DemandReasonTypeSRC_CAMP_EMAIL=Campanha por e-mail +DemandReasonTypeSRC_CAMP_PHO=Campanha por telefone +DemandReasonTypeSRC_CAMP_FAX=Campanha por fax +DemandReasonTypeSRC_SHOP=Contato na loja +DemandReasonTypeSRC_WOM=Palavra da boca +DemandReasonTypeSRC_SRC_CUSTOMER=Contato entrante de um cliente +PaperFormatUSLETTER=Formato Carta, EUA +PaperFormatUSLEGAL=Formato Legal, EUA +PaperFormatUSEXECUTIVE=Formato Executivo, EUA +PaperFormatUSLEDGER=Formato Livro-Razão/Tabloide +PaperFormatCAP1=Formato P1, Canadá +PaperFormatCAP2=Formato P2, Canadá +PaperFormatCAP3=Formato P3, Canadá +PaperFormatCAP4=Formato P4, Canadá +PaperFormatCAP5=Formato P5, Canadá +PaperFormatCAP6=Formato P6, Canadá +ExpMotoCat=Motocicleta +ExpAuto3PCV=3 CV e mais +ExpAuto4PCV=4 CV e mais +ExpAuto5PCV=5 CV e mais +ExpAuto6PCV=6 CV e mais +ExpAuto7PCV=7 CV e mais +ExpAuto8PCV=8 CV e mais +ExpAuto9PCV=9 CV e mais +ExpAuto10PCV=10 CV e mais +ExpAuto11PCV=11 CV e mais +ExpAuto12PCV=12 CV e mais +ExpAuto13PCV=13 CV e mais +ExpCyclo=Capacidade abaixo de 50cm3 +ExpMoto12CV=Motocicleta 1 ou 2 CV +ExpMoto345CV=Motocicleta 3, 4 ou 5 CV +ExpMoto5PCV=Motocicleta 5 CV e mais diff --git a/htdocs/langs/pt_MZ/donations.lang b/htdocs/langs/pt_MZ/donations.lang new file mode 100644 index 00000000000..c9152795e55 --- /dev/null +++ b/htdocs/langs/pt_MZ/donations.lang @@ -0,0 +1,25 @@ +# Dolibarr language file - Source file is en_US - donations +Donation=Doação +Donations=Doações +DonationRef=Ref. da doação +AddDonation=Criar uma doação +NewDonation=Nova doação +DeleteADonation=Excluir uma doação +ConfirmDeleteADonation=Tem certeza que quer remover esta doacao? +PublicDonation=Doação pública +DonationsArea=Área de doações +DonationStatusPromiseNotValidated=Promessa não validada +DonationStatusPaid=Doação recebida +DonationStatusPromiseNotValidatedShort=Não validada +DonationStatusPromiseValidatedShort=Validada +DonationStatusPaidShort=Recebida +DonationTitle=Recibo de doação +DonationReceipt=Recibo de doação +DonationsModels=Modelo de documento de recepção de Doação +DonationRecipient=Recipiente doaçaõ +IConfirmDonationReception=O beneficiário declara ter recebido, como doação, o seguinte montante +MinimumAmount=O montante mínimo é de %s +DONATION_ART200=Mostrar o artigo 200 do CGI se você está preocupado +DONATION_ART238=Mostrar o artigo 238 do CGI se você está preocupado +DONATION_ART885=Mostrar o artigo 885 do CGI se você está preocupado +DonationPayment=Pagamento de doação diff --git a/htdocs/langs/pt_MZ/ecm.lang b/htdocs/langs/pt_MZ/ecm.lang new file mode 100644 index 00000000000..3c7bb7eddf3 --- /dev/null +++ b/htdocs/langs/pt_MZ/ecm.lang @@ -0,0 +1,37 @@ +# Dolibarr language file - Source file is en_US - ecm +ECMNbOfDocs=N°. de documentos no diretório +ECMSection=Pasta +ECMSectionManual=Pasta manual +ECMRoot=Raiz ECM +ECMNewSection=Criar pasta +ECMAddSection=Adicionar pasta +ECMCreationDate=Data criação +ECMNbOfFilesInDir=Número de arquivos na pasta +ECMNbOfSubDir=Número de subpastas +ECMNbOfFilesInSubDir=Numero de arquivos nos subpastas +ECMCreationUser=Criado por +ECMArea=Área DMS / ECM +ECMAreaDesc=A área DMS / ECM (Gerenciamento de documentos / Gerenciamento de conteúdo eletrônico) permite salvar, compartilhar e pesquisar rapidamente todos os tipos de documentos no Dolibarr. +ECMAreaDesc2=* As pastas automáticas são geradas automaticamente quando algum arquivo é adicionado a algum ficheiro do sistema.
* As pastas manuais podem ser usados ​​para guardar documentos sem ligação a um cadastro do sistema. +ECMSectionWasRemoved=A pasta %s foi eliminada +ECMSearchByKeywords=Busca usando palavras chave +ECMSearchByEntity=Busca por objeto +ECMDocsBy=Documentos vinculados a %s +ShowECMSection=Exibir pasta +DeleteSection=Apagar pasta +ConfirmDeleteSection=Por favor confirmar a remocao do diretorio %s? +ECMDirectoryForFiles=Relação de pasta para arquivos +CannotRemoveDirectoryContainsFilesOrDirs=Remoção impossível porque contém alguns arquivos ou subdiretórios +CannotRemoveDirectoryContainsFiles=Remoção impossível porque contém alguns arquivos +ECMFileManager=Gerenciador de arquivos +ECMSelectASection=Selecione um diretório na árvore ... +DirNotSynchronizedSyncFirst=Este diretório parece ser criado ou modificado fora do módulo ECM. Você deve clicar no botão "Sincronizar" primeiro para sincronizar o disco do banco de dados para obter o conteúdo desse diretório. +ReSyncListOfDir=Sincronizar lista de diretórios +HashOfFileContent=Hash do conteúdo do arquivo +FileNotYetIndexedInDatabase=Arquivo ainda não indexado no banco de dados (tente voltar a carregá-lo) +ExtraFieldsEcmFiles=Campos extras Arquivos Ecm +ExtraFieldsEcmDirectories=Campos extras Diretórios Ecm +ECMSetup=Configuração ECM +GenerateImgWebp=Duplique todas as imagens com outra versão em formato .webp +ConfirmImgWebpCreation=Confirmar duplicação de todas as imagens +SucessConvertImgWebp=Imagens duplicadas com sucesso diff --git a/htdocs/langs/pt_MZ/errors.lang b/htdocs/langs/pt_MZ/errors.lang new file mode 100644 index 00000000000..9bc55b42424 --- /dev/null +++ b/htdocs/langs/pt_MZ/errors.lang @@ -0,0 +1,183 @@ +# Dolibarr language file - Source file is en_US - errors +NoErrorCommitIsDone=Sem erros, garantimos +ErrorButCommitIsDone=Erros foram encontrados mas, apesar disso, validamos +ErrorBadValueForParamNotAString=Valor ruim para o seu parâmetro por falta, possivelmente, de tradução. +ErrorRecordNotFound=Registro não encontrado. +ErrorFailToCopyFile=Houve uma falha ao copiar o arquivo '%s' para '%s'. +ErrorFailToCopyDir=Falha ao copiar o diretório ' %s ' para ' %s '. +ErrorFailToRenameFile=Houve uma falha ao renomear o arquivo '%s' para '%s'. +ErrorFailToDeleteFile=Houve uma falha ao eliminar o arquivo '%s'. +ErrorFailToCreateFile=Houve uma falha ao criar o arquivo ''. +ErrorFailToRenameDir=Houve uma falha ao renomear o diretório '%s' para '%s'. +ErrorFailToCreateDir=Houve uma falha ao criar o diretório '%s'. +ErrorFailToDeleteDir=Houve uma falha ao eliminar o diretório '%s'. +ErrorThisContactIsAlreadyDefinedAsThisType=Este contato já está definido como contato para este tipo. +ErrorCashAccountAcceptsOnlyCashMoney=Esta conta bancaria é uma conta caixa e aceita, portanto, apenas pagamentos em dinheiro. +ErrorFromToAccountsMustDiffers=As contas bancárias origem e alvo devem ser diferentes. +ErrorBadThirdPartyName=Valor inválido para o nome de terceiros +ErrorProdIdIsMandatory=%s é obrigatório +ErrorBadCustomerCodeSyntax=Sintaxe inadequada para o código de cliente +ErrorBadBarCodeSyntax=Má sintaxe para código de barras. Pode ser que você defina um tipo de código de barras incorreto ou tenha definido uma máscara de código de barras para numeração que não corresponda ao valor verificado. +ErrorCustomerCodeRequired=Código de cliente necessário +ErrorBarCodeRequired=Código de barras requerido +ErrorBarCodeAlreadyUsed=Código de barras já usado +ErrorSupplierCodeRequired=Código de fornecedor necessário +ErrorSupplierCodeAlreadyUsed=Código do fornecedor já usado +ErrorBadParameters=Parâmetros inadequados +ErrorWrongParameters=Parâmetros errados ou ausentes +ErrorBadValueForParameter=Valor incorreto '%s' para o parâmetro '%s' +ErrorBadImageFormat=Arquivo imagem de formato não suportado (Seu PHP não suporta funções para converter neste formato) +ErrorBadDateFormat=O valor '%s' tem o formato de data errada +ErrorWrongDate=A data não está correta! +ErrorFailedToWriteInDir=Houve uma falha ao escrever no diretório %s +ErrorFoundBadEmailInFile=Encontrado uma sintaxe de e-mail incorreta para as linhas %s no arquivo (por exemplo, linha %s com e-mail = %s) +ErrorSubjectIsRequired=O assunto do email é obrigatório +ErrorFailedToCreateDir=Error na creação de uma carpeta. Compruebe que 0 usuario del servidor Web tiene derechos de escritura en las carpetas de documentos de Dolibarr. Si 0 parámetro safe_mode está ativo en este PHP, Compruebe que los archivos php dolibarr pertencen ao usuario del servidor Web. +ErrorNoMailDefinedForThisUser=Nenhum e-mail definido para este usuário +ErrorFeatureNeedJavascript=Esta funcionalidade requer que o javascript seja ativado para funcionar. Altere isto em Configuração >> Aparência. +ErrorTopMenuMustHaveAParentWithId0=Um menu do tipo 'Topo' não pode ter um menu pai. Coloque 0 no menu pai ou opte por um menu do tipo 'Esquerdo'. +ErrorLeftMenuMustHaveAParentId=Um menu do tipo 'Esquerdo' deve ter um ID de pai. +ErrorFileNotFound=Arquivo não encontrado (Rota incorreta, permissões incorretos o acesso prohibido por o parâmetro openbasedir) +ErrorDirNotFound=Diretório %s não encontrado (caminho errado, permissões erradas ou acesso negado pelo PHP ou pelo parâmetro safe_mode) +ErrorFunctionNotAvailableInPHP=A função %s é requisitada por esta funcionalidade, mas não está disponível nesta versão/configuração do PHP. +ErrorDirAlreadyExists=Já existe um diretório com este nome. +ErrorFileAlreadyExists=Já existe um arquivo com este nome. +ErrorPartialFile=O arquivo não foi completamente recebido pelo servidor. +ErrorNoTmpDir=O diretório temporário %s não existe. +ErrorUploadBlockedByAddon=Upload bloqueado por uma extensão do PHP/Apache. +ErrorFieldTooLong=O campo %s é muito longo. +ErrorSizeTooLongForIntType=Tamanho longo demais para o tipo int (o máximo é %s dígitos) +ErrorSizeTooLongForVarcharType=Tamanho longo demais para o tipo string (o máximo é %s caracteres) +ErrorNoValueForSelectType=Por favor, escolha uma opção da lista +ErrorNoValueForCheckBoxType=Por favor, marque uma opção da lista +ErrorNoValueForRadioType=Por favor, selecione uma opção da lista +ErrorBadFormatValueList=O valor da lista não pode ter mais de uma vírgula: %s, mas precisa de ao menos uma: chave,valor +ErrorNoAccountancyModuleLoaded=Módulo de Contabilidade não ativado +ErrorExportDuplicateProfil=Este nome de perfil já existe para este lote de exportação. +ErrorLDAPSetupNotComplete=A correspondência Dolibarr-LDAP não está completa. +ErrorLDAPMakeManualTest=foi criado unn Arquivo .ldif na pasta %s. Trate de gastor manualmente este Arquivo a partir da linha de comandos para Obter mais detalles acerca do error. +ErrorModuleRequireJavascript=Javascript não deve ser desativado para ter esse recurso funcionando. Para ativar / desativar o Javascript, vá ao menu Home-> Configuração-> Display. +ErrorPasswordsMustMatch=Deve existir correspondência entre as senhas digitadas +ErrorContactEMail=Ocorreu um erro técnico. Por favor, entre em contato com o administrador para o seguinte e-mail %s e forneça o código de erro %s em sua mensagem ou adicione uma cópia da tela desta página. +ErrorWrongValueForField=Campo %s : '%s' não corresponde à regra de regex %s +ErrorFieldValueNotIn=Campo %s : '%s' não é um valor encontrado no campo %s de %s +ErrorFieldRefNotIn=Campo %s : '%s' não é uma referência existente %s +ErrorsOnXLines=%s erros encontrados +ErrorFileIsInfectedWithAVirus=O antivírus não foi capaz de atestar o arquivo (o arquivo pode estar infectado por um vírus) +ErrorSpecialCharNotAllowedForField=O campo "%s" não aceita caracteres especiais +ErrorNumRefModel=Uma referência existe no banco de dados (% s) e não é compatível com esta regra de numeração. Remover registro ou referência renomeado para ativar este módulo. +ErrorQtyTooLowForThisSupplier=Quantidade muito baixa para este fornecedor ou nenhum preço definido neste produto para este fornecedor +ErrorOrdersNotCreatedQtyTooLow=Algumas encomendas não foram criadas por causa de quantidades muito baixas +ErrorModuleSetupNotComplete=A configuração do módulo %s parece estar incompleta. Vá em Home - Setup - Modules para concluir. +ErrorBadMaskFailedToLocatePosOfSequence=Erro, máscara sem número de sequência +ErrorBadMaskBadRazMonth=Erro, valor de redefinição ruim +ErrorMaxNumberReachForThisMask=Número máximo atingido para esta máscara +ErrorCounterMustHaveMoreThan3Digits=Contador deve ter mais de 3 dígitos +ErrorSelectAtLeastOne=Erro, selecione pelo menos uma entrada. +ErrorProdIdAlreadyExist=%s é atribuído a outro terço +ErrorFailedToSendPassword=Houve uma falha no envio da senha +ErrorForbidden=Acesso negado.
Você tenta acessar a uma página, área ou característica de um módulo desativado ou sem estar em uma sessão autenticada ou que não é permitido para o usuário. +ErrorForbidden2=Os permissões para este usuário podem ser designados por o administrador Dolibarr mediante o menu %s-> %s. +ErrorForbidden3=Dolibarr não parece funcionar em uma Sessão autentificada. Consulte a documentação de Instalação de Dolibarr para saber cómo administrar as autenticaciones (htaccess, mod_auth u outro...). +ErrorNoImagickReadimage=a função imagick_readimage não está presente nesta Instalação de PHP. a resenha não está pois disponível. Os administradores podem desativar esta separador ao menu configuração - visualização. +ErrorRecordAlreadyExists=O registro já existe +ErrorCantReadFile=Houve uma falha ao ler o arquivo '%s' +ErrorCantReadDir=Houve uma falha ao ler o diretório '%s' +ErrorBadLoginPassword=Identificadores de usuário o senha incorretos +ErrorLoginDisabled=A sua conta foi desativada +ErrorFailedToChangePassword=Error na modificação da senha +ErrorLoginDoesNotExists=Não existe um usuário com login %s. +ErrorLoginHasNoEmail=Este usuário não tem endereço de e-mail. Processo abortado. +ErrorBadValueForCode=Valor inadequado para código de segurança. Tente novamente com um novo valor... +ErrorBothFieldCantBeNegative=Os campos %s e %s não podem ser ambos negativos +ErrorLinesCantBeNegativeOnDeposits=As linhas não podem ser negativas em um depósito. Você terá problemas quando precisar apagar o depósito na fatura final, se o fizer. +ErrorQtyForCustomerInvoiceCantBeNegative=A quantidade nas linhas das notas de clientes não pode ser negativa +ErrorWebServerUserHasNotPermission=A conta de usuário %s usada para executar o servidor web não possui permissão para isto +ErrorNoActivatedBarcode=Nenhum tipo de código de barras foi ativado +ErrUnzipFails=Houve uma falha ao descompactar %s com ZipArchive +ErrorFileMustBeADolibarrPackage=O arquivo %s deve ser um pacote zipado do Dolibarr +ErrorPhpCurlNotInstalled=O PHP CURL não está instalado, isto é essencial para conversar com Paypal +ErrorFailedToAddToMailmanList=Falha ao adicionar registro% s para% s Mailman lista ou base SPIP +ErrorFailedToRemoveToMailmanList=Falha ao remover registro% s para% s Mailman lista ou base SPIP +ErrorNewValueCantMatchOldValue=O novo valor não pode ser igual ao anterior +ErrorFailedToValidatePasswordReset=Falha ao reinicializar senha. Pode ser o reinit já foi feito (este link pode ser usado apenas uma vez). Se não, tente reiniciar o processo reinit. +ErrorFailedToAddContact=Houve uma falha ao adicionar o contato +ErrorDateMustBeBeforeToday=A data deve ser menor que hoje +ErrorDateMustBeInFuture=A data deve ser maior que hoje +ErrorPaymentModeDefinedToWithoutSetup=A modalidade de pagamento foi definido para tipo% s mas a configuração do módulo de fatura não foi concluída para definir as informações para mostrar para esta modalidade de pagamento. +ErrorPHPNeedModule=Erro, o PHP deve ter módulo% s instalado para usar este recurso. +ErrorOpenIDSetupNotComplete=Você arquivo de configuração Dolibarr configuração para permitir a autenticação OpenID, mas a URL de serviço OpenID não está definido em constante% s +ErrorWarehouseMustDiffers=A conta origem e destino devem ser diferentes +ErrorBadFormat=Formato ruim! +ErrorMemberNotLinkedToAThirpartyLinkOrCreateFirst=Erro, este membro não está ainda conectado a qualquer terceiro. Conectar o membro a um terceiro existente ou criar um novo terceiro antes de criar uma assinatura com fatura. +ErrorThereIsSomeDeliveries=Erro, há algumas entregas ligados a este envio. Supressão recusou. +ErrorPriceExpression1=Não é possível atribuir a constante %s' +ErrorPriceExpression2=Não é possível redefinir a função built-in '%s' +ErrorPriceExpression3=variavel não definida '%s' na definição de função +ErrorPriceExpression4=Caractere ilegal '%s' +ErrorPriceExpression6=Número errado de argumentos (fornecidos %s, esperados %s) +ErrorPriceExpression8=Operador Inesperado '%s' +ErrorPriceExpression17=Variável não definida '%s' +ErrorSrcAndTargetWarehouseMustDiffers=Origem e de destino de armazéns devem ser diferentes +ErrorCantSetReceptionToTotalDoneWithReceptionToApprove=Todas as recepções gravados primeiro deve ser verificada (aprovada ou negada) antes de serem autorizados a fazer esta ação +ErrorCantSetReceptionToTotalDoneWithReceptionDenied=Todas as recepções gravadas primeiro devem ser verificada (aprovado) antes de serem autorizados a fazer esta ação +ErrorGlobalVariableUpdater0=Pedido HTTP falhou com o erro '%s' +ErrorGlobalVariableUpdater2=Faltando parâmetro '%s' +ErrorGlobalVariableUpdater5=Nenhuma variável global selecionado +ErrorFieldMustBeANumeric=O campo %s deve ser um valor numérico +ErrorMandatoryParametersNotProvided=Parâmetro (s) de preenchimento obrigatório não fornecidas +ErrorOppStatusRequiredIfAmount=Você define um valor estimado para esse lead. Então você também deve inserir seu status. +ErrorBadDefinitionOfMenuArrayInModuleDescriptor=Má definição da matriz Menu No Módulo Descritor (mau valor para fk_menu chave) +ErrorWarehouseRequiredIntoShipmentLine=É exigido um armazém na linha para a remessa +ErrorFilenameCantStartWithDot=O nome do arquivo não pode começar com com caracteres especiais +ErrorSupplierCountryIsNotDefined=País para este fornecedor não está definido. Corrija isso primeiro. +ErrorsThirdpartyMerge=Falha em mesclar os dois registros. Solicitação cancelada. +ErrorModuleNotFound=O arquivo do módulo não foi encontrado. +ErrorObjectMustHaveStatusDraftToBeValidated=O objeto %s deve ter status 'Rascunho' para ser validado. +ErrorObjectMustHaveLinesToBeValidated=O objeto %s deve ter linhas a serem validadas. +ErrorFileNotFoundWithSharedLink=Arquivo não encontrado. Pode ser que a chave do compartilhamento tenha sido modificada ou o arquivo tenha sido removido recentemente. +ErrorDuringChartLoad=Erro ao carregar o plano de contas. Se algumas contas não foram carregadas, você ainda pode inseri-las manualmente. +ErrorBadSyntaxForParamKeyForContent=Má sintaxe para o parâmetro keyforcontent . Deve ter um valor começando com %s ou %s +ErrorVariableKeyForContentMustBeSet=Erro, a constante com nome %s (com conteúdo de texto para mostrar) ou %s (com URL externo para mostrar) deve ser definida. +ErrorURLMustStartWithHttp=O URL %s deve começar com http:// ou https:// +ErrorNewRefIsAlreadyUsed=Erro, a nova referência já está sendo usada +ErrorDeletePaymentLinkedToAClosedInvoiceNotPossible=Erro, não é possível excluir o pagamento vinculado a uma fatura fechada. +ErrorSearchCriteriaTooSmall=Critérios de pesquisa insuficientes. +ErrorObjectMustHaveStatusActiveToBeDisabled=Os objetos devem ter o status 'Ativo' para serem desativados +ErrorObjectMustHaveStatusDraftOrDisabledToBeActivated=Os objetos devem ter o status 'Rascunho' ou 'Desativado' para serem ativados +ErrorNoFieldWithAttributeShowoncombobox=Nenhum campo possui a propriedade 'show combo box' na definição do objeto '%s'. Não há como mostrar a lista de combinação. +ErrorFieldRequiredForProduct=O campo '%s' é obrigatório para o produto %s +ProblemIsInSetupOfTerminal=Problema na configuração do terminal %s. +ErrorAddAtLeastOneLineFirst=Adicione pelo menos uma linha primeiro +ErrorRecordAlreadyInAccountingDeletionNotPossible=Erro, o registro já foi transferido na contabilidade, a exclusão não é possível. +ErrorLanguageMandatoryIfPageSetAsTranslationOfAnother=Erro, o idioma é obrigatório se você definir a página como tradução de outro. +ErrorLanguageOfTranslatedPageIsSameThanThisPage=Erro, o idioma da página traduzida é o mesmo que este. +ErrorBatchNoFoundForProductInWarehouse=Nenhum lote / série encontrado para o produto "%s" no armazém "%s". +ErrorBatchNoFoundEnoughQuantityForProductInWarehouse=Quantidade insuficiente para este lote / série para o produto "%s" "no armazém"%s ". +ErrorOnlyOneFieldForGroupByIsPossible=Apenas 1 campo para o 'Agrupar por' é possível (outros são descartados) +ErrorReplaceStringEmpty=Erro, a cadeia de caracteres para substituir está vazia +ErrorPublicInterfaceNotEnabled=A interface pública não foi ativada +WarningParamUploadMaxFileSizeHigherThanPostMaxSize=Seu parâmetro PHP upload_max_filesize (%s) é maior que o parâmetro PHP post_max_size (%s). Esta não é uma configuração consistente. +WarningPasswordSetWithNoAccount=A senha foi definida para esse membro. No entanto, nenhuma conta de usuário foi criada. Portanto, esta senha é armazenada, mas não pode ser usado para acessar Dolibarr. Ele pode ser usado por um módulo / interface externa, mas se você não precisa definir qualquer login nem palavra-passe para um membro, você pode desabilitar a opção "Gerenciar um login para cada membro" da configuração do módulo-Membro. Se você precisa para gerenciar um login, mas não precisa de qualquer senha, você pode manter este campo em branco para evitar este aviso. Nota: E-mail pode também ser utilizado como uma entre o membro se está ligado a um utilizador. +WarningMandatorySetupNotComplete=Clique aqui para configurar os parâmetros obrigatórios +WarningEnableYourModulesApplications=Clique aqui para ativar seus módulos e aplicativos +WarningSafeModeOnCheckExecDir=Atenção, a opção PHP safe_mode está em modo de comando devem ser armazenados dentro de um diretório declarado pelo php parâmetro safe_mode_exec_dir. +WarningBookmarkAlreadyExists=já existe um marcador com este título o esta URL. +WarningPassIsEmpty=Atenção: a senha da base de dados está vazia. Esto é buraco na segurança. deve agregar uma senha e a sua base de dados e alterar a sua Arquivo conf.php para reflejar esto. +WarningConfFileMustBeReadOnly=Atenção, o seu arquivo de configuração (htdocs / conf / conf.php) pode ser substituído pelo servidor web. Esta é uma falha de segurança grave. Modificar permissões em arquivos para estar no modo de somente leitura para usuário do sistema operacional utilizado pelo servidor web. Se você usa o formato Windows e FAT para o seu disco, você deve saber que este sistema de arquivos não permite adicionar permissões em arquivos, por isso não pode ser completamente seguro. +WarningsOnXLines=Advertências sobre registro de origem% s (s) +WarningLockFileDoesNotExists=Atenção, assim que a configuração estiver concluída, você deve desativar as ferramentas de instalação/migração adicionando um arquivo install.lock no diretório %s. Omitir a criação desse arquivo é um grave risco de segurança. +WarningCloseAlways=Atenção, o fechamento é feito mesmo se o valor difere entre elementos de origem e de destino. Ative esse recurso com cautela. +WarningUsingThisBoxSlowDown=Atenção, utilizando esta caixa de abrandar a sério todas as páginas que mostram a caixa. +WarningClickToDialUserSetupNotComplete=Configuração de informações ClickToDial para o usuário não são completas (ver guia ClickToDial no seu cartão de usuário). +WarningFeatureDisabledWithDisplayOptimizedForBlindNoJs=Função desabilitada quando a tela e optimizada para uso das pessoas cegas ou navegadores de texto. +WarningPaymentDateLowerThanInvoiceDate=A data de pagamento (%s) é anterior a data (%s) da fatura %s. +WarningTooManyDataPleaseUseMoreFilters=Dados em demasia (mais de %s linhas). Por favor, utilize mais filtros ou defina a constante %s para um limite maior. +WarningSomeLinesWithNullHourlyRate=Algumas vezes foram registrados por alguns usuários enquanto sua taxa por hora não foi definida. Um valor de 0 %s por hora foi usado, mas isto pode resultar em uma valoração errada do tempo gasto. +WarningYourLoginWasModifiedPleaseLogin=O seu login foi modificado. Por questões de segurança, você terá de autenticar-se com o seu novo login antes da próxima ação. +WarningProjectClosed=O projeto está fechado. Você deve reabri-lo primeiro. +WarningSomeBankTransactionByChequeWereRemovedAfter=Algumas transações bancárias foram removidas após geração do recebimento, incluindo elas. Portanto, o número de cheques e o total de recebimento podem diferir do número e do total na lista. +RequireValidValue =Valor não é válido +RequireValidEmail =o endereço de email não é válido +RequireValidUrl =Requer URL válido +RequireValidDate =Requer uma data válida diff --git a/htdocs/langs/pt_MZ/eventorganization.lang b/htdocs/langs/pt_MZ/eventorganization.lang new file mode 100644 index 00000000000..7fe968ff823 --- /dev/null +++ b/htdocs/langs/pt_MZ/eventorganization.lang @@ -0,0 +1,8 @@ +# Dolibarr language file - Source file is en_US - eventorganization +ModuleEventOrganizationName =Organização do Evento +EventOrganizationDescription =Organização do Evento atraves do modulo Projetos +EventOrganizationMenuLeft =Eventos organizados +EventOrganizationSetup=Configuracao de Organização do Evento +Settings=Configurações +EventOrganizationSetupPage =Organização do Eventos pagina de configuracao +EvntOrgDraft =Minuta diff --git a/htdocs/langs/pt_MZ/help.lang b/htdocs/langs/pt_MZ/help.lang new file mode 100644 index 00000000000..3f5625ca3bf --- /dev/null +++ b/htdocs/langs/pt_MZ/help.lang @@ -0,0 +1,13 @@ +# Dolibarr language file - Source file is en_US - help +CommunitySupport=Fórum/Wiki suporte +EMailSupport=E-mails de suporte +RemoteControlSupport=Suporte online em tempo real/remoto +OtherSupport=Outros suportes +ToSeeListOfAvailableRessources=Entrar em contato com/consulte os recursos disponíveis: +HelpCenter=Central de ajuda +NeedHelpCenter=PRecisa de ajuda ou suporte? +Efficiency=eficiência +TypeHelpOnly=Somente ajuda +TypeHelpDev=Ajuda+Desenvolvimento +PossibleLanguages=Os idiomas suportados +SeeOfficalSupport=Para obter suporte oficial do Dolibarr no seu idioma:
%s diff --git a/htdocs/langs/pt_MZ/holiday.lang b/htdocs/langs/pt_MZ/holiday.lang new file mode 100644 index 00000000000..0172efdcddd --- /dev/null +++ b/htdocs/langs/pt_MZ/holiday.lang @@ -0,0 +1,7 @@ +# Dolibarr language file - Source file is en_US - holiday +HRM=RH +DateFinCP=Data de término +DraftCP=Minuta +DeleteCP=Excluir +UserCP=Usuário +ActionByCP=Modificado por diff --git a/htdocs/langs/pt_MZ/hrm.lang b/htdocs/langs/pt_MZ/hrm.lang new file mode 100644 index 00000000000..4e5f4aef5c8 --- /dev/null +++ b/htdocs/langs/pt_MZ/hrm.lang @@ -0,0 +1,8 @@ +# Dolibarr language file - Source file is en_US - hrm +HRM_EMAIL_EXTERNAL_SERVICE=E-mail para evitar HRM serviço externo +Establishments=Estabelecimentos +DeleteEstablishment=Excluir estabelecimento +ConfirmDeleteEstablishment=Tem certeza de que deseja excluir este estabelecimento? +DictionaryFunction=RH - Cargos +HrmSetup=Configuração do módulo RH +ValidateEvaluation=Validar avaliação diff --git a/htdocs/langs/pt_MZ/interventions.lang b/htdocs/langs/pt_MZ/interventions.lang new file mode 100644 index 00000000000..b9ec79fa37e --- /dev/null +++ b/htdocs/langs/pt_MZ/interventions.lang @@ -0,0 +1,53 @@ +# Dolibarr language file - Source file is en_US - interventions +InterventionCard=Ficha de Intervenção +NewIntervention=Nova Intervenção +AddIntervention=Criar Intervenção +ChangeIntoRepeatableIntervention=Mudança para intervenção repetível +ActionsOnFicheInter=Açoes na intervençao +InterventionContact=Contato Intervenção +ValidateIntervention=Confirmar Intervenção +ModifyIntervention=Modificar intervençao +ConfirmDeleteIntervention=Você tem certeza que deseja excluir esta intervenção? +ConfirmValidateIntervention=Você tem certeza que deseja validar esta intervenção sob o nome %s? +ConfirmModifyIntervention=Você tem certeza que deseja modificar esta intervenção? +ConfirmDeleteInterventionLine=Você tem certeza que deseja excluir esta linha de intervenção? +ConfirmCloneIntervention=Você tem certeza que deseja clonar esta intervenção? +NameAndSignatureOfInternalContact=Nome e Assinatura do Participante: +NameAndSignatureOfExternalContact=Nome e Assinatura do Cliente : +InterventionClassifyBilled=Classificar "Faturado" +InterventionClassifyUnBilled=Classificar "à faturar" +InterventionClassifyDone=Classificar "Feito" +StatusInterInvoiced=Faturado +SendInterventionRef=Apresentação de intervenção %s +SendInterventionByMail=Envio da intervenção por e-mail +InterventionModifiedInDolibarr=Intervenção %s alterada +InterventionClassifiedBilledInDolibarr=Intervenção %s classificada como Faturada +InterventionClassifiedUnbilledInDolibarr=Intervenção %s definida como à faturar +InterventionSentByEMail=Intervenção %s enviada por e-mail +InterventionDeletedInDolibarr=Intervenção %s excluída +InterventionsArea=Área intervenções +DraftFichinter=Rascunho de intervenções +FichinterToProcess=Intermediações para processar +TypeContact_fichinter_external_CUSTOMER=Contato do cliente do seguimento da intervenção +PrintProductsOnFichinter=Imprima também linhas do tipo "produto" (e não apenas serviços) na ficha de intervenção +PrintProductsOnFichinterDetails=intervenções gerados a partir de ordens +UseServicesDurationOnFichinter=duração de uso de serviços para intervenções geradas a partir de ordens +UseDurationOnFichinter=Esconde o campo de duração para os registros de intermediações +UseDateWithoutHourOnFichinter=Oculta horas e minutos fora do campo de data para registros de intermediação +InterventionStatistics=Estatística de intervenções +NbOfinterventions=Nº. de cartões de intervenção +NumberOfInterventionsByMonth=Nº. de cartões de intervenção por mês (data de validação) +AmountOfInteventionNotIncludedByDefault=A quantidade de intervenção não é incluída por padrão no lucro (na maioria dos casos, as planilhas de tempo são usadas para contar o tempo gasto). Adicione a opção PROJECT_INCLUDE_INTERVENTION_AMOUNT_IN_PROFIT para 1 em home-setup-other para incluí-los. +InterId=ID de intervenção +InterRef=Intervenção ref. +InterDateCreation=Intervenção data de criação +InterDuration=Duração intervenção +InterStatus=Status de intervenção +InterLine=Linha de intervenção +InterLineId=Linha id de intervenção +InterLineDate=Linha da data de intervenção +InterLineDuration=Linha de duração de intervenção +InterLineDesc=Linha de descrição de intervenção +RepeatableIntervention=Modelo de intervenção +ToCreateAPredefinedIntervention=Para criar uma intervenção predefinida ou recorrente, crie uma intervenção comum e converta-a em modelo de intervenção +ConfirmReopenIntervention=Deseja abrir novamente a intervenção %s ? diff --git a/htdocs/langs/pt_MZ/languages.lang b/htdocs/langs/pt_MZ/languages.lang new file mode 100644 index 00000000000..b46ba01daa1 --- /dev/null +++ b/htdocs/langs/pt_MZ/languages.lang @@ -0,0 +1,2 @@ +# Dolibarr language file - Source file is en_US - languages +Language_lo_LA=Laos diff --git a/htdocs/langs/pt_MZ/ldap.lang b/htdocs/langs/pt_MZ/ldap.lang new file mode 100644 index 00000000000..4b752dc483c --- /dev/null +++ b/htdocs/langs/pt_MZ/ldap.lang @@ -0,0 +1,13 @@ +# Dolibarr language file - Source file is en_US - ldap +YouMustChangePassNextLogon=A senha de %s ao domínio %s deve de ser modificada. +UserMustChangePassNextLogon=O usuário deve alterar de senha na próxima login +LDAPInformationsForThisContact=Informação da base de dados LDAP deste contato +LDAPInformationsForThisUser=Informação da base de dados LDAP deste usuário +LDAPInformationsForThisMemberType=Informação no banco de dados LDAP para esse tipo de membro +LDAPUsers=Usuário na base de dados LDAP +LDAPFieldFirstSubscriptionAmount=Valor da Primeira Adesão +LDAPFieldLastSubscriptionDate=Data da última adesão +LDAPFieldLastSubscriptionAmount=Valor da última adesão +UserSynchronized=Usuário Sincronizado +ErrorFailedToReadLDAP=Erro na leitura do anuário LDAP. Verificar a configuração do módulo LDAP e a acessibilidade do anuário. +PasswordOfUserInLDAP=Senha do usuário no LDAP diff --git a/htdocs/langs/pt_MZ/link.lang b/htdocs/langs/pt_MZ/link.lang new file mode 100644 index 00000000000..f86a13d83c3 --- /dev/null +++ b/htdocs/langs/pt_MZ/link.lang @@ -0,0 +1,10 @@ +# Dolibarr language file - Source file is en_US - link +LinkANewFile=Vincular um novo arquivo/documento +LinkedFiles=Arquivos vinculados e documentos +NoLinkFound=Não há links registrados +LinkComplete=O arquivo foi associada com sucesso +ErrorFileNotLinked=O arquivo não pôde ser vinculado +LinkRemoved=A ligação %s foi removida +ErrorFailedToDeleteLink=Falha ao remover link '%s' +ErrorFailedToUpdateLink=Falha ao atualizar link '%s' +URLToLink=URL para link diff --git a/htdocs/langs/pt_MZ/loan.lang b/htdocs/langs/pt_MZ/loan.lang new file mode 100644 index 00000000000..c3d86606ecb --- /dev/null +++ b/htdocs/langs/pt_MZ/loan.lang @@ -0,0 +1,24 @@ +# Dolibarr language file - Source file is en_US - loan +NewLoan=Novo empréstimo +ShowLoan=Mostrar empréstimo +PaymentLoan=Pagamento de empréstimo +LoanPayment=Pagamento de empréstimo +ShowLoanPayment=Mostrar pagamento de empréstimo +Interest=Juro +Term=Prazo +LoanAccountancyCapitalCode=Capital contabilístico +LoanAccountancyInsuranceCode=Seguro contabilístico +LoanAccountancyInterestCode=Interesse contabilístico +ConfirmDeleteLoan=Confirme a exclusão deste empréstimo +LoanDeleted=Empréstimo excluído com sucesso +ConfirmPayLoan=Confirmar este empréstimo como pago +LoanPaid=Empréstimo pago +ListLoanAssociatedProject=Lista de empréstimos associados ao projeto +InterestAmount=Juro +CapitalRemain=Capital permanecem +TermPaidAllreadyPaid =Este termo já está pago +CantUseScheduleWithLoanStartedToPaid =Não é possível usar programador para empréstimo com o pagamento iniciado +CantModifyInterestIfScheduleIsUsed =Você não pode alterar o interesse se usar o programador +LOAN_ACCOUNTING_ACCOUNT_CAPITAL=Capital contabilístico por padrão +LOAN_ACCOUNTING_ACCOUNT_INTEREST=Interesse contabilístico por padrão +LOAN_ACCOUNTING_ACCOUNT_INSURANCE=Seguro contabilístico por padrão diff --git a/htdocs/langs/pt_MZ/mailmanspip.lang b/htdocs/langs/pt_MZ/mailmanspip.lang new file mode 100644 index 00000000000..bbea232c4ef --- /dev/null +++ b/htdocs/langs/pt_MZ/mailmanspip.lang @@ -0,0 +1,25 @@ +# Dolibarr language file - Source file is en_US - mailmanspip +MailmanSpipSetup=Configuração do módulo Mailman e SPIP +MailmanTitle=Sistema de envio em massa Mailman +TestSubscribe=Para testar a inscriçao nas listas Mailman +TestUnSubscribe=Para testa a desenscriçao das listas do Mailman +MailmanCreationSuccess=O teste da assinatura foi realizado com sucesso +MailmanDeletionSuccess=O teste de cancelamento da assinatura foi realizado com sucesso +SynchroMailManEnabled=O Mailman sera atualizado +SynchroSpipEnabled=O SPIP sera atualizado +DescADHERENT_MAILMAN_ADMINPW=Senha do administrador Mailman +DescADHERENT_MAILMAN_URL=URL para inscriçoes Mailman +DescADHERENT_MAILMAN_UNSUB_URL=URL para desenscriçoes Mailman +DescADHERENT_MAILMAN_LISTS=Lista(s) para inscriçao automatica de novos membros (separado por virgula) +SPIPTitle=Gerenciamento do conteudo do sistema SPIP +DescADHERENT_SPIP_DB=Nome do banco de dados SPIP +DescADHERENT_SPIP_USER=Login do banco de dados SPIP +DescADHERENT_SPIP_PASS=Senha do banco de dados SPIP +AddIntoSpip=Adicionar no SPIP +AddIntoSpipConfirmation=Tem certeza que quer adicionar este membro no SPIP ? +AddIntoSpipError=Falha em adicionar o usuario no SPIP +DeleteIntoSpipConfirmation=Tem certeza que quer remover este membro do SPIP ? +DeleteIntoSpipError=Falha no suprimir o usuario do SPIP +SPIPConnectionFailed=Falha na conexao com o SPIP +SuccessToAddToMailmanList=%s foi adicionado com sucesso à lista de e-mails %s ou ao banco de dados SPIP +SuccessToRemoveToMailmanList=%s foi removido com sucesso da lista de e-mails %s ou do banco de dados SPIP diff --git a/htdocs/langs/pt_MZ/mails.lang b/htdocs/langs/pt_MZ/mails.lang new file mode 100644 index 00000000000..6971a32e3a9 --- /dev/null +++ b/htdocs/langs/pt_MZ/mails.lang @@ -0,0 +1,4 @@ +# Dolibarr language file - Source file is en_US - mails +MailRecipient=Destinatário +MailingStatusDraft=Minuta +MailingStatusValidated=Validada diff --git a/htdocs/langs/pt_MZ/main.lang b/htdocs/langs/pt_MZ/main.lang index 2e691473326..60e6ab46245 100644 --- a/htdocs/langs/pt_MZ/main.lang +++ b/htdocs/langs/pt_MZ/main.lang @@ -2,20 +2,576 @@ DIRECTION=ltr FONTFORPDF=helvetica FONTSIZEFORPDF=10 -SeparatorDecimal=. -SeparatorThousand=, -FormatDateShort=%m/%d/%Y -FormatDateShortInput=%m/%d/%Y -FormatDateShortJava=MM/dd/yyyy -FormatDateShortJavaInput=MM/dd/yyyy -FormatDateShortJQuery=mm/dd/yy -FormatDateShortJQueryInput=mm/dd/yy +SeparatorDecimal=, +SeparatorThousand=Space +FormatDateShort=%d/%m/%Y +FormatDateShortInput=%d/%m/%Y +FormatDateShortJava=dd/MM/yyyy +FormatDateShortJavaInput=dd/MM/yyyy +FormatDateShortJQuery=dd/mm/yy +FormatDateShortJQueryInput=dd/mm/yy FormatHourShortJQuery=HH:MI FormatHourShort=%I:%M %p FormatHourShortDuration=%H:%M FormatDateTextShort=%b %d, %Y FormatDateText=%B %d, %Y -FormatDateHourShort=%m/%d/%Y %I:%M %p -FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p -FormatDateHourTextShort=%b %d, %Y, %I:%M %p -FormatDateHourText=%B %d, %Y, %I:%M %p +FormatDateHourShort=%d/%m/%Y %I:%M %p +FormatDateHourSecShort=%d/%m/%Y %I:%M:%S %p +FormatDateHourTextShort=%d %b, %Y, %I:%M %p +FormatDateHourText=%d %B, %Y, %I:%M %p +DatabaseConnection=Login à Base de Dados +NoTemplateDefined=Nenhum modelo disponível para este tipo de email +CurrentTimeZone=Timezone PHP (do servidor apache) +EmptySearchString=Digite critérios na pesquisa +NoRecordFound=Nenhum registro encontrado +NoRecordDeleted=Nenhum registro foi deletado +NotEnoughDataYet=Sem dados suficientes +NoError=Sem erro +ErrorFieldFormat=O campo '%s' tem um valor incorreto +ErrorFileDoesNotExists=O arquivo %s não existe +ErrorFailedToOpenFile=Houve uma falha ao abrir o arquivo %s +ErrorCanNotCreateDir=Não é possível criar a pasta %s +ErrorCanNotReadDir=Não é possível ler a pasta %s +ErrorLogoFileNotFound=O arquivo logo '%s' não se encontra +ErrorGoToGlobalSetup=Vai ao 'Empresa/Oragnisacao' configuracao para resolver isto +ErrorFailedToSendMail=Erro ao envio do e-mail (emissor +ErrorFileNotUploaded=O arquivo não foi possível transferir +ErrorWrongHostParameter=Parâmetro Servidor inválido +ErrorYourCountryIsNotDefined=Seu país não está definido. Vá para Home-Setup-Edit e poste o formulário novamente. +ErrorRecordIsUsedByChild=Falha ao excluir este registro. Esse registro é usado por pelo menos um registro filho. +ErrorWrongValue=Valor incorreto +ErrorWrongValueForParameterX=Valor incorreto para o parâmetro %s +ErrorServiceUnavailableTryLater=Serviço não disponível no momento. Tente mais tarde. +ErrorSomeErrorWereFoundRollbackIsDone=Alguns erros foram encontrados. As alterações foram revertidas. +ErrorConfigParameterNotDefined=Parametro %s nao está definidio no arquivo config conf.php do Dolibarr. +ErrorCantLoadUserFromDolibarrDatabase=Impossível encontrar o usuário %s na base de dados do Dolibarr. +ErrorNoVATRateDefinedForSellerCountry=Erro, nenhum tipo de IVM definido para o país '%s'. +ErrorNoSocialContributionForSellerCountry=Erro, nenhum tipo de imposto social / fiscal definidos para o país '%s'. +ErrorFailedToSaveFile=Erro, o registo do arquivo falhou. +ErrorCannotAddThisParentWarehouse=Voce está tentando adicionar um armazém pai, o qual ja é um filho do armazém existente +FieldCannotBeNegative=O campo "%s" não pode ser negativo +MaxNbOfRecordPerPage=Número máx de registros por página +NotAuthorized=Você não está autorizado a fazer isso. +SelectDate=Selecionar uma data +SeeAlso=Ver tambem %s +SeeHere=veja aqui +ClickHere=Clickque aqui +BackgroundColorByDefault=Cor do fundo padrão +FileRenamed=O arquivo foi renomeado com sucesso +FileGenerated=O arquivo foi gerado com sucesso +FileSaved=O arquivo foi salvo com sucesso +FileUploaded=O arquivo foi carregado com sucesso +FileTransferComplete=Arquivo (s) carregado (s) com sucesso +FilesDeleted=Arquivo (s) removido (s) com sucesso +FileWasNotUploaded=O arquivo foi selecionado, mas nao foi ainda enviado. Clique no "Anexar arquivo" para proceder. +NbOfEntries=N°. de entradas +GoToWikiHelpPage=Ler a ajuda online (necessário acesso a Internet) +GoToHelpPage=Consulte a ajuda (pode necessitar de acesso à internet) +DedicatedPageAvailable=Página de ajuda dedicada, relacionada à tela atual +HomePage=Pagina inicial +RecordDeleted=Registro apagado +RecordGenerated=Registro gerado +LevelOfFeature=Nível de funções +DolibarrInHttpAuthenticationSoPasswordUseless=Modo de autenticação do Dolibarr está definido como %s no arquivo de configuraçãoconf.php.
Isso significa que o banco de dados das senhas é externo ao Dolibarr, assim mudar este campo, pode não ter efeito. +PasswordForgotten=Esqueceu a senha? +NoAccount=Sem conta? +SeeAbove=Mencionar anteriormente +HomeArea=Inicio +ConnectedOnMultiCompany=Conectado no ambiente +AuthenticationMode=Modo de Autenticação +RequestedUrl=URL solicitada +DatabaseTypeManager=Tipo de gerente de base de dados +RequestLastAccessInError=Últimos erros de acesso ao banco de dados +ReturnCodeLastAccessInError=Código de retorno do último erro de acesso ao banco de dados +InformationLastAccessInError=Informação do último erro de acesso ao banco de dados +YouCanSetOptionDolibarrMainProdToZero=Você pode ler o arquivo de log ou definir a opção $ dolibarr_main_prod como '0' no seu arquivo de configuração para obter mais informações. +LineID=ID da linha +PrecisionUnitIsLimitedToXDecimals=Dolibarr está configurado para limitar a precisão dos preços unitários a %s Decimais. +NoFilter=Nenhum filtro +WarningYouHaveAtLeastOneTaskLate=Atenção. Voce tem no mínimo um elemento que excedeu o tempo de tolerancia +no=não +Home=Inicio +OnlineHelp=Ajuda online +PageWiki=Pagina wiki +MediaBrowser=Navegador de mídia +PeriodEndDate=Data final periodo +Activate=Ativar +Activated=Ativado +Closed=Encerrado +Closed2=Encerrado +Enabled=Ativado +Disable=Desativar +Disabled=Desativado +AddLink=Adicionar link +RemoveLink=Remover o link +Update=Modificar +CloseAs=Configurar status para +CloseBox=Remover o widget do seu painel de controle +ConfirmSendCardByMail=Você realmente deseja enviar o conteúdo deste cartão por e-mail para %s ? +Delete=Excluir +Remove=Retirar +Resiliate=Concluir +Validate=Confirmar +ToValidate=A Confirmar +SaveAs=Guardar como +SaveAndStay=Salvar e permanecer +SaveAndNew=Salvar e novo +TestConnection=Teste a login +ToClone=Cópiar +ConfirmClone=Selecione os dados que você quer clonar: +NoCloneOptionsSpecified=Não existem dados definidos para copiar +Go=Ir +Run=Attivo +Show=Ver +Hide=ocultar +ShowCardHere=Mostrar cartão +SearchMenuShortCut=Ctrl + Shift + F +QuickAdd=Adição rápida +SelectAll=Selecionar tudo +Resize=Modificar tamanho +ResizeOrCrop=Redimensionar ou cortar +Recenter=Recolocar no centro +User=Usuário +Users=Usuário +NoUserGroupDefined=Nenhum grupo definido pelo usuário +PasswordRetype=Repetir Senha +NoteSomeFeaturesAreDisabled=Antenção, só poucos módulos/funcionalidade foram ativados nesta demo +NameSlashCompany=Nome / Companhia +PersonalValue=Valor Personalizado +OldValue=Valor antigo %s +CurrentValue=Valor atual +MultiLanguage=Multi Idioma +RefOrLabel=Ref. da etiqueta +DescriptionOfLine=Descrição da Linha +Model=Modelo de Documento +DefaultModel=Modelo de documento padrão +Action=Ação +About=Acerca de +Limit=Límite +Logout=Sair +NoLogoutProcessWithAuthMode=No recurso de desconexão aplicativo com modo de autenticação +Setup=Conf. +HourStart=Comece hora +Deadline=Prazo final +DateAndHour=Data e hora +DateEnd=Data de término +DateCreation=Data criação +DateCreationShort=Data Criação +IPCreation=Endereço IP da criação +DateModification=Data Modificação +DateModificationShort=Data Modif. +IPModification=Endereço IP da modificação +DateLastModification=Última data de modificação +DateValidation=Data Validação +DateSigning=Data de assinatura +DateDue=Data Vencimento +DateValue=Data Valor +DateValueShort=Data Valor +DateOperation=Data Operação +DateOperationShort=Data Op. +DateLimit=Data Límite +DateRequest=Data Consulta +DateProcess=Data Processo +RegistrationDate=Data de registro +UserCreation=Criado por +UserModification=Alterado por +UserValidation=Usuario validado +UserCreationShort=Criado por +UserModificationShort=Modif. por +UserValidationShort=Usuarios validados +DurationDay=Día +Day=Día +days=Dias +Weeks=Semandas +Morning=Manha +Quadri=Trimistre +Rate=Rata +CurrencyRate=Taxa de conversão moeda +UseLocalTax=Incluindo taxa +UserModif=Modificado por +Default=Padrao +DefaultValue=Valor por default +DefaultValues=Valores / filtros / classificação padrão +UnitPrice=Preço Unit. +UnitPriceHT=Preço Unit. (liq.) +UnitPriceHTCurrency=Preço unitário (sem) (Moeda) +UnitPriceTTC=Preço Unit. Total +PriceU=Preço Unit. +PriceUHT=Preço Unit. +PriceUTTC=U.P. (inc. Impostos) +Amount=Valor +AmountInvoice=Valor Fatura +AmountInvoiced=Valor faturado +AmountInvoicedHT=Valor faturado (sem imposto) +AmountPayment=Valor Pagamento +AmountHTShort=Quantidade (liq.) +AmountTTCShort=Valor (incl. taxas) +AmountHT=Valor (sem impostos) +AmountTTC=Valor +AmountVAT=Valor IVA +MulticurrencyAlreadyPaid=Já paga, moeda original +MulticurrencyRemainderToPay=Permanecer para pagar, moeda original +MulticurrencyAmountHT=Valor (sem impostos) moeda original +MulticurrencyAmountTTC=Quantia (com as taxas), na moeda original +MulticurrencyAmountVAT=Valor das taxas, na moeda original +AmountLT1=Valor taxa 2 +AmountLT2=Valor taxa 3 +AmountLT1ES=Valor RE +AmountLT2ES=Valor IRPF +AmountTotal=Valor Total +AmountAverage=Valor médio +PriceQtyMinHT=Quantidade de preço min. (sem imposto) +PriceQtyMinHTCurrency=Quantidade de preço min. (sem imposto) (moeda) +TotalHTShort=Total (liq.) +TotalHT100Short=Total 100%% (liq.) +TotalHTShortCurrency=Total (excluindo em moeda) +TotalTTCShort=Total (incl. taxas) +TotalHT=Total (sem imposto) +TotalHTforthispage=Total (sem imposto) para esta página +TotalTTC=Total +TotalTTCToYourCredit=Total a crédito +TotalVATIN=IGST total +TotalLT1=Total taxa 2 +TotalLT2=Total taxa 3 +HT=Sem imposto +TTC=IVA Incluido +INCVATONLY=Com IVA +INCT=Inc. todos os impostos +VATs=Impostos sobre vendas +VATINs=Impostos IGST +LT1Type=Tipo de imposto sobre vendas 2 +LT2Type=Tipo de imposto sobre vendas 3 +VATRate=Taxa de IVA +VATCode=Codigo do IVA +VATNPR=Valor taxa NPR +DefaultTaxRate=Taxa de imposto padrão +RemainToPay=Permanecer para pagar +Module=Modulo/Aplicacao +Modules=Módulos / Aplicações +Filters=Filtros +OtherStatistics=Outras estatisticas +Favorite=Favorito +RefSupplier=Ref. fornecedor +RefPayment=Ref. Pagamento +Comment=Comentario +Comments=Comentarios +ActionsToDo=Ações a realizar +ActionsToDoShort=Para fazer +ActionNotApplicable=Não aplicavel +ActionRunningNotStarted=A Iniciar +ActionUncomplete=Incompleto +LatestLinkedEvents=Últimos eventos vinculados %s +CompanyFoundation=Empresa / Organização +Accountant=Contador +ContactsForCompany=Contatos desta empresa +ContactsAddressesForCompany=Contatos/Endereços do Cliente ou Fornecedor +AddressesForCompany=Endereços para este terceiro +ActionsOnCompany=Eventos para o terceiro +ActionsOnContact=Eventos para este contato/Endereço +ActionsOnContract=Eventos para este contrato +ActionsOnMember=Eventos deste membro +ActionsOnProduct=Eventos deste produto +ToDo=Para fazer +RequestAlreadyDone=Pedido ja registrado +FilterOnInto=Critério da pesquisa '%s' nos campos %s +RemoveFilter=Eliminar filtro +GeneratedOn=Gerado a %s +DolibarrStateBoard=Estatísticas do banco de dados +DolibarrWorkBoard=Itens abertos +NoOpenedElementToProcess=Nenhum elemento aberto para processar +Available=Disponivel +NotYetAvailable=Ainda não disponível +NotAvailable=Não disponível +Categories=Tags / categorias +Category=Tag / categoria +to=para +To=para +ToDate=para +ToLocation=para +Other=Outros +OtherInformations=Outra informação +ApprovedBy2=Aprovado pelo (segunda aprovação) +Draft=Minuta +Validated=Validada +OpenAll=Abertos(todos) +ClosedAll=Fechados(Todos) +Unknown=Versão Desconhecida +Received=Recebida +ByCompanies=Por Fornecedor +ByUsers=Pelo usuário +NoneF=Nenhum +LateDesc=Um item é definido como atrasado de acordo com a configuração do sistema no menu Início - Configuração - Alertas. +DeletePicture=Apagar foto +ConfirmDeletePicture=Confirmar eliminação de fotografias +LoginEmail=Usuario (e-mail) +LoginOrEmail=Usuraio ou E-mail +CurrentLogin=Login atual +EnterLoginDetail=Digite os detalhes do login +May=Mai +Month05=Mai +MonthShort02=Fev +MonthShort04=Abr +MonthShort05=Mai +MonthShort08=Ago +MonthShort09=Set +MonthShort10=Out +MonthShort12=Dez +AttachedFiles=Arquivos e Documentos Anexos +JoinMainDoc=Junte-se ao documento principal +ReportPeriod=Periodo de Análise +Fill=Preencher +Reset=Resetar +File=Arquivo +Files=Arquivos +AmountInCurrency=Valores Apresentados em %s +NbOfThirdParties=Numero de Fornecedores +NbOfObjects=Numero de Objetos +Referers=Itens correlatos +Uncheck=Desmarque +Entities=Entidadees +CustomerPreview=Historico Cliente +SupplierPreview=Visualização do fornecedor +ShowCustomerPreview=Ver Historico Cliente +SeeAll=Ver tudo +SendByMail=Envio por e-mail +MailSentBy=Mail enviado por +Email=E-mail +NotRead=Não lido +NoMobilePhone=Sem celular +Refresh=Atualizar +BackToList=Mostar Lista +BackToTree=Voltar à árvore +CanBeModifiedIfOk=Pode modificarse se é valido +CanBeModifiedIfKo=Pode modificarse senão é valido +ValueIsValid=Valor é válido +ValueIsNotValid=Valor inválido +RecordCreatedSuccessfully=Registro criado com sucesso +RecordsModified=%sregistros modificados +RecordsDeleted=%sregistros deletados +RecordsGenerated=%sregistros gerados +FeatureDisabled=Função Desativada +MoveBox=Widget de movimento +NotEnoughPermissions=Não tem permissões para esta ação +Receive=Recepção +CompleteOrNoMoreReceptionExpected=Completo nada mais a fazer +ExpectedQty=Quantidade prevista +YouCanChangeValuesForThisListFromDictionarySetup=Você pode alterar valores para esta lista no menu Configuração - Dicionários +YouCanChangeValuesForThisListFrom=Você pode alterar valores para esta lista no menu %s +YouCanSetDefaultValueInModuleSetup=Você pode definir o valor padrão usado ao criar um novo registro na configuração do módulo +UploadDisabled=Carregamento Desativada +MenuTaxesAndSpecialExpenses=Impostos | Despesas especiais +ThisLimitIsDefinedInSetup=Límite Dolibarr (menu inicio-configuração-segurança): %s Kb, PHP limit: %s Kb +NoFileFound=Nenhum documento carregado +CurrentTheme=Tema atual +CurrentMenuManager=Administração do menu atual +Screen=Tela +DisabledModules=Módulos desativados +HidePassword=Mostrar comando com senha oculta +UnHidePassword=Mostrar comando real com a senha visivel +RootOfMedias=Raiz das mídias públicas (/ media) +AddFile=Adicionar arquivo +FreeZone=Produto de texto livre +FreeLineOfType=Item de texto livre, digite: +CloneMainAttributes=Clonar o objeto com estes atributos +ReGeneratePDF=Re-gerar PDF +PDFMerge=Fusão de PDF +Merge=Fusão +PrintContentArea=Mostrar pagina a se imprimir na area principal +MenuManager=Administração do menu +WarningYouAreInMaintenanceMode=Aviso, voce está em modo manutenção> Só login %s é permitido usar a app neste modo. +CoreErrorMessage=Desculpe, ocorreu um erro. Entre em contato com o administrador do sistema para verificar os registros ou desative $ dolibarr_main_prod = 1 para obter mais informações. +CreditCard=Cartão de credito +CreditOrDebitCard=Cartao de credito ou debito +FieldsWithAreMandatory=Campos com %s são obrigatorios +FieldsWithIsForPublic=Os campos com %s são exibidos na lista pública de membros. Se você não quiser isso, desmarque a caixa "pública". +NotSupported=Não suportado +RequiredField=Campo obrigatorio +ValidateBefore=O item deve ser validado antes de usar este recurso +Visibility=Visível +TotalizableDesc=Este campo é totalizável na lista +Hidden=Escondido +Resources=Resorsas +IPAddress=endereco IP +Frequency=Frequencia +IM=Mensagems instantaneas +AttributeCode=Codigo do atributo +URLPhoto=URL da photo/logo +SetLinkToAnotherThirdParty=Atalho para outro terceiro +LinkTo=Link para +LinkToProposal=Link para a proposta +LinkToOrder=Linque para o pedido +LinkToInvoice=Link para a fatura +LinkToTemplateInvoice=Link para fatura modelo +LinkToSupplierOrder=Link para Ordem de compra +LinkToSupplierInvoice=Link para a fatura do fornecedor +LinkToContract=Link para o Contrato +LinkToIntervention=Link para a Intervensão +SetToDraft=Voltar para modo rascunho +ClickToRefresh=Clique para atualizar +EditWithEditor=Editar com o CKEditor +EditHTMLSource=Editar fonte HTML +ObjectDeleted=Objeto %s apagado +ByTown=Por cidade +ByMonthYear=Por mes/ano +ByYear=Por ano +ByMonth=Por mes +ByDay=Por día +BySalesRepresentative=Por vendedor representante +LinkedToSpecificUsers=Conectado com um contato particular do usuario +AdminTools=Ferramentas de administração +ModulesSystemTools=Ferramentas de modulos +NoPhotoYet=Sem fotos disponiveis no momento +Dashboard=Painel de Controle +MyDashboard=Meu painel +Deductible=Deduzivel +from=de +toward=para +SelectAction=Selecionar ação +SelectTargetUser=Selecione o usuário / funcionário de destino +HelpCopyToClipboard=Use Ctrl+C para copiar para o clipboard +SaveUploadedFileWithMask=Salvar arquivo no servidor com nome "%s" (alternativamente "%s") +OriginFileName=Nome original do arquivo +SetDemandReason=Escolher fonte +SetBankAccount=Definir conta bancaria +ViewPrivateNote=Ver anotaçoes +XMoreLines=%s linha(s) escondidas +ShowMoreLines=Mostrar mais / menos linhas +PublicUrl=URL pública +AddBox=Adicionar caixa +PrintFile=Imprimir arquivo %s +ShowTransaction=Mostrar entrada na conta bancária +ShowIntervention=Mostrar intervençao +GoIntoSetupToChangeLogo=Vá para Home - Setup - Company para alterar o logotipo ou vá para Home - Setup - Display para ocultar. +Denied=Negado +Gender=Gênero +Genderman=Masculino +Genderwoman=Feminino +Genderother=Outros +ViewList=Exibição de lista +ViewGantt=Visualização Gantt +ViewKanban=Visualização Kanban +GoodBye=Tchau +Sincerely=Sinceramente +ConfirmDeleteObject=Tem certeza de que deseja excluir este objeto? +DeleteLine=Apagar linha +ConfirmDeleteLine=Você tem certeza que deseja excluir esta linha? +ErrorPDFTkOutputFileNotFound=Erro: o arquivo não foi gerado. Verifique se o comando 'pdftk' está instalado em um diretório incluído na variável de ambiente $ PATH (somente linux / unix) ou entre em contato com o administrador do sistema. +NoPDFAvailableForDocGenAmongChecked=Nenhum PDF estava disponível para a geração de documentos entre os registros verificados +TooManyRecordForMassAction=Registros demais selecionados para ação em massa. A ação é restrita a uma lista de registros %s. +NoRecordSelected=Nenhum registro selecionado +MassFilesArea=Área para os arquivos gerados pelas ações em massa +ShowTempMassFilesArea=Exibir área dos arquivos gerados pelas ações em massa +ConfirmMassDeletion=Confirmação exclusão em massa +ConfirmMassDeletionQuestion=Tem certeza que voce quer excluir %s registros selecionados +RelatedObjects=Objetos Relacionados +ClassifyBilled=Classificar Faturado +ClassifyUnbilled=Classificar nao faturado +FrontOffice=Frente do escritório +BackOffice=Fundo do escritório +View=Visão +Exports=Exportações +IncludeDocsAlreadyExported=Incluir documentos já exportados +ExportOfPiecesAlreadyExportedIsEnable=A exportação de peças já exportadas está habilitada +ExportOfPiecesAlreadyExportedIsDisable=A exportação de peças já exportadas está desabilitada +AllExportedMovementsWereRecordedAsExported=Todos as movimentações exportadas foram salvos como exportadas +NotAllExportedMovementsCouldBeRecordedAsExported=Nem todos as movimentações exportadas puderam ser salvas como exportadas +Miscellaneous=Variados +Calendar=Calendário +GroupBy=Agrupar por +ViewFlatList=Visão da lista resumida +RemoveString=Remover string '%s' +DirectDownloadLink=Link de download público +DirectDownloadInternalLink=Link privado para baixar +Download=Baixar +DownloadDocument=Descarregar documento +ActualizeCurrency=Atualizar taxa de câmbio +Fiscalyear=Ano fiscal +ModuleBuilder=Módulo e Application Builder +ClickToShowHelp=Clique para mostrar ajuda de ajuda +WebSiteAccounts=Conta do website +TitleSetToDraft=Volte para o rascunho +ConfirmSetToDraft=Tem certeza de que deseja voltar ao status de rascunho? +FileNotShared=Arquivo não compartilhado para público externo +LeadOrProject=Lead | Projeto +LeadsOrProjects=Leads | Projetos +Lead=Conduzir +Leads=Conduz +ListOpenLeads=Listar leads abertos +ListOpenProjects=Listar projetos abertos +NewLeadOrProject=Novo lead ou projeto +LineNb=Sem Linha. +IncotermLabel=Termos Internacionais de Comércio +TabLetteringCustomer=Rotulação do cliente +TabLetteringSupplier=Rotulação de fornecedor +Saturday=Sabado +SaturdayMin=Sab +Day6=Sabado +thirteen=treze +SetRef=Escolher referência +Select2ResultFoundUseArrows=Alguns resultados encontrados. Use as setas para selecionar. +Select2Enter=Forneça +Select2MoreCharactersMore= Sintaxe de pesquisa:
| OU (a | b)
* Qualquer caractere (a * b)
^ Começa com (^ ab)
$ Terminar com (ab $)
+Select2LoadingMoreResults=Carregando mais resultados... +Select2SearchInProgress=Busca em andamento... +SearchIntoContacts=Contatos +SearchIntoUsers=Usuários +SearchIntoBatch=Lotes / Seriais +SearchIntoMO=Ordens de fabricação +SearchIntoCustomerInvoices=Faturas de clientes +SearchIntoSupplierInvoices=Faturas de fornecedores +SearchIntoCustomerOrders=Pedido de Venda +SearchIntoSupplierOrders=Pedidos de compra +SearchIntoSupplierProposals=Propostas de fornecedores +SearchIntoContracts=Contratos +SearchIntoCustomerShipments=Remessas do cliente +SearchIntoVendorPayments=Pagamentos do fornecedor +CommentLink=Comentarios +CommentPage=Espaço para comentarios +CommentDeleted=Comentário deletado +Everybody=A todos +PayedBy=Pago por +PayedTo=Paga para +Monthly=Por mês +Remote=Controlo remoto +Deletedraft=Excluir rascunho +ConfirmMassDraftDeletion=Confirmação de exclusão de massa de esboço +SelectAThirdPartyFirst=Selecione um terceiro primeiro ... +YouAreCurrentlyInSandboxMode=No momento você está no %s modo "caixa de areia" +AnalyticCode=Código analitico +ShowCompanyInfos=Mostrar informações da empresa +ShowMoreInfos=Mostrar mais informações +NoFilesUploadedYet=Por favor, carregue um doc. primeiro +SeePrivateNote=Veja avisos privados +PaymentInformation=Informações de Pagamento +ValidFrom=Válido de +NoRecordedUsers=Sem Usuários +ToClose=Para Fechar +ToProcess=A processar +ToApprove=Para Aprovar +GlobalOpenedElemView=Visão Global +NoArticlesFoundForTheKeyword=Sem artigos encontrados para o termo '%s' +NoArticlesFoundForTheCategory=Sem artigos encontrados para a categoria +ToAcceptRefuse=Para Aceitar | Recusar +ContactDefault_agenda=Ação +ContactDefault_commande=Pedido +ContactDefault_invoice_supplier=Fatura do Fornecedor +ContactDefault_order_supplier=Ordem de Compra +ContactDefault_propal=Proposta +ContactDefault_supplier_proposal=Proposta do Fornecedor +ContactAddedAutomatically=Contato adicionado a partir de informações de terceiros +StatisticsOn=Estatísticas sobre +SelectYourGraphOptionsFirst=Selecione suas opções para criar um gráfico +StatusOfRefMustBe=O status de %s deve ser %s +DeleteFileHeader=Confirmar exclusão de arquivo +DeleteFileText=Deseja realmente excluir este arquivo? +SwitchInEditModeToAddTranslation=Alterne modo de edição para adicionar traduções para este idioma +NotUsedForThisCustomer=Não usado para este cliente +AmountMustBePositive=O valor deve ser positivo +ByStatus=Por status +Used=Usado +ASAP=O mais breve possível +CREATEInDolibarr=Registro %s criado +DateOfBirth=Data de nascimento +OnHold=Em espera +ClientTZ=Fuso Horário do cliente (usuário) +Terminate=Concluir diff --git a/htdocs/langs/pt_MZ/margins.lang b/htdocs/langs/pt_MZ/margins.lang new file mode 100644 index 00000000000..36c8bb59d1d --- /dev/null +++ b/htdocs/langs/pt_MZ/margins.lang @@ -0,0 +1,26 @@ +# Dolibarr language file - Source file is en_US - margins +MarginRate=Relação margem-preço de compra +MarkRate=Relação margem-preço de venda +DisplayMarginRates=Exibir relações margem-preço de compra +DisplayMarkRates=Exibir relações margem-preço de venda +InputPrice=Preço de entrada +margesSetup=Configuração das margens de lucro +ProductMargins=Margens de produtos +CustomerMargins=Margems de clientes +SalesRepresentativeMargins=Tolerância aos representante de vendas +ContactOfInvoice=Contato da fatura +UserMargins=Margens do usuário +ProductService=Produto ou serviço +ForceBuyingPriceIfNull=Compra Força preço / custo para o preço de venda se não definido +MARGIN_METHODE_FOR_DISCOUNT=Metodologia de margem para descontos globais +MARGIN_METHODE_FOR_DISCOUNT_DETAILS=Define se um desconto global e tratado como o produto, serviço, ou somente sob o sub-total na margem. +MARGIN_TYPE=Compra / Preço de custo sugerido por padrão para cálculo da margem de +MargeType2=Margem sobre o Preço Médio Ponderado (PMP) +MargeType3=Margem sobre o preço de custo +MarginTypeDesc=*Margem sobre o melhor preço de compra = Preço de venda - Melhor preço de fornecedor definido no cartão do produto
*Margem no Preço Médio Ponderado (WAP) = Preço de Venda - Preço Médio Ponderado pelo Produto (WAP) ou melhor preço de fornecedor se o WAP ainda não estiver definido
*Margem no preço de custo = preço de venda - preço de custo definido no cartão do produto ou WAP se o preço de custo não estiver definido ou o melhor preço do fornecedor se o WAP ainda não estiver definido +AgentContactType=Tipo contato do agente comercial +AgentContactTypeDetails=Defina qual tipo de contato (vinculado nas faturas) será usado para o relatório de margem por contato / endereço. Observe que a leitura das estatísticas de um contato não é confiável, pois na maioria dos casos o contato pode não ser definido explicitamente nas faturas. +rateMustBeNumeric=Rata deve ser um valor numerico +markRateShouldBeLesserThan100=Rata marcada teria que ser menor do que 100 +ShowMarginInfos=Mostrar informações sobre margens +CheckMargins=Detalhes das margens diff --git a/htdocs/langs/pt_MZ/members.lang b/htdocs/langs/pt_MZ/members.lang new file mode 100644 index 00000000000..c99cfc77e20 --- /dev/null +++ b/htdocs/langs/pt_MZ/members.lang @@ -0,0 +1,5 @@ +# Dolibarr language file - Source file is en_US - members +MemberStatusDraft=Rascunho (precisa ser validada) +MemberStatusDraftShort=Minuta +MemberStatusActiveShort=Validada +MemberStatusNoSubscriptionShort=Validada diff --git a/htdocs/langs/pt_MZ/modulebuilder.lang b/htdocs/langs/pt_MZ/modulebuilder.lang new file mode 100644 index 00000000000..d49ff08f6ab --- /dev/null +++ b/htdocs/langs/pt_MZ/modulebuilder.lang @@ -0,0 +1,57 @@ +# Dolibarr language file - Source file is en_US - modulebuilder +ModuleBuilderDesc2=Caminho onde os módulos são gerados/editados (primeiro diretório para módulos externos definidos em %s): %s +ModuleBuilderDesc3=Módulos gerados / editáveis ​​encontrados: %s +ModuleBuilderDescmenus=Esta guia é dedicada a definir as entradas do menu fornecidas pelo seu módulo. +ModuleBuilderDescpermissions=Essa guia é dedicada para definir as novas permissões que você deseja fornecer com seu módulo. +ModuleBuilderDesctriggers=Esta é a visão dos gatilhos fornecidos pelo seu módulo. Para incluir o código executado quando um evento de negócios acionado é iniciado, basta editar esse arquivo. +ModuleBuilderDeschooks=Esta aba é dedicada aos ganchos. +ModuleBuilderDescwidgets=Esta aba é dedicada a gerenciar / construir widgets. +ModuleBuilderDescbuildpackage=Você pode gerar aqui um arquivo de pacote "pronto para distribuir" (um arquivo .zip normalizado) do seu módulo e um arquivo de documentação "pronto para distribuir". Basta clicar no botão para criar o pacote ou arquivo de documentação. +EnterNameOfModuleToDeleteDesc=Você pode excluir seu módulo. AVISO: Todos os arquivos de codificação do módulo (gerados ou criados manualmente) e dados estruturados e documentação serão apagados! +EnterNameOfObjectToDeleteDesc=Você pode excluir um objeto. AVISO: Todos os arquivos de codificação (gerados ou criados manualmente) relacionados ao objeto serão excluídos! +BuildDocumentation=Documentação de compilação +ModuleIsLive=Este módulo foi ativado. Qualquer alteração pode interromper um recurso atual ao vivo. +DescriptionLong=Longa descrição +DescriptorFile=Arquivo descritor do módulo +ApiClassFile=Arquivo para classe API do PHP +PageForList=Página PHP para lista de registro +PageForCreateEditView=Página PHP para criar / editar / visualizar um registro +PathToModulePackage=Caminho para o zip do pacote de módulo / aplicativo +PathToModuleDocumentation=Caminho para o arquivo da documentação do módulo/aplicativo (%s) +FileNotYetGenerated=Arquivo ainda não gerado +RegenerateClassAndSql=Forçar atualização de arquivos .class e .sql +SpecificationFile=Arquivo de documentação +ObjectProperties=Propriedades do Objeto +DatabaseIndex=Índice do banco de dados +CSSFile=Arquivo CSS +JSFile=Arquivo JavaScript +PageForLib=Arquivo para a biblioteca comum do PHP +PageForObjLib=Arquivo para a biblioteca PHP dedicada ao objeto +SqlFileKeyExtraFields=Arquivo SQL para chaves de atributos complementares +ListOfDictionariesEntries=Lista de entradas dos dicionários +DisplayOnPdf=Exibir em PDF +MenusDefDesc=Defina aqui os menus fornecidos pelo seu módulo +DictionariesDefDesc=Defina aqui os dicionários fornecidos pelo seu módulo +PermissionsDefDesc=Defina aqui as novas permissões fornecidas pelo seu módulo +PermissionsDefDescTooltip=As permissões fornecidas pelo seu módulo/aplicativo são definidas no array $this-> rights no arquivo descritor do módulo. Você pode editar manualmente este arquivo ou usar o editor incorporado.

Nota: Uma vez definida (e módulo reativado), as permissões são visíveis na configuração de permissões padrão %s. +AddLanguageFile=Adicionar arquivo de idioma +ContentOfREADMECustomized=Nota: O conteúdo do arquivo README.md foi substituído pelo valor específico definido na instalação do ModuleBuilder. +ContentCantBeEmpty=O conteúdo do arquivo não pode estar vazio +WidgetDesc=Você pode gerar e editar aqui os widgets que serão incorporados ao seu módulo. +CSSDesc=Você pode gerar e editar aqui um arquivo com CSS personalizado incorporado ao seu módulo. +JSDesc=Você pode gerar e editar aqui um arquivo com Javascript personalizado incorporado ao seu módulo. +CLIDesc=Você pode gerar aqui alguns scripts de linha de comando que você deseja fornecer com seu módulo. +CLIFile=Arquivo CLI +NoCLIFile=Nenhum arquivo CLI +UseSpecificEditorName =Use um nome de editor específico +UseSpecificEditorURL =Use um URL de editor específico +UseSpecificFamily =Use uma família específica +UseSpecificAuthor =Use um autor específico +UseSpecificVersion =Use uma versão inicial específica +IncludeDocGenerationHelp=Se você marcar isto, um código será gerado para adicionar uma caixa "Gerar documento" ao registro. +ShowOnCombobox=Mostrar valor na caixa de combinação +KeyForTooltip=Chave para dica de ferramenta +NotEditable=Não editável +ForeignKey=Chave estrangeira +AsciiToHtmlConverter=Converter ASCII para HTML +AsciiToPdfConverter=Converter ASCII para PDF diff --git a/htdocs/langs/pt_MZ/mrp.lang b/htdocs/langs/pt_MZ/mrp.lang new file mode 100644 index 00000000000..30afe170110 --- /dev/null +++ b/htdocs/langs/pt_MZ/mrp.lang @@ -0,0 +1,4 @@ +# Dolibarr language file - Source file is en_US - mrp +Mrp=Ordens de fabricação +MenuMRP=Ordens de fabricação +DeleteWorkstation=Excluir diff --git a/htdocs/langs/pt_MZ/multicurrency.lang b/htdocs/langs/pt_MZ/multicurrency.lang new file mode 100644 index 00000000000..b5dc54f3023 --- /dev/null +++ b/htdocs/langs/pt_MZ/multicurrency.lang @@ -0,0 +1,16 @@ +# Dolibarr language file - Source file is en_US - multicurrency +MultiCurrency=Multi Moeda +ErrorDeleteCurrencyFail=Erro ao excluir falha +MULTICURRENCY_USE_RATE_ON_DOCUMENT_DATE=Use a data do documento para encontrar a taxa de câmbio, em vez de usar a taxa conhecida mais recente +multicurrency_useOriginTx=Quando um objeto é criado a partir de outro, mantenha a taxa original do objeto de origem (caso contrário, use a taxa conhecida mais recente) +CurrencyLayerAccount=API CurrencyLayer +CurrencyLayerAccount_help_to_synchronize=Você deve criar uma conta no site %s para usar essa funcionalidade.
Obtenha sua chave de API.
Se você usar uma conta gratuita, não poderá alterar a moeda de origem (USD por padrão).
Se sua moeda principal não for USD, o aplicativo irá recalcular automaticamente.

Você está limitado a 1000 sincronizações por mês. +multicurrency_appId=Chave API +multicurrency_appCurrencySource=Moeda de origem +multicurrency_alternateCurrencySource=Moeda de origem alternativa +CurrenciesUsed=Moedas utilizadas +CurrenciesUsed_help_to_add=Adicione as diferentes moedas e taxas que você precisa usar nas suas propostas , ordens etc. +MulticurrencyReceived=Moeda original recebida +MulticurrencyRemainderToTake=Quantia restante, moeda original +MulticurrencyPaymentAmount=Valor do pagamento, moeda original +AmountToOthercurrency=Quantia para (na moeda da conta receptora) diff --git a/htdocs/langs/pt_MZ/oauth.lang b/htdocs/langs/pt_MZ/oauth.lang new file mode 100644 index 00000000000..27fbaa19d68 --- /dev/null +++ b/htdocs/langs/pt_MZ/oauth.lang @@ -0,0 +1,22 @@ +# Dolibarr language file - Source file is en_US - oauth +ConfigOAuth=Configuração do OAuth +OAuthServices=Serviços OAuth +ManualTokenGeneration=Geração manual do token +TokenManager=Gerenciador de tokens +IsTokenGenerated=O token está gerado? +NoAccessToken=Nenhum token de acesso guardado na base de dados local +HasAccessToken=Um token foi gerado e salvo no banco de dados local +NewTokenStored=Token recebido e salvo +ToCheckDeleteTokenOnProvider=Clique aqui para verificar/apagar autorização salva pelo provedor OAuth %s +TokenDeleted=Token excluído +DeleteAccess=Clique aqui para apagar o token +UseTheFollowingUrlAsRedirectURI=Use o URL a seguir como o URI de redirecionamento ao criar suas credenciais com seu provedor OAuth: +SeePreviousTab=Ver aba anterior +OAuthIDSecret=Identificação OAuth e Senha +TOKEN_REFRESH=Token Atualizar Presente +TOKEN_EXPIRED=Token vencido +TOKEN_EXPIRE_AT=Token expira no +TOKEN_DELETE=Excluir token salvo +OAUTH_GOOGLE_NAME=Serviço do Google OAuth +OAUTH_GITHUB_NAME=Serviço OAuth GitHub +OAUTH_GITHUB_SECRET=OAuth GitHub secreto diff --git a/htdocs/langs/pt_MZ/opensurvey.lang b/htdocs/langs/pt_MZ/opensurvey.lang new file mode 100644 index 00000000000..6b191a5b82f --- /dev/null +++ b/htdocs/langs/pt_MZ/opensurvey.lang @@ -0,0 +1,48 @@ +# Dolibarr language file - Source file is en_US - opensurvey +Survey=Enquete +Surveys=Enquetes +OrganizeYourMeetingEasily=Organize suas reuniões e pesquisas facilmente. Primeiro selecione o tipo de pesquisa ... +NewSurvey=Nova enquete +OpenSurveyArea=Área de enquetes +AddACommentForPoll=Você pode adicionar um comentário na enquete... +CreatePoll=Criar uma enquete +PollTitle=Titulo da enquete +ToReceiveEMailForEachVote=Receba um e-mail a cada novo voto +TypeDate=Modelo para datas +TypeClassic=Modelo padrão +RemoveAllDays=Remova todos os dias +CopyHoursOfFirstDay=Copiar horários do primeiro dia +RemoveAllHours=Apagar todos os horários +TheBestChoice=A melhor escolha no momento é +TheBestChoices=As melhores escolhas no momento são +OpenSurveyHowTo=Se você quiser votar nesta enquete, você tem que preencher o seu nome, escolha as opções que se encaixam melhor para você e confirme com o botão de mais no final da linha. +ConfirmRemovalOfPoll=Você tem certeza que deseja remover esta enquete (e todos os votos) +RemovePoll=Remover enquete +UrlForSurvey=URL para obter um acesso direto à pesquisa +PollOnChoice=Você está criando uma enquete e se quiser ainda pode optar por votos multi escolhas em cada item. Basta entrar com o tipo de resposta para o voto: +CreateSurveyDate=Criar uma enquete para datas +CreateSurveyStandard=Criar uma enquete padrão +CheckBox=Caixa de resposta simples +YesNoList=Escolher (nulo/sim/não) +PourContreList=Escolher (nulo/a favor/contra) +TitleChoice=Escolha a resposta +ExportSpreadsheet=Exportar resultado para planilha +ExpireDate=Data Límite +NbOfSurveys=Número de enquetes +SurveyResults=Resultado +PollAdminDesc=Você está autorizado a alterar todas as linhas da votação desta enquete, com o botão "Editar". Você pode, também remover uma coluna ou uma linha com o %s. Você também pode adicionar uma nova coluna com o %s. +YouAreInivitedToVote=Você foi convidado para votar nesta enquete +VoteNameAlreadyExists=Este nome já foi usada na enquete +AddEndHour=Adicionar hora final +votes=voto(s) +NoCommentYet=Nenhum comentário foi publicado para este voto ainda +CanComment=Os eleitores podem comentar na enquete +CanSeeOthersVote=Os eleitores podem ver os votos de outras pessoas +SelectDayDesc=Para cada dia selecionado, você pode escolher, ou não, as horas de reunião no seguinte formato:
- vazio
- "8h", "8H" ou "8:00" para dar a hora de início de uma reunião,
- "8-11", "8h-11h", "8H-11H" ou "8: 00-11: 00" para dar as horas de início e fim de uma reunião,
- "8h15-11h15", "8H15-11H15" ou "8: 15-11: 15" para a mesma coisa, mas com minutos. +ErrorOpenSurveyFillFirstSection=Você não preencheu o primeiro passo para criação da enquete +ErrorOpenSurveyOneChoice=Digite pelo menos uma opção +ErrorInsertingComment=Houve um erro ao inserir o seu comentário +MoreChoices=Digite mais opções para os votos +SurveyExpiredInfo=A enquete foi encerrada ou o período de votação expirou. +EmailSomeoneVoted=%s preencheu uma linha.\nVocê pode encontrar sua enquete no link:\n%s +ShowSurvey=Mostrar pesquisa diff --git a/htdocs/langs/pt_MZ/orders.lang b/htdocs/langs/pt_MZ/orders.lang new file mode 100644 index 00000000000..3b78910a81d --- /dev/null +++ b/htdocs/langs/pt_MZ/orders.lang @@ -0,0 +1,22 @@ +# Dolibarr language file - Source file is en_US - orders +Order=Pedido +PdfOrderTitle=Pedido +Orders=Pedidos +SuppliersOrders=Pedidos de compra +CustomersOrders=Pedidos de venda +StatusOrderDraftShort=Minuta +StatusOrderValidatedShort=Validada +StatusOrderSentShort=Em andamento +StatusOrderToProcessShort=A processar +StatusOrderDraft=Rascunho (precisa ser validada) +TypeContact_commande_external_BILLING=Contato de fatura de cliente +TypeContact_commande_external_SHIPPING=Contato de envio de cliente +TypeContact_order_supplier_external_BILLING=Contato da fatura do fornecedor +TypeContact_order_supplier_external_SHIPPING=Contato de remessa do fornecedor +OrderByEMail=E-mail +StatusSupplierOrderDraftShort=Minuta +StatusSupplierOrderValidatedShort=Validada +StatusSupplierOrderSentShort=Em andamento +StatusSupplierOrderToProcessShort=A processar +StatusSupplierOrderDraft=Rascunho (precisa ser validada) +StatusSupplierOrderValidated=Validada diff --git a/htdocs/langs/pt_MZ/other.lang b/htdocs/langs/pt_MZ/other.lang new file mode 100644 index 00000000000..7b033fc78de --- /dev/null +++ b/htdocs/langs/pt_MZ/other.lang @@ -0,0 +1,3 @@ +# Dolibarr language file - Source file is en_US - other +Notify_BILL_VALIDATE=Fatura de cliente confirmada +SeeModuleSetup=Veja configuração do módulo %s diff --git a/htdocs/langs/pt_MZ/partnership.lang b/htdocs/langs/pt_MZ/partnership.lang new file mode 100644 index 00000000000..75e97db9d39 --- /dev/null +++ b/htdocs/langs/pt_MZ/partnership.lang @@ -0,0 +1,3 @@ +# Dolibarr language file - Source file is en_US - partnership +Partnership=Parceria +DatePartnershipEnd=Data de término diff --git a/htdocs/langs/pt_MZ/paybox.lang b/htdocs/langs/pt_MZ/paybox.lang new file mode 100644 index 00000000000..6ca0e914a67 --- /dev/null +++ b/htdocs/langs/pt_MZ/paybox.lang @@ -0,0 +1,23 @@ +# Dolibarr language file - Source file is en_US - paybox +PayBoxSetup=Configuração do módulo PayBox +PayBoxDesc=Este módulo oferece uma página de pagamento atravé do fornecedor %s para que o pagamento seja criado automaticamente quando validado pelo Paybox. +YourPaymentHasBeenRecorded=Esta pagina confirma que o seu pagamento foi registrado com suçesso. Obrigado. +YourPaymentHasNotBeenRecorded=Seu pagamento NÃO foi registrado e a transação foi cancelada. Obrigado. +AccountParameter=Parametros da conta +UsageParameter=Parametros de uso +InformationToFindParameters=Ajuda a buscar suas %s informaçoes da conta +PAYBOX_CGI_URL_V2=URL do Paybox CGI modulo para pagamento +CSSUrlForPaymentForm=CSS style sheet URL para modelo de pagamento +NewPayboxPaymentReceived=Novo pagamento recebido Paybox +NewPayboxPaymentFailed=Novo pagamento Paybox tentou, mas não conseguiu +PAYBOX_PAYONLINE_SENDEMAIL=Aviso por e-mail depois de uma tentativa de pagamento (sucesso ou falha) +PAYBOX_PBX_IDENTIFIANT=Valor para PBX ID +PAYBOX_HMAC_KEY=Chave HMAC diff --git a/htdocs/langs/pt_MZ/paypal.lang b/htdocs/langs/pt_MZ/paypal.lang new file mode 100644 index 00000000000..8f57a572bdb --- /dev/null +++ b/htdocs/langs/pt_MZ/paypal.lang @@ -0,0 +1,29 @@ +# Dolibarr language file - Source file is en_US - paypal +PaypalSetup=Configuração do módulo PayPal +PaypalDesc=Este módulo permite o pagamento por clientes via PayPal. Isso pode ser usado para um pagamento ad-hoc ou para um pagamento relacionado a um objeto Dolibarr (fatura, pedido, ...) +PaypalOrCBDoPayment=Pague com PayPal (cartão ou PayPal) +PAYPAL_API_SANDBOX=Modo teste/caixa de areia +PAYPAL_API_USER=API usuario +PAYPAL_API_PASSWORD=API senha +PAYPAL_API_SIGNATURE=API assinatura +PAYPAL_SSLVERSION=Versão do SSL do cURL +PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Oferta de pagamento "integral" (cartão de crédito + PayPal) ou apenas "PayPal" +PaypalModeIntegral=Integralmente +PaypalModeOnlyPaypal=PayPal apenas +ThisIsTransactionId=Eis o id da transação: %s +PAYPAL_ADD_PAYMENT_URL=Inclua o URL de pagamento do PayPal quando enviar um documento por e-mail +NewOnlinePaymentFailed=Foi tentado novo pagamento online, mas sem hêxito +ONLINE_PAYMENT_SENDEMAIL=Endereço de e-mail para notificações após cada tentativa de pagamento (para sucesso e falha) +ReturnURLAfterPayment=Retornar ao URL após o pagamento +ValidationOfOnlinePaymentFailed=A validação do pagamento online falhou +PaymentSystemConfirmPaymentPageWasCalledButFailed=A página de confirmação de pagamento, que foi chamada pelo sistema de pagamento, retornou um erro +SetExpressCheckoutAPICallFailed=Falha ao chamar a API: SetExpressCheckout. +DoExpressCheckoutPaymentAPICallFailed=Falha ao chamar a API: DoExpressCheckoutPayment. +DetailedErrorMessage=Mensagem de erro detalhada +ShortErrorMessage=Mensagem curta de erro +ErrorCode=Código do erro +ErrorSeverityCode=Erro grave de código +PaypalLiveEnabled=Modo "ao vivo" do PayPal ativado (caso contrário, modo teste/sandbox) +PostActionAfterPayment=Poste as ações após os pagamentos +CardOwner=Titular do cartão +PayPalBalance=Crédito Paypal diff --git a/htdocs/langs/pt_MZ/productbatch.lang b/htdocs/langs/pt_MZ/productbatch.lang new file mode 100644 index 00000000000..04732b11ece --- /dev/null +++ b/htdocs/langs/pt_MZ/productbatch.lang @@ -0,0 +1,40 @@ +# Dolibarr language file - Source file is en_US - productbatch +ManageLotSerial=Use lote / número de série +ProductStatusOnBatch=Sim (lote obrigatório) +ProductStatusOnSerial=Sim (número de série exclusivo necessário) +ProductStatusNotOnBatch=Não (lote / série não utilizado) +ProductStatusOnBatchShort=Lot. +Batch=Lote / Série +atleast1batchfield=Compra prazo de validade ou data de venda ou Lote / Número de série +batch_number=Lote / Número de série +BatchNumberShort=Lote / Serial +EatByDate=Compra-por data +DetailBatchNumber=Detalhes Lote / Serial +printBatch=Lote / Serial: %s +printEatby=Compra-por: %s +printSellby=Venda-por: %s +printQty=Qtde: %d +AddDispatchBatchLine=Adicione uma linha para Shelf Life expedição +WhenProductBatchModuleOnOptionAreForced=Quando o módulo Lote / Série está ativado, a redução automática de estoque é forçada a 'Diminuir estoques reais na validação do envio' e o modo de aumento automático é forçado a 'Aumentar estoques reais no despacho manual em depósitos' e não pode ser editado. Outras opções podem ser definidas como você deseja. +ProductDoesNotUseBatchSerial=Este produto não utiliza Lote / número de série +ProductLotSetup=Configuração do módulo lote/nº de série +ShowCurrentStockOfLot=Exibir o estoque atual para o produto/lote +ShowLogOfMovementIfLot=Exibir o registro de movimentações para o produto/lote +SerialNumberAlreadyInUse=O número de série %s já é usado para o produto %s +TooManyQtyForSerialNumber=Você só pode ter um produto %s para o número de série %s +ManageLotMask=Máscara personalizada +CustomMasks=Opção para definir uma máscara de numeração diferente para cada produto +BatchLotNumberingModules=Regra de numeração para geração automática de número de lote +BatchSerialNumberingModules=Regra de numeração para geração automática de número de série (para produtos com propriedade 1 lote/série único para cada produto) +QtyToAddAfterBarcodeScan=Qtde para %s cada código de barras/lote/série escaneado +LifeTime=Tempo de vida (em dias) +EndOfLife=Fim de vida +ManufacturingDate=Data de fabricação +DestructionDate=Data de destruição +FirstUseDate=Data do primeiro uso +QCFrequency=Frequência do controle de qualidade (em dias) +ShowAllLots=Mostrar todos os lotes +HideLots=Ocultar lotes +OutOfOrder=Fora de serviço +InWorkingOrder=Em funcionamento +ToReplace=Substituir diff --git a/htdocs/langs/pt_MZ/projects.lang b/htdocs/langs/pt_MZ/projects.lang new file mode 100644 index 00000000000..8d0c1cedae8 --- /dev/null +++ b/htdocs/langs/pt_MZ/projects.lang @@ -0,0 +1,11 @@ +# Dolibarr language file - Source file is en_US - projects +SharedProject=A todos +TaskTimeUser=Usuário +ProjectModifiedInDolibarr=Projeto %s modificado +LinkToElementShort=Link para +ProjectReferers=Itens correlatos +OppStatusPROPO=Proposta +OppStatusPENDING=Pedente +ServiceToUseOnLines=Service to use on lines by default +NewInter=Nova Intervenção +StartDateCannotBeAfterEndDate=A data final não pode ser anterior a data de início diff --git a/htdocs/langs/pt_MZ/propal.lang b/htdocs/langs/pt_MZ/propal.lang new file mode 100644 index 00000000000..78f3a623073 --- /dev/null +++ b/htdocs/langs/pt_MZ/propal.lang @@ -0,0 +1,8 @@ +# Dolibarr language file - Source file is en_US - propal +ProposalShort=Proposta +ProposalsDraft=Minutas de orçamentos +PdfCommercialProposalTitle=Proposta +LastModifiedProposals=Últimas %s propostas modificadas +PropalStatusDraft=Rascunho (precisa ser validada) +PropalStatusDraftShort=Minuta +TypeContact_propal_external_BILLING=Contato de fatura de cliente diff --git a/htdocs/langs/pt_MZ/receptions.lang b/htdocs/langs/pt_MZ/receptions.lang new file mode 100644 index 00000000000..4e6be9a7c76 --- /dev/null +++ b/htdocs/langs/pt_MZ/receptions.lang @@ -0,0 +1,5 @@ +# Dolibarr language file - Source file is en_US - receptions +Receptions=Recebimentos +StatusReceptionDraft=Minuta +StatusReceptionDraftShort=Minuta +StatusReceptionValidatedShort=Validada diff --git a/htdocs/langs/pt_MZ/recruitment.lang b/htdocs/langs/pt_MZ/recruitment.lang new file mode 100644 index 00000000000..028099855bb --- /dev/null +++ b/htdocs/langs/pt_MZ/recruitment.lang @@ -0,0 +1,3 @@ +# Dolibarr language file - Source file is en_US - recruitment +About =Acerca de +PositionToBeFilled=Cargo diff --git a/htdocs/langs/pt_MZ/resource.lang b/htdocs/langs/pt_MZ/resource.lang new file mode 100644 index 00000000000..b78b36a3031 --- /dev/null +++ b/htdocs/langs/pt_MZ/resource.lang @@ -0,0 +1,18 @@ +# Dolibarr language file - Source file is en_US - resource +MenuResourceIndex=Resorsas +DeleteResource=Remover recurso +ConfirmDeleteResourceElement=Confirmar remoção do recurso para este elemento +NoResourceLinked=Nenhum recurso vinculado +ResourceCard=Cartao recursos +AddResource=Criar recurso +ResourcesLinkedToElement=Recursos vinculados ao elemento +ResourceElementPage=Elemento recursos +ResourceCreatedWithSuccess=Recurso criado com sucesso +RessourceLineSuccessfullyDeleted=Linha de Recursos excluído com sucesso +RessourceLineSuccessfullyUpdated=Linha de Recursos atualizado com sucesso +ResourceLinkedWithSuccess=Recurso conectado com sucesso +ConfirmDeleteResource=Confirme para remover este recurso +RessourceSuccessfullyDeleted=Recurso removido com sucesso +DictionaryResourceType=Tipo de recurso +SelectResource=Selecionar recurso +ImportDataset_resource_1=Resorsas diff --git a/htdocs/langs/pt_MZ/salaries.lang b/htdocs/langs/pt_MZ/salaries.lang new file mode 100644 index 00000000000..0ac1be4f306 --- /dev/null +++ b/htdocs/langs/pt_MZ/salaries.lang @@ -0,0 +1,17 @@ +# Dolibarr language file - Source file is en_US - salaries +SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Conta contábil usada para terceiros usuários +SALARIES_ACCOUNTING_ACCOUNT_PAYMENT_Desc=A conta contábil dedicada definida no cartão de usuário será usada somente para a contabilidade da Subconta. Este será usado para Contabilidade Geral e como valor padrão da contabilidade do Contador, se a conta contábil do usuário dedicada no usuário não estiver definida. +SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Conta da Contabilidade padrão para pagamentos de salário +CREATE_NEW_SALARY_WITHOUT_AUTO_PAYMENT=Por padrão, deixe em branco a opção "Criar automaticamente um pagamento total" ao criar um Salário +NewSalary=Novo salário +NewSalaryPayment=Novo cartão de salário +AddSalaryPayment=Adicionar pagamento de salário +SalaryPayment=Pagamento de salário +SalariesPayments=Pagamentos de salários +SalariesPaymentsOf=Pagamentos de salários de %s +THM=Taxa média horária +TJM=Taxa média diária +THMDescription=Este valor pode ser usado para calcular o custo de tempo consumido em um projeto entrado pelos usuários se o módulo projeto for usado +TJMDescription=Este valor é usado apenas como informação e não será usado em nenhum cálculo +SalariesStatistics=Estatísticas salariais +SalariesAndPayments=Salários e pagamentos diff --git a/htdocs/langs/pt_MZ/sendings.lang b/htdocs/langs/pt_MZ/sendings.lang new file mode 100644 index 00000000000..41e4158e7fd --- /dev/null +++ b/htdocs/langs/pt_MZ/sendings.lang @@ -0,0 +1,6 @@ +# Dolibarr language file - Source file is en_US - sendings +Sendings=Fretes +Shipments=Fretes +StatusSendingDraft=Minuta +StatusSendingDraftShort=Minuta +StatusSendingValidatedShort=Validada diff --git a/htdocs/langs/pt_MZ/sms.lang b/htdocs/langs/pt_MZ/sms.lang new file mode 100644 index 00000000000..e4c3de72851 --- /dev/null +++ b/htdocs/langs/pt_MZ/sms.lang @@ -0,0 +1,3 @@ +# Dolibarr language file - Source file is en_US - sms +SmsStatusDraft=Minuta +SmsStatusValidated=Validada diff --git a/htdocs/langs/pt_MZ/stocks.lang b/htdocs/langs/pt_MZ/stocks.lang new file mode 100644 index 00000000000..5f85db01b15 --- /dev/null +++ b/htdocs/langs/pt_MZ/stocks.lang @@ -0,0 +1,9 @@ +# Dolibarr language file - Source file is en_US - stocks +inventorySetup =Configuração de inventário +inventoryCreatePermission=Novo inventário +inventoryReadPermission=Ver inventários +inventoryDeletePermission=Remover inventario +inventoryValidate=Validada +inventoryChangePMPPermission=Permitir alterar o valor PMP de um produto +inventoryDeleteLine=Apagar linha +InventoryStartedShort=Iniciado diff --git a/htdocs/langs/pt_MZ/supplier_proposal.lang b/htdocs/langs/pt_MZ/supplier_proposal.lang new file mode 100644 index 00000000000..db8924d7709 --- /dev/null +++ b/htdocs/langs/pt_MZ/supplier_proposal.lang @@ -0,0 +1,7 @@ +# Dolibarr language file - Source file is en_US - supplier_proposal +CommRequests=Solicitações de preço +SupplierProposals=Propostas de fornecedores +SupplierProposalsShort=Propostas de fornecedores +SupplierProposalStatusDraft=Rascunho (precisa ser validada) +SupplierProposalStatusDraftShort=Minuta +SupplierProposalStatusValidatedShort=Validada diff --git a/htdocs/langs/pt_MZ/suppliers.lang b/htdocs/langs/pt_MZ/suppliers.lang new file mode 100644 index 00000000000..5c86fba17c2 --- /dev/null +++ b/htdocs/langs/pt_MZ/suppliers.lang @@ -0,0 +1,5 @@ +# Dolibarr language file - Source file is en_US - suppliers +Suppliers=Vendedores +SuppliersInvoice=Fatura do fornecedores +SupplierInvoices=Faturas de fornecedores +RefSupplierShort=Ref. fornecedor diff --git a/htdocs/langs/pt_MZ/ticket.lang b/htdocs/langs/pt_MZ/ticket.lang new file mode 100644 index 00000000000..b6efe07cc36 --- /dev/null +++ b/htdocs/langs/pt_MZ/ticket.lang @@ -0,0 +1,6 @@ +# Dolibarr language file - Source file is en_US - ticket +TicketTypeShortOTHER=Outros +TicketCategoryShortOTHER=Outros +TicketSettings=Configurações +TicketAddIntervention=Criar Intervenção +Unread=Não lido diff --git a/htdocs/langs/pt_MZ/trips.lang b/htdocs/langs/pt_MZ/trips.lang new file mode 100644 index 00000000000..9d96a45df36 --- /dev/null +++ b/htdocs/langs/pt_MZ/trips.lang @@ -0,0 +1,5 @@ +# Dolibarr language file - Source file is en_US - trips +TF_OTHER=Outros +AUTHORPAIEMENT=Pago por +DATE_SAVE=Data Validação +expenseReportOffset=Compensar diff --git a/htdocs/langs/pt_MZ/users.lang b/htdocs/langs/pt_MZ/users.lang new file mode 100644 index 00000000000..4556fbf2144 --- /dev/null +++ b/htdocs/langs/pt_MZ/users.lang @@ -0,0 +1,6 @@ +# Dolibarr language file - Source file is en_US - users +DeleteUser=Excluir +DeleteGroup=Excluir +LastName=Sobrenome +FirstName=Primeiro nome +MenuUsersAndGroups=Usuários e Grupos diff --git a/htdocs/langs/pt_MZ/website.lang b/htdocs/langs/pt_MZ/website.lang new file mode 100644 index 00000000000..a5781ea5a75 --- /dev/null +++ b/htdocs/langs/pt_MZ/website.lang @@ -0,0 +1,88 @@ +# Dolibarr language file - Source file is en_US - website +WebsiteSetupDesc=Aqui você pode criar os sites que você deseja usar. Em seguida, vá para o menu Websites para editá-los. +DeleteWebsite=Apagar website +ConfirmDeleteWebsite=Tem certeza que deseja excluir este site? Todas as suas páginas e conteúdo também serão removidos. Os arquivos enviados (como no diretório de mídia, no módulo ECM, ...) permanecerão. +WEBSITE_PAGE_EXAMPLE=Página da Web para usar como exemplo +WEBSITE_PAGENAME=Nome da Página/Apelido +WEBSITE_ALIASALT=Nomes / alias alternativos de página +WEBSITE_CSS_URL=URL do arquivo CSS externo. +WEBSITE_HTML_HEADER=Adição na parte inferior do cabeçalho HTML (comum a todas as páginas) +WEBSITE_ROBOT=Arquivo robô (robots.txt) +WEBSITE_MANIFEST_JSON=Arquivo manifest.json do site +WEBSITE_README=Arquivo README.md +EnterHereLicenseInformation=Digite aqui metadados ou informações de licença para arquivar num arquivo README.md. Se você distribuir seu site como modelo, o arquivo será incluído no pacote tentado. +HtmlHeaderPage=Cabeçalho HTML (específico apenas para esta página) +PageNameAliasHelp=Nome ou alias da página.
Esse alias também é usado para forjar uma URL de SEO quando o site é executado a partir de um host virtual de um servidor da Web (como Apacke, Nginx, ...). Use o botão %s para editar este alias. +EditTheWebSiteForACommonHeader=Nota: Se você quiser definir um cabeçalho personalizado para todas as páginas, edite o cabeçalho no nível do site em vez de na página / recipiente. +MediaFiles=Biblioteca de mídias +AddWebsite=Adicionar site +Webpage=Página WEB / container +AddPage=Adicionar página / recipiente +RequestedPageHasNoContentYet=A página solicitada com id %s ainda não possui conteúdo ou o arquivo de cache .tpl.php foi removido. Edite o conteúdo da página para resolver isso. +PageContent=Página / Contenair +PageDeleted=Página / Contenair '%s' do site %s excluído +PageAdded=Página / Contenair '%s' adicionado +ViewSiteInNewTab=Visualizar site numa nova aba +ViewPageInNewTab=Visualizar página numa nova aba +SetAsHomePage=Definir com Página Inicial +RealURL=URL real +ViewWebsiteInProduction=Visualizar website usando origem URLs +ExampleToUseInApacheVirtualHostConfig=Exemplo a ser usado na configuração do host virtual Apache: +YouCanAlsoTestWithPHPS= Usar com servidor embutido em PHP
No ambiente de desenvolvimento, você pode preferir testar o site com o servidor da Web incorporado em PHP (o PHP 5.5 é necessário) executando o php -S 0.0. 0,0: 8080 -t %s +TestDeployOnWeb=Testar / implementar na web +PreviewSiteServedByWebServer= Visualize %s em uma nova guia.

O %s será servido por um servidor web externo (como Apache, Nginx, IIS). Você deve instalar e configurar este servidor antes de apontar para o diretório:
%s
URL servido por servidor externo:
%s +VirtualHostUrlNotDefined=URL do host virtual veiculado pelo servidor web externo não definido +NoPageYet=Ainda não há páginas +SyntaxHelp=Ajuda sobre dicas de sintaxe específicas +ClonePage=Página clone / container +CloneSite=Site Clone +SiteAdded=Site adicionado +ConfirmClonePage=Digite o código / alias da nova página e se é uma tradução da página clonada. +CreateByFetchingExternalPage=Criar página / recipiente obtendo página do URL externo ... +OrEnterPageInfoManually=Ou você pode criar uma página do zero ou de um modelo de página ... +FetchAndCreate=Procure e comece a criar +BlogPost=Postagem do blog +WebsiteAccounts=Conta do website +AddWebsiteAccount=Criar conta do site +BackToListForThirdParty=Voltar à lista de terceiros +DisableSiteFirst=Desativar o site primeiro +MyContainerTitle=Título do meu site +AnotherContainer=É assim que se inclui o conteúdo de outra página / contêiner (você pode ter um erro aqui se ativar o código dinâmico porque o subcontêiner incorporado pode não existir) +SorryWebsiteIsCurrentlyOffLine=Desculpe, este site está off-line. Volte mais tarde ... +WEBSITE_USE_WEBSITE_ACCOUNTS=Habilitar a tabela da conta do site +WEBSITE_USE_WEBSITE_ACCOUNTSTooltip=Ative a tabela para armazenar contas do site (login / senha) para cada site / terceiros +YouMustDefineTheHomePage=Você deve primeiro definir a Home page padrão +OnlyEditionOfSourceForGrabbedContentFuture=Aviso: a criação de uma página da Web importando uma página da Web externa é reservada para usuários experientes. Dependendo da complexidade da página de origem, o resultado da importação pode ser diferente do original. Além disso, se a página de origem usar estilos CSS comuns ou javascript conflitante, poderá alterar a aparência ou os recursos do editor do site ao trabalhar nesta página. Esse método é uma maneira mais rápida de criar uma página, mas é recomendável criar sua nova página do zero ou de um modelo de página sugerido.
Observe também que o editor embutido pode não funcionar corretamente quando usado em uma página externa acessada. +OnlyEditionOfSourceForGrabbedContent=Apenas uma edição de fonte HTML é possível quando o conteúdo foi extraído de um site externo +GrabImagesInto=Pegue também imagens encontradas no css e na página. +WebsiteRootOfImages=Diretório raiz para imagens do site +AliasPageAlreadyExists=Página de alias %s já existe +CorporateHomePage=Página inicial corporativa +ZipOfWebsitePackageToImport=Carregar o arquivo Zip do pacote de modelos de sites +ZipOfWebsitePackageToLoad=ou Escolha um pacote de modelo de site incorporado disponível +ThisPageIsTranslationOf=Esta página/conteúdo é traduzido de +NoWebSiteCreateOneFirst=Nenhum site foi criado ainda. Comece a criar o primeiro. +GoTo=Ir para +DynamicPHPCodeContainsAForbiddenInstruction=Você adiciona código PHP dinâmico que contém a instrução PHP %s que é proibida por padrão como conteúdo dinâmico (consulte as opções ocultas WEBSITE_PHP_ALLOW_xxx para aumentar a lista de comandos permitidos). +NotAllowedToAddDynamicContent=Você não tem permissão para adicionar ou editar conteúdo em PHP dinâmico dos sites. Solicite a permissão ou apenas mantenha o código em tags do php não modificadas. +ReplaceWebsiteContent=Pesquisar ou substituir conteúdo do site +DeleteAlsoJs=Excluir todos os arquivos javascript específicos deste site?\n +DeleteAlsoMedias=Excluir todos os arquivos de mídia específicos deste site? +MyWebsitePages=Paginas do meu site +SearchReplaceInto=Pesquisa | Substitua em +ReplaceString=Nova string +LinkAndScriptsHereAreNotLoadedInEditor=Aviso: Este conteúdo é emitido apenas quando o site é acessado de um servidor. Ele não é usado no modo de edição, portanto, se você precisar carregar arquivos javascript também no modo de edição, basta adicionar sua tag 'script src = ...' na página. +Dynamiccontent=Amostra de uma página com conteúdo dinâmico +EditInLineOnOff=O modo 'Editar em linha' é %s +ShowSubContainersOnOff=O modo de executar 'conteúdo dinâmico' é %s +GlobalCSSorJS=Arquivo global CSS / JS / Cabeçalho do site +BackToHomePage=Voltar à página inicial... +TranslationLinks=Links de tradução +UseTextBetween5And70Chars=Para boas práticas de SEO, use um texto entre 5 e 70 caracteres +MainLanguage=Idioma principal +OtherLanguages=Outras línguas +UseManifest=Forneça um arquivo manifest.json +PublicAuthorAlias=Alias ​​do autor público +AvailableLanguagesAreDefinedIntoWebsiteProperties=Os idiomas disponíveis são definidos nas propriedades do site +ReplacementDoneInXPages=Substituição feita em %s páginas ou contêineres +RSSFeedDesc=Você pode obter um feed RSS dos artigos mais recentes com o tipo 'blogpost' usando este URL diff --git a/htdocs/langs/pt_MZ/withdrawals.lang b/htdocs/langs/pt_MZ/withdrawals.lang new file mode 100644 index 00000000000..ca3dc486aa7 --- /dev/null +++ b/htdocs/langs/pt_MZ/withdrawals.lang @@ -0,0 +1,4 @@ +# Dolibarr language file - Source file is en_US - withdrawals +StandingOrderPayment=Pedido com pagamento em Débito direto +StandingOrderToProcess=A processar +StatusPaid=Pago diff --git a/htdocs/langs/pt_MZ/workflow.lang b/htdocs/langs/pt_MZ/workflow.lang new file mode 100644 index 00000000000..abd2e8e9b4c --- /dev/null +++ b/htdocs/langs/pt_MZ/workflow.lang @@ -0,0 +1,12 @@ +# Dolibarr language file - Source file is en_US - workflow +WorkflowSetup=Configuração do módulo de Fluxo de Trabalho +ThereIsNoWorkflowToModify=Não há alterações do fluxo de trabalho disponíveis com os módulos ativados. +descWORKFLOW_PROPAL_AUTOCREATE_ORDER=Criar automaticamente uma pedido de venda após a assinatura de uma proposta comercial (a nova ordem terá o mesmo valor que constar na proposta) +descWORKFLOW_CONTRACT_AUTOCREATE_INVOICE=Criar automaticamente uma fatura de cliente depois que um contrato é validado +descWORKFLOW_ORDER_AUTOCREATE_INVOICE=Criar automaticamente uma fatura após a conclusão do pedido (a nova fatura terá o mesmo valor que constar no pedido) +descWORKFLOW_ORDER_CLASSIFY_BILLED_PROPAL=Classifique a proposta de origem vinculada como faturado quando a ordem do cliente é definida como faturado (e se a quantidade da ordem for igual à quantidade total de propostas vinculadas assinadas) +descWORKFLOW_INVOICE_CLASSIFY_BILLED_PROPAL=Classificar a proposta de origem vinculada como faturado quando a fatura do cliente é validada (e se o valor da fatura é o mesmo que o valor total da proposta vinculada assinada) +descWORKFLOW_INVOICE_AMOUNT_CLASSIFY_BILLED_ORDER=Classifique pedidos do cliente de origem vinculada como faturado quando a fatura do cliente for validada (e se o valor da fatura for igual ao montante total de pedidos vinculados) +descWORKFLOW_INVOICE_CLASSIFY_BILLED_ORDER=Classifique pedidos do cliente de origem vinculada como faturado quando a fatura do cliente constar o pagamento (e se o valor da fatura for igual ao montante total de pedidos vinculados) +descWORKFLOW_ORDER_CLASSIFY_SHIPPED_SHIPPING=Classifique pedidos do cliente de origem vinculada como enviados quando uma remessa for validada (e se a quantidade enviada por todas as remessas for o mesmo que na ordem de atualização) +descWORKFLOW_ORDER_CLASSIFY_BILLED_SUPPLIER_PROPOSAL=Classificar a proposta do fornecedor de origem vinculada como faturado quando a fatura do fornecedor for validada (e se o valor da fatura for o mesmo que o valor total da proposta vinculada) diff --git a/htdocs/langs/pt_MZ/zapier.lang b/htdocs/langs/pt_MZ/zapier.lang new file mode 100644 index 00000000000..a1150fab1bc --- /dev/null +++ b/htdocs/langs/pt_MZ/zapier.lang @@ -0,0 +1,5 @@ +# Dolibarr language file - Source file is en_US - zapier +ModuleZapierForDolibarrName =Zapier para Dolibarr +ModuleZapierForDolibarrDesc =Módulo Zapier para Dolibarr +ZapierForDolibarrSetup=Configurações do Zapier para Dolibarr +ZapierDescription=Interface com Zapier diff --git a/htdocs/langs/pt_PT/holiday.lang b/htdocs/langs/pt_PT/holiday.lang index f310930968a..7e8c7e06b33 100644 --- a/htdocs/langs/pt_PT/holiday.lang +++ b/htdocs/langs/pt_PT/holiday.lang @@ -4,6 +4,7 @@ Holidays=Sair CPTitreMenu=Sair MenuReportMonth=Comunicado mensal MenuAddCP=Novo pedido de licença +MenuCollectiveAddCP=New collective leave request NotActiveModCP=Você deve ativar o módulo Deixar para ver esta página. AddCP=Efetue um pedido de licença DateDebCP=Data de início @@ -79,6 +80,8 @@ MotifCP=Motivo UserCP=Utilizador ErrorAddEventToUserCP=An error occurred while adding the exceptional leave. AddEventToUserOkCP=The addition of the exceptional leave has been completed. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=Ver os registos de alteração LogCP=Log of all updates made to "Balance of Leave" ActionByCP=Updated by @@ -86,6 +89,13 @@ UserUpdateCP=Updated for PrevSoldeCP=Balanço prévio NewSoldeCP=Novo Balanço alreadyCPexist=Um pedido de licença já foi feito para esse período. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Grupos +users=Utilizadores +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Beginning day of leave request LastDayOfHoliday=Ending day of leave request BoxTitleLastLeaveRequests=Últimos %s pedidos de licença modificados diff --git a/htdocs/langs/pt_PT/hrm.lang b/htdocs/langs/pt_PT/hrm.lang index 35c50076d62..94c1b00fbb2 100644 --- a/htdocs/langs/pt_PT/hrm.lang +++ b/htdocs/langs/pt_PT/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Abrir estabelecimento CloseEtablishment=Fechar estabelecimento # Dictionary DictionaryPublicHolidays=Leave - Public holidays -DictionaryDepartment=GRH - Lista departamentos +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM - Job positions # Module Employees=Funcionários @@ -20,13 +20,14 @@ Employee=Funcionário NewEmployee=Novo funcionário ListOfEmployees=Lista de funcionários HrmSetup=Configuração do módulo "GRH" -HRM_MAXRANK=Maximum rank for a skill +SkillsManagement=Skills management +HRM_MAXRANK=Maximum number of levels to rank a skill HRM_DEFAULT_SKILL_DESCRIPTION=Default description of ranks when skill is created deplacement=Shift DateEval=Evaluation date JobCard=Job card -Job=Tarefa -Jobs=Jobs +JobPosition=Tarefa +JobsPosition=Jobs NewSkill=New Skill SkillType=Skill type Skilldets=List of ranks for this skill @@ -47,9 +48,8 @@ ConfirmValidateEvaluation=Are you sure you want to validate this evaluation with EvaluationCard=Evaluation card RequiredRank=Required rank for this job EmployeeRank=Employee rank for this skill -Position=Posição -Positions=Positions -PositionCard=Position card +EmployeePosition=Employee position +EmployeePositions=Employee positions EmployeesInThisPosition=Employees in this position group1ToCompare=Usergroup to analyze group2ToCompare=Second usergroup for comparison @@ -70,12 +70,22 @@ RequiredSkills=Required skills for this job UserRank=User Rank SkillList=Skill list SaveRank=Save rank -knowHow=Know how -HowToBe=How to be -knowledge=Knowledge +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=Abandonment comment DateLastEval=Date last evaluation NoEval=No evaluation done for this employee HowManyUserWithThisMaxNote=Number of users with this rank HighestRank=Highest rank SkillComparison=Skill comparison +ActionsOnJob=Events on this job +VacantPosition=job vacancy +VacantCheckboxHelper=Checking this option will show unfilled positions (job vacancy) +SaveAddSkill = Skill(s) added +SaveLevelSkill = Skill(s) level saved +DeleteSkill = Skill removed +SkillsExtraFields=Attributs supplémentaires (Compétences) +JobsExtraFields=Attributs supplémentaires (Emplois) +EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/pt_PT/install.lang b/htdocs/langs/pt_PT/install.lang index 3de7b8cc162..31f5a8642b3 100644 --- a/htdocs/langs/pt_PT/install.lang +++ b/htdocs/langs/pt_PT/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=O arquivo de configuração %s não é gravável ConfFileIsWritable=O ficheiro de configuração %s é gravável. ConfFileMustBeAFileNotADir=O ficheiro de configuração %s deve ser um ficheiro, não um diretório. ConfFileReload=Recarregando parâmetros do arquivo de configuração. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=Este PHP suporta variáveis GET e POST. PHPSupportPOSTGETKo=É possível que sua configuração do PHP não suporte variáveis ​​POST e / ou GET. Verifique o parâmetro variables_order no php.ini. PHPSupportSessions=Este PHP suporta sessões. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Pode ter inserido um valor incorreto para o parâmet ErrorFailedToCreateDatabase=Não foi possível criar a base de dados' %s'. ErrorFailedToConnectToDatabase=Não foi possível ligar à base de dados' %s'. ErrorDatabaseVersionTooLow=A versão da base de dados (%s) é muito antiga. É necessária a versão %s ou superior. -ErrorPHPVersionTooLow=A versão PHP é muito antiga. É necessária a versão %s. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Conexão ao servidor bem-sucedida, mas o banco de dados '%s' não foi encontrado. ErrorDatabaseAlreadyExists=A base de dados' %s' já existe. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=Se o banco de dados não existir, volte e marque a opção "Criar banco de dados". IfDatabaseExistsGoBackAndCheckCreate=Se a base de dados já existir, volte e desmarque a opção "Criar base de dados". WarningBrowserTooOld=A versão do navegador é muito antiga. Atualizar o seu navegador para uma versão recente do Firefox, Chrome ou Opera é altamente recomendado. diff --git a/htdocs/langs/pt_PT/main.lang b/htdocs/langs/pt_PT/main.lang index 4dcf47e511a..21ae8fa4148 100644 --- a/htdocs/langs/pt_PT/main.lang +++ b/htdocs/langs/pt_PT/main.lang @@ -244,6 +244,7 @@ Designation=Designação DescriptionOfLine=Descrição da linha DateOfLine=Data da linha DurationOfLine=Duração da linha +ParentLine=Parent line ID Model=Modelo de documento DefaultModel=Modelo de documento predefinido Action=Evento @@ -344,7 +345,7 @@ KiloBytes=Kilobytes MegaBytes=Megabytes GigaBytes=Gigabytes TeraBytes=Terabytes -UserAuthor=Ceated by +UserAuthor=Criado por UserModif=Updated by b=b. Kb=Kb @@ -517,6 +518,7 @@ or=ou Other=Outro Others=Outros OtherInformations=Outras informações +Workflow=Fluxo de trabalho Quantity=quantidade Qty=Quant. ChangedBy=Modificado por @@ -619,6 +621,7 @@ MonthVeryShort11=N MonthVeryShort12=D AttachedFiles=Ficheiros e Documentos Anexos JoinMainDoc=Unir ao documento principal +JoinMainDocOrLastGenerated=Send the main document or the last generated one if not found DateFormatYYYYMM=YYYY-MM DateFormatYYYYMMDD=YYYY-MM-DD DateFormatYYYYMMDDHHMM=YYYY-MM-DD HH:SS @@ -709,6 +712,7 @@ FeatureDisabled=Função Desactivada MoveBox=Mover widget Offered=Oferta NotEnoughPermissions=Não tem permissões para efectuar esta acção +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=Nome Sessão Method=Método Receive=Receção @@ -798,6 +802,7 @@ URLPhoto=Url da foto / logotipo SetLinkToAnotherThirdParty=Link para um terceiro LinkTo=Associar a LinkToProposal=Associar ao orçamento +LinkToExpedition= Link to expedition LinkToOrder=Hiperligação para encomendar LinkToInvoice=Associar a fatura LinkToTemplateInvoice=Link para a factura modelo @@ -1164,3 +1169,14 @@ NotClosedYet=Not yet closed ClearSignature=Reset signature CanceledHidden=Canceled hidden CanceledShown=Canceled shown +Terminate=Cancelar +Terminated=Inativo +AddLineOnPosition=Add line on position (at the end if empty) +ConfirmAllocateCommercial=Assign sales representative confirmation +ConfirmAllocateCommercialQuestion=Are you sure you want to assign the %s selected record(s)? +CommercialsAffected=Sales representatives affected +CommercialAffected=Sales representative affected +YourMessage=Your message +YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. +UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/pt_PT/members.lang b/htdocs/langs/pt_PT/members.lang index 0170d801dee..c14c64d8dbc 100644 --- a/htdocs/langs/pt_PT/members.lang +++ b/htdocs/langs/pt_PT/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=End date of membership EndSubscription=End of membership SubscriptionId=Contribution ID WithoutSubscription=Without contribution -MemberId=Estados-id +MemberId=Member Id +MemberRef=Member Ref NewMember=Novo membro MemberType=Tipo de Membro MemberTypeId=ID tipo de membro @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=O tipo de membro não pode ser excluído NewSubscription=Nova filiação NewSubscriptionDesc=Este formulário permite-lhe gravar sua inscrição como um novo membro da fundação. Se você deseja renovar a sua assinatura (se já for membro), entre em contato com Conselho da Fundação vez por %s e-mail. Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Duração +GetMembershipButtonLabel=Get membership Subscriptions=Contributions SubscriptionLate=Em atraso SubscriptionNotReceived=Contribution never received @@ -135,7 +142,7 @@ CardContent=Conteúdo do seu cartão de membro # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=Queremos que você saiba que sua solicitação de adesão foi recebida.

ThisIsContentOfYourMembershipWasValidated=Queremos informar que sua associação foi validada com as seguintes informações:

-ThisIsContentOfYourSubscriptionWasRecorded=Queremos informar que sua nova assinatura foi registrada.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=We want to let you know that your subscription is about to expire or has already expired (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). We hope you will renew it.

ThisIsContentOfYourCard=This is a summary of the information we have about you. Please contact us if anything is incorrect.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Subject of the notification email received in case of auto-inscription of a guest @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=Volume de negócios (para uma empresa) ou do Orçamento (para uma fundação) DefaultAmount=Default amount of contribution -CanEditAmount=Visitor can choose/edit amount of its contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Ir a página de pagamento online integrado ByProperties=Por natureza MembersStatisticsByProperties=Estatísticas dos membros por natureza @@ -218,3 +226,5 @@ XExternalUserCreated=%s external user(s) created ForceMemberNature=Force member nature (Individual or Corporation) CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/pt_PT/stocks.lang b/htdocs/langs/pt_PT/stocks.lang index 3751b84730c..93a11d7c52c 100644 --- a/htdocs/langs/pt_PT/stocks.lang +++ b/htdocs/langs/pt_PT/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Limite de estoque para estoque ideal de alerta e de ProductStockWarehouseUpdated=Limite de estoque para estoque ótimo de alerta e desejado atualizado corretamente ProductStockWarehouseDeleted=Limite de estoque para alerta e estoque ideal desejado corretamente excluídos AddNewProductStockWarehouse=Definir novo limite para alerta e estoque ideal desejado -AddStockLocationLine=Diminuir quantidade, em seguida, clique para adicionar outro armazém para este produto +AddStockLocationLine=Decrease quantity then click to split the line InventoryDate=Data de Inventário Inventories=Inventories NewInventory=Novo inventário @@ -254,7 +254,7 @@ ReOpen=Reabrir ConfirmFinish=Do you confirm the closing of the inventory ? This will generate all stock movements to update your stock to the real qty you entered into the inventory. ObjectNotFound=%s not found MakeMovementsAndClose=Generate movements and close -AutofillWithExpected=Replace real quantity with expected quantity +AutofillWithExpected=Fill real quantity with expected quantity ShowAllBatchByDefault=By default, show batch details on product "stock" tab CollapseBatchDetailHelp=You can set batch detail default display in stocks module configuration ErrorWrongBarcodemode=Unknown Barcode mode @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Product with barcode does not exist WarehouseId=Warehouse ID WarehouseRef=Warehouse Ref SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ToStart=Iniciar InventoryStartedShort=Iniciada ErrorOnElementsInventory=Operation canceled for the following reason: ErrorCantFindCodeInInventory=Can't find the following code in inventory QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requested barcode. You can close the Scanner tool. StockChangeDisabled=Change on stock disabled NoWarehouseDefinedForTerminal=No warehouse defined for terminal +ClearQtys=Clear all quantities +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=Definições +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/ro_RO/accountancy.lang b/htdocs/langs/ro_RO/accountancy.lang index 090407e21f5..9aac576c99c 100644 --- a/htdocs/langs/ro_RO/accountancy.lang +++ b/htdocs/langs/ro_RO/accountancy.lang @@ -48,8 +48,9 @@ CountriesNotInEEC=Țări care nu se află în CEE CountriesInEECExceptMe=Țările din CEE, cu excepția celor din %s CountriesExceptMe=Toate țările, cu excepția %s AccountantFiles=Export documente sursă -ExportAccountingSourceDocHelp=Cu acest instrument, poți exporta evenimentele sursă (listă în CSV și PDF) care sunt utilizate pentru a genera operaţiunile de contabilitate. +ExportAccountingSourceDocHelp=Cu acest instrument, poți căuta și exporta evenimentele sursă care sunt utilizate pentru generare tranzacții contabilitate.
Fișierul ZIP exportat va conține listele de articole solicitate în CSV, precum și fișierele atașate acestora în formatul lor original (PDF, ODT, DOCX...). ExportAccountingSourceDocHelp2=Pentru export jurnale, foloseşte meniul %s - %s. +ExportAccountingProjectHelp=Specifică un proiect dacă ai nevoie de un raport contabil numai pentru un anumit proiect. Rapoartele de cheltuieli și plățile împrumuturilor nu sunt incluse în rapoartele de proiect. VueByAccountAccounting=Vizualizare după contul contabil VueBySubAccountAccounting=Vizualizați după subcont contabil @@ -161,7 +162,7 @@ BANK_DISABLE_DIRECT_INPUT=Dezactivează înregistrarea directă a tranzacției ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL=Activați schița de export în jurnal ACCOUNTANCY_COMBO_FOR_AUX=Activare listă combinată pentru contul subsidiar (poate fi lent dacă aveți o mulțime de terți, întrerupe capacitatea de a căuta după o valoare parţială) ACCOUNTING_DATE_START_BINDING=Definiți o dată pentru a începe legarea și transferul în contabilitate. Înainte de această dată, tranzacțiile nu vor fi transferate în contabilitate. -ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=La transferul contabil, selectați perioada în mod implicit +ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=Pentru transferul contabil, care este perioada selectată implicit  ACCOUNTING_SELL_JOURNAL=Jurnal vânzări ACCOUNTING_PURCHASE_JOURNAL=Jurnal cumpărări @@ -182,7 +183,7 @@ DONATION_ACCOUNTINGACCOUNT=Contul contabil pentru înregistrarea donațiilor ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=Cont contabil pentru a înregistra abonamente ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT= Cont contabil implicit pentru înregistra depunerilor clientului -UseAuxiliaryAccountOnCustomerDeposit=Utilizează conturi analitice pe liniile de depozit ale clienților +UseAuxiliaryAccountOnCustomerDeposit=Stochează contul de client ca și cont contabil individual în registrul subsidiar pentru liniile de avans (dacă este dezactivat, contul individual pentru liniile de avans va rămâne gol) ACCOUNTING_PRODUCT_BUY_ACCOUNT=Contul contabil implicit pentru produsele cumpărate (se foloseşte dacă nu este definit în fișa de produs) ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT= Contul contabil implicit pentru produsele cumpărate din CEE (utilizat dacă nu este definit în fișa de produs) @@ -332,7 +333,7 @@ ACCOUNTING_DISABLE_BINDING_ON_EXPENSEREPORTS=Dezactivați legarea și transferul ## Export NotifiedExportDate=Marcare linii exportate ca Exportate (pentru a modifica o linie, va trebui să ștergi întreaga tranzacție și să o retransferi în contabilitate) -NotifiedValidationDate=Validare şi blocare înregistrări exportate (același efect ca și caracteristica "Închidere", modificarea și ștergerea liniilor NU vor MAI fi posibile) +NotifiedValidationDate=Validare și blocare intrări exportate (același efect ca și caracteristica "%s", modificarea și ștergerea liniilor NU vor mai fi posibile) DateValidationAndLock=Dată de validare şi blocare ConfirmExportFile=Confirmare generare fișier de export contabil? ExportDraftJournal=Export jurnal schiţă @@ -427,6 +428,7 @@ SorryThisModuleIsNotCompatibleWithTheExperimentalFeatureOfSituationInvoices=Ne p AccountancyErrorMismatchLetterCode=Nepotrivire cod de reconciliere AccountancyErrorMismatchBalanceAmount=Soldul (%s) nu este egal cu 0 AccountancyErrorLetteringBookkeeping=Au apărut erori cu privire la tranzacții: %s +ErrorAccountNumberAlreadyExists=Numărul de cont contabil %s există deja ## Import ImportAccountingEntries=Intrări contabile diff --git a/htdocs/langs/ro_RO/admin.lang b/htdocs/langs/ro_RO/admin.lang index 07ed0020102..57ec5b1299a 100644 --- a/htdocs/langs/ro_RO/admin.lang +++ b/htdocs/langs/ro_RO/admin.lang @@ -1936,7 +1936,7 @@ PressF5AfterChangingThis=Apăsați CTRL + F5 sau ștergeți memoria cache a brow NotSupportedByAllThemes=Va funcționa cu teme de bază, poate nu este suportată de teme externe BackgroundColor=Culoare fundal TopMenuBackgroundColor=Culoare fundal pentru meniul de Sus -TopMenuDisableImages=Ascundeți imaginile în meniul de sus +TopMenuDisableImages=Pictogramă sau Text în meniul de sus LeftMenuBackgroundColor=Culoare fundal pentru meniul Stânga BackgroundTableTitleColor=Culoarea de fundal pentru linia de titlu a tabelului BackgroundTableTitleTextColor=Culoarea textului pentru linia de titlu a tabelelor @@ -2059,6 +2059,7 @@ VATIsUsedIsOff=Nota: Opțiunea de a utiliza impozitul pe vânzări sau taxa TVA SwapSenderAndRecipientOnPDF=Interschimbă poziţia adreselor expeditorului şi destinatarului în documentele PDF generate FeatureSupportedOnTextFieldsOnly=Atenție, caracteristică acceptată numai pe câmpurile de text și pe listele combinate. De asemenea, trebuie setat un parametru URL action=create sau action=edit SAU numele paginii trebuie să se termine cu 'new.php' pentru a declanșa această caracteristică. EmailCollector=Colector de emailuri +EmailCollectors=Colectoare email EmailCollectorDescription=Adăugați un job programat și o pagină de configurare pentru a scana în mod regulat căsuţele de email (utilizând protocolul IMAP) și pentru a înregistra emailurile primite în aplicația ta, la locul potrivit și/sau pentru a crea automat înregistrări (cum ar fi clienții). NewEmailCollector=Colector de emailuri nou EMailHost=Server gazdă de email IMAP @@ -2073,14 +2074,14 @@ DateLastCollectResult=Data ultimei încercări de colectare DateLastcollectResultOk=Data ultimei colectări cu succes LastResult=Ultimul rezultat EmailCollectorHideMailHeaders=Nu include conținutul antetului de email în conținutul salvat al email-urilor colectate -EmailCollectorHideMailHeadersHelp=Când este activat, anteturile de email nu sunt adăugate la sfârșitul conținutului care este salvat ca eveniment. +EmailCollectorHideMailHeadersHelp=Când este activat, anteturile de email nu sunt adăugate la sfârșitul conținutului care este salvat ca eveniment în agendă. EmailCollectorConfirmCollectTitle=Confirmarea colectării de emailuri EmailCollectorConfirmCollect=Vrei să rulezi acest colector acum? EmailCollectorExampleToCollectTicketRequestsDesc=Colectare email-uri care se potrivesc cu anumite reguli și creare automată tichet (Modulul Tichete trebuie să fie activat) cu informațiile de pe email. Poți folosi acest colector dacă oferi asistență prin email, astfel încât solicitarea de tichete va fi generată automat. Activează și Collect_Responses pentru a colecta răspunsurile clientului direct la vizualizarea tichetelor (trebuie să răspundeți din sistem). EmailCollectorExampleToCollectTicketRequests=Exemplu de colectare solicitare de tichet (numai primul mesaj) EmailCollectorExampleToCollectAnswersFromExternalEmailSoftwareDesc=Scanează-ți directorul „Trimise” din cutia poștală pentru a găsi email-uri care au fost trimise ca răspuns la un alt email direct din clientul tău de email și nu din sistem. Dacă se găsește un astfel de email, evenimentul de răspuns este înregistrat în sistem EmailCollectorExampleToCollectAnswersFromExternalEmailSoftware=Exemplu de colectare a răspunsurilor la email trimise de la un client extern de email -EmailCollectorExampleToCollectDolibarrAnswersDesc=Colectează toate email-urile care sunt un răspuns la un email trimis din aplicație. Un eveniment (Modulul Agendă trebuie să fie activat) cu răspunsul prin email va fi înregistrat la locul potrivit. De exemplu, dacă trimiți o ofertă comercială, o comandă, o factură sau un mesaj pentru un tichet pe email din aplicație, iar clientul îți răspunde la email, sistemul va capta automat răspunsul și îl va adăuga în ERP. +EmailCollectorExampleToCollectDolibarrAnswersDesc=Colectare toate email-urile care sunt un răspuns la un email trimis din aplicație. Un eveniment (Modulul Agenda trebuie să fie activat) cu răspunsul prin email va fi înregistrat la locul potrivit. De exemplu, dacă trimiți o ofertă comercială, o comandă, o factură sau un mesaj pentru un tichet pe email din aplicație, iar destinatarul îți răspunde la email, sistemul va captura automat răspunsul și îl va adăuga în ERP. EmailCollectorExampleToCollectDolibarrAnswers=Exemplu de colectare a tuturor mesajelor primite ca răspunsuri la mesajele trimise din sistem EmailCollectorExampleToCollectLeadsDesc=Colectare email-uri care corespund unor reguli și creare automată lead prospect (Modulul Proiecte trebuie să fie activat) cu informațiile email. Poți folosi acest colector dacă vrei să urmăreşti lead-ul folosind modulul Proiect (1 lead = 1 proiect), astfel încât lead-urile vor fi generate automat. Dacă colectorul Collect_Responses este de asemenea activat, atunci când trimiteți un email către clienții potențiali, oferte sau orice alt obiect, este posibil să vedeți și răspunsurile clienților sau partenerilor direct în aplicație.
Notă: cu acest exemplu inițial, titlul lead-ului este generat incluzând emailul. Dacă terțul nu poate fi găsit în baza de date (client nou), clientul potențial va fi atașat terțului cu ID 1. EmailCollectorExampleToCollectLeads=Exemplu colectare lead-uri @@ -2088,7 +2089,7 @@ EmailCollectorExampleToCollectJobCandidaturesDesc=Colectează emailuri prin care EmailCollectorExampleToCollectJobCandidatures=Exemplu colectare candidaturi job primite pe email NoNewEmailToProcess=Niciun email de procesat (care sa se potriveasca cu filtrele) NothingProcessed=Nu s-a făcut nimic -XEmailsDoneYActionsDone=%semail-uri calificate, %s email-uri procesate cu succes (pentru %s înregistrări/acţiuni efectuate) +XEmailsDoneYActionsDone=%s email-uri precalificate, %s email-uri procesate cu succes (pentru %s înregistrări/acțiuni efectuate)  RecordEvent=Înregistrare eveniment în agendă (de tipul Trimitere email sau Recepţionare email) CreateLeadAndThirdParty=Creare lead (şi terţ dacă este cazul) CreateTicketAndThirdParty=Creare tichet (legat la un terţ dacă terțul a fost încărcat printr-o operațiune anterioară sau a fost ghicit dintr-un tracker din antetul email-ului, fără terț altfel) @@ -2167,6 +2168,9 @@ EmailTemplate=Şablon pentru email EMailsWillHaveMessageID=E-mailuri care conţin eticheta „Referințe” care se potrivesc cu această expresie PDF_SHOW_PROJECT=Afişează proiectul în document ShowProjectLabel=Etichetă proiect +PDF_INCLUDE_ALIAS_IN_THIRDPARTY_NAME=Include alias-ul în numele terților +THIRDPARTY_ALIAS=Nume terț - Alias ​​terț +ALIAS_THIRDPARTY=Alias ​​terț - Nume terț PDF_USE_ALSO_LANGUAGE_CODE=Dacă doriți să aveți unele texte duplicate în PDF-ul în 2 limbi diferite în același PDF generat, trebuie să setați aici această a doua limbă, astfel încât PDF-ul generat va conține 2 limbi diferite în aceeași pagină, cea aleasă la generarea PDF-ului și aceasta ( doar câteva șabloane PDF acceptă acest lucru). Păstrați gol pentru 1 limbă pentru fiecare PDF. PDF_USE_A=Gererare documente PDF cu format PDF/A în loc de formatul PDF implicit FafaIconSocialNetworksDesc=Introduceți aici codul unei pictograme FontAwesome. Dacă nu știți ce este FontAwesome, puteți utiliza valoarea generică fa-address-book. @@ -2248,13 +2252,21 @@ TemplateforBusinessCards=Șablon pentru o carte de vizită cu diferite dimensiun InventorySetup= Configurare Inventar ExportUseLowMemoryMode=Utilizare mod de memorie limitată ExportUseLowMemoryModeHelp=Utilizare mod de memorie scăzută pentru execuţie dump (comprimarea se face prin pipe nu prin memoria PHP). Această metodă nu permite să verifici dacă fișierul este finalizat și mesajul de eroare nu poate fi raportat dacă execuţia nu reușește. + +ModuleWebhookName = Webhook +ModuleWebhookDesc = Interfață de capturare triggere sistem și trimitere la o adresă URL +WebhookSetup = Configurare Webhook +Settings = Configurări +WebhookSetupPage = Pagină de configurare Webhook ShowQuickAddLink=Afișează un buton pentru a adăuga rapid un element în meniul din dreapta sus + HashForPing=Hash utilizat pentru ping ReadOnlyMode=Este instanță în mod "Read Only" DEBUGBAR_USE_LOG_FILE=Foloseşte fişierul dolibarr.log pentru capturare Log-uri UsingLogFileShowAllRecordOfSubrequestButIsSlower= Utilizează fișierul dolibarr.log pentru a capta jurnalele în loc de capturarea memoriei live. Permite să prinzi toate jurnalele în loc de jurnalul procesului curent (deci inclusiv pe cea a paginilor de subcereri ajax), dar va face instanța dvs. foarte foarte lentă. Nu se recomandă. FixedOrPercent=Fix (utilizează cuvântul cheie 'fixed') sau procent (utilizează cuvântul cheie 'percent') DefaultOpportunityStatus=Status implicit pentru oportunitate (prima stare când este creat clientul potențial - prospectul) + IconAndText=Pictogramă și text TextOnly=Doar text IconOnlyAllTextsOnHover=Doar pictogramă - Toate textele apar sub pictograma la plutirea cu mouse-ul pe bara de meniu @@ -2262,4 +2274,15 @@ IconOnlyTextOnHover=Doar pictogramă - Textul pictogramei apare dedesubt la plut IconOnly=Doar pictogramă - Text doar în tooltip  INVOICE_ADD_ZATCA_QR_CODE=Afișează cod QR ZATCA pe facturi INVOICE_ADD_ZATCA_QR_CODEMore=Unele țări arabe au nevoie de acest cod QR pe ​​facturi +INVOICE_ADD_SWISS_QR_CODE=Afișare cod QR-Bill swiss pe facturi UrlSocialNetworksDesc=Link URL rețea socială. Utilizează {socialid} pentru partea variabilă care conține ID-ul rețelei sociale. +IfThisCategoryIsChildOfAnother=Dacă această categorie este un copil al alteia +DarkThemeMode=Mod întunecat temă +AlwaysDisabled=Întotdeauna dezactivat +AccordingToBrowser=Conform browser-ului +AlwaysEnabled=Întotdeauna activat +DoesNotWorkWithAllThemes=Nu va funcționa cu toate temele +NoName=Niciun nume +ShowAdvancedOptions= Afișare opțiuni avansate +HideAdvancedoptions= Ascundere opțiuni avansate +CIDLookupURL=Modulul aduce o adresă URL care poate fi utilizată de un instrument extern pentru a obține numele unui terț sau contact din numărul său de telefon. Adresa URL de utilizat este: diff --git a/htdocs/langs/ro_RO/agenda.lang b/htdocs/langs/ro_RO/agenda.lang index 8035ed6e5e8..36a434218a4 100644 --- a/htdocs/langs/ro_RO/agenda.lang +++ b/htdocs/langs/ro_RO/agenda.lang @@ -57,6 +57,7 @@ MemberValidatedInDolibarr=Membrul %s a fost validat MemberModifiedInDolibarr=Membrul %s a fost modificat MemberResiliatedInDolibarr=Membrul %s a fost reziliat MemberDeletedInDolibarr=Membrul %s a fost şters +MemberExcludedInDolibarr=Membrul %s a fost exclus MemberSubscriptionAddedInDolibarr=Cotizaţia %s pentru membrul %s a fost adăugată MemberSubscriptionModifiedInDolibarr=Cotizaţia %s pentru membrul %s a fost modificată MemberSubscriptionDeletedInDolibarr=Cotizaţia %s pentru membrul %s a fost ştearsă diff --git a/htdocs/langs/ro_RO/boxes.lang b/htdocs/langs/ro_RO/boxes.lang index c88b68e89db..e405112bcfd 100644 --- a/htdocs/langs/ro_RO/boxes.lang +++ b/htdocs/langs/ro_RO/boxes.lang @@ -23,7 +23,7 @@ BoxLastMembersSubscriptions=Ultimele adeziuni de membri BoxFicheInter=Ultimele intervenţii BoxCurrentAccounts=Sold conturi deschise BoxTitleMemberNextBirthdays=Aniversări în această lună (membri) -BoxTitleMembersByType=Membri după tip +BoxTitleMembersByType=Membri după tip şi status BoxTitleMembersSubscriptionsByYear=Adeziuni membri după an BoxTitleLastRssInfos=Ultimele %s noutăţi de la %s BoxTitleLastProducts=Produse/Servicii: ultimele %s modificate @@ -46,6 +46,7 @@ BoxMyLastBookmarks=Bookmark-uri : ultimile %s BoxOldestExpiredServices=Cele mai vechi servicii active expirate BoxLastExpiredServices=Cele mai vechi %s contacte cu servicii active expirate BoxTitleLastActionsToDo=Ultimele %s acţiuni de realizat +BoxTitleOldestActionsToDo=Cele mai vechi %s evenimente care nu a fost finalizate BoxTitleLastContracts=Ultimele %s contracte modificate BoxTitleLastModifiedDonations=Utimele %s donaţii modificate BoxTitleLastModifiedExpenses=Ultimele %s rapoarte de cheltuieli modificate diff --git a/htdocs/langs/ro_RO/cashdesk.lang b/htdocs/langs/ro_RO/cashdesk.lang index a295750a25e..4616039a41a 100644 --- a/htdocs/langs/ro_RO/cashdesk.lang +++ b/htdocs/langs/ro_RO/cashdesk.lang @@ -136,3 +136,10 @@ PrintWithoutDetails=Tipărire fără detalii YearNotDefined=Anul nu este definit TakeposBarcodeRuleToInsertProduct=Regulă cod de bare pentru introducere produs TakeposBarcodeRuleToInsertProductDesc=Regula pentru extragerea referinței produsului + o cantitate dintr-un cod de bare scanat.
Dacă este necompletat (valoare implicită), aplicația va folosi codul de bare complet scanat pentru a găsi produsul.

Dacă este definit, sintaxa trebuie să fie:
ref:NB+qu:NB+qd:NB+other:NB
unde NB este numărul de caractere utilizat pentru extragerea datelor din codul de bare scanat cu:
  • ref : referință produs
  • qu : cantitate de setat la introducerea articolului (unități)
  • qd : cantitatea de setat la introducerea articolului ( zecimale)
  • altele : alte caractere
+AlreadyPrinted=Deja tipărit +HideCategories=Ascunde categorii +HideStockOnLine=Ascunde stoc pe linie +ShowOnlyProductInStock=Afișare doar produse cu stoc +ShowCategoryDescription=Afișare descriere categorie +ShowProductReference=Afișare referință produse +UsePriceHT=Folosește preț fără taxe, nu preț cu taxe diff --git a/htdocs/langs/ro_RO/holiday.lang b/htdocs/langs/ro_RO/holiday.lang index 1720c366c9f..4216ba07e93 100644 --- a/htdocs/langs/ro_RO/holiday.lang +++ b/htdocs/langs/ro_RO/holiday.lang @@ -4,6 +4,7 @@ Holidays=Concedii CPTitreMenu=Concedii MenuReportMonth=Situaţia lunară MenuAddCP=Cerere de concediu nouă +MenuCollectiveAddCP=Cerere de concediu colectiv nouă NotActiveModCP=Trebuie să activați modulul Concedii pentru a vedea această pagină. AddCP=Crează o cerere de concediu DateDebCP=Dată început @@ -79,6 +80,8 @@ MotifCP=Motiv UserCP=Utilizator ErrorAddEventToUserCP=O eroare a survenit in timpul adăugării de concediu excepţional. AddEventToUserOkCP=Adăugarea de concediu excepţional a fost efectuată +ErrorFieldRequiredUserOrGroup=Câmpul "grup" sau câmpul "utilizator" trebuie completat +fusionGroupsUsers=Câmpul grupuri și câmpul utilizator vor fi îmbinate MenuLogCP=Vezi modificări cereri LogCP=Jurnalul tuturor actualizărilor făcute la "Calculul zilelor de concediu" ActionByCP=Actualizat de @@ -86,6 +89,13 @@ UserUpdateCP=Actualizat pentru PrevSoldeCP=Sold precedent NewSoldeCP=Sold nou alreadyCPexist=O cerere de concediu a fost deja făcută pe această perioadă. +UseralreadyCPexist=O cerere de concediu a fost deja făcută în această perioadă pentru %s. +groups=Grupuri +users=Utilizatori +AutoSendMail=Trimitere automată email +NewHolidayForGroup=Cerere de concediu colectiv nouă +SendRequestCollectiveCP=Trimitere cerere de concediu colectiv +AutoValidationOnCreate=Validare automată FirstDayOfHoliday=Prima zi de pe cererea de concediu LastDayOfHoliday=Ultima zi de pe cererea de concediu BoxTitleLastLeaveRequests=Ultimele %s cereri de concediu modificate diff --git a/htdocs/langs/ro_RO/hrm.lang b/htdocs/langs/ro_RO/hrm.lang index 5aabf0e0572..8c76403b49b 100644 --- a/htdocs/langs/ro_RO/hrm.lang +++ b/htdocs/langs/ro_RO/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Deschide sediu CloseEtablishment=Închide sediu # Dictionary DictionaryPublicHolidays=Concediu - Sărbători legale -DictionaryDepartment=HRM - Listă departamente +DictionaryDepartment=HRM - Unitate organizațională DictionaryFunction=HRM - Joburi disponibile # Module Employees=Angajaţi @@ -70,9 +70,9 @@ RequiredSkills=Abilităţi necesare pentru acest job UserRank=Rang utilizator SkillList=Listă aptitudini SaveRank=Salvare rang -knowHow=Know how -HowToBe=Cum să fie -knowledge=Cunoştinţe +TypeKnowHow=Know how +TypeHowToBe=Cum să fie +TypeKnowledge=Cunoştinţe AbandonmentComment=Comentariu abandon DateLastEval=Data ultimei evaluări NoEval=Nicio evaluare efectuată pentru acest angajat @@ -88,3 +88,4 @@ DeleteSkill = Aptitudine ştearsă SkillsExtraFields=Atribute suplimentare (Competenţe) JobsExtraFields=Atribute suplimentare (Angajaţi) EvaluationsExtraFields=Atribute suplimentare (Evaluări) +NeedBusinessTravels=Necesar călătorii de afaceri diff --git a/htdocs/langs/ro_RO/install.lang b/htdocs/langs/ro_RO/install.lang index 3e3ef345fae..b03149997f2 100644 --- a/htdocs/langs/ro_RO/install.lang +++ b/htdocs/langs/ro_RO/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=Fișierul de configurare %s nu poate fi scris. Ve ConfFileIsWritable=Fişierul de configurare %s se poate scrie. ConfFileMustBeAFileNotADir=Fișierul de configurare %s trebuie să fie un fișier, nu un director. ConfFileReload=Reîncărcarea parametrilor din fișierul de configurare. -NoReadableConfFileSoStartInstall=Fișierul de configurare conf/conf.php nu există sau nu este citibil. Vom rula procesul de instalare pentru a încerca să-l inițializam. +NoReadableConfFileSoStartInstall=Fișierul de configurare conf/conf.php nu există sau nu poate fi citit. Vom rula procesul de instalare pentru a încerca să-l inițializam. PHPSupportPOSTGETOk=Acest PHP suportă variabile POST şi GET. PHPSupportPOSTGETKo=Este posibil ca configurarea PHP să nu accepte variabilele POST și/sau GET. Verificați parametrul variables_order în php.ini. PHPSupportSessions=Acest PHP susţine sesiuni. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Este posibil să fi tastat greşit o valoare pentru ErrorFailedToCreateDatabase=Eşec la crearea bazei de date '%s'. ErrorFailedToConnectToDatabase=Eşec la conectarea la baza de date '%s'. ErrorDatabaseVersionTooLow=Versiunea bazei de date (%s) este prea veche. Versiunea %s sau mai mare este necesară. -ErrorPHPVersionTooLow=Versiune PHP prea veche. Versiunea %s este necesară. +ErrorPHPVersionTooLow=Versiune PHP este prea veche. Versiunea %s sau mai nouă este necesară. +ErrorPHPVersionTooHigh=Versiune PHP prea nouă. Versiunea %s sau mai veche este necesară. ErrorConnectedButDatabaseNotFound=Conectarea la server a reușit, dar baza de date '%s' nu a fost găsită. ErrorDatabaseAlreadyExists=Baza de date '%s' există deja. +ErrorNoMigrationFilesFoundForParameters=Nu a fost găsit niciun fișier de migrare pentru versiunile selectate IfDatabaseNotExistsGoBackAndUncheckCreate=Dacă baza de date nu există, reveniți și bifați opțiunea "Creare bază de date". IfDatabaseExistsGoBackAndCheckCreate=Dacă baza de date există deja, du-te înapoi şi debifează opţiunea "Creare bază de date". WarningBrowserTooOld=Versiunea browserului este prea veche. Este recomandat să vă actualizați browserul la o versiune recentă de Firefox, Chrome sau Opera. diff --git a/htdocs/langs/ro_RO/languages.lang b/htdocs/langs/ro_RO/languages.lang index 891dd64bb89..663cba94fe6 100644 --- a/htdocs/langs/ro_RO/languages.lang +++ b/htdocs/langs/ro_RO/languages.lang @@ -3,6 +3,7 @@ Language_am_ET=Etiopiană Language_ar_AR=Arabă Language_ar_DZ=Arabă (Algeria) Language_ar_EG=Arabă (Egipt) +Language_ar_JO=Arabă (Iordania) Language_ar_MA=Arabă (Maroc) Language_ar_SA=Arabă (Arabia Saudită) Language_ar_TN=Arabă (Tunisia) @@ -12,9 +13,11 @@ Language_az_AZ=Azerbaijană Language_bn_BD=Bengaleză Language_bn_IN=Bengală (India) Language_bg_BG=Bulgară +Language_bo_CN=Tibetană Language_bs_BA=Bosniacă Language_ca_ES=Catalană Language_cs_CZ=Cehă +Language_cy_GB=Galeză Language_da_DA=Daneză Language_da_DK=Daneză Language_de_DE=Germană @@ -22,6 +25,7 @@ Language_de_AT=Germană (Austria) Language_de_CH=Germană (Elveţia) Language_el_GR=Greacă Language_el_CY=Greacă (Cipru) +Language_en_AE=Engleză (Emiratele Arabe Unite) Language_en_AU=Engleză (Australia) Language_en_CA=Engleză (Canada) Language_en_GB=Engleză (Marea Britanie) @@ -36,6 +40,7 @@ Language_es_AR=Spaniolă (Argentina) Language_es_BO=Spaniolă (Bolivia) Language_es_CL=Spaniolă (Chile) Language_es_CO=Spaniolă (Columbia) +Language_es_CR=Spaniolă (Costa Rica) Language_es_DO=Spaniolă (Republica Dominicană) Language_es_EC=Spaniolă (Ecuador) Language_es_GT=Spaniolă (Guatemala) @@ -83,18 +88,21 @@ Language_lt_LT=Lituaniană Language_lv_LV=Letonă Language_mk_MK=Macedoneană Language_mn_MN=Mongolă +Language_my_MM=Birmaneză Language_nb_NO=Norvegiană (Bokmål) Language_ne_NP=Nepaleză Language_nl_BE=Olandeză (Belgia) Language_nl_NL=Olandeză Language_pl_PL=Poloneză Language_pt_AO=Portugheză (Angola) +Language_pt_MZ=Portugheză (Mozambic) Language_pt_BR=Portugheză (Brazilia) Language_pt_PT=Portugheză Language_ro_MD=Română (Moldova) Language_ro_RO=Română Language_ru_RU=Rusă Language_ru_UA=Rusă (Ucraina) +Language_ta_IN=Tamilă Language_tg_TJ=Tajică Language_tr_TR=Turcă Language_sl_SI=Slovenă @@ -106,6 +114,7 @@ Language_sr_RS=Sârbă Language_sw_SW=Swahili Language_th_TH=Tailandeză Language_uk_UA=Ucraineană +Language_ur_PK=Urdu Language_uz_UZ=Uzbecă Language_vi_VN=Vietnameză Language_zh_CN=Chineză diff --git a/htdocs/langs/ro_RO/mails.lang b/htdocs/langs/ro_RO/mails.lang index 9b8f0c6eb33..2a091dca2de 100644 --- a/htdocs/langs/ro_RO/mails.lang +++ b/htdocs/langs/ro_RO/mails.lang @@ -178,3 +178,4 @@ IsAnAnswer= Este un răspuns al unui email inițial RecordCreatedByEmailCollector=Înregistrare creată de colectorul de email %s din adresa %s DefaultBlacklistMailingStatus=Valoare implicită pentru câmpul '%s' când este creat un nou contact DefaultStatusEmptyMandatory= Necompletat, dar obligatoriu +WarningLimitSendByDay=ATENȚIE: Configurarea sau contractul instanței tale limitează numărul de email-uri pe zi la %s. Încercarea de a trimite mai multe poate duce la încetinirea sau suspendarea instanței. Contactează serviciul de asistență dacă ai de o cotă mai mare. diff --git a/htdocs/langs/ro_RO/main.lang b/htdocs/langs/ro_RO/main.lang index d4159a64d7a..b7bd8acfe97 100644 --- a/htdocs/langs/ro_RO/main.lang +++ b/htdocs/langs/ro_RO/main.lang @@ -712,6 +712,7 @@ FeatureDisabled=Funcţionalitate dezactivată MoveBox=Mutați widgetul Offered=Oferit NotEnoughPermissions=Nu aveţi permisiuni pentru această acţiune +UserNotInHierachy=Această acțiune este rezervată supervizorilor acestui utilizator SessionName=Nume sesiune Method=Metodă Receive=Recepţionează @@ -801,6 +802,7 @@ URLPhoto=Url către foto/logo SetLinkToAnotherThirdParty=Asociază cu un alt terţ LinkTo=Asociere la LinkToProposal=Asociere la ofertă +LinkToExpedition= Link către expediție LinkToOrder=Link către comandă LinkToInvoice=Link la factură LinkToTemplateInvoice=Link la șablon factură @@ -1177,3 +1179,4 @@ CommercialAffected=Reprezentantul de vânzări afectat YourMessage=Mesajul tău YourMessageHasBeenReceived=Mesajul tău a fost primit. Vă vom răspunde sau vă vom contacta cât mai curând posibil. UrlToCheck=Url de verificat +Automation=Automatizare diff --git a/htdocs/langs/ro_RO/members.lang b/htdocs/langs/ro_RO/members.lang index 4a29add1e85..0f6e63de5d2 100644 --- a/htdocs/langs/ro_RO/members.lang +++ b/htdocs/langs/ro_RO/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=Dată terminare adeziune EndSubscription=Terminare adeziune SubscriptionId=ID contribuţie WithoutSubscription=Fără contribuţie -MemberId=ID membru +MemberId=Id membru +MemberRef=Ref membru NewMember=Membru nou MemberType=Tip Membru MemberTypeId=ID tip membru @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Tipul de membru nu poate fi șters NewSubscription=Cotizaţie nouă NewSubscriptionDesc=Acest formular vă permite să vă înregistraţi ca membru nou al fundaţiei. Dacă doriţi să vă reînnoiţi adeziunea (dacă sunteţi deja membru), vă rugăm să contactaţi conducerea fundaţiei pe email la %s . Subscription=Contribuţie +AnyAmountWithAdvisedAmount=Orice sumă cu o valoare recomandată de %s %s +AnyAmountWithoutAdvisedAmount=Orice valoare +CanEditAmountShort=Orice valoare +CanEditAmountShortForValues=recomandat, orice valoare +MembershipDuration=Durată +GetMembershipButtonLabel=Obține calitate de membru Subscriptions=Contribuţii SubscriptionLate=Întârziat SubscriptionNotReceived=Contribuţia nu a fost încasată @@ -135,7 +142,7 @@ CardContent=Conţinutul fişei tale de membru # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=Vrem să vă informăm că cererea dvs. de adeziune ca membru a fost primită.

ThisIsContentOfYourMembershipWasValidated=Vrem să vă informăm că cererea dvs. de adeziune ca membru a fost validată cu următoarele informații:

-ThisIsContentOfYourSubscriptionWasRecorded=Vrem să vă informăm că noul dvs. abonament a fost înregistrat.

+ThisIsContentOfYourSubscriptionWasRecorded=Te anunțăm că noul abonament a fost înregistrat. Regăsești factura atașată aici.

ThisIsContentOfSubscriptionReminderEmail=Dorim să vă informăm că adeziunea/abonamentul dvs. este pe cale să expire sau a expirat deja (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Sperăm că il veți reînnoi.

ThisIsContentOfYourCard=Acesta este un rezumat al informațiilor pe care le avem despre dvs. Vă rugăm să ne contactați dacă ceva este incorect.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Subiectul emailului de notificare primit în cazul autoînscrierii unui oaspete/vizitator @@ -198,7 +205,8 @@ NbOfSubscriptions=Număr contribuţii AmountOfSubscriptions=Suma colectată din contribuţii TurnoverOrBudget=Cifra de afaceri (pentru o companie), sau Bugetul (pentru o fundaţie) DefaultAmount=Valoarea implicită a contribuţiei -CanEditAmount=Vizitatorul poate alege/edita valoarea contribuţiei sale +CanEditAmount=Vizitatorul poate alege/modifica suma cu care contribuie, indiferent de tipul de membru +AmountIsLowerToMinimumNotice=dintr-un total de %s MEMBER_NEWFORM_PAYONLINE=Mergi la pagina integrată de plată online ByProperties=După natură MembersStatisticsByProperties=Statistici membri după natură diff --git a/htdocs/langs/ro_RO/modulebuilder.lang b/htdocs/langs/ro_RO/modulebuilder.lang index d2ea048b1eb..f70059ae56b 100644 --- a/htdocs/langs/ro_RO/modulebuilder.lang +++ b/htdocs/langs/ro_RO/modulebuilder.lang @@ -1,4 +1,5 @@ # Dolibarr language file - Source file is en_US - loan +IdModule= Id modul ModuleBuilderDesc=Acest instrument trebuie folosit numai de utilizatori sau dezvoltatori experimentați. Oferă utilități pentru a construi sau edita propriul modul. Documentația pentru dezvoltarea manuală alternativă se găseşte aici. EnterNameOfModuleDesc=Introdu numele modulului/aplicației de creat fără spații. Foloseşte majuscule pentru a separa cuvintele (De exemplu: MyModule, EcommerceForShop, SyncWithMySystem...) EnterNameOfObjectDesc=Introdu numele obiectului de creat fără spații. Foloseşte majuscule pentru a separa cuvinte (De exemplu: MyObject, Student, Teacher...). Se vor genera fișierul clasă CRUD, dar și fișierul API, paginile de listă/adăugare/editare/ștergere obiect și fișierele SQL. @@ -9,6 +10,7 @@ ModuleBuilderDesc4=Un modul este detectat ca "editabil" atunci când fișierul < NewModule=Modul nou NewObjectInModulebuilder=Obiect nou NewDictionary=Dicţionar nou +ModuleName=Nume modul ModuleKey=Cheie modul ObjectKey=Cheie obiect DicKey=Cheie dicţionar @@ -153,3 +155,4 @@ LinkToParentMenu=Meniu părinte (fk_xxxxmenu) ListOfTabsEntries=Listă tab-uri TabsDefDesc=Defineşte aici tab-urile furnizate de modulul tău TabsDefDescTooltip=Tab-urile furnizate de modulul/aplicația ta sunt definite în matricea $this->tabs în fișierul descriptor al modulului. Poți edita manual acest fișier sau poți utiliza editorul încorporat.  +BadValueForType=Valoare incorectă pentru tipul %s diff --git a/htdocs/langs/ro_RO/orders.lang b/htdocs/langs/ro_RO/orders.lang index b1b284a125f..3931bfaec96 100644 --- a/htdocs/langs/ro_RO/orders.lang +++ b/htdocs/langs/ro_RO/orders.lang @@ -1,4 +1,5 @@ # Dolibarr language file - Source file is en_US - orders +OrderExists=O comandă era deja deschisă legată de această ofertă comercială, așa că nicio altă comandă nu a fost creată automat OrdersArea=Comenzi clienţi SuppliersOrdersArea=Comenzi de achiziție OrderCard=Fişă Comandă diff --git a/htdocs/langs/ro_RO/paypal.lang b/htdocs/langs/ro_RO/paypal.lang index 6533bfc0210..c28b8c8aeac 100644 --- a/htdocs/langs/ro_RO/paypal.lang +++ b/htdocs/langs/ro_RO/paypal.lang @@ -1,36 +1,37 @@ # Dolibarr language file - Source file is en_US - paypal -PaypalSetup=PayPal modul de configurare -PaypalDesc=Acest modul permite plata de către clienți prin intermediul PayPal . Aceasta poate fi utilizată pentru o plată ad-hoc sau pentru o plată aferentă unui obiect Dolibarr (factură, comandă, ...) +PaypalSetup=Configurare modul PayPal +PaypalDesc=Acest modul permite plata de la clienţi prin PayPal. Acesta poate fi utilizat pentru plăţi ad-hoc payment sau pentru plăţi aferente unui obiect din sistem (factură, comandă, ...) PaypalOrCBDoPayment=Plăteşte cu PayPal (Card sau PayPal) PaypalDoPayment=Plătiți cu PayPal -PAYPAL_API_SANDBOX=Mod de încercare / sandbox +PAYPAL_API_SANDBOX=Mod test/sandbox PAYPAL_API_USER=API numele de utilizator -PAYPAL_API_PASSWORD=API parola -PAYPAL_API_SIGNATURE=API semnătura -PAYPAL_SSLVERSION=Versiune Curl SSL -PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Oferiți o plată integrală (card de credit + PayPal) sau doar "PayPal" +PAYPAL_API_PASSWORD=API parolă +PAYPAL_API_SIGNATURE=API semnătură +PAYPAL_SSLVERSION=Versiune curl SSL +PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Oferă o plată integrală (card de credit + PayPal) sau doar "PayPal" PaypalModeIntegral=Integral -PaypalModeOnlyPaypal=Numai PayPal -ONLINE_PAYMENT_CSS_URL=Adresa URL opțională a foii de stil CSS pe pagina de plată online -ThisIsTransactionId=Acesta este ID-ul de tranzacţie: %s -PAYPAL_ADD_PAYMENT_URL=Includeți URL cu plata PayPal atunci când trimiteți un document prin e-mail +PaypalModeOnlyPaypal=Doar PayPal +ONLINE_PAYMENT_CSS_URL=Adresa URL opțională a foii de stil CSS pentru pagina de plată online +ThisIsTransactionId=Acesta este ID-ul tranzacţiei: %s +PAYPAL_ADD_PAYMENT_URL=Include URL-ul cu plata PayPal atunci când trimiți un document prin email NewOnlinePaymentReceived=A fost primită o nouă plată online -NewOnlinePaymentFailed=Noua plata online a încercat, dar nu a reușit -ONLINE_PAYMENT_SENDEMAIL=Adresa de e-mail pentru notificări după fiecare încercare de plată (in caz de succes și eșec) -ReturnURLAfterPayment=URL-ul return după plată +NewOnlinePaymentFailed=S-a încercat o nouă plată online, dar a eşuat +ONLINE_PAYMENT_SENDEMAIL=Adresa de email pentru notificări după fiecare încercare de plată (în caz de succes și eșec) +ReturnURLAfterPayment=URL-ul de returnare după plată ValidationOfOnlinePaymentFailed=Validarea plății online a eșuat -PaymentSystemConfirmPaymentPageWasCalledButFailed=Pagina de confirmare a plății apelată de sistemul de plăți a întors o eroare -SetExpressCheckoutAPICallFailed=Apel API SetExpressCheckout eșuat.. -DoExpressCheckoutPaymentAPICallFailed=Apel API DoExpressCheckoutPayment eșuat. -DetailedErrorMessage=Mesaj eroare detaliat -ShortErrorMessage=Mesaj eroare scurt +PaymentSystemConfirmPaymentPageWasCalledButFailed=Pagina de confirmare a plății apelată de sistemul de plăți a returnat o eroare +SetExpressCheckoutAPICallFailed=Apel API SetExpressCheckout eșuat. +DoExpressCheckoutPaymentAPICallFailed=Apelul API DoExpressCheckoutPayment a eșuat. +DetailedErrorMessage=Mesaj de eroare detaliat +ShortErrorMessage=Mesaj de eroare scurt ErrorCode=Cod de eroare -ErrorSeverityCode=Cod Severitate eroare +ErrorSeverityCode=Cod severitate eroare OnlinePaymentSystem=Sistem de plată online -PaypalLiveEnabled=ModcPayPal "live" activat (altfel test / modul sandbox) -PaypalImportPayment=Importați plăți PayPal -PostActionAfterPayment=Acțiuni postate după plăți +PaypalLiveEnabled=Mod PayPal "live" activat (altfel test/mod sandbox) +PaypalImportPayment=Import plăți PayPal +PostActionAfterPayment=Acțiuni Post-plăți ARollbackWasPerformedOnPostActions=A fost efectuată o revocare a tuturor acțiunilor Post. Trebuie să finalizați manual acțiunile postate dacă acestea sunt necesare. ValidationOfPaymentFailed=Validarea plății a eșuat CardOwner=Deţinătorul cardului PayPalBalance=Credit Paypal +OnlineSubscriptionPaymentLine=Abonament online înregistrat pe %s
Plătit prin %s
Adresa IP de origine: %s
ID tranzacție:%s diff --git a/htdocs/langs/ro_RO/projects.lang b/htdocs/langs/ro_RO/projects.lang index 519c9eacd0e..8a388986324 100644 --- a/htdocs/langs/ro_RO/projects.lang +++ b/htdocs/langs/ro_RO/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=Timp consumat facturat TimeSpentForIntervention=Timp consumat TimeSpentForInvoice=Timpi consumaţi OneLinePerUser=O linie per utilizator -ServiceToUseOnLines=Serviciu de utilizat pe linii +ServiceToUseOnLines=Serviciu de utilizat, pe linii, în mod implicit InvoiceGeneratedFromTimeSpent=Factura %s a fost generată cu timpul consumat pe proiect InterventionGeneratedFromTimeSpent=Intervenția %s a fost generată din timpul consumat pe proiect ProjectBillTimeDescription=Bifați dacă introduceți un timeline în task-urile proiectului ȘI intenționați să generați factură(i) din foaia de timp pentru a factura proiectul clientului (nu bifați dacă intenționați să creați o factură care nu se bazează pe foile de timp introduse). Notă: Pentru a genera factură, accesați fila "Timp consumat" a proiectului și selectați liniile pe care să le includeți. @@ -294,3 +294,4 @@ EnablePublicLeadForm=Activare formular public de contact NewLeadbyWeb=Mesajul sau solicitarea ta a fost înregistrată. Vă vom răspunde sau vă vom contacta în curând. NewLeadForm=Formular contact nou LeadFromPublicForm=Formular public lead online +ExportAccountingReportButtonLabel=Generare raport diff --git a/htdocs/langs/ro_RO/stocks.lang b/htdocs/langs/ro_RO/stocks.lang index 68b904b148d..9bd95840676 100644 --- a/htdocs/langs/ro_RO/stocks.lang +++ b/htdocs/langs/ro_RO/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Limită de stoc pentru alertă și stocul optim dor ProductStockWarehouseUpdated=Limită de stoc pentru alertă și stocul optim dorit au fost actualizate corect. ProductStockWarehouseDeleted=Limita de stoc pentru alertă și stocul optim dorit au fost șterse corect AddNewProductStockWarehouse=Setează o nouă limită de stoc pentru alertă şi stocul optim dorit -AddStockLocationLine=Redu cantitatea, apoi fă clic pentru a adăuga un alt depozit pentru acest produs +AddStockLocationLine=Redu cantitatea, apoi fă clic pentru a împărți linia InventoryDate=Data inventarului Inventories=Inventare NewInventory=Inventar nou @@ -254,7 +254,7 @@ ReOpen=Redeschide ConfirmFinish=Confirmați închiderea inventarului? Aceasta va genera toate mișcările stocului pentru a vă actualiza stocul la cantitatea reală pe care ați introdus-o în inventar. ObjectNotFound=%s nu a fost găsit MakeMovementsAndClose=Generează mişcări şi închide -AutofillWithExpected=Înlocuieşte cantitatea reală cu cea estimată +AutofillWithExpected=Completare cantitate reală cu cantitatea așteptată ShowAllBatchByDefault=În mod prestabilit, afișează detaliile lotului în fila "stoc" a produsului CollapseBatchDetailHelp=Poţi seta afișarea implicită a detaliilor lotului în configurația modulului stocuri ErrorWrongBarcodemode=Mod cod de bare necunoscut @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Produsul cu codul de bare nu există WarehouseId=ID depozit WarehouseRef=Ref depozit SaveQtyFirst=Salvează mai întâi cantitățile reale inventariate, înainte de a cere crearea mișcării de stoc. +ToStart=Start InventoryStartedShort=Început ErrorOnElementsInventory=Operaţiunea a fost anulată din următorul motiv: ErrorCantFindCodeInInventory=Nu se găseşte următorul cod în inventar QtyWasAddedToTheScannedBarcode=Succes!! Cantitatea a fost adăugată la toate codurile de bare solicitate. Poți închide instrumentul Scanner. StockChangeDisabled=Modificarea de stoc dezactivată NoWarehouseDefinedForTerminal=Niciun depozit definit pentru terminal +ClearQtys=Şterge toate cantităţile +ModuleStockTransferName=Transfer stoc avansat +ModuleStockTransferDesc=Management avansat al transferului de stoc, cu generarea foii de transfer +StockTransferNew=Transfer stoc nou +StockTransferList=Listă transferuri stoc +ConfirmValidateStockTransfer=Sigur vrei să validezi acest transfer de stocuri cu referința %s ?  +ConfirmDestock=Scădere stocuri cu transferul %s +ConfirmDestockCancel=Anulare scădere stocuri cu transferul %s +DestockAllProduct=Scădere stocuri +DestockAllProductCancel=Anulare scădere stocuri +ConfirmAddStock=Creștere stocuri cu transferul %s +ConfirmAddStockCancel=Anulare creștere stocuri cu transferul %s  +AddStockAllProduct=Creștere de stocuri +AddStockAllProductCancel=Anulare creștere de stocuri +DatePrevueDepart=Data preconizată de plecare +DateReelleDepart=Data reală de plecare +DatePrevueArrivee=Data prevăzută de sosire +DateReelleArrivee=Data reală de sosire +HelpWarehouseStockTransferSource=Dacă acest depozit este setat, numai el însuși și copiii săi vor fi disponibili ca depozit sursă +HelpWarehouseStockTransferDestination=Dacă acest depozit este setat, numai el însuși și copiii săi vor fi disponibili ca depozit de destinație +LeadTimeForWarning=Timp de livrare înainte de alertă (în zile) +TypeContact_stocktransfer_internal_STFROM=Expeditor transfer de stocuri +TypeContact_stocktransfer_internal_STDEST=Destinatar transfer de stocuri +TypeContact_stocktransfer_internal_STRESP=Responsabil transfer de stocuri +StockTransferSheet=Foaie de transfer stocuri +StockTransferSheetProforma=Fișă proforma de transfer de stocuri +StockTransferDecrementation=Scădere depozite sursă +StockTransferIncrementation=Creștere depozite de destinație +StockTransferDecrementationCancel=Anulare scădere depozite sursă +StockTransferIncrementationCancel=Anulare creștere depozite de destinație +StockStransferDecremented=Depozitele sursă au scăzut +StockStransferDecrementedCancel=Scăderea pentru depozitele sursă a fost anulată +StockStransferIncremented=Închis - Stocuri transferate +StockStransferIncrementedShort=Stocuri transferate +StockStransferIncrementedShortCancel=Creșterea pentru depozitele de destinație a fost anulată +StockTransferNoBatchForProduct=Produsul %s nu folosește lot, șterge lotul de pe linie și reîncearcă +StockTransferSetup = Configurare modul Transfer de stocuri +Settings=Configurări +StockTransferSetupPage = Pagina de configurare pentru modulul transfer de stocuri  +StockTransferRightRead=Citește transferuri de stocuri +StockTransferRightCreateUpdate=Creare/Actualizare transferuri de stocuri +StockTransferRightDelete=Ștergere transferuri de stocuri +BatchNotFound=Lotul / seria nu a fost găsită pentru acest produs diff --git a/htdocs/langs/ro_RO/suppliers.lang b/htdocs/langs/ro_RO/suppliers.lang index f2891790714..fce1839119b 100644 --- a/htdocs/langs/ro_RO/suppliers.lang +++ b/htdocs/langs/ro_RO/suppliers.lang @@ -4,6 +4,7 @@ SuppliersInvoice=Factură furnizor SupplierInvoices=Facturi furnizori ShowSupplierInvoice=Afișați factura furnizor NewSupplier=Furnizor nou +NewSupplierInvoice = Factură furnizor nouă History=Istoric ListOfSuppliers=Listă furnizori ShowSupplier=Afișează furnizor @@ -47,3 +48,10 @@ BuyerName=Numele cumpărătorului AllProductServicePrices=Toate preţurile produselor/serviciilor AllProductReferencesOfSupplier=Toate referinţele furnizorului BuyingPriceNumShort=Prețuri furnizor +RepeatableSupplierInvoice=Şablon factură furnizor +RepeatableSupplierInvoices=Şablon facturi furnizori +RepeatableSupplierInvoicesList=Şablon facturi furnizori +RecurringSupplierInvoices=Facturi furnizori recurente +ToCreateAPredefinedSupplierInvoice=Pentru a crea șablon de factură furnizor, trebuie să creezi o factură standard, apoi, fără a o valida, fă clic pe butonul "%s".  +GeneratedFromSupplierTemplate=Generat din șablonul de factură furnizor %s +SupplierInvoiceGeneratedFromTemplate=Factura furnizor %s generată din șablonul factură furnizor %s diff --git a/htdocs/langs/ro_RO/ticket.lang b/htdocs/langs/ro_RO/ticket.lang index bd8a3e52396..b3613cf1713 100644 --- a/htdocs/langs/ro_RO/ticket.lang +++ b/htdocs/langs/ro_RO/ticket.lang @@ -90,8 +90,8 @@ TicketPublicAccess=O interfață publică care nu necesită identificarea este d TicketSetupDictionaries=Tipul tichetului, severitatea și codurile analitice sunt configurabile din dicționare TicketParamModule=Setări variabile modul TicketParamMail=Setări email -TicketEmailNotificationFrom=Email expeditor pentru răspunsuri la tichet -TicketEmailNotificationFromHelp=Email expeditor pentru răspunsurile la tichetele trimise din sistem +TicketEmailNotificationFrom=Email expeditor pentru notificarea răspunsurilor  +TicketEmailNotificationFromHelp=Email expeditor de utilizat pentru a trimite email de notificare atunci când este oferit un răspuns în backoffice. De exemplu noreply@example.com TicketEmailNotificationTo=Notifică crearea de tichet la această adresă de email TicketEmailNotificationToHelp=Dacă este completată, această adresă de email va fi notificată cu privire la crearea unui tichet TicketNewEmailBodyLabel=Mesaj text trimis după crearea unui tichet diff --git a/htdocs/langs/ru_RU/accountancy.lang b/htdocs/langs/ru_RU/accountancy.lang index 5df338ace3a..95c35158f32 100644 --- a/htdocs/langs/ru_RU/accountancy.lang +++ b/htdocs/langs/ru_RU/accountancy.lang @@ -48,8 +48,9 @@ CountriesNotInEEC=Страны, не входящие в ЕЭС CountriesInEECExceptMe=Страны ЕЭС, кроме %s CountriesExceptMe=Все страны кроме %s AccountantFiles=Экспорт исходных документов -ExportAccountingSourceDocHelp=С помощью этого инструмента вы можете экспортировать исходные события (список в формате CSV и PDF), которые используются для создания вашей отчетности. +ExportAccountingSourceDocHelp=With this tool, you can search and export the source events that are used to generate your accountancy.
The exported ZIP file will contain the lists of requested items in CSV, as well as their attached files in their original format (PDF, ODT, DOCX...). ExportAccountingSourceDocHelp2=Чтобы экспортировать журналы, используйте пункт меню %s - %s. +ExportAccountingProjectHelp=Specify a project if you need an accounting report only for a specific project. Expense reports and loan payments are not included in project reports. VueByAccountAccounting=Просмотр по учетной записи VueBySubAccountAccounting=Просмотр по субсчету бухгалтерского учета @@ -161,7 +162,7 @@ BANK_DISABLE_DIRECT_INPUT=Отключить прямую запись тран ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL=Включить экспорт черновиков в журнале ACCOUNTANCY_COMBO_FOR_AUX=Включить комбинированный список для вспомогательной учетной записи (может быть медленным, если у вас много третьих лиц, нарушить возможность поиска по части значения) ACCOUNTING_DATE_START_BINDING=Определите дату начала привязки и передачи в бухгалтерском учете. Ниже этой даты операции не переносятся в бухгалтерский учет. -ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=При переносе бухгалтерии выберите период отображения по умолчанию +ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=On accountancy transfer, what is the period selected by default ACCOUNTING_SELL_JOURNAL=Журнал продаж ACCOUNTING_PURCHASE_JOURNAL=Журнал платежей @@ -182,7 +183,7 @@ DONATION_ACCOUNTINGACCOUNT=Бухгалтерский счет для регис ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=Учетная запись для регистрации подписок ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=Бухгалтерский счет по умолчанию для регистрации депозита клиента -UseAuxiliaryAccountOnCustomerDeposit=Используйте субсчета на депозитных линиях клиентов +UseAuxiliaryAccountOnCustomerDeposit=Store customer account as individual account in subsidiary ledger for lines of down payments (if disabled, individual account for down payment lines will remain empty) ACCOUNTING_PRODUCT_BUY_ACCOUNT=Бухгалтерский счет по умолчанию для купленных продуктов (используется, если не определено в описании продукта) ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT=Бухгалтерский счет по умолчанию для купленных продуктов в EEC (используется, если не определено в описании продукта) @@ -332,7 +333,7 @@ ACCOUNTING_DISABLE_BINDING_ON_EXPENSEREPORTS=Отключить привязку ## Export NotifiedExportDate=Отметить экспортированные строки как Экспортированные (чтобы изменить строку, вам нужно будет удалить всю транзакцию и заново перенести ее в учет) -NotifiedValidationDate=Подтвердите и заблокируйте экспортированные записи (тот же эффект, что и функция «Закрытие», изменение и удаление строк будет ОПРЕДЕЛЕННО невозможно) +NotifiedValidationDate=Validate and Lock the exported entries (same effect than the "%s" feature, modification and deletion of the lines will DEFINITELY not be possible) DateValidationAndLock=Проверка даты и блокировка ConfirmExportFile=Подтверждение генерации файла экспорта бухгалтерского учета? ExportDraftJournal=Экспорт черновика журнала @@ -427,6 +428,7 @@ SorryThisModuleIsNotCompatibleWithTheExperimentalFeatureOfSituationInvoices=К AccountancyErrorMismatchLetterCode=Несоответствие в коде согласования AccountancyErrorMismatchBalanceAmount=Баланс (%s) не равен 0 AccountancyErrorLetteringBookkeeping=Произошли ошибки, связанные с транзакциями: %s +ErrorAccountNumberAlreadyExists=The accounting number %s already exists ## Import ImportAccountingEntries=Бухгалтерские записи diff --git a/htdocs/langs/ru_RU/holiday.lang b/htdocs/langs/ru_RU/holiday.lang index dec460ea8b5..26bd3fda592 100644 --- a/htdocs/langs/ru_RU/holiday.lang +++ b/htdocs/langs/ru_RU/holiday.lang @@ -4,6 +4,7 @@ Holidays=Отпуск CPTitreMenu=Отпуск MenuReportMonth=Ежемесячная выписка MenuAddCP=Новый запрос на отпуск +MenuCollectiveAddCP=New collective leave request NotActiveModCP=Для просмотра этой страницы необходимо включить модуль «Оставить». AddCP=Подать заявление на отпуск DateDebCP=Начальная дата @@ -27,7 +28,7 @@ DescCP=Описание SendRequestCP=Создать заявление на отпуск DelayToRequestCP=Заявления об отпуске могут создаваться не ранее чем через %s (дней) MenuConfCP=Остаток отпуска -SoldeCPUser=Leave balance (in days) %s +SoldeCPUser=Остаток средств (в днях) %s ErrorEndDateCP=Выберите конечную дату позже чем начальную. ErrorSQLCreateCP=Ошибка SQL возникла во время создания: ErrorIDFicheCP=Возникла ошибка, заявление на отпуск отсутствует. @@ -79,6 +80,8 @@ MotifCP=Причина UserCP=Пользователь ErrorAddEventToUserCP=Возникла ошибка при добавлении исключительного отпуска. AddEventToUserOkCP=Добавление исключительного отпуска успешно завершено. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=Просмотр журналов изменений LogCP=Журнал всех обновлений, внесенных в «Отпускной баланс» ActionByCP=Обновлено @@ -86,6 +89,13 @@ UserUpdateCP=Обновлено для PrevSoldeCP=Предыдущий баланс NewSoldeCP=Новый баланс alreadyCPexist=Заявление на отпуск в этот период уже существует. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Группы +users=Пользователи +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Начальный день подачи заявки на отпуск LastDayOfHoliday=Конечный день запроса на отпуск BoxTitleLastLeaveRequests=Последние измененные запросы на отпуск %s @@ -134,6 +144,6 @@ HolidaysToApprove=Праздники утвердить NobodyHasPermissionToValidateHolidays=Ни у кого нет разрешения подтверждать праздники HolidayBalanceMonthlyUpdate=Ежемесячное обновление праздничного баланса XIsAUsualNonWorkingDay=%s обычно НЕ рабочий день -BlockHolidayIfNegative=Block if balance negative -LeaveRequestCreationBlockedBecauseBalanceIsNegative=The creation of this leave request is blocked because your balance is negative -ErrorLeaveRequestMustBeDraftCanceledOrRefusedToBeDeleted=Leave request %s must be draft, canceled or refused to be deleted +BlockHolidayIfNegative=Блокировать, если баланс отрицательный +LeaveRequestCreationBlockedBecauseBalanceIsNegative=Создание этого запроса на отпуск заблокировано, так как ваш баланс отрицательный +ErrorLeaveRequestMustBeDraftCanceledOrRefusedToBeDeleted=Запрос на отпуск %s должен быть черновиком, отменен или отказано в удалении diff --git a/htdocs/langs/ru_RU/hrm.lang b/htdocs/langs/ru_RU/hrm.lang index c8c2554487e..9fbb5ed0fc1 100644 --- a/htdocs/langs/ru_RU/hrm.lang +++ b/htdocs/langs/ru_RU/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Открытое заведение CloseEtablishment=Закрыть заведение # Dictionary DictionaryPublicHolidays=Отпуск - праздничные дни -DictionaryDepartment=HRM - Список отделов +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM - Вакансии # Module Employees=Сотрудники @@ -70,9 +70,9 @@ RequiredSkills=Необходимые навыки для этой работы UserRank=Рейтинг пользователя SkillList=Список навыков SaveRank=Сохранить рейтинг -knowHow=Знать как -HowToBe=Как быть -knowledge=Знания +TypeKnowHow=Знать как +TypeHowToBe=Как быть +TypeKnowledge=Знания AbandonmentComment=Комментарий об отказе DateLastEval=Дата последней оценки NoEval=Оценка этого сотрудника не проводилась @@ -88,3 +88,4 @@ DeleteSkill = Навык удален SkillsExtraFields=Дополнительные атрибуты (компетенции) JobsExtraFields=Дополнительные атрибуты (Emplois) EvaluationsExtraFields=Дополнительные атрибуты (оценки) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/ru_RU/install.lang b/htdocs/langs/ru_RU/install.lang index c471e9cd0ee..440984fd86f 100644 --- a/htdocs/langs/ru_RU/install.lang +++ b/htdocs/langs/ru_RU/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=Файл конфигурации %s недосту ConfFileIsWritable=Файл конфигурации %s доступен для записи. ConfFileMustBeAFileNotADir=Файл конфигурации %s должен быть файлом, а не каталогом. ConfFileReload=Перезагрузка параметров из файла конфигурации. -NoReadableConfFileSoStartInstall=Файл конфигурации conf/conf.php не существует или не может быть восстановлен. Мы запустим процесс установки, чтобы попытаться его инициализировать. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=Эта версия PHP поддерживает переменные POST и GET. PHPSupportPOSTGETKo=Возможно, ваша установка PHP не поддерживает переменные POST и/или GET. Проверьте параметр variables_order в php.ini. PHPSupportSessions=Эта версия PHP поддерживает сессии. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Вы ввели неправильное значе ErrorFailedToCreateDatabase=Не удается создать базу данных ' %s'. ErrorFailedToConnectToDatabase=Не удалось подключиться к базе данных ' %s'. ErrorDatabaseVersionTooLow=Версия базы данных (%s) слишком старая. Требуется версия %s или выше -ErrorPHPVersionTooLow=Версия PHP слишком стара. Версия %s обязательна. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Подключение к серверу выполнено успешно, но база данных '%s' не найдена. ErrorDatabaseAlreadyExists=База данных ' %s' уже существует. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=Если база данных не существует, вернитесь и отметьте опцию «Создать базу данных». IfDatabaseExistsGoBackAndCheckCreate=Если база данных уже существует, вернитесь назад и снимите флажок "Создать базу данных" вариант. WarningBrowserTooOld=Версия браузера слишком старая. Настоятельно рекомендуется обновить браузер до последней версии Firefox, Chrome или Opera. diff --git a/htdocs/langs/ru_RU/main.lang b/htdocs/langs/ru_RU/main.lang index 8cb1348778e..9fab38bf618 100644 --- a/htdocs/langs/ru_RU/main.lang +++ b/htdocs/langs/ru_RU/main.lang @@ -345,7 +345,7 @@ KiloBytes=Килобайт MegaBytes=Мегабайт GigaBytes=Гигабайт TeraBytes=Терабайт -UserAuthor=Создано +UserAuthor=Created by UserModif=Обновлено b=б. Kb=Кб @@ -712,6 +712,7 @@ FeatureDisabled=Функция отключена MoveBox=Переместить виджет Offered=Предложено NotEnoughPermissions=У вас нет разрешений на это действие +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=Имя Сессии Method=Метод Receive=Получить @@ -801,6 +802,7 @@ URLPhoto=Адрес фотографии/логотипа SetLinkToAnotherThirdParty=Ссылка на другого контрагента LinkTo=Ссылка LinkToProposal=Ссылка для предложения +LinkToExpedition= Link to expedition LinkToOrder=Ссылка для заказа LinkToInvoice=Ссылка для счета LinkToTemplateInvoice=Ссылка на шаблон счета @@ -1174,6 +1176,7 @@ ConfirmAllocateCommercial=Назначение подтверждения тор ConfirmAllocateCommercialQuestion=Вы уверены, что хотите назначить выбранные записи %s? CommercialsAffected=Затронутые торговые представители CommercialAffected=Затронутый торговый представитель -YourMessage=Ваше сообщение +YourMessage=Your message YourMessageHasBeenReceived=Ваше сообщение было получено. Мы ответим или свяжемся с вами в ближайшее время. UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/ru_RU/members.lang b/htdocs/langs/ru_RU/members.lang index 0aa060e6a7e..6df7dae7b43 100644 --- a/htdocs/langs/ru_RU/members.lang +++ b/htdocs/langs/ru_RU/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=Дата окончания членства EndSubscription=Конец членства SubscriptionId=Идентификатор вклада WithoutSubscription=Без вклада -MemberId=ID участника +MemberId=Member Id +MemberRef=Member Ref NewMember=Новый участник MemberType=Тип участника MemberTypeId=ID типа участника @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Тип участника не может быть у NewSubscription=Новый вклад NewSubscriptionDesc=Эта форма позволяет вам записывать вашу подписку в качестве нового члена Фонда. Если вы хотите продлить подписку (если уже зарегистрированы), пожалуйста, свяжитесь совета Фонда, а не по электронной почте, %s. Subscription=Вклад +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Продолжительность +GetMembershipButtonLabel=Get membership Subscriptions=Взносы SubscriptionLate=Поздно SubscriptionNotReceived=Вклад так и не получен @@ -135,7 +142,7 @@ CardContent=Содержание Вашей карточки участника # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=Мы хотим сообщить вам, что ваш запрос на членство был получен.

ThisIsContentOfYourMembershipWasValidated=Мы хотим сообщить вам, что ваше членство было подтверждено следующей информацией:

-ThisIsContentOfYourSubscriptionWasRecorded=Мы хотим сообщить вам, что ваша новая подписка была зарегистрирована.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=Мы хотим сообщить вам, что ваша подписка истекает или уже истекла (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Надеемся, вы его обновите.

ThisIsContentOfYourCard=Это краткое изложение имеющейся у нас информации о вас. Пожалуйста, свяжитесь с нами, если что-то не так.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Тема электронного письма с уведомлением, полученного в случае автоматического добавления гостя @@ -198,7 +205,8 @@ NbOfSubscriptions=Количество вкладов AmountOfSubscriptions=Сумма, полученная от взносов TurnoverOrBudget=Оборот (за компанию) или бюджета (за основу) DefaultAmount=Сумма взноса по умолчанию -CanEditAmount=Посетитель может выбрать / изменить размер своего взноса +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Перейти по комплексному интернет страницу оплаты ByProperties=По природе MembersStatisticsByProperties=Статистика участников по характеру diff --git a/htdocs/langs/ru_RU/projects.lang b/htdocs/langs/ru_RU/projects.lang index 4004bc049eb..970947ec27f 100644 --- a/htdocs/langs/ru_RU/projects.lang +++ b/htdocs/langs/ru_RU/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=Время, затраченное на оплату TimeSpentForIntervention=Время, затраченное на посредничество TimeSpentForInvoice=Время, проведенное OneLinePerUser=Одна строка на пользователя -ServiceToUseOnLines=Сервис для использования на линиях +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=Счет-фактура %s была создана на основе времени, потраченного на проект InterventionGeneratedFromTimeSpent=Посредничество %s было создано из времени, потраченного на проект ProjectBillTimeDescription=Проверьте, вводите ли вы расписание для задач проекта И планируете ли вы генерировать счет (-а) из расписания, чтобы выставить счет клиенту проекта (не проверяйте, планируете ли вы создавать счет, который не основан на введенных расписаниях). Примечание. Чтобы создать счет, перейдите на вкладку «Затраченное время» проекта и выберите строки для включения. @@ -294,3 +294,4 @@ EnablePublicLeadForm=Включить общедоступную форму дл NewLeadbyWeb=Ваше сообщение или запрос записаны. Мы ответим или свяжемся с вами в ближайшее время. NewLeadForm=Новая контактная форма LeadFromPublicForm=Лид онлайн из публичной формы +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/ru_RU/stocks.lang b/htdocs/langs/ru_RU/stocks.lang index c250066f9e3..7c312bebafc 100644 --- a/htdocs/langs/ru_RU/stocks.lang +++ b/htdocs/langs/ru_RU/stocks.lang @@ -265,6 +265,7 @@ ProductBarcodeDoesNotExist=Продукт со штрих-кодом не сущ WarehouseId=ID склада WarehouseRef=Ссылка на склад SaveQtyFirst=Сначала сохраните реальные инвентаризационные количества, прежде чем запрашивать создание движения запасов. +ToStart=Главная InventoryStartedShort=Начаты ErrorOnElementsInventory=Операция отменена по следующей причине: ErrorCantFindCodeInInventory=Не могу найти следующий код в инвентаре @@ -272,3 +273,45 @@ QtyWasAddedToTheScannedBarcode=Успех !! Количество было до StockChangeDisabled=Изменение на складе отключено NoWarehouseDefinedForTerminal=Для терминала не определен склад ClearQtys=Очистить все количества +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=Настройки +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/ru_RU/ticket.lang b/htdocs/langs/ru_RU/ticket.lang index 3762a91f605..55c3103a6b1 100644 --- a/htdocs/langs/ru_RU/ticket.lang +++ b/htdocs/langs/ru_RU/ticket.lang @@ -90,8 +90,8 @@ TicketPublicAccess=Публичный интерфейс, не требующи TicketSetupDictionaries=Тип тикета, серьезность и аналитические коды настраиваются из словарей. TicketParamModule=Настройка переменных модуля TicketParamMail=Настройка электронной почты -TicketEmailNotificationFrom=Электронная почта отправителя для ответов на тикет -TicketEmailNotificationFromHelp=Электронная почта отправителя для ответов на запросы, отправленных из Долибарра +TicketEmailNotificationFrom=Sender e-mail for notification on answers +TicketEmailNotificationFromHelp=Sender e-mail to use to send the notification email when an answer is provided inside the backoffice. For example noreply@example.com TicketEmailNotificationTo=Уведомить о создании заявки на этот адрес электронной почты TicketEmailNotificationToHelp=Если он присутствует, этот адрес электронной почты будет уведомлен о создании заявки. TicketNewEmailBodyLabel=Текстовое сообщение, отправленное после создания тикета diff --git a/htdocs/langs/sk_SK/holiday.lang b/htdocs/langs/sk_SK/holiday.lang index 23087db2f90..baf0073cd2c 100644 --- a/htdocs/langs/sk_SK/holiday.lang +++ b/htdocs/langs/sk_SK/holiday.lang @@ -4,6 +4,7 @@ Holidays=Leave CPTitreMenu=Leave MenuReportMonth=Mesačný výkaz MenuAddCP=New leave request +MenuCollectiveAddCP=New collective leave request NotActiveModCP=You must enable the module Leave to view this page. AddCP=Make a leave request DateDebCP=Dátum začatia @@ -79,6 +80,8 @@ MotifCP=Dôvod UserCP=Užívateľ ErrorAddEventToUserCP=Došlo k chybe pri pridávaní výnimočnú dovolenku. AddEventToUserOkCP=Pridanie mimoriadnej dovolenky bola dokončená. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=View change logs LogCP=Log of all updates made to "Balance of Leave" ActionByCP=Updated by @@ -86,6 +89,13 @@ UserUpdateCP=Updated for PrevSoldeCP=Predchádzajúci Balance NewSoldeCP=New Balance alreadyCPexist=A leave request has already been done on this period. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Skupiny +users=Užívatelia +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Beginning day of leave request LastDayOfHoliday=Ending day of leave request BoxTitleLastLeaveRequests=Latest %s modified leave requests diff --git a/htdocs/langs/sk_SK/install.lang b/htdocs/langs/sk_SK/install.lang index 85e51d132e3..06f2fbed1cf 100644 --- a/htdocs/langs/sk_SK/install.lang +++ b/htdocs/langs/sk_SK/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=Configuration file %s is not writable. Check permis ConfFileIsWritable=Konfiguračný súbor %s je zapisovatelný. ConfFileMustBeAFileNotADir=Configuration file %s must be a file, not a directory. ConfFileReload=Reloading parameters from configuration file. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=Vaše PHP podporuje premenné POST a GET. PHPSupportPOSTGETKo=It's possible your PHP setup does not support variables POST and/or GET. Check the parameter variables_order in php.ini. PHPSupportSessions=Vaše PHP podporuje relácie. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Možno ste zadali nesprávnu hodnotu pre parameter & ErrorFailedToCreateDatabase=Nepodarilo sa vytvoriť databázu "%s". ErrorFailedToConnectToDatabase=Nepodarilo sa pripojiť k databáze "%s". ErrorDatabaseVersionTooLow=Verzia databázy (%s) je príliš stará. Vyžaduje sa verzia %s alebo vyššia. -ErrorPHPVersionTooLow=Verzia PHP je príliš stará. Vyžaduje sa verzia %s. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Connection to server successful but database '%s' not found. ErrorDatabaseAlreadyExists=Databáza '%s' už existuje. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=If the database does not exist, go back and check option "Create database". IfDatabaseExistsGoBackAndCheckCreate=Ak databáza už existuje, vráťte sa späť a zrušte začiarknutie políčka "Vytvoriť databázu". WarningBrowserTooOld=Version of browser is too old. Upgrading your browser to a recent version of Firefox, Chrome or Opera is highly recommended. diff --git a/htdocs/langs/sk_SK/members.lang b/htdocs/langs/sk_SK/members.lang index e8ea6a54778..376fb00747a 100644 --- a/htdocs/langs/sk_SK/members.lang +++ b/htdocs/langs/sk_SK/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=End date of membership EndSubscription=End of membership SubscriptionId=Contribution ID WithoutSubscription=Without contribution -MemberId=ID člena +MemberId=Member Id +MemberRef=Member Ref NewMember=Nový člen MemberType=Členské typ MemberTypeId=Členské typ id @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Member type can not be deleted NewSubscription=Nový príspevok NewSubscriptionDesc=Táto forma umožňuje nahrávať vaše predplatné ako nový člen nadácie. Ak chcete obnoviť predplatné (ak je už člen), kontaktujte Správna rada Nadácie miesto e-mailom %s. Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Trvanie +GetMembershipButtonLabel=Get membership Subscriptions=Contributions SubscriptionLate=Neskoro SubscriptionNotReceived=Contribution never received @@ -135,7 +142,7 @@ CardContent=Obsah vašej členskú kartu # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=We want to let you know that your membership request was received.

ThisIsContentOfYourMembershipWasValidated=We want to let you know that your membership was validated with the following information:

-ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=We want to let you know that your subscription is about to expire or has already expired (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). We hope you will renew it.

ThisIsContentOfYourCard=This is a summary of the information we have about you. Please contact us if anything is incorrect.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Subject of the notification email received in case of auto-inscription of a guest @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=Obrat (pre firmu), alebo rozpočet (pre nadáciu) DefaultAmount=Default amount of contribution -CanEditAmount=Visitor can choose/edit amount of its contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Prejsť na integrované on-line platobné stránky ByProperties=By nature MembersStatisticsByProperties=Members statistics by nature @@ -218,3 +226,5 @@ XExternalUserCreated=%s external user(s) created ForceMemberNature=Force member nature (Individual or Corporation) CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/sk_SK/stocks.lang b/htdocs/langs/sk_SK/stocks.lang index 3cf1523d363..3ae91d774ad 100644 --- a/htdocs/langs/sk_SK/stocks.lang +++ b/htdocs/langs/sk_SK/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Limit zásob pre upozornenie a optimálne požadova ProductStockWarehouseUpdated=Limit zásob pre upozornenie a optimálne požadované zásoby správne upravené ProductStockWarehouseDeleted=Limit zásob pre upozornenie a optimálne požadované zásoby správne zmazané AddNewProductStockWarehouse=Zadajte nový limit pre upozornenie a optimálne požadované zásoby -AddStockLocationLine=Decrease quantity then click to add another warehouse for this product +AddStockLocationLine=Decrease quantity then click to split the line InventoryDate=Inventory date Inventories=Inventories NewInventory=New inventory @@ -254,7 +254,7 @@ ReOpen=Reopen ConfirmFinish=Do you confirm the closing of the inventory ? This will generate all stock movements to update your stock to the real qty you entered into the inventory. ObjectNotFound=%s not found MakeMovementsAndClose=Generate movements and close -AutofillWithExpected=Replace real quantity with expected quantity +AutofillWithExpected=Fill real quantity with expected quantity ShowAllBatchByDefault=By default, show batch details on product "stock" tab CollapseBatchDetailHelp=You can set batch detail default display in stocks module configuration ErrorWrongBarcodemode=Unknown Barcode mode @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Product with barcode does not exist WarehouseId=Warehouse ID WarehouseRef=Warehouse Ref SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ToStart=Začiatok InventoryStartedShort=Začíname ErrorOnElementsInventory=Operation canceled for the following reason: ErrorCantFindCodeInInventory=Can't find the following code in inventory QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requested barcode. You can close the Scanner tool. StockChangeDisabled=Change on stock disabled NoWarehouseDefinedForTerminal=No warehouse defined for terminal +ClearQtys=Clear all quantities +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=Settings +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/sl_SI/holiday.lang b/htdocs/langs/sl_SI/holiday.lang index 2f664b4b125..2cabe315cd3 100644 --- a/htdocs/langs/sl_SI/holiday.lang +++ b/htdocs/langs/sl_SI/holiday.lang @@ -4,6 +4,7 @@ Holidays=Leave CPTitreMenu=Leave MenuReportMonth=Mesečno stanje MenuAddCP=Nov zahtevek za dopust +MenuCollectiveAddCP=New collective leave request NotActiveModCP=You must enable the module Leave to view this page. AddCP=Izdelaj zahtevek za dopust DateDebCP=Začetni datum @@ -79,6 +80,8 @@ MotifCP=Razlog UserCP=Uporabnik ErrorAddEventToUserCP=Prišlo je do napake pri dodajanju izredne odsotnosti. AddEventToUserOkCP=Dodajanje izredne odsotnosti je zaključeno. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=Glej dnevnik sprememb LogCP=Log of all updates made to "Balance of Leave" ActionByCP=Updated by @@ -86,6 +89,13 @@ UserUpdateCP=Updated for PrevSoldeCP=Prejšnje stanje NewSoldeCP=Novo stanje alreadyCPexist=Zahtevek za dopust za to obdobje je bil že vložen. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Skupine +users=Uporabniki +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Beginning day of leave request LastDayOfHoliday=Ending day of leave request BoxTitleLastLeaveRequests=Latest %s modified leave requests diff --git a/htdocs/langs/sl_SI/install.lang b/htdocs/langs/sl_SI/install.lang index 3262c23cc1d..87bd5fa646d 100644 --- a/htdocs/langs/sl_SI/install.lang +++ b/htdocs/langs/sl_SI/install.lang @@ -8,6 +8,7 @@ ConfFileIsNotWritable=Configuration file %s is not writable. Check permis ConfFileIsWritable=V konfiguracijsko datoteka %s je možno zapisovanje. ConfFileMustBeAFileNotADir=Configuration file %s must be a file, not a directory. ConfFileReload=Reloading parameters from configuration file. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=Ta PHP podpira spremenljivke POST in GET. PHPSupportPOSTGETKo=It's possible your PHP setup does not support variables POST and/or GET. Check the parameter variables_order in php.ini. PHPSupportSessions=Ta PHP podpira seje. @@ -16,13 +17,6 @@ PHPMemoryOK=Maksimalni spomin za sejo vašega PHP je nastavljen na %s. To PHPMemoryTooLow=Your PHP max session memory is set to %s bytes. This is too low. Change your php.ini to set memory_limit parameter to at least %s bytes. Recheck=Click here for a more detailed test ErrorPHPDoesNotSupportSessions=Your PHP installation does not support sessions. This feature is required to allow Dolibarr to work. Check your PHP setup and permissions of the sessions directory. -ErrorPHPDoesNotSupportGD=Your PHP installation does not support GD graphical functions. No graphs will be available. -ErrorPHPDoesNotSupportCurl=Your PHP installation does not support Curl. -ErrorPHPDoesNotSupportCalendar=Your PHP installation does not support php calendar extensions. -ErrorPHPDoesNotSupportUTF8=Your PHP installation does not support UTF8 functions. Dolibarr cannot work correctly. Resolve this before installing Dolibarr. -ErrorPHPDoesNotSupportIntl=Your PHP installation does not support Intl functions. -ErrorPHPDoesNotSupportMbstring=Your PHP installation does not support mbstring functions. -ErrorPHPDoesNotSupportxDebug=Your PHP installation does not support extend debug functions. ErrorPHPDoesNotSupport=Your PHP installation does not support %s functions. ErrorDirDoesNotExists=Mapa %s ne obstaja. ErrorGoBackAndCorrectParameters=Go back and check/correct the parameters. @@ -30,9 +24,11 @@ ErrorWrongValueForParameter=Morda ste vnesli napačno vrednost parametra '%s'. ErrorFailedToCreateDatabase=Neuspešno kreiranje baze podatkov '%s'. ErrorFailedToConnectToDatabase=Neuspešna povezava z bazo podatkov '%s'. ErrorDatabaseVersionTooLow=Verzija baze podatkov (%s) je prestara. Zahtevana je verzija %s ali novejša. -ErrorPHPVersionTooLow=PHP verzija je prestara. Zahtevana je verzija %s. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Connection to server successful but database '%s' not found. ErrorDatabaseAlreadyExists=Baza podatkov '%s' že obstaja. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=If the database does not exist, go back and check option "Create database". IfDatabaseExistsGoBackAndCheckCreate=Če baza podatkov že obstaja, se vrnite nazaj in odznačite opcijo "Ustvari bazo podatkov". WarningBrowserTooOld=Version of browser is too old. Upgrading your browser to a recent version of Firefox, Chrome or Opera is highly recommended. diff --git a/htdocs/langs/sl_SI/members.lang b/htdocs/langs/sl_SI/members.lang index 385d920ff49..3bc21df055f 100644 --- a/htdocs/langs/sl_SI/members.lang +++ b/htdocs/langs/sl_SI/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=End date of membership EndSubscription=End of membership SubscriptionId=Contribution ID WithoutSubscription=Without contribution -MemberId=ID člana +MemberId=Member Id +MemberRef=Member Ref NewMember=Nov član MemberType=Tip člana MemberTypeId=ID tipa člana @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Member type can not be deleted NewSubscription=Nov prispevek NewSubscriptionDesc=Ta obrazec omogoča zabeležko vaše članarine kot novega člana zdručenja. Če želite obnoviti članarino (če ste že član), prosimo raje kontaktirajte vodstvo združenja po emailu %s. Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Trajanje +GetMembershipButtonLabel=Get membership Subscriptions=Contributions SubscriptionLate=Zamujen SubscriptionNotReceived=Contribution never received @@ -135,7 +142,7 @@ CardContent=Vsebina vaše članske kartice # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=We want to let you know that your membership request was received.

ThisIsContentOfYourMembershipWasValidated=We want to let you know that your membership was validated with the following information:

-ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=We want to let you know that your subscription is about to expire or has already expired (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). We hope you will renew it.

ThisIsContentOfYourCard=This is a summary of the information we have about you. Please contact us if anything is incorrect.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Subject of the notification email received in case of auto-inscription of a guest @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=Obseg prodaje (za podjetje) ali proračun (za fundacijo) DefaultAmount=Default amount of contribution -CanEditAmount=Visitor can choose/edit amount of its contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Skoči na integrirano stran za online plačila ByProperties=By nature MembersStatisticsByProperties=Members statistics by nature @@ -218,3 +226,5 @@ XExternalUserCreated=%s external user(s) created ForceMemberNature=Force member nature (Individual or Corporation) CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/sl_SI/stocks.lang b/htdocs/langs/sl_SI/stocks.lang index f0327fefdec..b95ea1997e5 100644 --- a/htdocs/langs/sl_SI/stocks.lang +++ b/htdocs/langs/sl_SI/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Stock limit for alert and desired optimal stock cor ProductStockWarehouseUpdated=Stock limit for alert and desired optimal stock correctly updated ProductStockWarehouseDeleted=Stock limit for alert and desired optimal stock correctly deleted AddNewProductStockWarehouse=Set new limit for alert and desired optimal stock -AddStockLocationLine=Decrease quantity then click to add another warehouse for this product +AddStockLocationLine=Decrease quantity then click to split the line InventoryDate=Inventory date Inventories=Inventories NewInventory=New inventory @@ -254,7 +254,7 @@ ReOpen=Reopen ConfirmFinish=Do you confirm the closing of the inventory ? This will generate all stock movements to update your stock to the real qty you entered into the inventory. ObjectNotFound=%s not found MakeMovementsAndClose=Generate movements and close -AutofillWithExpected=Replace real quantity with expected quantity +AutofillWithExpected=Fill real quantity with expected quantity ShowAllBatchByDefault=By default, show batch details on product "stock" tab CollapseBatchDetailHelp=You can set batch detail default display in stocks module configuration ErrorWrongBarcodemode=Unknown Barcode mode @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Product with barcode does not exist WarehouseId=Warehouse ID WarehouseRef=Warehouse Ref SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ToStart=Start InventoryStartedShort=Začete ErrorOnElementsInventory=Operation canceled for the following reason: ErrorCantFindCodeInInventory=Can't find the following code in inventory QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requested barcode. You can close the Scanner tool. StockChangeDisabled=Change on stock disabled NoWarehouseDefinedForTerminal=No warehouse defined for terminal +ClearQtys=Clear all quantities +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=Settings +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/sr_RS/holiday.lang b/htdocs/langs/sr_RS/holiday.lang index c755ad5cfac..dbe6e5419ba 100644 --- a/htdocs/langs/sr_RS/holiday.lang +++ b/htdocs/langs/sr_RS/holiday.lang @@ -4,6 +4,7 @@ Holidays=Leave CPTitreMenu=Leave MenuReportMonth=Mesečna promena MenuAddCP=Novi zahtev za odsustvo +MenuCollectiveAddCP=New collective leave request NotActiveModCP=You must enable the module Leave to view this page. AddCP=Zatraži odsustvo DateDebCP=Početak @@ -79,6 +80,8 @@ MotifCP=Razlog UserCP=Korisnik ErrorAddEventToUserCP=Greška prilikom kreiranja vanrednog odsustva. AddEventToUserOkCP=Kreiranje vanrednog odsustva je završeno. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=Prikaži log izmena LogCP=Log of all updates made to "Balance of Leave" ActionByCP=Updated by @@ -86,6 +89,13 @@ UserUpdateCP=Updated for PrevSoldeCP=Prethodno stanje NewSoldeCP=Novo stanje alreadyCPexist=Zahtev za odsustvo već postoji za ovaj period. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Grupe +users=Korisnici +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Beginning day of leave request LastDayOfHoliday=Ending day of leave request BoxTitleLastLeaveRequests=Latest %s modified leave requests diff --git a/htdocs/langs/sr_RS/hrm.lang b/htdocs/langs/sr_RS/hrm.lang index bb60449ee93..acbcc55b188 100644 --- a/htdocs/langs/sr_RS/hrm.lang +++ b/htdocs/langs/sr_RS/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Otvori ogranak CloseEtablishment=Zatvori ogranak # Dictionary DictionaryPublicHolidays=Leave - Public holidays -DictionaryDepartment=HR - Lista odeljenja +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM - Job positions # Module Employees=Zaposleni @@ -20,13 +20,14 @@ Employee=Zaposleni NewEmployee=Novi zaposleni ListOfEmployees=Lista zaposlenih HrmSetup=Podešavanja HRM modula -HRM_MAXRANK=Maximum rank for a skill +SkillsManagement=Skills management +HRM_MAXRANK=Maximum number of levels to rank a skill HRM_DEFAULT_SKILL_DESCRIPTION=Default description of ranks when skill is created deplacement=Shift DateEval=Evaluation date JobCard=Job card -Job=Operacija -Jobs=Jobs +JobPosition=Operacija +JobsPosition=Jobs NewSkill=New Skill SkillType=Skill type Skilldets=List of ranks for this skill @@ -47,9 +48,8 @@ ConfirmValidateEvaluation=Are you sure you want to validate this evaluation with EvaluationCard=Evaluation card RequiredRank=Required rank for this job EmployeeRank=Employee rank for this skill -Position=Pozicija -Positions=Positions -PositionCard=Position card +EmployeePosition=Employee position +EmployeePositions=Employee positions EmployeesInThisPosition=Employees in this position group1ToCompare=Usergroup to analyze group2ToCompare=Second usergroup for comparison @@ -70,12 +70,22 @@ RequiredSkills=Required skills for this job UserRank=User Rank SkillList=Skill list SaveRank=Save rank -knowHow=Know how -HowToBe=How to be -knowledge=Knowledge +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=Abandonment comment DateLastEval=Date last evaluation NoEval=No evaluation done for this employee HowManyUserWithThisMaxNote=Number of users with this rank HighestRank=Highest rank SkillComparison=Skill comparison +ActionsOnJob=Events on this job +VacantPosition=job vacancy +VacantCheckboxHelper=Checking this option will show unfilled positions (job vacancy) +SaveAddSkill = Skill(s) added +SaveLevelSkill = Skill(s) level saved +DeleteSkill = Skill removed +SkillsExtraFields=Attributs supplémentaires (Compétences) +JobsExtraFields=Attributs supplémentaires (Emplois) +EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/sr_RS/install.lang b/htdocs/langs/sr_RS/install.lang index a209d2d65e8..a70a5d48aaa 100644 --- a/htdocs/langs/sr_RS/install.lang +++ b/htdocs/langs/sr_RS/install.lang @@ -8,6 +8,7 @@ ConfFileIsNotWritable=Configuration file %s is not writable. Check permis ConfFileIsWritable=Konfiguracioni fajl %s može biti izmenjen. ConfFileMustBeAFileNotADir=Configuration file %s must be a file, not a directory. ConfFileReload=Reloading parameters from configuration file. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=PHP podržava POST i GET promenljive PHPSupportPOSTGETKo=It's possible your PHP setup does not support variables POST and/or GET. Check the parameter variables_order in php.ini. PHPSupportSessions=PHP podržava sesije. @@ -16,13 +17,6 @@ PHPMemoryOK=Maksimalna memorija za sesije je %s. To bi trebalo biti dovol PHPMemoryTooLow=Your PHP max session memory is set to %s bytes. This is too low. Change your php.ini to set memory_limit parameter to at least %s bytes. Recheck=Click here for a more detailed test ErrorPHPDoesNotSupportSessions=Your PHP installation does not support sessions. This feature is required to allow Dolibarr to work. Check your PHP setup and permissions of the sessions directory. -ErrorPHPDoesNotSupportGD=Your PHP installation does not support GD graphical functions. No graphs will be available. -ErrorPHPDoesNotSupportCurl=Your PHP installation does not support Curl. -ErrorPHPDoesNotSupportCalendar=Your PHP installation does not support php calendar extensions. -ErrorPHPDoesNotSupportUTF8=Your PHP installation does not support UTF8 functions. Dolibarr cannot work correctly. Resolve this before installing Dolibarr. -ErrorPHPDoesNotSupportIntl=Your PHP installation does not support Intl functions. -ErrorPHPDoesNotSupportMbstring=Your PHP installation does not support mbstring functions. -ErrorPHPDoesNotSupportxDebug=Your PHP installation does not support extend debug functions. ErrorPHPDoesNotSupport=Your PHP installation does not support %s functions. ErrorDirDoesNotExists=Folder %s ne postoji. ErrorGoBackAndCorrectParameters=Go back and check/correct the parameters. @@ -30,9 +24,11 @@ ErrorWrongValueForParameter=Verovatno ste uneli pogrešnu vrednost za parametar ErrorFailedToCreateDatabase=Greška prilikom kreacije baze podataka "%s". ErrorFailedToConnectToDatabase=Greška prilikom povezivanja na bazu podataka "%s". ErrorDatabaseVersionTooLow=Verzija baze (%s) je previš stara. Neophodna je verzija %s ili novija. -ErrorPHPVersionTooLow=Verzija PHP instalacije je previše stara. Neophodna je verzija %s. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Connection to server successful but database '%s' not found. ErrorDatabaseAlreadyExists=Baza "%s" već postoji. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=If the database does not exist, go back and check option "Create database". IfDatabaseExistsGoBackAndCheckCreate=Ukoliko baza već postoji, vratite se nazad i od-selektirajte opciju "Kreiranje baze". WarningBrowserTooOld=Version of browser is too old. Upgrading your browser to a recent version of Firefox, Chrome or Opera is highly recommended. diff --git a/htdocs/langs/sr_RS/members.lang b/htdocs/langs/sr_RS/members.lang index c1c03b01a38..8948f8296dc 100644 --- a/htdocs/langs/sr_RS/members.lang +++ b/htdocs/langs/sr_RS/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=End date of membership EndSubscription=End of membership SubscriptionId=Contribution ID WithoutSubscription=Without contribution -MemberId=ID člana +MemberId=Member Id +MemberRef=Member Ref NewMember=Novi član MemberType=Tip člana MemberTypeId=ID tipa člana @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Member type can not be deleted NewSubscription=Novi doprinos NewSubscriptionDesc=Ovaj obrazac Vam omogućava da snimite svoju pretplatu kao novi član fondacije. Ukoliko želite da produžite pretplatu (ukoliko ste već član), molimo Vas da kontaktirate fondaciju putem maila %s. Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Trajanje +GetMembershipButtonLabel=Get membership Subscriptions=Contributions SubscriptionLate=Kasni SubscriptionNotReceived=Contribution never received @@ -135,7 +142,7 @@ CardContent=Sadržaj Vaše kartice člana # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=We want to let you know that your membership request was received.

ThisIsContentOfYourMembershipWasValidated=We want to let you know that your membership was validated with the following information:

-ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=We want to let you know that your subscription is about to expire or has already expired (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). We hope you will renew it.

ThisIsContentOfYourCard=This is a summary of the information we have about you. Please contact us if anything is incorrect.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Subject of the notification email received in case of auto-inscription of a guest @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=Obrt (za kompaniju) ili budžet (za fondaciju) DefaultAmount=Default amount of contribution -CanEditAmount=Visitor can choose/edit amount of its contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Pređi na integrisanu online stranicu uplate ByProperties=By nature MembersStatisticsByProperties=Members statistics by nature @@ -218,3 +226,5 @@ XExternalUserCreated=%s external user(s) created ForceMemberNature=Force member nature (Individual or Corporation) CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/sr_RS/stocks.lang b/htdocs/langs/sr_RS/stocks.lang index eabbd6ab419..dbb156b3cd1 100644 --- a/htdocs/langs/sr_RS/stocks.lang +++ b/htdocs/langs/sr_RS/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Stock limit for alert and desired optimal stock cor ProductStockWarehouseUpdated=Stock limit for alert and desired optimal stock correctly updated ProductStockWarehouseDeleted=Stock limit for alert and desired optimal stock correctly deleted AddNewProductStockWarehouse=Set new limit for alert and desired optimal stock -AddStockLocationLine=Decrease quantity then click to add another warehouse for this product +AddStockLocationLine=Decrease quantity then click to split the line InventoryDate=Inventory date Inventories=Inventories NewInventory=New inventory @@ -254,7 +254,7 @@ ReOpen=Ponovo Otvoreno ConfirmFinish=Do you confirm the closing of the inventory ? This will generate all stock movements to update your stock to the real qty you entered into the inventory. ObjectNotFound=%s not found MakeMovementsAndClose=Generate movements and close -AutofillWithExpected=Replace real quantity with expected quantity +AutofillWithExpected=Fill real quantity with expected quantity ShowAllBatchByDefault=By default, show batch details on product "stock" tab CollapseBatchDetailHelp=You can set batch detail default display in stocks module configuration ErrorWrongBarcodemode=Unknown Barcode mode @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Product with barcode does not exist WarehouseId=Warehouse ID WarehouseRef=Warehouse Ref SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ToStart=Start InventoryStartedShort=Započeto ErrorOnElementsInventory=Operation canceled for the following reason: ErrorCantFindCodeInInventory=Can't find the following code in inventory QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requested barcode. You can close the Scanner tool. StockChangeDisabled=Change on stock disabled NoWarehouseDefinedForTerminal=No warehouse defined for terminal +ClearQtys=Clear all quantities +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=Settings +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/sv_SE/holiday.lang b/htdocs/langs/sv_SE/holiday.lang index f216ac98992..f2a5825a9d2 100644 --- a/htdocs/langs/sv_SE/holiday.lang +++ b/htdocs/langs/sv_SE/holiday.lang @@ -4,6 +4,7 @@ Holidays=Lämna CPTitreMenu=Lämna MenuReportMonth=Månatlig rapport MenuAddCP=Ny ledighetsansökan +MenuCollectiveAddCP=New collective leave request NotActiveModCP=Du måste aktivera modulen Lämna för att se den här sidan. AddCP=Gör en förfrågan ledighet DateDebCP=Startdatum @@ -79,6 +80,8 @@ MotifCP=Reason UserCP=Användare ErrorAddEventToUserCP=Ett fel uppstod när den exceptionella ledighet. AddEventToUserOkCP=Tillägget av den exceptionella ledigheten har slutförts. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=Kontrollera ändringsloggen LogCP=Logg över alla uppdateringar gjorda av "Balans av ledighet" ActionByCP=Uppdaterad av @@ -86,6 +89,13 @@ UserUpdateCP=Uppdaterad för PrevSoldeCP=Föregående Balance NewSoldeCP=New Balance alreadyCPexist=En begäran ledigheten har redan gjorts på denna period. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Grupper +users=Användare +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Börjedag för begäran om ledighet LastDayOfHoliday=Slutdagens ledighetsförfrågan BoxTitleLastLeaveRequests=Senaste %s ändrade lämnar förfrågningar diff --git a/htdocs/langs/sv_SE/hrm.lang b/htdocs/langs/sv_SE/hrm.lang index 8039f587136..262cae6c093 100644 --- a/htdocs/langs/sv_SE/hrm.lang +++ b/htdocs/langs/sv_SE/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Öppen anläggning CloseEtablishment=Stäng anläggningen # Dictionary DictionaryPublicHolidays=Ledighet - Helgdagar -DictionaryDepartment=HRM - Avdelningslista +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM - Jobbpositioner # Module Employees=anställda @@ -20,13 +20,14 @@ Employee=Anställd NewEmployee=Ny anställd ListOfEmployees=Lista över anställda HrmSetup=HRM module setup -HRM_MAXRANK=Maximum rank for a skill +SkillsManagement=Skills management +HRM_MAXRANK=Maximum number of levels to rank a skill HRM_DEFAULT_SKILL_DESCRIPTION=Default description of ranks when skill is created deplacement=Shift DateEval=Evaluation date JobCard=Job card -Job=Jobb -Jobs=Jobs +JobPosition=Jobb +JobsPosition=Jobs NewSkill=New Skill SkillType=Skill type Skilldets=List of ranks for this skill @@ -47,9 +48,8 @@ ConfirmValidateEvaluation=Are you sure you want to validate this evaluation with EvaluationCard=Evaluation card RequiredRank=Required rank for this job EmployeeRank=Employee rank for this skill -Position=Position -Positions=Positions -PositionCard=Position card +EmployeePosition=Employee position +EmployeePositions=Employee positions EmployeesInThisPosition=Employees in this position group1ToCompare=Usergroup to analyze group2ToCompare=Second usergroup for comparison @@ -70,12 +70,22 @@ RequiredSkills=Required skills for this job UserRank=User Rank SkillList=Skill list SaveRank=Save rank -knowHow=Know how -HowToBe=How to be -knowledge=Knowledge +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=Abandonment comment DateLastEval=Date last evaluation NoEval=No evaluation done for this employee HowManyUserWithThisMaxNote=Number of users with this rank HighestRank=Highest rank SkillComparison=Skill comparison +ActionsOnJob=Events on this job +VacantPosition=job vacancy +VacantCheckboxHelper=Checking this option will show unfilled positions (job vacancy) +SaveAddSkill = Skill(s) added +SaveLevelSkill = Skill(s) level saved +DeleteSkill = Skill removed +SkillsExtraFields=Attributs supplémentaires (Compétences) +JobsExtraFields=Attributs supplémentaires (Emplois) +EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/sv_SE/install.lang b/htdocs/langs/sv_SE/install.lang index eee9da54666..bd463e4ecb5 100644 --- a/htdocs/langs/sv_SE/install.lang +++ b/htdocs/langs/sv_SE/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=Konfigurationsfil %s är inte skrivbar. Kontrolle ConfFileIsWritable=Konfigurationsfilen %s är skrivbar. ConfFileMustBeAFileNotADir=Konfigurationsfil %s måste vara en fil, inte en katalog. ConfFileReload=Uppdatera parametrar från konfigurationsfilen. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=Detta stöder PHP variabler POST och GET. PHPSupportPOSTGETKo=Det är möjligt att din PHP-inställning inte stöder variabler POST och / eller GET. Kontrollera parametern variables_order i php.ini. PHPSupportSessions=Detta stöder PHP sessioner. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Du kan ha skrivit fel värde för parametern "% ErrorFailedToCreateDatabase=Misslyckades med att skapa databasen %s. ErrorFailedToConnectToDatabase=Det gick inte att ansluta till databasen "%s". ErrorDatabaseVersionTooLow=Databasens version (%s) för gammal. Version %s eller senare krävs. -ErrorPHPVersionTooLow=PHP version gamla också. Version %s krävs. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Anslutning till servern lyckad men databasen '%s' hittades inte. ErrorDatabaseAlreadyExists=Databas "%s" finns redan. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=Om databasen inte existerar, gå tillbaka och kolla alternativet "Skapa databas". IfDatabaseExistsGoBackAndCheckCreate=Om databasen redan finns, gå tillbaka och avmarkera "Skapa databasen" valen. WarningBrowserTooOld=Versionen av webbläsaren är för gammal. Uppgradering av webbläsaren till en ny version av Firefox, Chrome eller Opera rekommenderas starkt. diff --git a/htdocs/langs/sv_SE/main.lang b/htdocs/langs/sv_SE/main.lang index 3ab6e851b6d..6f0c88354ab 100644 --- a/htdocs/langs/sv_SE/main.lang +++ b/htdocs/langs/sv_SE/main.lang @@ -244,6 +244,7 @@ Designation=Beskrivning DescriptionOfLine=Beskrivning av linjen DateOfLine=Datum för rad DurationOfLine=Varaktighet av raden +ParentLine=Parent line ID Model=Doc mall DefaultModel=Standard doksmall Action=Händelse @@ -344,7 +345,7 @@ KiloBytes=Kilobyte MegaBytes=Megabyte GigaBytes=Gigabyte TeraBytes=Terabyte -UserAuthor=Ceated av +UserAuthor=Created by UserModif=Uppdaterad av b=b. Kb=Kb @@ -517,6 +518,7 @@ or=eller Other=Andra Others=Övrigt OtherInformations=Övrig information +Workflow=Workflow Quantity=Kvantitet Qty=Antal ChangedBy=Ändrad av @@ -619,6 +621,7 @@ MonthVeryShort11=N MonthVeryShort12=D AttachedFiles=Bifogade filer och dokument JoinMainDoc=Gå med i huvuddokumentet +JoinMainDocOrLastGenerated=Send the main document or the last generated one if not found DateFormatYYYYMM=ÅÅÅÅ-MM DateFormatYYYYMMDD=ÅÅÅÅ-MM-DD DateFormatYYYYMMDDHHMM=ÅÅÅÅ-MM-DD HH:SS @@ -709,6 +712,7 @@ FeatureDisabled=Funktion avstängd MoveBox=Flytta widgeten Offered=Erbjuds NotEnoughPermissions=Du har inte behörighet för denna åtgärd +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=Session namn Method=Metod Receive=Ta emot @@ -798,6 +802,7 @@ URLPhoto=URL foto / logo SetLinkToAnotherThirdParty=Länk till en annan tredje part LinkTo=Anknyta till LinkToProposal=Länk till förslag +LinkToExpedition= Link to expedition LinkToOrder=Länk för att beställa LinkToInvoice=Länk till faktura LinkToTemplateInvoice=Länk till mallfaktura @@ -1164,3 +1169,14 @@ NotClosedYet=Not yet closed ClearSignature=Reset signature CanceledHidden=Canceled hidden CanceledShown=Canceled shown +Terminate=Terminate +Terminated=Avslutad +AddLineOnPosition=Add line on position (at the end if empty) +ConfirmAllocateCommercial=Assign sales representative confirmation +ConfirmAllocateCommercialQuestion=Are you sure you want to assign the %s selected record(s)? +CommercialsAffected=Sales representatives affected +CommercialAffected=Sales representative affected +YourMessage=Your message +YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. +UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/sv_SE/members.lang b/htdocs/langs/sv_SE/members.lang index ec01c2afc5d..d03d5b4c9ec 100644 --- a/htdocs/langs/sv_SE/members.lang +++ b/htdocs/langs/sv_SE/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=End date of membership EndSubscription=End of membership SubscriptionId=Contribution ID WithoutSubscription=Without contribution -MemberId=Medlem id +MemberId=Member Id +MemberRef=Member Ref NewMember=Ny medlem MemberType=Medlem typ MemberTypeId=Medlem typ id @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Medlemstypen kan inte raderas NewSubscription=Nya bidrag NewSubscriptionDesc=Denna blankett kan du spela in din prenumeration som en ny medlem i stiftelsen. Om du vill förnya din prenumeration (om du redan är medlem), kontakta styrelsen för stiftelsen i stället av e %s. Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Längd +GetMembershipButtonLabel=Get membership Subscriptions=Contributions SubscriptionLate=Sent SubscriptionNotReceived=Contribution never received @@ -135,7 +142,7 @@ CardContent=Innehållet i ditt medlemskort # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=Vi vill meddela dig att din medlemsförfrågan har mottagits.

ThisIsContentOfYourMembershipWasValidated=Vi vill meddela att ditt medlemskap bekräftades med följande information:

-ThisIsContentOfYourSubscriptionWasRecorded=Vi vill meddela dig att din nya prenumeration har spelats in.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=Vi vill meddela att din prenumeration är på väg att upphöra eller har gått ut (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Vi hoppas att du kommer att förnya det.

ThisIsContentOfYourCard=Detta är en sammanfattning av den information vi har om dig. Kontakta oss om något är felaktigt.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Ämnet av meddelandemeddelandet mottaget vid automatisk inskription av en gäst @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=Omsättning (för ett företag) eller Budget (för en stiftelse) DefaultAmount=Default amount of contribution -CanEditAmount=Visitor can choose/edit amount of its contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Hoppa på integrerad online-betalning sidan ByProperties=Efter egenskaper MembersStatisticsByProperties=Medlemsstatistik efter egenskaper @@ -218,3 +226,5 @@ XExternalUserCreated=%s externa användare har skapats ForceMemberNature=Tvinga medlemmarnas natur (individ eller företag) CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/sv_SE/projects.lang b/htdocs/langs/sv_SE/projects.lang index 3b072f8f138..93cfa921123 100644 --- a/htdocs/langs/sv_SE/projects.lang +++ b/htdocs/langs/sv_SE/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=Tid förbrukad fakturerad TimeSpentForIntervention=Tid TimeSpentForInvoice=Tid OneLinePerUser=En rad per användare -ServiceToUseOnLines=Service att använda på linjer +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=Faktura %s har genererats från tid till projekt InterventionGeneratedFromTimeSpent=Intervention %s har genererats från tid på projektet ProjectBillTimeDescription=Kontrollera om du anger tidrapport för projektuppgifter OCH du planerar att generera fakturor från tidrapporten för att fakturera kunden för projektet (kontrollera inte om du planerar att skapa faktura som inte baseras på angivna tidrapporter). Obs! För att generera faktura, gå till fliken "Tid" för projektet och välj rader som ska inkluderas. @@ -294,3 +294,4 @@ EnablePublicLeadForm=Enable the public form for contact NewLeadbyWeb=Your message or request has been recorded. We will answer or contact your soon. NewLeadForm=New contact form LeadFromPublicForm=Online lead from public form +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/sv_SE/stocks.lang b/htdocs/langs/sv_SE/stocks.lang index 75e2cedb2dc..1e1e171a0aa 100644 --- a/htdocs/langs/sv_SE/stocks.lang +++ b/htdocs/langs/sv_SE/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Lagergräns för varning och önskat optimalt lager ProductStockWarehouseUpdated=Lagergräns för varning och önskat optimalt lager korrekt uppdaterat ProductStockWarehouseDeleted=Lagergräns för varning och önskat optimalt lager raderas korrekt AddNewProductStockWarehouse=Ange ny gräns för alert och önskat optimalt lager -AddStockLocationLine=Minska kvantiteten klicka sedan för att lägga till ett annat lager för denna produkt +AddStockLocationLine=Decrease quantity then click to split the line InventoryDate=Lagerdatum Inventories=Inventories NewInventory=Ny inventering @@ -254,7 +254,7 @@ ReOpen=Öppna igen ConfirmFinish=Bekräftar du stängningen av inventeringen? Detta genererar alla lagerrörelser för att uppdatera ditt lager till det verkliga antalet du angav i lageret. ObjectNotFound=%s hittades inte MakeMovementsAndClose=Generera rörelser och stäng -AutofillWithExpected=Replace real quantity with expected quantity +AutofillWithExpected=Fill real quantity with expected quantity ShowAllBatchByDefault=Som standard visar du batchuppgifter på fliken "lager" CollapseBatchDetailHelp=Du kan ställa in standardvisning för batchdetaljer i lagermodulkonfiguration ErrorWrongBarcodemode=Unknown Barcode mode @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Product with barcode does not exist WarehouseId=Warehouse ID WarehouseRef=Warehouse Ref SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ToStart=Start InventoryStartedShort=Påbörjad ErrorOnElementsInventory=Operation canceled for the following reason: ErrorCantFindCodeInInventory=Can't find the following code in inventory QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requested barcode. You can close the Scanner tool. StockChangeDisabled=Change on stock disabled NoWarehouseDefinedForTerminal=No warehouse defined for terminal +ClearQtys=Clear all quantities +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=inställningar +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/ta_IN/accountancy.lang b/htdocs/langs/ta_IN/accountancy.lang index 0d8d086f542..d9667295c39 100644 --- a/htdocs/langs/ta_IN/accountancy.lang +++ b/htdocs/langs/ta_IN/accountancy.lang @@ -48,8 +48,9 @@ CountriesNotInEEC=EEC இல் இல்லாத நாடுகள் CountriesInEECExceptMe=%s தவிர EEC இல் உள்ள நாடுகள் CountriesExceptMe=%s தவிர அனைத்து நாடுகளும் AccountantFiles=மூல ஆவணங்களை ஏற்றுமதி செய்யவும் -ExportAccountingSourceDocHelp=இந்தக் கருவி மூலம், உங்கள் கணக்கை உருவாக்கப் பயன்படுத்தப்படும் மூல நிகழ்வுகளை (CSV மற்றும் PDFகளில் உள்ள பட்டியல்) ஏற்றுமதி செய்யலாம். +ExportAccountingSourceDocHelp=With this tool, you can search and export the source events that are used to generate your accountancy.
The exported ZIP file will contain the lists of requested items in CSV, as well as their attached files in their original format (PDF, ODT, DOCX...). ExportAccountingSourceDocHelp2=உங்கள் பத்திரிகைகளை ஏற்றுமதி செய்ய, %s - %s என்ற மெனு உள்ளீட்டைப் பயன்படுத்தவும். +ExportAccountingProjectHelp=Specify a project if you need an accounting report only for a specific project. Expense reports and loan payments are not included in project reports. VueByAccountAccounting=கணக்கு கணக்கு மூலம் பார்க்கவும் VueBySubAccountAccounting=கணக்கியல் துணைக் கணக்கு மூலம் பார்க்கவும் @@ -161,7 +162,7 @@ BANK_DISABLE_DIRECT_INPUT=வங்கிக் கணக்கில் பர ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL=ஜர்னலில் வரைவு ஏற்றுமதியை இயக்கவும் ACCOUNTANCY_COMBO_FOR_AUX=துணைக் கணக்கிற்கான சேர்க்கை பட்டியலை இயக்கவும் (உங்களிடம் நிறைய மூன்றாம் தரப்பினர் இருந்தால் மெதுவாக இருக்கலாம், மதிப்பின் ஒரு பகுதியை தேடும் திறனை உடைக்கவும்) ACCOUNTING_DATE_START_BINDING=கணக்கியலில் பிணைப்பு மற்றும் பரிமாற்றத்தைத் தொடங்குவதற்கான தேதியை வரையறுக்கவும். இந்த தேதிக்கு கீழே, பரிவர்த்தனைகள் கணக்கியலுக்கு மாற்றப்படாது. -ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=கணக்கியல் பரிமாற்றத்தில், இயல்புநிலையாக காலக் காட்சியைத் தேர்ந்தெடுக்கவும் +ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=On accountancy transfer, what is the period selected by default ACCOUNTING_SELL_JOURNAL=பத்திரிக்கையை விற்கவும் ACCOUNTING_PURCHASE_JOURNAL=கொள்முதல் இதழ் @@ -182,7 +183,7 @@ DONATION_ACCOUNTINGACCOUNT=நன்கொடைகளை பதிவு செ ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=சந்தாக்களை பதிவு செய்ய கணக்கியல் கணக்கு ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=வாடிக்கையாளர் வைப்புத்தொகையை பதிவு செய்ய இயல்புநிலையாக கணக்கு கணக்கு -UseAuxiliaryAccountOnCustomerDeposit=Use sub-accounts on customer deposit lines +UseAuxiliaryAccountOnCustomerDeposit=Store customer account as individual account in subsidiary ledger for lines of down payments (if disabled, individual account for down payment lines will remain empty) ACCOUNTING_PRODUCT_BUY_ACCOUNT=வாங்கிய பொருட்களுக்கான இயல்புநிலை கணக்கு கணக்கு (தயாரிப்பு தாளில் வரையறுக்கப்படவில்லை என்றால் பயன்படுத்தப்படும்) ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT=EEC இல் வாங்கிய தயாரிப்புகளுக்கான இயல்புநிலை கணக்கு கணக்கு (தயாரிப்பு தாளில் வரையறுக்கப்படவில்லை என்றால் பயன்படுத்தப்படும்) @@ -332,7 +333,7 @@ ACCOUNTING_DISABLE_BINDING_ON_EXPENSEREPORTS=செலவு அறிக்க ## Export NotifiedExportDate=Flag exported lines as Exported (to modify a line, you will need to delete the whole transaction and re-transfert it into accounting) -NotifiedValidationDate=Validate and Lock the exported entries (same effect than the "Closure" feature, modification and deletion of the lines will DEFINITELY not be possible) +NotifiedValidationDate=Validate and Lock the exported entries (same effect than the "%s" feature, modification and deletion of the lines will DEFINITELY not be possible) DateValidationAndLock=Date validation and lock ConfirmExportFile=கணக்கியல் ஏற்றுமதி கோப்பின் தலைமுறையை உறுதிப்படுத்தவா? ExportDraftJournal=ஏற்றுமதி வரைவு இதழ் @@ -427,6 +428,7 @@ SorryThisModuleIsNotCompatibleWithTheExperimentalFeatureOfSituationInvoices=ம AccountancyErrorMismatchLetterCode=Mismatch in reconcile code AccountancyErrorMismatchBalanceAmount=The balance (%s) is not equal to 0 AccountancyErrorLetteringBookkeeping=Errors have occurred concerning the transactions: %s +ErrorAccountNumberAlreadyExists=The accounting number %s already exists ## Import ImportAccountingEntries=கணக்கு பதிவுகள் diff --git a/htdocs/langs/ta_IN/hrm.lang b/htdocs/langs/ta_IN/hrm.lang index 0a31f5cc191..75d86e6469a 100644 --- a/htdocs/langs/ta_IN/hrm.lang +++ b/htdocs/langs/ta_IN/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=திறந்த நிறுவனம் CloseEtablishment=மூடு ஸ்தாபனம் # Dictionary DictionaryPublicHolidays=விடுப்பு - பொது விடுமுறை நாட்கள் -DictionaryDepartment=HRM - துறை பட்டியல் +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM - வேலை நிலைகள் # Module Employees=பணியாளர்கள் @@ -70,12 +70,22 @@ RequiredSkills=இந்த வேலைக்கு தேவையான த UserRank=பயனர் தரவரிசை SkillList=திறன் பட்டியல் SaveRank=தரத்தை சேமிக்கவும் -knowHow=எப்படி தெரியும் -HowToBe=எப்படி இருக்க வேண்டும் -knowledge=அறிவு +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=கைவிடுதல் கருத்து DateLastEval=கடைசி மதிப்பீடு தேதி NoEval=இந்த பணியாளருக்கு எந்த மதிப்பீடும் செய்யப்படவில்லை HowManyUserWithThisMaxNote=இந்த தரவரிசையில் உள்ள பயனர்களின் எண்ணிக்கை HighestRank=மிக உயர்ந்த பதவி SkillComparison=திறன் ஒப்பீடு +ActionsOnJob=Events on this job +VacantPosition=job vacancy +VacantCheckboxHelper=Checking this option will show unfilled positions (job vacancy) +SaveAddSkill = Skill(s) added +SaveLevelSkill = Skill(s) level saved +DeleteSkill = Skill removed +SkillsExtraFields=Attributs supplémentaires (Compétences) +JobsExtraFields=Attributs supplémentaires (Emplois) +EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/ta_IN/install.lang b/htdocs/langs/ta_IN/install.lang index 5f8e39cf4fa..682b5cd7503 100644 --- a/htdocs/langs/ta_IN/install.lang +++ b/htdocs/langs/ta_IN/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=உள்ளமைவு கோப்பு %s ConfFileIsWritable=உள்ளமைவு கோப்பு %s எழுதக்கூடியது. ConfFileMustBeAFileNotADir=உள்ளமைவு கோப்பு %s ஒரு கோப்பாக இருக்க வேண்டும், கோப்பகமாக இருக்கக்கூடாது. ConfFileReload=உள்ளமைவு கோப்பிலிருந்து அளவுருக்களை மீண்டும் ஏற்றுகிறது. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=இந்த PHP ஆனது POST மற்றும் GET ஆகிய மாறிகளை ஆதரிக்கிறது. PHPSupportPOSTGETKo=உங்கள் PHP அமைப்பு POST மற்றும்/அல்லது GET மாறிகளை ஆதரிக்காது. php.ini இல் variables_order அளவுருவைச் சரிபார்க்கவும். PHPSupportSessions=இந்த PHP அமர்வுகளை ஆதரிக்கிறது. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter='%s' என்ற அளவுருவிற்க ErrorFailedToCreateDatabase='%s' தரவுத்தளத்தை உருவாக்குவதில் தோல்வி. ErrorFailedToConnectToDatabase='%s' தரவுத்தளத்துடன் இணைக்க முடியவில்லை. ErrorDatabaseVersionTooLow=தரவுத்தள பதிப்பு (%s) மிகவும் பழையது. %s அல்லது அதற்கு மேற்பட்ட பதிப்பு தேவை. -ErrorPHPVersionTooLow=PHP பதிப்பு மிகவும் பழையது. பதிப்பு %s தேவை. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=சேவையகத்திற்கான இணைப்பு வெற்றிகரமாக உள்ளது ஆனால் தரவுத்தளமான '%s' கிடைக்கவில்லை. ErrorDatabaseAlreadyExists=தரவுத்தளம் '%s' ஏற்கனவே உள்ளது. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=தரவுத்தளம் இல்லை என்றால், திரும்பிச் சென்று "தரவுத்தளத்தை உருவாக்கு" விருப்பத்தை சரிபார்க்கவும். IfDatabaseExistsGoBackAndCheckCreate=தரவுத்தளம் ஏற்கனவே இருந்தால், திரும்பிச் சென்று "தரவுத்தளத்தை உருவாக்கு" விருப்பத்தைத் தேர்வுநீக்கவும். WarningBrowserTooOld=உலாவியின் பதிப்பு மிகவும் பழையது. உங்கள் உலாவியை Firefox, Chrome அல்லது Opera இன் சமீபத்திய பதிப்பிற்கு மேம்படுத்துவது மிகவும் பரிந்துரைக்கப்படுகிறது. diff --git a/htdocs/langs/ta_IN/main.lang b/htdocs/langs/ta_IN/main.lang index b61756b95b0..e8857b01547 100644 --- a/htdocs/langs/ta_IN/main.lang +++ b/htdocs/langs/ta_IN/main.lang @@ -4,7 +4,7 @@ DIRECTION=ltr # msungstdlight or cid0ct are for traditional Chinese (traditional does not render with Ubuntu pdf reader) # stsongstdlight or cid0cs are for simplified Chinese # To read Chinese pdf with Linux: sudo apt-get install poppler-data -FONTFORPDF=freemono +FONTFORPDF=freeserif FONTSIZEFORPDF=10 SeparatorDecimal=. SeparatorThousand=, @@ -244,6 +244,7 @@ Designation=விளக்கம் DescriptionOfLine=வரியின் விளக்கம் DateOfLine=வரியின் தேதி DurationOfLine=வரியின் காலம் +ParentLine=Parent line ID Model=ஆவண டெம்ப்ளேட் DefaultModel=இயல்புநிலை ஆவண டெம்ப்ளேட் Action=நிகழ்வு @@ -344,7 +345,7 @@ KiloBytes=கிலோபைட்டுகள் MegaBytes=மெகாபைட்கள் GigaBytes=ஜிகாபைட்கள் TeraBytes=டெராபைட்டுகள் -UserAuthor=மூலம் அமைக்கப்பட்டது +UserAuthor=Created by UserModif=மூலம் புதுப்பிக்கப்பட்டது b=பி. Kb=கேபி @@ -517,6 +518,7 @@ or=அல்லது Other=மற்றவை Others=மற்றவைகள் OtherInformations=பிற தகவல் +Workflow=Workflow Quantity=அளவு Qty=அளவு ChangedBy=மூலம் மாற்றப்பட்டது @@ -619,6 +621,7 @@ MonthVeryShort11=என் MonthVeryShort12=டி AttachedFiles=இணைக்கப்பட்ட கோப்புகள் மற்றும் ஆவணங்கள் JoinMainDoc=முக்கிய ஆவணத்தில் சேரவும் +JoinMainDocOrLastGenerated=Send the main document or the last generated one if not found DateFormatYYYYMM=YYYY-MM DateFormatYYYYMMDD=YYYY-MM-DD DateFormatYYYYMMDDHHMM=YYYY-MM-DD HH:SS @@ -709,6 +712,7 @@ FeatureDisabled=அம்சம் முடக்கப்பட்டது MoveBox=விட்ஜெட்டை நகர்த்தவும் Offered=வழங்கப்பட்டது NotEnoughPermissions=இந்தச் செயலுக்கு உங்களிடம் அனுமதி இல்லை +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=அமர்வு பெயர் Method=முறை Receive=பெறு @@ -798,6 +802,7 @@ URLPhoto=புகைப்படம்/லோகோவின் URL SetLinkToAnotherThirdParty=மற்றொரு மூன்றாம் தரப்பினருக்கான இணைப்பு LinkTo=இணைப்பு LinkToProposal=முன்மொழிவுக்கான இணைப்பு +LinkToExpedition= Link to expedition LinkToOrder=ஆர்டருக்கான இணைப்பு LinkToInvoice=விலைப்பட்டியலுக்கான இணைப்பு LinkToTemplateInvoice=டெம்ப்ளேட் விலைப்பட்டியலுக்கான இணைப்பு @@ -1164,3 +1169,14 @@ NotClosedYet=இன்னும் மூடவில்லை ClearSignature=கையொப்பத்தை மீட்டமைக்கவும் CanceledHidden=ரத்து செய்யப்பட்டது மறைக்கப்பட்டது CanceledShown=காட்டப்பட்டது ரத்து செய்யப்பட்டது +Terminate=Terminate +Terminated=Terminated +AddLineOnPosition=Add line on position (at the end if empty) +ConfirmAllocateCommercial=Assign sales representative confirmation +ConfirmAllocateCommercialQuestion=Are you sure you want to assign the %s selected record(s)? +CommercialsAffected=Sales representatives affected +CommercialAffected=Sales representative affected +YourMessage=Your message +YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. +UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/ta_IN/members.lang b/htdocs/langs/ta_IN/members.lang index beffc11ef48..60ed236be56 100644 --- a/htdocs/langs/ta_IN/members.lang +++ b/htdocs/langs/ta_IN/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=உறுப்பினர் முடிவு தேத EndSubscription=உறுப்பினர் முடிவு SubscriptionId=பங்களிப்பு ஐடி WithoutSubscription=பங்களிப்பு இல்லாமல் -MemberId=உறுப்பினர் அடையாள எண் +MemberId=Member Id +MemberRef=Member Ref NewMember=புதிய உறுப்பினர் MemberType=உறுப்பினர் வகை MemberTypeId=உறுப்பினர் வகை ஐடி @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=உறுப்பினர் வகையை நீ NewSubscription=புதிய பங்களிப்பு NewSubscriptionDesc=அறக்கட்டளையின் புதிய உறுப்பினராக உங்கள் சந்தாவைப் பதிவுசெய்ய இந்தப் படிவம் உங்களை அனுமதிக்கிறது. உங்கள் சந்தாவைப் புதுப்பிக்க விரும்பினால் (ஏற்கனவே உறுப்பினராக இருந்தால்), அதற்கு பதிலாக %s என்ற மின்னஞ்சல் மூலம் அடித்தள வாரியத்தைத் தொடர்பு கொள்ளவும். Subscription=பங்களிப்பு +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Duration +GetMembershipButtonLabel=Get membership Subscriptions=பங்களிப்புகள் SubscriptionLate=லேட் SubscriptionNotReceived=பங்களிப்பு ஒருபோதும் பெறப்படவில்லை @@ -135,7 +142,7 @@ CardContent=உங்கள் உறுப்பினர் அட்டைய # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=உங்கள் உறுப்பினர் கோரிக்கை பெறப்பட்டது என்பதை உங்களுக்குத் தெரிவிக்க விரும்புகிறோம்.

ThisIsContentOfYourMembershipWasValidated=பின்வரும் தகவலுடன் உங்கள் உறுப்பினர் சரிபார்க்கப்பட்டது என்பதை உங்களுக்குத் தெரிவிக்க விரும்புகிறோம்:

-ThisIsContentOfYourSubscriptionWasRecorded=உங்கள் புதிய சந்தா பதிவுசெய்யப்பட்டது என்பதை உங்களுக்குத் தெரிவிக்க விரும்புகிறோம்.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=உங்கள் சந்தா காலாவதியாகப் போகிறது அல்லது ஏற்கனவே காலாவதியாகிவிட்டது என்பதை உங்களுக்குத் தெரிவிக்க விரும்புகிறோம் (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). நீங்கள் அதை புதுப்பிப்பீர்கள் என்று நம்புகிறோம்.

ThisIsContentOfYourCard=உங்களைப் பற்றி எங்களிடம் உள்ள தகவலின் சுருக்கம் இது. ஏதேனும் தவறாக இருந்தால் எங்களை தொடர்பு கொள்ளவும்.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=விருந்தினரின் தானாகக் கல்வெட்டு ஏற்பட்டால் பெறப்பட்ட அறிவிப்பு மின்னஞ்சலின் பொருள் @@ -198,7 +205,8 @@ NbOfSubscriptions=பங்களிப்புகளின் எண்ணி AmountOfSubscriptions=பங்களிப்புகளிலிருந்து சேகரிக்கப்பட்ட தொகை TurnoverOrBudget=விற்றுமுதல் (ஒரு நிறுவனத்திற்கு) அல்லது பட்ஜெட் (ஒரு அடித்தளத்திற்கு) DefaultAmount=பங்களிப்பு தொகையின் இயல்புநிலை -CanEditAmount=அதன் பங்களிப்பின் அளவை பார்வையாளர் தேர்வு செய்யலாம்/திருத்தலாம் +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=ஒருங்கிணைந்த ஆன்லைன் கட்டணப் பக்கத்தில் செல்லவும் ByProperties=இயற்கையாகவே MembersStatisticsByProperties=இயல்பிலேயே உறுப்பினர்களின் புள்ளிவிவரங்கள் @@ -218,3 +226,5 @@ XExternalUserCreated=%s வெளிப்புற பயனர்(கள்) ForceMemberNature=கட்டாய உறுப்பினர் இயல்பு (தனிநபர் அல்லது நிறுவனம்) CreateDolibarrLoginDesc=உறுப்பினர்களுக்கான பயனர் உள்நுழைவை உருவாக்குவது, பயன்பாட்டோடு இணைக்க அவர்களை அனுமதிக்கிறது. வழங்கப்பட்ட அங்கீகாரங்களைப் பொறுத்து, அவர்கள் தங்கள் கோப்பைக் கலந்தாலோசிக்க அல்லது மாற்றியமைக்க முடியும். CreateDolibarrThirdPartyDesc=மூன்றாம் தரப்பினர் என்பது ஒவ்வொரு பங்களிப்பிற்கும் விலைப்பட்டியல் உருவாக்க முடிவு செய்தால், விலைப்பட்டியலில் பயன்படுத்தப்படும் சட்டப்பூர்வ நிறுவனம் ஆகும். பங்களிப்பைப் பதிவு செய்யும் போது நீங்கள் அதை உருவாக்க முடியும். +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/ta_IN/projects.lang b/htdocs/langs/ta_IN/projects.lang index 31d9293b3d0..5f08cc4a354 100644 --- a/htdocs/langs/ta_IN/projects.lang +++ b/htdocs/langs/ta_IN/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=கட்டணம் செலுத்தப்பட்ட TimeSpentForIntervention=செலவிட்ட நேரம் TimeSpentForInvoice=செலவிட்ட நேரம் OneLinePerUser=ஒரு பயனருக்கு ஒரு வரி -ServiceToUseOnLines=வரிகளில் பயன்படுத்த வேண்டிய சேவை +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=திட்டத்தில் செலவழித்த நேரத்திலிருந்து விலைப்பட்டியல் %s உருவாக்கப்பட்டுள்ளது InterventionGeneratedFromTimeSpent=தலையீடு %s திட்டத்தில் செலவிடப்பட்ட நேரத்திலிருந்து உருவாக்கப்பட்டுள்ளது ProjectBillTimeDescription=திட்டத்தின் பணிகளில் டைம்ஷீட்டை உள்ளிடுகிறீர்களா என்பதைச் சரிபார்த்து, திட்டத்தின் வாடிக்கையாளருக்கு பில் பில் செய்ய டைம்ஷீட்டிலிருந்து விலைப்பட்டியல்(களை) உருவாக்க திட்டமிட்டுள்ளீர்கள் (உள்ளிடப்பட்ட டைம்ஷீட்களின் அடிப்படையில் இல்லாத விலைப்பட்டியலை உருவாக்கத் திட்டமிட்டுள்ளீர்களா எனச் சரிபார்க்க வேண்டாம்). குறிப்பு: விலைப்பட்டியலை உருவாக்க, திட்டத்தின் 'செலவிக்கப்பட்ட நேரம்' தாவலுக்குச் சென்று சேர்க்க வேண்டிய வரிகளைத் தேர்ந்தெடுக்கவும். @@ -294,3 +294,4 @@ EnablePublicLeadForm=Enable the public form for contact NewLeadbyWeb=Your message or request has been recorded. We will answer or contact your soon. NewLeadForm=New contact form LeadFromPublicForm=Online lead from public form +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/tg_TJ/hrm.lang b/htdocs/langs/tg_TJ/hrm.lang index 03c1aa53b3d..e170b0cf1d1 100644 --- a/htdocs/langs/tg_TJ/hrm.lang +++ b/htdocs/langs/tg_TJ/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Муассисаи кушод CloseEtablishment=Муассисаи наздик # Dictionary DictionaryPublicHolidays=Рухсатӣ - рӯзҳои истироҳат -DictionaryDepartment=HRM - Рӯйхати шӯъбаҳо +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM - Ҷойҳои корӣ # Module Employees=Кормандон @@ -20,13 +20,14 @@ Employee=Корманд NewEmployee=Корманди нав ListOfEmployees=Рӯйхати кормандон HrmSetup=HRM module setup -HRM_MAXRANK=Maximum rank for a skill +SkillsManagement=Skills management +HRM_MAXRANK=Maximum number of levels to rank a skill HRM_DEFAULT_SKILL_DESCRIPTION=Default description of ranks when skill is created deplacement=Shift DateEval=Evaluation date JobCard=Job card -Job=Job -Jobs=Jobs +JobPosition=Job +JobsPosition=Jobs NewSkill=New Skill SkillType=Skill type Skilldets=List of ranks for this skill @@ -47,9 +48,8 @@ ConfirmValidateEvaluation=Are you sure you want to validate this evaluation with EvaluationCard=Evaluation card RequiredRank=Required rank for this job EmployeeRank=Employee rank for this skill -Position=Position -Positions=Positions -PositionCard=Position card +EmployeePosition=Employee position +EmployeePositions=Employee positions EmployeesInThisPosition=Employees in this position group1ToCompare=Usergroup to analyze group2ToCompare=Second usergroup for comparison @@ -70,12 +70,22 @@ RequiredSkills=Required skills for this job UserRank=User Rank SkillList=Skill list SaveRank=Save rank -knowHow=Know how -HowToBe=How to be -knowledge=Knowledge +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=Abandonment comment DateLastEval=Date last evaluation NoEval=No evaluation done for this employee HowManyUserWithThisMaxNote=Number of users with this rank HighestRank=Highest rank SkillComparison=Skill comparison +ActionsOnJob=Events on this job +VacantPosition=job vacancy +VacantCheckboxHelper=Checking this option will show unfilled positions (job vacancy) +SaveAddSkill = Skill(s) added +SaveLevelSkill = Skill(s) level saved +DeleteSkill = Skill removed +SkillsExtraFields=Attributs supplémentaires (Compétences) +JobsExtraFields=Attributs supplémentaires (Emplois) +EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/tg_TJ/install.lang b/htdocs/langs/tg_TJ/install.lang index ea747e72573..ac851fed382 100644 --- a/htdocs/langs/tg_TJ/install.lang +++ b/htdocs/langs/tg_TJ/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=Файли танзимот %s навишта н ConfFileIsWritable=Файли танзимот %s навиштан мумкин аст. ConfFileMustBeAFileNotADir=Файли танзимот %s бояд файл бошад, на директория. ConfFileReload=Бозсозии параметрҳо аз файли танзимот. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=Ин PHP тағирёбандаҳои POST ва GET -ро дастгирӣ мекунад. PHPSupportPOSTGETKo=Эҳтимол аст, ки PHP -и шумо тағирёбандаҳои POST ва/ё GET -ро дастгирӣ намекунад. Параметри variables_order -ро дар php.ini санҷед. PHPSupportSessions=Ин PHP сессияҳоро дастгирӣ мекунад. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Шояд шумо барои параметри '%s' ErrorFailedToCreateDatabase=Бунёди махзани '%s' ноком шуд. ErrorFailedToConnectToDatabase=Ба базаи '%s' пайваст шудан муяссар нашуд. ErrorDatabaseVersionTooLow=Версияи пойгоҳи додаҳо (%s) хеле кӯҳна аст. Версияи %s ё болотар лозим аст. -ErrorPHPVersionTooLow=Версияи PHP хеле кӯҳна аст. Версияи %s лозим аст. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Пайвастшавӣ ба сервер муваффақ шуд, аммо пойгоҳи додаҳои '%s' ёфт нашуд. ErrorDatabaseAlreadyExists=Пойгоҳи додаҳои '%s' аллакай вуҷуд дорад. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=Агар пойгоҳи додаҳо вуҷуд надошта бошад, ба қафо баргардед ва имкони "Эҷоди пойгоҳи додаҳо" -ро тафтиш кунед. IfDatabaseExistsGoBackAndCheckCreate=Агар пойгоҳи додаҳо аллакай вуҷуд дошта бошад, ба қафо баргардед ва "Эҷоди пойгоҳи додаҳо" -ро интихоб кунед. WarningBrowserTooOld=Версияи браузер хеле кӯҳна аст. Навсозии браузери шумо ба версияи охирини Firefox, Chrome ё Opera хеле тавсия дода мешавад. diff --git a/htdocs/langs/tg_TJ/main.lang b/htdocs/langs/tg_TJ/main.lang index 470a718cd60..96bf4d9559f 100644 --- a/htdocs/langs/tg_TJ/main.lang +++ b/htdocs/langs/tg_TJ/main.lang @@ -244,6 +244,7 @@ Designation=Тавсиф DescriptionOfLine=Тавсифи хат DateOfLine=Санаи хат DurationOfLine=Давомнокии хат +ParentLine=Parent line ID Model=Шаблон ҳуҷҷат DefaultModel=Шаблон ҳуҷҷати пешфарз Action=Чорабинӣ @@ -344,7 +345,7 @@ KiloBytes=Килобайтҳо MegaBytes=Мегабайт GigaBytes=Гигабайтҳо TeraBytes=Терабайтҳо -UserAuthor=Аз ҷониби интизорӣ +UserAuthor=Created by UserModif=Навсозӣ аз ҷониби b=б. Kb=Кб @@ -517,6 +518,7 @@ or=ё Other=Дигар Others=Дигарон OtherInformations=Маълумоти дигар +Workflow=Workflow Quantity=Миқдор Qty=Миқдори ChangedBy=Аз ҷониби тағир дода шудааст @@ -619,6 +621,7 @@ MonthVeryShort11=Н. MonthVeryShort12=Д. AttachedFiles=Файлҳо ва ҳуҷҷатҳои замимашуда JoinMainDoc=Ба ҳуҷҷати асосӣ ҳамроҳ шавед +JoinMainDocOrLastGenerated=Send the main document or the last generated one if not found DateFormatYYYYMM=YYYY-MM DateFormatYYYYMMDD=YYYY-MM-DD DateFormatYYYYMMDDHHMM=YYYY-MM-DD HH: SS @@ -709,6 +712,7 @@ FeatureDisabled=Хусусият хомӯш карда шудааст MoveBox=Виджетро интиқол диҳед Offered=Пешниҳод шудааст NotEnoughPermissions=Шумо барои ин амал иҷозат надоред +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=Номи сессия Method=Усул Receive=Гирифтан @@ -798,6 +802,7 @@ URLPhoto=URL -и акс/логотип SetLinkToAnotherThirdParty=Истинод ба шахси сеюм LinkTo=Истинод ба LinkToProposal=Пайванд ба пешниҳод +LinkToExpedition= Link to expedition LinkToOrder=Истинод ба фармоиш LinkToInvoice=Истинод ба ҳисобнома -фактура LinkToTemplateInvoice=Истинод ба ҳисобнома -фактура @@ -1164,3 +1169,14 @@ NotClosedYet=Not yet closed ClearSignature=Reset signature CanceledHidden=Canceled hidden CanceledShown=Canceled shown +Terminate=Terminate +Terminated=Terminated +AddLineOnPosition=Add line on position (at the end if empty) +ConfirmAllocateCommercial=Assign sales representative confirmation +ConfirmAllocateCommercialQuestion=Are you sure you want to assign the %s selected record(s)? +CommercialsAffected=Sales representatives affected +CommercialAffected=Sales representative affected +YourMessage=Your message +YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. +UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/tg_TJ/members.lang b/htdocs/langs/tg_TJ/members.lang index 43a74d7b508..aa189d45d8e 100644 --- a/htdocs/langs/tg_TJ/members.lang +++ b/htdocs/langs/tg_TJ/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=End date of membership EndSubscription=End of membership SubscriptionId=Contribution ID WithoutSubscription=Without contribution -MemberId=Идентификатсияи аъзо +MemberId=Member Id +MemberRef=Member Ref NewMember=Аъзои нав MemberType=Навъи аъзо MemberTypeId=Идентификатори намуди аъзо @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Навъи аъзоро нест кардан мумк NewSubscription=New contribution NewSubscriptionDesc=Ин шакл ба шумо имкон медиҳад, ки обунаи худро ҳамчун узви нави бунёд сабт кунед. Агар шумо хоҳед, ки обунаи худро навсозӣ кунед (агар аллакай узв бошад), лутфан ба Шӯрои бунёд тавассути почтаи электронии %s муроҷиат кунед. Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Duration +GetMembershipButtonLabel=Get membership Subscriptions=Contributions SubscriptionLate=Дер SubscriptionNotReceived=Contribution never received @@ -135,7 +142,7 @@ CardContent=Мундариҷаи корти узви шумо # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=Мо мехоҳем ба шумо хабар диҳем, ки дархости узвияти шумо қабул шудааст.

ThisIsContentOfYourMembershipWasValidated=Мо мехоҳем ба шумо хабар диҳем, ки узвияти шумо бо маълумоти зерин тасдиқ карда шудааст:

-ThisIsContentOfYourSubscriptionWasRecorded=Мо мехоҳем ба шумо хабар диҳем, ки обунаи нави шумо сабт шудааст.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=Мо мехоҳем ба шумо хабар диҳем, ки обунаи шумо ба охир мерасад ё аллакай ба охир расидааст (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Умедворем, ки шумо онро навсозӣ мекунед.

ThisIsContentOfYourCard=Ин хулосаи маълумоти мо дар бораи шумост. Лутфан бо мо тамос гиред, агар чизе нодуруст бошад.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Мавзӯи почтаи огоҳинома дар сурати худкор навиштани меҳмон гирифта мешавад @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=Гардиш (барои ширкат) ё буҷет (барои таҳкурсӣ) DefaultAmount=Default amount of contribution -CanEditAmount=Visitor can choose/edit amount of its contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Ба саҳифаи маҷмӯии пардохти онлайн гузаред ByProperties=Аз рӯи табиат MembersStatisticsByProperties=Аъзоёни омор аз рӯи табиат @@ -218,3 +226,5 @@ XExternalUserCreated=%s корбари беруна сохта шудааст ForceMemberNature=Хусусияти узви қувва (инфиродӣ ё корпоративӣ) CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/tg_TJ/projects.lang b/htdocs/langs/tg_TJ/projects.lang index 0a529de8455..b5fadb314a1 100644 --- a/htdocs/langs/tg_TJ/projects.lang +++ b/htdocs/langs/tg_TJ/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=Вақти сарфшуда ҳисоб карда мешава TimeSpentForIntervention=Вақти сарфшуда TimeSpentForInvoice=Вақти сарфшуда OneLinePerUser=Як сатр барои як корбар -ServiceToUseOnLines=Хизмат барои истифода дар хатҳо +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=Ҳисобнома -фактура %s аз вақти сарфшуда дар лоиҳа таҳия шудааст InterventionGeneratedFromTimeSpent=Мудохила %s аз вақти сарфшуда дар лоиҳа тавлид шудааст ProjectBillTimeDescription=Санҷед, ки оё шумо ба ҷадвали вақт оид ба вазифаҳои лоиҳа ворид мешавед ВА шумо ният доред, ки аз ҷадвали вақт ҳисобнома -фактура (ҳо) эҷод кунед, то ба фармоишгари лоиҳа ҳисоб кунед (оё тафтиш накунед, ки оё шумо нақшаи ҳисобнома -фактураро тартиб додаед, ки ба ҷадвали вақт дохил нашудааст). Эзоҳ: Барои таҳияи ҳисобнома -фактура, ба ҷадвали 'Вақти сарфшуда' -и лоиҳа гузаред ва сатрҳои дохилшударо интихоб кунед. @@ -294,3 +294,4 @@ EnablePublicLeadForm=Enable the public form for contact NewLeadbyWeb=Your message or request has been recorded. We will answer or contact your soon. NewLeadForm=New contact form LeadFromPublicForm=Online lead from public form +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/th_TH/holiday.lang b/htdocs/langs/th_TH/holiday.lang index 17f16cda631..8bdc9f62826 100644 --- a/htdocs/langs/th_TH/holiday.lang +++ b/htdocs/langs/th_TH/holiday.lang @@ -4,6 +4,7 @@ Holidays=Leave CPTitreMenu=Leave MenuReportMonth=คำสั่งรายเดือน MenuAddCP=คำขอลาใหม่ +MenuCollectiveAddCP=New collective leave request NotActiveModCP=You must enable the module Leave to view this page. AddCP=ขอลา DateDebCP=วันที่เริ่มต้น @@ -79,6 +80,8 @@ MotifCP=เหตุผล UserCP=ผู้ใช้งาน ErrorAddEventToUserCP=เกิดข้อผิดพลาดในขณะที่เพิ่มการลาพิเศษ AddEventToUserOkCP=นอกเหนือจากการลาพิเศษเสร็จเรียบร้อยแล้ว +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=ดูบันทึกการเปลี่ยนแปลง LogCP=Log of all updates made to "Balance of Leave" ActionByCP=Updated by @@ -86,6 +89,13 @@ UserUpdateCP=Updated for PrevSoldeCP=คงเหลือก่อนหน้า NewSoldeCP=นิวบาลานซ์ alreadyCPexist=คำขอลาได้ทำไปแล้วในเวลานี้ +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=กลุ่ม +users=ผู้ใช้ +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Beginning day of leave request LastDayOfHoliday=Ending day of leave request BoxTitleLastLeaveRequests=Latest %s modified leave requests diff --git a/htdocs/langs/th_TH/install.lang b/htdocs/langs/th_TH/install.lang index 87e87a11afc..041c1efd3b1 100644 --- a/htdocs/langs/th_TH/install.lang +++ b/htdocs/langs/th_TH/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=ไฟล์การกำหนดค่า %sไ ConfFileIsWritable=ไฟล์การกำหนดค่า %sสามารถเขียนได้ ConfFileMustBeAFileNotADir=ไฟล์การกำหนดค่า %sต้องเป็นไฟล์ ไม่ใช่ไดเร็กทอรี ConfFileReload=กำลังโหลดพารามิเตอร์อีกครั้งจากไฟล์การกำหนดค่า -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=PHP นี้สนับสนุนตัวแปร POST และ GET PHPSupportPOSTGETKo=เป็นไปได้ว่าการตั้งค่า PHP ของคุณไม่รองรับตัวแปร POST และ/หรือ GET ตรวจสอบพารามิเตอร์ variables_order ใน php.ini PHPSupportSessions=PHP นี้รองรับเซสชัน @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=คุณอาจจะพิมพ์ค่าท ErrorFailedToCreateDatabase=ไม่สามารถสร้างฐานข้อมูล '%s' ErrorFailedToConnectToDatabase=ไม่สามารถเชื่อมต่อกับฐานข้อมูล '%s' ErrorDatabaseVersionTooLow=เวอร์ชั่นฐานข้อมูล (%s) เก่าเกินไป ต้องใช้เวอร์ชั่น %s หรือสูงกว่า -ErrorPHPVersionTooLow=PHP รุ่นเก่าเกินไป % s รุ่นจะต้อง +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=การเชื่อมต่อกับเซิร์ฟเวอร์สำเร็จ แต่ไม่พบฐานข้อมูล '%s' ErrorDatabaseAlreadyExists=ฐานข้อมูล '%s' อยู่แล้ว +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=หากไม่มีฐานข้อมูล ให้ย้อนกลับและเลือกตัวเลือก "สร้างฐานข้อมูล" IfDatabaseExistsGoBackAndCheckCreate=ถ้าฐานข้อมูลที่มีอยู่แล้วให้กลับไปและยกเลิก "สร้างฐานข้อมูลตัวเลือก" WarningBrowserTooOld=เวอร์ชันของเบราว์เซอร์เก่าเกินไป ขอแนะนำให้อัปเกรดเบราว์เซอร์ของคุณเป็น Firefox, Chrome หรือ Opera เวอร์ชันล่าสุด diff --git a/htdocs/langs/th_TH/members.lang b/htdocs/langs/th_TH/members.lang index db2de131b02..3beda63d220 100644 --- a/htdocs/langs/th_TH/members.lang +++ b/htdocs/langs/th_TH/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=End date of membership EndSubscription=End of membership SubscriptionId=Contribution ID WithoutSubscription=Without contribution -MemberId=รหัสสมาชิก +MemberId=Member Id +MemberRef=Member Ref NewMember=สมาชิกใหม่ MemberType=ประเภทสมาชิก MemberTypeId=หมายเลขสมาชิกประเภท @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Member type can not be deleted NewSubscription=ผลงานใหม่ NewSubscriptionDesc=รูปแบบนี้จะช่วยให้คุณสามารถบันทึกการสมัครสมาชิกของคุณเป็นสมาชิกใหม่ของมูลนิธิ หากคุณต้องการที่จะต่ออายุการเป็นสมาชิกของคุณ (ถ้าเป็นสมาชิกอยู่แล้ว) กรุณาติดต่อคณะกรรมการมูลนิธิแทนโดยการส่งอีเมล์% s Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=ระยะเวลา +GetMembershipButtonLabel=Get membership Subscriptions=Contributions SubscriptionLate=สาย SubscriptionNotReceived=Contribution never received @@ -135,7 +142,7 @@ CardContent=เนื้อหาของบัตรสมาชิกขอ # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=We want to let you know that your membership request was received.

ThisIsContentOfYourMembershipWasValidated=We want to let you know that your membership was validated with the following information:

-ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=We want to let you know that your subscription is about to expire or has already expired (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). We hope you will renew it.

ThisIsContentOfYourCard=This is a summary of the information we have about you. Please contact us if anything is incorrect.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Subject of the notification email received in case of auto-inscription of a guest @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=มูลค่าการซื้อขาย (สำหรับ บริษัท ) หรืองบประมาณ (มูลนิธิ) DefaultAmount=Default amount of contribution -CanEditAmount=Visitor can choose/edit amount of its contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=กระโดดขึ้นไปบนหน้าการชำระเงินออนไลน์แบบบูรณาการ ByProperties=By nature MembersStatisticsByProperties=Members statistics by nature @@ -218,3 +226,5 @@ XExternalUserCreated=%s external user(s) created ForceMemberNature=Force member nature (Individual or Corporation) CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/th_TH/stocks.lang b/htdocs/langs/th_TH/stocks.lang index a1ff3eff301..1a7262d62ce 100644 --- a/htdocs/langs/th_TH/stocks.lang +++ b/htdocs/langs/th_TH/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Stock limit for alert and desired optimal stock cor ProductStockWarehouseUpdated=Stock limit for alert and desired optimal stock correctly updated ProductStockWarehouseDeleted=Stock limit for alert and desired optimal stock correctly deleted AddNewProductStockWarehouse=Set new limit for alert and desired optimal stock -AddStockLocationLine=Decrease quantity then click to add another warehouse for this product +AddStockLocationLine=Decrease quantity then click to split the line InventoryDate=Inventory date Inventories=Inventories NewInventory=New inventory @@ -254,7 +254,7 @@ ReOpen=เปิดใหม่ ConfirmFinish=Do you confirm the closing of the inventory ? This will generate all stock movements to update your stock to the real qty you entered into the inventory. ObjectNotFound=%s not found MakeMovementsAndClose=Generate movements and close -AutofillWithExpected=Replace real quantity with expected quantity +AutofillWithExpected=Fill real quantity with expected quantity ShowAllBatchByDefault=By default, show batch details on product "stock" tab CollapseBatchDetailHelp=You can set batch detail default display in stocks module configuration ErrorWrongBarcodemode=Unknown Barcode mode @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Product with barcode does not exist WarehouseId=Warehouse ID WarehouseRef=Warehouse Ref SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ToStart=เริ่มต้น InventoryStartedShort=เริ่มต้น ErrorOnElementsInventory=Operation canceled for the following reason: ErrorCantFindCodeInInventory=Can't find the following code in inventory QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requested barcode. You can close the Scanner tool. StockChangeDisabled=Change on stock disabled NoWarehouseDefinedForTerminal=No warehouse defined for terminal +ClearQtys=Clear all quantities +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=Settings +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/tr_TR/holiday.lang b/htdocs/langs/tr_TR/holiday.lang index 45bd42c217c..1c721245a07 100644 --- a/htdocs/langs/tr_TR/holiday.lang +++ b/htdocs/langs/tr_TR/holiday.lang @@ -4,6 +4,7 @@ Holidays=İzinler CPTitreMenu=İzinler MenuReportMonth=Aylık özet MenuAddCP=Yeni izin isteği +MenuCollectiveAddCP=New collective leave request NotActiveModCP=Bu sayfayı görüntülemek için İzin modülünü etkinleştirmelisiniz. AddCP=Bir izin isteği yap DateDebCP=Başlama tarihi @@ -79,6 +80,8 @@ MotifCP=Neden UserCP=Kullanıcı ErrorAddEventToUserCP=Özel izin eklenirken hata oluştu. AddEventToUserOkCP=Özel izin eklenmesi tamamlanmıştır. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=Değişiklik kütüklerini incele LogCP=Log of all updates made to "Balance of Leave" ActionByCP=Updated by @@ -86,6 +89,13 @@ UserUpdateCP=Updated for PrevSoldeCP=Önceki Bakiye NewSoldeCP=Yeni Bakiye alreadyCPexist=Bu dönem için bir izin isteği zaten yapılmış. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Gruplar +users=Kullanıcılar +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Beginning day of leave request LastDayOfHoliday=Ending day of leave request BoxTitleLastLeaveRequests=Değiştirilen son %s izin isteği diff --git a/htdocs/langs/tr_TR/hrm.lang b/htdocs/langs/tr_TR/hrm.lang index 89d3d4449bb..9bf699c895b 100644 --- a/htdocs/langs/tr_TR/hrm.lang +++ b/htdocs/langs/tr_TR/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Kuruluş aç CloseEtablishment=Kuruluş kapat # Dictionary DictionaryPublicHolidays=Leave - Public holidays -DictionaryDepartment=İKY - Departman listesi +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM - Job positions # Module Employees=Çalışanlar @@ -20,13 +20,14 @@ Employee=Çalışan NewEmployee=Yeni çalışan ListOfEmployees=Çalışanlar listesi HrmSetup=İK modülü ayarları -HRM_MAXRANK=Maximum rank for a skill +SkillsManagement=Skills management +HRM_MAXRANK=Maximum number of levels to rank a skill HRM_DEFAULT_SKILL_DESCRIPTION=Default description of ranks when skill is created deplacement=Shift DateEval=Evaluation date JobCard=Job card -Job=İş -Jobs=Jobs +JobPosition=İş +JobsPosition=Jobs NewSkill=New Skill SkillType=Skill type Skilldets=List of ranks for this skill @@ -47,9 +48,8 @@ ConfirmValidateEvaluation=Are you sure you want to validate this evaluation with EvaluationCard=Evaluation card RequiredRank=Required rank for this job EmployeeRank=Bu yetenek için çalışan sıralaması -Position=Konum -Positions=Positions -PositionCard=Position card +EmployeePosition=Employee position +EmployeePositions=Employee positions EmployeesInThisPosition=Bu pozisyondaki çalışanlar group1ToCompare=Usergroup to analyze group2ToCompare=Second usergroup for comparison @@ -70,12 +70,22 @@ RequiredSkills=Required skills for this job UserRank=User Rank SkillList=Skill list SaveRank=Save rank -knowHow=Know how -HowToBe=How to be -knowledge=Knowledge +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=Abandonment comment DateLastEval=Date last evaluation NoEval=Bu çalışan için değerlendirme yapılmadı HowManyUserWithThisMaxNote=Number of users with this rank HighestRank=Highest rank SkillComparison=Skill comparison +ActionsOnJob=Events on this job +VacantPosition=job vacancy +VacantCheckboxHelper=Checking this option will show unfilled positions (job vacancy) +SaveAddSkill = Skill(s) added +SaveLevelSkill = Skill(s) level saved +DeleteSkill = Skill removed +SkillsExtraFields=Attributs supplémentaires (Compétences) +JobsExtraFields=Attributs supplémentaires (Emplois) +EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/tr_TR/install.lang b/htdocs/langs/tr_TR/install.lang index 08afdf7307b..5ce83ac323e 100644 --- a/htdocs/langs/tr_TR/install.lang +++ b/htdocs/langs/tr_TR/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=%s yapılandırma dosyası yazılabilir değil. İz ConfFileIsWritable=%s yapılandırma dosyası yazılabilir. ConfFileMustBeAFileNotADir=%s yapılandırma dosyası bir dizin değil, dosya olmalıdır. ConfFileReload=Yapılandırma dosyasındaki parametreleri yeniden yükleme. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=Bu PHP GÖNDER ve AL değişkenlerini destekliyor. PHPSupportPOSTGETKo=It's possible your PHP setup does not support variables POST and/or GET. Check the parameter variables_order in php.ini. PHPSupportSessions=Bu PHP oturumları destekliyor. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Parametresi '%s' için yanlış değer yazmış olab ErrorFailedToCreateDatabase=Veritabanı '%s' oluşturulamadı. ErrorFailedToConnectToDatabase=Veritabanı '%s' e bağlanılamadı. ErrorDatabaseVersionTooLow=Veritabanı sürümü (%s) çok eski. Sürüm %s ya da daha yükseği gerekir. -ErrorPHPVersionTooLow=PHP sürümü çok eski. %s Sürümü gereklidir. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Sunucuya bağlantı başarılı fakat '%s' veritabanı bulunamadı. ErrorDatabaseAlreadyExists=Veritabanı '%s' zaten var. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=Veritabanı mevcut değilse geri gidin ve "Veritabanı oluştur" seçeneğini kontrol edin. IfDatabaseExistsGoBackAndCheckCreate=Eğer veritabanı zaten mevcutsa, geri gidin ve "Veritabanı oluştur" seçeneğindeki işareti kaldırın. WarningBrowserTooOld=Tarayıcı sürümü çok eski. Tarayıcınızı Firefox, Chrome veya Opera'nın en son sürümlerine güncellemeniz önemle tavsiye edilir. diff --git a/htdocs/langs/tr_TR/main.lang b/htdocs/langs/tr_TR/main.lang index f9a71e2c878..b61e48a7b68 100644 --- a/htdocs/langs/tr_TR/main.lang +++ b/htdocs/langs/tr_TR/main.lang @@ -244,6 +244,7 @@ Designation=Açıklama DescriptionOfLine=Satır açıklaması DateOfLine=Date of line DurationOfLine=Duration of line +ParentLine=Parent line ID Model=Doküman şablonu DefaultModel=Varsayılan doküman şablonu Action=Etkinlik @@ -344,7 +345,7 @@ KiloBytes=Kilobayt MegaBytes=Megabayt GigaBytes=Gigabayt TeraBytes=Terabayt -UserAuthor=Ceated by +UserAuthor=Oluşturan UserModif=Updated by b=bayt Kb=Kb @@ -517,6 +518,7 @@ or=veya Other=Diğer Others=Diğerleri OtherInformations=Diğer Bilgiler +Workflow=İş akışı Quantity=Miktar Qty=Miktar ChangedBy=Değiştiren @@ -619,6 +621,7 @@ MonthVeryShort11=Ka MonthVeryShort12=Ar AttachedFiles=Ekli dosya ve belgeler JoinMainDoc=Join main document +JoinMainDocOrLastGenerated=Send the main document or the last generated one if not found DateFormatYYYYMM=YYYY-AA DateFormatYYYYMMDD=YYYY-AA-GG DateFormatYYYYMMDDHHMM=YYYY-AA-GG SS:SS @@ -709,6 +712,7 @@ FeatureDisabled=Özellik devre dışı MoveBox=Ekran etiketini taşı Offered=Önerilen NotEnoughPermissions=Bu eylem için izininiz yok +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=Oturum adı Method=Yöntem Receive=Al @@ -798,6 +802,7 @@ URLPhoto=Fotoğraf/logo İnternet adresi SetLinkToAnotherThirdParty=Başka bir üçüncü partiye bağlantı LinkTo=Buna bağlantıla LinkToProposal=Teklife bağlantıla +LinkToExpedition= Link to expedition LinkToOrder=Siparişe bağlantıla LinkToInvoice=Faturaya bağlantıla LinkToTemplateInvoice=Şablon faturasına bağlantı @@ -1164,3 +1169,14 @@ NotClosedYet=Not yet closed ClearSignature=Reset signature CanceledHidden=Canceled hidden CanceledShown=Canceled shown +Terminate=Sonlandır +Terminated=Sonlandırılmış +AddLineOnPosition=Add line on position (at the end if empty) +ConfirmAllocateCommercial=Assign sales representative confirmation +ConfirmAllocateCommercialQuestion=Are you sure you want to assign the %s selected record(s)? +CommercialsAffected=Sales representatives affected +CommercialAffected=Sales representative affected +YourMessage=Your message +YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. +UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/tr_TR/members.lang b/htdocs/langs/tr_TR/members.lang index 373d86d8bc4..8b772e17219 100644 --- a/htdocs/langs/tr_TR/members.lang +++ b/htdocs/langs/tr_TR/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=End date of membership EndSubscription=End of membership SubscriptionId=Contribution ID WithoutSubscription=Without contribution -MemberId=Üye kimliği +MemberId=Member Id +MemberRef=Member Ref NewMember=Yeni üye MemberType=Üyelik türü MemberTypeId=Üyelik türü kimliği @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Üye türü silinemiyor NewSubscription=Yeni katkı payı NewSubscriptionDesc=Bu form aboneliğinizi derneğe yeni bir üye olarak kaydetmenize olanak verir. Abonelik yenilemek istiyorsanız (Zaten üyeyseniz), dernek yönetimine %s e-postası ile başvurun. Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Süre +GetMembershipButtonLabel=Get membership Subscriptions=Contributions SubscriptionLate=Son SubscriptionNotReceived=Contribution never received @@ -135,7 +142,7 @@ CardContent=Üye kartınızın içeriği # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=We want to let you know that your membership request was received.

ThisIsContentOfYourMembershipWasValidated=We want to let you know that your membership was validated with the following information:

-ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=We want to let you know that your subscription is about to expire or has already expired (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). We hope you will renew it.

ThisIsContentOfYourCard=This is a summary of the information we have about you. Please contact us if anything is incorrect.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Subject of the notification email received in case of auto-inscription of a guest @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=Ciro (bir firma için) veya Bütçe (bir dernek için) DefaultAmount=Default amount of contribution -CanEditAmount=Visitor can choose/edit amount of its contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Entegre çevrimiçi ödeme sayfasına atla ByProperties=By nature MembersStatisticsByProperties=Yapısına göre üye istatistikleri @@ -218,3 +226,5 @@ XExternalUserCreated=%s external user(s) created ForceMemberNature=Force member nature (Individual or Corporation) CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/tr_TR/stocks.lang b/htdocs/langs/tr_TR/stocks.lang index d633833926d..8cccb817bb6 100644 --- a/htdocs/langs/tr_TR/stocks.lang +++ b/htdocs/langs/tr_TR/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Stock limit for alert and desired optimal stock cor ProductStockWarehouseUpdated=Stock limit for alert and desired optimal stock correctly updated ProductStockWarehouseDeleted=Stock limit for alert and desired optimal stock correctly deleted AddNewProductStockWarehouse=Set new limit for alert and desired optimal stock -AddStockLocationLine=Decrease quantity then click to add another warehouse for this product +AddStockLocationLine=Decrease quantity then click to split the line InventoryDate=Envanter tarihi Inventories=Envanterler NewInventory=Yeni envanter @@ -254,7 +254,7 @@ ReOpen=Yeniden aç ConfirmFinish=Do you confirm the closing of the inventory ? This will generate all stock movements to update your stock to the real qty you entered into the inventory. ObjectNotFound=%s not found MakeMovementsAndClose=Generate movements and close -AutofillWithExpected=Replace real quantity with expected quantity +AutofillWithExpected=Fill real quantity with expected quantity ShowAllBatchByDefault=By default, show batch details on product "stock" tab CollapseBatchDetailHelp=You can set batch detail default display in stocks module configuration ErrorWrongBarcodemode=Unknown Barcode mode @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Product with barcode does not exist WarehouseId=Depo Kimlik Numarası WarehouseRef=Depo Referansı SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ToStart=Başlat InventoryStartedShort=Başladı ErrorOnElementsInventory=Operation canceled for the following reason: ErrorCantFindCodeInInventory=Can't find the following code in inventory QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requested barcode. You can close the Scanner tool. StockChangeDisabled=Change on stock disabled NoWarehouseDefinedForTerminal=No warehouse defined for terminal +ClearQtys=Clear all quantities +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=Ayarlar +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/uk_UA/accountancy.lang b/htdocs/langs/uk_UA/accountancy.lang index ad867df1a85..62544161df4 100644 --- a/htdocs/langs/uk_UA/accountancy.lang +++ b/htdocs/langs/uk_UA/accountancy.lang @@ -48,8 +48,9 @@ CountriesNotInEEC=Країни, які не входять до ЄЕС CountriesInEECExceptMe=Країни ЄЕС, крім %s CountriesExceptMe=Усі країни, крім %s AccountantFiles=Експортувати вихідні документи -ExportAccountingSourceDocHelp=За допомогою цього інструмента ви можете експортувати вихідні події (список у CSV та PDF-файлах), які використовуються для створення вашого обліку. +ExportAccountingSourceDocHelp=With this tool, you can search and export the source events that are used to generate your accountancy.
The exported ZIP file will contain the lists of requested items in CSV, as well as their attached files in their original format (PDF, ODT, DOCX...). ExportAccountingSourceDocHelp2=Щоб експортувати свої журнали, використовуйте пункт меню %s - %s. +ExportAccountingProjectHelp=Specify a project if you need an accounting report only for a specific project. Expense reports and loan payments are not included in project reports. VueByAccountAccounting=Переглянути за обліковим записом VueBySubAccountAccounting=Перегляд за бухгалтерським субрахунком @@ -161,7 +162,7 @@ BANK_DISABLE_DIRECT_INPUT=Вимкнути прямий запис транза ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL=Увімкнути експорт чернетки в журналі ACCOUNTANCY_COMBO_FOR_AUX=Увімкнути комбінований список для дочірнього облікового запису (може працювати повільно, якщо у вас багато третіх сторін, порушує можливість пошуку на частині вартості) ACCOUNTING_DATE_START_BINDING=Визначте дату початку зв’язування та перенесення в бухгалтерію. Нижче цієї дати операції не будуть передані до бухгалтерського обліку. -ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=Під час перенесення бухгалтерського обліку виберіть відображення періоду за замовчуванням +ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=On accountancy transfer, what is the period selected by default ACCOUNTING_SELL_JOURNAL=Sell journal ACCOUNTING_PURCHASE_JOURNAL=Purchase journal @@ -182,7 +183,7 @@ DONATION_ACCOUNTINGACCOUNT=Обліковий рахунок для реєстр ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=Обліковий запис для реєстрації підписок ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=Обліковий рахунок за замовчуванням для реєстрації депозиту клієнта -UseAuxiliaryAccountOnCustomerDeposit=Use sub-accounts on customer deposit lines +UseAuxiliaryAccountOnCustomerDeposit=Store customer account as individual account in subsidiary ledger for lines of down payments (if disabled, individual account for down payment lines will remain empty) ACCOUNTING_PRODUCT_BUY_ACCOUNT=Обліковий рахунок за замовчуванням для купленої продукції (використовується, якщо не визначено в товарному аркуші) ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT=Обліковий рахунок за замовчуванням для купленої продукції в ЄЕС (використовується, якщо не визначено в товарному аркуші) @@ -332,7 +333,7 @@ ACCOUNTING_DISABLE_BINDING_ON_EXPENSEREPORTS=Вимкнути прив'язку ## Export NotifiedExportDate=Позначте експортовані рядки як експортовані (щоб змінити рядок, вам потрібно буде видалити всю транзакцію та повторно перенести її в облік) -NotifiedValidationDate=Перевірте та заблокуйте експортовані записи (той самий ефект, що й функція «Закриття», зміна та видалення рядків ОБОВ’ЯЗКОВО неможливі) +NotifiedValidationDate=Validate and Lock the exported entries (same effect than the "%s" feature, modification and deletion of the lines will DEFINITELY not be possible) DateValidationAndLock=Перевірка дати та блокування ConfirmExportFile=Підтвердження створення файлу експорту бухгалтерського обліку? ExportDraftJournal=Експортувати чернетку журналу @@ -427,6 +428,7 @@ SorryThisModuleIsNotCompatibleWithTheExperimentalFeatureOfSituationInvoices=На AccountancyErrorMismatchLetterCode=Невідповідність коду узгодження AccountancyErrorMismatchBalanceAmount=Залишок (%s) не дорівнює 0 AccountancyErrorLetteringBookkeeping=Сталися помилки щодо транзакцій: %s +ErrorAccountNumberAlreadyExists=The accounting number %s already exists ## Import ImportAccountingEntries=Бухгалтерські проводки diff --git a/htdocs/langs/uk_UA/hrm.lang b/htdocs/langs/uk_UA/hrm.lang index cc698bc8ad1..9175e5488ca 100644 --- a/htdocs/langs/uk_UA/hrm.lang +++ b/htdocs/langs/uk_UA/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Відкритий заклад CloseEtablishment=Закритий заклад # Dictionary DictionaryPublicHolidays=Відпустка - державні свята -DictionaryDepartment=HRM - Список відділів +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM - Посади # Module Employees=Співробітники @@ -70,9 +70,9 @@ RequiredSkills=Необхідні навички для цієї роботи UserRank=Ранг користувача SkillList=Список навичок SaveRank=Збережіть звання -knowHow=Ноу-хау -HowToBe=Як бути -knowledge=Знання +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=Коментар про відмову DateLastEval=Дата останньої оцінки NoEval=Оцінка цього працівника не проводилася @@ -88,3 +88,4 @@ DeleteSkill = Навик видалено SkillsExtraFields=Attributs supplémentaires (Compétences) JobsExtraFields=Додаткові атрибути (Emplois) EvaluationsExtraFields=Attributes supplémentaires (оцінки) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/uk_UA/install.lang b/htdocs/langs/uk_UA/install.lang index 5c1f2d40b02..de4b97ac2a8 100644 --- a/htdocs/langs/uk_UA/install.lang +++ b/htdocs/langs/uk_UA/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=Файл конфігурації %s недост ConfFileIsWritable=Файл конфігурації %s доступний для запису. ConfFileMustBeAFileNotADir=Файл конфігурації %s має бути файлом, а не каталогом. ConfFileReload=Перезавантаження параметрів з конфігураційного файлу. -NoReadableConfFileSoStartInstall=Конфігураційний файл conf/conf.php не існує або його не можна знайти. Ми запустимо процес встановлення, щоб спробувати його ініціалізувати. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=Цей PHP підтримує змінні POST і GET. PHPSupportPOSTGETKo=Можливо, ваші налаштування PHP не підтримують змінні POST та/або GET. Перевірте параметр variables_order у php.ini. PHPSupportSessions=Цей PHP підтримує сеанси. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Можливо, ви ввели неправильн ErrorFailedToCreateDatabase=Не вдалося створити базу даних "%s". ErrorFailedToConnectToDatabase=Не вдалося підключитися до бази даних "%s". ErrorDatabaseVersionTooLow=Версія бази даних (%s) застаріла. Потрібна версія %s або вище. -ErrorPHPVersionTooLow=Версія PHP занадто стара. Необхідна версія %s. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Підключення до сервера успішне, але база даних '%s' не знайдена. ErrorDatabaseAlreadyExists=База даних '%s' вже існує. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=Якщо бази даних не існує, поверніться назад і поставте прапорець «Створити базу даних». IfDatabaseExistsGoBackAndCheckCreate=Якщо база даних уже існує, поверніться назад і зніміть прапорець «Створити базу даних». WarningBrowserTooOld=Версія браузера застаріла. Настійно рекомендується оновити свій браузер до останньої версії Firefox, Chrome або Opera. diff --git a/htdocs/langs/uk_UA/main.lang b/htdocs/langs/uk_UA/main.lang index 43cea0671c4..a06f684a5b0 100644 --- a/htdocs/langs/uk_UA/main.lang +++ b/htdocs/langs/uk_UA/main.lang @@ -345,7 +345,7 @@ KiloBytes=Кілобайти MegaBytes=мегабайти GigaBytes=гігабайти TeraBytes=терабайти -UserAuthor=Переведено +UserAuthor=Створено UserModif=Оновлено b=б. Kb=Кб @@ -712,6 +712,7 @@ FeatureDisabled=Функція вимкнена MoveBox=Перемістити віджет Offered=Запропоновано NotEnoughPermissions=У вас немає дозволу на цю дію +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=Назва сеансу Method=Метод Receive=Отримати @@ -801,6 +802,7 @@ URLPhoto=URL-адреса фотографії/логотипа SetLinkToAnotherThirdParty=Посилання на іншу третю сторону LinkTo=Посилання на LinkToProposal=Посилання на пропозицію +LinkToExpedition= Link to expedition LinkToOrder=Посилання на замовлення LinkToInvoice=Посилання на рахунок-фактуру LinkToTemplateInvoice=Посилання на шаблон рахунка-фактури @@ -1174,3 +1176,7 @@ ConfirmAllocateCommercial=Призначте підтвердження торг ConfirmAllocateCommercialQuestion=Ви впевнені, що хочете призначити %s вибраний запис(и)? CommercialsAffected=Постраждали торгові представники CommercialAffected=Постраждав торговий представник +YourMessage=Your message +YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. +UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/uk_UA/members.lang b/htdocs/langs/uk_UA/members.lang index 6ec1bfd9cb8..9ec8c48ab53 100644 --- a/htdocs/langs/uk_UA/members.lang +++ b/htdocs/langs/uk_UA/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=Дата закінчення членства EndSubscription=Кінець членства SubscriptionId=Ідентифікатор внеску WithoutSubscription=Без внеску -MemberId=Ідентифікатор учасника +MemberId=Member Id +MemberRef=Member Ref NewMember=Новий учасник MemberType=Тип члена MemberTypeId=Ідентифікатор типу члена @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Тип члена не можна видалити NewSubscription=Новий внесок NewSubscriptionDesc=Ця форма дозволяє зареєструвати свою підписку як нового члена фонду. Якщо ви хочете поновити свою підписку (якщо вже є учасником), зверніться до ради фонду електронною поштою %s. Subscription=Внесок +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Duration +GetMembershipButtonLabel=Get membership Subscriptions=Внески SubscriptionLate=Пізно SubscriptionNotReceived=Внесок так і не отримав @@ -135,7 +142,7 @@ CardContent=Вміст вашої членської картки # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=Хочемо повідомити, що ваш запит на членство отримано.

ThisIsContentOfYourMembershipWasValidated=Хочемо повідомити, що ваше членство було підтверджено такою інформацією:

-ThisIsContentOfYourSubscriptionWasRecorded=Хочемо повідомити, що ваша нова підписка була записана.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=Хочемо повідомити, що термін дії вашої підписки скоро закінчиться або вже закінчився (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Сподіваємося, ви його поновите.

ThisIsContentOfYourCard=Це короткий огляд інформації, яку ми маємо про вас. Будь ласка, зв’яжіться з нами, якщо щось не так.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Тема повідомлення електронною поштою, отриманого у разі автоматичного запису гостя @@ -198,7 +205,8 @@ NbOfSubscriptions=Кількість внесків AmountOfSubscriptions=Сума, зібрана з внесків TurnoverOrBudget=Оборот (для компанії) або бюджет (для фонду) DefaultAmount=Сума внеску за замовчуванням -CanEditAmount=Відвідувач може вибрати/змінити суму свого внеску +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Перейдіть на інтегровану сторінку онлайн-платежів ByProperties=Від природи MembersStatisticsByProperties=Статистика учасників за характером @@ -218,3 +226,5 @@ XExternalUserCreated=%s створено зовнішніх користувач ForceMemberNature=Характер члена сил (фізична особа або корпорація) CreateDolibarrLoginDesc=Створення логіна користувача для учасників дозволяє їм підключатися до програми. Залежно від наданих авторизацій вони зможуть, наприклад, самі переглядати або змінювати свій файл. CreateDolibarrThirdPartyDesc=Третя сторона – це юридична особа, яка буде використовуватися в рахунку-фактурі, якщо ви вирішите створювати рахунок-фактуру для кожного внеску. Ви зможете створити його пізніше під час процесу запису внеску. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/uk_UA/projects.lang b/htdocs/langs/uk_UA/projects.lang index 9b25bbf1d37..9e3fcad8e1f 100644 --- a/htdocs/langs/uk_UA/projects.lang +++ b/htdocs/langs/uk_UA/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=Витрачений час TimeSpentForIntervention=Витрачений час TimeSpentForInvoice=Витрачений час OneLinePerUser=Один рядок на користувача -ServiceToUseOnLines=Сервіс для використання на лініях +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=Рахунок-фактура %s створено за час, витрачений на проект InterventionGeneratedFromTimeSpent=Втручання %s було створено з часу, витраченого на проект ProjectBillTimeDescription=Перевірте, чи ви вводите табель обліку робочого часу для завдань проекту І плануєте створювати рахунки-фактури з табеля обліку робочого часу для виставлення рахунку клієнту проекту (не перевіряйте, чи плануєте ви створювати рахунок-фактуру, який не базується на введених табелях обліку робочого часу). Примітка. Щоб створити рахунок-фактуру, перейдіть на вкладку «Витрачений час» проекту та виберіть рядки для включення. @@ -294,3 +294,4 @@ EnablePublicLeadForm=Enable the public form for contact NewLeadbyWeb=Your message or request has been recorded. We will answer or contact your soon. NewLeadForm=New contact form LeadFromPublicForm=Online lead from public form +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/uk_UA/ticket.lang b/htdocs/langs/uk_UA/ticket.lang index 97c96e419f5..ecdc9a40bd5 100644 --- a/htdocs/langs/uk_UA/ticket.lang +++ b/htdocs/langs/uk_UA/ticket.lang @@ -90,8 +90,8 @@ TicketPublicAccess=Загальнодоступний інтерфейс, яки TicketSetupDictionaries=Тип заявки, складність та аналітичні коди можна налаштувати із словників TicketParamModule=Налаштування змінної модуля TicketParamMail=Налаштування електронної пошти -TicketEmailNotificationFrom=Електронна пошта відправника для відповідей на заявки -TicketEmailNotificationFromHelp=Електронна пошта відправника для відповідей на заявки, надіслані з Dolibarr +TicketEmailNotificationFrom=Sender e-mail for notification on answers +TicketEmailNotificationFromHelp=Sender e-mail to use to send the notification email when an answer is provided inside the backoffice. For example noreply@example.com TicketEmailNotificationTo=Повідомте про створення заявки на цю адресу електронної пошти TicketEmailNotificationToHelp=За наявності цієї адреси електронної пошти буде сповіщено про створення заявки TicketNewEmailBodyLabel=Текстове повідомлення надіслано після створення квитка @@ -99,6 +99,8 @@ TicketNewEmailBodyHelp=Вказаний тут текст буде вставл TicketParamPublicInterface=Налаштування загальнодоступного інтерфейсу TicketsEmailMustExist=Для створення квитка потрібна наявна адреса електронної пошти TicketsEmailMustExistHelp=У загальнодоступному інтерфейсі електронна адреса вже має бути заповнена в базі даних, щоб створити новий квиток. +TicketCreateThirdPartyWithContactIfNotExist=Ask name and company name for unknown emails. +TicketCreateThirdPartyWithContactIfNotExistHelp=Check if a thirdparty or a contact exists for the email entered. If not, ask a name and a company name to create a third party with contact. PublicInterface=Загальнодоступний інтерфейс TicketUrlPublicInterfaceLabelAdmin=Альтернативна URL-адреса для загальнодоступного інтерфейсу TicketUrlPublicInterfaceHelpAdmin=Можна визначити псевдонім для веб-сервера і таким чином зробити доступним загальнодоступний інтерфейс з іншою URL-адресою (сервер повинен діяти як проксі-сервер на цій новій URL-адресі) diff --git a/htdocs/langs/ur_PK/accountancy.lang b/htdocs/langs/ur_PK/accountancy.lang index 0871e38c1b8..d43f3d80620 100644 --- a/htdocs/langs/ur_PK/accountancy.lang +++ b/htdocs/langs/ur_PK/accountancy.lang @@ -48,8 +48,9 @@ CountriesNotInEEC=وہ ممالک جو EEC میں نہیں ہیں۔ CountriesInEECExceptMe=ای ای سی میں شامل ممالک سوائے %s کے CountriesExceptMe=%s کے علاوہ تمام ممالک AccountantFiles=ماخذ کی دستاویزات برآمد کریں۔ -ExportAccountingSourceDocHelp=اس ٹول کے ساتھ، آپ ان سورس ایونٹس کو ایکسپورٹ کر سکتے ہیں (CSV اور PDFs میں فہرست) جو آپ کی اکاؤنٹنسی بنانے کے لیے استعمال ہوتے ہیں۔ +ExportAccountingSourceDocHelp=With this tool, you can search and export the source events that are used to generate your accountancy.
The exported ZIP file will contain the lists of requested items in CSV, as well as their attached files in their original format (PDF, ODT, DOCX...). ExportAccountingSourceDocHelp2=اپنے جریدے برآمد کرنے کے لیے، مینو اندراج %s - %s استعمال کریں۔ +ExportAccountingProjectHelp=Specify a project if you need an accounting report only for a specific project. Expense reports and loan payments are not included in project reports. VueByAccountAccounting=حساب کتاب کے حساب سے دیکھیں VueBySubAccountAccounting=اکاؤنٹنگ ذیلی اکاؤنٹ کے ذریعہ دیکھیں @@ -161,7 +162,7 @@ BANK_DISABLE_DIRECT_INPUT=بینک اکاؤنٹ میں لین دین کی برا ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL=جرنل پر ڈرافٹ ایکسپورٹ کو فعال کریں۔ ACCOUNTANCY_COMBO_FOR_AUX=ذیلی اکاؤنٹ کے لیے کومبو لسٹ کو فعال کریں (اگر آپ کے پاس بہت سارے فریق ثالث ہیں تو سست ہو سکتے ہیں، قدر کے کسی حصے پر تلاش کرنے کی صلاحیت کو توڑ دیں) ACCOUNTING_DATE_START_BINDING=اکاؤنٹنسی میں بائنڈنگ اور ٹرانسفر شروع کرنے کے لیے تاریخ کی وضاحت کریں۔ اس تاریخ کے نیچے، لین دین کو اکاؤنٹنگ میں منتقل نہیں کیا جائے گا۔ -ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=اکاؤنٹنسی ٹرانسفر پر، ڈیفالٹ کے مطابق مدت شو کو منتخب کریں۔ +ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=On accountancy transfer, what is the period selected by default ACCOUNTING_SELL_JOURNAL=جریدہ فروخت کریں۔ ACCOUNTING_PURCHASE_JOURNAL=جریدہ خریدیں۔ @@ -182,7 +183,7 @@ DONATION_ACCOUNTINGACCOUNT=عطیات کو رجسٹر کرنے کے لیے اک ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=سبسکرپشنز کو رجسٹر کرنے کے لیے اکاؤنٹنگ اکاؤنٹ ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=کسٹمر ڈپازٹ کو رجسٹر کرنے کے لیے بطور ڈیفالٹ اکاؤنٹنگ اکاؤنٹ -UseAuxiliaryAccountOnCustomerDeposit=Use sub-accounts on customer deposit lines +UseAuxiliaryAccountOnCustomerDeposit=Store customer account as individual account in subsidiary ledger for lines of down payments (if disabled, individual account for down payment lines will remain empty) ACCOUNTING_PRODUCT_BUY_ACCOUNT=خریدی گئی مصنوعات کے لیے بطور ڈیفالٹ اکاؤنٹنگ اکاؤنٹ (اگر پروڈکٹ شیٹ میں وضاحت نہ کی گئی ہو تو استعمال کیا جاتا ہے) ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT=EEC میں خریدی گئی مصنوعات کے لیے بطور ڈیفالٹ اکاؤنٹنگ اکاؤنٹ (اگر پروڈکٹ شیٹ میں وضاحت نہ کی گئی ہو تو استعمال کیا جاتا ہے) @@ -332,7 +333,7 @@ ACCOUNTING_DISABLE_BINDING_ON_EXPENSEREPORTS=اخراجات کی رپورٹوں ## Export NotifiedExportDate=Flag exported lines as Exported (to modify a line, you will need to delete the whole transaction and re-transfert it into accounting) -NotifiedValidationDate=Validate and Lock the exported entries (same effect than the "Closure" feature, modification and deletion of the lines will DEFINITELY not be possible) +NotifiedValidationDate=Validate and Lock the exported entries (same effect than the "%s" feature, modification and deletion of the lines will DEFINITELY not be possible) DateValidationAndLock=Date validation and lock ConfirmExportFile=اکاؤنٹنگ برآمد فائل کی نسل کی تصدیق؟ ExportDraftJournal=ڈرافٹ جرنل برآمد کریں۔ @@ -427,6 +428,7 @@ SorryThisModuleIsNotCompatibleWithTheExperimentalFeatureOfSituationInvoices=مع AccountancyErrorMismatchLetterCode=Mismatch in reconcile code AccountancyErrorMismatchBalanceAmount=The balance (%s) is not equal to 0 AccountancyErrorLetteringBookkeeping=Errors have occurred concerning the transactions: %s +ErrorAccountNumberAlreadyExists=The accounting number %s already exists ## Import ImportAccountingEntries=اکاؤنٹنگ اندراجات diff --git a/htdocs/langs/ur_PK/hrm.lang b/htdocs/langs/ur_PK/hrm.lang index dd5c8e817cd..8eddfbc2d61 100644 --- a/htdocs/langs/ur_PK/hrm.lang +++ b/htdocs/langs/ur_PK/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=کھلی اسٹیبلشمنٹ CloseEtablishment=بند اسٹیبلشمنٹ # Dictionary DictionaryPublicHolidays=چھٹی - عوامی تعطیلات -DictionaryDepartment=HRM - محکمہ کی فہرست +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM - ملازمت کی پوزیشنیں۔ # Module Employees=ملازمین @@ -70,12 +70,22 @@ RequiredSkills=اس کام کے لیے درکار ہنر UserRank=صارف کی درجہ بندی SkillList=ہنر کی فہرست SaveRank=رینک محفوظ کریں۔ -knowHow=جانتے ہیں کہ کس طرح -HowToBe=کیسے بننا ہے۔ -knowledge=علم +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=ترک تبصرہ DateLastEval=آخری تشخیص کی تاریخ NoEval=اس ملازم کی کوئی تشخیص نہیں کی گئی۔ HowManyUserWithThisMaxNote=اس رینک والے صارفین کی تعداد HighestRank=اعلیٰ ترین عہدہ SkillComparison=مہارت کا موازنہ +ActionsOnJob=Events on this job +VacantPosition=job vacancy +VacantCheckboxHelper=Checking this option will show unfilled positions (job vacancy) +SaveAddSkill = Skill(s) added +SaveLevelSkill = Skill(s) level saved +DeleteSkill = Skill removed +SkillsExtraFields=Attributs supplémentaires (Compétences) +JobsExtraFields=Attributs supplémentaires (Emplois) +EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/ur_PK/install.lang b/htdocs/langs/ur_PK/install.lang index 2f18712058e..167e05d0c94 100644 --- a/htdocs/langs/ur_PK/install.lang +++ b/htdocs/langs/ur_PK/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=کنفیگریشن فائل %s قابل تحری ConfFileIsWritable=کنفیگریشن فائل %s قابل تحریر ہے۔ ConfFileMustBeAFileNotADir=کنفیگریشن فائل %s فائل ہونی چاہیے، ڈائریکٹری نہیں۔ ConfFileReload=کنفیگریشن فائل سے پیرامیٹرز کو دوبارہ لوڈ کرنا۔ -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=یہ پی ایچ پی متغیر POST اور GET کو سپورٹ کرتا ہے۔ PHPSupportPOSTGETKo=یہ ممکن ہے کہ آپ کا پی ایچ پی سیٹ اپ متغیرات POST اور/یا GET کو سپورٹ نہ کرے۔ php.ini میں variables_order پیرامیٹر چیک کریں۔ PHPSupportSessions=یہ پی ایچ پی سیشن کو سپورٹ کرتا ہے۔ @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=ہو سکتا ہے آپ نے پیرامیٹر '%s' ErrorFailedToCreateDatabase=ڈیٹا بیس '%s' بنانے میں ناکام۔ ErrorFailedToConnectToDatabase=ڈیٹا بیس '%s' سے جڑنے میں ناکام۔ ErrorDatabaseVersionTooLow=ڈیٹا بیس ورژن (%s) بہت پرانا ہے۔ ورژن %s یا اس سے زیادہ درکار ہے۔ -ErrorPHPVersionTooLow=پی ایچ پی ورژن بہت پرانا ہے۔ ورژن %s درکار ہے۔ +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=سرور سے کنکشن کامیاب لیکن ڈیٹا بیس '%s' نہیں ملا۔ ErrorDatabaseAlreadyExists=ڈیٹا بیس '%s' پہلے سے موجود ہے۔ +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=اگر ڈیٹا بیس موجود نہیں ہے تو واپس جائیں اور "Create database" کے آپشن کو چیک کریں۔ IfDatabaseExistsGoBackAndCheckCreate=اگر ڈیٹا بیس پہلے سے موجود ہے تو واپس جائیں اور "ڈیٹا بیس بنائیں" کے آپشن کو غیر چیک کریں۔ WarningBrowserTooOld=براؤزر کا ورژن بہت پرانا ہے۔ اپنے براؤزر کو Firefox، Chrome یا Opera کے حالیہ ورژن میں اپ گریڈ کرنے کی انتہائی سفارش کی جاتی ہے۔ diff --git a/htdocs/langs/ur_PK/main.lang b/htdocs/langs/ur_PK/main.lang index 8e3147fb32f..857ccb2222d 100644 --- a/htdocs/langs/ur_PK/main.lang +++ b/htdocs/langs/ur_PK/main.lang @@ -244,6 +244,7 @@ Designation=تفصیل DescriptionOfLine=لائن کی تفصیل DateOfLine=لائن کی تاریخ DurationOfLine=لائن کا دورانیہ +ParentLine=Parent line ID Model=دستاویز ٹیمپلیٹ DefaultModel=ڈیفالٹ دستاویز ٹیمپلیٹ Action=تقریب @@ -344,7 +345,7 @@ KiloBytes=کلو بائٹس MegaBytes=میگا بائٹس GigaBytes=گیگا بائٹس TeraBytes=ٹیرا بائٹس -UserAuthor=کی طرف سے مقرر +UserAuthor=Created by UserModif=کی طرف سے اپ ڈیٹ b=ب Kb=Kb @@ -517,6 +518,7 @@ or=یا Other=دیگر Others=دوسرے OtherInformations=دوسری معلومات +Workflow=Workflow Quantity=مقدار Qty=مقدار ChangedBy=کی طرف سے تبدیل @@ -619,6 +621,7 @@ MonthVeryShort11=ن MonthVeryShort12=ڈی AttachedFiles=منسلک فائلیں اور دستاویزات JoinMainDoc=مرکزی دستاویز میں شامل ہوں۔ +JoinMainDocOrLastGenerated=Send the main document or the last generated one if not found DateFormatYYYYMM=YYYY-MM DateFormatYYYYMMDD=YYYY-MM-DD DateFormatYYYYMMDDHHMM=YYYY-MM-DD HH:SS @@ -709,6 +712,7 @@ FeatureDisabled=خصوصیت غیر فعال ہے۔ MoveBox=ویجیٹ کو منتقل کریں۔ Offered=کی پیشکش کی NotEnoughPermissions=آپ کو اس کارروائی کی اجازت نہیں ہے۔ +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=سیشن کا نام Method=طریقہ Receive=وصول کریں۔ @@ -798,6 +802,7 @@ URLPhoto=تصویر/لوگو کا URL SetLinkToAnotherThirdParty=کسی اور تیسرے فریق سے لنک کریں۔ LinkTo=سے لنک کریں۔ LinkToProposal=تجویز کا لنک +LinkToExpedition= Link to expedition LinkToOrder=آرڈر کے لیے لنک LinkToInvoice=انوائس سے لنک کریں۔ LinkToTemplateInvoice=ٹیمپلیٹ انوائس کا لنک @@ -1164,3 +1169,14 @@ NotClosedYet=ابھی بند نہیں ہوا۔ ClearSignature=دستخط دوبارہ ترتیب دیں۔ CanceledHidden=چھپا ہوا منسوخ کر دیا گیا۔ CanceledShown=منسوخ شدہ دکھایا گیا ہے۔ +Terminate=Terminate +Terminated=Terminated +AddLineOnPosition=Add line on position (at the end if empty) +ConfirmAllocateCommercial=Assign sales representative confirmation +ConfirmAllocateCommercialQuestion=Are you sure you want to assign the %s selected record(s)? +CommercialsAffected=Sales representatives affected +CommercialAffected=Sales representative affected +YourMessage=Your message +YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. +UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/ur_PK/members.lang b/htdocs/langs/ur_PK/members.lang index d4f2fee3785..00b10b8ea83 100644 --- a/htdocs/langs/ur_PK/members.lang +++ b/htdocs/langs/ur_PK/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=رکنیت کی آخری تاریخ EndSubscription=رکنیت کا خاتمہ SubscriptionId=تعاون کی شناخت WithoutSubscription=شراکت کے بغیر -MemberId=رکن کی شناخت +MemberId=Member Id +MemberRef=Member Ref NewMember=نیا رکن MemberType=ممبر کی قسم MemberTypeId=ممبر کی قسم کی شناخت @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=ممبر کی قسم کو حذف نہیں کیا جا NewSubscription=نئی شراکت NewSubscriptionDesc=یہ فارم آپ کو فاؤنڈیشن کے نئے رکن کے طور پر اپنی رکنیت کو ریکارڈ کرنے کی اجازت دیتا ہے۔ اگر آپ اپنی سبسکرپشن کی تجدید کرنا چاہتے ہیں (اگر پہلے ہی ممبر ہیں)، تو براہ کرم اس کے بجائے فاؤنڈیشن بورڈ سے ای میل %s سے رابطہ کریں۔ Subscription=شراکت +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Duration +GetMembershipButtonLabel=Get membership Subscriptions=شراکتیں SubscriptionLate=دیر SubscriptionNotReceived=شراکت کبھی نہیں ملی @@ -135,7 +142,7 @@ CardContent=آپ کے ممبر کارڈ کا مواد # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=ہم آپ کو بتانا چاہتے ہیں کہ آپ کی رکنیت کی درخواست موصول ہو گئی ہے۔

ThisIsContentOfYourMembershipWasValidated=ہم آپ کو بتانا چاہتے ہیں کہ آپ کی رکنیت کی توثیق درج ذیل معلومات کے ساتھ کی گئی تھی:

-ThisIsContentOfYourSubscriptionWasRecorded=ہم آپ کو بتانا چاہتے ہیں کہ آپ کی نئی رکنیت ریکارڈ کی گئی تھی۔

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=ہم آپ کو بتانا چاہتے ہیں کہ آپ کی رکنیت ختم ہونے والی ہے یا پہلے ہی ختم ہو چکی ہے (__MEMBER_LAST_SUBSCRIPTION_DATE_END__)۔ ہمیں امید ہے کہ آپ اس کی تجدید کریں گے۔

ThisIsContentOfYourCard=یہ آپ کے بارے میں ہمارے پاس موجود معلومات کا خلاصہ ہے۔ اگر کچھ غلط ہے تو براہ کرم ہم سے رابطہ کریں۔

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=کسی مہمان کے خودکار تحریر کی صورت میں موصول ہونے والی اطلاعی ای میل کا موضوع @@ -198,7 +205,8 @@ NbOfSubscriptions=تعاون کی تعداد AmountOfSubscriptions=عطیات سے جمع کی گئی رقم TurnoverOrBudget=ٹرن اوور (کمپنی کے لیے) یا بجٹ (فاؤنڈیشن کے لیے) DefaultAmount=شراکت کی طے شدہ رقم -CanEditAmount=وزیٹر اپنی شراکت کی رقم کا انتخاب/ترمیم کر سکتا ہے۔ +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=مربوط آن لائن ادائیگی کے صفحے پر جائیں۔ ByProperties=فطرت سے MembersStatisticsByProperties=اراکین کے اعداد و شمار فطرت کے لحاظ سے @@ -218,3 +226,5 @@ XExternalUserCreated=%s بیرونی صارف (صارفین) بنائے گئے۔ ForceMemberNature=فورس ممبر کی نوعیت (انفرادی یا کارپوریشن) CreateDolibarrLoginDesc=اراکین کے لیے صارف لاگ ان کی تخلیق انہیں ایپلی کیشن سے منسلک ہونے کی اجازت دیتی ہے۔ دی گئی اجازتوں پر انحصار کرتے ہوئے، وہ، مثال کے طور پر، خود اپنی فائل سے مشورہ کرنے یا اس میں ترمیم کرنے کے قابل ہوں گے۔ CreateDolibarrThirdPartyDesc=فریق ثالث قانونی ادارہ ہے جو انوائس پر استعمال کیا جائے گا اگر آپ ہر شراکت کے لیے انوائس بنانے کا فیصلہ کرتے ہیں۔ آپ شراکت کو ریکارڈ کرنے کے عمل کے دوران بعد میں اسے تخلیق کر سکیں گے۔ +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/ur_PK/projects.lang b/htdocs/langs/ur_PK/projects.lang index 6a22b98eb9b..0b5f6827b8b 100644 --- a/htdocs/langs/ur_PK/projects.lang +++ b/htdocs/langs/ur_PK/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=وقت گزارا ہوا بل TimeSpentForIntervention=وقت گزارا۔ TimeSpentForInvoice=وقت گزارا۔ OneLinePerUser=فی صارف ایک لائن -ServiceToUseOnLines=لائنوں پر استعمال کرنے کے لیے سروس +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=انوائس %s پروجیکٹ پر خرچ کیے گئے وقت سے تیار کیا گیا ہے InterventionGeneratedFromTimeSpent=مداخلت %s پروجیکٹ پر خرچ کیے گئے وقت سے پیدا کی گئی ہے۔ ProjectBillTimeDescription=چیک کریں کہ آیا آپ پروجیکٹ کے کاموں پر ٹائم شیٹ درج کرتے ہیں اور آپ پروجیکٹ کے کسٹمر کو بل دینے کے لیے ٹائم شیٹ سے انوائس (انوائسز) بنانے کا ارادہ رکھتے ہیں (یہ چیک نہ کریں کہ آیا آپ انوائس بنانے کا ارادہ رکھتے ہیں جو درج کردہ ٹائم شیٹ پر مبنی نہیں ہے)۔ نوٹ: انوائس بنانے کے لیے، پراجیکٹ کے 'وقت گزارا ہوا' ٹیب پر جائیں اور شامل کرنے کے لیے لائنوں کو منتخب کریں۔ @@ -294,3 +294,4 @@ EnablePublicLeadForm=Enable the public form for contact NewLeadbyWeb=Your message or request has been recorded. We will answer or contact your soon. NewLeadForm=New contact form LeadFromPublicForm=Online lead from public form +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/uz_UZ/accountancy.lang b/htdocs/langs/uz_UZ/accountancy.lang index c1d0b7d84b9..a655b9ced1f 100644 --- a/htdocs/langs/uz_UZ/accountancy.lang +++ b/htdocs/langs/uz_UZ/accountancy.lang @@ -48,8 +48,9 @@ CountriesNotInEEC=EEC tarkibiga kirmagan mamlakatlar CountriesInEECExceptMe=%s dan tashqari EECdagi mamlakatlar CountriesExceptMe=%s dan tashqari barcha mamlakatlar AccountantFiles=Dastlabki hujjatlarni eksport qilish -ExportAccountingSourceDocHelp=Ushbu vosita yordamida siz buxgalteriya hisobingizni yaratish uchun foydalaniladigan manba voqealarini (CSV va PDF-dagi ro'yxat) eksport qilishingiz mumkin. +ExportAccountingSourceDocHelp=With this tool, you can search and export the source events that are used to generate your accountancy.
The exported ZIP file will contain the lists of requested items in CSV, as well as their attached files in their original format (PDF, ODT, DOCX...). ExportAccountingSourceDocHelp2=Jurnallaringizni eksport qilish uchun %s - %s menyu yozuvidan foydalaning. +ExportAccountingProjectHelp=Specify a project if you need an accounting report only for a specific project. Expense reports and loan payments are not included in project reports. VueByAccountAccounting=Buxgalteriya hisobi bo'yicha ko'rish VueBySubAccountAccounting=Buxgalteriya subkontaji bo'yicha ko'rish @@ -161,7 +162,7 @@ BANK_DISABLE_DIRECT_INPUT=Bank hisobvarag'idagi operatsiyani to'g'ridan-to'g'ri ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL=Jurnalda qoralama eksportni yoqish ACCOUNTANCY_COMBO_FOR_AUX=Yordamchi hisob uchun kombinatsiyalangan ro'yxatni yoqish (agar sizda uchinchi shaxslar ko'p bo'lsa, sekin bo'lishi mumkin, qiymatning bir qismini qidirish qobiliyati buziladi) ACCOUNTING_DATE_START_BINDING=Buxgalteriyada majburiy va o'tkazishni boshlash uchun sanani aniqlang. Ushbu sana ostida operatsiyalar buxgalteriya hisobiga o'tkazilmaydi. -ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=Buxgalteriya o'tkazmalarida sukut bo'yicha davr ko'rsatilishini tanlang +ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=On accountancy transfer, what is the period selected by default ACCOUNTING_SELL_JOURNAL=Sell journal ACCOUNTING_PURCHASE_JOURNAL=Purchase journal @@ -182,7 +183,7 @@ DONATION_ACCOUNTINGACCOUNT=Xayriya mablag'larini ro'yxatdan o'tkazish uchun buxg ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=Obunalarni ro'yxatdan o'tkazish uchun buxgalteriya hisobi ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=Mijozlar depozitini ro'yxatdan o'tkazish uchun sukut bo'yicha buxgalteriya hisobi -UseAuxiliaryAccountOnCustomerDeposit=Mijozlarning depozit liniyalarida sub-hisoblardan foydalaning +UseAuxiliaryAccountOnCustomerDeposit=Store customer account as individual account in subsidiary ledger for lines of down payments (if disabled, individual account for down payment lines will remain empty) ACCOUNTING_PRODUCT_BUY_ACCOUNT=Xarid qilingan mahsulotlar uchun sukut bo'yicha buxgalteriya hisobi (agar mahsulot varag'ida belgilanmagan bo'lsa foydalaniladi) ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT=EECda sotib olingan mahsulotlar uchun sukut bo'yicha buxgalteriya hisobi (agar mahsulot varag'ida belgilanmagan bo'lsa foydalaniladi) @@ -332,7 +333,7 @@ ACCOUNTING_DISABLE_BINDING_ON_EXPENSEREPORTS=Xarajatlar hisobotlari bo'yicha bux ## Export NotifiedExportDate=Eksport qilingan qatorlarni eksport qilingan deb belgilash (chiziqni o‘zgartirish uchun siz butun tranzaksiyani o‘chirib tashlashingiz va uni buxgalteriya hisobiga qayta o‘tkazishingiz kerak) -NotifiedValidationDate=Eksport qilingan yozuvlarni tekshirish va bloklash (“Yopish” funksiyasi bilan bir xil effekt, satrlarni o‘zgartirish va o‘chirish ALBATTA mumkin emas) +NotifiedValidationDate=Validate and Lock the exported entries (same effect than the "%s" feature, modification and deletion of the lines will DEFINITELY not be possible) DateValidationAndLock=Sanani tekshirish va qulflash ConfirmExportFile=Buxgalteriya eksporti faylini yaratishni tasdiqlashmi? ExportDraftJournal=Jurnal jurnalini eksport qiling @@ -427,6 +428,7 @@ SorryThisModuleIsNotCompatibleWithTheExperimentalFeatureOfSituationInvoices=Kech AccountancyErrorMismatchLetterCode=Kelishuv kodidagi nomuvofiqlik AccountancyErrorMismatchBalanceAmount=Balans (%s) 0 ga teng emas AccountancyErrorLetteringBookkeeping=Tranzaktsiyalarda xatoliklar yuz berdi: %s +ErrorAccountNumberAlreadyExists=The accounting number %s already exists ## Import ImportAccountingEntries=Buxgalteriya yozuvlari diff --git a/htdocs/langs/uz_UZ/hrm.lang b/htdocs/langs/uz_UZ/hrm.lang index b5c3ef8615a..99d100ed717 100644 --- a/htdocs/langs/uz_UZ/hrm.lang +++ b/htdocs/langs/uz_UZ/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Ochiq muassasa CloseEtablishment=Yaqin muassasasi # Dictionary DictionaryPublicHolidays=Ta'til - rasmiy bayramlar -DictionaryDepartment=HRM - bo'limlar ro'yxati +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM - ish joylari # Module Employees=Xodimlar @@ -70,9 +70,9 @@ RequiredSkills=Ushbu ish uchun zarur bo'lgan ko'nikmalar UserRank=Foydalanuvchi darajasi SkillList=Ko'nikmalar ro'yxati SaveRank=Darajani saqlang -knowHow=Nou-hau -HowToBe=Qanday bo'lish -knowledge=Bilim +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=Bekor qilish sharhi DateLastEval=Oxirgi baholash sanasi NoEval=Ushbu xodim uchun hech qanday baholash o'tkazilmagan @@ -88,3 +88,4 @@ DeleteSkill = Ko'nikma olib tashlandi SkillsExtraFields=Atributlar qo'shimchalari (Kompentsiyalar) JobsExtraFields=Attributs supplémentaires (Emplois) EvaluationsExtraFields=Atributlar qoʻshimchalari (baholar) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/uz_UZ/install.lang b/htdocs/langs/uz_UZ/install.lang index 8a33bb02391..acc7e24720e 100644 --- a/htdocs/langs/uz_UZ/install.lang +++ b/htdocs/langs/uz_UZ/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable= %s konfiguratsiya fayli yozib bo'lmaydi. Ruxsatla ConfFileIsWritable= %s konfiguratsiya fayli yozilishi mumkin. ConfFileMustBeAFileNotADir=Konfiguratsiya fayli %s fayl bo'lishi kerak, katalog emas. ConfFileReload=Parametrlarni konfiguratsiya faylidan qayta yuklash. -NoReadableConfFileSoStartInstall= conf/conf.php konfiguratsiya fayli mavjud emas yoki qayta tiklanmaydi. Uni ishga tushirishga harakat qilish uchun o'rnatish jarayonini ishga tushiramiz. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=Ushbu PHP POST va GET o'zgaruvchilarini qo'llab-quvvatlaydi. PHPSupportPOSTGETKo=PHP sozlamangiz POST va / yoki GET o'zgaruvchilarini qo'llab-quvvatlamasligi mumkin. Php.ini da variables_order parametrini tekshiring. PHPSupportSessions=Ushbu PHP sessiyalarni qo'llab-quvvatlaydi. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Siz '%s' parametri uchun noto'g'ri qiymat yozgan bo' ErrorFailedToCreateDatabase='%s' ma'lumotlar bazasini yaratib bo'lmadi. ErrorFailedToConnectToDatabase='%s' ma'lumotlar bazasiga ulanib bo'lmadi. ErrorDatabaseVersionTooLow=Ma'lumotlar bazasi versiyasi (%s) juda eski. %s yoki undan yuqori versiyasi talab qilinadi. -ErrorPHPVersionTooLow=PHP versiyasi juda eski. %s versiyasi talab qilinadi. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Serverga ulanish muvaffaqiyatli bo'ldi, ammo '%s' ma'lumotlar bazasi topilmadi. ErrorDatabaseAlreadyExists='%s' ma'lumotlar bazasi allaqachon mavjud. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=Agar ma'lumotlar bazasi mavjud bo'lmasa, orqaga qayting va "Ma'lumotlar bazasini yaratish" bandini tekshiring. IfDatabaseExistsGoBackAndCheckCreate=Agar ma'lumotlar bazasi allaqachon mavjud bo'lsa, orqaga qayting va "Ma'lumotlar bazasini yaratish" parametrini olib tashlang. WarningBrowserTooOld=Brauzer versiyasi juda eski. Brauzeringizni Firefox, Chrome yoki Opera-ning so'nggi versiyasiga yangilash tavsiya etiladi. diff --git a/htdocs/langs/uz_UZ/main.lang b/htdocs/langs/uz_UZ/main.lang index 97a74ddab6a..988227de258 100644 --- a/htdocs/langs/uz_UZ/main.lang +++ b/htdocs/langs/uz_UZ/main.lang @@ -345,7 +345,7 @@ KiloBytes=Kilobayt MegaBytes=Megabayt GigaBytes=Gigabayt TeraBytes=Terabayt -UserAuthor=Tomonidan belgilangan +UserAuthor=Created by UserModif=Tomonidan yangilangan b=b. Kb=Kb @@ -712,6 +712,7 @@ FeatureDisabled=Funktsiya o'chirilgan MoveBox=Vidjetni ko'chirish Offered=Taklif qilingan NotEnoughPermissions=Sizda bu harakat uchun ruxsat yo'q +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=Sessiya nomi Method=Usul Receive=Qabul qiling @@ -801,6 +802,7 @@ URLPhoto=Surat / logotipning URL manzili SetLinkToAnotherThirdParty=Boshqa uchinchi tomon bilan bog'lanish LinkTo=Ga havola LinkToProposal=Taklifga havola +LinkToExpedition= Link to expedition LinkToOrder=Buyurtma uchun havola LinkToInvoice=Hisob-fakturaga havola LinkToTemplateInvoice=Shablon hisob-fakturasiga havola @@ -1174,6 +1176,7 @@ ConfirmAllocateCommercial=Savdo vakilini tasdiqlashni tayinlang ConfirmAllocateCommercialQuestion=Haqiqatan ham %s tanlangan yozuv(lar)ni tayinlashni xohlaysizmi? CommercialsAffected=Savdo vakillari zarar ko'rdi CommercialAffected=Savdo vakili zarar ko'rdi -YourMessage=Votre xabari +YourMessage=Your message YourMessageHasBeenReceived=Sizning xabaringiz qabul qilindi. Biz imkon qadar tezroq javob beramiz yoki siz bilan bog'lanamiz. UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/uz_UZ/members.lang b/htdocs/langs/uz_UZ/members.lang index 11b58cd09c1..bf0b78bcdb3 100644 --- a/htdocs/langs/uz_UZ/members.lang +++ b/htdocs/langs/uz_UZ/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=A'zolikning tugash sanasi EndSubscription=Obunaning tugashi SubscriptionId=Hissa identifikatori WithoutSubscription=Hissa qo'shmasdan -MemberId=A'zo identifikatori +MemberId=Member Id +MemberRef=Member Ref NewMember=Yangi a'zo MemberType=Ro'yxatdan turi MemberTypeId=Ro'yxatdan turi identifikatori @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Ro'yxatdan turini o'chirib bo'lmaydi NewSubscription=Yangi hissa NewSubscriptionDesc=Ushbu shakl sizga obunangizni fondning yangi a'zosi sifatida qayd etish imkonini beradi. Agar siz obunangizni yangilamoqchi bo'lsangiz (agar u allaqachon a'zo bo'lsa), %s elektron pochta orqali poydevor kengashiga murojaat qiling. Subscription=Hissa +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Duration +GetMembershipButtonLabel=Get membership Subscriptions=Hissa SubscriptionLate=Kech SubscriptionNotReceived=Hissa hech qachon olinmagan @@ -135,7 +142,7 @@ CardContent=A'zo kartangizning tarkibi # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=A'zolik so'rovi olinganligini sizga xabar qilmoqchimiz.

ThisIsContentOfYourMembershipWasValidated=Sizning a'zoligingiz quyidagi ma'lumotlar bilan tasdiqlanganligini sizga xabar qilmoqchimiz:

-ThisIsContentOfYourSubscriptionWasRecorded=Sizga yangi obunangiz yozib olingani haqida xabar bermoqchimiz.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=Obunangiz muddati tugashini yoki allaqachon tugaganligini sizga xabar qilmoqchimiz (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Siz uni yangilaysiz degan umiddamiz.

ThisIsContentOfYourCard=Bu siz haqingizda mavjud bo'lgan ma'lumotlarning qisqacha mazmuni. Iltimos, biron bir narsa noto'g'ri bo'lsa, biz bilan bog'laning.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Agar mehmon avtomatik ravishda yozgan bo'lsa, elektron pochta xabarining mavzusi @@ -198,7 +205,8 @@ NbOfSubscriptions=Hissalar soni AmountOfSubscriptions=Hisob -kitoblardan yig'ilgan mablag ' TurnoverOrBudget=Tovar aylanmasi (kompaniya uchun) yoki byudjet (fond uchun) DefaultAmount=Standart badal miqdori -CanEditAmount=Mehmon o'z hissasi miqdorini tanlashi/tahrir qilishi mumkin +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Onlayn to'lovlar sahifasiga o'ting ByProperties=Tabiatan MembersStatisticsByProperties=A'zolar statistikasi tabiatan diff --git a/htdocs/langs/uz_UZ/projects.lang b/htdocs/langs/uz_UZ/projects.lang index fa107d10da2..a64a720d577 100644 --- a/htdocs/langs/uz_UZ/projects.lang +++ b/htdocs/langs/uz_UZ/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=Hisob-kitob qilingan vaqt TimeSpentForIntervention=O'tkazilgan vaqt TimeSpentForInvoice=O'tkazilgan vaqt OneLinePerUser=Har bir foydalanuvchi uchun bitta qator -ServiceToUseOnLines=Qatorlarda foydalanish uchun xizmat +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=%s hisob-fakturasi loyihaga sarf qilingan vaqtdan boshlab tuzildi InterventionGeneratedFromTimeSpent=%s aralashuvi loyihaga sarflangan vaqtdan kelib chiqqan ProjectBillTimeDescription=Loyiha vazifalari bo'yicha ish jadvalini kiritganingizni tekshiring va loyiha buyurtmachisiga hisob-kitob qilish uchun hisob varag'idan hisob-kitob (lar) yaratishni rejalashtiryapsiz (kiritilgan ish jadvallariga asoslanmagan hisob-faktura yaratishni rejalashtirayotganingizni tekshirmang). Izoh: Hisob-fakturani yaratish uchun loyihaning "sarflangan vaqt" yorlig'iga o'ting va qo'shiladigan qatorlarni tanlang. @@ -294,3 +294,4 @@ EnablePublicLeadForm=Aloqa uchun umumiy shaklni yoqing NewLeadbyWeb=Sizning xabaringiz yoki so'rovingiz yozib olindi. Tez orada javob beramiz yoki siz bilan bog'lanamiz. NewLeadForm=Yangi aloqa shakli LeadFromPublicForm=Ommaviy shakldan onlayn rahbar +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/uz_UZ/ticket.lang b/htdocs/langs/uz_UZ/ticket.lang index fcaa5fb7738..f3539ed954a 100644 --- a/htdocs/langs/uz_UZ/ticket.lang +++ b/htdocs/langs/uz_UZ/ticket.lang @@ -90,8 +90,8 @@ TicketPublicAccess=Identifikatsiyani talab qilmaydigan umumiy interfeys quyidagi TicketSetupDictionaries=Chipta turi, jiddiyligi va analitik kodlari lug'atlarda sozlanishi mumkin TicketParamModule=Modulning o'zgaruvchini sozlash TicketParamMail=Elektron pochtani sozlash -TicketEmailNotificationFrom=Chipta javoblari uchun e-mail yuboruvchi -TicketEmailNotificationFromHelp=Dolibarrdan yuborilgan chipta javoblari uchun yuboruvchi elektron pochta +TicketEmailNotificationFrom=Sender e-mail for notification on answers +TicketEmailNotificationFromHelp=Sender e-mail to use to send the notification email when an answer is provided inside the backoffice. For example noreply@example.com TicketEmailNotificationTo=Chipta yaratilishi haqida ushbu elektron pochta manziliga xabar bering TicketEmailNotificationToHelp=Agar mavjud bo'lsa, ushbu elektron pochta manziliga chipta yaratilishi haqida xabar beriladi TicketNewEmailBodyLabel=Chipta yaratilgandan so'ng yuborilgan matnli xabar diff --git a/htdocs/langs/vi_VN/holiday.lang b/htdocs/langs/vi_VN/holiday.lang index a004e3a5064..bb634012150 100644 --- a/htdocs/langs/vi_VN/holiday.lang +++ b/htdocs/langs/vi_VN/holiday.lang @@ -4,6 +4,7 @@ Holidays=Nghỉ CPTitreMenu=Nghỉ MenuReportMonth=Báo cáo hàng tháng MenuAddCP=Xin nghỉ phép +MenuCollectiveAddCP=New collective leave request NotActiveModCP=Bạn phải kích hoạt mô-đun Nghỉ để xem trang này. AddCP=Tạo một yêu cầu nghỉ phép DateDebCP=Ngày bắt đầu @@ -79,6 +80,8 @@ MotifCP=Lý do UserCP=Người dùng ErrorAddEventToUserCP=Đã xảy ra lỗi khi thêm ngày nghỉ đặc biệt. AddEventToUserOkCP=Việc bổ sung nghỉ đặc biệt đã được hoàn thành. +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=Lịch sử thay đổi LogCP=Log of all updates made to "Balance of Leave" ActionByCP=Updated by @@ -86,6 +89,13 @@ UserUpdateCP=Updated for PrevSoldeCP=Cân bằng trước NewSoldeCP=Tạo cân bằng alreadyCPexist=Một yêu cầu nghỉ phép đã được thực hiện vào thời gian này. +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=Nhóm +users=Người dùng +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Beginning day of leave request LastDayOfHoliday=Ending day of leave request BoxTitleLastLeaveRequests=%s yêu cầu nghỉ phép mới được sửa diff --git a/htdocs/langs/vi_VN/hrm.lang b/htdocs/langs/vi_VN/hrm.lang index eecc641e4d5..b890940b18a 100644 --- a/htdocs/langs/vi_VN/hrm.lang +++ b/htdocs/langs/vi_VN/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=Mở cơ sở CloseEtablishment=Đóng cơ sở # Dictionary DictionaryPublicHolidays=Leave - Public holidays -DictionaryDepartment=HRM - Danh sách phòng/ban +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM - Job positions # Module Employees=Nhân viên @@ -20,13 +20,14 @@ Employee=Nhân viên NewEmployee=Tạo nhân viên ListOfEmployees=List of employees HrmSetup=Thiết lập mô-đun Nhân sự -HRM_MAXRANK=Maximum rank for a skill +SkillsManagement=Skills management +HRM_MAXRANK=Maximum number of levels to rank a skill HRM_DEFAULT_SKILL_DESCRIPTION=Default description of ranks when skill is created deplacement=Shift DateEval=Evaluation date JobCard=Job card -Job=Công việc -Jobs=Jobs +JobPosition=Công việc +JobsPosition=Jobs NewSkill=New Skill SkillType=Skill type Skilldets=List of ranks for this skill @@ -47,9 +48,8 @@ ConfirmValidateEvaluation=Are you sure you want to validate this evaluation with EvaluationCard=Evaluation card RequiredRank=Required rank for this job EmployeeRank=Employee rank for this skill -Position=Chức vụ -Positions=Positions -PositionCard=Position card +EmployeePosition=Employee position +EmployeePositions=Employee positions EmployeesInThisPosition=Employees in this position group1ToCompare=Usergroup to analyze group2ToCompare=Second usergroup for comparison @@ -70,12 +70,22 @@ RequiredSkills=Required skills for this job UserRank=User Rank SkillList=Skill list SaveRank=Save rank -knowHow=Know how -HowToBe=How to be -knowledge=Knowledge +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=Abandonment comment DateLastEval=Date last evaluation NoEval=No evaluation done for this employee HowManyUserWithThisMaxNote=Number of users with this rank HighestRank=Highest rank SkillComparison=Skill comparison +ActionsOnJob=Events on this job +VacantPosition=job vacancy +VacantCheckboxHelper=Checking this option will show unfilled positions (job vacancy) +SaveAddSkill = Skill(s) added +SaveLevelSkill = Skill(s) level saved +DeleteSkill = Skill removed +SkillsExtraFields=Attributs supplémentaires (Compétences) +JobsExtraFields=Attributs supplémentaires (Emplois) +EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/vi_VN/install.lang b/htdocs/langs/vi_VN/install.lang index 055ad643c39..33bf62bdb76 100644 --- a/htdocs/langs/vi_VN/install.lang +++ b/htdocs/langs/vi_VN/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=Tệp cấu hình %s không thể ghi. Kiểm tra q ConfFileIsWritable=Tập tin cấu hình %s có thể ghi. ConfFileMustBeAFileNotADir=Tệp cấu hình %s phải là một tệp, không phải là một thư mục. ConfFileReload=Tải lại các tham số từ tập tin cấu hình. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=PHP này hỗ trợ các biến POST và GET. PHPSupportPOSTGETKo=Có thể thiết lập PHP của bạn không hỗ trợ các biến POST và / hoặc GET. Kiểm tra tham số variables_order trong php.ini. PHPSupportSessions=PHP này hỗ trợ phiên. @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=Bạn có thể gõ một giá trị sai cho tham s ErrorFailedToCreateDatabase=Không thể tạo cơ sở dữ liệu '%s'. ErrorFailedToConnectToDatabase=Không thể kết nối với cơ sở dữ liệu '%s'. ErrorDatabaseVersionTooLow=Phiên bản cơ sở dữ liệu (%s) quá già. Phiên bản %s hoặc cao hơn là cần thiết. -ErrorPHPVersionTooLow=PHP phiên bản quá cũ. Phiên bản %s là bắt buộc. +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Kết nối với máy chủ thành công nhưng không tìm thấy cơ sở dữ liệu '%s'. ErrorDatabaseAlreadyExists=Cơ sở dữ liệu '%s' đã tồn tại. +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=Nếu cơ sở dữ liệu không tồn tại, hãy quay lại và kiểm tra tùy chọn "Tạo cơ sở dữ liệu". IfDatabaseExistsGoBackAndCheckCreate=Nếu cơ sở dữ liệu đã tồn tại, quay trở lại và bỏ chọn "Tạo cơ sở dữ liệu" tùy chọn. WarningBrowserTooOld=Phiên bản trình duyệt quá cũ. Nâng cấp trình duyệt của bạn lên phiên bản Firefox, Chrome hoặc Opera gần đây rất được khuyến nghị. diff --git a/htdocs/langs/vi_VN/main.lang b/htdocs/langs/vi_VN/main.lang index be80241bf8a..1fd8b9d6113 100644 --- a/htdocs/langs/vi_VN/main.lang +++ b/htdocs/langs/vi_VN/main.lang @@ -17,12 +17,12 @@ FormatDateShortJQueryInput=dd/mm/yy FormatHourShortJQuery=HH:MI FormatHourShort=%I:%M %p FormatHourShortDuration=%H:%M -FormatDateTextShort=%b %d, %Y -FormatDateText=%B %d, %Y +FormatDateTextShort=%d %b, %Y +FormatDateText=%d %B, %Y FormatDateHourShort=%d/%m/%Y %I:%M %p FormatDateHourSecShort=%d/%m/%Y %I:%M:%S %p -FormatDateHourTextShort=%b %d, %Y, %I:%M %p -FormatDateHourText=%B %d, %Y, %I:%M %p +FormatDateHourTextShort=%d %b, %Y, %I:%M %p +FormatDateHourText=%d %B, %Y, %I:%M %p DatabaseConnection=Kết nối cơ sở dữ liệu NoTemplateDefined=Không có sẵn mẫu nào cho loại email này AvailableVariables=Các biến thay thế có sẵn @@ -244,6 +244,7 @@ Designation=Mô tả DescriptionOfLine=Mô tả dòng DateOfLine=Ngày của dòng DurationOfLine=Thời hạn của dòng +ParentLine=Parent line ID Model=Mẫu tài liệu DefaultModel=Mẫu tài liệu mặc định Action=Sự kiện @@ -344,7 +345,7 @@ KiloBytes=Kilobyte MegaBytes=MB GigaBytes=Gigabyte TeraBytes=Terabyte -UserAuthor=Ceated by +UserAuthor=Được tạo bởi UserModif=Updated by b=b. Kb=Kb @@ -517,6 +518,7 @@ or=hoặc Other=Khác Others=Khác OtherInformations=Thông tin khác +Workflow=Quy trình làm việc Quantity=Số lượng Qty=Số lượng ChangedBy=Thay đổi bằng @@ -619,6 +621,7 @@ MonthVeryShort11=N MonthVeryShort12=D AttachedFiles=Được đính kèm tập tin và tài liệu JoinMainDoc=Tham gia tài liệu chính +JoinMainDocOrLastGenerated=Send the main document or the last generated one if not found DateFormatYYYYMM=YYYY-MM DateFormatYYYYMMDD=YYYY-MM-DD DateFormatYYYYMMDDHHMM=YYYY-MM-DD HH:SS @@ -709,6 +712,7 @@ FeatureDisabled=Tính năng bị vô hiệu hóa MoveBox=Di chuyển widget Offered=Đã đề nghị NotEnoughPermissions=Bạn không có quyền cho hành động này +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=Tên phiên Method=Phương pháp Receive=Nhận @@ -798,6 +802,7 @@ URLPhoto=URL của hình ảnh / logo SetLinkToAnotherThirdParty=Liên kết đến một bên thứ ba LinkTo=Liên kết đến LinkToProposal=Liên kết với đề xuất +LinkToExpedition= Link to expedition LinkToOrder=Liên kết để đặt hàng LinkToInvoice=Liên kết với hóa đơn LinkToTemplateInvoice=Liên kết với mẫu hóa đơn @@ -1164,3 +1169,14 @@ NotClosedYet=Not yet closed ClearSignature=Reset signature CanceledHidden=Canceled hidden CanceledShown=Canceled shown +Terminate=Chấm dứt +Terminated=Chấm dứt +AddLineOnPosition=Add line on position (at the end if empty) +ConfirmAllocateCommercial=Assign sales representative confirmation +ConfirmAllocateCommercialQuestion=Are you sure you want to assign the %s selected record(s)? +CommercialsAffected=Sales representatives affected +CommercialAffected=Sales representative affected +YourMessage=Your message +YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. +UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/vi_VN/members.lang b/htdocs/langs/vi_VN/members.lang index d3f6b5ec80b..acfa2b7354c 100644 --- a/htdocs/langs/vi_VN/members.lang +++ b/htdocs/langs/vi_VN/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=End date of membership EndSubscription=End of membership SubscriptionId=Contribution ID WithoutSubscription=Without contribution -MemberId=ID Thành viên +MemberId=Member Id +MemberRef=Member Ref NewMember=Thành viên mới MemberType=Loại thành viên MemberTypeId=Id Loại thành viên @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=Loại thành viên không thể bị xóa NewSubscription=Đóng góp mới NewSubscriptionDesc=Biểu mẫu này cho phép bạn ghi lại đăng ký của mình như một thành viên mới của tổ chức. Nếu bạn muốn gia hạn đăng ký của mình (nếu đã là thành viên), vui lòng liên hệ với hội đồng sáng lập thay vì gửi email %s. Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=Thời hạn +GetMembershipButtonLabel=Get membership Subscriptions=Contributions SubscriptionLate=Trễ SubscriptionNotReceived=Contribution never received @@ -135,7 +142,7 @@ CardContent=Nội dung thẻ thành viên của bạn # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=Chúng tôi muốn cho bạn biết rằng yêu cầu thành viên của bạn đã được nhận.

ThisIsContentOfYourMembershipWasValidated=Chúng tôi muốn cho bạn biết rằng tư cách thành viên của bạn đã được xác nhận với các thông tin sau:

-ThisIsContentOfYourSubscriptionWasRecorded=Chúng tôi muốn cho bạn biết rằng đăng ký mới của bạn đã được ghi lại.

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=Chúng tôi muốn cho bạn biết rằng đăng ký của bạn sắp hết hạn hoặc đã hết hạn (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). Chúng tôi hy vọng bạn sẽ làm mới nó.

ThisIsContentOfYourCard=Đây là một bản tóm tắt các thông tin chúng tôi có về bạn. Vui lòng liên hệ với chúng tôi nếu bất cứ điều gì là không chính xác.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Chủ đề của email thông báo nhận được trong trường hợp tự động đăng ký của khách @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=Doanh thu (cho một công ty) hoặc Ngân sách (cho một tổ chức) DefaultAmount=Default amount of contribution -CanEditAmount=Visitor can choose/edit amount of its contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=Nhảy vào trang thanh toán trực tuyến được tích hợp ByProperties=Theo bản chất tự nhiên MembersStatisticsByProperties=Thống kê thành viên theo bản chất @@ -218,3 +226,5 @@ XExternalUserCreated=%s external user(s) created ForceMemberNature=Force member nature (Individual or Corporation) CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/vi_VN/projects.lang b/htdocs/langs/vi_VN/projects.lang index f8ce6f7a543..d62b8ece8d2 100644 --- a/htdocs/langs/vi_VN/projects.lang +++ b/htdocs/langs/vi_VN/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=Thời gian đã qua được lập hóa đơn TimeSpentForIntervention=Thời gian đã qua TimeSpentForInvoice=Thời gian đã qua OneLinePerUser=Một dòng trên mỗi người dùng -ServiceToUseOnLines=Dịch vụ được sử dụng trên các dòng +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=Hóa đơn %s đã được tạo từ thời gian dành đã qua trên dự án InterventionGeneratedFromTimeSpent=Intervention %s has been generated from time spent on project ProjectBillTimeDescription=Kiểm tra xem bạn nhập bảng thời gian vào các nhiệm vụ của dự án VÀ bạn có kế hoạch tạo (các) hóa đơn từ bảng chấm công để lập hóa đơn cho khách hàng của dự án (không kiểm tra xem bạn có kế hoạch tạo hóa đơn không dựa trên bảng thời gian đã nhập không). Lưu ý: Để tạo hóa đơn, hãy chuyển đến tab 'Thời gian sử dụng' của dự án và chọn các dòng để đưa vào. @@ -294,3 +294,4 @@ EnablePublicLeadForm=Enable the public form for contact NewLeadbyWeb=Your message or request has been recorded. We will answer or contact your soon. NewLeadForm=New contact form LeadFromPublicForm=Online lead from public form +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/vi_VN/stocks.lang b/htdocs/langs/vi_VN/stocks.lang index 966f94237c8..65198013c61 100644 --- a/htdocs/langs/vi_VN/stocks.lang +++ b/htdocs/langs/vi_VN/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=Giới hạn tồn kho để cảnh báo và tồn ProductStockWarehouseUpdated=Giới hạn tồn kho để cảnh báo và tồn kho tối ưu mong muốn được cập nhật chính xác ProductStockWarehouseDeleted=Giới hạn tồn kho để cảnh báo và tồn kho tối ưu mong muốn được xóa chính xác AddNewProductStockWarehouse=Đặt giới hạn mới cho cảnh báo và tồn kho tối ưu mong muốn -AddStockLocationLine=Giảm số lượng sau đó nhấp để thêm kho khác cho sản phẩm này +AddStockLocationLine=Decrease quantity then click to split the line InventoryDate=Ngày Kiểm kho Inventories=Kiểm kho NewInventory=Kiểm kho mới @@ -254,7 +254,7 @@ ReOpen=Mở lại ConfirmFinish=Do you confirm the closing of the inventory ? This will generate all stock movements to update your stock to the real qty you entered into the inventory. ObjectNotFound=%s not found MakeMovementsAndClose=Generate movements and close -AutofillWithExpected=Replace real quantity with expected quantity +AutofillWithExpected=Fill real quantity with expected quantity ShowAllBatchByDefault=By default, show batch details on product "stock" tab CollapseBatchDetailHelp=You can set batch detail default display in stocks module configuration ErrorWrongBarcodemode=Unknown Barcode mode @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Product with barcode does not exist WarehouseId=Warehouse ID WarehouseRef=Warehouse Ref SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ToStart=Bắt đầu InventoryStartedShort=Đã bắt đầu ErrorOnElementsInventory=Operation canceled for the following reason: ErrorCantFindCodeInInventory=Can't find the following code in inventory QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requested barcode. You can close the Scanner tool. StockChangeDisabled=Change on stock disabled NoWarehouseDefinedForTerminal=No warehouse defined for terminal +ClearQtys=Clear all quantities +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=Cài đặt +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/zh_CN/holiday.lang b/htdocs/langs/zh_CN/holiday.lang index 492299e752b..1b18dcfc836 100644 --- a/htdocs/langs/zh_CN/holiday.lang +++ b/htdocs/langs/zh_CN/holiday.lang @@ -4,6 +4,7 @@ Holidays=Leave CPTitreMenu=Leave MenuReportMonth=月结单 MenuAddCP=新建请假请求 +MenuCollectiveAddCP=New collective leave request NotActiveModCP=You must enable the module Leave to view this page. AddCP=做一个请假申请 DateDebCP=开始日期 @@ -79,6 +80,8 @@ MotifCP=雷森 UserCP=用户 ErrorAddEventToUserCP=添加外部请假时出错异常。 AddEventToUserOkCP=外部请假添加成功。 +ErrorFieldRequiredUserOrGroup=The "group" field or the "user" field must be filled in +fusionGroupsUsers=The groups field and the user field will be merged MenuLogCP=查看变更日志 LogCP=Log of all updates made to "Balance of Leave" ActionByCP=Updated by @@ -86,6 +89,13 @@ UserUpdateCP=Updated for PrevSoldeCP=上一条平衡 NewSoldeCP=新建平衡 alreadyCPexist=这个期间已有请假申请了。 +UseralreadyCPexist=A leave request has already been done on this period for %s. +groups=群组 +users=用户 +AutoSendMail=Automatic mailing +NewHolidayForGroup=New collective leave request +SendRequestCollectiveCP=Send collective leave request +AutoValidationOnCreate=Automatic validation FirstDayOfHoliday=Beginning day of leave request LastDayOfHoliday=Ending day of leave request BoxTitleLastLeaveRequests=最近变更的 %s 份请假申请 diff --git a/htdocs/langs/zh_CN/hrm.lang b/htdocs/langs/zh_CN/hrm.lang index 1e7dc84d94f..f34283acae9 100644 --- a/htdocs/langs/zh_CN/hrm.lang +++ b/htdocs/langs/zh_CN/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=打开机构 CloseEtablishment=关闭机构 # Dictionary DictionaryPublicHolidays=Leave - Public holidays -DictionaryDepartment=HRM - 部门列表 +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=HRM - Job positions # Module Employees=雇员 @@ -20,13 +20,14 @@ Employee=雇员 NewEmployee=新建雇员 ListOfEmployees=List of employees HrmSetup=人力资源管理模块设置 -HRM_MAXRANK=Maximum rank for a skill +SkillsManagement=Skills management +HRM_MAXRANK=Maximum number of levels to rank a skill HRM_DEFAULT_SKILL_DESCRIPTION=Default description of ranks when skill is created deplacement=Shift DateEval=Evaluation date JobCard=Job card -Job=工作 -Jobs=Jobs +JobPosition=工作 +JobsPosition=Jobs NewSkill=New Skill SkillType=Skill type Skilldets=List of ranks for this skill @@ -47,9 +48,8 @@ ConfirmValidateEvaluation=Are you sure you want to validate this evaluation with EvaluationCard=Evaluation card RequiredRank=Required rank for this job EmployeeRank=Employee rank for this skill -Position=位置 -Positions=Positions -PositionCard=Position card +EmployeePosition=Employee position +EmployeePositions=Employee positions EmployeesInThisPosition=Employees in this position group1ToCompare=Usergroup to analyze group2ToCompare=Second usergroup for comparison @@ -70,12 +70,22 @@ RequiredSkills=Required skills for this job UserRank=User Rank SkillList=Skill list SaveRank=Save rank -knowHow=Know how -HowToBe=How to be -knowledge=Knowledge +TypeKnowHow=Know how +TypeHowToBe=How to be +TypeKnowledge=Knowledge AbandonmentComment=Abandonment comment DateLastEval=Date last evaluation NoEval=No evaluation done for this employee HowManyUserWithThisMaxNote=Number of users with this rank HighestRank=Highest rank SkillComparison=Skill comparison +ActionsOnJob=Events on this job +VacantPosition=job vacancy +VacantCheckboxHelper=Checking this option will show unfilled positions (job vacancy) +SaveAddSkill = Skill(s) added +SaveLevelSkill = Skill(s) level saved +DeleteSkill = Skill removed +SkillsExtraFields=Attributs supplémentaires (Compétences) +JobsExtraFields=Attributs supplémentaires (Emplois) +EvaluationsExtraFields=Attributs supplémentaires (Evaluations) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/zh_CN/install.lang b/htdocs/langs/zh_CN/install.lang index 5ae78a7ef0d..61c026d5c75 100644 --- a/htdocs/langs/zh_CN/install.lang +++ b/htdocs/langs/zh_CN/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=Configuration file %s is not writable. Check permis ConfFileIsWritable=配置文件 %s 为可写权限。 ConfFileMustBeAFileNotADir=配置文件 %s 必须是文件,而不是目录。 ConfFileReload=Reloading parameters from configuration file. -NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not reabable. We will run the installation process to try to initialize it. +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=PHP的POST和GET支持。 PHPSupportPOSTGETKo=It's possible your PHP setup does not support variables POST and/or GET. Check the parameter variables_order in php.ini. PHPSupportSessions=PHP多线程支持。 @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=您可能输入了一个错误的参数值的 '%s' ErrorFailedToCreateDatabase=无法创建数据库 '%s'。 ErrorFailedToConnectToDatabase=无法连接到数据库 '%s'。 ErrorDatabaseVersionTooLow=数据库版本 (%s) 太低了,需要 %s 或更高版本。 -ErrorPHPVersionTooLow=PHP的版本太旧了。至少需要 %s 版本。 +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=Connection to server successful but database '%s' not found. ErrorDatabaseAlreadyExists=数据库 '%s' 已存在。 +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=If the database does not exist, go back and check option "Create database". IfDatabaseExistsGoBackAndCheckCreate=如果数据库已经存在,请返回并取消选中“创建数据库”选项。 WarningBrowserTooOld=Version of browser is too old. Upgrading your browser to a recent version of Firefox, Chrome or Opera is highly recommended. diff --git a/htdocs/langs/zh_CN/main.lang b/htdocs/langs/zh_CN/main.lang index 95ab4e7a0b0..7a4386f62f8 100644 --- a/htdocs/langs/zh_CN/main.lang +++ b/htdocs/langs/zh_CN/main.lang @@ -244,6 +244,7 @@ Designation=描述 DescriptionOfLine=说明线 DateOfLine=Date of line DurationOfLine=Duration of line +ParentLine=Parent line ID Model=文档模板 DefaultModel=默认文档模板 Action=事件 @@ -344,7 +345,7 @@ KiloBytes=KB MegaBytes=MB GigaBytes=GB TeraBytes=TB -UserAuthor=Ceated by +UserAuthor=制作: UserModif=Updated by b=b. Kb=Kb @@ -517,6 +518,7 @@ or=或 Other=其他 Others=其他 OtherInformations=Other information +Workflow=工作流程 Quantity=数量 Qty=数量 ChangedBy=改变者: @@ -619,6 +621,7 @@ MonthVeryShort11=11 MonthVeryShort12=12 AttachedFiles=附件 JoinMainDoc=加入主要文件 +JoinMainDocOrLastGenerated=Send the main document or the last generated one if not found DateFormatYYYYMM=YYYY-MM DateFormatYYYYMMDD=YYYY-MM-DD DateFormatYYYYMMDDHHMM=YYYY-MM-DD HH:SS @@ -709,6 +712,7 @@ FeatureDisabled=功能禁用 MoveBox=拖动插件 Offered=提供 NotEnoughPermissions=您没有这个动作的权限 +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=会话名称 Method=方法 Receive=收到 @@ -798,6 +802,7 @@ URLPhoto=照片/徽标的URL SetLinkToAnotherThirdParty=关联其他合伙人 LinkTo=链接到 LinkToProposal=链接到报价 +LinkToExpedition= Link to expedition LinkToOrder=链接到订单 LinkToInvoice=链接到发票 LinkToTemplateInvoice=Link to template invoice @@ -1164,3 +1169,14 @@ NotClosedYet=Not yet closed ClearSignature=Reset signature CanceledHidden=Canceled hidden CanceledShown=Canceled shown +Terminate=Terminate +Terminated=Terminated +AddLineOnPosition=Add line on position (at the end if empty) +ConfirmAllocateCommercial=Assign sales representative confirmation +ConfirmAllocateCommercialQuestion=Are you sure you want to assign the %s selected record(s)? +CommercialsAffected=Sales representatives affected +CommercialAffected=Sales representative affected +YourMessage=Your message +YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. +UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/zh_CN/members.lang b/htdocs/langs/zh_CN/members.lang index c175a16fa82..b65136da596 100644 --- a/htdocs/langs/zh_CN/members.lang +++ b/htdocs/langs/zh_CN/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=End date of membership EndSubscription=End of membership SubscriptionId=Contribution ID WithoutSubscription=Without contribution -MemberId=会员ID +MemberId=Member Id +MemberRef=Member Ref NewMember=新会员 MemberType=会员类型 MemberTypeId=会员类型ID @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=成员类型无法删除 NewSubscription=新的捐献 NewSubscriptionDesc=这种形式可以让你记录你的订阅为基础的新会员。如果你想续订(如果已经是会员),请联系,而不是通过电子邮件%s 机构董事会。 Subscription=Contribution +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=为期 +GetMembershipButtonLabel=Get membership Subscriptions=Contributions SubscriptionLate=逾期 SubscriptionNotReceived=Contribution never received @@ -135,7 +142,7 @@ CardContent=内容您的会员卡 # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=我们希望通知您收到了您的会员资格请求。

ThisIsContentOfYourMembershipWasValidated=我们希望通过以下信息通知您,您的会员资格已经过验证:

-ThisIsContentOfYourSubscriptionWasRecorded=我们希望通知您,您的新订阅已被记录。

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=We want to let you know that your subscription is about to expire or has already expired (__MEMBER_LAST_SUBSCRIPTION_DATE_END__). We hope you will renew it.

ThisIsContentOfYourCard=This is a summary of the information we have about you. Please contact us if anything is incorrect.

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Subject of the notification email received in case of auto-inscription of a guest @@ -198,7 +205,8 @@ NbOfSubscriptions=Number of contributions AmountOfSubscriptions=Amount collected from contributions TurnoverOrBudget=营业额(公司)或财政预算案(基础) DefaultAmount=Default amount of contribution -CanEditAmount=Visitor can choose/edit amount of its contribution +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=集成在线支付页面跳转 ByProperties=自然地 MembersStatisticsByProperties=成员统计数据 @@ -218,3 +226,5 @@ XExternalUserCreated=%s external user(s) created ForceMemberNature=Force member nature (Individual or Corporation) CreateDolibarrLoginDesc=The creation of a user login for members allows them to connect to the application. Depending on the authorizations granted, they will be able, for example, to consult or modify their file themselves. CreateDolibarrThirdPartyDesc=A thirdparty is the legal entity that will be used on the invoice if you decide to generate invoice for each contribution. You will be able to create it later during the process of recording the contribution. +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/zh_CN/stocks.lang b/htdocs/langs/zh_CN/stocks.lang index 000c4ec4d04..155986a90ed 100644 --- a/htdocs/langs/zh_CN/stocks.lang +++ b/htdocs/langs/zh_CN/stocks.lang @@ -176,7 +176,7 @@ ProductStockWarehouseCreated=正确创建警报和所需最佳库存的库存限 ProductStockWarehouseUpdated=正确更新警报和所需最佳库存的库存限制 ProductStockWarehouseDeleted=正确删除警报和所需最佳库存的库存限制 AddNewProductStockWarehouse=设置警报和所需最佳库存的新限制 -AddStockLocationLine=减少数量,然后单击以添加此产品的另一个仓库 +AddStockLocationLine=Decrease quantity then click to split the line InventoryDate=库存日期 Inventories=Inventories NewInventory=新库存 @@ -254,7 +254,7 @@ ReOpen=重新打开 ConfirmFinish=Do you confirm the closing of the inventory ? This will generate all stock movements to update your stock to the real qty you entered into the inventory. ObjectNotFound=%s not found MakeMovementsAndClose=Generate movements and close -AutofillWithExpected=Replace real quantity with expected quantity +AutofillWithExpected=Fill real quantity with expected quantity ShowAllBatchByDefault=By default, show batch details on product "stock" tab CollapseBatchDetailHelp=You can set batch detail default display in stocks module configuration ErrorWrongBarcodemode=Unknown Barcode mode @@ -265,9 +265,53 @@ ProductBarcodeDoesNotExist=Product with barcode does not exist WarehouseId=Warehouse ID WarehouseRef=Warehouse Ref SaveQtyFirst=Save the real inventoried quantities first, before asking creation of the stock movement. +ToStart=开始 InventoryStartedShort=开始 ErrorOnElementsInventory=Operation canceled for the following reason: ErrorCantFindCodeInInventory=Can't find the following code in inventory QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requested barcode. You can close the Scanner tool. StockChangeDisabled=Change on stock disabled NoWarehouseDefinedForTerminal=No warehouse defined for terminal +ClearQtys=Clear all quantities +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=设置 +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/zh_TW/accountancy.lang b/htdocs/langs/zh_TW/accountancy.lang index e3e5087cbe0..cdefb9a7dd3 100644 --- a/htdocs/langs/zh_TW/accountancy.lang +++ b/htdocs/langs/zh_TW/accountancy.lang @@ -48,8 +48,9 @@ CountriesNotInEEC=非歐盟國家 CountriesInEECExceptMe=除了%s以外的歐盟國家 CountriesExceptMe=除了%s以外的所有國家 AccountantFiles=匯出來源文件 -ExportAccountingSourceDocHelp=使用此工具,您可以匯出用於產生會計的來源事件(CSV 和 PDF 中的清單)。 +ExportAccountingSourceDocHelp=With this tool, you can search and export the source events that are used to generate your accountancy.
The exported ZIP file will contain the lists of requested items in CSV, as well as their attached files in their original format (PDF, ODT, DOCX...). ExportAccountingSourceDocHelp2=要匯出您的日記帳,請使用選單條目 %s - %s。 +ExportAccountingProjectHelp=Specify a project if you need an accounting report only for a specific project. Expense reports and loan payments are not included in project reports. VueByAccountAccounting=依會計科目檢視 VueBySubAccountAccounting=依會計子分類帳檢視 @@ -161,7 +162,7 @@ BANK_DISABLE_DIRECT_INPUT=停用銀行帳戶中直接記錄交易 ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL=在日記帳上啟用草稿匯出 ACCOUNTANCY_COMBO_FOR_AUX=為子公司帳戶啟用組合列表(如果您有很多合作方,可能會很慢,損失搜尋部份數值的能力) ACCOUNTING_DATE_START_BINDING=定義開始綁定和轉移會計的日期。小於此日期,交易將不會轉入會計。 -ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=在會計轉帳時,預設選擇為週期顯示 +ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER=On accountancy transfer, what is the period selected by default ACCOUNTING_SELL_JOURNAL=銷售日記帳 ACCOUNTING_PURCHASE_JOURNAL=採購日記帳 @@ -182,7 +183,7 @@ DONATION_ACCOUNTINGACCOUNT=註冊捐款的會計科目 ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT=用於註冊訂閱的會計科目 ACCOUNTING_ACCOUNT_CUSTOMER_DEPOSIT=會計帳戶預設註冊客戶存款 -UseAuxiliaryAccountOnCustomerDeposit=Use sub-accounts on customer deposit lines +UseAuxiliaryAccountOnCustomerDeposit=Store customer account as individual account in subsidiary ledger for lines of down payments (if disabled, individual account for down payment lines will remain empty) ACCOUNTING_PRODUCT_BUY_ACCOUNT=所購買產品的預設會計科目(如果在產品表中未定義則使用) ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT=預設情況下,在EEC中所購買產品的會計帳戶(如果未在產品單中定義則使用) @@ -332,7 +333,7 @@ ACCOUNTING_DISABLE_BINDING_ON_EXPENSEREPORTS=停用費用報表中的會計綁 ## Export NotifiedExportDate=Flag exported lines as Exported (to modify a line, you will need to delete the whole transaction and re-transfert it into accounting) -NotifiedValidationDate=Validate and Lock the exported entries (same effect than the "Closure" feature, modification and deletion of the lines will DEFINITELY not be possible) +NotifiedValidationDate=Validate and Lock the exported entries (same effect than the "%s" feature, modification and deletion of the lines will DEFINITELY not be possible) DateValidationAndLock=驗證與鎖定的日期 ConfirmExportFile=確定要產生會計匯出檔案 ? ExportDraftJournal=匯出日記帳草稿 @@ -427,6 +428,7 @@ SorryThisModuleIsNotCompatibleWithTheExperimentalFeatureOfSituationInvoices=抱 AccountancyErrorMismatchLetterCode=協調代碼不匹配 AccountancyErrorMismatchBalanceAmount=餘額(%s)不等於0 AccountancyErrorLetteringBookkeeping=交易發生錯誤:%s +ErrorAccountNumberAlreadyExists=The accounting number %s already exists ## Import ImportAccountingEntries=會計條目 diff --git a/htdocs/langs/zh_TW/hrm.lang b/htdocs/langs/zh_TW/hrm.lang index 7677c4f25ff..ca67129cf3e 100644 --- a/htdocs/langs/zh_TW/hrm.lang +++ b/htdocs/langs/zh_TW/hrm.lang @@ -12,7 +12,7 @@ OpenEtablishment=開啟營業所 CloseEtablishment=關閉營業所 # Dictionary DictionaryPublicHolidays=休假 - 公共假期 -DictionaryDepartment=HRM-部門清單 +DictionaryDepartment=HRM - Organizational Unit DictionaryFunction=人力資源管理-職位 # Module Employees=員工 @@ -70,9 +70,9 @@ RequiredSkills=此職位的必要技能 UserRank=用戶等級 SkillList=技能清單 SaveRank=儲存等級 -knowHow=Know how -HowToBe=怎樣成為 -knowledge=知識 +TypeKnowHow=Know how +TypeHowToBe=怎樣成為 +TypeKnowledge=知識 AbandonmentComment=放棄評論 DateLastEval=上次評估日期 NoEval=沒有對此員工進行的評估 @@ -88,3 +88,4 @@ DeleteSkill = 技能已刪除 SkillsExtraFields=補充屬性(能力) JobsExtraFields=補充屬性 (職位) EvaluationsExtraFields=補充屬性(評估) +NeedBusinessTravels=Need business travels diff --git a/htdocs/langs/zh_TW/install.lang b/htdocs/langs/zh_TW/install.lang index f5b3ab6aaac..ef83355b6b1 100644 --- a/htdocs/langs/zh_TW/install.lang +++ b/htdocs/langs/zh_TW/install.lang @@ -8,7 +8,7 @@ ConfFileIsNotWritable=配置文件%s不可寫入。檢查權限。對於 ConfFileIsWritable=配置文件%s可寫入。 ConfFileMustBeAFileNotADir=配置文件%s必須是一個檔案,而不是資料夾。 ConfFileReload=從配置文件中重新載入參數。 -NoReadableConfFileSoStartInstall=設定檔案 conf/conf.php 不存在或不可讀取。我們將執行安裝過程以嘗試對其進行初始化。 +NoReadableConfFileSoStartInstall=The configuration file conf/conf.php does not exists or is not readable. We will run the installation process to try to initialize it. PHPSupportPOSTGETOk=此PHP支援變數POST和GET。 PHPSupportPOSTGETKo=您的PHP設定可能不支援變數POST和/或GET。檢查php.ini中的參數variables_order 。 PHPSupportSessions=這個PHP支援session。 @@ -24,9 +24,11 @@ ErrorWrongValueForParameter=您可能為參數“ %s”輸入了錯誤的值。 ErrorFailedToCreateDatabase=無法建立資料庫'%s'。 ErrorFailedToConnectToDatabase=無法連接到資料庫“ %s”。 ErrorDatabaseVersionTooLow=資料庫版本 (%s) 太舊. 需要至少版本 %s 或更新版本 -ErrorPHPVersionTooLow=PHP的版本太舊。至少必須是%s版本。 +ErrorPHPVersionTooLow=PHP version too old. Version %s or higher is required. +ErrorPHPVersionTooHigh=PHP version too high. Version %s or lower is required. ErrorConnectedButDatabaseNotFound=與伺服器的連接成功,但未找到資料庫'%s'。 ErrorDatabaseAlreadyExists=資料庫'%s'已經存在。 +ErrorNoMigrationFilesFoundForParameters=No migration file found for the selected versions IfDatabaseNotExistsGoBackAndUncheckCreate=如果資料庫不存在,請返回並檢查選項“建立資料庫”。 IfDatabaseExistsGoBackAndCheckCreate=如果資料庫已經存在,請返回並取消選取“建立資料庫”選項。 WarningBrowserTooOld=瀏覽器版本太舊。強烈建議將瀏覽器升級到最新版本的Firefox,Chrome或Opera。 diff --git a/htdocs/langs/zh_TW/main.lang b/htdocs/langs/zh_TW/main.lang index 9081e86d88c..2ebebd67743 100644 --- a/htdocs/langs/zh_TW/main.lang +++ b/htdocs/langs/zh_TW/main.lang @@ -712,6 +712,7 @@ FeatureDisabled=功能已關閉 MoveBox=移動小工具 Offered=已提供 NotEnoughPermissions=您沒有權限執行這個動作 +UserNotInHierachy=This action is reserved to the supervisors of this user SessionName=連線程序名稱 Method=方法 Receive=收到 @@ -801,6 +802,7 @@ URLPhoto=照片/logo的網址 SetLinkToAnotherThirdParty=連結到另一個合作方 LinkTo=連結到 LinkToProposal=連結到提案/建議書 +LinkToExpedition= Link to expedition LinkToOrder=連結到訂單 LinkToInvoice=連結到發票 LinkToTemplateInvoice=連結到發票範本 @@ -1174,3 +1176,7 @@ ConfirmAllocateCommercial=分配業務代表確認 ConfirmAllocateCommercialQuestion=您確定要分配 %s 選定的記錄嗎? CommercialsAffected=受影響的業務代表 CommercialAffected=受影響的業務代表 +YourMessage=Your message +YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible. +UrlToCheck=Url to check +Automation=Automation diff --git a/htdocs/langs/zh_TW/members.lang b/htdocs/langs/zh_TW/members.lang index 6dd2f02b4e5..525e960793e 100644 --- a/htdocs/langs/zh_TW/members.lang +++ b/htdocs/langs/zh_TW/members.lang @@ -35,7 +35,8 @@ DateEndSubscription=會員終止日 EndSubscription=終止會員 SubscriptionId=捐款編號 WithoutSubscription=沒有捐款 -MemberId=會員編號 +MemberId=Member Id +MemberRef=Member Ref NewMember=新會員 MemberType=會員類型 MemberTypeId=會員類型編號 @@ -71,6 +72,12 @@ MemberTypeCanNotBeDeleted=會員類型無法刪除 NewSubscription=新捐款 NewSubscriptionDesc=此表單使您可以作為財團的新會員來記錄訂閱。如果要續訂(如果已經是會員),請通過電子郵件%s與基金會聯繫。 Subscription=捐款 +AnyAmountWithAdvisedAmount=Any amount with a recommended amount of %s %s +AnyAmountWithoutAdvisedAmount=Any amount +CanEditAmountShort=Any amount +CanEditAmountShortForValues=recommended, any amount +MembershipDuration=期間 +GetMembershipButtonLabel=Get membership Subscriptions=捐款 SubscriptionLate=晚 SubscriptionNotReceived=從未收到捐款 @@ -135,7 +142,7 @@ CardContent=您的會員卡內容 # Text of email templates ThisIsContentOfYourMembershipRequestWasReceived=我們想通知您,您的會員要求已收到。

ThisIsContentOfYourMembershipWasValidated=謹在此通知您,您的會員資格已通過以下資訊驗證:

-ThisIsContentOfYourSubscriptionWasRecorded=我們想通知您,您的新訂閱已記錄。

+ThisIsContentOfYourSubscriptionWasRecorded=We want to let you know that your new subscription was recorded. Please find your invoice here enclosed.

ThisIsContentOfSubscriptionReminderEmail=我們想告訴您您的訂閱即將到期或已經到期(__MEMBER_LAST_SUBSCRIPTION_DATE_END__)。希望您能繼續訂閱。

ThisIsContentOfYourCard=這是我們有關您的資訊摘要。如果有任何錯誤,請與我們聯繫。

DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=訪客自動註冊時收到的通知電子郵件主題 @@ -198,7 +205,8 @@ NbOfSubscriptions=捐款數量 AmountOfSubscriptions=從捐款中收取的金額 TurnoverOrBudget=營業額(對於公司)或預算(對於財團) DefaultAmount=捐款預設金額 -CanEditAmount=訪客可以選擇/編輯其捐款金額 +CanEditAmount=Visitor can choose/edit amount of its contribution regardless of the member type +AmountIsLowerToMinimumNotice=sur un dû total de %s MEMBER_NEWFORM_PAYONLINE=跳至綜合線上支付頁面 ByProperties=依照性質 MembersStatisticsByProperties=會員性質統計 @@ -218,3 +226,5 @@ XExternalUserCreated=已建立%s位外部用戶 ForceMemberNature=強制會員性質(個人或公司) CreateDolibarrLoginDesc=為會員建立用戶登錄允許他們連接到應用程式。例如,根據授予的授權,他們將能夠自己查閱或修改他們的檔案。 CreateDolibarrThirdPartyDesc=如果您決定為每筆捐款產生發票,合作方就是將使用在發票上的實體法人。您稍後可以在記錄捐款的過程中建立它。 +MemberFirstname=Member firstname +MemberLastname=Member lastname diff --git a/htdocs/langs/zh_TW/projects.lang b/htdocs/langs/zh_TW/projects.lang index 904e83da591..911bfbc2c9c 100644 --- a/htdocs/langs/zh_TW/projects.lang +++ b/htdocs/langs/zh_TW/projects.lang @@ -259,7 +259,7 @@ TimeSpentInvoiced=花費時間已計費 TimeSpentForIntervention=花費時間 TimeSpentForInvoice=花費時間 OneLinePerUser=每位用戶一行 -ServiceToUseOnLines=行上使用的服務 +ServiceToUseOnLines=Service to use on lines by default InvoiceGeneratedFromTimeSpent=根據專案花費的時間產生了發票%s InterventionGeneratedFromTimeSpent=干預 %s 已從專案的時間花費上產生 ProjectBillTimeDescription=請勾選如果您輸入了有關專案任務的時間表,並計劃從此時間表中產生發票以向此專案的客戶開立帳單(不要勾選如果您打算建立不基於輸入時間表的發票)。注意:要產生發票,請前往專案的“花費時間”分頁上,並選擇要包括的行。 @@ -294,3 +294,4 @@ EnablePublicLeadForm=Enable the public form for contact NewLeadbyWeb=Your message or request has been recorded. We will answer or contact your soon. NewLeadForm=New contact form LeadFromPublicForm=Online lead from public form +ExportAccountingReportButtonLabel=Get report diff --git a/htdocs/langs/zh_TW/stocks.lang b/htdocs/langs/zh_TW/stocks.lang index dde036d41e1..b91d99a98cd 100644 --- a/htdocs/langs/zh_TW/stocks.lang +++ b/htdocs/langs/zh_TW/stocks.lang @@ -265,6 +265,7 @@ ProductBarcodeDoesNotExist=此條碼的產品不存在 WarehouseId=倉庫編號 WarehouseRef=倉庫名稱 SaveQtyFirst=在詢問建立庫存變動之前,首先儲存實際庫存數量。 +ToStart=開始 InventoryStartedShort=已開始 ErrorOnElementsInventory=操作因為以下原因取消: ErrorCantFindCodeInInventory=在庫存中找不到以下代號 @@ -272,3 +273,45 @@ QtyWasAddedToTheScannedBarcode=成功 !!數量已增加到所有請求的條 StockChangeDisabled=更改庫存已停用 NoWarehouseDefinedForTerminal=沒有為終端機定義倉庫 ClearQtys=清除所有數量 +ModuleStockTransferName=Advanced Stock Transfer +ModuleStockTransferDesc=Advanced management of Stock Transfer, with generation of transfer sheet +StockTransferNew=New stock transfer +StockTransferList=Stock transfers list +ConfirmValidateStockTransfer=Are you sure you want to validate this stocks transfer with reference %s ? +ConfirmDestock=Decrease of stocks with transfer %s +ConfirmDestockCancel=Cancel decrease of stocks with transfer %s +DestockAllProduct=Decrease of stocks +DestockAllProductCancel=Cancel decrease of stocks +ConfirmAddStock=Increase stocks with transfer %s +ConfirmAddStockCancel=Cancel increase of stocks with transfer %s +AddStockAllProduct=Increase of stocks +AddStockAllProductCancel=Cancel increase of stocks +DatePrevueDepart=Intended date of departure +DateReelleDepart=Real date of departure +DatePrevueArrivee=Intended date of arrival +DateReelleArrivee=Real date of arrival +HelpWarehouseStockTransferSource=If this warehouse is set, only itself and its children will be available as source warehouse +HelpWarehouseStockTransferDestination=If this warehouse is set, only itself and its children will be available as destination warehouse +LeadTimeForWarning=Lead time before alert (in days) +TypeContact_stocktransfer_internal_STFROM=Sender of stocks transfer +TypeContact_stocktransfer_internal_STDEST=Recipient of stocks transfer +TypeContact_stocktransfer_internal_STRESP=Responsible of stocks transfer +StockTransferSheet=Stocks transfer sheet +StockTransferSheetProforma=Proforma stocks transfer sheet +StockTransferDecrementation=Decrease source warehouses +StockTransferIncrementation=Increase destination warehouses +StockTransferDecrementationCancel=Cancel decrease of source warehouses +StockTransferIncrementationCancel=Cancel increase of destination warehouses +StockStransferDecremented=Source warehouses decreased +StockStransferDecrementedCancel=Decrease of source warehouses canceled +StockStransferIncremented=Closed - Stocks transfered +StockStransferIncrementedShort=Stocks transfered +StockStransferIncrementedShortCancel=Increase of destination warehouses canceled +StockTransferNoBatchForProduct=Product %s doesn't use batch, clear batch on line and retry +StockTransferSetup = Stocks Transfer module configuration +Settings=設定 +StockTransferSetupPage = Configuration page for stocks transfer module +StockTransferRightRead=Read stocks transfers +StockTransferRightCreateUpdate=Create/Update stocks transfers +StockTransferRightDelete=Delete stocks transfers +BatchNotFound=Lot / serial not found for this product diff --git a/htdocs/langs/zh_TW/ticket.lang b/htdocs/langs/zh_TW/ticket.lang index 650212e740c..8260468fbfc 100644 --- a/htdocs/langs/zh_TW/ticket.lang +++ b/htdocs/langs/zh_TW/ticket.lang @@ -90,8 +90,8 @@ TicketPublicAccess=以下網址提供了無需認證的公共界面 TicketSetupDictionaries=服務單類型,嚴重性和分析代碼可前往分類進行設定 TicketParamModule=模組變數設定 TicketParamMail=電子郵件設定 -TicketEmailNotificationFrom=回應服務單寄件者e-mail -TicketEmailNotificationFromHelp=從Dolibarr回應服務單寄件者e-mail +TicketEmailNotificationFrom=Sender e-mail for notification on answers +TicketEmailNotificationFromHelp=Sender e-mail to use to send the notification email when an answer is provided inside the backoffice. For example noreply@example.com TicketEmailNotificationTo=服務單建立通知傳送至此電子郵件 TicketEmailNotificationToHelp=如果存在,將通知此電子郵件有服務單被建立 TicketNewEmailBodyLabel=建立服務單後發送的訊息 @@ -99,6 +99,8 @@ TicketNewEmailBodyHelp=此處指定的文字將插入到從公共界面建立新 TicketParamPublicInterface=公共界面設定 TicketsEmailMustExist=需要現有的電子郵件地址來建立服務單 TicketsEmailMustExistHelp=在公共界面中,電子郵件地址應該已經填入到資料庫中以建立服務單。 +TicketCreateThirdPartyWithContactIfNotExist=Ask name and company name for unknown emails. +TicketCreateThirdPartyWithContactIfNotExistHelp=Check if a thirdparty or a contact exists for the email entered. If not, ask a name and a company name to create a third party with contact. PublicInterface=公共界面 TicketUrlPublicInterfaceLabelAdmin=公共界面的備用網址 TicketUrlPublicInterfaceHelpAdmin=可以為網站伺服器定義別名,使得公共界面可以與另一個網址一起使用(伺服器必須充當此新網址的代理) diff --git a/htdocs/projet/tasks.php b/htdocs/projet/tasks.php index 06734790495..ffba37abb7d 100644 --- a/htdocs/projet/tasks.php +++ b/htdocs/projet/tasks.php @@ -152,18 +152,18 @@ $planned_workload = $planned_workloadhour * 3600 + $planned_workloadmin * 60; // Definition of fields for list $arrayfields = array( - 't.ref'=>array('label'=>$langs->trans("RefTask"), 'checked'=>1, 'position'=>1), - 't.label'=>array('label'=>$langs->trans("LabelTask"), 'checked'=>1, 'position'=>2), - 't.description'=>array('label'=>$langs->trans("Description"), 'checked'=>0, 'position'=>3), - 't.dateo'=>array('label'=>$langs->trans("DateStart"), 'checked'=>1, 'position'=>4), - 't.datee'=>array('label'=>$langs->trans("Deadline"), 'checked'=>1, 'position'=>5), - 't.planned_workload'=>array('label'=>$langs->trans("PlannedWorkload"), 'checked'=>1, 'position'=>6), - 't.duration_effective'=>array('label'=>$langs->trans("TimeSpent"), 'checked'=>1, 'position'=>7), - 't.progress_calculated'=>array('label'=>$langs->trans("ProgressCalculated"), 'checked'=>1, 'position'=>8), - 't.progress'=>array('label'=>$langs->trans("ProgressDeclared"), 'checked'=>1, 'position'=>9), - 't.progress_summary'=>array('label'=>$langs->trans("TaskProgressSummary"), 'checked'=>1, 'position'=>10), - 't.budget_amount'=>array('label'=>"Budget", 'checked'=>1, 'position'=>11), - 'c.assigned'=>array('label'=>$langs->trans("TaskRessourceLinks"), 'checked'=>1, 'position'=>12), + 't.ref'=>array('label'=>"RefTask", 'checked'=>1, 'position'=>1), + 't.label'=>array('label'=>"LabelTask", 'checked'=>1, 'position'=>2), + 't.description'=>array('label'=>"Description", 'checked'=>0, 'position'=>3), + 't.dateo'=>array('label'=>"DateStart", 'checked'=>1, 'position'=>4), + 't.datee'=>array('label'=>"Deadline", 'checked'=>1, 'position'=>5), + 't.planned_workload'=>array('label'=>"PlannedWorkload", 'checked'=>1, 'position'=>6), + 't.duration_effective'=>array('label'=>"TimeSpent", 'checked'=>1, 'position'=>7), + 't.progress_calculated'=>array('label'=>"ProgressCalculated", 'checked'=>1, 'position'=>8), + 't.progress'=>array('label'=>"ProgressDeclared", 'checked'=>1, 'position'=>9), + 't.progress_summary'=>array('label'=>"TaskProgressSummary", 'checked'=>1, 'position'=>10), + 't.budget_amount'=>array('label'=>"Budget", 'checked'=>0, 'position'=>11), + 'c.assigned'=>array('label'=>"TaskRessourceLinks", 'checked'=>1, 'position'=>12), ); if ($object->usage_bill_time) { $arrayfields['t.tobill'] = array('label'=>$langs->trans("TimeToBill"), 'checked'=>0, 'position'=>11); diff --git a/htdocs/projet/tasks/list.php b/htdocs/projet/tasks/list.php index 7528b13f2c5..65c4ab49da4 100644 --- a/htdocs/projet/tasks/list.php +++ b/htdocs/projet/tasks/list.php @@ -160,7 +160,7 @@ $arrayfields = array( 't.progress_calculated'=>array('label'=>"ProgressCalculated", 'checked'=>1, 'position'=>104), 't.progress'=>array('label'=>"ProgressDeclared", 'checked'=>1, 'position'=>105), 't.progress_summary'=>array('label'=>"TaskProgressSummary", 'checked'=>1, 'position'=>106), - 't.budget_amount'=>array('label'=>"Budget", 'checked'=>1, 'position'=>107), + 't.budget_amount'=>array('label'=>"Budget", 'checked'=>0, 'position'=>107), 't.tobill'=>array('label'=>"TimeToBill", 'checked'=>0, 'position'=>110), 't.billed'=>array('label'=>"TimeBilled", 'checked'=>0, 'position'=>111), 't.datec'=>array('label'=>"DateCreation", 'checked'=>0, 'position'=>500), @@ -1229,9 +1229,12 @@ while ($i < $imaxinloop) { $totalarray['totalprogress_summary'] = $totalarray['nbfield']; } } + // Budget for task if (!empty($arrayfields['t.budget_amount']['checked'])) { print ''; - print price($object->budget_amount, 0, $langs, 1, 0, 0, $conf->currency); + if ($object->budget_amount) { + print ''.price($object->budget_amount, 0, $langs, 1, 0, 0, $conf->currency).''; + } print ''; if (!$i) { $totalarray['nbfield']++; diff --git a/htdocs/projet/tasks/task.php b/htdocs/projet/tasks/task.php index ec02492433b..d3f3cb9b00e 100644 --- a/htdocs/projet/tasks/task.php +++ b/htdocs/projet/tasks/task.php @@ -310,7 +310,7 @@ if ($id > 0 || !empty($ref)) { // Budget print ''.$langs->trans("Budget").''; if (strcmp($projectstatic->budget_amount, '')) { - print price($projectstatic->budget_amount, '', $langs, 1, 0, 0, $conf->currency); + print ''.price($projectstatic->budget_amount, '', $langs, 1, 0, 0, $conf->currency).''; } print ''; @@ -588,7 +588,7 @@ if ($id > 0 || !empty($ref)) { // Budget print ''.$langs->trans("Budget").''; if (strcmp($object->budget_amount, '')) { - print price($object->budget_amount, 0, $langs, 1, 0, 0, $conf->currency); + print ''.price($object->budget_amount, 0, $langs, 1, 0, 0, $conf->currency).''; } print ''; From d65ea8c33330dc8520d5e9de2173db727ff07f16 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Tue, 26 Jul 2022 11:04:52 +0200 Subject: [PATCH 09/12] Debug v16 --- htdocs/projet/tasks/task.php | 13 +++++++------ htdocs/projet/tasks/time.php | 23 +++++++++++++++++------ 2 files changed, 24 insertions(+), 12 deletions(-) diff --git a/htdocs/projet/tasks/task.php b/htdocs/projet/tasks/task.php index d3f3cb9b00e..da0a078196b 100644 --- a/htdocs/projet/tasks/task.php +++ b/htdocs/projet/tasks/task.php @@ -37,11 +37,12 @@ require_once DOL_DOCUMENT_ROOT.'/core/modules/project/task/modules_task.php'; // Load translation files required by the page $langs->loadlangs(array('projects', 'companies')); +$action = GETPOST('action', 'aZ09'); +$confirm = GETPOST('confirm', 'alpha'); + $id = GETPOST('id', 'int'); $ref = GETPOST("ref", 'alpha', 1); // task ref $taskref = GETPOST("taskref", 'alpha'); // task ref -$action = GETPOST('action', 'aZ09'); -$confirm = GETPOST('confirm', 'alpha'); $withproject = GETPOST('withproject', 'int'); $project_ref = GETPOST('project_ref', 'alpha'); $planned_workload = ((GETPOST('planned_workloadhour', 'int') != '' || GETPOST('planned_workloadmin', 'int') != '') ? (GETPOST('planned_workloadhour', 'int') > 0 ?GETPOST('planned_workloadhour', 'int') * 3600 : 0) + (GETPOST('planned_workloadmin', 'int') > 0 ?GETPOST('planned_workloadmin', 'int') * 60 : 0) : ''); @@ -233,7 +234,7 @@ if ($id > 0 || !empty($ref)) { // Title $morehtmlref .= $projectstatic->title; // Thirdparty - if ($projectstatic->thirdparty->id > 0) { + if (!empty($projectstatic->thirdparty->id) &&$projectstatic->thirdparty->id > 0) { $morehtmlref .= '
'.$langs->trans('ThirdParty').' : '.$projectstatic->thirdparty->getNomUrl(1, 'project'); } $morehtmlref .= '
'; @@ -244,7 +245,7 @@ if ($id > 0 || !empty($ref)) { $projectstatic->next_prev_filter = " rowid IN (".$db->sanitize(count($objectsListId) ?join(',', array_keys($objectsListId)) : '0').")"; } - dol_banner_tab($projectstatic, 'project_ref', $linkback, 1, 'ref', 'ref', $morehtmlref); + dol_banner_tab($projectstatic, 'project_ref', $linkback, 1, 'ref', 'ref', $morehtmlref, $param); print '
'; print '
'; @@ -325,7 +326,7 @@ if ($id > 0 || !empty($ref)) { print '
'; print '
'; - print ''; + print '
'; // Description print '
'.$langs->trans("Description").''; @@ -509,7 +510,7 @@ if ($id > 0 || !empty($ref)) { // Third party $morehtmlref .= $langs->trans("ThirdParty").': '; - if (!empty($projectstatic->thirdparty)) { + if (!empty($projectstatic->thirdparty) && is_object($projectstatic->thirdparty)) { $morehtmlref .= $projectstatic->thirdparty->getNomUrl(1); } $morehtmlref .= ''; diff --git a/htdocs/projet/tasks/time.php b/htdocs/projet/tasks/time.php index ab93e3561b0..712a69022fb 100644 --- a/htdocs/projet/tasks/time.php +++ b/htdocs/projet/tasks/time.php @@ -98,8 +98,10 @@ $childids = $user->getAllChildIds(1); $hookmanager->initHooks(array('projecttasktime', 'globalcard')); $object = new Task($db); -$projectstatic = new Project($db); $extrafields = new ExtraFields($db); +$projectstatic = new Project($db); + +// fetch optionals attributes and labels $extrafields->fetch_name_optionals_label($projectstatic->table_element); $extrafields->fetch_name_optionals_label($object->table_element); @@ -790,7 +792,7 @@ if (($id > 0 || !empty($ref)) || $projectidforalltimes > 0 || $allprojectforuser print ''; // Usage - if (!empty($conf->global->PROJECT_USE_OPPORTUNITIES) || empty($conf->global->PROJECT_HIDE_TASKS) || !empty($conf->eventorganization->enabled)) { + if (!empty($conf->global->PROJECT_USE_OPPORTUNITIES) || empty($conf->global->PROJECT_HIDE_TASKS) || isModEnabled('eventorganization')) { print ''; @@ -813,7 +815,7 @@ if (($id > 0 || !empty($ref)) || $projectidforalltimes > 0 || $allprojectforuser print $form->textwithpicto($langs->trans("BillTime"), $htmltext); print '
'; } - if (!empty($conf->eventorganization->enabled)) { + if (isModEnabled('eventorganization')) { print 'usage_organize_event ? ' checked="checked"' : '')).'"> '; $htmltext = $langs->trans("EventOrganizationDescriptionLong"); print $form->textwithpicto($langs->trans("ManageOrganizeEvent"), $htmltext); @@ -969,7 +971,7 @@ if (($id > 0 || !empty($ref)) || $projectidforalltimes > 0 || $allprojectforuser // Third party $morehtmlref .= $langs->trans("ThirdParty").': '; - if (is_object($projectstatic->thirdparty)) { + if (!empty($projectstatic->thirdparty) && is_object($projectstatic->thirdparty)) { $morehtmlref .= $projectstatic->thirdparty->getNomUrl(1); } $morehtmlref .= ''; @@ -981,10 +983,19 @@ if (($id > 0 || !empty($ref)) || $projectidforalltimes > 0 || $allprojectforuser print '
'; print '
'; - print '
'; print $langs->trans("Usage"); print '
'; + print '
'; + + // Task parent + print ''; // Date start - Date end - print ''; - print ''; + print ''; // Accountancy code print ''; print '\n"; print ''; @@ -300,10 +301,11 @@ if ($action == 'create') { print ''; print ''; print ''; - // Number + // Number print ''; diff --git a/htdocs/loan/schedule.php b/htdocs/loan/schedule.php index 0944142bc1c..cd5faa1afe3 100644 --- a/htdocs/loan/schedule.php +++ b/htdocs/loan/schedule.php @@ -234,17 +234,16 @@ if (count($echeances->lines) > 0) { print ''; } +//print_fiche_titre($langs->trans("FinancialCommitment")); +print '
'; + print '
'; print '
'.$langs->trans("ChildOfTask").''; + if ($object->fk_task_parent > 0) { + $tasktmp = new Task($db); + $tasktmp->fetch($object->fk_task_parent); + print $tasktmp->getNomUrl(1); + } + print '
'.$langs->trans("DateStart").' - '.$langs->trans("DateEnd").''; + print '
'.$langs->trans("DateStart").' - '.$langs->trans("Deadline").''; $start = dol_print_date($object->date_start, 'dayhour'); print ($start ? $start : '?'); $end = dol_print_date($object->date_end, 'dayhour'); From 3eedf18344b074b2cec5d9ce91cb76a75fe88ca4 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Tue, 26 Jul 2022 11:53:00 +0200 Subject: [PATCH 10/12] Debug v16 --- htdocs/compta/bank/class/account.class.php | 2 +- .../bank/class/paymentvarious.class.php | 51 +++++-------------- htdocs/compta/bank/various_payment/card.php | 4 +- htdocs/compta/bank/various_payment/list.php | 2 + .../install/mysql/migration/15.0.0-16.0.0.sql | 2 + .../tables/llx_loan_schedule-loan.key.sql | 20 ++++++++ .../mysql/tables/llx_loan_schedule-loan.sql | 2 +- htdocs/loan/payment/payment.php | 4 +- htdocs/loan/schedule.php | 29 +++++------ htdocs/projet/class/project.class.php | 2 +- 10 files changed, 60 insertions(+), 58 deletions(-) create mode 100644 htdocs/install/mysql/tables/llx_loan_schedule-loan.key.sql diff --git a/htdocs/compta/bank/class/account.class.php b/htdocs/compta/bank/class/account.class.php index 7a7097ecb71..21a082e9491 100644 --- a/htdocs/compta/bank/class/account.class.php +++ b/htdocs/compta/bank/class/account.class.php @@ -2390,7 +2390,7 @@ class AccountLine extends CommonObject $result = ''; - $label = img_picto('', $this->picto).' '.$langs->trans("Transaction").':
'; + $label = img_picto('', $this->picto).' '.$langs->trans("BankTransactionLine").':
'; $label .= ''.$langs->trans("Ref").': '.$this->ref; $linkstart = ''; diff --git a/htdocs/compta/bank/class/paymentvarious.class.php b/htdocs/compta/bank/class/paymentvarious.class.php index 8bad5dbebd0..48ea553abf0 100644 --- a/htdocs/compta/bank/class/paymentvarious.class.php +++ b/htdocs/compta/bank/class/paymentvarious.class.php @@ -606,45 +606,20 @@ class PaymentVarious extends CommonObject public function LibStatut($status, $mode = 0) { // phpcs:enable - global $langs; - - if ($mode == 0) { - return $langs->trans($this->statuts[$status]); - } elseif ($mode == 1) { - return $langs->trans($this->statuts_short[$status]); - } elseif ($mode == 2) { - if ($status == 0) { - return img_picto($langs->trans($this->statuts_short[$status]), 'statut0').' '.$langs->trans($this->statuts_short[$status]); - } elseif ($status == 1) { - return img_picto($langs->trans($this->statuts_short[$status]), 'statut4').' '.$langs->trans($this->statuts_short[$status]); - } elseif ($status == 2) { - return img_picto($langs->trans($this->statuts_short[$status]), 'statut6').' '.$langs->trans($this->statuts_short[$status]); - } - } elseif ($mode == 3) { - if ($status == 0 && !empty($this->statuts_short[$status])) { - return img_picto($langs->trans($this->statuts_short[$status]), 'statut0'); - } elseif ($status == 1 && !empty($this->statuts_short[$status])) { - return img_picto($langs->trans($this->statuts_short[$status]), 'statut4'); - } elseif ($status == 2 && !empty($this->statuts_short[$status])) { - return img_picto($langs->trans($this->statuts_short[$status]), 'statut6'); - } - } elseif ($mode == 4) { - if ($status == 0 && !empty($this->statuts_short[$status])) { - return img_picto($langs->trans($this->statuts_short[$status]), 'statut0').' '.$langs->trans($this->statuts[$status]); - } elseif ($status == 1 && !empty($this->statuts_short[$status])) { - return img_picto($langs->trans($this->statuts_short[$status]), 'statut4').' '.$langs->trans($this->statuts[$status]); - } elseif ($status == 2 && !empty($this->statuts_short[$status])) { - return img_picto($langs->trans($this->statuts_short[$status]), 'statut6').' '.$langs->trans($this->statuts[$status]); - } - } elseif ($mode == 5) { - if ($status == 0 && !empty($this->statuts_short[$status])) { - return $langs->trans($this->statuts_short[$status]).' '.img_picto($langs->trans($this->statuts_short[$status]), 'statut0'); - } elseif ($status == 1 && !empty($this->statuts_short[$status])) { - return $langs->trans($this->statuts_short[$status]).' '.img_picto($langs->trans($this->statuts_short[$status]), 'statut4'); - } elseif ($status == 2 && !empty($this->statuts_short[$status])) { - return $langs->trans($this->statuts_short[$status]).' '.img_picto($langs->trans($this->statuts_short[$status]), 'statut6'); - } + if (empty($this->labelStatus) || empty($this->labelStatusShort)) { + global $langs; + //$langs->load("mymodule@mymodule"); + /*$this->labelStatus[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv('Draft'); + $this->labelStatus[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv('Enabled'); + $this->labelStatus[self::STATUS_CANCELED] = $langs->transnoentitiesnoconv('Disabled'); + $this->labelStatusShort[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv('Draft'); + $this->labelStatusShort[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv('Enabled'); + $this->labelStatusShort[self::STATUS_CANCELED] = $langs->transnoentitiesnoconv('Disabled');*/ } + + $statusType = 'status'.$status; + + return dolGetStatus($this->labelStatus[$status], $this->labelStatusShort[$status], '', $statusType, $mode); } diff --git a/htdocs/compta/bank/various_payment/card.php b/htdocs/compta/bank/various_payment/card.php index 95d5ffa0e9e..b135daa8f00 100644 --- a/htdocs/compta/bank/various_payment/card.php +++ b/htdocs/compta/bank/various_payment/card.php @@ -584,6 +584,8 @@ if ($id) { $morehtmlref .= ''; $linkback = ''.$langs->trans("BackToList").''; + $morehtmlright = ''; + dol_banner_tab($object, 'id', $linkback, 1, 'rowid', 'ref', $morehtmlref, '', 0, '', $morehtmlright); print '
'; @@ -613,7 +615,7 @@ if ($id) { } print '
'.$langs->trans("Sens").''.$sens.'
'.$langs->trans("Amount").''.price($object->amount, 0, $outputlangs, 1, -1, -1, $conf->currency).'
'.$langs->trans("Amount").''.price($object->amount, 0, $langs, 1, -1, -1, $conf->currency).'
'; diff --git a/htdocs/compta/bank/various_payment/list.php b/htdocs/compta/bank/various_payment/list.php index f75ce6d4471..1118fcab70a 100644 --- a/htdocs/compta/bank/various_payment/list.php +++ b/htdocs/compta/bank/various_payment/list.php @@ -537,6 +537,8 @@ if ($resql) { $totalarray = array(); $totalarray['nbfield'] = 0; $totalarray['val']['total_cred'] = 0; + $totalarray['val']['total_deb'] = 0; + while ($i < min($num, $limit)) { $obj = $db->fetch_object($resql); diff --git a/htdocs/install/mysql/migration/15.0.0-16.0.0.sql b/htdocs/install/mysql/migration/15.0.0-16.0.0.sql index 0e2bde5c784..2131f1a4061 100644 --- a/htdocs/install/mysql/migration/15.0.0-16.0.0.sql +++ b/htdocs/install/mysql/migration/15.0.0-16.0.0.sql @@ -667,3 +667,5 @@ ALTER TABLE llx_cronjob DROP INDEX uk_cronjob; ALTER TABLE llx_cronjob ADD UNIQUE INDEX uk_cronjob (label, entity); ALTER TABLE llx_expedition ADD COLUMN billed smallint DEFAULT 0; + +ALTER TABLE llx_loan_schedule ADD UNIQUE INDEX uk_loan_schedule_ref (fk_loan, datep); diff --git a/htdocs/install/mysql/tables/llx_loan_schedule-loan.key.sql b/htdocs/install/mysql/tables/llx_loan_schedule-loan.key.sql new file mode 100644 index 00000000000..8d47d879a2d --- /dev/null +++ b/htdocs/install/mysql/tables/llx_loan_schedule-loan.key.sql @@ -0,0 +1,20 @@ +-- =================================================================== +-- Copyright (C) 2022 Laurent Destailleur +-- +-- 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 . +-- +-- =================================================================== + +ALTER TABLE llx_loan_schedule ADD UNIQUE INDEX uk_loan_schedule_ref (fk_loan, datep); + diff --git a/htdocs/install/mysql/tables/llx_loan_schedule-loan.sql b/htdocs/install/mysql/tables/llx_loan_schedule-loan.sql index dd68a426e61..0e3eba210a8 100644 --- a/htdocs/install/mysql/tables/llx_loan_schedule-loan.sql +++ b/htdocs/install/mysql/tables/llx_loan_schedule-loan.sql @@ -23,7 +23,7 @@ create table llx_loan_schedule fk_loan integer, datec datetime, -- creation date tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - datep datetime, -- payment date + datep datetime, -- payment date expected amount_capital double(24,8) DEFAULT 0, amount_insurance double(24,8) DEFAULT 0, amount_interest double(24,8) DEFAULT 0, diff --git a/htdocs/loan/payment/payment.php b/htdocs/loan/payment/payment.php index ac2b967593c..a8d4269ddfe 100644 --- a/htdocs/loan/payment/payment.php +++ b/htdocs/loan/payment/payment.php @@ -293,6 +293,7 @@ if ($action == 'create') { print '
'.$langs->trans("PaymentMode").''; + print img_picto('', 'money-bill-alt', 'class="pictofixedwidth"'); $form->select_types_paiements(GETPOSTISSET("paymenttype") ? GETPOST("paymenttype", 'alphanohtml') : $loan->fk_typepayment, "paymenttype"); print "
'.$langs->trans('AccountToDebit').''; + print img_picto('', 'bank_account', 'class="pictofixedwidth"'); $form->select_comptes(GETPOSTISSET("accountid") ? GETPOST("accountid", 'int') : $loan->accountid, "accountid", 0, 'courant = '.Account::TYPE_CURRENT, 1); // Show opend bank account list print '
'.$langs->trans('Numero'); print ' ('.$langs->trans("ChequeOrTransferNumber").')'; print '
'; -print ''; + $colspan = 6; if (count($echeances->lines) > 0) { $colspan++; } -print ''; -print ''; print ''; print ''; @@ -276,10 +275,10 @@ if ($object->nbterm > 0 && count($echeances->lines) == 0) { print ''; print ''; print ''; - print ''; - print ''; - print ''; - print ''; + print ''; + print ''; + print ''; + print ''; print ''."\n"; $i++; $capital = $cap_rest; @@ -300,15 +299,15 @@ if ($object->nbterm > 0 && count($echeances->lines) == 0) { print ''; print ''; print ''; - print ''; - print ''; + print ''; + print ''; if (empty($line->fk_bank)) { - print ''; + print ''; } else { - print ''; + print ''; } - print ''; + print ''; print ''; diff --git a/htdocs/projet/class/project.class.php b/htdocs/projet/class/project.class.php index 4d851b86270..8c48b7b1ae6 100644 --- a/htdocs/projet/class/project.class.php +++ b/htdocs/projet/class/project.class.php @@ -1294,7 +1294,7 @@ class Project extends CommonObject $result .= $linkstart; if ($withpicto) { - $result .= img_object(($notooltip ? '' : $label), $picto, ($notooltip ? (($withpicto != 2) ? 'class="paddingright"' : '') : 'class="'.(($withpicto != 2) ? 'paddingright ' : '').'classfortooltip pictofixedwidth"'), 0, 0, $notooltip ? 0 : 1); + $result .= img_object(($notooltip ? '' : $label), $picto, ($notooltip ? (($withpicto != 2) ? 'class="paddingright"' : '') : 'class="'.(($withpicto != 2) ? 'paddingright ' : '').'classfortooltip pictofixedwidth em088"'), 0, 0, $notooltip ? 0 : 1); } if ($withpicto != 2) { $result .= $this->ref; From 64fd91c3198d366e9341dd2caddebfca11400b07 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Tue, 26 Jul 2022 11:58:47 +0200 Subject: [PATCH 11/12] Trans --- htdocs/langs/en_US/loan.lang | 2 +- htdocs/loan/card.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/langs/en_US/loan.lang b/htdocs/langs/en_US/loan.lang index d271ed0c140..31a91f04d29 100644 --- a/htdocs/langs/en_US/loan.lang +++ b/htdocs/langs/en_US/loan.lang @@ -24,7 +24,7 @@ FinancialCommitment=Financial commitment InterestAmount=Interest CapitalRemain=Capital remain TermPaidAllreadyPaid = This term is allready paid -CantUseScheduleWithLoanStartedToPaid = Can't use scheduler for a loan with payment started +CantUseScheduleWithLoanStartedToPaid = Can't generate a timeline for a loan with a payment started CantModifyInterestIfScheduleIsUsed = You can't modify interest if you use schedule # Admin ConfigLoan=Configuration of the module loan diff --git a/htdocs/loan/card.php b/htdocs/loan/card.php index 3ad898cda98..f3d83a1d37d 100644 --- a/htdocs/loan/card.php +++ b/htdocs/loan/card.php @@ -473,7 +473,7 @@ if ($id > 0) { print ''; print ''; } else { - print ''; + print ''; } // Insurance @@ -482,7 +482,7 @@ if ($id > 0) { print ''; print ''; } else { - print ''; + print ''; } // Date start From ab4eb1a9af528254983813c78f63472fd118f8e3 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Tue, 26 Jul 2022 12:16:33 +0200 Subject: [PATCH 12/12] Debug v16 --- htdocs/core/class/commonobject.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/class/commonobject.class.php b/htdocs/core/class/commonobject.class.php index 99a7189b008..bf32aca2f57 100644 --- a/htdocs/core/class/commonobject.class.php +++ b/htdocs/core/class/commonobject.class.php @@ -6862,7 +6862,7 @@ abstract class CommonObject $out = ''; } elseif (preg_match('/varchar/', $type)) { $out = ' 0 ? ' maxlength="'.$size.'"' : '').' value="'.dol_escape_htmltag($value).'"'.($moreparam ? $moreparam : '').($autofocusoncreate ? ' autofocus' : '').'>'; - } elseif (in_array($type, array('mail', 'phone', 'url'))) { + } elseif (in_array($type, array('email', 'mail', 'phone', 'url'))) { $out = ''; } elseif (preg_match('/^text/', $type)) { if (!preg_match('/search_/', $keyprefix)) { // If keyprefix is search_ or search_options_, we must just use a simple text field
'; -print $langs->trans("FinancialCommitment"); -print '
'.$langs->trans("Term").'
'.$i.''.dol_print_date(dol_time_plus_duree($object->datestart, $i - 1, 'm'), 'day').''.price($insurance + (($i == 1) ? $regulInsurance : 0), 0, '', 1, -1, -1, $conf->currency).''.price($int, 0, '', 1, -1, -1, $conf->currency).''.price($cap_rest).''.price($insurance + (($i == 1) ? $regulInsurance : 0), 0, '', 1, -1, -1, $conf->currency).''.price($int, 0, '', 1, -1, -1, $conf->currency).''.price($cap_rest).'
'.$i.''.dol_print_date($line->datep, 'day').''.price($insu, 0, '', 1, -1, -1, $conf->currency).''.price($int, 0, '', 1, -1, -1, $conf->currency).''.price($insu, 0, '', 1, -1, -1, $conf->currency).''.price($int, 0, '', 1, -1, -1, $conf->currency).''.price($mens, 0, '', 1, -1, -1, $conf->currency).''.price($mens, 0, '', 1, -1, -1, $conf->currency).''.price($cap_rest, 0, '', 1, -1, -1, $conf->currency).''.price($cap_rest, 0, '', 1, -1, -1, $conf->currency).''; if (!empty($line->fk_bank)) { print $langs->trans('Paid'); @@ -316,7 +315,7 @@ if ($object->nbterm > 0 && count($echeances->lines) == 0) { print ' ('.img_object($langs->trans("Payment"), "payment").' '.$line->fk_payment_loan.')'; } } elseif (!$printed) { - print ''.$langs->trans('DoPayment').''; + print ''.$langs->trans('DoPayment').''; $printed = true; } print '
'.$langs->trans("LoanCapital").''.price($object->capital, 0, $outputlangs, 1, -1, -1, $conf->currency).'
'.$langs->trans("LoanCapital").''.price($object->capital, 0, $outputlangs, 1, -1, -1, $conf->currency).'
'.$langs->trans("Insurance").''.price($object->insurance_amount, 0, $outputlangs, 1, -1, -1, $conf->currency).'
'.$langs->trans("Insurance").''.price($object->insurance_amount, 0, $outputlangs, 1, -1, -1, $conf->currency).'