2
0
forked from Wavyzz/dolibarr

Merge branch '20.0' of git@github.com:Dolibarr/dolibarr.git into develop

This commit is contained in:
Laurent Destailleur
2024-08-26 21:09:21 +02:00
375 changed files with 9546 additions and 8092 deletions

View File

@@ -718,10 +718,11 @@ function ajax_constantonoff($code, $input = array(), $entity = null, $revertonof
* @param string $morecss More CSS
* @param string $htmlname Name of HTML component. Keep '' or use a different value if you need to use this component several time on the same page for the same field.
* @param int $forcenojs Force the component to work as link post (without javascript) instead of ajax call
* @param string $moreparam When $forcenojs=1 then we can add more parameters to the backtopage URL. String must url encoded. Example: 'abc=def&fgh=ijk'
* @return string html for button on/off
* @see ajax_constantonoff() to update that value of a constant
*/
function ajax_object_onoff($object, $code, $field, $text_on, $text_off, $input = array(), $morecss = '', $htmlname = '', $forcenojs = 0)
function ajax_object_onoff($object, $code, $field, $text_on, $text_off, $input = array(), $morecss = '', $htmlname = '', $forcenojs = 0, $moreparam = '')
{
global $conf, $langs;
@@ -826,8 +827,8 @@ function ajax_object_onoff($object, $code, $field, $text_on, $text_off, $input =
}
if (empty($conf->use_javascript_ajax) || $forcenojs) {
$out .= '<a id="set_'.$htmlname.'_'.$object->id.'" class="linkobject '.($object->$code == 1 ? 'hideobject' : '').($morecss ? ' '.$morecss : '').'" href="'.DOL_URL_ROOT.'/core/ajax/objectonoff.php?action=set&token='.newToken().'&id='.((int) $object->id).'&element='.urlencode($object->element).'&field='.urlencode($field).'&value=1&backtopage='.urlencode($_SERVER["PHP_SELF"].'?id='.$object->id).'">'.img_picto($langs->trans($text_off), $switchoff, '', false, 0, 0, '', $cssswitchoff).'</a>';
$out .= '<a id="del_'.$htmlname.'_'.$object->id.'" class="linkobject '.($object->$code == 1 ? '' : 'hideobject').($morecss ? ' '.$morecss : '').'" href="'.DOL_URL_ROOT.'/core/ajax/objectonoff.php?action=set&token='.newToken().'&id='.((int) $object->id).'&element='.urlencode($object->element).'&field='.urlencode($field).'&value=0&backtopage='.urlencode($_SERVER["PHP_SELF"].'?id='.$object->id).'">'.img_picto($langs->trans($text_on), $switchon, '', false, 0, 0, '', $cssswitchon).'</a>';
$out .= '<a id="set_'.$htmlname.'_'.$object->id.'" class="linkobject '.($object->$code == 1 ? 'hideobject' : '').($morecss ? ' '.$morecss : '').'" href="'.DOL_URL_ROOT.'/core/ajax/objectonoff.php?action=set&token='.newToken().'&id='.((int) $object->id).'&element='.urlencode($object->element).'&field='.urlencode($field).'&value=1&backtopage='.urlencode($_SERVER["PHP_SELF"].'?id='.$object->id.($moreparam ? '&'.$moreparam : '')).'">'.img_picto($langs->trans($text_off), $switchoff, '', false, 0, 0, '', $cssswitchoff).'</a>';
$out .= '<a id="del_'.$htmlname.'_'.$object->id.'" class="linkobject '.($object->$code == 1 ? '' : 'hideobject').($morecss ? ' '.$morecss : '').'" href="'.DOL_URL_ROOT.'/core/ajax/objectonoff.php?action=set&token='.newToken().'&id='.((int) $object->id).'&element='.urlencode($object->element).'&field='.urlencode($field).'&value=0&backtopage='.urlencode($_SERVER["PHP_SELF"].'?id='.$object->id.($moreparam ? '&'.$moreparam : '')).'">'.img_picto($langs->trans($text_on), $switchon, '', false, 0, 0, '', $cssswitchon).'</a>';
} else {
$out .= '<span id="set_'.$htmlname.'_'.$object->id.'" class="linkobject '.($object->$code == 1 ? 'hideobject' : '').($morecss ? ' '.$morecss : '').'">'.img_picto($langs->trans($text_off), $switchoff, '', false, 0, 0, '', $cssswitchoff).'</span>';
$out .= '<span id="del_'.$htmlname.'_'.$object->id.'" class="linkobject '.($object->$code == 1 ? '' : 'hideobject').($morecss ? ' '.$morecss : '').'">'.img_picto($langs->trans($text_on), $switchon, '', false, 0, 0, '', $cssswitchon).'</span>';

View File

@@ -12424,7 +12424,8 @@ function dolGetButtonAction($label, $text = '', $actionType = 'default', $url =
if (empty($userRight)) {
$attr['class'] = 'butActionRefused';
$attr['href'] = '';
$attr['title'] = (($label && $text && $label != $text) ? $label : $langs->trans('NotEnoughPermissions'));
$attr['title'] = (($label && $text && $label != $text) ? $label : '');
$attr['title'] = ($attr['title'] ? $attr['title'].'<br>' : '').$langs->trans('NotEnoughPermissions');
}
if (!empty($id)) {

View File

@@ -447,7 +447,7 @@ function show_stats_for_company($product, $socid)
}
$langs->load("propal");
print '<tr><td>';
print '<a href="propal.php?id='.$product->id.'">'.img_object('', 'propal', 'class="pictofixedwidth"').$langs->trans("Proposals").'</a>';
print '<a href="'.DOL_URL_ROOT.'/product/stats/propal.php?id='.$product->id.'">'.img_object('', 'propal', 'class="pictofixedwidth"').$langs->trans("Proposals").'</a>';
print '</td><td class="right">';
print $product->stats_propale['customers'];
print '</td><td class="right">';
@@ -466,7 +466,7 @@ function show_stats_for_company($product, $socid)
}
$langs->load("supplier_proposal");
print '<tr><td>';
print '<a href="supplier_proposal.php?id='.$product->id.'">'.img_object('', 'supplier_proposal', 'class="pictofixedwidth"').$langs->trans("SupplierProposals").'</a>';
print '<a href="'.DOL_URL_ROOT.'/product/stats/supplier_proposal.php?id='.$product->id.'">'.img_object('', 'supplier_proposal', 'class="pictofixedwidth"').$langs->trans("SupplierProposals").'</a>';
print '</td><td class="right">';
print $product->stats_proposal_supplier['suppliers'];
print '</td><td class="right">';
@@ -485,7 +485,7 @@ function show_stats_for_company($product, $socid)
}
$langs->load("orders");
print '<tr><td>';
print '<a href="commande.php?id='.$product->id.'">'.img_object('', 'order', 'class="pictofixedwidth"').$langs->trans("CustomersOrders").'</a>';
print '<a href="'.DOL_URL_ROOT.'/product/stats/commande.php?id='.$product->id.'">'.img_object('', 'order', 'class="pictofixedwidth"').$langs->trans("CustomersOrders").'</a>';
print '</td><td class="right">';
print $product->stats_commande['customers'];
print '</td><td class="right">';
@@ -504,7 +504,7 @@ function show_stats_for_company($product, $socid)
}
$langs->load("orders");
print '<tr><td>';
print '<a href="commande_fournisseur.php?id='.$product->id.'">'.img_object('', 'supplier_order', 'class="pictofixedwidth"').$langs->trans("SuppliersOrders").'</a>';
print '<a href="'.DOL_URL_ROOT.'/product/stats/commande_fournisseur.php?id='.$product->id.'">'.img_object('', 'supplier_order', 'class="pictofixedwidth"').$langs->trans("SuppliersOrders").'</a>';
print '</td><td class="right">';
print $product->stats_commande_fournisseur['suppliers'];
print '</td><td class="right">';
@@ -523,7 +523,7 @@ function show_stats_for_company($product, $socid)
}
$langs->load("bills");
print '<tr><td>';
print '<a href="facture.php?id='.$product->id.'">'.img_object('', 'bill', 'class="pictofixedwidth"').$langs->trans("CustomersInvoices").'</a>';
print '<a href="'.DOL_URL_ROOT.'/product/stats/facture.php?id='.$product->id.'">'.img_object('', 'bill', 'class="pictofixedwidth"').$langs->trans("CustomersInvoices").'</a>';
print '</td><td class="right">';
print $product->stats_facture['customers'];
print '</td><td class="right">';
@@ -542,7 +542,7 @@ function show_stats_for_company($product, $socid)
}
$langs->load("bills");
print '<tr><td>';
print '<a href="facturerec.php?id='.$product->id.'">'.img_object('', 'bill', 'class="pictofixedwidth"').$langs->trans("RecurringInvoiceTemplate").'</a>';
print '<a href="'.DOL_URL_ROOT.'/product/stats/facturerec.php?id='.$product->id.'">'.img_object('', 'bill', 'class="pictofixedwidth"').$langs->trans("RecurringInvoiceTemplate").'</a>';
print '</td><td class="right">';
print $product->stats_facture['customers'];
print '</td><td class="right">';
@@ -561,7 +561,7 @@ function show_stats_for_company($product, $socid)
}
$langs->load("bills");
print '<tr><td>';
print '<a href="facture_fournisseur.php?id='.$product->id.'">'.img_object('', 'supplier_invoice', 'class="pictofixedwidth"').$langs->trans("SuppliersInvoices").'</a>';
print '<a href="'.DOL_URL_ROOT.'/product/stats/facture_fournisseur.php?id='.$product->id.'">'.img_object('', 'supplier_invoice', 'class="pictofixedwidth"').$langs->trans("SuppliersInvoices").'</a>';
print '</td><td class="right">';
print $product->stats_facture_fournisseur['suppliers'];
print '</td><td class="right">';
@@ -581,7 +581,7 @@ function show_stats_for_company($product, $socid)
}
$langs->load("sendings");
print '<tr><td>';
print '<a href="expedition.php?id='.$product->id.'">'.img_object('', 'shipment', 'class="pictofixedwidth"').$langs->trans("Shipments").'</a>';
print '<a href="'.DOL_URL_ROOT.'/product/stats/expedition.php?id='.$product->id.'">'.img_object('', 'shipment', 'class="pictofixedwidth"').$langs->trans("Shipments").'</a>';
print '</td><td class="right">';
print $product->stats_expedition['customers'];
print '</td><td class="right">';
@@ -601,7 +601,7 @@ function show_stats_for_company($product, $socid)
}
$langs->load("receptions");
print '<tr><td>';
print '<a href="reception.php?id='.$product->id.'">'.img_object('', 'reception', 'class="pictofixedwidth"').$langs->trans("Receptions").'</a>';
print '<a href="'.DOL_URL_ROOT.'/product/stats/reception.php?id='.$product->id.'">'.img_object('', 'reception', 'class="pictofixedwidth"').$langs->trans("Receptions").'</a>';
print '</td><td class="right">';
print $product->stats_reception['suppliers'];
print '</td><td class="right">';
@@ -621,7 +621,7 @@ function show_stats_for_company($product, $socid)
}
$langs->load("contracts");
print '<tr><td>';
print '<a href="contrat.php?id='.$product->id.'">'.img_object('', 'contract', 'class="pictofixedwidth"').$langs->trans("Contracts").'</a>';
print '<a href="'.DOL_URL_ROOT.'/product/stats/contrat.php?id='.$product->id.'">'.img_object('', 'contract', 'class="pictofixedwidth"').$langs->trans("Contracts").'</a>';
print '</td><td class="right">';
print $product->stats_contrat['customers'];
print '</td><td class="right">';
@@ -642,7 +642,7 @@ function show_stats_for_company($product, $socid)
$langs->load("mrp");
print '<tr><td>';
print '<a href="bom.php?id='.$product->id.'">'.img_object('', 'bom', 'class="pictofixedwidth"').$langs->trans("BOM").'</a>';
print '<a href="'.DOL_URL_ROOT.'/product/stats/bom.php?id='.$product->id.'">'.img_object('', 'bom', 'class="pictofixedwidth"').$langs->trans("BOM").'</a>';
print '</td><td class="right">';
print '</td><td class="right">';
@@ -666,7 +666,7 @@ function show_stats_for_company($product, $socid)
}
$langs->load("mrp");
print '<tr><td>';
print '<a href="mo.php?id='.$product->id.'">'.img_object('', 'mrp', 'class="pictofixedwidth"').$langs->trans("MO").'</a>';
print '<a href="'.DOL_URL_ROOT.'/product/stats/mo.php?id='.$product->id.'">'.img_object('', 'mrp', 'class="pictofixedwidth"').$langs->trans("MO").'</a>';
print '</td><td class="right">';
print $form->textwithpicto($product->stats_mo['customers_toconsume'], $langs->trans("ToConsume"));
print ' ';

View File

@@ -458,9 +458,9 @@ ExtrafieldSelect = ዝርዝር ይምረጡ
ExtrafieldSelectList=ከጠረጴዛው ውስጥ ይምረጡ
ExtrafieldSeparator=መለያ (ሜዳ አይደለም)
ExtrafieldPassword=የይለፍ ቃል
ExtrafieldRadio=የሬዲዮ ቁልፎች (አንድ ምርጫ ብቻ)
ExtrafieldCheckBox=አመልካች ሳጥኖች
ExtrafieldCheckBoxFromList=አመልካች ሳጥኖች ከጠረጴዛ
ExtrafieldRadio=Radio buttons (1 choice only)
ExtrafieldCheckBox=Select list (n choices)
ExtrafieldCheckBoxFromList=Select from table (n choices)
ExtrafieldLink=ከአንድ ነገር ጋር አገናኝ
ExtrafieldPointGeo=Geometric Point
ExtrafieldMultiPointGeo=Geometric Multi Point
@@ -475,7 +475,7 @@ ExtrafieldParamHelpselect=List of values must be lines with format key,value (wh
ExtrafieldParamHelpcheckbox=የእሴቶቹ ዝርዝር የቅርጸት ቁልፍ፣ እሴት (ቁልፉ '0' ሊሆን የማይችልበት) መስመሮች መሆን አለባቸው<br><br> ለምሳሌ : <br>1,value1<br>2,value2,<br>3,value3n<br>...
ExtrafieldParamHelpradio=List of values must be lines with format key,value (where key can't be '0')<br><br> for example: <br>1,value1<br>2,value2<br>3,value3<br>...
ExtrafieldParamHelpsellist=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>- id_field is necessarily a primary int key<br>- filtersql is a condition. It must use the USF syntax. Example: (active:=:1) to display only active value<br>You can also use $ID$ in filter which is the current id of current object<br>If you want to filter on extrafields use syntax extra.fieldcode=... (where fieldcode is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelpchkbxlst=የእሴቶቹ ዝርዝር ከሠንጠረዥ ነው የሚመጣው<br>አገባብ፡ table_name:label_field:id_field::filtersql<br>ምሳሌ: c_typent:lib ::filtersql<br><br>ማጣሪያ ገባሪ እሴትን ብቻ ለማሳየት ቀላል ሙከራ (ለምሳሌ active=1) ሊሆን ይችላል<br>እንዲሁም $ID$ን በማጣሪያ ጠንቋይ መጠቀም ትችላለህ የአሁኑ ነገር መታወቂያ<br>በማጣሪያ ውስጥ ምረጥን ለማድረግ $SEL$<br>extrafields ላይ ማጣራት ከፈለግክ syntax extra.fieldcode=... (የመስክ ኮድ የኤክስትራፊልድ ኮድ የሆነበት)<br><br>ዝርዝሩን በሌላ ተጨማሪ የባህሪ ዝርዝር ላይ በመመስረት እንዲኖርዎት፡<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter b0342fccfda19z0>b0342fccfda19z0' z0 ዝርዝሩ እንደሌላው ዝርዝር እንዲኖር፡<br>c_typent:libelle:id:<i>parent_list_code</i>|የወላጅ_ዓምድ: ማጣሪያ
ExtrafieldParamHelpchkbxlst=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>filter can be a simple test (eg active=1 to display only active value)<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelplink=መለኪያዎች ObjectName:Classpath<br>አገባብ መሆን አለባቸው የነገር ስም: ክፍል
ExtrafieldParamHelpSeparator=ለቀላል መለያየት ባዶ ያቆዩ<br>ለሚሰበሰብ መለያየት ይህንን ወደ 1 ያዋቅሩት (ለአዲስ ክፍለ ጊዜ በነባሪነት ክፈት፣ ከዚያ ለእያንዳንዱ ክፍለ ጊዜ ሁኔታ ይቀመጣል)<br>ይህን ወደ 2 አዘጋጅ ለሚፈርስ መለያየት (ለአዲስ ክፍለ ጊዜ በነባሪነት ወድቋል፣ ከዚያ ሁኔታ ለእያንዳንዱ ተጠቃሚ ክፍለ ጊዜ ይጠበቃል)
LibraryToBuildPDF=ለፒዲኤፍ ማመንጨት የሚያገለግል ላይብረሪ
@@ -1457,7 +1457,7 @@ HRMSetup=HRM ሞጁል ማዋቀር
CompanySetup=የኩባንያዎች ሞጁል ማዋቀር
CompanyCodeChecker=የደንበኛ/የሻጭ ኮዶችን በራስ ሰር የማመንጨት አማራጮች
AccountCodeManager=የደንበኛ/ሻጭ የሂሳብ ኮዶችን በራስ ሰር የማመንጨት አማራጮች
NotificationsDesc=ለአንዳንድ የዶሊባር ክስተቶች የኢሜይል ማሳወቂያዎች በራስ ሰር ሊላኩ ይችላሉ።<br>የማሳወቂያ ተቀባዮች፡-
NotificationsDesc=Email notifications can be sent automatically on certain events.<br>Recipients of notifications can be defined:
NotificationsDescUser=* per user (on the tab "Notifications" of a user)
NotificationsDescContact=* per third-party contacts (on the tab "Notifications" of a third party)
NotificationsDescGlobal=* or by setting global email addresses (on the setup page of the module).
@@ -1993,10 +1993,10 @@ ExpenseReportsRulesSetup=የሞጁል የወጪ ሪፖርቶች ማዋቀር -
ExpenseReportNumberingModules=የወጪ ሪፖርቶች የቁጥር ሞጁል
NoModueToManageStockIncrease=በራስ ሰር የአክሲዮን ጭማሪን ማስተዳደር የሚችል ምንም ሞጁል አልነቃም። የአክሲዮን ጭማሪ የሚከናወነው በእጅ ግብዓት ላይ ብቻ ነው።
YouMayFindNotificationsFeaturesIntoModuleNotification=ሞጁሉን "ማሳወቂያ" በማንቃት እና በማዋቀር ለኢሜል ማሳወቂያዎች አማራጮችን ልታገኝ ትችላለህ።
TemplatesForNotifications=የማሳወቂያዎች አብነቶች
TemplatesForNotifications=Emails templates for notifications
ListOfNotificationsPerUser=በአንድ ተጠቃሚ ራስ-ሰር ማሳወቂያዎች ዝርዝር*
ListOfNotificationsPerUserOrContact=ሊሆኑ የሚችሉ ራስ-ሰር ማሳወቂያዎች ዝርዝር (በንግድ ስራ ላይ) በተጠቃሚ* ወይም በእውቂያዎች ይገኛሉ**
ListOfFixedNotifications=ራስ-ሰር ቋሚ ማሳወቂያዎች ዝርዝር
ListOfFixedNotifications=Global recipients emails for automatic email notifications
GoOntoUserCardToAddMore=ለተጠቃሚዎች ማሳወቂያዎችን ለመጨመር ወይም ለማስወገድ ወደ ተጠቃሚው ትር "ማሳወቂያዎች" ይሂዱ
GoOntoContactCardToAddMore=የእውቂያዎች/አድራሻዎች ማሳወቂያዎችን ለማከል ወይም ለማስወገድ ወደ የሶስተኛ ወገን ማሳወቂያዎች ትር ይሂዱ።
Threshold=ገደብ
@@ -2126,7 +2126,7 @@ MAIN_DOCUMENTS_WITH_PICTURE_WIDTH=ስዕል በመስመሮች ላይ ከተጨ
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_UNIT_PRICE=በጥቅስ ጥያቄዎች ላይ የንጥል ዋጋ አምድ ደብቅ
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_TOTAL_COLUMN=በጥቅስ ጥያቄዎች ላይ አጠቃላይ የዋጋ አምድ ደብቅ
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_UNIT_PRICE=በግዢ ትዕዛዞች ላይ ያለውን የዋጋ አምድ ደብቅ
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=በግዢ ትዕዛዞች ላይ ያለውን አጠቃላይ የዋጋ አምድ ደብቅ
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=Hide the total price column on purchase orders
MAIN_PDF_NO_SENDER_FRAME=በላኪ አድራሻ ፍሬም ላይ ድንበሮችን ደብቅ
MAIN_PDF_NO_RECIPENT_FRAME=በተቀባይ አድራሻ ፍሬም ላይ ድንበሮችን ደብቅ
MAIN_PDF_HIDE_CUSTOMER_CODE=የደንበኛ ኮድ ደብቅ
@@ -2279,6 +2279,7 @@ NotAPublicIp=ይፋዊ አይፒ አይደለም።
MakeAnonymousPing=መሰረቱን የዶሊባርር ጭነት ቁጥር እንዲቆጥር ለዶሊባርር ፋውንዴሽን አገልጋይ የማይታወቅ ፒንግ '+1' ይስሩ (ከተጫነ በኋላ 1 ጊዜ ብቻ ተከናውኗል)።
FeatureNotAvailableWithReceptionModule=ሞጁል መቀበያ ሲነቃ ባህሪ አይገኝም
EmailTemplate=የኢሜል አብነት
EmailTemplateHelp=You can create emails templates from menu %s - %s
EMailsWillHaveMessageID=Emails will have a 'Message-ID' header matching this syntax
PDF_SHOW_PROJECT=በሰነድ ላይ ፕሮጀክት አሳይ
ShowProjectLabel=የፕሮጀክት መለያ
@@ -2539,5 +2540,16 @@ MainAuthenticationOidcLoginClaimName=Login claim
MainAuthenticationOidcLoginClaimDesc=OpenID Connect claim matching the Dolibarr user login. If not set or empty, defaults to email
BlackListWords=Black list of words
AddBlackList=Add to black list
FediverseSetup=Configuration of fediverse section
ConfigImportSocialNetwork=Configuration of social networks compatible with Fediverse
Fediverse=Fediverse
NewSocialNetwork=New Fediverse social network
SocialNetworkUrl=Fediverse API URL
SocialNetworksNote=Each social network definition provides a widget that you must enable to have it available in dashboard
ConfirmDeleteSocialNetwork= Are you sure want to delete this record ?
AnOwnerMustBeSetIfEmailTemplateIsPrivate=An owner must be set if the email template is set as private
ContactsDefaultRoles=For third parties of the "individual" type, a contact can be created simultaneously. Define here the roles that will be systematically assigned to this contact.
MenuDict=Dictionary
AddMoreParams=Add more parameters for connection (cookies, tokens, ...)<br> Example: token : value token
ParamName=Name of parameter
ParamValue=Value of parameter

View File

@@ -23,23 +23,24 @@ TOKEN_REFRESH=Refresh Token
TOKEN_EXPIRED=ማስመሰያ ጊዜው አልፎበታል።
TOKEN_EXPIRE_AT=ማስመሰያ ጊዜው የሚያበቃው በ
TOKEN_DELETE=የተቀመጠ ማስመሰያ ሰርዝ
OAUTH_GOOGLE_NAME=OAuth ጉግል አገልግሎት
OAUTH_GOOGLE_ID=OAuth ጉግል መታወቂያ
OAUTH_GOOGLE_SECRET=OAuth ጉግል ሚስጥር
OAUTH_GITHUB_NAME=OAuth GitHub አገልግሎት
OAUTH_GITHUB_ID=OAuth GitHub መታወቂያ
OAUTH_GITHUB_SECRET=OAuth GitHub ምስጢር
OAUTH_URL_FOR_CREDENTIAL=ወደ <a class="notasortlink" href="%s" target="_blank" rel="noopener noreferrer external">ይህ ገጽ<span class="fas fa-external-link-alt paddingleft"></span>='span><span' > </a> የእርስዎን OAuth መታወቂያ እና ምስጢር ለመፍጠር ወይም ለማግኘት
OAUTH_STRIPE_TEST_NAME=የOAuth ስትሪፕ ሙከራ
OAUTH_STRIPE_LIVE_NAME=OAuth ስትሪፕ ቀጥታ ስርጭት
OAUTH_STRIPE_TEST_NAME=Stripe Test
OAUTH_STRIPE_LIVE_NAME=Stripe Live
OAUTH_ID=የOAuth ደንበኛ መታወቂያ
OAUTH_SECRET=የOAuth ሚስጥር
OAUTH_TENANT=OAuth ተከራይ
OAuthProviderAdded=OAuth አቅራቢ ታክሏል።
AOAuthEntryForThisProviderAndLabelAlreadyHasAKey=ለዚህ አቅራቢ የOAuth ግቤት እና መለያ አስቀድሞ አለ።
URLOfOAuthServiceEndpoints=Base URL for OAuth service endpoints
URLOfOAuthServiceEndpointsExample=https://mastodon.example.com
URLOfServiceForAuthorization=ለማረጋገጫ በOAuth አገልግሎት የቀረበ URL
Scopes=ፈቃዶች (ወሰን)
ScopeUndefined=ፈቃዶች (ወሰን) ያልተገለጹ (የቀደመውን ትር ይመልከቱ)
ScopesDesc=Example: read,write with Mastodom
TokenRawValue=Full Token (object)
AccessToken=Access Token
TokenExpired=Expired

View File

@@ -458,9 +458,9 @@ ExtrafieldSelect = Select list
ExtrafieldSelectList=Select from table
ExtrafieldSeparator=فاصل (ليس حقلاً)
ExtrafieldPassword=الرمز السري
ExtrafieldRadio=أزرار اختيار (خيار واحد فقط)
ExtrafieldCheckBox=مربعات الاختيار
ExtrafieldCheckBoxFromList=مربعات الاختيار من الجدول
ExtrafieldRadio=Radio buttons (1 choice only)
ExtrafieldCheckBox=Select list (n choices)
ExtrafieldCheckBoxFromList=Select from table (n choices)
ExtrafieldLink=رابط إلى كائن
ExtrafieldPointGeo=Geometric Point
ExtrafieldMultiPointGeo=Geometric Multi Point
@@ -475,7 +475,7 @@ ExtrafieldParamHelpselect=يجب أن تكون قائمة القيم أسطرً
ExtrafieldParamHelpcheckbox=يجب أن تكون قائمة القيم أسطرًا تحتوي على مفتاح تنسيق ، القيمة (حيث لا يمكن أن يكون المفتاح "0") <br> <br> على سبيل المثال: <br> 1 ، value1 <br> 2 ، value2 a0342fccfda19bda19b342 ...
ExtrafieldParamHelpradio=يجب أن تكون قائمة القيم أسطرًا تحتوي على مفتاح تنسيق ، القيمة (حيث لا يمكن أن يكون المفتاح '0') <br> <br> على سبيل المثال: <br> 1 ، value1 <br> 2 ، value2 a0342fccfda19bda19b342 ...
ExtrafieldParamHelpsellist=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>- id_field is necessarily a primary int key<br>- filtersql is a condition. It must use the USF syntax. Example: (active:=:1) to display only active value<br>You can also use $ID$ in filter which is the current id of current object<br>If you want to filter on extrafields use syntax extra.fieldcode=... (where fieldcode is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelpchkbxlst=قائمة القيم تأتي من جدول <br> التركيب: table_name: label_field: id_field :: Filtersql <br> مثال: c_typent: libelle: id :: Filtersql <br> <br> filter يمكن أن يكون عامل التصفية النشط a034b <br> فقط يمكن أيضًا استخدام $ ID $ in filter witch هو المعرف الحالي للكائن الحالي <br> للقيام بتحديد في عامل التصفية ، استخدم $ SEL $ <br> إذا كنت تريد التصفية على الحقول الإضافية ، استخدم بناء الجملة extra.fieldcode = ... (حيث يكون رمز الحقل هو code of extrafield) <br> <br> In order to have the list depending on another complementary attribute list: <br> c_typent:libelle:id:options_ <i> parent_list_code </i> |parent_column:filter <br> <br> In order to have the list depending on another list: <br> c_typent: libelle: id: <i> parent_list_code </i> | parent_column: مرشح
ExtrafieldParamHelpchkbxlst=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>filter can be a simple test (eg active=1 to display only active value)<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelplink=يجب أن تكون المعلمات ObjectName: Classpath <br> البنية: اسم الكائن: Classpath
ExtrafieldParamHelpSeparator=احتفظ به فارغًا لفاصل بسيط <br> اضبط هذا على 1 لفاصل مطوي (يفتح افتراضيًا للجلسة الجديدة ، ثم يتم الاحتفاظ بالحالة لكل جلسة مستخدم) <br> اضبط هذا على 2 لفاصل مطوي (مطوي افتراضيًا لجلسة جديدة ، ثم يتم الاحتفاظ بالحالة قبل كل جلسة مستخدم)
LibraryToBuildPDF=المكتبة المستخدمة لتوليد ملفات صيغة المستندات المتنقلة
@@ -1457,7 +1457,7 @@ HRMSetup=HRM وحدة الإعداد
CompanySetup=وحدة الإعداد للشركات
CompanyCodeChecker=خيارات الإنشاء التلقائي لرموز العملاء / البائعين
AccountCodeManager=خيارات الإنشاء التلقائي لأكواد محاسبة العملاء / البائعين
NotificationsDesc=يمكن إرسال إشعارات البريد الإلكتروني تلقائيًا لبعض أحداث Dolibarr. <br> يمكن تحديد مستلمي الإخطارات:
NotificationsDesc=Email notifications can be sent automatically on certain events.<br>Recipients of notifications can be defined:
NotificationsDescUser=* per user (on the tab "Notifications" of a user)
NotificationsDescContact=* per third-party contacts (on the tab "Notifications" of a third party)
NotificationsDescGlobal=* or by setting global email addresses (on the setup page of the module).
@@ -1993,10 +1993,10 @@ ExpenseReportsRulesSetup=إعداد تقارير نفقات الوحدة - ال
ExpenseReportNumberingModules=وحدة ترقيم تقارير المصاريف
NoModueToManageStockIncrease=تم تفعيل أي وحدة قادرة على إدارة زيادة المخزون التلقائي. وسوف يتم زيادة الأسهم على الإدخال اليدوي فقط.
YouMayFindNotificationsFeaturesIntoModuleNotification=قد تجد خيارات لإشعارات البريد الإلكتروني عن طريق تمكين وتكوين وحدة "الإعلام".
TemplatesForNotifications=قوالب للإخطارات
TemplatesForNotifications=Emails templates for notifications
ListOfNotificationsPerUser=قائمة الإخطارات التلقائية لكل مستخدم *
ListOfNotificationsPerUserOrContact=قائمة الإخطارات التلقائية الممكنة (في حدث العمل) المتاحة لكل مستخدم * أو لكل جهة اتصال **
ListOfFixedNotifications=قائمة الإخطارات الثابتة التلقائية
ListOfFixedNotifications=Global recipients emails for automatic email notifications
GoOntoUserCardToAddMore=انتقل إلى علامة التبويب "التنبيهات" للمستخدم لإضافة أو إزالة الإشعارات للمستخدمين
GoOntoContactCardToAddMore=انتقل إلى علامة التبويب "التنبيهات" الخاصة بطرف ثالث لإضافة أو إزالة إشعارات جهات الاتصال / العناوين
Threshold=عتبة
@@ -2126,7 +2126,7 @@ MAIN_DOCUMENTS_WITH_PICTURE_WIDTH=عرض العمود إذا تم إضافة ص
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_UNIT_PRICE=إخفاء عمود سعر الوحدة في طلبات عروض الأسعار
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_TOTAL_COLUMN=إخفاء عمود السعر الإجمالي في طلبات عروض الأسعار
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_UNIT_PRICE=إخفاء عمود سعر الوحدة في أوامر الشراء
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=إخفاء عمود السعر الإجمالي في أوامر الشراء
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=Hide the total price column on purchase orders
MAIN_PDF_NO_SENDER_FRAME=إخفاء الحدود في إطار عنوان المرسل
MAIN_PDF_NO_RECIPENT_FRAME=إخفاء الحدود في إطار عنوان المستلم
MAIN_PDF_HIDE_CUSTOMER_CODE=إخفاء رمز العميل
@@ -2279,6 +2279,7 @@ NotAPublicIp=ليس IP عام
MakeAnonymousPing=قم بعمل Ping مجهول "+1" لخادم مؤسسة Dolibarr (يتم إجراؤه مرة واحدة فقط بعد التثبيت) للسماح للمؤسسة بحساب عدد تثبيت Dolibarr.
FeatureNotAvailableWithReceptionModule=الميزة غير متاحة عند تمكين استقبال الوحدة
EmailTemplate=نموذج للبريد الإلكتروني
EmailTemplateHelp=You can create emails templates from menu %s - %s
EMailsWillHaveMessageID=Emails will have a 'Message-ID' header matching this syntax
PDF_SHOW_PROJECT=عرض المشروع في المستند
ShowProjectLabel=تسمية المشروع
@@ -2539,5 +2540,16 @@ MainAuthenticationOidcLoginClaimName=Login claim
MainAuthenticationOidcLoginClaimDesc=OpenID Connect claim matching the Dolibarr user login. If not set or empty, defaults to email
BlackListWords=Black list of words
AddBlackList=Add to black list
FediverseSetup=Configuration of fediverse section
ConfigImportSocialNetwork=Configuration of social networks compatible with Fediverse
Fediverse=Fediverse
NewSocialNetwork=New Fediverse social network
SocialNetworkUrl=Fediverse API URL
SocialNetworksNote=Each social network definition provides a widget that you must enable to have it available in dashboard
ConfirmDeleteSocialNetwork= Are you sure want to delete this record ?
AnOwnerMustBeSetIfEmailTemplateIsPrivate=An owner must be set if the email template is set as private
ContactsDefaultRoles=For third parties of the "individual" type, a contact can be created simultaneously. Define here the roles that will be systematically assigned to this contact.
MenuDict=Dictionary
AddMoreParams=Add more parameters for connection (cookies, tokens, ...)<br> Example: token : value token
ParamName=Name of parameter
ParamValue=Value of parameter

View File

@@ -503,6 +503,7 @@ ContactsAddressesForCompany=اتصالات | عناوين لهذا الطرف ا
AddressesForCompany=عناوين لهذا الطرف الثالث
ActionsOnCompany=أحداث لهذا الطرف الثالث
ActionsOnContact=الأحداث لهذا الاتصال او العنوان
ActionsOnUser=Events for this user
ActionsOnContract=أحداث هذا العقد
ActionsOnMember=الأحداث عن هذا العضو
ActionsOnProduct=أحداث حول هذا المنتج
@@ -1187,6 +1188,8 @@ SetSupervisor=تعيين المشرف
CreateExternalUser=إنشاء مستخدم خارجي
ConfirmAffectTag=مهمة وسم مجمعة
ConfirmAffectUser=تعيين المستخدم بالجملة
ContactRole=Contact role
ContactRoles=Contact roles
ProjectRole=الدور المعين لكل مشروع/فرصة
TasksRole=الدور المعين لكل مهمة (إذا تم استخدامه)
ConfirmSetSupervisor=مجموعة المشرف السائبة
@@ -1238,6 +1241,8 @@ CommercialsAffected=تم تعيين مندوبي المبيعات
CommercialAffected=تم تعيين مندوب مبيعات
CommercialsDisaffected=Sales representatives unlinked
CommercialDisaffected=Sales representative unlinked
Message=رسالة
Progression=تقدم
YourMessage=رسالتك
YourMessageHasBeenReceived=وقد وردت الرسالة. سنقوم بالرد أو الاتصال بك في أقرب وقت ممكن.
UrlToCheck=عنوان Url المراد التحقق منه
@@ -1280,6 +1285,7 @@ AmountSalary=راتب المبلغ
InvoiceSubtype=فاتورة النوع الفرعي
ConfirmMassReverse=تأكيد عكسي بالجملة
ConfirmMassReverseQuestion=هل أنت متأكد أنك تريد عكس %s السجل (السجلات) المحدد؟
ConfirmActionXxx=Confirm action %s
ElementType=نوع العنصر
ElementId=معرف العنصر
Encrypted=مشفرة
@@ -1299,3 +1305,4 @@ AllEntities=All entities
TranslationOfKey=Translation of the key AnyTranslationKey
SignedStatus=Signed status
NbRecordQualified=Number of qualified records
auto=auto

View File

@@ -23,23 +23,24 @@ TOKEN_REFRESH=Refresh Token
TOKEN_EXPIRED=انتهت صلاحية الرمز
TOKEN_EXPIRE_AT=رمز تنتهي في
TOKEN_DELETE=حذف رمز المحفوظة
OAUTH_GOOGLE_NAME=خدمة OAuth Google
OAUTH_GOOGLE_ID=معرف Google OAuth
OAUTH_GOOGLE_SECRET=OAuth Google Secret
OAUTH_GITHUB_NAME=خدمة OAuth GitHub
OAUTH_GITHUB_ID=معرف OAuth GitHub
OAUTH_GITHUB_SECRET=OAuth GitHub Secret
OAUTH_URL_FOR_CREDENTIAL=انتقل إلى <a class="notasortlink" href="%s" target="_blank" rel="noopener noreferrer external"> هذه الصفحة <span class="fas fa-external-link-alt paddingleft"> </span> </a> لإنشاء أو الحصول على معرف OAuth والسري
OAUTH_STRIPE_TEST_NAME=اختبار شريط OAuth
OAUTH_STRIPE_LIVE_NAME=OAuth Stripe Live
OAUTH_STRIPE_TEST_NAME=Stripe Test
OAUTH_STRIPE_LIVE_NAME=Stripe Live
OAUTH_ID=معرف عميل OAuth
OAUTH_SECRET=سر OAuth
OAUTH_TENANT=مستأجر OAuth
OAuthProviderAdded=تمت إضافة موفر OAuth
AOAuthEntryForThisProviderAndLabelAlreadyHasAKey=إدخال OAuth لهذا الموفر وهذا التصنيف موجود بالفعل
URLOfOAuthServiceEndpoints=Base URL for OAuth service endpoints
URLOfOAuthServiceEndpointsExample=https://mastodon.example.com
URLOfServiceForAuthorization=عنوان URL المقدم من خدمة OAuth للمصادقة
Scopes=الأذونات (النطاقات)
ScopeUndefined=الأذونات (النطاقات) غير محددة (راجع علامة التبويب السابقة)
ScopesDesc=Example: read,write with Mastodom
TokenRawValue=Full Token (object)
AccessToken=Access Token
TokenExpired=انتهى

View File

@@ -458,9 +458,9 @@ ExtrafieldSelect = Siyahı seçin
ExtrafieldSelectList=Cədvəldən seçin
ExtrafieldSeparator=Ayırıcı (sahə deyil)
ExtrafieldPassword=parol
ExtrafieldRadio=Radio düymələri (yalnız bir seçim)
ExtrafieldCheckBox=Yoxlama qutuları
ExtrafieldCheckBoxFromList=Cədvəldən qeyd qutuları
ExtrafieldRadio=Radio buttons (1 choice only)
ExtrafieldCheckBox=Select list (n choices)
ExtrafieldCheckBoxFromList=Select from table (n choices)
ExtrafieldLink=Bir obyektə keçid
ExtrafieldPointGeo=Geometric Point
ExtrafieldMultiPointGeo=Geometric Multi Point
@@ -475,7 +475,7 @@ ExtrafieldParamHelpselect=List of values must be lines with format key,value (wh
ExtrafieldParamHelpcheckbox=List of values must be lines with format key,value (where key can't be '0')<br><br> for example: <br>1,value1<br>2,value2<br>3,value3<br>...
ExtrafieldParamHelpradio=List of values must be lines with format key,value (where key can't be '0')<br><br> for example: <br>1,value1<br>2,value2<br>3,value3<br>...
ExtrafieldParamHelpsellist=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>- id_field is necessarily a primary int key<br>- filtersql is a condition. It must use the USF syntax. Example: (active:=:1) to display only active value<br>You can also use $ID$ in filter which is the current id of current object<br>If you want to filter on extrafields use syntax extra.fieldcode=... (where fieldcode is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelpchkbxlst=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelpchkbxlst=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>filter can be a simple test (eg active=1 to display only active value)<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelplink=Parametrlər ObjectName:Classpath<br>Sintaksis: ObjectName:Classpath olmalıdır
ExtrafieldParamHelpSeparator=Sadə ayırıcı üçün boş saxlayın<br>Dağlanan ayırıcı üçün bunu 1-ə təyin edin (defolt olaraq yeni sessiya üçün açılır, sonra status hər istifadəçi sessiyası üçün saxlanılır)<br>Bunu yığışdıran ayırıcı üçün 2-yə təyin edin (yeni sessiya üçün defolt olaraq yığışdırılır, sonra status hər istifadəçi seansından əvvəl saxlanılır)
LibraryToBuildPDF=PDF yaratmaq üçün istifadə olunan kitabxana
@@ -1457,7 +1457,7 @@ HRMSetup=HRM modulunun qurulması
CompanySetup=Şirkət modulunun qurulması
CompanyCodeChecker=Müştəri/satıcı kodlarının avtomatik yaradılması üçün seçimlər
AccountCodeManager=Müştəri/satıcı mühasibat kodlarının avtomatik yaradılması üçün seçimlər
NotificationsDesc=Bəzi Dolibarr hadisələri üçün e-poçt bildirişləri avtomatik göndərilə bilər.<br>Bildirişlərin alıcıları müəyyən edilə bilər:
NotificationsDesc=Email notifications can be sent automatically on certain events.<br>Recipients of notifications can be defined:
NotificationsDescUser=* per user (on the tab "Notifications" of a user)
NotificationsDescContact=* per third-party contacts (on the tab "Notifications" of a third party)
NotificationsDescGlobal=* or by setting global email addresses (on the setup page of the module).
@@ -1993,10 +1993,10 @@ ExpenseReportsRulesSetup=Modul Xərc Hesabatlarının qurulması - Qaydalar
ExpenseReportNumberingModules=Xərc hesabatlarının nömrələnməsi modulu
NoModueToManageStockIncrease=Avtomatik ehtiyat artımını idarə edə bilən heç bir modul aktivləşdirilməmişdir. Səhm artımı yalnız əl ilə daxil edilməklə həyata keçiriləcək.
YouMayFindNotificationsFeaturesIntoModuleNotification=Siz "Bildiriş" modulunu aktivləşdirmək və konfiqurasiya etməklə e-poçt bildirişləri üçün seçimləri tapa bilərsiniz.
TemplatesForNotifications=Bildirişlər üçün şablonlar
TemplatesForNotifications=Emails templates for notifications
ListOfNotificationsPerUser=İstifadəçi başına avtomatik bildirişlərin siyahısı*
ListOfNotificationsPerUserOrContact=Hər bir istifadəçi üçün* və ya hər bir əlaqə üçün** mövcud olan mümkün avtomatik bildirişlərin (iş hadisəsi haqqında) siyahısı
ListOfFixedNotifications=Avtomatik sabit bildirişlərin siyahısı
ListOfFixedNotifications=Global recipients emails for automatic email notifications
GoOntoUserCardToAddMore=İstifadəçilər üçün bildirişlər əlavə etmək və ya silmək üçün istifadəçinin "Bildirişləri" sekmesine keçin
GoOntoContactCardToAddMore=Kontaktlar/ünvanlar üçün bildirişlər əlavə etmək və ya silmək üçün üçüncü tərəfin "Bildirişləri" sekmesine keçin.
Threshold=Həddi
@@ -2126,7 +2126,7 @@ MAIN_DOCUMENTS_WITH_PICTURE_WIDTH=Sətirlərə şəkil əlavə edilərsə, sütu
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_UNIT_PRICE=Kotirovka sorğularında vahid qiymət sütununu gizlədin
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_TOTAL_COLUMN=Kotirovka sorğularında ümumi qiymət sütununu gizlədin
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_UNIT_PRICE=Alış sifarişlərində vahid qiymət sütununu gizlədin
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=Alış sifarişlərində ümumi qiymət sütununu gizlədin
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=Hide the total price column on purchase orders
MAIN_PDF_NO_SENDER_FRAME=Göndərən ünvan çərçivəsindəki sərhədləri gizlədin
MAIN_PDF_NO_RECIPENT_FRAME=Alıcı ünvan çərçivəsindəki sərhədləri gizlədin
MAIN_PDF_HIDE_CUSTOMER_CODE=Müştəri kodunu gizlədin
@@ -2279,6 +2279,7 @@ NotAPublicIp=İctimai IP deyil
MakeAnonymousPing=Dolibarr təməl serverinə anonim Ping '+1' edin (yalnız quraşdırmadan sonra 1 dəfə edilir) təməlin Dolibarr quraşdırma sayını hesablamasına icazə verin.
FeatureNotAvailableWithReceptionModule=Modul qəbulu aktiv olduqda funksiya mövcud deyil
EmailTemplate=E-poçt üçün şablon
EmailTemplateHelp=You can create emails templates from menu %s - %s
EMailsWillHaveMessageID=Emails will have a 'Message-ID' header matching this syntax
PDF_SHOW_PROJECT=Layihəni sənəddə göstərin
ShowProjectLabel=Layihə etiketi
@@ -2539,5 +2540,16 @@ MainAuthenticationOidcLoginClaimName=Login claim
MainAuthenticationOidcLoginClaimDesc=OpenID Connect claim matching the Dolibarr user login. If not set or empty, defaults to email
BlackListWords=Black list of words
AddBlackList=Add to black list
FediverseSetup=Configuration of fediverse section
ConfigImportSocialNetwork=Configuration of social networks compatible with Fediverse
Fediverse=Fediverse
NewSocialNetwork=New Fediverse social network
SocialNetworkUrl=Fediverse API URL
SocialNetworksNote=Each social network definition provides a widget that you must enable to have it available in dashboard
ConfirmDeleteSocialNetwork= Are you sure want to delete this record ?
AnOwnerMustBeSetIfEmailTemplateIsPrivate=An owner must be set if the email template is set as private
ContactsDefaultRoles=For third parties of the "individual" type, a contact can be created simultaneously. Define here the roles that will be systematically assigned to this contact.
MenuDict=Dictionary
AddMoreParams=Add more parameters for connection (cookies, tokens, ...)<br> Example: token : value token
ParamName=Name of parameter
ParamValue=Value of parameter

View File

@@ -23,23 +23,24 @@ TOKEN_REFRESH=Refresh Token
TOKEN_EXPIRED=Tokenin müddəti bitdi
TOKEN_EXPIRE_AT=Tokenin müddəti başa çatır
TOKEN_DELETE=Saxlanmış nişanı silin
OAUTH_GOOGLE_NAME=OAuth Google xidməti
OAUTH_GOOGLE_ID=OAuth Google İd
OAUTH_GOOGLE_SECRET=OAuth Google Gizli
OAUTH_GITHUB_NAME=OAuth GitHub xidməti
OAUTH_GITHUB_ID=OAuth GitHub İD
OAUTH_GITHUB_SECRET=OAuth GitHub sirri
OAUTH_URL_FOR_CREDENTIAL=Go to <a class="notasortlink" href="%s" target="_blank" rel="noopener noreferrer external">this page<span class="fas fa-external-link-alt paddingleft"></span></a> to create or get your OAuth ID and Secret
OAUTH_STRIPE_TEST_NAME=OAuth Stripe Testi
OAUTH_STRIPE_LIVE_NAME=OAuth Stripe Canlı
OAUTH_STRIPE_TEST_NAME=Stripe Test
OAUTH_STRIPE_LIVE_NAME=Stripe Live
OAUTH_ID=OAuth Müştəri ID-si
OAUTH_SECRET=OAuth sirri
OAUTH_TENANT=OAuth kirayəçisi
OAuthProviderAdded=OAuth provayderi əlavə edildi
AOAuthEntryForThisProviderAndLabelAlreadyHasAKey=Bu provayder və etiket üçün OAuth girişi artıq mövcuddur
URLOfOAuthServiceEndpoints=Base URL for OAuth service endpoints
URLOfOAuthServiceEndpointsExample=https://mastodon.example.com
URLOfServiceForAuthorization=Doğrulama üçün OAuth xidməti tərəfindən təmin edilən URL
Scopes=İcazələr (Əhatə dairələri)
ScopeUndefined=İcazələr (Əhatə dairələri) qeyri-müəyyən (əvvəlki nişana baxın)
ScopesDesc=Example: read,write with Mastodom
TokenRawValue=Full Token (object)
AccessToken=Access Token
TokenExpired=Expired

View File

@@ -458,9 +458,9 @@ ExtrafieldSelect = Изберете списък
ExtrafieldSelectList=Изберете от таблицата
ExtrafieldSeparator=Разделител (не е поле)
ExtrafieldPassword=Парола
ExtrafieldRadio=Радио бутони (само един избор)
ExtrafieldCheckBox=Полета за отметка
ExtrafieldCheckBoxFromList=Отметки от таблица
ExtrafieldRadio=Radio buttons (1 choice only)
ExtrafieldCheckBox=Select list (n choices)
ExtrafieldCheckBoxFromList=Select from table (n choices)
ExtrafieldLink=Връзка към обект
ExtrafieldPointGeo=Geometric Point
ExtrafieldMultiPointGeo=Geometric Multi Point
@@ -475,7 +475,7 @@ ExtrafieldParamHelpselect=Списъкът със стойности трябв
ExtrafieldParamHelpcheckbox=Списъкът със стойности трябва да бъде във формат key,value (където key не може да бъде '0') <br><br> например: <br> 1,value1 <br>2,value2 <br>3,value3<br> ...
ExtrafieldParamHelpradio=Списъкът със стойности трябва да бъде във формат key,value (където key не може да бъде '0') <br><br> например: <br> 1,value1 <br>2,value2 <br>3,value3<br> ...
ExtrafieldParamHelpsellist=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>- id_field is necessarily a primary int key<br>- filtersql is a condition. It must use the USF syntax. Example: (active:=:1) to display only active value<br>You can also use $ID$ in filter which is the current id of current object<br>If you want to filter on extrafields use syntax extra.fieldcode=... (where fieldcode is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelpchkbxlst=Списъкът със стойности идва от таблица<br>Синтаксис: table_name:label_field:id_field::filtersql<br>Пример: c_typent:libelle:id ::filtersql<br><br>филтърът може да бъде прост тест (напр. active=1) за показване само на активна стойност<br>Можете също да използвате $ID$ във филтъра, който е текущият идентификатор на текущия обект<br>За да направите SELECT във филтъра, използвайте $SEL$<br>ако искате да филтрирате допълнителни полета, използвайте синтаксис extra.fieldcode=... (където кодът на полето е кодът на допълнителното поле)<br><br>За да има списък в зависимост от друг допълнителен списък с атрибути:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br> За да може списъкът да зависи от друг списък:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelpchkbxlst=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>filter can be a simple test (eg active=1 to display only active value)<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelplink=Параметрите трябва да бъдат ObjectName:Classpath<br>Синтаксис: ObjectName:Classpath
ExtrafieldParamHelpSeparator=Оставете празно за обикновен разделител<br>Посочете стойност 1 за разделител, който се свива (отворен по подразбиране за нова сесия, а след това състоянието се запазва за всяка потребителска сесия)<br>Посочете стойност 2 за разделител, който се свива (свит по подразбиране за нова сесия, а след това състоянието се запазва за всяка потребителска сесия).
LibraryToBuildPDF=Използвана библиотека за създаване на PDF файлове
@@ -1457,7 +1457,7 @@ HRMSetup=Настройка на модула ЧР
CompanySetup=Настройка на модула за фирми
CompanyCodeChecker=Опции за автоматично генериране на кодове на клиент / доставчик
AccountCodeManager=Опции за автоматично генериране на счетоводни кодове на клиент / доставчик
NotificationsDesc=Автоматично изпращане на имейл известия за някои събития в Dolibarr.<br>Получателите на известия могат да бъдат дефинирани:
NotificationsDesc=Email notifications can be sent automatically on certain events.<br>Recipients of notifications can be defined:
NotificationsDescUser=* на потребител (в раздела „Известия“ на потребител)
NotificationsDescContact=* За контакти на трети страни (в раздела "Известия" на трети страни)
NotificationsDescGlobal=* или чрез задаване на глобални имейл адреси (на страницата за настройка на модула).
@@ -1993,10 +1993,10 @@ ExpenseReportsRulesSetup=Настройка на модул Разходни о
ExpenseReportNumberingModules=Модул за номериране на разходни отчети
NoModueToManageStockIncrease=Не е активиран модул, способен да управлява автоматичното увеличаване на наличности. Увеличаването на наличности ще се извършва само при ръчно въвеждане.
YouMayFindNotificationsFeaturesIntoModuleNotification=Може да откриете опции за известия по имейл като активирате и конфигурирате модула "Известия".
TemplatesForNotifications=Шаблони за Известия
TemplatesForNotifications=Emails templates for notifications
ListOfNotificationsPerUser=Списък на автоматичните известия за потребител*
ListOfNotificationsPerUserOrContact=Списък на възможните автоматични известия (за бизнес събитие), налични за потребител * или за контакт **
ListOfFixedNotifications=Списък на автоматични фиксирани известия
ListOfFixedNotifications=Global recipients emails for automatic email notifications
GoOntoUserCardToAddMore=Отидете в раздела „Известия“ на съответния потребител, за да добавите или премахнете известия за този потребител
GoOntoContactCardToAddMore=Отидете в раздел "Известия" на съответния контрагент, за да добавите или премахнете известия за съответните контакти / адреси.
Threshold=Граница
@@ -2126,7 +2126,7 @@ MAIN_DOCUMENTS_WITH_PICTURE_WIDTH=Ширина на колоната, ако с
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_UNIT_PRICE=Скрийте колоната за единична цена при заявки за оферти
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_TOTAL_COLUMN=Скриване на колоната с обща цена при заявки за оферти
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_UNIT_PRICE=Скрийте колоната с единична цена в поръчките за покупка
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=Скрийте колоната с обща цена в поръчките за покупка
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=Hide the total price column on purchase orders
MAIN_PDF_NO_SENDER_FRAME=Скриване на границите на адресната рамка на подателя
MAIN_PDF_NO_RECIPENT_FRAME=Скриване на границите на адресната рамка на получателя
MAIN_PDF_HIDE_CUSTOMER_CODE=Скриване на кода Клиент
@@ -2279,6 +2279,7 @@ NotAPublicIp=Не е публичен IP адрес
MakeAnonymousPing=Направете анонимен Ping '+1' до сървъра на фондацията Dolibarr (веднъж само след инсталирането), за да може фондацията да отчете броя на инсталациите на Dolibarr.
FeatureNotAvailableWithReceptionModule=Функцията не е налична, когато е активиран модул Приемане
EmailTemplate=Шаблон за имейл
EmailTemplateHelp=You can create emails templates from menu %s - %s
EMailsWillHaveMessageID=Emails will have a 'Message-ID' header matching this syntax
PDF_SHOW_PROJECT=Показване на проекта в документа
ShowProjectLabel=Етикет на проекта
@@ -2539,5 +2540,16 @@ MainAuthenticationOidcLoginClaimName=Login claim
MainAuthenticationOidcLoginClaimDesc=OpenID Connect claim matching the Dolibarr user login. If not set or empty, defaults to email
BlackListWords=Black list of words
AddBlackList=Add to black list
FediverseSetup=Configuration of fediverse section
ConfigImportSocialNetwork=Configuration of social networks compatible with Fediverse
Fediverse=Fediverse
NewSocialNetwork=New Fediverse social network
SocialNetworkUrl=Fediverse API URL
SocialNetworksNote=Each social network definition provides a widget that you must enable to have it available in dashboard
ConfirmDeleteSocialNetwork= Are you sure want to delete this record ?
AnOwnerMustBeSetIfEmailTemplateIsPrivate=An owner must be set if the email template is set as private
ContactsDefaultRoles=For third parties of the "individual" type, a contact can be created simultaneously. Define here the roles that will be systematically assigned to this contact.
MenuDict=Dictionary
AddMoreParams=Add more parameters for connection (cookies, tokens, ...)<br> Example: token : value token
ParamName=Name of parameter
ParamValue=Value of parameter

View File

@@ -503,6 +503,7 @@ ContactsAddressesForCompany=Контакти / адреси за този кон
AddressesForCompany=Адреси за този контрагент
ActionsOnCompany=Събития за този контрагент
ActionsOnContact=Събития за този контакт / адрес
ActionsOnUser=Events for this user
ActionsOnContract=Свързани събития
ActionsOnMember=Събития за този член
ActionsOnProduct=Събития за този продукт
@@ -1187,6 +1188,8 @@ SetSupervisor=Задайте надзора
CreateExternalUser=Създайте външен потребител
ConfirmAffectTag=Групово присвояване на етикети
ConfirmAffectUser=Групово присвояване на потребители
ContactRole=Contact role
ContactRoles=Contact roles
ProjectRole=Присвоена роля за всеки проект/възможност
TasksRole=Присвоена роля за всяка задача (ако се използва)
ConfirmSetSupervisor=Bulk Supervisor Set
@@ -1238,6 +1241,8 @@ CommercialsAffected=Назначени търговски представите
CommercialAffected=Назначен търговски представител
CommercialsDisaffected=Sales representatives unlinked
CommercialDisaffected=Sales representative unlinked
Message=Съобщение
Progression=Прогрес
YourMessage=Твоето съобщение
YourMessageHasBeenReceived=Вашето съобщение е получено. Ние ще отговорим или ще се свържем с вас възможно най-скоро.
UrlToCheck=Url за проверка
@@ -1280,6 +1285,7 @@ AmountSalary=Размер на заплатата
InvoiceSubtype=Подтип фактура
ConfirmMassReverse=Групово обратно потвърждение
ConfirmMassReverseQuestion=Сигурни ли сте, че искате за обръщане на %s избран(и) запис(и)?
ConfirmActionXxx=Confirm action %s
ElementType=Element type
ElementId=Element Id
Encrypted=Encrypted
@@ -1299,3 +1305,4 @@ AllEntities=All entities
TranslationOfKey=Translation of the key AnyTranslationKey
SignedStatus=Signed status
NbRecordQualified=Number of qualified records
auto=auto

View File

@@ -23,23 +23,24 @@ TOKEN_REFRESH=Refresh Token
TOKEN_EXPIRED=Токенът е изтекъл
TOKEN_EXPIRE_AT=Токенът изтича на
TOKEN_DELETE=Изтриване на съхранен токен
OAUTH_GOOGLE_NAME=OAuth услуга на Google
OAUTH_GOOGLE_ID=OAuth Google идентификатор
OAUTH_GOOGLE_SECRET=OAuth Google Secret
OAUTH_GITHUB_NAME=OAuth услуга на GitHub
OAUTH_GITHUB_ID=OAuth GitHub идентификатор
OAUTH_GITHUB_SECRET=OAuth GitHub Secret
OAUTH_URL_FOR_CREDENTIAL=Отидете на <a class="notasortlink" href="%s" target="_blank" rel="noopener noreferrer external">тази страница<span class="fas fa-external-link-alt paddingleft"></span></a> за създаване или получаване на вашия OAuth ID и Secret
OAUTH_STRIPE_TEST_NAME=OAuth Stripe тест
OAUTH_STRIPE_LIVE_NAME=OAuth Stripe Live
OAUTH_STRIPE_TEST_NAME=Stripe Test
OAUTH_STRIPE_LIVE_NAME=Stripe Live
OAUTH_ID=OAuth ИД на клиента
OAUTH_SECRET=OAuth тайна
OAUTH_TENANT=Клиент на OAuth
OAuthProviderAdded=Добавен е доставчик на OAuth
AOAuthEntryForThisProviderAndLabelAlreadyHasAKey=Вече съществува OAuth запис за този доставчик и етикет
URLOfOAuthServiceEndpoints=Base URL for OAuth service endpoints
URLOfOAuthServiceEndpointsExample=https://mastodon.example.com
URLOfServiceForAuthorization=URL адрес, предоставен от услугата OAuth за удостоверяване
Scopes=права (Обхвати)
ScopeUndefined=права (Обхват) недефиниран (вижте предишния раздел)
ScopesDesc=Example: read,write with Mastodom
TokenRawValue=Full Token (object)
AccessToken=Access Token
TokenExpired=Expired

View File

@@ -458,9 +458,9 @@ ExtrafieldSelect = তালিকা নির্বাচন করুন
ExtrafieldSelectList=টেবিল থেকে নির্বাচন করুন
ExtrafieldSeparator=বিভাজক (কোন ক্ষেত্র নয়)
ExtrafieldPassword=পাসওয়ার্ড
ExtrafieldRadio=রেডিও বোতাম (শুধুমাত্র একটি পছন্দ)
ExtrafieldCheckBox=চেকবক্স
ExtrafieldCheckBoxFromList=টেবিল থেকে চেকবক্স
ExtrafieldRadio=Radio buttons (1 choice only)
ExtrafieldCheckBox=Select list (n choices)
ExtrafieldCheckBoxFromList=Select from table (n choices)
ExtrafieldLink=একটি বস্তুর লিঙ্ক
ExtrafieldPointGeo=Geometric Point
ExtrafieldMultiPointGeo=Geometric Multi Point
@@ -475,7 +475,7 @@ ExtrafieldParamHelpselect=List of values must be lines with format key,value (wh
ExtrafieldParamHelpcheckbox=List of values must be lines with format key,value (where key can't be '0')<br><br> for example: <br>1,value1<br>2,value2<br>3,value3<br>...
ExtrafieldParamHelpradio=List of values must be lines with format key,value (where key can't be '0')<br><br> for example: <br>1,value1<br>2,value2<br>3,value3<br>...
ExtrafieldParamHelpsellist=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>- id_field is necessarily a primary int key<br>- filtersql is a condition. It must use the USF syntax. Example: (active:=:1) to display only active value<br>You can also use $ID$ in filter which is the current id of current object<br>If you want to filter on extrafields use syntax extra.fieldcode=... (where fieldcode is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelpchkbxlst=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelpchkbxlst=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>filter can be a simple test (eg active=1 to display only active value)<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelplink=পরামিতি হতে হবে ObjectName:Classpath<br>সিনট্যাক্স: ObjectName:Classpath
ExtrafieldParamHelpSeparator=একটি সাধারণ বিভাজকের জন্য খালি রাখুন<br>কোলাপসিং সেপারেটরের জন্য এটি 1 এ সেট করুন (নতুন সেশনের জন্য ডিফল্টরূপে খোলা, তারপর প্রতিটি ব্যবহারকারীর সেশনের জন্য স্থিতি রাখা হয়)<br>কোলাপসিং সেপারেটরের জন্য এটিকে 2 এ সেট করুন (নতুন সেশনের জন্য ডিফল্টরূপে ভেঙে পড়ে, তারপর প্রতিটি ব্যবহারকারীর সেশনের আগে স্থিতি রাখা হয়)
LibraryToBuildPDF=পিডিএফ তৈরির জন্য ব্যবহৃত লাইব্রেরি
@@ -1457,7 +1457,7 @@ HRMSetup=এইচআরএম মডিউল সেটআপ
CompanySetup=কোম্পানি মডিউল সেটআপ
CompanyCodeChecker=গ্রাহক/বিক্রেতা কোডের স্বয়ংক্রিয় প্রজন্মের জন্য বিকল্প
AccountCodeManager=গ্রাহক/বিক্রেতা অ্যাকাউন্টিং কোডের স্বয়ংক্রিয় প্রজন্মের জন্য বিকল্প
NotificationsDesc=কিছু Dolibarr ইভেন্টের জন্য ইমেল বিজ্ঞপ্তিগুলি স্বয়ংক্রিয়ভাবে পাঠানো যেতে পারে৷<br>বিজ্ঞপ্তিগুলির প্রাপকদের সংজ্ঞায়িত করা যেতে পারে:
NotificationsDesc=Email notifications can be sent automatically on certain events.<br>Recipients of notifications can be defined:
NotificationsDescUser=* per user (on the tab "Notifications" of a user)
NotificationsDescContact=* per third-party contacts (on the tab "Notifications" of a third party)
NotificationsDescGlobal=* or by setting global email addresses (on the setup page of the module).
@@ -1993,10 +1993,10 @@ ExpenseReportsRulesSetup=মডিউল খরচ রিপোর্ট সে
ExpenseReportNumberingModules=খরচ রিপোর্ট সংখ্যায়ন মডিউল
NoModueToManageStockIncrease=স্বয়ংক্রিয় স্টক বৃদ্ধি পরিচালনা করতে সক্ষম কোনো মডিউল সক্রিয় করা হয়নি। স্টক বৃদ্ধি শুধুমাত্র ম্যানুয়াল ইনপুট করা হবে.
YouMayFindNotificationsFeaturesIntoModuleNotification=আপনি মডিউল "বিজ্ঞপ্তি" সক্রিয় এবং কনফিগার করে ইমেল বিজ্ঞপ্তির জন্য বিকল্প খুঁজে পেতে পারেন।
TemplatesForNotifications=বিজ্ঞপ্তির জন্য টেমপ্লেট
TemplatesForNotifications=Emails templates for notifications
ListOfNotificationsPerUser=ব্যবহারকারী প্রতি স্বয়ংক্রিয় বিজ্ঞপ্তির তালিকা*
ListOfNotificationsPerUserOrContact=সম্ভাব্য স্বয়ংক্রিয় বিজ্ঞপ্তির তালিকা (ব্যবসায়িক ইভেন্টে) প্রতি ব্যবহারকারী* বা প্রতি পরিচিতি** উপলব্ধ
ListOfFixedNotifications=স্বয়ংক্রিয় স্থির বিজ্ঞপ্তিগুলির তালিকা
ListOfFixedNotifications=Global recipients emails for automatic email notifications
GoOntoUserCardToAddMore=ব্যবহারকারীদের জন্য বিজ্ঞপ্তি যোগ করতে বা সরাতে ব্যবহারকারীর "বিজ্ঞপ্তি" ট্যাবে যান
GoOntoContactCardToAddMore=পরিচিতি/ঠিকানার জন্য বিজ্ঞপ্তি যোগ করতে বা সরাতে তৃতীয় পক্ষের "বিজ্ঞপ্তি" ট্যাবে যান
Threshold=থ্রেশহোল্ড
@@ -2126,7 +2126,7 @@ MAIN_DOCUMENTS_WITH_PICTURE_WIDTH=লাইনে ছবি যোগ করা
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_UNIT_PRICE=উদ্ধৃতি অনুরোধে ইউনিট মূল্য কলাম লুকান
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_TOTAL_COLUMN=উদ্ধৃতি অনুরোধে মোট মূল্য কলাম লুকান
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_UNIT_PRICE=ক্রয় আদেশে ইউনিট মূল্য কলাম লুকান
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=puchase অর্ডারে মোট মূল্য কলাম লুকান
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=Hide the total price column on purchase orders
MAIN_PDF_NO_SENDER_FRAME=প্রেরকের ঠিকানা ফ্রেমে সীমানা লুকান
MAIN_PDF_NO_RECIPENT_FRAME=প্রাপকের ঠিকানা ফ্রেমে সীমানা লুকান
MAIN_PDF_HIDE_CUSTOMER_CODE=গ্রাহক কোড লুকান
@@ -2279,6 +2279,7 @@ NotAPublicIp=পাবলিক আইপি নয়
MakeAnonymousPing=ডলিবার ফাউন্ডেশন সার্ভারে একটি বেনামী পিং '+1' তৈরি করুন (ইন্সটলেশনের পর মাত্র 1 বার করা হয়েছে) যাতে ফাউন্ডেশন ডলিবার ইনস্টলেশনের সংখ্যা গণনা করতে পারে।
FeatureNotAvailableWithReceptionModule=মডিউল অভ্যর্থনা সক্ষম হলে বৈশিষ্ট্য উপলব্ধ নয়৷
EmailTemplate=ইমেলের জন্য টেমপ্লেট
EmailTemplateHelp=You can create emails templates from menu %s - %s
EMailsWillHaveMessageID=Emails will have a 'Message-ID' header matching this syntax
PDF_SHOW_PROJECT=নথিতে প্রকল্প দেখান
ShowProjectLabel=প্রকল্প লেবেল
@@ -2539,5 +2540,16 @@ MainAuthenticationOidcLoginClaimName=Login claim
MainAuthenticationOidcLoginClaimDesc=OpenID Connect claim matching the Dolibarr user login. If not set or empty, defaults to email
BlackListWords=Black list of words
AddBlackList=Add to black list
FediverseSetup=Configuration of fediverse section
ConfigImportSocialNetwork=Configuration of social networks compatible with Fediverse
Fediverse=Fediverse
NewSocialNetwork=New Fediverse social network
SocialNetworkUrl=Fediverse API URL
SocialNetworksNote=Each social network definition provides a widget that you must enable to have it available in dashboard
ConfirmDeleteSocialNetwork= Are you sure want to delete this record ?
AnOwnerMustBeSetIfEmailTemplateIsPrivate=An owner must be set if the email template is set as private
ContactsDefaultRoles=For third parties of the "individual" type, a contact can be created simultaneously. Define here the roles that will be systematically assigned to this contact.
MenuDict=Dictionary
AddMoreParams=Add more parameters for connection (cookies, tokens, ...)<br> Example: token : value token
ParamName=Name of parameter
ParamValue=Value of parameter

View File

@@ -23,23 +23,24 @@ TOKEN_REFRESH=Refresh Token
TOKEN_EXPIRED=টোকেনের মেয়াদ শেষ
TOKEN_EXPIRE_AT=টোকেনের মেয়াদ শেষ হবে
TOKEN_DELETE=সংরক্ষিত টোকেন মুছুন
OAUTH_GOOGLE_NAME=OAuth Google পরিষেবা
OAUTH_GOOGLE_ID=OAuth গুগল আইডি
OAUTH_GOOGLE_SECRET=OAuth গুগল সিক্রেট
OAUTH_GITHUB_NAME=OAuth GitHub পরিষেবা
OAUTH_GITHUB_ID=OAuth GitHub আইডি
OAUTH_GITHUB_SECRET=OAuth GitHub সিক্রেট
OAUTH_URL_FOR_CREDENTIAL=<a class="notasortlink" href="%s" target="_blank" rel="noopener noreferrer external">এই পৃষ্ঠায় যান<span class="fas fa-external-link-alt paddingleft"></span></a> আপনার OAuth আইডি এবং গোপনীয়তা তৈরি করতে বা পেতে
OAUTH_STRIPE_TEST_NAME=OAuth স্ট্রাইপ পরীক্ষা
OAUTH_STRIPE_LIVE_NAME=OAuth স্ট্রাইপ লাইভ
OAUTH_STRIPE_TEST_NAME=Stripe Test
OAUTH_STRIPE_LIVE_NAME=Stripe Live
OAUTH_ID=OAuth ক্লায়েন্ট আইডি
OAUTH_SECRET=OAuth গোপন
OAUTH_TENANT=OAuth ভাড়াটে
OAuthProviderAdded=OAuth প্রদানকারী যোগ করা হয়েছে
AOAuthEntryForThisProviderAndLabelAlreadyHasAKey=এই প্রদানকারীর জন্য একটি OAuth এন্ট্রি এবং লেবেল ইতিমধ্যেই বিদ্যমান
URLOfOAuthServiceEndpoints=Base URL for OAuth service endpoints
URLOfOAuthServiceEndpointsExample=https://mastodon.example.com
URLOfServiceForAuthorization=প্রমাণীকরণের জন্য OAuth পরিষেবা দ্বারা প্রদত্ত URL
Scopes=অনুমতি (স্কোপ)
ScopeUndefined=অনুমতি (স্কোপ) অনির্ধারিত (আগের ট্যাব দেখুন)
ScopesDesc=Example: read,write with Mastodom
TokenRawValue=Full Token (object)
AccessToken=Access Token
TokenExpired=Expired

View File

@@ -458,9 +458,9 @@ ExtrafieldSelect = তালিকা নির্বাচন করুন
ExtrafieldSelectList=টেবিল থেকে নির্বাচন করুন
ExtrafieldSeparator=বিভাজক (কোন ক্ষেত্র নয়)
ExtrafieldPassword=পাসওয়ার্ড
ExtrafieldRadio=রেডিও বোতাম (শুধুমাত্র একটি পছন্দ)
ExtrafieldCheckBox=চেকবক্স
ExtrafieldCheckBoxFromList=টেবিল থেকে চেকবক্স
ExtrafieldRadio=Radio buttons (1 choice only)
ExtrafieldCheckBox=Select list (n choices)
ExtrafieldCheckBoxFromList=Select from table (n choices)
ExtrafieldLink=একটি বস্তুর লিঙ্ক
ExtrafieldPointGeo=Geometric Point
ExtrafieldMultiPointGeo=Geometric Multi Point
@@ -475,7 +475,7 @@ ExtrafieldParamHelpselect=List of values must be lines with format key,value (wh
ExtrafieldParamHelpcheckbox=List of values must be lines with format key,value (where key can't be '0')<br><br> for example: <br>1,value1<br>2,value2<br>3,value3<br>...
ExtrafieldParamHelpradio=List of values must be lines with format key,value (where key can't be '0')<br><br> for example: <br>1,value1<br>2,value2<br>3,value3<br>...
ExtrafieldParamHelpsellist=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>- id_field is necessarily a primary int key<br>- filtersql is a condition. It must use the USF syntax. Example: (active:=:1) to display only active value<br>You can also use $ID$ in filter which is the current id of current object<br>If you want to filter on extrafields use syntax extra.fieldcode=... (where fieldcode is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelpchkbxlst=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelpchkbxlst=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>filter can be a simple test (eg active=1 to display only active value)<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelplink=পরামিতি হতে হবে ObjectName:Classpath<br>সিনট্যাক্স: ObjectName:Classpath
ExtrafieldParamHelpSeparator=একটি সাধারণ বিভাজকের জন্য খালি রাখুন<br>কোলাপসিং সেপারেটরের জন্য এটি 1 এ সেট করুন (নতুন সেশনের জন্য ডিফল্টরূপে খোলা, তারপর প্রতিটি ব্যবহারকারীর সেশনের জন্য স্থিতি রাখা হয়)<br>কোলাপসিং সেপারেটরের জন্য এটিকে 2 এ সেট করুন (নতুন সেশনের জন্য ডিফল্টরূপে ভেঙে পড়ে, তারপর প্রতিটি ব্যবহারকারীর সেশনের আগে স্থিতি রাখা হয়)
LibraryToBuildPDF=পিডিএফ তৈরির জন্য ব্যবহৃত লাইব্রেরি
@@ -1457,7 +1457,7 @@ HRMSetup=এইচআরএম মডিউল সেটআপ
CompanySetup=কোম্পানি মডিউল সেটআপ
CompanyCodeChecker=গ্রাহক/বিক্রেতা কোডের স্বয়ংক্রিয় প্রজন্মের জন্য বিকল্প
AccountCodeManager=গ্রাহক/বিক্রেতা অ্যাকাউন্টিং কোডের স্বয়ংক্রিয় প্রজন্মের জন্য বিকল্প
NotificationsDesc=কিছু Dolibarr ইভেন্টের জন্য ইমেল বিজ্ঞপ্তিগুলি স্বয়ংক্রিয়ভাবে পাঠানো যেতে পারে৷<br>বিজ্ঞপ্তিগুলির প্রাপকদের সংজ্ঞায়িত করা যেতে পারে:
NotificationsDesc=Email notifications can be sent automatically on certain events.<br>Recipients of notifications can be defined:
NotificationsDescUser=* per user (on the tab "Notifications" of a user)
NotificationsDescContact=* per third-party contacts (on the tab "Notifications" of a third party)
NotificationsDescGlobal=* or by setting global email addresses (on the setup page of the module).
@@ -1993,10 +1993,10 @@ ExpenseReportsRulesSetup=মডিউল খরচ রিপোর্ট সে
ExpenseReportNumberingModules=খরচ রিপোর্ট সংখ্যায়ন মডিউল
NoModueToManageStockIncrease=স্বয়ংক্রিয় স্টক বৃদ্ধি পরিচালনা করতে সক্ষম কোনো মডিউল সক্রিয় করা হয়নি। স্টক বৃদ্ধি শুধুমাত্র ম্যানুয়াল ইনপুট করা হবে.
YouMayFindNotificationsFeaturesIntoModuleNotification=আপনি মডিউল "বিজ্ঞপ্তি" সক্রিয় এবং কনফিগার করে ইমেল বিজ্ঞপ্তির জন্য বিকল্প খুঁজে পেতে পারেন।
TemplatesForNotifications=বিজ্ঞপ্তির জন্য টেমপ্লেট
TemplatesForNotifications=Emails templates for notifications
ListOfNotificationsPerUser=ব্যবহারকারী প্রতি স্বয়ংক্রিয় বিজ্ঞপ্তির তালিকা*
ListOfNotificationsPerUserOrContact=সম্ভাব্য স্বয়ংক্রিয় বিজ্ঞপ্তির তালিকা (ব্যবসায়িক ইভেন্টে) প্রতি ব্যবহারকারী* বা প্রতি যোগাযোগের জন্য উপলব্ধ**
ListOfFixedNotifications=স্বয়ংক্রিয় স্থির বিজ্ঞপ্তিগুলির তালিকা
ListOfFixedNotifications=Global recipients emails for automatic email notifications
GoOntoUserCardToAddMore=ব্যবহারকারীদের জন্য বিজ্ঞপ্তি যোগ করতে বা সরাতে ব্যবহারকারীর "বিজ্ঞপ্তি" ট্যাবে যান
GoOntoContactCardToAddMore=পরিচিতি/ঠিকানার জন্য বিজ্ঞপ্তি যোগ করতে বা সরাতে তৃতীয় পক্ষের "বিজ্ঞপ্তি" ট্যাবে যান
Threshold=থ্রেশহোল্ড
@@ -2126,7 +2126,7 @@ MAIN_DOCUMENTS_WITH_PICTURE_WIDTH=লাইনে ছবি যোগ করা
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_UNIT_PRICE=উদ্ধৃতি অনুরোধে ইউনিট মূল্য কলাম লুকান
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_TOTAL_COLUMN=উদ্ধৃতি অনুরোধে মোট মূল্য কলাম লুকান
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_UNIT_PRICE=ক্রয় আদেশে ইউনিট মূল্য কলাম লুকান
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=puchase অর্ডারে মোট মূল্য কলাম লুকান
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=Hide the total price column on purchase orders
MAIN_PDF_NO_SENDER_FRAME=প্রেরকের ঠিকানা ফ্রেমে সীমানা লুকান
MAIN_PDF_NO_RECIPENT_FRAME=প্রাপকের ঠিকানা ফ্রেমে সীমানা লুকান
MAIN_PDF_HIDE_CUSTOMER_CODE=গ্রাহক কোড লুকান
@@ -2279,6 +2279,7 @@ NotAPublicIp=পাবলিক আইপি নয়
MakeAnonymousPing=ডলিবার ফাউন্ডেশন সার্ভারে একটি বেনামী পিং '+1' তৈরি করুন (ইন্সটলেশনের পর মাত্র 1 বার করা হয়েছে) যাতে ফাউন্ডেশন ডলিবার ইনস্টলেশনের সংখ্যা গণনা করতে পারে।
FeatureNotAvailableWithReceptionModule=মডিউল অভ্যর্থনা সক্ষম হলে বৈশিষ্ট্য উপলব্ধ নয়৷
EmailTemplate=ইমেলের জন্য টেমপ্লেট
EmailTemplateHelp=You can create emails templates from menu %s - %s
EMailsWillHaveMessageID=Emails will have a 'Message-ID' header matching this syntax
PDF_SHOW_PROJECT=নথিতে প্রকল্প দেখান
ShowProjectLabel=প্রকল্প লেবেল
@@ -2539,5 +2540,16 @@ MainAuthenticationOidcLoginClaimName=Login claim
MainAuthenticationOidcLoginClaimDesc=OpenID Connect claim matching the Dolibarr user login. If not set or empty, defaults to email
BlackListWords=Black list of words
AddBlackList=Add to black list
FediverseSetup=Configuration of fediverse section
ConfigImportSocialNetwork=Configuration of social networks compatible with Fediverse
Fediverse=Fediverse
NewSocialNetwork=New Fediverse social network
SocialNetworkUrl=Fediverse API URL
SocialNetworksNote=Each social network definition provides a widget that you must enable to have it available in dashboard
ConfirmDeleteSocialNetwork= Are you sure want to delete this record ?
AnOwnerMustBeSetIfEmailTemplateIsPrivate=An owner must be set if the email template is set as private
ContactsDefaultRoles=For third parties of the "individual" type, a contact can be created simultaneously. Define here the roles that will be systematically assigned to this contact.
MenuDict=Dictionary
AddMoreParams=Add more parameters for connection (cookies, tokens, ...)<br> Example: token : value token
ParamName=Name of parameter
ParamValue=Value of parameter

View File

@@ -23,23 +23,24 @@ TOKEN_REFRESH=Refresh Token
TOKEN_EXPIRED=টোকেনের মেয়াদ শেষ
TOKEN_EXPIRE_AT=টোকেনের মেয়াদ শেষ হবে
TOKEN_DELETE=সংরক্ষিত টোকেন মুছুন
OAUTH_GOOGLE_NAME=OAuth Google পরিষেবা
OAUTH_GOOGLE_ID=OAuth গুগল আইডি
OAUTH_GOOGLE_SECRET=OAuth গুগল সিক্রেট
OAUTH_GITHUB_NAME=OAuth GitHub পরিষেবা
OAUTH_GITHUB_ID=OAuth GitHub আইডি
OAUTH_GITHUB_SECRET=OAuth GitHub সিক্রেট
OAUTH_URL_FOR_CREDENTIAL=<a class="notasortlink" href="%s" target="_blank" rel="noopener noreferrer external">এই পৃষ্ঠায় যান<span class="fas fa-external-link-alt paddingleft"></span></a> আপনার OAuth আইডি এবং গোপনীয়তা তৈরি করতে বা পেতে
OAUTH_STRIPE_TEST_NAME=OAuth স্ট্রাইপ পরীক্ষা
OAUTH_STRIPE_LIVE_NAME=OAuth স্ট্রাইপ লাইভ
OAUTH_STRIPE_TEST_NAME=Stripe Test
OAUTH_STRIPE_LIVE_NAME=Stripe Live
OAUTH_ID=OAuth ক্লায়েন্ট আইডি
OAUTH_SECRET=OAuth গোপন
OAUTH_TENANT=OAuth ভাড়াটে
OAuthProviderAdded=OAuth প্রদানকারী যোগ করা হয়েছে
AOAuthEntryForThisProviderAndLabelAlreadyHasAKey=এই প্রদানকারীর জন্য একটি OAuth এন্ট্রি এবং লেবেল ইতিমধ্যেই বিদ্যমান
URLOfOAuthServiceEndpoints=Base URL for OAuth service endpoints
URLOfOAuthServiceEndpointsExample=https://mastodon.example.com
URLOfServiceForAuthorization=প্রমাণীকরণের জন্য OAuth পরিষেবা দ্বারা প্রদত্ত URL
Scopes=অনুমতি (স্কোপ)
ScopeUndefined=অনুমতি (স্কোপ) অনির্ধারিত (আগের ট্যাব দেখুন)
ScopesDesc=Example: read,write with Mastodom
TokenRawValue=Full Token (object)
AccessToken=Access Token
TokenExpired=Expired

View File

@@ -458,9 +458,9 @@ ExtrafieldSelect = Odaberite listu
ExtrafieldSelectList=Izaberite iz tabele
ExtrafieldSeparator=Razdjelnik (nije polje)
ExtrafieldPassword=Šifra
ExtrafieldRadio=Radio dugmad (samo jedan izbor)
ExtrafieldCheckBox=Potvrdni okviri
ExtrafieldCheckBoxFromList=Potvrdni okviri iz tabele
ExtrafieldRadio=Radio buttons (1 choice only)
ExtrafieldCheckBox=Select list (n choices)
ExtrafieldCheckBoxFromList=Select from table (n choices)
ExtrafieldLink=Veza sa objektom
ExtrafieldPointGeo=Geometric Point
ExtrafieldMultiPointGeo=Geometric Multi Point
@@ -475,7 +475,7 @@ ExtrafieldParamHelpselect=List of values must be lines with format key,value (wh
ExtrafieldParamHelpcheckbox=List of values must be lines with format key,value (where key can't be '0')<br><br> for example: <br>1,value1<br>2,value2<br>3,value3<br>...
ExtrafieldParamHelpradio=List of values must be lines with format key,value (where key can't be '0')<br><br> for example: <br>1,value1<br>2,value2<br>3,value3<br>...
ExtrafieldParamHelpsellist=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>- id_field is necessarily a primary int key<br>- filtersql is a condition. It must use the USF syntax. Example: (active:=:1) to display only active value<br>You can also use $ID$ in filter which is the current id of current object<br>If you want to filter on extrafields use syntax extra.fieldcode=... (where fieldcode is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelpchkbxlst=Lista vrijednosti dolazi iz tabele<br>Sintaksa: table_name:label_field:id_field::filtersql<br>Primjer: c_typent:libelle: ::filtersql<br><br>filter može biti jednostavan test (npr. active=1) za prikaz samo aktivne vrijednosti<br>Također možete koristiti $ID$ u filteru koji je trenutni id trenutnog objekta<br>Da izvršite SELECT u filteru koristite $SEL$<br>ako želite filtrirati po extrafields koristite sintaksu extra.fieldcode=... (gdje je kod polja kod extrafield)<br><br>Da bi lista zavisila od druge komplementarne liste atributa:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br>fccfda19bz0</span>fccfda19bz0</span><spanlate'2 </span>Da bi lista zavisila od druge liste:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelpchkbxlst=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>filter can be a simple test (eg active=1 to display only active value)<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelplink=Parametri moraju biti ObjectName:Classpath<br>Sintaksa: ObjectName:Classpath
ExtrafieldParamHelpSeparator=Ostavite prazno za jednostavan separator<br>Postavite ovo na 1 za separator koji se sažima (otvoreno prema zadanim postavkama za novu sesiju, tada se status čuva za svaku korisničku sesiju)<br>Postavite ovo na 2 za sažimajući separator (sažeto prema zadanim postavkama za novu sesiju, tada se status čuva za svaku korisničku sesiju)
LibraryToBuildPDF=Biblioteka koja se koristi za generiranje PDF-a
@@ -1457,7 +1457,7 @@ HRMSetup=Podešavanje HRM modula
CompanySetup=Podešavanje modula za kompanije
CompanyCodeChecker=Opcije za automatsko generiranje kodova kupaca/prodavca
AccountCodeManager=Opcije za automatsko generiranje obračunskih kodova kupaca/prodavca
NotificationsDesc=Obavještenja putem e-pošte mogu se slati automatski za neke Dolibarr događaje.<br>Primaoci obavještenja se mogu definirati:
NotificationsDesc=Email notifications can be sent automatically on certain events.<br>Recipients of notifications can be defined:
NotificationsDescUser=* per user (on the tab "Notifications" of a user)
NotificationsDescContact=* per third-party contacts (on the tab "Notifications" of a third party)
NotificationsDescGlobal=* or by setting global email addresses (on the setup page of the module).
@@ -1993,10 +1993,10 @@ ExpenseReportsRulesSetup=Postavljanje modula Izvještaji o troškovima - Pravila
ExpenseReportNumberingModules=Modul numeracije izvještaja o troškovima
NoModueToManageStockIncrease=Nije aktiviran nijedan modul koji može upravljati automatskim povećanjem zaliha. Povećanje zaliha će se vršiti samo na ručnom unosu.
YouMayFindNotificationsFeaturesIntoModuleNotification=Možete pronaći opcije za obavještenja putem e-pošte tako što ćete omogućiti i konfiguriranje modula "Obavijesti".
TemplatesForNotifications=Predlošci za obavještenja
TemplatesForNotifications=Emails templates for notifications
ListOfNotificationsPerUser=Lista automatskih obavještenja po korisniku*
ListOfNotificationsPerUserOrContact=Lista mogućih automatskih obavještenja (o poslovnom događaju) dostupna po korisniku* ili po kontaktu**
ListOfFixedNotifications=Lista automatskih fiksnih obavještenja
ListOfFixedNotifications=Global recipients emails for automatic email notifications
GoOntoUserCardToAddMore=Idite na karticu "Obavijesti" korisnika da dodate ili uklonite obavještenja za korisnike
GoOntoContactCardToAddMore=Idite na karticu "Obavijesti" treće strane da dodate ili uklonite obavještenja za kontakte/adrese
Threshold=Prag
@@ -2126,7 +2126,7 @@ MAIN_DOCUMENTS_WITH_PICTURE_WIDTH=Širina kolone ako se slika dodaje na redove
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_UNIT_PRICE=Sakrij stupac jedinične cijene na zahtjevima za ponudu
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_TOTAL_COLUMN=Sakrij kolonu ukupne cijene na zahtjevima za ponudu
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_UNIT_PRICE=Sakrijte stupac jedinične cijene na narudžbenicama
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=Sakrij kolonu ukupne cijene na narudžbenicama
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=Hide the total price column on purchase orders
MAIN_PDF_NO_SENDER_FRAME=Sakrij granice na okviru adrese pošiljaoca
MAIN_PDF_NO_RECIPENT_FRAME=Sakrij ivice na okviru adrese primaoca
MAIN_PDF_HIDE_CUSTOMER_CODE=Sakrij šifru kupca
@@ -2279,6 +2279,7 @@ NotAPublicIp=Nije javna IP adresa
MakeAnonymousPing=Napravite anonimni Ping '+1' na Dolibarr temeljni server (urađeno samo 1 put nakon instalacije) kako biste omogućili fondaciji da prebroji broj Dolibarr instalacije.
FeatureNotAvailableWithReceptionModule=Funkcija nije dostupna kada je omogućen prijem modula
EmailTemplate=Šablon za email
EmailTemplateHelp=You can create emails templates from menu %s - %s
EMailsWillHaveMessageID=Emails will have a 'Message-ID' header matching this syntax
PDF_SHOW_PROJECT=Prikaži projekat na dokumentu
ShowProjectLabel=Oznaka projekta
@@ -2539,5 +2540,16 @@ MainAuthenticationOidcLoginClaimName=Login claim
MainAuthenticationOidcLoginClaimDesc=OpenID Connect claim matching the Dolibarr user login. If not set or empty, defaults to email
BlackListWords=Black list of words
AddBlackList=Add to black list
FediverseSetup=Configuration of fediverse section
ConfigImportSocialNetwork=Configuration of social networks compatible with Fediverse
Fediverse=Fediverse
NewSocialNetwork=New Fediverse social network
SocialNetworkUrl=Fediverse API URL
SocialNetworksNote=Each social network definition provides a widget that you must enable to have it available in dashboard
ConfirmDeleteSocialNetwork= Are you sure want to delete this record ?
AnOwnerMustBeSetIfEmailTemplateIsPrivate=An owner must be set if the email template is set as private
ContactsDefaultRoles=For third parties of the "individual" type, a contact can be created simultaneously. Define here the roles that will be systematically assigned to this contact.
MenuDict=Dictionary
AddMoreParams=Add more parameters for connection (cookies, tokens, ...)<br> Example: token : value token
ParamName=Name of parameter
ParamValue=Value of parameter

View File

@@ -503,6 +503,7 @@ ContactsAddressesForCompany=Kontakti/adrese za ovaj subjekt
AddressesForCompany=Adrese za ovaj subjekt
ActionsOnCompany=Događaji za ovu treću stranu
ActionsOnContact=Događaji za ovaj kontakt/adresu
ActionsOnUser=Events for this user
ActionsOnContract=Događaji za ovaj ugovor
ActionsOnMember=Događaji o ovom članu
ActionsOnProduct=Događaji o ovom proizvodu
@@ -1187,6 +1188,8 @@ SetSupervisor=Postavite supervizora
CreateExternalUser=Kreirajte vanjskog korisnika
ConfirmAffectTag=Skupna dodjela oznaka
ConfirmAffectUser=Grupna dodjela korisnika
ContactRole=Contact role
ContactRoles=Contact roles
ProjectRole=Uloga dodijeljena svakom projektu/prilici
TasksRole=Uloga dodijeljena svakom zadatku (ako se koristi)
ConfirmSetSupervisor=Bulk Supervisor Set
@@ -1238,6 +1241,8 @@ CommercialsAffected=Dodijeljeni predstavnici prodaje
CommercialAffected=Dodijeljen predstavnik prodaje
CommercialsDisaffected=Sales representatives unlinked
CommercialDisaffected=Sales representative unlinked
Message=Poruka
Progression=Napredak
YourMessage=Tvoja poruka
YourMessageHasBeenReceived=Vaša poruka je primljena. Odgovorit ćemo ili kontaktirati Vas u najkraćem mogućem roku.
UrlToCheck=Url za provjeru
@@ -1280,6 +1285,7 @@ AmountSalary=Visina plate
InvoiceSubtype=Podtip fakture
ConfirmMassReverse=Bulk Reverse potvrda
ConfirmMassReverseQuestion=Jeste li sigurni da želite poništiti %s odabrane zapise?
ConfirmActionXxx=Confirm action %s
ElementType=Element type
ElementId=Element Id
Encrypted=Encrypted
@@ -1299,3 +1305,4 @@ AllEntities=All entities
TranslationOfKey=Translation of the key AnyTranslationKey
SignedStatus=Signed status
NbRecordQualified=Number of qualified records
auto=auto

View File

@@ -23,23 +23,24 @@ TOKEN_REFRESH=Refresh Token
TOKEN_EXPIRED=Token je istekao
TOKEN_EXPIRE_AT=Token ističe u
TOKEN_DELETE=Izbriši sačuvani token
OAUTH_GOOGLE_NAME=OAuth Google usluga
OAUTH_GOOGLE_ID=OAuth Google Id
OAUTH_GOOGLE_SECRET=OAuth Google Secret
OAUTH_GITHUB_NAME=OAuth GitHub usluga
OAUTH_GITHUB_ID=OAuth GitHub Id
OAUTH_GITHUB_SECRET=OAuth GitHub tajna
OAUTH_URL_FOR_CREDENTIAL=Idite na <a class="notasortlink" href="%s" target="_blank" rel="noopener noreferrer external">ovu stranicu<span class="fas fa-external-link-alt paddingleft"></span></a> da kreirate ili dobijete svoj OAuth ID i Secret
OAUTH_STRIPE_TEST_NAME=OAuth Stripe test
OAUTH_STRIPE_LIVE_NAME=OAuth Stripe Live
OAUTH_STRIPE_TEST_NAME=Stripe Test
OAUTH_STRIPE_LIVE_NAME=Stripe Live
OAUTH_ID=OAuth ID klijenta
OAUTH_SECRET=OAuth tajna
OAUTH_TENANT=OAuth stanar
OAuthProviderAdded=Dodan je OAuth provajder
AOAuthEntryForThisProviderAndLabelAlreadyHasAKey=OAuth unos za i oznaku ovog dobavljača već postoji
URLOfOAuthServiceEndpoints=Base URL for OAuth service endpoints
URLOfOAuthServiceEndpointsExample=https://mastodon.example.com
URLOfServiceForAuthorization=URL pruža OAuth servis za autentifikaciju
Scopes=Dozvole (opsezi)
ScopeUndefined=Odobrenja (opsezi) nedefinirana (pogledajte prethodnu karticu)
ScopesDesc=Example: read,write with Mastodom
TokenRawValue=Full Token (object)
AccessToken=Access Token
TokenExpired=Istekao

View File

@@ -458,9 +458,9 @@ ExtrafieldSelect = Seleccioneu la llista
ExtrafieldSelectList=Seleccioneu de la taula
ExtrafieldSeparator=Separador (no un camp)
ExtrafieldPassword=Contrasenya
ExtrafieldRadio=Botons de ràdio (només una opció)
ExtrafieldCheckBox=Caselles de verificació
ExtrafieldCheckBoxFromList=Caselles de selecció de la taula
ExtrafieldRadio=Radio buttons (1 choice only)
ExtrafieldCheckBox=Select list (n choices)
ExtrafieldCheckBoxFromList=Select from table (n choices)
ExtrafieldLink=Enllaç a un objecte
ExtrafieldPointGeo=Punt geomètric
ExtrafieldMultiPointGeo=Multipunt geomètric
@@ -475,7 +475,7 @@ ExtrafieldParamHelpselect=List of values must be lines with format key,value (wh
ExtrafieldParamHelpcheckbox=List of values must be lines with format key,value (where key can't be '0')<br><br> for example: <br>1,value1<br>2,value2<br>3,value3<br>...
ExtrafieldParamHelpradio=List of values must be lines with format key,value (where key can't be '0')<br><br> for example: <br>1,value1<br>2,value2<br>3,value3<br>...
ExtrafieldParamHelpsellist=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>- id_field is necessarily a primary int key<br>- filtersql is a condition. It must use the USF syntax. Example: (active:=:1) to display only active value<br>You can also use $ID$ in filter which is the current id of current object<br>If you want to filter on extrafields use syntax extra.fieldcode=... (where fieldcode is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelpchkbxlst=La llista de valors prové d'una taula<br>Sintaxi: nom_taula:nom_camp:id_camp::filtresql<br>Exemple: c_typent:libelle: ::filtresql<br><br>El filtre pot ser una prova senzilla (per exemple, active=1) per a mostrar només el valor actiu<br>També podeu utilitzar $ID$ al filtre, que és l'identificador actual de l'objecte actual<br>Per a fer un SELECT al filtre, utilitzeu $SEL$<br>Si voleu filtrar sobre camps extra, utilitzeu la sintaxi extra.nom_camp=... (on el codi del camp és el codi del camp extra)<br><br>Per tal que la llista depengui d'una altra llista d'atributs complementaris:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filtre <br><br>Per tal que la llista depengui d'una altra llista:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filtre
ExtrafieldParamHelpchkbxlst=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>filter can be a simple test (eg active=1 to display only active value)<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelplink=Els paràmetres han de ser ObjectName:Classpath<br>Sintaxi: ObjectName:Classpath
ExtrafieldParamHelpSeparator=Manteniu-lo buit per a un separador simple<br>Definiu-lo a 1 per a un separador que es replega (obert per defecte per a una sessió nova, llavors l'estat es manté per a cada sessió d'usuari)<br>Definiu-ho a 2 per a un separador que es replega (es replega de manera predeterminada per a una sessió nova, llavors l'estat es manté abans de cada sessió d'usuari)
LibraryToBuildPDF=Biblioteca utilitzada per a la generació de PDF
@@ -1457,7 +1457,7 @@ HRMSetup=Configuració de mòdul de gestió de recursos humans
CompanySetup=Configuració del mòdul d'empreses
CompanyCodeChecker=Opcions per a la generació automàtica de codis de client / proveïdor
AccountCodeManager=Opcions per a la generació automàtica de comptes comptables de client/proveïdor
NotificationsDesc=Les notificacions per correu electrònic es poden enviar automàticament per a alguns esdeveniments de Dolibarr. <br> Es poden definir els destinataris de les notificacions:
NotificationsDesc=Email notifications can be sent automatically on certain events.<br>Recipients of notifications can be defined:
NotificationsDescUser=* per usuari (a la pestanya «Notificacions» d'un usuari)
NotificationsDescContact=* per contactes de tercers (a la pestanya «Notificacions» d'un tercer)
NotificationsDescGlobal=* o configurant adreces de correu electrònic globals (a la pàgina de configuració del mòdul).
@@ -1993,10 +1993,10 @@ ExpenseReportsRulesSetup=Configurar mòdul Informes de despeses - Regles
ExpenseReportNumberingModules=Mòdul de numeració d'informes de despeses
NoModueToManageStockIncrease=No s'ha activat cap mòdul capaç de gestionar l'increment automàtic d'estoc. Lincrement destoc es farà només amb entrada manual.
YouMayFindNotificationsFeaturesIntoModuleNotification=Podeu trobar opcions de notificacions per correu electrònic habilitant i configurant el mòdul "Notificació".
TemplatesForNotifications=Plantilles per a notificacions
TemplatesForNotifications=Emails templates for notifications
ListOfNotificationsPerUser=Llista de notificacions automàtiques per usuari *
ListOfNotificationsPerUserOrContact=Llista de possibles notificacions automàtiques (en un esdeveniment comercial) disponibles per usuari* o per contacte**
ListOfFixedNotifications=Llista de notificacions automàtiques fixes
ListOfFixedNotifications=Global recipients emails for automatic email notifications
GoOntoUserCardToAddMore=Aneu a la pestanya «Notificacions» d'un usuari per a afegir o eliminar notificacions per als usuaris
GoOntoContactCardToAddMore=Aneu a la pestanya "Notificacions" d'un tercer per a afegir o eliminar notificacions de contactes/adreces
Threshold=Valor mínim/llindar
@@ -2126,7 +2126,7 @@ MAIN_DOCUMENTS_WITH_PICTURE_WIDTH=Amplada de la columna si s'afegeix una imatge
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_UNIT_PRICE=Oculta la columna de preu unitari quan es requereix textualment
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_TOTAL_COLUMN=Oculta la columna de preu total quan es requereix textualment
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_UNIT_PRICE=Oculta la columna de preu unitari a les comandes
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=Oculta la columna de preu total a les comandes
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=Hide the total price column on purchase orders
MAIN_PDF_NO_SENDER_FRAME=Amaga les vores del marc dadreça del remitent
MAIN_PDF_NO_RECIPENT_FRAME=Amaga les vores del marc de l'adreça del destinatari
MAIN_PDF_HIDE_CUSTOMER_CODE=Amaga el codi de client
@@ -2279,6 +2279,7 @@ NotAPublicIp=No és una IP pública
MakeAnonymousPing=Feu un Ping anònim '+1' al servidor de la fundació Dolibarr (només es fa una vegada després de la instal·lació) per a permetre que la fundació compti el nombre d'instal·lacions de Dolibarr.
FeatureNotAvailableWithReceptionModule=Funció no disponible quan el mòdul Recepció està habilitat
EmailTemplate=Plantilla per correu electrònic
EmailTemplateHelp=You can create emails templates from menu %s - %s
EMailsWillHaveMessageID=Els correus electrònics tindran una capçalera "Message-ID" que coincideixi amb aquesta sintaxi
PDF_SHOW_PROJECT=Mostra el projecte al document
ShowProjectLabel=Nom del projecte
@@ -2539,5 +2540,16 @@ MainAuthenticationOidcLoginClaimName=Login claim
MainAuthenticationOidcLoginClaimDesc=OpenID Connect claim matching the Dolibarr user login. If not set or empty, defaults to email
BlackListWords=Black list of words
AddBlackList=Add to black list
FediverseSetup=Configuration of fediverse section
ConfigImportSocialNetwork=Configuration of social networks compatible with Fediverse
Fediverse=Fediverse
NewSocialNetwork=New Fediverse social network
SocialNetworkUrl=Fediverse API URL
SocialNetworksNote=Each social network definition provides a widget that you must enable to have it available in dashboard
ConfirmDeleteSocialNetwork= Are you sure want to delete this record ?
AnOwnerMustBeSetIfEmailTemplateIsPrivate=An owner must be set if the email template is set as private
ContactsDefaultRoles=For third parties of the "individual" type, a contact can be created simultaneously. Define here the roles that will be systematically assigned to this contact.
MenuDict=Dictionary
AddMoreParams=Add more parameters for connection (cookies, tokens, ...)<br> Example: token : value token
ParamName=Name of parameter
ParamValue=Value of parameter

View File

@@ -1,3 +1,6 @@
IntraCommReport=Informe intracomm
IntraCommReports=Intracomm reports
Module68000Name = Informe intracomm
Module68000Desc = Gestió dinformes intracomm (suport per al format francès DEB/DES)
IntracommReportSetup = Configuració del mòdul d'informes intracomm
@@ -32,3 +35,4 @@ IntracommReportTypeDeclaration=Tipus de declaració
IntracommReportDownload=descarrega fitxer XML
# Invoice
IntracommReportTransportMode=Mode de transport
DeleteIntraCommReport=Delete IntraComm report

View File

@@ -176,7 +176,7 @@ ConfirmSendCardByMail=Realment voleu enviar el contingut d'aquesta fitxa per cor
Delete=Elimina
Remove=Retirar
Resiliate=Dona de baixa
Cancel=Cancel·la
Cancel=Anul·la
Modify=Modifica
Edit=Editar
Validate=Valida
@@ -212,9 +212,9 @@ ToLink=Enllaç
Select=Seleccionar
SelectAll=Selecciona-ho tot
Choose=Escollir
Resize=Redimensionar
Crop=Cultiu
ResizeOrCrop=Canviar la mida o tallar
Resize=Canvia la mida
Crop=Retalla
ResizeOrCrop=Canvia la mida o retalla
Author=Autor
User=Usuari
Users=Usuaris
@@ -503,6 +503,7 @@ ContactsAddressesForCompany=Contactes/adreces d'aquest tercer
AddressesForCompany=Adreces d'aquest tercer
ActionsOnCompany=Esdeveniments per a aquest tercer
ActionsOnContact=Esdeveniments per a aquest contacte / adreça
ActionsOnUser=Events for this user
ActionsOnContract=Esdeveniments per a aquest contracte
ActionsOnMember=Esdeveniments d'aquest soci
ActionsOnProduct=Esdeveniments sobre aquest producte
@@ -727,7 +728,7 @@ NoMobilePhone=Sense mòbil
Owner=Propietari
FollowingConstantsWillBeSubstituted=Les següents constants seran substituïdes pel seu valor corresponent.
Refresh=Refrescar
BackToList=Tornar al llistat
BackToList=Torna a la llista
BackToTree=Torna a l'arbre
GoBack=Torna
CanBeModifiedIfOk=Pot modificar-se si és vàlid
@@ -794,7 +795,7 @@ AddFile=Afegeix un fitxer
FreeZone=Producte de text lliure
FreeLineOfType=Element de text lliure, escriviu:
CloneMainAttributes=Clonar l'objecte amb aquests atributs principals
ReGeneratePDF=Tornar a generar PDF
ReGeneratePDF=Torna a generar el PDF
PDFMerge=Fussió PDF
Merge=Fussió
DocumentModelStandardPDF=Plantilla PDF estàndard
@@ -846,7 +847,7 @@ LinkToIntervention=Enllaça a intervenció
LinkToTicket=Enllaç al tiquet
LinkToMo=Enllaç a Mo
CreateDraft=Crea esborrany
SetToDraft=Tornar a redactar
SetToDraft=Torna a l'esborrany
ClickToEdit=Feu clic per a editar
ClickToRefresh=Feu clic per a actualitzar
EditWithEditor=Editar amb CKEditor
@@ -975,7 +976,7 @@ HR=RH
HRAndBank=RH i Banc
AutomaticallyCalculated=Calculat automàticament
TitleSetToDraft=Torna a esborrany
ConfirmSetToDraft=Estàs segur que vols tornar a l'estat Esborrany?
ConfirmSetToDraft=Esteu segur que vols tornar a l'estat d'esborrany?
ImportId=ID d'importació
Event=Esdeveniment
Events=Esdeveniments
@@ -1174,7 +1175,7 @@ APPROVEDInDolibarr=Registre %s aprovat
DefaultMailModel=Model de correu predeterminat
PublicVendorName=Nom públic del proveïdor
DateOfBirth=Data de naixement
SecurityTokenHasExpiredSoActionHasBeenCanceledPleaseRetry=El testimoni de seguretat ha caducat, de manera que s'ha cancel·lat l'acció. Torneu-ho a provar.
SecurityTokenHasExpiredSoActionHasBeenCanceledPleaseRetry=El testimoni de seguretat ha caducat, de manera que l'acció s'ha anul·lat. Torna-ho a provar.
UpToDate=Actualitzat
OutOfDate=Obsolet
EventReminder=Recordatori d'esdeveniments
@@ -1187,6 +1188,8 @@ SetSupervisor=Estableix el supervisor
CreateExternalUser=Crea un usuari extern
ConfirmAffectTag=Assignació d'etiquetes massives
ConfirmAffectUser=Assignació massiva d'usuaris
ContactRole=Rol de contacte
ContactRoles=Contact roles
ProjectRole=Rol assignat a cada projecte/oportunitat
TasksRole=Rol assignat a cada tasca (si s'utilitza)
ConfirmSetSupervisor=Estableix el supervisor massivament
@@ -1199,7 +1202,7 @@ CategTypeNotFound=No s'ha trobat cap mena d'etiqueta per al tipus de registre
SupervisorNotFound=No s'ha trobat el supervisor
CopiedToClipboard=Copiat al porta-retalls
InformationOnLinkToContract=Aquest import només és el total de totes les línies del contracte. No es té en compte cap noció de temps.
ConfirmCancel=Esteu segur que voleu cancel·lar-la?
ConfirmCancel=Esteu segur que voleu anul·lar-lo
EmailMsgID=Envia un correu electrònic a MsgID
EmailDate=Data del correu electrònic
SetToStatus=Estableix a l'estat %s
@@ -1224,8 +1227,8 @@ hasBeenValidated=%s s'ha validat
ClientTZ=Zona horària client (usuari)
NotClosedYet=Encara no tancat
ClearSignature=Restableix la signatura
CanceledHidden=Cancel·lat ocult
CanceledShown=Es mostra cancel·lada
CanceledHidden=Anul·lació oculta
CanceledShown=Anul·lació visible
Terminate=Dona de baixa
Terminated=Baixa
Position=Càrrec
@@ -1238,6 +1241,8 @@ CommercialsAffected=Agents comercials assignats
CommercialAffected=Agent comercial assignat
CommercialsDisaffected=Representants de vendes desenllaçats
CommercialDisaffected=Representant de vendes desenllaçat
Message=Missatge
Progression=Progrés
YourMessage=El teu missatge
YourMessageHasBeenReceived=S'ha rebut el teu missatge. Et respondrem o contactarem al més aviat possible.
UrlToCheck=URL per a comprovar
@@ -1280,6 +1285,7 @@ AmountSalary=Import del salari
InvoiceSubtype=Subtipus de factura
ConfirmMassReverse=Confirmació inversa massiva
ConfirmMassReverseQuestion=Esteu segur que voleu revertir els %s registres seleccionats?
ConfirmActionXxx=Confirm action %s
ElementType=Tipus d'element
ElementId=Id. de l'element
Encrypted=Encriptat
@@ -1299,3 +1305,4 @@ AllEntities=Totes les entitats
TranslationOfKey=Traducció de la clau AnyTranslationKey
SignedStatus=Estat signat
NbRecordQualified=Nombre de registres qualificats
auto=auto

View File

@@ -23,23 +23,24 @@ TOKEN_REFRESH=Refresh Token
TOKEN_EXPIRED=Token expirat
TOKEN_EXPIRE_AT=El token expira el
TOKEN_DELETE=Elimina el token desat
OAUTH_GOOGLE_NAME=Servei d'OAuth Google
OAUTH_GOOGLE_ID=Identificador de Google OAuth
OAUTH_GOOGLE_SECRET=OAuth Google Secret
OAUTH_GITHUB_NAME=Servei OAuth GitHub
OAUTH_GITHUB_ID=OAuth GitHub Id
OAUTH_GITHUB_SECRET=OAuth GitHub Secret
OAUTH_URL_FOR_CREDENTIAL=Aneu a <a class="notasortlink" href="%s" target="_blank" rel="noopener noreferrer external"> aquesta pàgina <span class="fas fa-external-link-alt paddingleft"> </span> </a> per a crear o obtenir el vostre identificador i secret d'OAuth
OAUTH_STRIPE_TEST_NAME=OAuth Stripe Test
OAUTH_STRIPE_LIVE_NAME=OAuth Stripe Live
OAUTH_STRIPE_TEST_NAME=Stripe Test
OAUTH_STRIPE_LIVE_NAME=Stripe Live
OAUTH_ID=Identificador de client d'OAuth
OAUTH_SECRET=Secret d'OAuth
OAUTH_TENANT=Inquilí d'OAuth
OAuthProviderAdded=S'ha afegit el proveïdor OAuth
AOAuthEntryForThisProviderAndLabelAlreadyHasAKey=Ja existeix una entrada d'OAuth per a aquest proveïdor i nom
URLOfOAuthServiceEndpoints=Base URL for OAuth service endpoints
URLOfOAuthServiceEndpointsExample=https://mastodon.example.com
URLOfServiceForAuthorization=URL proporcionat pel servei OAuth per a l'autenticació
Scopes=Permisos (àmbits)
ScopeUndefined=Permisos (àmbits) sense definir (vegeu la pestanya anterior)
ScopesDesc=Example: read,write with Mastodom
TokenRawValue=Full Token (object)
AccessToken=Access Token
TokenExpired=No al dia

View File

@@ -458,9 +458,9 @@ ExtrafieldSelect = Vyberte seznam
ExtrafieldSelectList=Vyberte z tabulky
ExtrafieldSeparator=Oddělovač (není položka)
ExtrafieldPassword=Heslo
ExtrafieldRadio=Přepínače (pouze jedna volba)
ExtrafieldCheckBox=Zaškrtávače
ExtrafieldCheckBoxFromList=Zaškrtávací políčka z tabulky
ExtrafieldRadio=Radio buttons (1 choice only)
ExtrafieldCheckBox=Select list (n choices)
ExtrafieldCheckBoxFromList=Select from table (n choices)
ExtrafieldLink=Odkaz na objekt
ExtrafieldPointGeo=Geometric Point
ExtrafieldMultiPointGeo=Geometric Multi Point
@@ -475,7 +475,7 @@ ExtrafieldParamHelpselect=Seznam hodnot musí být řádky s formátovým klíč
ExtrafieldParamHelpcheckbox=Seznam hodnot musí být řádky s formátovým klíčem, hodnota (kde klíč nemůže být '0') <br> <br> například: <br> 1, value1 <br> 2, value2 <br> 3, value3 <br> ...
ExtrafieldParamHelpradio=Seznam hodnot musí být řádky s formátovým klíčem, hodnota (kde klíč nemůže být '0') <br> <br> například: <br> 1, value1 <br> 2, value2 <br> 3, value3 <br> ...
ExtrafieldParamHelpsellist=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>- id_field is necessarily a primary int key<br>- filtersql is a condition. It must use the USF syntax. Example: (active:=:1) to display only active value<br>You can also use $ID$ in filter which is the current id of current object<br>If you want to filter on extrafields use syntax extra.fieldcode=... (where fieldcode is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelpchkbxlst=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelpchkbxlst=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>filter can be a simple test (eg active=1 to display only active value)<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelplink=Parameters must be ObjectName:Classpath<br>Syntax: ObjectName:Classpath
ExtrafieldParamHelpSeparator=Ponechte prázdné pro jednoduchý oddělovač <br> Tuto hodnotu nastavíte na 1 pro odlučovač (výchozí nastavení je otevřeno pro novou relaci, poté je stav zachován pro každou uživatelskou relaci) <br>Nastavte tuto položku na 2 pro sbalující se oddělovač. (ve výchozím nastavení sbaleno pro novou relaci, pak je stav udržován pro každou relaci uživatele)
LibraryToBuildPDF=Knihovna používaná pro generování PDF
@@ -1457,7 +1457,7 @@ HRMSetup=setup HRM Modul
CompanySetup=Nastavení modulu firem
CompanyCodeChecker=Možnosti automatického generování kódů zákazníků / dodavatelů
AccountCodeManager=Možnosti pro automatické generování kódů zákaznického / dodavatelského účetnictví
NotificationsDesc=E-mailová upozornění mohou být odeslána automaticky pro některé události Dolibarr. <br> Příjemci oznámení lze definovat:
NotificationsDesc=Email notifications can be sent automatically on certain events.<br>Recipients of notifications can be defined:
NotificationsDescUser=* per user (on the tab "Notifications" of a user)
NotificationsDescContact=* per third-party contacts (on the tab "Notifications" of a third party)
NotificationsDescGlobal=* or by setting global email addresses (on the setup page of the module).
@@ -1993,10 +1993,10 @@ ExpenseReportsRulesSetup=Nastavení výkazu výdajů modulu - pravidla
ExpenseReportNumberingModules=Způsob číslování výkazů výdajů
NoModueToManageStockIncrease=Nebyl aktivován žádný modul schopný zvládnout automatické zvýšení zásob. Zvýšení zásob bude provedeno pouze při ručním zadávání.
YouMayFindNotificationsFeaturesIntoModuleNotification=Možnosti upozornění na e-mail můžete najít povolením a konfigurací modulu "Oznámení".
TemplatesForNotifications=Templates for notifications
TemplatesForNotifications=Emails templates for notifications
ListOfNotificationsPerUser=Seznam automatických oznámení na uživatele *
ListOfNotificationsPerUserOrContact=Seznam možných automatických oznámení (na obchodní akci) dostupných pro uživatele * nebo pro kontakt **
ListOfFixedNotifications=Seznam automatických pevných oznámení
ListOfFixedNotifications=Global recipients emails for automatic email notifications
GoOntoUserCardToAddMore=Přejděte na kartu "Oznámení" uživatele, chcete-li přidat nebo odstranit oznámení pro uživatele
GoOntoContactCardToAddMore=Chcete-li přidat nebo odebrat oznámení pro kontakty / adresy, přejděte na kartu Oznámení subjektu
Threshold=Práh
@@ -2126,7 +2126,7 @@ MAIN_DOCUMENTS_WITH_PICTURE_WIDTH=Width of the column if a picture is added on l
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_UNIT_PRICE=Hide the unit price column on quotation requests
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_TOTAL_COLUMN=Hide the total price column on quotation requests
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_UNIT_PRICE=Hide the unit price column on purchase orders
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=Hide the total price column on puchase orders
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=Hide the total price column on purchase orders
MAIN_PDF_NO_SENDER_FRAME=Hide borders on sender address frame
MAIN_PDF_NO_RECIPENT_FRAME=Hide borders on recipient address frame
MAIN_PDF_HIDE_CUSTOMER_CODE=Hide customer code
@@ -2279,6 +2279,7 @@ NotAPublicIp=Není veřejná IP
MakeAnonymousPing=Vytvořte anonymní Ping '+1' k nadačnímu serveru Dolibarr (provedeno 1krát pouze po instalaci), aby nadace mohla spočítat počet instalací Dolibarru.
FeatureNotAvailableWithReceptionModule=Funkce není k dispozici, pokud je povolen příjem modulu
EmailTemplate=Šablona pro e-mail
EmailTemplateHelp=You can create emails templates from menu %s - %s
EMailsWillHaveMessageID=Emails will have a 'Message-ID' header matching this syntax
PDF_SHOW_PROJECT=Show project on document
ShowProjectLabel=Project Label
@@ -2539,5 +2540,16 @@ MainAuthenticationOidcLoginClaimName=Login claim
MainAuthenticationOidcLoginClaimDesc=OpenID Connect claim matching the Dolibarr user login. If not set or empty, defaults to email
BlackListWords=Black list of words
AddBlackList=Add to black list
FediverseSetup=Configuration of fediverse section
ConfigImportSocialNetwork=Configuration of social networks compatible with Fediverse
Fediverse=Fediverse
NewSocialNetwork=New Fediverse social network
SocialNetworkUrl=Fediverse API URL
SocialNetworksNote=Each social network definition provides a widget that you must enable to have it available in dashboard
ConfirmDeleteSocialNetwork= Are you sure want to delete this record ?
AnOwnerMustBeSetIfEmailTemplateIsPrivate=An owner must be set if the email template is set as private
ContactsDefaultRoles=For third parties of the "individual" type, a contact can be created simultaneously. Define here the roles that will be systematically assigned to this contact.
MenuDict=Dictionary
AddMoreParams=Add more parameters for connection (cookies, tokens, ...)<br> Example: token : value token
ParamName=Name of parameter
ParamValue=Value of parameter

View File

@@ -503,6 +503,7 @@ ContactsAddressesForCompany=Kontakty/adresy pro tento subjekt
AddressesForCompany=Adresy pro tento subjekt
ActionsOnCompany=Události pro tento subjekt
ActionsOnContact=Události pro tento kontakt / adresu
ActionsOnUser=Events for this user
ActionsOnContract=Události pro tuto smlouvu
ActionsOnMember=Akce u tohoto uživatele
ActionsOnProduct=Události týkající se tohoto produktu
@@ -1187,6 +1188,8 @@ SetSupervisor=Set the supervisor
CreateExternalUser=Create external user
ConfirmAffectTag=Bulk Tag Assignment
ConfirmAffectUser=Bulk User Assignment
ContactRole=Contact role
ContactRoles=Contact roles
ProjectRole=Role assigned on each project/opportunity
TasksRole=Role assigned on each task (if used)
ConfirmSetSupervisor=Bulk Supervisor Set
@@ -1238,6 +1241,8 @@ CommercialsAffected=Sales representatives assigned
CommercialAffected=Sales representative assigned
CommercialsDisaffected=Sales representatives unlinked
CommercialDisaffected=Sales representative unlinked
Message=Zpráva
Progression=Progres
YourMessage=Your message
YourMessageHasBeenReceived=Your message has been received. We will answer or contact you as soon as possible.
UrlToCheck=Url to check
@@ -1280,6 +1285,7 @@ AmountSalary=Salary amount
InvoiceSubtype=Invoice subtype
ConfirmMassReverse=Bulk Reverse confirmation
ConfirmMassReverseQuestion=Are you sure you want to reverse the %s selected record(s)?
ConfirmActionXxx=Confirm action %s
ElementType=Element type
ElementId=Element Id
Encrypted=Encrypted
@@ -1299,3 +1305,4 @@ AllEntities=All entities
TranslationOfKey=Translation of the key AnyTranslationKey
SignedStatus=Signed status
NbRecordQualified=Number of qualified records
auto=auto

View File

@@ -23,23 +23,24 @@ TOKEN_REFRESH=Refresh Token
TOKEN_EXPIRED=Token vypršel
TOKEN_EXPIRE_AT=Token vyprší na
TOKEN_DELETE=Odstranění uloženého tokenu
OAUTH_GOOGLE_NAME=O službě Google OAuth
OAUTH_GOOGLE_ID=ID Google Oauth
OAUTH_GOOGLE_SECRET=OAuth Google Secret
OAUTH_GITHUB_NAME=Služba Oauth GitHub
OAUTH_GITHUB_ID=ID Oauth GitHub
OAUTH_GITHUB_SECRET=OAuth GitHub Secret
OAUTH_URL_FOR_CREDENTIAL=Go to <a class="notasortlink" href="%s" target="_blank" rel="noopener noreferrer external">this page<span class="fas fa-external-link-alt paddingleft"></span></a> to create or get your OAuth ID and Secret
OAUTH_STRIPE_TEST_NAME=OAuth Stripe Test
OAUTH_STRIPE_LIVE_NAME=OAuth Stripe Live
OAUTH_STRIPE_TEST_NAME=Stripe Test
OAUTH_STRIPE_LIVE_NAME=Stripe Live
OAUTH_ID=OAuth Client ID
OAUTH_SECRET=OAuth secret
OAUTH_TENANT=OAuth tenant
OAuthProviderAdded=OAuth provider added
AOAuthEntryForThisProviderAndLabelAlreadyHasAKey=An OAuth entry for this provider and label already exists
URLOfOAuthServiceEndpoints=Base URL for OAuth service endpoints
URLOfOAuthServiceEndpointsExample=https://mastodon.example.com
URLOfServiceForAuthorization=URL provided by OAuth service for authentication
Scopes=Permissions (Scopes)
ScopeUndefined=Permissions (Scopes) undefined (see previous tab)
ScopesDesc=Example: read,write with Mastodom
TokenRawValue=Full Token (object)
AccessToken=Access Token
TokenExpired=Vypršela

View File

@@ -458,9 +458,9 @@ ExtrafieldSelect = Dewiswch restr
ExtrafieldSelectList=Dewiswch o'r tabl
ExtrafieldSeparator=Gwahanydd (nid maes)
ExtrafieldPassword=Cyfrinair
ExtrafieldRadio=Botymau radio (un dewis yn unig)
ExtrafieldCheckBox=Blychau ticio
ExtrafieldCheckBoxFromList=Blychau ticio o'r bwrdd
ExtrafieldRadio=Radio buttons (1 choice only)
ExtrafieldCheckBox=Select list (n choices)
ExtrafieldCheckBoxFromList=Select from table (n choices)
ExtrafieldLink=Cyswllt i wrthrych
ExtrafieldPointGeo=Geometric Point
ExtrafieldMultiPointGeo=Geometric Multi Point
@@ -475,7 +475,7 @@ ExtrafieldParamHelpselect=Rhaid Rhestr o werthoedd yn llinellau gyda fformat all
ExtrafieldParamHelpcheckbox=Rhaid i'r rhestr o werthoedd fod yn linellau gydag allwedd fformat, gwerth (lle na all yr allwedd fod yn '0') <br> <br> er enghraifft: <br> 1,value1 <br> 2,value2 a0393bzfc a039342fc a03426fc
ExtrafieldParamHelpradio=Rhaid i'r rhestr o werthoedd fod yn linellau gydag allwedd fformat, gwerth (lle na all yr allwedd fod yn '0') <br> <br> er enghraifft: <br> 1,value1 <br> 2,value2 a0393bzfc a039342fc a03426fc
ExtrafieldParamHelpsellist=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>- id_field is necessarily a primary int key<br>- filtersql is a condition. It must use the USF syntax. Example: (active:=:1) to display only active value<br>You can also use $ID$ in filter which is the current id of current object<br>If you want to filter on extrafields use syntax extra.fieldcode=... (where fieldcode is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelpchkbxlst=Daw'r rhestr o werthoedd o dabl <br> Cystrawen: table_name:label_field:id_field::filtersql <br> Enghraifft: c_typent:libelle: id::filtersql <br> <br> <br> <br> yn actif yn unig gwerth dangoswch i testcfda19 gwerth yn syml testcfda19 a testcfda19 yn actif i test=19b hidlydd hefyd yn gallu defnyddio $ID$ yn filter witch yw ID cyfredol y gwrthrych cyfredol <br> I wneud SELECT yn yr hidlydd defnyddiwch $SEL$ <br> os ydych am hidlo ar feysydd ychwanegol defnyddiwch gystrawen extra.fieldcode=... (lle mae cod y maes yw'r cod maes cod extrafield) <br> <br> er mwyn cael y rhestr yn dibynnu ar restr priodoledd ategol arall: <br> c_typent: libelle: id: options_ <i> parent_list_code </i> | parent_column: hidlo <br> <br> er mwyn cael y rhestr yn dibynnu ar rhestr arall: c_typent <br>: enllib: id: <i> parent_list_code </i> | rhiant_colofn: hidlo
ExtrafieldParamHelpchkbxlst=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>filter can be a simple test (eg active=1 to display only active value)<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelplink=Rhaid i baramedrau fod yn Enw Gwrthrych:Classpath <br> Cystrawen: Enw Gwrthrych:Llwybr Dosbarth
ExtrafieldParamHelpSeparator=Cadwch yn wag ar gyfer gwahanydd syml <br> Gosodwch hwn i 1 ar gyfer gwahanydd sy'n cwympo (ar agor yn ddiofyn ar gyfer sesiwn newydd, yna cedwir statws ar gyfer pob sesiwn defnyddiwr) <br> Gosodwch hwn i 2 ar gyfer gwahanydd sy'n cwympo (wedi cwympo yn ddiofyn ar gyfer sesiwn newydd, yna statws yn cael ei gadw ar gyfer pob sesiwn defnyddiwr)
LibraryToBuildPDF=Llyfrgell a ddefnyddir ar gyfer cynhyrchu PDF
@@ -1457,7 +1457,7 @@ HRMSetup=Gosod modiwl HRM
CompanySetup=Gosod modiwlau cwmnïau
CompanyCodeChecker=Opsiynau ar gyfer cynhyrchu codau cwsmer/gwerthwr yn awtomatig
AccountCodeManager=Opsiynau ar gyfer cynhyrchu codau cyfrifo cwsmeriaid/gwerthwr yn awtomatig
NotificationsDesc=Gellir anfon hysbysiadau e-bost yn awtomatig ar gyfer rhai digwyddiadau Dolibarr. <br> Gellir diffinio derbynwyr hysbysiadau:
NotificationsDesc=Email notifications can be sent automatically on certain events.<br>Recipients of notifications can be defined:
NotificationsDescUser=* per user (on the tab "Notifications" of a user)
NotificationsDescContact=* per third-party contacts (on the tab "Notifications" of a third party)
NotificationsDescGlobal=* or by setting global email addresses (on the setup page of the module).
@@ -1993,10 +1993,10 @@ ExpenseReportsRulesSetup=Sefydlu Adroddiadau Treuliau modiwl - Rheolau
ExpenseReportNumberingModules=Modiwl rhifo adroddiadau treuliau
NoModueToManageStockIncrease=Nid oes unrhyw fodiwl sy'n gallu rheoli cynnydd stoc awtomatig wedi'i weithredu. Bydd cynnydd stoc yn cael ei wneud ar fewnbwn â llaw yn unig.
YouMayFindNotificationsFeaturesIntoModuleNotification=Efallai y byddwch yn dod o hyd i opsiynau ar gyfer hysbysiadau e-bost trwy alluogi a ffurfweddu'r modiwl "Hysbysiad".
TemplatesForNotifications=Templedi ar gyfer hysbysiadau
TemplatesForNotifications=Emails templates for notifications
ListOfNotificationsPerUser=Rhestr o hysbysiadau awtomatig fesul defnyddiwr*
ListOfNotificationsPerUserOrContact=Rhestr o hysbysiadau awtomatig posibl (ar ddigwyddiad busnes) ar gael fesul defnyddiwr* neu fesul cyswllt**
ListOfFixedNotifications=Rhestr o hysbysiadau sefydlog awtomatig
ListOfFixedNotifications=Global recipients emails for automatic email notifications
GoOntoUserCardToAddMore=Ewch i'r tab "Hysbysiadau" defnyddiwr i ychwanegu neu ddileu hysbysiadau ar gyfer defnyddwyr
GoOntoContactCardToAddMore=Ewch i'r tab "Hysbysiadau" trydydd parti i ychwanegu neu ddileu hysbysiadau ar gyfer cysylltiadau / cyfeiriadau
Threshold=Trothwy
@@ -2126,7 +2126,7 @@ MAIN_DOCUMENTS_WITH_PICTURE_WIDTH=Lled y golofn os ychwanegir llun ar linellau
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_UNIT_PRICE=Cuddiwch y golofn pris uned ar geisiadau dyfynbris
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_TOTAL_COLUMN=Cuddiwch y golofn cyfanswm pris ar geisiadau dyfynbris
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_UNIT_PRICE=Cuddiwch y golofn pris uned ar archebion prynu
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=Cuddiwch y golofn cyfanswm pris ar archebion prynu
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=Hide the total price column on purchase orders
MAIN_PDF_NO_SENDER_FRAME=Cuddio borderi ar ffrâm cyfeiriad anfonwr
MAIN_PDF_NO_RECIPENT_FRAME=Cuddio borderi ar ffrâm cyfeiriad y derbynnydd
MAIN_PDF_HIDE_CUSTOMER_CODE=Cuddio cod cwsmer
@@ -2279,6 +2279,7 @@ NotAPublicIp=Ddim yn IP cyhoeddus
MakeAnonymousPing=Gwnewch Ping '+1' dienw i weinydd sylfaen Dolibarr (wedi'i wneud 1 amser yn unig ar ôl ei osod) i ganiatáu i'r sylfaen gyfrif nifer gosod Dolibarr.
FeatureNotAvailableWithReceptionModule=Nid yw'r nodwedd ar gael pan fydd Derbynfa'r modiwl wedi'i galluogi
EmailTemplate=Templed ar gyfer e-bost
EmailTemplateHelp=You can create emails templates from menu %s - %s
EMailsWillHaveMessageID=Emails will have a 'Message-ID' header matching this syntax
PDF_SHOW_PROJECT=Dangos y prosiect ar ddogfen
ShowProjectLabel=Label Prosiect
@@ -2539,5 +2540,16 @@ MainAuthenticationOidcLoginClaimName=Login claim
MainAuthenticationOidcLoginClaimDesc=OpenID Connect claim matching the Dolibarr user login. If not set or empty, defaults to email
BlackListWords=Black list of words
AddBlackList=Add to black list
FediverseSetup=Configuration of fediverse section
ConfigImportSocialNetwork=Configuration of social networks compatible with Fediverse
Fediverse=Fediverse
NewSocialNetwork=New Fediverse social network
SocialNetworkUrl=Fediverse API URL
SocialNetworksNote=Each social network definition provides a widget that you must enable to have it available in dashboard
ConfirmDeleteSocialNetwork= Are you sure want to delete this record ?
AnOwnerMustBeSetIfEmailTemplateIsPrivate=An owner must be set if the email template is set as private
ContactsDefaultRoles=For third parties of the "individual" type, a contact can be created simultaneously. Define here the roles that will be systematically assigned to this contact.
MenuDict=Dictionary
AddMoreParams=Add more parameters for connection (cookies, tokens, ...)<br> Example: token : value token
ParamName=Name of parameter
ParamValue=Value of parameter

View File

@@ -23,23 +23,24 @@ TOKEN_REFRESH=Refresh Token
TOKEN_EXPIRED=Tocyn wedi dod i ben
TOKEN_EXPIRE_AT=Tocyn yn dod i ben am
TOKEN_DELETE=Dileu tocyn sydd wedi'i gadw
OAUTH_GOOGLE_NAME=OAuth gwasanaeth Google
OAUTH_GOOGLE_ID=ID Google OAuth
OAUTH_GOOGLE_SECRET=OAuth Cyfrinach Google
OAUTH_GITHUB_NAME=Gwasanaeth OAuth GitHub
OAUTH_GITHUB_ID=OAuth GitHub Id
OAUTH_GITHUB_SECRET=Cyfrinach OAuth GitHub
OAUTH_URL_FOR_CREDENTIAL=Ewch i <a class="notasortlink" href="%s" target="_blank" rel="noopener noreferrer external">y dudalen hon<span class="fas fa-external-link-alt paddingleft"></span></a> i greu neu gael eich ID a Chyfrinach OAuth
OAUTH_STRIPE_TEST_NAME=Prawf Stripe OAuth
OAUTH_STRIPE_LIVE_NAME=OAuth Stripe yn Fyw
OAUTH_STRIPE_TEST_NAME=Stripe Test
OAUTH_STRIPE_LIVE_NAME=Stripe Live
OAUTH_ID=ID Cleient OAuth
OAUTH_SECRET=OAuth gyfrinach
OAUTH_TENANT=tenant OAuth
OAuthProviderAdded=Ychwanegwyd darparwr OAuth
AOAuthEntryForThisProviderAndLabelAlreadyHasAKey=Mae cofnod OAuth ar gyfer y darparwr hwn a'r label hwn eisoes yn bodoli
URLOfOAuthServiceEndpoints=Base URL for OAuth service endpoints
URLOfOAuthServiceEndpointsExample=https://mastodon.example.com
URLOfServiceForAuthorization=URL a ddarperir gan wasanaeth OAuth ar gyfer dilysu
Scopes=Caniatâd (Cwmpasau)
ScopeUndefined=Caniatadau (Cwmpasau) heb eu diffinio (gweler y tab blaenorol)
ScopesDesc=Example: read,write with Mastodom
TokenRawValue=Full Token (object)
AccessToken=Access Token
TokenExpired=Expired

View File

@@ -458,9 +458,9 @@ ExtrafieldSelect = Vælg liste
ExtrafieldSelectList=Vælg fra tabel
ExtrafieldSeparator=Separator (ikke et felt)
ExtrafieldPassword=Adgangskode
ExtrafieldRadio=Radioknapper (kun ét valg)
ExtrafieldCheckBox=Afkrydsningsfelter
ExtrafieldCheckBoxFromList=Afkrydsningsfelter fra tabellen
ExtrafieldRadio=Radioknapper (kun 1 valg)
ExtrafieldCheckBox=Vælg liste (n valg)
ExtrafieldCheckBoxFromList=Vælg fra tabel (n valg)
ExtrafieldLink=Link til et objekt
ExtrafieldPointGeo=Geometrisk punkt
ExtrafieldMultiPointGeo=Geometrisk multipunkt
@@ -475,7 +475,7 @@ ExtrafieldParamHelpselect=Liste over værdier skal være linjer med formatet nø
ExtrafieldParamHelpcheckbox=Liste over værdier skal være linjer med formatet nøgle,værdi (hvor nøgle ikke kan være '0')<br><br>f.eks.:<br>1,value1<br>2,value2<br>3,value3<br>...
ExtrafieldParamHelpradio=Liste over værdier skal være linjer med formatet nøgle,værdi (hvor nøgle ikke kan være '0')<br><br>f.eks.:<br>1,value1<br>2,value2<br>3,value3<br>...
ExtrafieldParamHelpsellist=Liste over værdier kommer fra en tabel<br>Syntaks: tabelnavn:label_field:id_field::filtersql<br>Eksempel: c_idtypent:libelle: ::filtersql<br><br>- id_field er nødvendigvis en primær int-key<br>- filtersql er en betingelse. Det skal bruge USF-syntaksen. Eksempel: (active:=:1) for kun at vise aktiv værdi<br>Du kan også bruge $ID$ i filter, som er det aktuelle id for det aktuelle objekt<br>Hvis du vil filtrere på ekstrafelter, brug syntaks extra.fieldcode=... (hvor feltkode er koden for ekstrafelt)<br><br>For at få listen afhængig af en anden komplementær attributliste:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order at have listen afhængig af en anden liste:<br>c_typent:libelle:id:<i>parent_list_code </i>|parent_column:filter
ExtrafieldParamHelpchkbxlst=Liste over værdier kommer fra en tabel<br>Syntaks: table_name:label_field:id_field::filtersql<br>Eksempel: c_typent:libelle:id::filtersql<br><br>filter kan være en simpel test (f.eks. aktiv=1) for kun at vise aktiv værdi<br>Du kan også bruge $ID$ i filter, som er det nuværende id for det aktuelle objekt<br>For at bruge en SELECT i filteret skal du bruge nøgleordet $SEL$<br>hvis du vil filtrere på ekstrafelter, brug syntaks extra.fieldcode=... (hvor fieldcode er koden for ekstrafelt)<br><br>For at få listen afhængig af en anden supplerende egenskabsliste:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter<br><br>For at gøre listen afhængig af en anden liste:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelpchkbxlst=Liste over værdier kommer fra en tabel<br>Syntaks: tabelnavn:label_field:id_field::filtersql<br>Eksempel: c_idtypent:libelle: ::filtersql<br><br>filter kan være en simpel test (f.eks. active=1 for kun at vise aktiv værdi)<br>Du kan også bruge $ID$ i filter, der er det aktuelle id for det aktuelle objekt<br>For at lave et SELECT i filter, brug $SEL$<br>hvis du vil filtrere på ekstrafelter, brug syntaks extra.fieldcode=... (hvor feltkoden er koden for extrafield)<br><br>For at få listen afhængig af en anden komplementær attributliste:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>For at listen afhængig af en anden liste:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelplink=Parametre skal være ObjectName:Classpath<br>Syntaks: ObjectName:Classpath
ExtrafieldParamHelpSeparator=Hold tom for en simpel adskiller<br>Indstil denne til 1 for en kollapsende separator (åben som standard for ny session, så beholdes status for hver brugersession)<br>Indstil denne til 2 for en kollapsende separator (skjulet som standard for ny session, så beholdes status før hver brugersession)
LibraryToBuildPDF=Mappe brugt til PDF generering
@@ -1457,7 +1457,7 @@ HRMSetup=Opsætning af HRM-modul
CompanySetup=Opsætning af virksomhedsmodul
CompanyCodeChecker=Muligheder for automatisk generering af kunde-/leverandørkoder
AccountCodeManager=Muligheder for automatisk generering af kunde-/leverandør bogføringskoder
NotificationsDesc=E-mail meddelelser kan sendes automatisk til nogle Dolibarr hændelser.<br>Modtagere af meddelelser kan defineres:
NotificationsDesc=E-mail-notifikationer kan sendes automatisk ved visse begivenheder.<br>Modtagere af notifikationer kan defineres:
NotificationsDescUser=* pr. bruger (på fanen "Meddelelser" for en bruger)
NotificationsDescContact=* pr. tredjepartskontakter (på fanen "Meddelelser" fra en tredjepart)
NotificationsDescGlobal=* eller ved at indstille globale e-mailadresser (på modulets opsætningsside).
@@ -1993,10 +1993,10 @@ 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
TemplatesForNotifications=Skabeloner til e-mails til meddelelser
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
ListOfFixedNotifications=Globale modtagere e-mails til automatisk e-mail-meddelelser
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
@@ -2126,7 +2126,7 @@ MAIN_DOCUMENTS_WITH_PICTURE_WIDTH=Spaltens bredde, hvis et billede tilføjes på
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_UNIT_PRICE=Skjul enhedspriskolonnen på tilbudsanmodninger
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_TOTAL_COLUMN=Skjul totalpriskolonnen på tilbudsanmodninger
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_UNIT_PRICE=Skjul enhedspriskolonnen på indkøbsordrer
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=Skjul totalpriskolonnen på indkøbsordrer
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=Skjul kolonnen samlet pris på indkøbsordrer
MAIN_PDF_NO_SENDER_FRAME=Skjul kanter på afsenderadresserammen
MAIN_PDF_NO_RECIPENT_FRAME=Skjul kanter på modtageradresserammen
MAIN_PDF_HIDE_CUSTOMER_CODE=Skjul kundekode
@@ -2279,6 +2279,7 @@ NotAPublicIp=Ikke en offentlig IP
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
EmailTemplateHelp=Du kan oprette e-mailskabeloner fra menuen %s - %s
EMailsWillHaveMessageID=E-mails vil have en 'Message-ID' header, der matcher denne syntaks
PDF_SHOW_PROJECT=Vis projekt på dokument
ShowProjectLabel=Projektetiket
@@ -2539,5 +2540,16 @@ MainAuthenticationOidcLoginClaimName=Login krav
MainAuthenticationOidcLoginClaimDesc=OpenID Connect-krav, der matcher Dolibarr-brugerlogin. Hvis den ikke er indstillet eller tom, er e-mail som standard
BlackListWords=Sort liste over ord
AddBlackList=Tilføj til sortliste
FediverseSetup=Konfiguration af fediverse sektion
ConfigImportSocialNetwork=Konfiguration af sociale netværk, der er kompatible med Fediverse
Fediverse=Fediverse
NewSocialNetwork=Nyt Fediverse sociale netværk
SocialNetworkUrl=Fediverse API URL
SocialNetworksNote=Hver social netværksdefinition giver en widget, som du skal aktivere for at have den tilgængelig i dashboardet
ConfirmDeleteSocialNetwork= Er du sikker på, at du vil slette denne post?
AnOwnerMustBeSetIfEmailTemplateIsPrivate=Der skal angives en ejer, hvis e-mailskabelonen er angivet som privat
ContactsDefaultRoles=For tredjeparter af typen "individuelle" kan en kontakt oprettes samtidigt. Definer her de roller, der systematisk vil blive tildelt denne kontakt.
MenuDict=Ordbog
AddMoreParams=Tilføj flere parametre til forbindelse (cookies, tokens, ...)<br> Eksempel: token : værditoken
ParamName=Navn på parameter
ParamValue=Værdi af parameter

View File

@@ -116,6 +116,8 @@ BoxTitleLastCustomerShipments=Seneste %s ændrede kundeforsendelser
BoxTitleLastLeaveRequests=Latest %s modified leave requests
NoRecordedShipments=Ingen registreret kundeforsendelse
BoxCustomersOutstandingBillReached=Kunder med udestående grænse nået
BoxTitleLastFediverseInfos=Sidste %s indlæg fra %s
BoxLastFediverseInfos=Seneste Fediverse-opdateringer: Nyheder og tendenser
# Pages
UsersHome=Hjemmebrugere og grupper
MembersHome=Hjemmemedlemskab

View File

@@ -14,6 +14,7 @@ ConfirmDeleteAction=Er du sikker på, du vil slette denne begivenhed?
CardAction=Oversigt over begivenhed
ActionOnCompany=Tilknyttet firma
ActionOnContact=Tilknyttet kontakt
ActionOnUser=Relateret bruger
TaskRDVWith=Møde med %s
ShowTask=Vis opgave
ShowAction=Vis begivenhed

View File

@@ -422,3 +422,4 @@ OperNotDefined=Betalingsmetode ikke defineret
ErrorThisContactXIsAlreadyDefinedAsThisType=%s er allerede defineret som kontaktperson for denne type.
ErrorThisGroupIsAlreadyDefinedAsThisType=Kontakterne med denne gruppe er allerede defineret som kontaktpersoner for denne type.
EmptyMessageNotAllowedError=Tom besked er ikke tilladt
ErrorIsNotInError=%s er ikke i fejl

View File

@@ -1,40 +1,38 @@
Module68000Name = Intracomm report
Module68000Desc = Intracomm report management (Support for French DEB/DES format)
IntracommReportSetup = Intracommreport module setup
IntracommReportAbout = About intracommreport
IntraCommReport=Intracomm-rapport
IntraCommReports=Intracomm rapporterer
Module68000Name = Intracomm-rapport
Module68000Desc = Intracomm rapportstyring (understøttelse af fransk DEB / DES-format)
IntracommReportSetup = Opsætning af internt rapporteringsmodul
IntracommReportAbout = Om 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
INTRACOMMREPORT_NUM_AGREMENT=Godkendelsesnummer (udstedt af vedhæftet fil CISD)
INTRACOMMREPORT_TYPE_ACTEUR=Skuespiller type
INTRACOMMREPORT_ROLE_ACTEUR=Rolle spillet af skuespiller
INTRACOMMREPORT_NIV_OBLIGATION_INTRODUCTION=Forpligtelses niveau ved introduktioner
INTRACOMMREPORT_NIV_OBLIGATION_EXPEDITION=Forpligtelsesniveau ved forsendelser
INTRACOMMREPORT_CATEG_FRAISDEPORT=Servicekategori af typen "Porto"
INTRACOMMREPORT_NUM_DECLARATION=Erklæringsnummer
# Menu
MenuIntracommReport=Intracomm report
MenuIntracommReportNew=New declaration
MenuIntracommReport=Intracomm-rapport
MenuIntracommReportNew=Ny erklæring
MenuIntracommReportList=Liste
# View
NewDeclaration=New declaration
Declaration=Declaration
AnalysisPeriod=Analysis period
TypeOfDeclaration=Type of declaration
DEB=Goods exchange declaration (DEB)
DES=Services exchange declaration (DES)
NewDeclaration=Ny erklæring
Declaration=Erklæring
AnalysisPeriod=Analyseperiode
TypeOfDeclaration=Type erklæring
DEB=Godsudvekslingserklæring (DEB)
DES=Erklæring om udveksling af tjenester (DES)
# Export page
IntracommReportTitle=Preparation of an XML file in ProDouane format
IntracommReportTitle=Forberedelse af en XML-fil i ProDouane-format
# List
IntracommReportList=List of generated declarations
IntracommReportNumber=Numero of declaration
IntracommReportPeriod=Period of nalysis
IntracommReportTypeDeclaration=Type of declaration
IntracommReportDownload=download XML file
IntracommReportList=Liste over genererede erklæringer
IntracommReportNumber=Numero af erklæring
IntracommReportPeriod=Analyseperiode
IntracommReportTypeDeclaration=Type erklæring
IntracommReportDownload=download XML-fil
# Invoice
IntracommReportTransportMode=Transport mode
IntracommReportTransportMode=Transporttilstand
DeleteIntraCommReport=Slet IntraComm-rapport

View File

@@ -32,6 +32,8 @@ NewMailing=Ny emailing
NewSMSing=Ny sms
EditMailing=Rediger emailing
ResetMailing=Gensend emailing
ConfirmResetMailingTargetMassaction=Massemål Send bekræftelse igen
ResetMailingTargetMassaction=Send mål igen
DeleteMailing=Slet emailing
PreviewMailing=Preview emailing
CreateMailing=Opret emailing
@@ -53,6 +55,7 @@ ErrorMailRecipientIsEmpty=E-mail-modtager er tom
WarningNoEMailsAdded=Ingen nye e-mail for at tilføje til modtagerens listen.
ConfirmValidMailing=Are you sure you want to validate this emailing?
ConfirmResetMailing=Advarsel ved at geninitialisere e-mailing <b>%s</b>tillader du genfremsendelse af denne e-mail i bulk-mailing. Er du sikker på, at du vil gøre dette?
ConfirmResetMailingTargetMassactionQuestion=Er du sikker på, at du vil nulstille status for de valgte modtagere (dette kan betyde, at e-mail vil blive sendt igen, hvis du bruger funktionen Send e-mail i e-mailen)?
ConfirmDeleteMailing=Er du sikker på, at du vil slette denne mailing?
NbOfUniqueEMails=Antal unikke e-mails
NbOfUniquePhones=Antal unikke telefoner
@@ -197,4 +200,5 @@ YouCanChooseAModelForYouMailContent= Du kan vælge en af skabelonmodellerne elle
TitleOfMailHolder=Titlen på e-mailen står her
ContentOfMailHolder=Indholdet af e-mail står her...
LastNews=Sidste nyt
ListProducts= Liste over produkter
PasswordReset=Nulstilling af adgangskode

View File

@@ -503,6 +503,7 @@ ContactsAddressesForCompany=Kontakter/adresser for denne tredjepart
AddressesForCompany=Adresse for denne tredjepart
ActionsOnCompany=Begivenheder for denne tredjepart
ActionsOnContact=Begivenheder for denne kontakt / adresse
ActionsOnUser=Begivenheder for denne bruger
ActionsOnContract=Begivenheder for denne kontrakt
ActionsOnMember=Begivenheder for denne medlem
ActionsOnProduct=Begivenheder omkring dette produkt
@@ -1187,6 +1188,8 @@ SetSupervisor=Indstil vejlederen
CreateExternalUser=Opret ekstern bruger
ConfirmAffectTag=Bulk Tag Tildeling
ConfirmAffectUser=Massebrugertildeling
ContactRole=Kontaktrolle
ContactRoles=Kontaktroller
ProjectRole=Rolle tildelt på hvert projekt/mulighed
TasksRole=Rolle tildelt hver opgave (hvis brugt)
ConfirmSetSupervisor=Bulk supervisor sæt
@@ -1238,6 +1241,8 @@ CommercialsAffected=Salgsrepræsentanter tildelt
CommercialAffected=Salgsrepræsentant tildelt
CommercialsDisaffected=Salgsrepræsentanter fjernet linket
CommercialDisaffected=Sælger er fjernet
Message=Besked
Progression=Fremskridt
YourMessage=Din besked
YourMessageHasBeenReceived=Din besked er modtaget. Vi svarer eller kontakter dig hurtigst muligt.
UrlToCheck=Url for at tjekke
@@ -1280,6 +1285,7 @@ AmountSalary=Lønbeløb
InvoiceSubtype=Faktura undertype
ConfirmMassReverse=Bulk Omvendt bekræftelse
ConfirmMassReverseQuestion=Er du sikker på, at du vil vende %s valgte post(er)?
ConfirmActionXxx=Bekræft handling %s
ElementType=Elementtype
ElementId=Element-id
Encrypted=Krypteret
@@ -1299,3 +1305,4 @@ AllEntities=Alle enheder
TranslationOfKey=Oversættelse af nøglen AnyTranslationKey
SignedStatus=Underskrevet status
NbRecordQualified=Antal kvalificerede poster
auto=auto

View File

@@ -23,23 +23,24 @@ TOKEN_REFRESH=Opdater token
TOKEN_EXPIRED=Token udløbet
TOKEN_EXPIRE_AT=Token udløber kl
TOKEN_DELETE=Slet gemt 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=Gå til <a class="notasortlink" href="%s" target="_blank" rel="noopener noreferrer external">denne side<span class="fas fa-external-link-alt paddingleft"></span></a> for at oprette eller få dit OAuth-id og din hemmelighed
OAUTH_STRIPE_TEST_NAME=OAuth Stripe Test
OAUTH_STRIPE_LIVE_NAME=OAuth Stripe Live
OAUTH_STRIPE_TEST_NAME=Stripe test
OAUTH_STRIPE_LIVE_NAME=Stripe Live
OAUTH_ID=OAuth-klient-id
OAUTH_SECRET=OAuth-hemmelighed
OAUTH_TENANT=OAuth lejer
OAuthProviderAdded=OAuth-udbyder tilføjet
AOAuthEntryForThisProviderAndLabelAlreadyHasAKey=Der findes allerede en OAuth-post for denne udbyder og etiket
URLOfOAuthServiceEndpoints=Basis-URL for OAuth-tjenesteslutpunkter
URLOfOAuthServiceEndpointsExample=https://mastodon.example.com
URLOfServiceForAuthorization=URL leveret af OAuth-tjenesten til godkendelse
Scopes=Tilladelser (omfang)
ScopeUndefined=Tilladelser (omfang) udefinerede (se forrige fane)
ScopesDesc=Eksempel: læs, skriv med Mastodom
TokenRawValue=Fuld token (objekt)
AccessToken=Adgangstoken
TokenExpired=Udløbet

View File

@@ -132,6 +132,7 @@ AlsoCloseAProjectTooltip=Hold den åben, hvis du stadig skal følge produktionso
ReOpenAProject=Åbn projekt
ConfirmReOpenAProject=Er du sikker på, at du vil genåbne dette projekt?
ProjectContact=Kontakter af projektet
ProjectContactTypeManager=Tildel mig som kontaktperson med typen
TaskContact=Opgavekontakter
ActionsOnProject=Begivenheder for projektet
YouAreNotContactOfProject=Du er ikke en kontakt af denne private projekt

View File

@@ -114,6 +114,8 @@ TicketsActivatePublicInterface=Aktivér den offentlige grænseflade
TicketsActivatePublicInterfaceHelp=Offentlig grænseflade tillader alle besøgende at lave sager.
TicketsAutoAssignTicket=Tildel automatisk brugeren, der oprettede sagen
TicketsAutoAssignTicketHelp=Når du opretter en opgave, kan brugeren automatisk tildeles sagen.
TicketAutoChangeStatusOnAnswer=Tildel automatisk en status, når du besvarer en billet
TicketAutoChangeStatusOnAnswerHelp=Når en bruger svarer på en billet, vil status automatisk blive anvendt på billetten
TicketNumberingModules=Sag nummererings modul
TicketsModelModule=Dokumentskabeloner til sager
TicketNotifyTiersAtCreation=Underret tredjepart ved oprettelsen
@@ -137,6 +139,10 @@ TicketUseCaptchaCode=Brug grafisk kode (CAPTCHA), når du opretter en billet
TicketUseCaptchaCodeHelp=Tilføjer CAPTCHA-bekræftelse, når du opretter en ny billet.
TicketsAllowClassificationModificationIfClosed=Tillad at ændre klassificering af lukkede billetter
TicketsAllowClassificationModificationIfClosedHelp=Tillad at ændre klassificering (type, billetgruppe, sværhedsgrad), selvom billetter er lukket.
TicketAutoCheckNotifyThirdParty=Markér som standard "Giv tredjepart besked", når du opretter en billet
TicketAutoCheckNotifyThirdPartyHelp=Når du opretter en billet, vil valgmuligheden "Underret tredjepart" automatisk blive markeret.
TicketAssignContactToMessage=Tildel en ekstern kontakt til en besked
TicketAssignContactToMessageHelp=Når en kendt kontaktperson svarer på en besked, vises hans navn på billetbeskedlisten.
# Index & list page
TicketsIndex=Sagsområde
TicketList=Liste over sager

View File

@@ -47,7 +47,6 @@ TotalTTC=Summe (inkl. MwSt.)
TotalTTCToYourCredit=Gesamtbetrag (inkl. MwSt.) zu Ihren Gunsten
TotalVAT=Steuer gesamt
VAT=MwSt.
Ref=Bezeichnung
RefPayment=Zahlungs Nr.
Qty=Menge
January=Jänner
@@ -76,6 +75,7 @@ SearchIntoInterventions=Eingriffe
AssignedTo=zugewisen an
DateOfBirth=Geburtstdatum
ClientTZ=Client-Zeitzone (Benutzer)
Message=Nachricht
InternalUser=interner Nutzer
ExternalUser=externer Nutzer
UserExpired=abgelaufen

View File

@@ -149,6 +149,7 @@ Orientation=Orientierung
SpaceX=Leerraum X
SpaceY=Leerraum Y
ContentForLines=Inhalt, der für jedes Produkt oder jede Dienstleistung angezeigt werden soll (von Variable __LINES__ des Inhalts)
NoticePeriod=Kündigungsfrist
EMailsSetup=E-Mail Einstellungen
EMailsDesc=Auf dieser Seite können Sie Parameter oder Optionen für den E-Mail-Versand einstellen.
EmailSenderProfiles=Absenderprofil
@@ -223,15 +224,13 @@ MassConvert=Massenkonvertierung starten
String1Line=Zeichenfolge (1 Zeile)
HtmlText=HTML
Float=Gleitkommazahl
Unique=Einmalig
Boolean=Boolean (Ein Kontrollkästchen)
ExtrafieldPrice =Preis
ExtrafieldMail =E-Mail
ExtrafieldSelect=Wähle Liste
ExtrafieldSelectList=Wähle von Tabelle
ExtrafieldPassword=Passwort
ExtrafieldRadio=Einfachauswahl (Radiobuttons)
ExtrafieldCheckBox=Kontrollkästchen
ExtrafieldCheckBoxFromList=Kontrollkästchen aus Tabelle
ComputedpersistentDesc=Berechnete Extra Felder werden in die Datenbank geschrieben. Allerdings werden sie nur neu berechnet, wenn das Objekt des Feldes verändert wird. Wenn das Feld also von Objekten oder globalen Werten abhängt, kann sein Wert daneben sein.
ExtrafieldParamHelpselect=Parameterlisten müssen das Format Schlüssel,Wert haben<br><br> zum Beispiel:<br>1,Wert1<br>2,Wert2<br>3,Wert3<br>...<br><br>Um die Liste in Abhängigkeit zu einer anderen zu haben:<br>1,Wert1|parent_list_code:parent_key<br>2,Wert2|parent_list_code:parent_key
ExtrafieldParamHelpcheckbox=Die Liste muss im Format: Schlüssel, Wert sein (wobei der Schlüssel nicht '0' sein kann) <br> <br> zum Beispiel: <br> 1, Wert1 <br> 2, Wert2 <br> 3, Wert3 <br> ...
@@ -464,7 +463,6 @@ UsersSetup=Benutzermoduleinstellungen
UserMailRequired=E-Mail für neue Benutzer als Pflichtfeld setzen
HRMSetup=HRM Modul Einstellungen
CompanySetup=Unternehmenseinstellungen
NotificationsDesc=E-Mail - Benachrichtigungen für Ereignisse können automatisch verschickt werden.<br>Die Empfänger kannst du so definieren:
BillsSetup=Rechnungsmoduleinstellungen
BillsNumberingModule=Rechnungs- und Gutschriftsnumerierungsmodul
FreeLegalTextOnInvoices=Freier Rechtstext für Rechnungen
@@ -490,7 +488,6 @@ TemplatePDFContracts=Vertragsvorlagen
WatermarkOnDraftContractCards=Wasserzeichen auf Vertrags-Entwurf (keines, wenn leer)
MembersSetup=Mitglieder-Modul Setup
AdherentMailRequired=E-Mail für neue Benutzer als Pflichtfeld setzen
MemberSendInformationByMailByDefault=Das Kontrollkästchen für den automatischen Mail-Bestätigungsversand an Mitglieder (bei Freigabe oder neuem Abonnement) ist standardmässig aktiviert
MEMBER_REMINDER_EMAIL=E-Mail - Benachrichtigung bei Ablauf von Abonnements.<br>Obacht: Dazu muss das Modul '%s' aktiv und richtig konfiguriert sein.
LDAPMembersTypesSynchro=Mitgliederarten
LDAPFunctionsNotAvailableOnPHP=LDAP-Funktionen in Ihrer PHP-Konfiguration nicht vrefügbar

View File

@@ -379,6 +379,8 @@ Measures=Masseinheiten
ClientTZ=Zeitzone Kunde (Benutzer)
Terminate=Abschliessen
Position=Posten
Message=Nachricht
Progression=Fortschritt
LinkANewFile=Verknüpfe eine neue Datei /Dokument
LinkedFiles=Verknüpfte Dateien und Dokumente
LinkComplete=Die Datei wurde erfolgreich verlinkt

View File

@@ -459,8 +459,8 @@ ExtrafieldSelectList = Dropdownliste aus DB-Tabelle (nur eine Option auswählbar
ExtrafieldSeparator=Trennzeichen (kein Feld)
ExtrafieldPassword=Passwort-Feld
ExtrafieldRadio=Radiobuttons (nur eine Option auswählbar)
ExtrafieldCheckBox=Kontrollkästchen / Dropdownliste (mehrere Optionen auswählbar)
ExtrafieldCheckBoxFromList=Kontrollkästchen/Dropdownliste aus DB-Tabelle (mehrere Optionen auswählbar)
ExtrafieldCheckBox=Dropdownliste (mehrere Optionen auswählbar)
ExtrafieldCheckBoxFromList=Dropdownliste aus DB-Tabelle (mehrere Optionen auswählbar)
ExtrafieldLink=Verknüpftes Objekt
ExtrafieldPointGeo=Geometrischer Punkt
ExtrafieldMultiPointGeo=Geometrischer Mehrfachpunkt
@@ -475,7 +475,7 @@ ExtrafieldParamHelpselect=Die Liste der Werte muss aus Zeilen mit dem Format Sch
ExtrafieldParamHelpcheckbox=Die Liste der Werte muss aus Zeilen mit dem Format Schlüssel, Wert bestehen (wobei Schlüssel nicht '0' sein darf) <br><br> zum Beispiel: <br> 1, value1 <br> 2, value2 <br> 3, value3 <br> ...
ExtrafieldParamHelpradio=Die Liste der Werte muss aus Zeilen mit dem Format Schlüssel, Wert bestehen (wobei Schlüssel nicht '0' sein darf) <br><br> zum Beispiel: <br> 1, value1 <br> 2, value2 <br> 3, value3 <br> ...
ExtrafieldParamHelpsellist=Liste von Werten aus einer Tabelle<br>Syntax: table_name:label_field:id_field::filtersql<br>Beispiel: c_typent:libelle:id::filtersql<br><br>- id_field ist notwendigerweise ein primärer int-Schlüssel<br>- filtersql ist eine Bedingung. Es muss die USF-Syntax verwendet werden. Beispiel: (aktiv:=:1) um nur aktive Werte zu zeigen<br>Sie können auch $ID$ im Filter verwenden, das die aktuelle ID des aktuellen Objekts ist<br>Wenn Sie nach Extrafeldern filtern möchten, verwenden Sie die Syntax extra.fieldcode=... (wobei fieldcode der Code des Extrafelds ist)<br><br>Wenn die Liste von einer anderen Liste mit komplementären Attributen abhängig ist:<br>c_typent:libelle:ID:options_<i>parent_list_code</i>|parent_column:filter <br><br>Um die Liste von einem anderen Liste abhängig zu machen:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelpchkbxlst=Die Liste der Werte stammt aus einer Tabelle <br> Syntax: table_name: label_field: id_field :: filter <br> Beispiel: c_typent: libelle: id :: filter <br><br> Filter kann ein einfacher Vergleich sein (z. B. aktiv = 1), um nur den aktiven Wert anzuzeigen <br> Sie können $ID$ auch in Filtern verwenden, hierbei handelt es sich um die aktuelle ID des aktuellen Objekts <br> Verwenden Sie $SEL$, um ein SELECT im Filter durchzuführen <br> Wenn Sie nach Extrafeldern filtern möchten, verwenden Sie die Syntax extra.fieldcode = ... (wobei fieldcode der Code des Extrafelds ist) <br><br> Damit die Liste von einer anderen ergänzenden Attributliste abhängt: <br> c_typent: libelle: id: options_ <i>parent_list_code</i> | parent_column: filter <br><br> Um die Liste von einer anderen Liste abhängig zu machen: <br> c_typent: libelle: id: <i>parent_list_code</i> | parent_column: filter
ExtrafieldParamHelpchkbxlst=Liste von Werten stammt aus einer Tabelle<br>Syntax: table_name:label_field:id_field::filtersql<br>Beispiel: c_typent:libelle:ID::filtersql<br><br>Filter kann ein einfacher Test sein (z. B. active=1 um nur aktive Werte zu zeigen)<br>Sie können auch $ID$ im Filter verwenden, das ist die id des aktuellen Objekts<br>Um ein SELECT im Filter durchzuführen, verwenden Sie $SEL$<br>wenn Sie nach Extrafeldern filtern möchten, verwenden Sie die Syntax extra.fieldcode=... (wobei fieldcode der Code des Extrafelds ist)<br><br>Damit die Liste von einer anderen ergänzenden Attributliste abhängt:<br>c_typent:libelle:ID:options_<i>parent_list_code</i>|parent_column:filter <br><br>Um die Liste von einer anderen Liste abhängig zu machen:<br>c_typent:libelle:id:<i>übergeordneter_Listencode</i>|parent_column:filter
ExtrafieldParamHelplink=Parameter müssen Objektname:Klassenpfad sein.<br> Syntax: ObjektName:Classpath
ExtrafieldParamHelpSeparator=Für ein einfaches Trennzeichen leer lassen <br> Setzen Sie diesen Wert für ein ausblendendes Trennzeichen auf 1 (standardmäßig für eine neue Sitzung geöffnet, der Status wird für jede Benutzersitzung beibehalten) <br> Setzen Sie diesen Wert für ein ausblendendes Trennzeichen auf 2 (standardmäßig für ausgeblendet) neue Sitzung, dann bleibt der Status für jede Benutzersitzung erhalten)
LibraryToBuildPDF=Bibliothek zum Erstellen von PDF-Dateien
@@ -1457,7 +1457,7 @@ HRMSetup=Einstellungen Modul Personal
CompanySetup=Einstellungen Modul Geschäftspartner
CompanyCodeChecker=Optionen für die automatische Vergabe von Kunden- und Lieferantennummern
AccountCodeManager=Optionen für die automatische Generierung von Buchungskontonummern für Kunden- und Lieferantenbuchungskonten (Debitoren- und Kreditorenkonten).
NotificationsDesc=Für einige Dolibarr-Ereignisse können automatisch E-Mail-Benachrichtigungen gesendet werden,<br> wobei Empfänger von Benachrichtigungen definiert werden können:
NotificationsDesc=E-Mail-Benachrichtigungen können bei bestimmten Ereignissen automatisch gesendet werden.<br>Empfänger von Benachrichtigungen können definiert werden:
NotificationsDescUser=* pro Benutzer (auf der Registerkarte "Benachrichtigen" eines Benutzers)
NotificationsDescContact=* pro Geschäftspartner-Kontakte (auf der Registerkarte "Benachrichtigen" eines Geschäftspartners)
NotificationsDescGlobal=* oder durch Festlegen globaler E-Mail-Adressen (auf der Seite Konfiguration des Moduls)
@@ -1993,10 +1993,10 @@ ExpenseReportsRulesSetup=Einrichtung vom Modul Spesenabrechnungen - Regeln
ExpenseReportNumberingModules=Modul zur Nummerierung von Spesenabrechnungen
NoModueToManageStockIncrease=Kein Modul zur automatische Bestandserhöhung ist aktiviert. Lager Bestandserhöhung kann nur durch manuelle Eingabe erfolgen.
YouMayFindNotificationsFeaturesIntoModuleNotification=Möglicherweise finden Sie Optionen für E-Mail-Benachrichtigungen, indem Sie das Modul "Benachrichtigung" aktivieren und konfigurieren.
TemplatesForNotifications=Vorlagen für Benachrichtigungen
TemplatesForNotifications=E-Mail-Vorlagen für Benachrichtigungen
ListOfNotificationsPerUser=Liste der automatischen Benachrichtigungen nach Benutzer*
ListOfNotificationsPerUserOrContact=Liste möglicher automatischer Benachrichtigungen (bei Geschäftsereignissen) verfügbar pro Benutzer * oder pro Kontakt **
ListOfFixedNotifications=Liste der automatischen festen Benachrichtigungen
ListOfFixedNotifications=Standardliste von E-Mail-Adressen für automatische Benachrichtigungen
GoOntoUserCardToAddMore=Gehen Sie auf die Registerkarte "Hinweise" eines Benutzers, um Benachrichtigungen für Benutzer zu erstellen/entfernen
GoOntoContactCardToAddMore=Gehen Sie zur Registerkarte "Benachrichtigungen" beim Geschäftspartner, um Benachrichtigungen für Kontakte / Adressen hinzuzufügen oder zu entfernen
Threshold=Schwellenwert
@@ -2126,7 +2126,7 @@ MAIN_DOCUMENTS_WITH_PICTURE_WIDTH=Breite der Spalte, wenn den Positionen ein Bil
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_UNIT_PRICE=Spalte „Stückpreis“ in Lieferantenanfragen ausblenden
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_TOTAL_COLUMN=die Spalte „Gesamtpreis“ in Lieferantenanfragen ausblenden
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_UNIT_PRICE=Spalte „Stückpreis“ bei Bestellungen ausblenden
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=Spalte „Gesamtpreis“ bei Bestellungen ausblenden
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=Spalte „Gesamtpreis“ bei Lieferantenbestellungen ausblenden
MAIN_PDF_NO_SENDER_FRAME=Rahmen des Absenderadressbereichs ausblenden
MAIN_PDF_NO_RECIPENT_FRAME=Rahmen des Empfängeradressbereichs ausblenden
MAIN_PDF_HIDE_CUSTOMER_CODE=Kunden-Nr. ausblenden
@@ -2279,6 +2279,7 @@ NotAPublicIp=Keine öffentliche IP
MakeAnonymousPing=Einen anonymen Ping '+1' an den Dolibarr-Foundation-Server (einmalig nach der Installation) senden, damit die Foundation die Anzahl der Dolibarr-Installationen zählen kann.
FeatureNotAvailableWithReceptionModule=Funktion nicht verfügbar, wenn das Modul Wareneingang aktiviert ist
EmailTemplate=E-Mail-Vorlage
EmailTemplateHelp=E-Mail-Vorlagen können im Menüpunkt %s - %s erstellt werden.
EMailsWillHaveMessageID=E-Mails haben einen Header „Message-ID“, der dieser Syntax entspricht
PDF_SHOW_PROJECT=Projekt im Dokument anzeigen
ShowProjectLabel=Projektbezeichnung
@@ -2539,5 +2540,16 @@ MainAuthenticationOidcLoginClaimName=Login Claim
MainAuthenticationOidcLoginClaimDesc=OpenID Connect-Claim, der mit dem Dolibarr-Login Benutzer übereinstimmt. Wenn nicht festgelegt oder leer, wird standardmäßig die E-Mail-Adresse verwendet.
BlackListWords=Blacklist von Wörtern
AddBlackList=Zu Blacklist hinzufügen
FediverseSetup=Konfigurationsbereich zu Fediverse
ConfigImportSocialNetwork=Konfiguration von mit Fediverse-kompatiblen sozialen Netzwerken
Fediverse=Fediverse
NewSocialNetwork=Neues soziales Fediverse-Netzwerk
SocialNetworkUrl=Fediverse API-URL
SocialNetworksNote=Jede Social-Network-Definition stellt ein Widget bereit, das Sie aktivieren müssen, damit es im Dashboard verfügbar ist
ConfirmDeleteSocialNetwork= Möchten Sie diesen Datensatz wirklich löschen?
AnOwnerMustBeSetIfEmailTemplateIsPrivate=Wenn die E-Mail-Vorlage als privat festgelegt ist, muss ein Eigentümer festgelegt werden
ContactsDefaultRoles=Für Geschäftspartner vom Typ „Individuum“ kann gleichzeitig ein Kontakt angelegt werden. Definieren Sie hier die Rollen, die diesem Kontakt standardmäßig zugewiesen werden.
MenuDict=Dictionary
AddMoreParams=Weitere Verbindungsparameter hinzufügen (Cookies, Tokens, ...)<br> Beispiel: token : value token
ParamName=Name des Parameters
ParamValue=Wert des Parameters

View File

@@ -116,6 +116,8 @@ BoxTitleLastCustomerShipments=Neueste %s geänderte Kundenlieferungen
BoxTitleLastLeaveRequests=Zuletzt bearbeitete Urlaubsanträge (maximal %s)
NoRecordedShipments=Keine erfasste Kundensendung
BoxCustomersOutstandingBillReached=Kunden mit erreichtem Aussenstände-Limit
BoxTitleLastFediverseInfos=Letzte %s Beiträge von %s
BoxLastFediverseInfos=Neueste Fediverse-Updates: Neuigkeiten und Trends
# Pages
UsersHome=Startseite Benutzer und Gruppen
MembersHome=Startseite Mitgliedschaft

View File

@@ -14,6 +14,7 @@ ConfirmDeleteAction=Dieses Ereignis wirklich löschen ?
CardAction=Ereignis Übersicht
ActionOnCompany=Verknüpftes Unternehmen
ActionOnContact=Verknüpfter Kontakt
ActionOnUser=Verbundener Benutzer
TaskRDVWith=Besprechung mit %s
ShowTask=Aufgabe anzeigen
ShowAction=Ereignis anzeigen

View File

@@ -422,3 +422,4 @@ OperNotDefined=Zahlungsart nicht definiert
ErrorThisContactXIsAlreadyDefinedAsThisType=%s ist bereits als Kontakt für diesen Typ definiert.
ErrorThisGroupIsAlreadyDefinedAsThisType=Die Kontakte dieser Gruppe sind bereits als Kontakt für diesen Typ definiert.
EmptyMessageNotAllowedError=Nachricht darf nicht leer sein
ErrorIsNotInError=%s ist nicht fehlerhaft

View File

@@ -1,3 +1,6 @@
IntraCommReport=Intracomm-Report
IntraCommReports=Intracomm-Berichte
Module68000Name = Intracomm-Report
Module68000Desc = Berichtsverwaltung innergemeinschaftlicher Handel (französisches DEB/DES-Format)
IntracommReportSetup = Einstellungen Modul Intracomm-Report
@@ -10,14 +13,11 @@ INTRACOMMREPORT_ROLE_ACTEUR=Funktion des Beteiligten
INTRACOMMREPORT_NIV_OBLIGATION_INTRODUCTION=Höhe des Imports
INTRACOMMREPORT_NIV_OBLIGATION_EXPEDITION=Höhe des Versands
INTRACOMMREPORT_CATEG_FRAISDEPORT=Servicekategorie Porti
INTRACOMMREPORT_NUM_DECLARATION=Erklärungsnummer
# Menu
MenuIntracommReport=Bericht innergemeinschaftlicher Handel
MenuIntracommReportNew=Neue Erklärung
MenuIntracommReportList=Liste
# View
NewDeclaration=Neue Erklärung
Declaration=Erklärung
@@ -25,16 +25,14 @@ AnalysisPeriod=Analysezeitraum
TypeOfDeclaration=Art der Erklärung
DEB=Warenaustauscherklärung
DES=Leistungsaustauscherklärung
# Export page
IntracommReportTitle=XML-Datei der Zollerklärung vorbereiten (ProDouane-Format)
# List
IntracommReportList=Liste der generierten Erkärungen
IntracommReportNumber=Numero der Erklärung
IntracommReportPeriod=Analysezeitraum
IntracommReportTypeDeclaration=Art der Erklärung
IntracommReportDownload=XML-Datei herunterladen
# Invoice
IntracommReportTransportMode=Versandweg
DeleteIntraCommReport=IntraComm-Bericht löschen

View File

@@ -32,6 +32,8 @@ NewMailing=Neue E-Mail-Kampagne
NewSMSing=Neue SMS-Massensendung
EditMailing=E-Mail-Kampagne bearbeiten
ResetMailing=E-Mail erneut senden
ConfirmResetMailingTargetMassaction=Bestätigung, das Massenmailing erneut zu senden
ResetMailingTargetMassaction=Massenmailing erneut senden
DeleteMailing=E-Mail-Kampagne löschen
PreviewMailing=E-Mail-Kampagnen-Vorschau
CreateMailing=E-Mail-Kampagne erstellen
@@ -53,6 +55,7 @@ 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?
ConfirmResetMailing=Warnung: Durch die Neuinitialisierung des E-Mailings <b>%s</b> erlauben Sie das erneute Versenden dieser E-Mail in einem Massenversand. Sind Sie sicher, dass Sie das tun wollen?
ConfirmResetMailingTargetMassactionQuestion=Sind Sie sicher, dass Sie den Status der ausgewählten Empfänger zurücksetzen wollen (dies kann bedeuten, dass eine E-Mail erneut gesendet wird, wenn Sie die Funktion „Senden“ des Mailings verwenden)?
ConfirmDeleteMailing=Möchten Sie diese E-Mail-Kampagne wirklich löschen?
NbOfUniqueEMails=Anzahl unterschiedlicher E-Mail-Adressen
NbOfUniquePhones=Anzahl unterschiedlicher Telefonnummern
@@ -197,4 +200,5 @@ YouCanChooseAModelForYouMailContent= Sie können eine der Vorlagen auswählen od
TitleOfMailHolder=Hier steht der Titel der e-Mail
ContentOfMailHolder=Der Inhalt von E-Mail kommt hierhin...
LastNews=Neueste Nachrichten
ListProducts= Liste von Produkte
PasswordReset=Passwort zurücksetzen

View File

@@ -503,6 +503,7 @@ 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
ActionsOnUser=Ereignisse für diesen Benutzer
ActionsOnContract=Ereignisse zu diesem Kontakt
ActionsOnMember=Ereignisse zu diesem Mitglied
ActionsOnProduct=Ereignisse zu diesem Produkt
@@ -1187,6 +1188,8 @@ SetSupervisor=Vorgesetzten festlegen
CreateExternalUser=Externen Benutzer anlegen
ConfirmAffectTag=Massenzuordnung von Schlagwörtern/Kategorien
ConfirmAffectUser=Massenzuordnung von Benutzern
ContactRole=Rolle des Kontakts
ContactRoles=Rollen der Kontakte
ProjectRole=Für jedes Projekt / jeden Lead zugewiesene Rolle
TasksRole=Für jede Aufgabe zugewiesene Rolle (falls verwendet)
ConfirmSetSupervisor=Vorgesetzten für mehrere festlegen
@@ -1238,6 +1241,8 @@ CommercialsAffected=Zugeordnete Vertriebsmitabeiter
CommercialAffected=Zugeordneter Vertriebsmitarbeiter
CommercialsDisaffected=Zuweisung der Vertriebsmitarbeiter aufgehoben
CommercialDisaffected=Zuweisung des Vertriebsmitarbeiters aufgehoben
Message=Inhalt
Progression=Entwicklung
YourMessage=Ihre Nachricht
YourMessageHasBeenReceived=Ihre Nachricht wurde erfasst. Wir werden Ihnen so schnell wie möglich antworten.
UrlToCheck=Zu überprüfende URL
@@ -1280,6 +1285,7 @@ AmountSalary=Gehalt Betrag
InvoiceSubtype=Rechnung Untertyp
ConfirmMassReverse=Massenaktion Umkehr der Bestätigung
ConfirmMassReverseQuestion=Sind Sie sicher, dass Sie die ausgewählten %s Datensätze umkehren wollen?
ConfirmActionXxx=Bestätigen der Aktion %s
ElementType=Elementtyp
ElementId=Element ID
Encrypted=Verschlüsselt

View File

@@ -23,23 +23,24 @@ TOKEN_REFRESH=Token aktualisieren
TOKEN_EXPIRED=Token abgelaufen
TOKEN_EXPIRE_AT=Token läuft ab am
TOKEN_DELETE=Lösche gespeichertes Token
OAUTH_GOOGLE_NAME=OAuth Google-Dienst
OAUTH_GOOGLE_ID=OAuth Google-ID
OAUTH_GOOGLE_SECRET=OAuth Google Secret
OAUTH_GITHUB_NAME=OAuth GitHub-Dienst
OAUTH_GITHUB_ID=OAuth GitHub-ID
OAUTH_GITHUB_SECRET=OAuth GitHub Secret
OAUTH_URL_FOR_CREDENTIAL=Gehen Sie zu <a class="notasortlink" href="%s" target="_blank" rel="noopener noreferrer external">dieser Seite<span class="fas fa-external-link-alt paddingleft"></span></a>, um Ihre OAuth-ID und Ihr Geheimnis zu erstellen oder abzurufen
OAUTH_STRIPE_TEST_NAME=OAuth Stripe Test
OAUTH_STRIPE_LIVE_NAME=OAuth Stripe Live
OAUTH_STRIPE_TEST_NAME=Stripe Test
OAUTH_STRIPE_LIVE_NAME=Stripe Live
OAUTH_ID=OAuth-Client-ID
OAUTH_SECRET=OAuth-Geheimnis
OAUTH_TENANT=OAuth-Mandant
OAuthProviderAdded=OAuth-Anbieter hinzugefügt
AOAuthEntryForThisProviderAndLabelAlreadyHasAKey=Ein OAuth-Eintrag für diesen Anbieter und dieses Label ist bereits vorhanden
URLOfOAuthServiceEndpoints=Basis-URL für OAuth-Service-Endpunkte
URLOfOAuthServiceEndpointsExample=https://mastodon.example.com
URLOfServiceForAuthorization=URL, die vom OAuth-Dienst zur Authentifizierung bereitgestellt wird
Scopes=Berechtigungen (Scopes)
ScopeUndefined=Berechtigungen (Scopes) undefiniert (siehe vorheriges Tab)
ScopesDesc=Beispiel: einsehen,schreiben mit Mastodom
TokenRawValue=Vollständiges Token (Objekt)
AccessToken=Zugangs-Token
TokenExpired=Abgelaufen

View File

@@ -132,6 +132,7 @@ AlsoCloseAProjectTooltip=Offen lassen, wenn Sie noch zugehörige Produktionsaufg
ReOpenAProject=Projekt öffnen
ConfirmReOpenAProject=Möchten Sie dieses Projekt wirklich wiedereröffnen?
ProjectContact=Projektkontakte
ProjectContactTypeManager=Mich als Kontakt zuweisen vom Typ
TaskContact=Kontakte zur Aufgabe
ActionsOnProject=Projektaktionen
YouAreNotContactOfProject=Sie sind diesem privaten Projekt nicht als Kontakt zugeordnet.

View File

@@ -114,6 +114,8 @@ TicketsActivatePublicInterface=Öffentliches Interface aktivieren
TicketsActivatePublicInterfaceHelp=Mit dem öffentlichen Interface können alle Besucher Tickets eröffnen.
TicketsAutoAssignTicket=Den Ersteller automatisch dem Ticket zuweisen
TicketsAutoAssignTicketHelp=Wenn ein Ticket erstellt wird, kann der Ersteller automatisch dem Ticket zugewiesen werden.
TicketAutoChangeStatusOnAnswer=Beim Beantworten einer Ticket-Anfrage automatisch einen Status zuweisen
TicketAutoChangeStatusOnAnswerHelp=Wenn ein Benutzer auf ein Ticket antwortet, wird der Status dem Ticket automatisch zugewiesen
TicketNumberingModules=Ticketnummerierungsmodul
TicketsModelModule=Dokumentvorlagen für Tickets
TicketNotifyTiersAtCreation=Geschäftspartner über Ticketerstellung informieren
@@ -137,6 +139,10 @@ TicketUseCaptchaCode=Verwenden Sie beim Erstellen eines Tickets einen grafischen
TicketUseCaptchaCodeHelp=Fügt eine CAPTCHA-Überprüfung beim Erstellen eines neuen Tickets hinzu.
TicketsAllowClassificationModificationIfClosed=Änderung der Klassifizierung geschlossener Tickets erlauben
TicketsAllowClassificationModificationIfClosedHelp=Bearbeitung der Klassifizierung (Typ, Ticket Gruppe, Schweregrad) auch bei geschlossenen Tickets zulassen.
TicketAutoCheckNotifyThirdParty=Bei der Erstellung eines Tickets die Checkbox „Geschäftspartner über Ticket-Erstellung informieren“ automatisch aktivieren
TicketAutoCheckNotifyThirdPartyHelp=Beim Erstellen eines Tickets wird die Option „Geschäftspartner über Ticket-Erstellung informieren“ automatisch aktiviert.
TicketAssignContactToMessage=Einer Nachricht einen externen Kontakt zuweisen
TicketAssignContactToMessageHelp=Wenn ein bekannter Kontakt auf eine Nachricht antwortet, wird sein Name in der Liste der Ticket-Nachrichten angezeigt.
# Index & list page
TicketsIndex=Ticketübersicht
TicketList=Liste der Tickets

View File

@@ -372,7 +372,7 @@ GenericMaskCodes4a=<u>Παράδειγμα για το 99ο %s του τρίτο
GenericMaskCodes4b=<u>Παράδειγμα του τρίτου μέρους που δημιουργήθηκε στις 31-01-2023:</u><br>
GenericMaskCodes4c=<u>Παράδειγμα του προϊόντος που δημιουργήθηκε στις 31-01-2023:</u><br>
GenericMaskCodes5=<b>ABC{yy}{mm}-{000000}</b> θα δώσει <b>ABC2301-000099</b><br><b>{0000+100@1}-ZZZ/{dd}/XXX</b> θα δώσει <b>0199-ZZZ/31/XXX</b>
GenericMaskCodes5b=<b>IN{yy}{mm}-{0000}-{t}</b> will give <b>IN2301-0099-A</b> if the type of company is 'Responsable Inscripto' with code for type that is 'A_RI'
GenericMaskCodes5b=<b>IN{yy}{mm}-{0000}-{t}</b> θα δώσει <b>IN2301-0099-A</b> αν ο τύπος της εταιρείας ειναι 'Responsable Inscripto' με κωδικό για τον τύπο 'A_RI'
GenericNumRefModelDesc=Επιστρέφει έναν παραμετροποιήσημο αριθμό σύμφωνα με μία ορισμένη μάσκα.
DateStartThatModel=Απενεργοποιήστε τη χρήση αυτού του κανόνα αρίθμησης για όλα τα τρίτα μέρη που δημιουργήθηκαν στο παρελθόν
DateStartThatModelHelp=Μπορείτε να απενεργοποιήσετε τον κανόνα αρίθμησης elephant για τα τρίτα μέρη που δημιουργήθηκαν πριν από μια ημερομηνία (για παράδειγμα, επειδή εισήχθησαν από μια μετεγκατάσταση, από άλλο λογισμικό χρησιμοποιώντας διαφορετικό κανόνα). Αφήστε αυτό το πεδίο κενό για να εφαρμοστεί ο κανόνας σε όλα τα τρίτα μέρη.
@@ -459,8 +459,8 @@ ExtrafieldSelectList = Επιλογή από πίνακα
ExtrafieldSeparator=Διαχωριστής (όχι πεδίο)
ExtrafieldPassword=Συνθηματικό
ExtrafieldRadio=Κουμπιά επιλογής (μόνο μία επιλογή)
ExtrafieldCheckBox=Πλαίσια ελέγχου
ExtrafieldCheckBoxFromList=Πλαίσια ελέγχου από τον πίνακα
ExtrafieldCheckBox=Λίστα επιλογής (n επιλογές)
ExtrafieldCheckBoxFromList=Επιλογή από πίνακα (n επιλογές)
ExtrafieldLink=Σύνδεσμος με ένα αντικείμενο
ExtrafieldPointGeo=Γεωμετρικό Σημείο
ExtrafieldMultiPointGeo=Γεωμετρικό πολλαπλό σημείο
@@ -475,7 +475,7 @@ ExtrafieldParamHelpselect=Η λίστα των τιμών πρέπει να εί
ExtrafieldParamHelpcheckbox=Η λίστα των τιμών πρέπει να είναι γραμμές με βασική μορφή, key,value (όπου το key δεν μπορεί να είναι «0»)<br><br> για παράδειγμα:<br>1,value1<br>2,value2<br>3, value3<br> ...
ExtrafieldParamHelpradio=Η λίστα των τιμών πρέπει να είναι γραμμές με βασικό σχήμα, key,value (όπου το key δεν μπορεί να είναι «0»)<br><br>για παράδειγμα:<br>1,value1<br>2,value2<br>3, value3<br> ...
ExtrafieldParamHelpsellist=Η λίστα τιμών προέρχεται από έναν πίνακα <br> Σύνταξη: table_name:label_field:id_field::filtersql <br> Παράδειγμα: c_typent:libelle:id::filtersql<br><br>- id_field είναι απαραίτητα ενα πρωτεύον κλειδί int<br>- filtersql είναι προϋπόθεση. Πρέπει να χρησιμοποιεί τη σύνταξη USF. Παράδειγμα: (active:=:1) για εμφάνιση μόνο ενεργής τιμής<br>Μπορείτε επίσης να χρησιμοποιήσετε το $ID$ στο φίλτρο που είναι το τρέχον αναγνωριστικό του τρέχοντος αντικειμένου<br>εάν θέλετε να φιλτράρετε σε extrafields, χρησιμοποιήστε τη σύνταξη extra.fieldcode=... (όπου ο κωδικός πεδίου είναι ο κωδικός του extrafield)<br><br>Για να μπορεί η λίστα να ειναι εξαρτώμενη από μια άλλη συμπληρωματική λίστα:<br>c_typent: Libelle: id: options_<i> parent_list_code</i>|parent_column:filter<br> <br>Για να μπορεί η λίστα να ειναι εξαρτώμενη από μια άλλη:<br>c_typent: libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelpchkbxlst=Η λίστα τιμών προέρχεται από έναν πίνακα <br> Σύνταξη: table_name:label_field:id_field::filtersql <br> Παράδειγμα: c_typent:libelle:id::filtersql<br><br>το φίλτρο μπορεί να είναι μια απλή δοκιμή (π.χ. active=1) για να εμφανιστεί μόνο η ενεργή τιμή<br>Μπορείτε επίσης να χρησιμοποιήσετε το $ID$ στο φίλτρο που είναι το τρέχον αναγνωριστικό του τρέχοντος αντικειμένου<br>Για να κάνετε SELECT στο φίλτρο χρησιμοποιήστε το $SEL$<br>εάν θέλετε να φιλτράρετε σε extrafields, χρησιμοποιήστε τη σύνταξη extra.fieldcode=... (όπου ο κωδικός πεδίου είναι ο κωδικός του extrafield)<br><br>Για να μπορεί η λίστα να ειναι εξαρτώμενη από μια άλλη συμπληρωματική λίστα:<br>c_typent: Libelle: id: options_<i> parent_list_code</i>|parent_column:filter<br> <br>Για να μπορεί η λίστα να ειναι εξαρτώμενη από μια άλλη:<br>c_typent: libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelpchkbxlst=Η λίστα τιμών προέρχεται από έναν πίνακα <br> Σύνταξη: table_name:label_field:id_field::filtersql <br> Παράδειγμα: c_typent:libelle:id::filtersql<br><br>το φίλτρο μπορεί να είναι μια απλή δοκιμή (π.χ. active=1) για να εμφανιστεί μόνο η ενεργή τιμή<br>Μπορείτε επίσης να χρησιμοποιήσετε το $ID$ στο φίλτρο που είναι το τρέχον αναγνωριστικό του τρέχοντος αντικειμένου<br>Για να κάνετε SELECT στο φίλτρο χρησιμοποιήστε το $SEL$<br>εάν θέλετε να φιλτράρετε σε extrafields, χρησιμοποιήστε τη σύνταξη extra.fieldcode=... (όπου ο κωδικός πεδίου είναι ο κωδικός του extrafield)<br><br>Για να μπορεί η λίστα να ειναι εξαρτώμενη από μια άλλη συμπληρωματική λίστα:<br>c_typent: Libelle:id:options_<i> parent_list_code</i>|parent_column:filter<br> <br>Για να μπορεί η λίστα να είναι εξαρτώμενη από μια άλλη:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelplink=Parameters must be ObjectName:ClasspathSyntax:<br>ObjectName:Classpath
ExtrafieldParamHelpSeparator=Διατήρηση κενού για ένα απλό διαχωριστικό <br> Ορίστε το σε 1 για ένα διαχωριστικό που συμπτύσσεται (ανοιχτό από προεπιλογή για νέα περίοδο λειτουργίας, μετά διατηρείται η κατάσταση για κάθε συνεδρία χρήστη) <br> Ορίστε το σε 2 για ένα διαχωριστικό που συμπτύσσεται (συμπτυγμένο από προεπιλογή και στη συνέχεια για νέα περίοδο λειτουργίας, η κατάσταση διατηρείται για κάθε συνεδρία χρήστη)
LibraryToBuildPDF=Βιβλιοθήκη ενεργοποίησης δημιουργίας PDF
@@ -1457,7 +1457,7 @@ HRMSetup=Ρύθμιση ενότητας HRM
CompanySetup=Ρύθμιση ενότητας Εταιριών
CompanyCodeChecker=Επιλογές για την αυτόματη δημιουργία κωδικών πελατών / προμηθευτών
AccountCodeManager=Επιλογές για αυτόματη δημιουργία λογιστικών κωδικών πελάτη/προμηθευτή
NotificationsDesc=Οι ειδοποιήσεις μέσω email μπορούν να αποστέλλονται αυτόματα για ορισμένα συμβάντα του Dolibarr. <br> Οι παραλήπτες των ειδοποιήσεων μπορούν να οριστούν:
NotificationsDesc=Οι ειδοποιήσεις μέσω email μπορούν να αποστέλλονται αυτόματα σε ορισμένα συμβάντα.<br>Μπορούν να οριστούν οι παραλήπτες των ειδοποιήσεων:
NotificationsDescUser=* ανά χρήστη (στην καρτέλα "Ειδοποιήσεις" ενός χρήστη)
NotificationsDescContact=* ανά επαφές τρίτου μέρους (στην καρτέλα "Ειδοποιήσεις" τρίτου μέρους)
NotificationsDescGlobal=* ή ορίζοντας καθολικές διευθύνσεις email (στη σελίδα ρύθμισης της ενότητας).
@@ -1993,10 +1993,10 @@ ExpenseReportsRulesSetup=Ρύθμιση της ενότητας Αναφορές
ExpenseReportNumberingModules=Ενότητα αρίθμησης εκθέσεων δαπανών
NoModueToManageStockIncrease=Δεν έχει ενεργοποιηθεί καμία ενότητα ικανή να διαχειριστεί την αυτόματη αύξηση των αποθεμάτων. Η αύξηση των αποθεμάτων θα γίνεται μόνο με χειροκίνητη εισαγωγή.
YouMayFindNotificationsFeaturesIntoModuleNotification=Μπορείτε να βρείτε επιλογές για ειδοποιήσεις μέσω email ενεργοποιώντας και διαμορφώνοντας την ενότητα "Ειδοποίηση".
TemplatesForNotifications=Πρότυπα για ειδοποιήσεις
TemplatesForNotifications=Πρότυπα email για ειδοποιήσεις
ListOfNotificationsPerUser=Λίστα αυτόματων ειδοποιήσεων ανά χρήστη*
ListOfNotificationsPerUserOrContact=Λίστα πιθανών αυτόματων ειδοποιήσεων (σε επιχειρηματικό συμβάν) διαθέσιμων ανά χρήστη * ή ανά επαφή **
ListOfFixedNotifications=Λίστα αυτόματων σταθερών ειδοποιήσεων
ListOfFixedNotifications=Global recipients emails for automatic email notifications
GoOntoUserCardToAddMore=Μεταβείτε στην καρτέλα "Ειδοποιήσεις" ενός χρήστη για να προσθέσετε ή να αφαιρέσετε ειδοποιήσεις για τους χρήστες
GoOntoContactCardToAddMore=Μεταβείτε στην καρτέλα "Ειδοποιήσεις" τρίτου μέρους για να προσθέσετε ή να καταργήσετε ειδοποιήσεις για επαφές / διευθύνσεις
Threshold=Κατώφλι
@@ -2279,6 +2279,7 @@ NotAPublicIp=Δεν είναι δημόσια IP
MakeAnonymousPing=Πραγματοποιήστε ένα ανώνυμο Ping '+1' στον διακομιστή του Dolibarr (εκτελείται 1 φορά μόνο μετά την εγκατάσταση) για να επιτρέψετε στον οργανισμό να μετρήσει τον αριθμό των εγκαταστάσεων Dolibarr.
FeatureNotAvailableWithReceptionModule=Η δυνατότητα δεν είναι διαθέσιμη όταν η ενότητα Παραλαβή είναι ενεργοποιημένη
EmailTemplate=Πρότυπο email
EmailTemplateHelp=Μπορείτε να δημιουργήσετε πρότυπα email από το μενού %s - %s
EMailsWillHaveMessageID=Τα email θα έχουν μια κεφαλίδα "Message-ID" που ταιριάζει με αυτήν τη σύνταξη
PDF_SHOW_PROJECT=Εμφάνιση έργου στο έγγραφο
ShowProjectLabel=Ετικέτα έργου
@@ -2539,5 +2540,16 @@ MainAuthenticationOidcLoginClaimName=Login claim
MainAuthenticationOidcLoginClaimDesc=OpenID Connect claim αντιστοιχεί στα στοιχεία σύνδεσης χρήστη Dolibarr. Εάν δεν έχει οριστεί ή είναι κενό, η προεπιλογή είναι email
BlackListWords=Μαύρη λίστα λέξεων
AddBlackList=Προσθήκη στη μαύρη λίστα
FediverseSetup=Διαμόρφωση τμήματος fediverse
ConfigImportSocialNetwork=Διαμόρφωση κοινωνικών δικτύων συμβατών με το Fediverse
Fediverse=Fediverse
NewSocialNetwork=Νέο κοινωνικό δίκτυο Fediverse
SocialNetworkUrl=Fediverse API URL
SocialNetworksNote=Κάθε ορισμός κοινωνικού δικτύου παρέχει ένα γραφικό στοιχείο που πρέπει να ενεργοποιήσετε για να το έχετε διαθέσιμο στον πίνακα ελέγχου
ConfirmDeleteSocialNetwork= Είστε σίγουροι ότι θέλετε να διαγράψετε αυτήν την εγγραφή;
AnOwnerMustBeSetIfEmailTemplateIsPrivate=Πρέπει να οριστεί ένας κάτοχος εάν το πρότυπο email έχει οριστεί ως ιδιωτικό
ContactsDefaultRoles=Για τρίτα μέρη του τύπου "ιδιώτης", μπορεί να δημιουργηθεί μια επαφή ταυτόχρονα. Ορίστε εδώ τους ρόλους που θα ανατεθούν συστηματικά σε αυτήν την επαφή.
MenuDict=Λεξικό
AddMoreParams=Προσθήκη περισσοτέρων παραμέτρων σύνδεσης (cookies, tokens, ...)<br> Παράδειγμα: token : value token
ParamName=Όνομα παραμέτρου
ParamValue=Τιμή παραμέτρου

View File

@@ -116,6 +116,8 @@ BoxTitleLastCustomerShipments=Τελευταίες %s τροποποιημένε
BoxTitleLastLeaveRequests=Τελευταία %s τροποποιημένα αιτήματα άδειας
NoRecordedShipments=Καμία καταγεγραμμένη αποστολή πελάτη
BoxCustomersOutstandingBillReached=Πελάτες που έχουν φτάσει το όριο μέγιστου οφειλόμενου
BoxTitleLastFediverseInfos=Τελευταίες %s αναρτήσεις από %s
BoxLastFediverseInfos=Τελευταίες ενημερώσεις Fediverse: Ειδήσεις και Τάσεις
# Pages
UsersHome=Χρήστες και ομάδες
MembersHome=Μέλη

View File

@@ -14,6 +14,7 @@ ConfirmDeleteAction=Είστε σίγουροι ότι θέλετε να δια
CardAction=Καρτέλα Ενεργειών
ActionOnCompany=Σχετιζόμενη επιχείριση
ActionOnContact=Σχετιζόμενη επαφή
ActionOnUser=Σχετικός χρήστης
TaskRDVWith=Συνάντηση με %s
ShowTask=Εμφάνιση εργασίας
ShowAction=Εμφάνιση ενέργειας

View File

@@ -422,3 +422,4 @@ OperNotDefined=Η μέθοδος πληρωμής δεν έχει οριστεί
ErrorThisContactXIsAlreadyDefinedAsThisType=Η επαφή %s έχει ήδη οριστεί ως επαφή για αυτόν τον τύπο.
ErrorThisGroupIsAlreadyDefinedAsThisType=Οι επαφές με αυτήν την ομάδα έχουν ήδη οριστεί ως επαφή για αυτόν τον τύπο.
EmptyMessageNotAllowedError=Δεν επιτρέπεται το κενό μήνυμα
ErrorIsNotInError=Το %s δεν είναι λάθος

View File

@@ -1,3 +1,6 @@
IntraCommReport=Intracomm report
IntraCommReports=Intracomm reports
Module68000Name = Intracomm report
Module68000Desc = Διαχείριση αναφορών Intracomm (Υποστήριξη για γαλλική μορφή DEB/DES)
IntracommReportSetup = Ρύθμιση ενότητας Intracomm report
@@ -10,14 +13,11 @@ 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=Νέα δήλωση
MenuIntracommReportList=Λίστα
# View
NewDeclaration=Νέα δήλωση
Declaration=Δήλωση
@@ -25,16 +25,14 @@ AnalysisPeriod=Περίοδος ανάλυσης
TypeOfDeclaration=Τύπος δήλωσης
DEB=Δήλωση ανταλλαγής αγαθών (DEB)
DES=Δήλωση ανταλλαγής υπηρεσιών (DES)
# Export page
IntracommReportTitle=Προετοιμασία αρχείου XML σε μορφή ProDouane
# List
IntracommReportList=Λίστα δημιουργούμενων δηλώσεων
IntracommReportNumber=Αριθμός δήλωσης
IntracommReportPeriod=Περίοδος ανάλυσης
IntracommReportTypeDeclaration=Τύπος δήλωσης
IntracommReportDownload=λήψη αρχείου XML
# Invoice
IntracommReportTransportMode=Τρόπος μεταφοράς
DeleteIntraCommReport=Delete IntraComm report

View File

@@ -32,6 +32,8 @@ NewMailing=Νέα αποστολή email
NewSMSing=Νέο sms
EditMailing=Επεξεργασία email
ResetMailing=Εκ νέου αποστολή email
ConfirmResetMailingTargetMassaction=Bulk target Resend confirmation
ResetMailingTargetMassaction=Resend target
DeleteMailing=Διαγραφή email
PreviewMailing=Προεπισκόπηση email
CreateMailing=Δημιουργία email
@@ -53,6 +55,7 @@ ErrorMailRecipientIsEmpty=Το πεδίο παραλήπτη του email είν
WarningNoEMailsAdded=Δεν υπάρχει νέο email για προσθήκη στη λίστα παραληπτών.
ConfirmValidMailing=Είστε σίγουροι ότι θέλετε να επικυρώσετε αυτό το email;
ConfirmResetMailing=Προειδοποίηση, ενεργοποιώντας εκ νέου την αποστολή e-mail <b>%s</b> , θα επιτρέψετε την εκ νέου αποστολή αυτού του μηνύματος ηλεκτρονικού ταχυδρομείου σε μια μαζική αποστολή αλληλογραφίας. Είστε σίγουροι ότι αυτό θέλετε;
ConfirmResetMailingTargetMassactionQuestion=Are you sure you want to reset the status of the selected recipients (this may means that email will be resent if you use the Send email feature of the emailing) ?
ConfirmDeleteMailing=Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το email;
NbOfUniqueEMails=Αριθμός μοναδικών email
NbOfUniquePhones=Νούμερο μοναδικών τηλεφωνικών αριθμών
@@ -197,4 +200,5 @@ YouCanChooseAModelForYouMailContent= Μπορείτε να επιλέξετε έ
TitleOfMailHolder=Επικεφαλίδα e-mail
ContentOfMailHolder=Περιεχόμενο του email...
LastNews=Last News
ListProducts= Κατάλογος προϊόντων
PasswordReset=Επαναφορά κωδικού πρόσβασης

View File

@@ -503,6 +503,7 @@ ContactsAddressesForCompany=Επαφές/διευθύνσεις για αυτό
AddressesForCompany=Διευθύνσεις για αυτό το τρίτο μέρος
ActionsOnCompany=Ενέργειες για αυτό το τρίτο μέρος
ActionsOnContact=Ενέργειες για αυτήν την επαφή / διεύθυνση
ActionsOnUser=Συμβάντα για αυτόν τον χρήστη
ActionsOnContract=Ενέργειες για αυτή τη σύμβαση
ActionsOnMember=Ενέργειες σχετικά με αυτό το μέλος
ActionsOnProduct=Ενέργειες σχετικά με αυτό το προϊόν
@@ -576,7 +577,7 @@ Size=Μέγεθος
OriginalSize=Αρχικό μέγεθος
RotateImage=Περιστροφή 90°
Received=Παραλήφθηκε
Paid=Πληρωμένα
Paid=Πληρωμένο
Topic=Θέμα
ByCompanies=Ανά τρίτα μέρη
ByUsers=Ανα χρήστη
@@ -1187,6 +1188,8 @@ SetSupervisor=Ορίστε τον επόπτη
CreateExternalUser=Δημιουργία εξωτερικού χρήστη
ConfirmAffectTag=Μαζική αντιστοίχιση ετικετών
ConfirmAffectUser=Μαζική ανάθεση χρηστών
ContactRole=Ρόλος επαφής
ContactRoles=Ρόλοι επαφής
ProjectRole=Ρόλος έχει εκχωρηθεί σε κάθε έργο/ευκαιρία
TasksRole=Ρόλος που έχει εκχωρηθεί σε κάθε εργασία (εάν χρησιμοποιείται)
ConfirmSetSupervisor=Μαζικός ορισμός Επόπτη
@@ -1238,6 +1241,8 @@ CommercialsAffected=Ορίστηκαν αντιπρόσωποι πωλήσεων
CommercialAffected=Ορίστηκε αντιπρόσωπος πωλήσεων
CommercialsDisaffected=Οι αντιπρόσωποι πωλήσεων αποσυνδέθηκαν
CommercialDisaffected=Ο αντιπρόσωπος πωλήσεων αποσυνδέθηκε
Message=Μήνυμα
Progression=Πρόοδος
YourMessage=Το μήνυμά σας
YourMessageHasBeenReceived=Το μήνυμά σας έχει ληφθεί. Θα απαντήσουμε ή θα επικοινωνήσουμε μαζί σας το συντομότερο δυνατό.
UrlToCheck=URL για έλεγχο
@@ -1280,6 +1285,7 @@ AmountSalary=Ποσό μισθού
InvoiceSubtype=Τύπος παραστατικού
ConfirmMassReverse=Επιβεβαίωση μαζικής επαναφοράς
ConfirmMassReverseQuestion=Είστε σίγουροι ότι θέλετε να επαναφέρετε την/τις %s επιλεγμένη/ες εγγραφή/ες;
ConfirmActionXxx=Επιβεβαίωση ενέργειας %s
ElementType=Τύπος στοιχείου
ElementId=Αναγνωριστικό στοιχείου
Encrypted=Κρυπτογραφημένο

View File

@@ -23,23 +23,24 @@ 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=Google OAuth Secret
OAUTH_GITHUB_NAME=Υπηρεσία GitHub OAuth
OAUTH_GITHUB_ID=Αναγνωριστικό GitHub OAuth
OAUTH_GITHUB_SECRET=GitHub OAuth Secret
OAUTH_URL_FOR_CREDENTIAL=Μεταβείτε σε <a class="notasortlink" href="%s" target="_blank" rel="noopener noreferrer external"> αυτή τη σελίδα <span class="fas fa-external-link-alt paddingleft"> </span> </a> για να δημιουργήσετε ή να λάβετε το αναγνωριστικό και το Secret OAuth
OAUTH_STRIPE_TEST_NAME=Δοκιμή OAuth Stripe
OAUTH_STRIPE_LIVE_NAME=OAuth Stripe
OAUTH_STRIPE_TEST_NAME=Stripe Test
OAUTH_STRIPE_LIVE_NAME=Stripe Live
OAUTH_ID=OAuth Client ID
OAUTH_SECRET=Secret OAuth
OAUTH_TENANT=OAuth tenant
OAuthProviderAdded=Προστέθηκε πάροχος OAuth
AOAuthEntryForThisProviderAndLabelAlreadyHasAKey=Υπάρχει ήδη μια καταχώριση για αυτόν τον πάροχο και την ετικέτα OAuth 
URLOfOAuthServiceEndpoints=Base URL for OAuth service endpoints
URLOfOAuthServiceEndpointsExample=https://mastodon.example.com
URLOfServiceForAuthorization=URL που παρέχεται από την υπηρεσία OAuth για έλεγχο ταυτότητας
Scopes=Άδειες (Πεδίο εφαρμογής)
ScopeUndefined=Άδειες (Πεδίο εφαρμογής) ακαθόριστα (δείτε προηγούμενη καρτέλα)
ScopesDesc=Παράδειγμα: ανάγνωση, εγγραφή με το Mastodom
TokenRawValue=Πλήρες Token (αντικείμενο)
AccessToken=Token πρόσβασης
TokenExpired=Έληξε

View File

@@ -132,6 +132,7 @@ AlsoCloseAProjectTooltip=Αφήστε το ανοιχτό εάν χρειάζε
ReOpenAProject=Άνοιγμα έργου
ConfirmReOpenAProject=Είστε σίγουροι ότι θέλετε να ανοίξετε ξανά αυτό το έργο;
ProjectContact=Επαφές έργου
ProjectContactTypeManager=Ορισμός ως επαφή με τον τύπο
TaskContact=Επαφές εργασιών
ActionsOnProject=Ενέργειες για το έργο
YouAreNotContactOfProject=Δεν είστε επαφή αυτού του ιδιωτικού έργου

View File

@@ -114,6 +114,8 @@ TicketsActivatePublicInterface=Ενεργοποίηση δημόσιας διε
TicketsActivatePublicInterfaceHelp=Η δημόσια διεπαφή επιτρέπει στους επισκέπτες να δημιουργούν tickets.
TicketsAutoAssignTicket=Ορίστε αυτόματα τον χρήστη που δημιούργησε το ticket
TicketsAutoAssignTicketHelp=Κατά τη δημιουργία ενός ticket, ο χρήστης μπορεί να αντιστοιχιστεί αυτόματα στο ticket.
TicketAutoChangeStatusOnAnswer=Αυτόματη εκχώρηση κατάστασης όταν απαντάτε σε ticket
TicketAutoChangeStatusOnAnswerHelp=Όταν ο χρήστης απαντήσει σε ένα ticket, η κατάσταση θα εφαρμοστεί αυτόματα στο ticket
TicketNumberingModules=Ενότητα αρίθμησης ticket
TicketsModelModule=Πρότυπα εγγράφων για tickets
TicketNotifyTiersAtCreation=Ειδοποιήστε το τρίτο μέρος κατά τη δημιουργία
@@ -137,6 +139,10 @@ TicketUseCaptchaCode=Χρησιμοποιήστε γραφικό κώδικα (C
TicketUseCaptchaCodeHelp=Προσθέτει επαλήθευση CAPTCHA κατά τη δημιουργία νέου ticket.
TicketsAllowClassificationModificationIfClosed=Να επιτρέπεται η τροποποίηση της ταξινόμησης των κλειστών ticket
TicketsAllowClassificationModificationIfClosedHelp=Επιτρέψτε την τροποποίηση της ταξινόμησης (τύπος, ομάδα ticket, σημαντικότητα) ακόμη και αν τα εισιτήρια είναι κλειστά.
TicketAutoCheckNotifyThirdParty=Επιλέξτε από προεπιλογή "Ειδοποίηση τρίτου μέρους" κατά τη δημιουργία ενός ticket
TicketAutoCheckNotifyThirdPartyHelp=Κατά τη δημιουργία ενός ticket, η επιλογή "Ειδοποίηση τρίτου μέρους" θα ελέγχεται αυτόματα.
TicketAssignContactToMessage=Αντιστοίχιση μιας εξωτερικής επαφής σε ένα μήνυμα
TicketAssignContactToMessageHelp=Όταν μια προυπαρχουσα επαφή απαντά σε ένα μήνυμα, το όνομα αυτής εμφανίζεται στη λίστα μηνυμάτων ticket.
# Index & list page
TicketsIndex=Τομέας ticket
TicketList=Λίστα tickets

View File

@@ -0,0 +1,3 @@
# Dolibarr language file - Source file is en_US - oauth
OAUTH_STRIPE_TEST_NAME=Stripe Test
OAUTH_STRIPE_LIVE_NAME=Stripe Live

View File

@@ -0,0 +1,3 @@
# Dolibarr language file - Source file is en_US - oauth
OAUTH_STRIPE_TEST_NAME=Stripe Test
OAUTH_STRIPE_LIVE_NAME=Stripe Live

View File

@@ -0,0 +1,3 @@
# Dolibarr language file - Source file is en_US - oauth
OAUTH_STRIPE_TEST_NAME=Stripe Test
OAUTH_STRIPE_LIVE_NAME=Stripe Live

View File

@@ -0,0 +1,3 @@
# Dolibarr language file - Source file is en_US - oauth
OAUTH_STRIPE_TEST_NAME=Stripe Test
OAUTH_STRIPE_LIVE_NAME=Stripe Live

View File

@@ -0,0 +1,3 @@
# Dolibarr language file - Source file is en_US - oauth
OAUTH_STRIPE_TEST_NAME=Stripe Test
OAUTH_STRIPE_LIVE_NAME=Stripe Live

View File

@@ -0,0 +1,3 @@
# Dolibarr language file - Source file is en_US - oauth
OAUTH_STRIPE_TEST_NAME=Stripe Test
OAUTH_STRIPE_LIVE_NAME=Stripe Live

View File

@@ -867,7 +867,7 @@ 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 linked as a sale representative).
Permission262b=Not effective for external users (always limited to themselves for proposals, orders, invoices, contracts, etc.).
Permission262c=Not effective for projects (only rules on project permissions, visibility and assignment matters).
Permission262c=Not effective for projects (only rules on project permissions, visibility and users assignment matter).
Permission263=Extend access to all third parties WITHOUT their objects (not only third parties for which the user is a sale representative).<br>Not effective for external users (always limited to themselves for proposals, orders, invoices, contracts, etc.).<br>Not effective for projects (only rules on project permissions, visibility and assignment matters).
Permission271=Read CA
Permission272=Read invoices

View File

@@ -0,0 +1,3 @@
# Dolibarr language file - Source file is en_US - oauth
OAUTH_STRIPE_TEST_NAME=Stripe Test
OAUTH_STRIPE_LIVE_NAME=Stripe Live

View File

@@ -399,7 +399,6 @@ HRMSetup=Configuración del módulo HRM
CompanySetup=Configuración del módulo de empresas.
CompanyCodeChecker=Opciones para la generación automática de códigos de clientes / proveedores.
AccountCodeManager=Opciones para la generación automática de códigos contables de clientes / proveedores.
NotificationsDesc=Las notificaciones por correo electrónico se pueden enviar automáticamente para algunos eventos de Dolibarr. <br> Los destinatarios de las notificaciones se pueden definir:
DocumentModelOdt=Genere documentos desde plantillas de OpenDocument (archivos .ODT / .ODS de LibreOffice, OpenOffice, KOffice, TextEdit, ...)
WatermarkOnDraft=Marca de agua en el proyecto de documento
JSOnPaimentBill=Activar función para autocompletar líneas de pago en forma de pago

View File

@@ -131,6 +131,7 @@ Hide=Esconder
ShowCardHere=Mostrar tarjeta
SearchOf=Buscar
Valid=Valida
ReOpen=Re-abrir
Upload=Cargar
ResizeOrCrop=Redimensionar o Recortar
Groups=Los grupos
@@ -295,6 +296,7 @@ Opened=Abierto
ClosedAll=Cerrado (todo)
ByCompanies=Por terceros
ByUsers=Por usuarios
Rejects=Rechazos
NextStep=Próximo paso
None=Ninguna
Late=Tarde

View File

@@ -0,0 +1,2 @@
# Dolibarr language file - Source file is en_US - website
specialPromo=Promotions

View File

@@ -297,9 +297,6 @@ Boolean=Boolean (una casilla de verificación)
ExtrafieldSelect=Seleccionar lista
ExtrafieldSelectList=Seleccionar de la mesa
ExtrafieldSeparator=Separador (no un campo)
ExtrafieldRadio=Botones de radio (solo una opción)
ExtrafieldCheckBox=Casillas de verificación
ExtrafieldCheckBoxFromList=Casillas de verificación de la mesa
ExtrafieldLink=Enlace a un objeto
ComputedFormula=Campo computado
Computedpersistent=Almacenar campo computado
@@ -845,7 +842,6 @@ HRMSetup=Configuración del módulo RRHH
CompanySetup=Configuración del módulo de empresas
CompanyCodeChecker=Opciones para la generación automática de códigos de clientes / proveedores.
AccountCodeManager=Opciones para la generación automática de códigos contables de clientes / proveedores.
NotificationsDesc=Las notificaciones por correo electrónico se pueden enviar automáticamente para algunos eventos de Dolibarr. <br> Los destinatarios de las notificaciones se pueden definir:
DocumentModelOdt=Genere documentos desde plantillas de OpenDocument (archivos .ODT / .ODS de LibreOffice, OpenOffice, KOffice, TextEdit, ...)
WatermarkOnDraft=Marca de agua en el borrador del documento
JSOnPaimentBill=Activar la función para completar automáticamente las líneas de pago en forma de pago
@@ -1179,7 +1175,6 @@ NoModueToManageStockIncrease=No se ha activado ningún módulo capaz de gestiona
YouMayFindNotificationsFeaturesIntoModuleNotification=Puede encontrar opciones para notificaciones por correo electrónico habilitando y configurando el módulo &quot;Notificación&quot;.
ListOfNotificationsPerUser=Lista de notificaciones automáticas por usuario *
ListOfNotificationsPerUserOrContact=Lista de posibles notificaciones automáticas (en eventos comerciales) disponibles por usuario * o por contacto **
ListOfFixedNotifications=Lista de notificaciones automáticas fijas
GoOntoUserCardToAddMore=Vaya a la pestaña &quot;Notificaciones&quot; de un usuario para agregar o eliminar notificaciones para usuarios
Threshold=Límite
SomethingMakeInstallFromWebNotPossible=La instalación del módulo externo no es posible desde la interfaz web por el siguiente motivo:

View File

@@ -10,7 +10,5 @@ SeePreviousTab=Ver la pestaña anterior
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_GITHUB_NAME=Servicio OAuth GitHub
OAUTH_GITHUB_ID=Identificación de OAuth GitHub
TokenExpired=Expirado

View File

@@ -315,9 +315,6 @@ Boolean=Booleano (una casilla de verificación)
ExtrafieldSelect=Seleccionar lista
ExtrafieldSelectList=Seleccionar de la tabla
ExtrafieldSeparator=Separador (no un campo)
ExtrafieldRadio=Botones de radio (solo una opción)
ExtrafieldCheckBox=Casillas de verificación
ExtrafieldCheckBoxFromList=Casillas de verificación de la mesa
ExtrafieldLink=Enlace a un objeto
ComputedFormula=Campo computado
Computedpersistent=Almacenar campo calculado
@@ -325,7 +322,6 @@ ComputedpersistentDesc=Los campos adicionales calculados se almacenarán en la b
ExtrafieldParamHelpselect=La lista de valores debe ser líneas con clave de formato, valor (donde la clave no puede ser '0') <br> <br> por ejemplo: <br> 1, value1 <br> 2, value2 <br>code3,value3<br>...<br> <br>Para que la lista dependa de otra lista de atributos complementarios: <br>1,value1|options_<i>parent_list_code</i>: parent_key<br>2,value2|options_ <i>parent_list_code</i>:parent_key <br><br>Con el fin de tener la lista en función de otra lista: <br>1, value1| <i>parent_list_code</i>:parent_key<br> 2, value2|<i>parent_list_code</i>:parent_key
ExtrafieldParamHelpcheckbox=La lista de valores debe ser líneas con formato clave, valor (donde la clave no puede ser '0') <br> <br> por ejemplo: <br>1,value1<br>2,value2<br>3,value3<br>...
ExtrafieldParamHelpradio=La lista de valores debe ser líneas con formato key,value (donde la clave no puede ser '0') <br> <br> por ejemplo: <br>1,value1<br>2,value2<br>3, value3<br>...
ExtrafieldParamHelpchkbxlst=La lista de valores proviene de una tabla <br> Syntax: table_name:label_field:id_field::filtersql <br> Ejemplo: c_typent:libelle:id::filtersql<br><br>el filtro puede ser una prueba simple (ej. active=1) para mostrar solo el valor activo <br>También puede usar $ID$ en el filtro que es el ID actual del objeto actual<br>Para hacer un SELECT en el filtro, use $SEL$ <br> si desea filtrar en campos extra, use la sintaxis extra.fieldcode=... (donde el código de campo es el código de extrafield) <br> <br> con el fin de tener la lista en función de otra lista de atributos complementarios: <br> c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter<br> <br>Con el fin de tener la lista en función de otra lista:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelplink=Los parámetros deben ser ObjectName:Classpath <br> Sintaxis: ObjectName:Classpath
ExtrafieldParamHelpSeparator=Mantener vacío para un separador simple <br> Establezca esto en 1 para un separador colapsante (abierto de forma predeterminada para una nueva sesión, luego el estado se mantiene para cada sesión de usuario) <br> Establezca esto en 2 para un separador colapsante (colapsado por defecto para una nueva sesión, luego el estado se mantiene antes de cada sesión de usuario)
LibraryToBuildPDF=Biblioteca utilizada para la generación de PDF.
@@ -995,7 +991,6 @@ HRMSetup=Configuración del módulo HRM
CompanySetup=Configuración del módulo de empresas.
CompanyCodeChecker=Opciones para la generación automática de códigos de cliente / proveedor
AccountCodeManager=Opciones para la generación automática de códigos contables de clientes / proveedores
NotificationsDesc=Las notificaciones por correo electrónico se pueden enviar automáticamente para algunos eventos de Dolibarr. <br> Los destinatarios de las notificaciones se pueden definir:
DocumentModelOdt=Genere documentos desde plantillas de OpenDocument (archivos .ODT / .ODS de LibreOffice, OpenOffice, KOffice, TextEdit, ...)
WatermarkOnDraft=Marca de agua en el proyecto de documento
JSOnPaimentBill=Activar función para autocompletar líneas de pago en forma de pago
@@ -1369,7 +1364,6 @@ NoModueToManageStockIncrease=No se ha activado ningún módulo capaz de gestiona
YouMayFindNotificationsFeaturesIntoModuleNotification=Puede encontrar opciones para notificaciones por correo electrónico habilitando y configurando el módulo "Notificación".
ListOfNotificationsPerUser=Lista de notificaciones automáticas por usuario *
ListOfNotificationsPerUserOrContact=Lista de posibles notificaciones automáticas (sobre eventos comerciales) disponibles por usuario * o por contacto**
ListOfFixedNotifications=Lista de notificaciones automáticas fijas
GoOntoUserCardToAddMore=Vaya a la pestaña "Notificaciones" de un usuario para agregar o eliminar notificaciones para usuarios
GoOntoContactCardToAddMore=Vaya a la pestaña "Notificaciones" de un tercero para agregar o eliminar notificaciones de contactos / direcciones
Threshold=Límite

View File

@@ -10,11 +10,7 @@ OAuthProvider=proveedor de OAuth
OAuthIDSecret=ID y secreto de OAuth
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_GITHUB_NAME=Servicio OAuth GitHub
OAUTH_GITHUB_ID=ID de GitHub de OAuth
OAUTH_URL_FOR_CREDENTIAL=Vaya a <a class="notasortlink" href="%s" target="_blank" rel="noopener noreferrer external">esta página<span class="fas fa-external-link-alt paddingleft"></span></a> para crear u obtener su ID y secreto de OAuth
OAUTH_STRIPE_TEST_NAME=Prueba de banda de OAuth
OAUTH_STRIPE_LIVE_NAME=OAuth Stripe en vivo
OAUTH_SECRET=secreto OAuth

View File

@@ -323,9 +323,6 @@ ExtrafieldUrl =URL
ExtrafieldSelect=Seleccionar lista
ExtrafieldSelectList=Seleccionar de la tabla
ExtrafieldSeparator=Separador (no un campo)
ExtrafieldRadio=Botones de opción (solo una opción)
ExtrafieldCheckBox=Casillas de verificación
ExtrafieldCheckBoxFromList=Casillas de verificación de la tabla
ExtrafieldLink=Enlace a un objeto
ComputedFormula=campo calculado
Computedpersistent=Almacenar campo calculado
@@ -334,7 +331,6 @@ ExtrafieldParamHelpPassword=Dejar este campo en blanco significa que este valor
ExtrafieldParamHelpselect=List of values must be lines with format key,value (where key can't be '0') <br> <br> for example: <br> 1,value1 <br> 2,value2 <br> code3,value3 <br> ... <br> <br> In order to have the list depending on another complementary attribute list: <br> 1,value1|options_ <i> parent_list_code </i> :parent_key <br> 2,value2|options_ <i> parent_list_code </i> :parent_key <br> <br> In order to have the list depending on another list: <br> 1,value1| <i> parent_list_code </i> :parent_key <br> 2,valor2| <i> parent_list_code </i> :parent_key
ExtrafieldParamHelpcheckbox=La lista de valores debe ser líneas con formato key,value (donde key no puede ser '0') <br> <br> por ejemplo: <br> 1,value1 <br> 2,value2 <br> 3,value3 <br> ...
ExtrafieldParamHelpradio=La lista de valores debe ser líneas con formato key,value (donde key no puede ser '0') <br> <br> por ejemplo: <br> 1,value1 <br> 2,value2 <br> 3,value3 <br> ...
ExtrafieldParamHelpchkbxlst=La lista de valores proviene de una tabla <br> Syntax: table_name:label_field:id_field::filtersql <br> Ejemplo: c_typent:libelle:id::filtersql<br><br>el filtro puede ser una prueba simple (ej. active=1) para mostrar solo el valor activo <br>También puede usar $ID$ en el filtro que es el ID actual del objeto actual<br>Para hacer un SELECT en el filtro, use $SEL$ <br> si desea filtrar en campos extra, use la sintaxis extra.fieldcode=... (donde el código de campo es el código de extrafield) <br> <br> con el fin de tener la lista en función de otra lista de atributos complementarios: <br> c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter<br> <br>Con el fin de tener la lista en función de otra lista:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelplink=Los parámetros deben ser ObjectName:Classpath <br> Sintaxis: ObjectName:Classpath
ExtrafieldParamHelpSeparator=Mantener vacío para un separador simple <br> Establezca esto en 1 para un separador colapsado (abierto de manera predeterminada para una nueva sesión, luego el estado se mantiene para cada sesión de usuario) <br> Establezca esto en 2 para un separador colapsado (contraído de manera predeterminada para una nueva sesión, luego el estado se mantiene para cada sesión de usuario)
LibraryToBuildPDF=Biblioteca utilizada para la generación de PDF
@@ -991,7 +987,6 @@ HRMSetup=Configuración del módulo HRM
CompanySetup=Configuración del módulo de empresas
CompanyCodeChecker=Opciones para la generación automática de códigos de cliente/proveedor
AccountCodeManager=Opciones para la generación automática de códigos contables de clientes/proveedores
NotificationsDesc=Las notificaciones por correo electrónico se pueden enviar automáticamente para algunos eventos de Dolibarr. <br> Se pueden definir los destinatarios de las notificaciones:
DocumentModelOdt=Genere documentos a partir de plantillas de OpenDocument (archivos .ODT / .ODS de LibreOffice, OpenOffice, KOffice, TextEdit,...)
WatermarkOnDraft=Marca de agua en borrador de documento
JSOnPaimentBill=Activar función para autocompletar líneas de pago en el formulario de pago
@@ -1382,7 +1377,6 @@ NoModueToManageStockIncrease=No se ha activado ningún módulo capaz de gestiona
YouMayFindNotificationsFeaturesIntoModuleNotification=Puede encontrar opciones para notificaciones por correo electrónico activando y configurando el módulo "Notificación".
ListOfNotificationsPerUser=Lista de notificaciones automáticas por usuario*
ListOfNotificationsPerUserOrContact=Lista de posibles notificaciones automáticas (sobre evento comercial) disponibles por usuario* o por contacto**
ListOfFixedNotifications=Lista de notificaciones fijas automáticas
GoOntoUserCardToAddMore=Vaya a la pestaña "Notificaciones" de un usuario para agregar o eliminar notificaciones para los usuarios
GoOntoContactCardToAddMore=Vaya a la pestaña "Notificaciones" de un tercero para agregar o eliminar notificaciones para contactos/direcciones
Threshold=Límite

View File

@@ -616,6 +616,7 @@ ASAP=Lo antes posible
DefaultMailModel=Modelo de correo predeterminado
SecurityTokenHasExpiredSoActionHasBeenCanceledPleaseRetry=El token de seguridad ha caducado, por lo que se ha cancelado la acción. Inténtalo de nuevo.
EventReminder=Recordatorio de evento
ContactRole=Función del contacto.
ConfirmSetSupervisor=Conjunto de supervisor a granel
ConfirmSetSupervisorQuestion=¿Está seguro de que desea configurar el supervisor para los registros seleccionados %s?
ConfirmUpdatePriceQuestion=¿Está seguro de que desea actualizar el precio de los registros seleccionados %s?

View File

@@ -11,9 +11,7 @@ SeePreviousTab=Ver pestaña anterior
OAuthIDSecret=OAuth ID y secreto
TOKEN_EXPIRED=Token caducado
TOKEN_EXPIRE_AT=El token expiró en
OAUTH_GOOGLE_NAME=Servicio de Google OAuth
OAUTH_GOOGLE_ID=ID de Google OAuth
OAUTH_GITHUB_NAME=Servicio OAuth GitHub
OAUTH_GITHUB_ID=Id OAuth GitHub
OAUTH_URL_FOR_CREDENTIAL=Vaya a <a class="notasortlink" href="%s" target="_blank" rel="noopener noreferrer external">esta página<span class="fas fa-external-link-alt paddingleft"></span></a> para crear u obtener su ID y secreto de OAuth
TokenExpired=Expirado

View File

@@ -323,9 +323,6 @@ ExtrafieldUrl =URL
ExtrafieldSelect=Seleccionar lista
ExtrafieldSelectList=Seleccionar de la tabla
ExtrafieldSeparator=Separador (no un campo)
ExtrafieldRadio=Botones de opción (solo una opción)
ExtrafieldCheckBox=Casillas de verificación
ExtrafieldCheckBoxFromList=Casillas de verificación de la tabla
ExtrafieldLink=Enlace a un objeto
ComputedFormula=campo calculado
ComputedFormulaDesc=Puede ingresar aquí una fórmula usando otras propiedades del objeto o cualquier codificación PHP para obtener un valor calculado dinámico. Puede usar cualquier fórmula compatible con PHP, incluido el "?" operador de condición y el siguiente objeto global: <strong> $db, $conf, $langs, $mysoc, $user, $objectoffield </strong> . <br> <strong> ADVERTENCIA </strong> : si necesita propiedades de un objeto que no está cargado, solo busque el objeto en su fórmula como en el segundo ejemplo. <br> El uso de un campo calculado significa que no puede ingresar ningún valor desde la interfaz. Además, si hay un error de sintaxis, es posible que la fórmula no devuelva nada. <br> <br> Ejemplo de fórmula: <br> $objetodecampo->id < 10 ? round($objectoffield-> id / 2, 2): ($objetodecampo->id + 2 * $usuario->id) * (int) substr($mysoc->zip, 1, 2 ) <br> <br> Ejemplo para recargar objeto <br> (($reloadedobj = new Societe($db)) && ($reloadedobj->fetchNoCompute($objectoffield->id) > 0 ? $reloadedobj->array_options['options_extrafieldkey'] * $reloaded objeto ->capital / 5: '-1') <br> <br> Otro ejemplo de fórmula para forzar la carga del objeto y su objeto principal: <br> (($reloadedobj = new Task($db)) && ($reloadedobj->fetchNoCompute($objectoffield ->id) > 0) && ($segundoobjcargado = nuevo Proyecto($db)) && ($segundoobjcargado->fetchNoCompute($reloadedobj->fk_project) > 0)) ? $segundoobjcargado->ref: 'Proyecto padre no encontrado'
@@ -334,7 +331,6 @@ ComputedpersistentDesc=Los campos adicionales calculados se almacenarán en la b
ExtrafieldParamHelpselect=La lista de valores debe ser líneas con formato clave,valor (donde la clave no puede ser '0') <br> <br> por ejemplo: <br> 1,valor1 <br> 2,valor2 <br> código3,valor3 b0342fccfda19 bz0 ... <br> <br> Para tener el list dependiendo de otra lista de atributos complementarios: <br> 1,value1|options_ <i> parent_list_code </i> :parent_key <br> 2,value2|options_ <i> parent_list_code b0ae64758ba c33z0 :parent_key <br> <br> Para tener la lista dependiendo de otra lista: <br> 1,value1| <i> parent_list_code </i> :parent_key <br> 2,valor2| <i> parent_list_code </i> :parent_key
ExtrafieldParamHelpcheckbox=La lista de valores debe ser líneas con formato clave,valor (donde la clave no puede ser '0') <br> <br> por ejemplo: <br> 1,valor1 <br> 2,valor2 <br> 3,valor3 b0342fccfda19 bz0 ...
ExtrafieldParamHelpradio=La lista de valores debe ser líneas con formato clave,valor (donde la clave no puede ser '0') <br> <br> por ejemplo: <br> 1,valor1 <br> 2,valor2 <br> 3,valor3 b0342fccfda19 bz0 ...
ExtrafieldParamHelpchkbxlst=La lista de valores proviene de una tabla <br> Sintaxis: table_name:label_field:id_field::filtersql <br> Ejemplo: c_typent:libelle:id::filtersql <br> <br> El filtro puede ser una prueba simple (por ejemplo, active=1) para mostrar solo el valor activo b03 42fccfda19bz0 usted también puede usar $ID$ en el filtro, que es la identificación actual del objeto actual <br> Para hacer una SELECCIÓN en el filtro, use $SEL$ <br> si desea filtrar en campos adicionales, use la sintaxis extra.fieldcode=... (donde el código de campo es el código de extrafield) <br> <br> Para tener la lista dependiendo de otra lista de atributos complementarios: <br> c_typent:libelle:id:options_ <i> parent_list_code </i> |parent_column:filter b0342f ccfda19bz0 <br> Para tener la lista dependiendo de otra lista: <br> c_typent: libelle:id: <i> parent_list_code </i> |parent_column:filter
ExtrafieldParamHelplink=Los parámetros deben ser ObjectName:Classpath <br> Sintaxis: ObjectName:Classpath
ExtrafieldParamHelpSeparator=Mantener vacío para un separador simple <br> Establezca esto en 1 para un separador colapsado (abierto por defecto para una nueva sesión, luego el estado se mantiene para cada sesión de usuario) <br> Establezca esto en 2 para un separador colapsado (contraído por defecto para una nueva sesión, luego el estado se mantiene para cada sesión de usuario)
LibraryToBuildPDF=Biblioteca utilizada para la generación de PDF
@@ -985,7 +981,6 @@ HRMSetup=Configuración del módulo HRM
CompanySetup=Configuración del módulo de empresas
CompanyCodeChecker=Opciones para la generación automática de códigos de cliente/proveedor
AccountCodeManager=Opciones para la generación automática de códigos contables de clientes/proveedores
NotificationsDesc=Las notificaciones por correo electrónico se pueden enviar automáticamente para algunos eventos de Dolibarr. <br> Los destinatarios de las notificaciones se pueden definir:
DocumentModelOdt=Genere documentos a partir de plantillas de OpenDocument (archivos .ODT / .ODS de LibreOffice, OpenOffice, KOffice, TextEdit,...)
WatermarkOnDraft=Marca de agua en borrador de documento
JSOnPaimentBill=Activar función para autocompletar líneas de pago en el formulario de pago
@@ -1365,7 +1360,6 @@ NoModueToManageStockIncrease=No se ha activado ningún módulo capaz de gestiona
YouMayFindNotificationsFeaturesIntoModuleNotification=Puede encontrar opciones para notificaciones por correo electrónico activando y configurando el módulo "Notificación".
ListOfNotificationsPerUser=Lista de notificaciones automáticas por usuario*
ListOfNotificationsPerUserOrContact=Lista de posibles notificaciones automáticas (sobre evento comercial) disponibles por usuario* o por contacto**
ListOfFixedNotifications=Lista de notificaciones fijas automáticas
GoOntoUserCardToAddMore=Vaya a la pestaña "Notificaciones" de un usuario para agregar o eliminar notificaciones para los usuarios
GoOntoContactCardToAddMore=Vaya a la pestaña "Notificaciones" de un tercero para agregar o eliminar notificaciones para contactos/direcciones
Threshold=Límite

View File

@@ -12,13 +12,9 @@ OAuthProvider=proveedor de OAuth
OAuthIDSecret=ID y secreto de OAuth
TOKEN_EXPIRED=Ficha caducada
TOKEN_EXPIRE_AT=El token expira en
OAUTH_GOOGLE_NAME=Servicio OAuth de Google
OAUTH_GOOGLE_ID=ID de Google OAuth
OAUTH_GOOGLE_SECRET=Secreto de Google OAuth
OAUTH_GITHUB_NAME=Servicio OAuth GitHub
OAUTH_GITHUB_ID=ID de GitHub de OAuth
OAUTH_GITHUB_SECRET=Secreto de GitHub de OAuth
OAUTH_STRIPE_TEST_NAME=Prueba de bandas de OAuth
OAUTH_STRIPE_LIVE_NAME=Franja de OAuth en vivo
OAUTH_SECRET=secreto OAuth
OAUTH_TENANT=inquilino de OAuth

View File

@@ -0,0 +1,2 @@
# Dolibarr language file - Source file is en_US - website
specialPromo=Promotions

View File

@@ -188,6 +188,7 @@ CurrentMenuHandler=Controlador de menús actual
Orientation=Orientacion
SpaceX=Espacio X
SpaceY=Espacio Y
NoticePeriod=Periodo de notificación
Emails=Correos electrónicos
EMailsSetup=Configuración de correo electrónico
EmailSenderProfiles=Perfiles de remitentes de correos electrónicos
@@ -297,9 +298,6 @@ ExtrafieldUrl = Url
ExtrafieldSelect= Seleccionar lista
ExtrafieldSelectList= Seleccionear tabla
ExtrafieldSeparator=Separador (no un campo)
ExtrafieldRadio=Botones de radio (solo una opción)
ExtrafieldCheckBox=Casillas de verificación
ExtrafieldCheckBoxFromList=Casillas de verificación de la tabla
ExtrafieldLink=Enlace a un objeto
ComputedFormula=Campo calculado
Computedpersistent=Almacenar campo calculado
@@ -882,7 +880,6 @@ HRMSetup=Configuración del módulo de RRHH (Recursos Humanos)
CompanySetup=Configuración del módulo de empresas
CompanyCodeChecker=Opciones para la generación automática de códigos de clientes / proveedores.
AccountCodeManager=Opciones para la generación automática de códigos contables de clientes / proveedores.
NotificationsDesc=Las notificaciones por correo electrónico se pueden enviar automáticamente para algunos eventos de Dolibarr. <br> Los destinatarios de las notificaciones se pueden definir:
DocumentModelOdt=Genere documentos desde plantillas de OpenDocument (archivos .ODT / .ODS de LibreOffice, OpenOffice, KOffice, TextEdit, ...)
WatermarkOnDraft=Marca de agua en el documento preliminar
JSOnPaimentBill=Activar la función para llenar automáticamente las líneas de pago en el formulario de pago
@@ -909,7 +906,6 @@ SupplierPaymentSetup=Configuración de pagos de proveedores
PropalSetup=Configuración del módulo de propuestas comerciales
ProposalsNumberingModules=Modelos comerciales de numeración de propuestas.
ProposalsPDFModules=Modelos de documentos de propuestas comerciales
SuggestedPaymentModesIfNotDefinedInProposal=Modo de pago sugerido en la propuesta por defecto si no está definido en la propuesta
FreeLegalTextOnProposal=Texto libre sobre propuestas comerciales
WatermarkOnDraftProposal=Marca de agua en proyectos de propuestas comerciales.
BANK_ASK_PAYMENT_BANK_DURING_PROPOSAL=Solicitar la cuenta bancaria en la propuesta
@@ -938,7 +934,6 @@ FreeLegalTextOnContracts=Texto libre en los contratos
WatermarkOnDraftContractCards=Marca de agua en los contratos de borrador.
MembersSetup=Configuración de módulos de miembros
AdherentMailRequired=Correo electrónico requerido para crear un nuevo miembro
MemberSendInformationByMailByDefault=Marque la casilla de verificación para enviar un correo de confirmación a los miembros (validación o nueva suscripción), está activada de forma predeterminada
MEMBER_REMINDER_EMAIL=Habilite el recordatorio automático <b> por correo electrónico </b> de las suscripciones caducadas. Nota: el módulo <strong> %s </strong> debe estar habilitado y configurado correctamente para enviar recordatorios.
LDAPSetup=Configuración de LDAP
LDAPFunctionsNotAvailableOnPHP=Las funciones LDAP no están disponibles en PHP
@@ -1239,7 +1234,6 @@ NoModueToManageStockIncrease=No se ha activado ningún módulo capaz de gestiona
YouMayFindNotificationsFeaturesIntoModuleNotification=Puede encontrar opciones para notificaciones por correo electrónico habilitando y configurando el módulo "Notificación".
ListOfNotificationsPerUser=Lista de notificaciones automáticas por usuario*
ListOfNotificationsPerUserOrContact=Lista de posibles notificaciones automáticas (en eventos comerciales) disponibles por usuario* o por contacto**
ListOfFixedNotifications=Lista de notificaciones automáticas fijas
GoOntoUserCardToAddMore=Vaya a la pestaña "Notificaciones" de un usuario para agregar o eliminar notificaciones para usuarios
GoOntoContactCardToAddMore=Vaya a la pestaña "Notificaciones" de un tercero para agregar o eliminar notificaciones de contactos/direcciones
Threshold=Límite

View File

@@ -11,9 +11,7 @@ SeePreviousTab=Ver pestaña anterior
OAuthIDSecret=OAuth ID y secreto
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_GITHUB_NAME=Servicio OAuth GitHub
TokenExpired=Muerto
TokenNotExpired=No ha expirado
ExpirationDate=Fecha de caducidad

View File

@@ -365,7 +365,7 @@ UpdateServerOffline=Actualizar servidor offline
WithCounter=Gestionar un contador
GenericMaskCodes=Puede ingresar cualquier máscara de numeración. En esta máscara, se pueden utilizar las siguientes etiquetas: <br> <b> {000000} </b> corresponde a un número que se incrementará en cada %s. Ingrese tantos ceros como la longitud deseada del contador. El contador se completará con ceros desde la izquierda para tener tantos ceros como la máscara. <br> <b> {000000+000} </b> igual que el anterior pero se aplica un desplazamiento correspondiente al número a la derecha del signo + comenzando en el primer %s. <br> <b> {000000@x} </b> igual que el anterior pero el contador se restablece a cero cuando se alcanza el mes x (x entre 1 y 12, o 0 para usar los primeros meses del año fiscal definido en su configuración, o 99 para poner a cero todos los meses). Si se usa esta opción y x es 2 o superior, entonces también se requiere la secuencia {yy}{mm} o {yyyy}{mm}. <br> <b>{dd}</b> día (01 a 31). <br> <b>{mm}</b> mes (01 a 12). <br> <b>{yy}</b>, <b>{yyyy}</b> o <b>{y}</b> año sobre 2, 4 o 1 cifras. <br>
GenericMaskCodes2= <b>{cccc}</b> el código de cliente en n caracteres<br><b>{cccc000}</b> el código de cliente es un código de cliente dedicado a n. Este contador dedicado al cliente se pone a cero al mismo tiempo que el contador global.<br><b>{tttt}</b> El código del tipo de terceros en n caracteres (ver menú Inicio - Configuración - Diccionario - Tipos de terceros). Si agrega esta etiqueta, el contador será diferente para cada tipo de tercero. <br>
GenericMaskCodes2b=<b>{uuuu}</b> the n first characters of the lastname of the user that creates the object (n is number of "u").
GenericMaskCodes2b=<b>{uuuu}</b> los n primeros caracteres del apellido del usuario que crea el objeto (n es el número de "u").
GenericMaskCodes3=Cualquier otro carácter en la máscara se quedará sin cambios.<br>No se permiten espacios.<br>
GenericMaskCodes3EAN=Todos los demás caracteres de la máscara permanecerán intactos (excepto * o ? En la 13ª posición en EAN13).<br>No se permiten espacios.<br>En EAN13, el último carácter después del último} en la 13ª posición debería ser * o ? . Será reemplazado por la clave calculada.<br>
GenericMaskCodes4a= <u> Ejemplo en el 99 %s del tercero TheCompany, con fecha 2023-01-31: </u> <br>
@@ -458,9 +458,9 @@ ExtrafieldSelect = Lista de selección
ExtrafieldSelectList=Lista desde una tabla
ExtrafieldSeparator=Separador (No es un campo)
ExtrafieldPassword=Contraseña
ExtrafieldRadio=Botón tipo radio (solo uno seleccionado)
ExtrafieldCheckBox=Casilla de verificación
ExtrafieldCheckBoxFromList=Casilla de selección de tabla
ExtrafieldRadio=Radio buttons (1 choice only)
ExtrafieldCheckBox=Select list (n choices)
ExtrafieldCheckBoxFromList=Select from table (n choices)
ExtrafieldLink=Objeto adjuntado
ExtrafieldPointGeo=Punto Geométrico
ExtrafieldMultiPointGeo=Punto múltiple geométrico
@@ -475,7 +475,7 @@ ExtrafieldParamHelpselect=El listado de valores tiene que ser líneas key,valor<
ExtrafieldParamHelpcheckbox=El listado de valores tiene que ser líneas con el formato key,valor<br><br> por ejemplo: <br>1,value1<br>2,value2<br>3,value3<br>...
ExtrafieldParamHelpradio=El listado de valores tiene que ser líneas con el formato key,valor (donde key no puede ser 0)<br><br> por ejemplo: <br>1,value1<br>2,value2<br>3,value3<br>...
ExtrafieldParamHelpsellist=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>- id_field is necessarily a primary int key<br>- filtersql is a condition. It must use the USF syntax. Example: (active:=:1) to display only active value<br>You can also use $ID$ in filter which is the current id of current object<br>If you want to filter on extrafields use syntax extra.fieldcode=... (where fieldcode is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelpchkbxlst=Lista de valores proviene de una tabla <br> Sintaxis: nombre_tabla:campo_etiqueta: campo_id::filtrosql <br> Ejemplo: c_typent:libelle:id::filtrosql <br><br>Filtrosql puede ser una prueba simple (por ejemplo, activa = 1) para mostrar sólo el valor activo.<br>También puede utilizar $ID$ en el filtro que es el id actual del objeto actual.<br>Para hacer un SELECT en el filtro use $SEL$ <br>Si desea filtrar en campos adicionales utilice la sintaxis extra.fieldcode=...(donde fieldcode es el código de campo adicional) <br><br> Para que la lista dependa de otra lista de campos adicionales: <br> c_typent: libelle:id:options_ <i> parent_list_code </i> | parent_column:filter <br> <br> Para que la lista dependa de otra lista: <br> c_typent:libelle:id: <i> parent_list_code </i> | parent_column:filter
ExtrafieldParamHelpchkbxlst=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>filter can be a simple test (eg active=1 to display only active value)<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
ExtrafieldParamHelplink=Los parámetros deben ser NombreObjeto:RutaClase <br>Sintaxis: NombreObjeto:RutaClase
ExtrafieldParamHelpSeparator=Mantener vacío para un separador simple <br> Establezca a 1 para un separador de colapso (abierto de forma predeterminada para una nueva sesión, luego el estado se mantiene para cada sesión de usuario) <br> Establezca a 2 para un separador de colapso (colapsado por defecto para una nueva sesión, luego el estado se mantiene para cada sesión de usuario)
LibraryToBuildPDF=Libreria usada en la generación de los PDF
@@ -1457,7 +1457,7 @@ HRMSetup=Setup del módulo RRHH
CompanySetup=Configuración del módulo terceros
CompanyCodeChecker=Opciones para la generación automática de códigos de clientes/proveedores
AccountCodeManager=Opciones para la generación automática de cuentas contables de clientes/proveedores.
NotificationsDesc=Las notificaciones por e-mail le permite enviar e-mails para algunos eventos Dolibarr.<br> Se pueden definir los destinatarios:
NotificationsDesc=Email notifications can be sent automatically on certain events.<br>Recipients of notifications can be defined:
NotificationsDescUser=* por usuario (en la pestaña "Notificaciones" de un usuario)
NotificationsDescContact=* por contactos de terceros (en la pestaña "Notificaciones" de un tercero)
NotificationsDescGlobal=* o configurando direcciones de correo electrónico globales (en la página de configuración del módulo).
@@ -1993,10 +1993,10 @@ ExpenseReportsRulesSetup=Configuración del módulo Informes de gastos - Reglas
ExpenseReportNumberingModules=Módulo de numeración de informes de gastos
NoModueToManageStockIncrease=No hay activado módulo para gestionar automáticamente el incremento de stock. El incremento de stock se realizará solamente con entrada manual
YouMayFindNotificationsFeaturesIntoModuleNotification=Puede encontrar opciones para notificaciones de e-mail activando y configurando el módulo "Notificaciones".
TemplatesForNotifications=Plantillas para notificaciones
TemplatesForNotifications=Emails templates for notifications
ListOfNotificationsPerUser=Listado de notificaciones automáticas por usuario*
ListOfNotificationsPerUserOrContact=Listado de posibles notificaciones automáticas (eventos) por usuario* o por contacto**
ListOfFixedNotifications=Listado de notificaciones automáticas fijas
ListOfFixedNotifications=Global recipients emails for automatic email notifications
GoOntoUserCardToAddMore=Vaya a la pestaña "Notificaciones" de un usuario para añadir o elliminar notificaciones a usuarios
GoOntoContactCardToAddMore=Vaya a la pestaña "Notificaciones" de un contacto de tercero para añadir o eliminar notificaciones para contactos/direcciones
Threshold=Valor mínimo/umbral
@@ -2126,7 +2126,7 @@ MAIN_DOCUMENTS_WITH_PICTURE_WIDTH=Ancho de la columna si se añade una imagen en
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_UNIT_PRICE=Ocultar la columna de precio unitario en las solicitudes de cotización
MAIN_GENERATE_DOCUMENTS_SUPPLIER_PROPOSAL_WITHOUT_TOTAL_COLUMN=Ocultar la columna de precio total en las solicitudes de cotización
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_UNIT_PRICE=Ocultar la columna de precio unitario en las órdenes de compra
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=Ocultar la columna de precio total en órdenes de compra
MAIN_GENERATE_DOCUMENTS_PURCHASE_ORDER_WITHOUT_TOTAL_COLUMN=Hide the total price column on purchase orders
MAIN_PDF_NO_SENDER_FRAME=Ocultar bordes en el marco de la dirección del emisor
MAIN_PDF_NO_RECIPENT_FRAME=Ocultar bordes en el marco de la dirección del destinatario
MAIN_PDF_HIDE_CUSTOMER_CODE=Ocultar código de cliente
@@ -2279,6 +2279,7 @@ NotAPublicIp=No es una IP pública
MakeAnonymousPing=Realice un Ping anónimo '+1' al servidor de la base Dolibarr (realizado 1 vez tras la instalación) para permitir que la base cuente la cantidad de instalación de Dolibarr.
FeatureNotAvailableWithReceptionModule=Función no disponible cuando el módulo Recepción está activado
EmailTemplate=Plantilla para e-mail
EmailTemplateHelp=You can create emails templates from menu %s - %s
EMailsWillHaveMessageID=Los correos electrónicos tendrán un encabezado 'ID de mensaje' que coincidirá con esta sintaxis
PDF_SHOW_PROJECT=Mostrar proyecto en documento
ShowProjectLabel=Etiqueta del proyecto
@@ -2523,21 +2524,32 @@ MainAuthenticationOidcClientSecretName=Client secret
MainAuthenticationOidcClientSecretDesc=OpenID Connect Client Secret
MainAuthenticationOidcScopesName=Ámbitos
MainAuthenticationOidcScopesDesc=OpenID scopes to allow access to user information
MainAuthenticationOidcAuthorizeUrlName=Authorize URL
MainAuthenticationOidcAuthorizeUrlDesc=(example: https://example.com/oauth2/authorize)
MainAuthenticationOidcTokenUrlName=Token URL
MainAuthenticationOidcTokenUrlDesc=(example: https://example.com/oauth2/token)
MainAuthenticationOidcUserinfoUrlName=User info URL
MainAuthenticationOidcUserinfoUrlDesc=(example: https://example.com/oauth2/userinfo)
MainAuthenticationOidcLogoutUrlName=Logout URL
MainAuthenticationOidcLogoutUrlDesc=(example: https://example.com/oauth2/logout)
MainAuthenticationOidcAuthorizeUrlName=Autorizar URL
MainAuthenticationOidcAuthorizeUrlDesc=(ejemplo: https://example.com/oauth2/authorize)
MainAuthenticationOidcTokenUrlName=URL del token
MainAuthenticationOidcTokenUrlDesc=(ejemplo: https://example.com/oauth2/token)
MainAuthenticationOidcUserinfoUrlName=URL de información del usuario
MainAuthenticationOidcUserinfoUrlDesc=(ejemplo: https://example.com/oauth2/userinfo)
MainAuthenticationOidcLogoutUrlName=URL de cierre de sesión
MainAuthenticationOidcLogoutUrlDesc=(ejemplo: https://example.com/oauth2/logout)
MainAuthenticationOidcRedirectUrlName=URL de redirección
MainAuthenticationOidcRedirectUrlDesc=Redirect URL to authorize on the OpenID provider side
MainAuthenticationOidcLogoutRedirectUrlName=Dolibarr logout URL
MainAuthenticationOidcLogoutRedirectUrlDesc=Dolibarr logout URL to authorize on the OpenID provider side
MainAuthenticationOidcLoginClaimName=Login claim
MainAuthenticationOidcLoginClaimDesc=OpenID Connect claim matching the Dolibarr user login. If not set or empty, defaults to email
BlackListWords=Black list of words
AddBlackList=Add to black list
AnOwnerMustBeSetIfEmailTemplateIsPrivate=An owner must be set if the email template is set as private
ContactsDefaultRoles=For third parties of the "individual" type, a contact can be created simultaneously. Define here the roles that will be systematically assigned to this contact.
MainAuthenticationOidcRedirectUrlDesc=Redireccionar URL para autorizar en el lado del proveedor OpenID
MainAuthenticationOidcLogoutRedirectUrlName=URL de cierre de sesión de Dolibarr
MainAuthenticationOidcLogoutRedirectUrlDesc=URL de cierre de sesión de Dolibarr para autorizar en el lado del proveedor OpenID
MainAuthenticationOidcLoginClaimName=Reclarmar Inicio sesión
MainAuthenticationOidcLoginClaimDesc=Reclamo de OpenID Connect que coincide con el inicio de sesión del usuario de Dolibarr. Si no se configura o está vacío, el valor predeterminado es el correo electrónico
BlackListWords=Lista negra de palabras
AddBlackList=Añadir a la lista negra
FediverseSetup=Configuración de la sección fediverse
ConfigImportSocialNetwork=Configuración de redes sociales compatibles con Fediverse
Fediverse=Fediverse
NewSocialNetwork=Nueva red social Fediverse
SocialNetworkUrl=URL de la API de Fediverse
SocialNetworksNote=Cada definición de red social proporciona un widget que debes habilitar para tenerlo disponible en el panel de control.
ConfirmDeleteSocialNetwork= ¿Estás seguro que deseas eliminar este registro?
AnOwnerMustBeSetIfEmailTemplateIsPrivate=Se debe configurar un propietario si la plantilla de correo electrónico se configura como privada
ContactsDefaultRoles=Para terceros del tipo "particular", se puede crear un contacto de forma simultánea. Defina aquí los roles que se asignarán sistemáticamente a este contacto.
MenuDict=Diccionario
AddMoreParams=Add more parameters for connection (cookies, tokens, ...)<br> Example: token : value token
ParamName=Nombre del parámetro
ParamValue=Valor del parámetro

View File

@@ -1,3 +1,6 @@
IntraCommReport=Informe intracomunitario
IntraCommReports=Intracomm reports
Module68000Name = Informe intracomunitario
Module68000Desc = Gestión de informe intracomunitario (soporte para formato francés DEB / DES)
IntracommReportSetup = Configuración del módulo de intracommreport
@@ -10,14 +13,11 @@ INTRACOMMREPORT_ROLE_ACTEUR=Papel interpretado por el actor
INTRACOMMREPORT_NIV_OBLIGATION_INTRODUCTION=Nivel de obligación sobre presentaciones
INTRACOMMREPORT_NIV_OBLIGATION_EXPEDITION=Nivel de obligación sobre envíos
INTRACOMMREPORT_CATEG_FRAISDEPORT=Categoría de servicio del tipo "Franqueo"
INTRACOMMREPORT_NUM_DECLARATION=Número de declarante
# Menu
MenuIntracommReport=Informe intracomunitario
MenuIntracommReportNew=Nueva declaracion
MenuIntracommReportList=Listado
# View
NewDeclaration=Nueva declaracion
Declaration=Declaración
@@ -25,16 +25,14 @@ AnalysisPeriod=Periodo de análisis
TypeOfDeclaration=Tipo de declaración
DEB=Declaración de intercambio de mercancías (DEB)
DES=Declaración de intercambio de servicios (DES)
# Export page
IntracommReportTitle=Preparación de un archivo XML en formato ProDouane
# List
IntracommReportList=Lista de declaraciones generadas
IntracommReportNumber=Número de declaración
IntracommReportPeriod=Periodo de análisis
IntracommReportTypeDeclaration=Tipo de declaración
IntracommReportDownload=descargar archivo XML
# Invoice
IntracommReportTransportMode=Modo de transporte
DeleteIntraCommReport=Delete IntraComm report

View File

@@ -213,7 +213,7 @@ Select=Seleccionar
SelectAll=Seleccionar todo
Choose=Elegir
Resize=Redimensionar
Crop=Cultivo
Crop=Recortar
ResizeOrCrop=Cambiar el tamaño o cortar
Author=Autor
User=Usuario
@@ -287,7 +287,7 @@ DateStart=Fecha de inicio
DateEnd=Fecha de fin
DateCreation=Fecha de creación
DateCreationShort=Fecha creación
DateReading=Reading date
DateReading=Fecha de lectura
IPCreation=IP de creación
DateModification=Fecha de modificación
DateModificationShort=Fecha modif.
@@ -398,8 +398,8 @@ AmountTTCShort=Importe
AmountHT=Base imponible
AmountTTC=Importe total
AmountVAT=Importe IVA
DiscountHT=Discount (excl. tax)
DiscountTTC=Discount (incl. tax)
DiscountHT=Descuento (sin IVA)
DiscountTTC=Descuento (con IVA)
MulticurrencyAlreadyPaid=Ya pagado, divisa original
MulticurrencyRemainderToPay=Pendiente de pago, divisa original
MulticurrencyPaymentAmount=Importe total, divisa original
@@ -423,7 +423,7 @@ SubTotal=Subtotal
TotalHTShort=Base imp.
TotalHT100Short=Total 100%% (Base imp.)
TotalHTShortCurrency=Base imponible (divisa)
TotalHTWithDiscount=Total (excl.) with discount
TotalHTWithDiscount=Total (excl.) con descuento
TotalTTCShort=Total
TotalHT=Total (Base imp).
TotalHTforthispage=Total (base imponible) de esta página
@@ -503,6 +503,7 @@ ContactsAddressesForCompany=Contactos/direcciones de este tercero
AddressesForCompany=Direcciones de este tercero
ActionsOnCompany=Eventos de este tercero
ActionsOnContact=Eventos de este contacto/dirección
ActionsOnUser=Eventos para este usuario
ActionsOnContract=Eventos respecto al contrato
ActionsOnMember=Eventos respecto a este miembro
ActionsOnProduct=Eventos sobre este producto
@@ -542,7 +543,7 @@ ToLocation=a
at=a
and=y
or=o
otherwise=otherwise
otherwise=de lo contrario
Other=Otro
Others=Otros
OtherInformations=Otra información
@@ -1084,7 +1085,7 @@ SearchIntoSupplierProposals=Presupuestos de proveedor
SearchIntoInterventions=Intervenciones
SearchIntoContracts=Contratos
SearchIntoCustomerShipments=Envíos a clientes
SearchIntoSupplierReceptions=Vendor receptions
SearchIntoSupplierReceptions=Recepciones de proveedores
SearchIntoExpenseReports=Informes de gastos
SearchIntoLeaves=Día libre
SearchIntoKM=Base de Conocimientos
@@ -1180,13 +1181,15 @@ OutOfDate=Fuera de plazo
EventReminder=Recordatorio evento
UpdateForAllLines=Actualización para todas las líneas
OnHold=En espera
Civility=Title of courtesy
Civility=Título de cortesía
AffectTag=Asignar una etiqueta
AffectUser=Asignar un usuario
SetSupervisor=Establecer el supervisor
CreateExternalUser=Crear usuario externo
ConfirmAffectTag=Asignación de etiquetas masivas
ConfirmAffectUser=Asignación masiva de usuarios
ContactRole=Rol de contacto
ContactRoles=Roles de contacto
ProjectRole=Rol asignado en cada proyecto/oportunidad
TasksRole=Rol asignado en cada tarea (si se usa)
ConfirmSetSupervisor=Conjunto de supervisor masivo
@@ -1238,6 +1241,8 @@ CommercialsAffected=Representantes de ventas asignados
CommercialAffected=Representante de ventas asignado
CommercialsDisaffected=Representantes de ventas desvinculados
CommercialDisaffected=Representante de ventas desvinculado
Message=Mensaje
Progression=Progreso
YourMessage=Tu mensaje
YourMessageHasBeenReceived=Tu mensaje ha sido recibido. Le responderemos o contactaremos con usted lo antes posible.
UrlToCheck=URL para comprobar
@@ -1280,6 +1285,7 @@ AmountSalary=Monto del salario
InvoiceSubtype=Subtipo de factura
ConfirmMassReverse=Confirmación inversa masiva
ConfirmMassReverseQuestion=¿Está seguro de que desea revertir los %s registros seleccionados?
ConfirmActionXxx=Confirm action %s
ElementType=Tipo de elemento
ElementId=Identificación del elemento
Encrypted=Encriptado
@@ -1287,7 +1293,7 @@ Settings=Configuraciones
FillMessageWithALayout=Rellenar mensaje con un diseño
FillMessageWithAIContent=Llene el mensaje con contenido de IA
FillPageWithALayout=Llenar página con un diseño
FillPageWithAIContent=Fill page with AI content
FillPageWithAIContent=Llene la página con contenido de IA
EnterYourAIPromptHere=Ingrese su mensaje de IA aquí
UseOrOperatorShort=o
GoOnList=Ir a la lista
@@ -1296,6 +1302,7 @@ MyUserCard=mi archivo de usuario
PublicFile=Archivo público
EntityNameNotDefined=Sin nombre de entidad
AllEntities=Todas las entidades
TranslationOfKey=Translation of the key AnyTranslationKey
SignedStatus=Signed status
NbRecordQualified=Number of qualified records
TranslationOfKey=Traducción de la clave AnyTranslationKey
SignedStatus=Estado firmado
NbRecordQualified=Número de registros calificados
auto=auto

View File

@@ -23,23 +23,24 @@ TOKEN_REFRESH=Refresh Token
TOKEN_EXPIRED=Token expirado
TOKEN_EXPIRE_AT=Token expira el
TOKEN_DELETE=Eliminar token guardado
OAUTH_GOOGLE_NAME=Servicio Oauth Google
OAUTH_GOOGLE_ID=Id Oauth Google
OAUTH_GOOGLE_SECRET=Oauth Google Secret
OAUTH_GITHUB_NAME=Servicio Oauth GitHub
OAUTH_GITHUB_ID=Id Oauth Github
OAUTH_GITHUB_SECRET=Oauth GitHub Secret
OAUTH_URL_FOR_CREDENTIAL=Vaya a <a class="notasortlink" href="%s" target="_blank" rel="noopener noreferrer external"> esta página <span class="fas fa-external-link-alt paddingleft"> </span> </a> para crear u obtener su ID y secreto de OAuth
OAUTH_STRIPE_TEST_NAME=OAuth Stripe Test
OAUTH_STRIPE_LIVE_NAME=OAuth Stripe Live
OAUTH_STRIPE_TEST_NAME=Stripe Test
OAUTH_STRIPE_LIVE_NAME=Stripe Live
OAUTH_ID=ID de cliente de OAuth
OAUTH_SECRET=Secreto OAuth
OAUTH_TENANT=Inquilino de OAuth
OAuthProviderAdded=Proveedor de OAuth agregado
AOAuthEntryForThisProviderAndLabelAlreadyHasAKey=Ya existe una entrada de OAuth para este proveedor y etiqueta
URLOfOAuthServiceEndpoints=Base URL for OAuth service endpoints
URLOfOAuthServiceEndpointsExample=https://mastodon.example.com
URLOfServiceForAuthorization=URL proporcionada por el servicio OAuth para la autenticación
Scopes=Permisos (Ámbitos)
ScopeUndefined=Permisos (Ámbitos) indefinidos (ver pestaña anterior)
ScopesDesc=Example: read,write with Mastodom
TokenRawValue=Full Token (object)
AccessToken=Access Token
TokenExpired=No al día

View File

@@ -206,3 +206,4 @@ StatusSupplierOrderReceivedPartially=Recibido parcialmente
StatusSupplierOrderReceivedAll=Todos los productos recibidos
NeedAtLeastOneInvoice = Tiene que haber al menos una Factura
LineAlreadyDispatched = La línea de pedido ya se recibió.
OrderStatusMakeOperationForbidden = Estado del pedido prohibido para esta operación.

View File

@@ -100,8 +100,8 @@ VirtualStock=Stock virtual
VirtualStockAtDate=Stock virtual en una fecha futura
VirtualStockAtDateDesc=Stock virtual una vez finalizados todos los pedidos pendientes que están previstos para ser procesados antes de la fecha elegida
VirtualStockDesc=El stock virtual es el stock que quedará después de que se hayan realizado todas las acciones abiertas/pendientes (que afectan a los stocks) (pedidos de compra recibidos, pedidos de venta enviados, pedidos de fabricación producidos, etc.)
QtyAtDate=Quantity in stock at date
MovementsSinceDate=Movements since the date
QtyAtDate=Cantidad en stock en la fecha
MovementsSinceDate=Movimientos desde la fecha
IdWarehouse=Id. almacén
DescWareHouse=Descripción almacén
LieuWareHouse=Localización almacén
@@ -278,7 +278,7 @@ QtyWasAddedToTheScannedBarcode=Éxito !! La cantidad se agregó a todo el códig
StockChangeDisabled=Cambio de stock deshabilitado
NoWarehouseDefinedForTerminal=Sin almacén definido para terminal
ClearQtys=Borrar todas las cantidades
ProductValuesUsedBecauseNoValuesForThisWarehouse=No value has been defined for this warehouse so we assume it is zero (no need for this product into the warehouse)
ProductValuesUsedBecauseNoValuesForThisWarehouse=No se ha definido ningún valor para este almacén, por lo que asumimos que es cero (no es necesario ingresar este producto al almacén)
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
@@ -334,6 +334,16 @@ WarehouseUsage=Uso del almacén
InternalWarehouse=Almacén interno
ExternalWarehouse=Almacén externo
LatestModifiedWarehouses=Últimos %s almacenes modificados
LatestStockMovements=Latest %s stock movements
LatestStockMovements=Últimos movimientos de acciones de %s
QtyCurrentlyKnownInStock=Cantidad estimada del sistema que tienes en stock. Mientras el inventario no esté cerrado, este es un valor en tiempo real y puede cambiar si continúas realizando movimientos de stock durante el inventario (no recomendado).
QtyInStockWhenInventoryWasValidated=Cantidad estimada por el sistema que tenía en stock cuando se validó el inventario (antes de la corrección de stock)
InventoryId=Identificación del inventario
DateInventory=Fecha inventario
InventoryStatus=Estado del inventario
InventoryTitle=Nombre del inventario
InventoryLineId=Línea de inventario
InventoryRef=Referencia de inventario
QtyViewed=Cantidad vista
QtyStock=Cantidad en stock
QtyRegulated=Cantidad en corrección de stock
InventoryEntrepot=Identidad del almacén

View File

@@ -23,7 +23,7 @@ ToOfferALinkForOnlinePaymentOnFreeAmount=URL para ofrecer una página de pago en
ToOfferALinkForOnlinePaymentOnMemberSubscription=URL para ofrecer una página de pago en línea %s para una suscripción de miembro
ToOfferALinkForOnlinePaymentOnDonation=URL para ofrecer una página de pago en línea %s para el pago de una donación
YouCanAddTagOnUrl=También puede agregar el parámetro url <b>&tag = <i>value</i></b> a cualquiera de esas URL (obligatorio solo para el pago no vinculado a un objeto) para agregar su propia etiqueta de comentario de pago. <br> Para la URL de pagos sin objeto existente, también puede agregar el parámetro <strong>&noidempotency = 1</strong> para que el mismo enlace con la misma etiqueta se pueda usar varias veces (algún modo de pago puede limitar el pago a 1 para cada enlace diferente sin este parámetro)
YouCanEmbedOnWebsite=If you want to integrate the payment page into a Dolibarr website, you can include the parameter: <b>&ws=website_ref</b>.<br>Additionally, two pages named <b>paymentok</b> and <b>paymentko</b> must be created in the website to receive the redirect after a successful of failed online payment.
YouCanEmbedOnWebsite=Si desea integrar la página de pago en un sitio web de Dolibarr, puede incluir el parámetro: <b>&ws=website_ref</b>.<br>Además, dos páginas llamadas <b>paymentok</b> y <b>paymentko</b> deben ser creadas en el sitio web para recibir la redirección después de un pago en línea exitoso o fallido.
SetupStripeToHavePaymentCreatedAutomatically=Configure su Stripe con la url <b>%s</b> para crear un pago automáticament al validarse por Stripe.
AccountParameter=Parámetros de la cuenta
UsageParameter=Parámetros de uso

View File

@@ -271,8 +271,8 @@ totalTaxIncl=Total (impuestos incluidos)
clickToClose=Haga clic para cerrar
sidebarCategories=Categorías
noSubCat=NoSubCat
specialPromo=Promotions
allSpecials=All promotions
specialPromo=Promociones
allSpecials=Todas las promociones
newProducts=Nuevos productos
allNewProducts= Todos los productos nuevos
view=Vista:

View File

@@ -164,7 +164,7 @@ TotalAmountOfdirectDebitOrderDiffersFromSumOfLines=El monto total de la orden de
WarningSomeDirectDebitOrdersAlreadyExists=Advertencia: ya hay algunas órdenes de domiciliación bancaria pendientes (%s) solicitadas por un monto de %s
WarningSomeCreditTransferAlreadyExists=Advertencia: ya hay una transferencia de crédito pendiente (%s) solicitada por un monto de %s
UsedFor=Usado para %s
Societe_ribSigned=SEPA mandate signed
Societe_ribSigned=Mandato SEPA Firmado
NbOfInvoiceToPayByBankTransferForSalaries=No. de salarios calificados en espera de pago mediante transferencia de crédito
SalaryWaitingWithdraw=Salarios pendientes de pago mediante transferencia bancaria
RefSalary=Salario

View File

@@ -0,0 +1,2 @@
# Dolibarr language file - Source file is en_US - website
specialPromo=Promotions

View File

@@ -0,0 +1,2 @@
# Dolibarr language file - Source file is en_US - website
specialPromo=Promotions

View File

@@ -225,8 +225,6 @@ Int=Entero
Float=Flotante
ExtrafieldMail =Correo electrónico
ExtrafieldUrl =URL
ExtrafieldSelect =Seleccionar lista
ExtrafieldSelectList =Seleccionar de la tabla
ComputedFormula=Campo calculado
Computedpersistent=Almacenar campo calculado
SetAsDefault=Establecer como predeterminado

View File

@@ -11,9 +11,7 @@ SeePreviousTab=Ver pestaña anterior
OAuthIDSecret=ID OAuth y Secret
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_GITHUB_NAME=Servicio OAuth GitHub
OAUTH_GITHUB_ID=Id OAuth GitHub
TokenExpired=Expirado
ExpirationDate=Fecha de vencimiento

View File

@@ -0,0 +1,2 @@
# Dolibarr language file - Source file is en_US - website
specialPromo=Promotions

View File

@@ -0,0 +1,2 @@
# Dolibarr language file - Source file is en_US - website
specialPromo=Promotions

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